AddToAny Share Buttons - Version 0.9.9.7.6

Version Description

Download this release

Release Info

Developer micropat
Plugin Icon 128x128 AddToAny Share Buttons
Version 0.9.9.7.6
Comparing to
See all releases

Code changes from version 0.9.9.7.5 to 0.9.9.7.6

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
3
  Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, email, e-mail, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, messenger, stumbleupon, technorati, sexybookmarks, sociable, sharedaddy, icon, icons, wpmu, addtoany, add
4
  Requires at least: 2.8
5
  Tested up to: 3.1
6
- Stable tag: 0.9.9.7.5
7
 
8
  Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
9
 
@@ -27,7 +27,7 @@ Standalone **share icons** let you optimize your blog posts for specific social
27
  * Easily customizable for beginners or advanced users, and highly extensible for developers and designers
28
  * Many more publisher and user features!
29
 
30
- After **years of active development**, over **1.3 million downloads**, and **ongoing support from the community**, AddToAny still strives to be the best WordPress plugin for sharing. We hope it's perfect for everyone by version 1.0.
31
 
32
  <a href="http://www.addtoany.com/share_save" title="Share">Share this plugin</a>
33
 
@@ -177,6 +177,13 @@ Please read <a href="http://www.addtoany.com/buttons/customize/show_over_embeds"
177
 
178
  == Changelog ==
179
 
 
 
 
 
 
 
 
180
  = .9.9.7.5 =
181
  * Improved inclusion method for services.php (thanks to bigorangemachine)
182
  * Migrate option rows into one option row to improve backend efficiency
3
  Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, email, e-mail, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, messenger, stumbleupon, technorati, sexybookmarks, sociable, sharedaddy, icon, icons, wpmu, addtoany, add
4
  Requires at least: 2.8
5
  Tested up to: 3.1
6
+ Stable tag: 0.9.9.7.6
7
 
8
  Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
9
 
27
  * Easily customizable for beginners or advanced users, and highly extensible for developers and designers
28
  * Many more publisher and user features!
29
 
30
+ After **years of active development**, over **1.46 million downloads**, and **ongoing support from the community**, AddToAny still strives to be the best WordPress plugin for sharing. We hope it's perfect for everyone by version 1.0.
31
 
32
  <a href="http://www.addtoany.com/share_save" title="Share">Share this plugin</a>
33
 
177
 
178
  == Changelog ==
179
 
180
+ = .9.9.7.6 =
181
+ * Add option: Display at the top of posts
182
+ * Add option: Display at the top and bottom of posts
183
+ * Update option migration logic
184
+ * Update localization strings
185
+ * Update Romanian translation (thanks to Horia)
186
+
187
  = .9.9.7.5 =
188
  * Improved inclusion method for services.php (thanks to bigorangemachine)
189
  * Migrate option rows into one option row to improve backend efficiency
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AddToAny: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: .9.9.7.5
7
  Author: AddToAny
8
  Author URI: http://www.addtoany.com/
9
  */
@@ -27,9 +27,9 @@ if (is_ssl())
27
  function A2A_SHARE_SAVE_init() {
28
  global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_plugin_basename;
29
 
30
- if (get_option('A2A_SHARE_SAVE_button')) {
31
- A2A_SHARE_SAVE_migrate_options();
32
- }
33
 
34
  load_plugin_textdomain('add-to-any',
35
  $A2A_SHARE_SAVE_plugin_url_path.'/languages',
@@ -368,8 +368,8 @@ function A2A_SHARE_SAVE_auto_placement($title) {
368
  * Remove the_content filter and add it for next time
369
  */
370
  function A2A_SHARE_SAVE_remove_from_content($content) {
371
- remove_filter('the_content', 'A2A_SHARE_SAVE_to_bottom_of_content', 98);
372
- add_filter('the_content', 'A2A_SHARE_SAVE_to_bottom_of_content_next_time', 98);
373
 
374
  return $content;
375
  }
@@ -377,14 +377,14 @@ function A2A_SHARE_SAVE_remove_from_content($content) {
377
  /**
378
  * Apply the_content filter "next time"
379
  */
380
- function A2A_SHARE_SAVE_to_bottom_of_content_next_time($content) {
381
- add_filter('the_content', 'A2A_SHARE_SAVE_to_bottom_of_content', 98);
382
 
383
  return $content;
384
  }
385
 
386
 
387
- function A2A_SHARE_SAVE_to_bottom_of_content($content) {
388
  global $A2A_SHARE_SAVE_auto_placement_ready;
389
 
390
  $is_feed = is_feed();
@@ -449,18 +449,28 @@ function A2A_SHARE_SAVE_to_bottom_of_content($content) {
449
  $container_wrap_close = '</p>';
450
  }
451
 
452
- $content .= $container_wrap_open.ADDTOANY_SHARE_SAVE_KIT($kit_args).$container_wrap_close;
 
 
 
 
 
 
 
 
 
 
453
  return $content;
454
  }
455
 
456
  // Only automatically output button code after the_title has been called - to avoid premature calling from misc. the_content filters (especially meta description)
457
  add_filter('the_title', 'A2A_SHARE_SAVE_auto_placement', 9);
458
- add_filter('the_content', 'A2A_SHARE_SAVE_to_bottom_of_content', 98);
459
 
460
  if ($options['display_in_excerpts'] != '-1') {
461
  // Excerpts use strip_tags() for the_content, so cancel if Excerpt and append to the_excerpt instead
462
  add_filter('get_the_excerpt', 'A2A_SHARE_SAVE_remove_from_content', 9);
463
- add_filter('the_excerpt', 'A2A_SHARE_SAVE_to_bottom_of_content', 98);
464
  }
465
 
466
 
@@ -537,40 +547,46 @@ function A2A_SHARE_SAVE_unschedule_cache() {
537
 
538
  function A2A_SHARE_SAVE_migrate_options() {
539
 
540
- $options = array(
541
- 'inline_css' => '1', // Modernly used for "Use CSS Stylesheet?"
542
- 'cache' => '-1',
543
- 'display_in_posts_on_front_page' => '1',
544
- 'display_in_posts' => '1',
545
- 'display_in_pages' => '1',
546
- 'display_in_feed' => '1',
547
- 'show_title' => '-1',
548
- 'onclick' => '-1',
549
- 'button' => 'share_save_171_16.png|171|16',
550
- 'button_custom' => '',
551
- 'additional_js_variables' => '',
552
- 'button_text' => 'Share/Bookmark',
553
- 'display_in_excerpts' => '1',
554
- 'active_services' => Array(),
555
- );
556
 
557
  $namespace = 'A2A_SHARE_SAVE_';
558
 
559
- foreach ($options as $option_name => $option_value) {
560
- $old_option_name = $namespace . $option_name;
561
- $old_option_value = get_option($old_option_name);
562
- if ($old_option_value !== FALSE) {
563
- $options[$option_name] = $old_option_value;
564
- delete_option($old_option_name);
565
- }
566
- }
 
 
 
 
 
 
567
 
568
  update_option('addtoany_options', $options);
569
 
570
  $deprecated_options = array(
571
- 'button_opens_new_window',
572
- 'hide_embeds',
573
- );
574
 
575
  foreach ($deprecated_options as $option_name) {
576
  delete_option($namespace . $option_name);
@@ -598,7 +614,8 @@ function A2A_SHARE_SAVE_options_page() {
598
  // Nonce verification
599
  check_admin_referer('add-to-any-update-options');
600
 
601
- $new_options['display_in_posts_on_front_page'] = ($_POST['A2A_SHARE_SAVE_display_in_posts_on_front_page']=='1') ? '1':'-1';
 
602
  $new_options['display_in_excerpts'] = ($_POST['A2A_SHARE_SAVE_display_in_excerpts']=='1') ? '1':'-1';
603
  $new_options['display_in_posts'] = ($_POST['A2A_SHARE_SAVE_display_in_posts']=='1') ? '1':'-1';
604
  $new_options['display_in_pages'] = ($_POST['A2A_SHARE_SAVE_display_in_pages']=='1') ? '1':'-1';
@@ -635,7 +652,7 @@ function A2A_SHARE_SAVE_options_page() {
635
  $active_services[] = substr($sitename, 7);
636
  $new_options['active_services'] = $active_services;
637
 
638
- update_option('addtoany_options', $new_options);
639
 
640
  ?>
641
  <div class="updated fade"><p><strong><?php _e('Settings saved.'); ?></strong></p></div>
@@ -649,7 +666,47 @@ function A2A_SHARE_SAVE_options_page() {
649
  }
650
 
651
  $options = get_option('addtoany_options');
652
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
  ?>
654
 
655
  <?php A2A_wp_footer_check(); ?>
@@ -763,21 +820,21 @@ function A2A_SHARE_SAVE_options_page() {
763
  <label>
764
  <input id="A2A_SHARE_SAVE_display_in_posts" name="A2A_SHARE_SAVE_display_in_posts" type="checkbox"<?php
765
  if($options['display_in_posts']!='-1') echo ' checked="checked"'; ?> value="1"/>
766
- <?php _e('Display at the bottom of posts', 'add-to-any'); ?> <strong>*</strong>
767
  </label><br/>
768
  <label>
769
  &nbsp; &nbsp; &nbsp; <input class="A2A_SHARE_SAVE_child_of_display_in_posts" name="A2A_SHARE_SAVE_display_in_excerpts" type="checkbox"<?php
770
  if($options['display_in_excerpts']!='-1') echo ' checked="checked"';
771
  if($options['display_in_posts']=='-1') echo ' disabled="disabled"';
772
  ?> value="1"/>
773
- <?php _e('Display at the bottom of post excerpts', 'add-to-any'); ?>
774
  </label><br/>
775
  <label>
776
  &nbsp; &nbsp; &nbsp; <input class="A2A_SHARE_SAVE_child_of_display_in_posts" name="A2A_SHARE_SAVE_display_in_posts_on_front_page" type="checkbox"<?php
777
  if($options['display_in_posts_on_front_page']!='-1') echo ' checked="checked"';
778
  if($options['display_in_posts']=='-1') echo ' disabled="disabled"';
779
  ?> value="1"/>
780
- <?php _e('Display at the bottom of posts on the front page', 'add-to-any'); ?>
781
  </label><br/>
782
 
783
  <label>
@@ -785,11 +842,11 @@ function A2A_SHARE_SAVE_options_page() {
785
  if($options['display_in_feed']!='-1') echo ' checked="checked"';
786
  if($options['display_in_posts']=='-1') echo ' disabled="disabled"';
787
  ?> value="1"/>
788
- <?php _e('Display at the bottom of posts in the feed', 'add-to-any'); ?>
789
  </label><br/>
790
  <label>
791
  <input name="A2A_SHARE_SAVE_display_in_pages" type="checkbox"<?php if($options['display_in_pages']!='-1') echo ' checked="checked"'; ?> value="1"/>
792
- <?php _e('Display at the bottom of pages', 'add-to-any'); ?>
793
  </label>
794
  <br/><br/>
795
  <div class="setting-description">
@@ -900,7 +957,7 @@ function A2A_SHARE_SAVE_admin_head() {
900
  $options = get_option('addtoany_options');
901
 
902
  ?>
903
- <script language="JavaScript" type="text/javascript"><!--
904
  jQuery(document).ready(function(){
905
 
906
  // Toggle child options of 'Display in posts'
@@ -910,6 +967,14 @@ function A2A_SHARE_SAVE_admin_head() {
910
  else
911
  jQuery('.A2A_SHARE_SAVE_child_of_display_in_posts').attr('checked', false).attr('disabled', true);
912
  });
 
 
 
 
 
 
 
 
913
 
914
  var to_input = function(this_sortable){
915
  // Clear any previous services stored as hidden inputs
3
  Plugin Name: AddToAny: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: .9.9.7.6
7
  Author: AddToAny
8
  Author URI: http://www.addtoany.com/
9
  */
27
  function A2A_SHARE_SAVE_init() {
28
  global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_plugin_basename;
29
 
30
+ if (get_option('A2A_SHARE_SAVE_button')) {
31
+ A2A_SHARE_SAVE_migrate_options();
32
+ }
33
 
34
  load_plugin_textdomain('add-to-any',
35
  $A2A_SHARE_SAVE_plugin_url_path.'/languages',
368
  * Remove the_content filter and add it for next time
369
  */
370
  function A2A_SHARE_SAVE_remove_from_content($content) {
371
+ remove_filter('the_content', 'A2A_SHARE_SAVE_add_to_content', 98);
372
+ add_filter('the_content', 'A2A_SHARE_SAVE_add_to_content_next_time', 98);
373
 
374
  return $content;
375
  }
377
  /**
378
  * Apply the_content filter "next time"
379
  */
380
+ function A2A_SHARE_SAVE_add_to_content_next_time($content) {
381
+ add_filter('the_content', 'A2A_SHARE_SAVE_add_to_content', 98);
382
 
383
  return $content;
384
  }
385
 
386
 
387
+ function A2A_SHARE_SAVE_add_to_content($content) {
388
  global $A2A_SHARE_SAVE_auto_placement_ready;
389
 
390
  $is_feed = is_feed();
449
  $container_wrap_close = '</p>';
450
  }
451
 
452
+ $options['position'] = isset($options['position']) ? $options['position'] : 'bottom';
453
+
454
+ if ($options['position'] == 'both' || $options['position'] == 'top') {
455
+ // Prepend to content
456
+ $content = $container_wrap_open.ADDTOANY_SHARE_SAVE_KIT($kit_args) . $container_wrap_close . $content;
457
+ }
458
+ if ( $options['position'] == 'bottom' || $options['position'] == 'both') {
459
+ // Append to content
460
+ $content .= $container_wrap_open.ADDTOANY_SHARE_SAVE_KIT($kit_args) . $container_wrap_close;
461
+ }
462
+
463
  return $content;
464
  }
465
 
466
  // Only automatically output button code after the_title has been called - to avoid premature calling from misc. the_content filters (especially meta description)
467
  add_filter('the_title', 'A2A_SHARE_SAVE_auto_placement', 9);
468
+ add_filter('the_content', 'A2A_SHARE_SAVE_add_to_content', 98);
469
 
470
  if ($options['display_in_excerpts'] != '-1') {
471
  // Excerpts use strip_tags() for the_content, so cancel if Excerpt and append to the_excerpt instead
472
  add_filter('get_the_excerpt', 'A2A_SHARE_SAVE_remove_from_content', 9);
473
+ add_filter('the_excerpt', 'A2A_SHARE_SAVE_add_to_content', 98);
474
  }
475
 
476
 
547
 
548
  function A2A_SHARE_SAVE_migrate_options() {
549
 
550
+ $options = array(
551
+ 'inline_css' => '1', // Modernly used for "Use CSS Stylesheet?"
552
+ 'cache' => '-1',
553
+ 'display_in_posts_on_front_page' => '1',
554
+ 'display_in_posts' => '1',
555
+ 'display_in_pages' => '1',
556
+ 'display_in_feed' => '1',
557
+ 'show_title' => '-1',
558
+ 'onclick' => '-1',
559
+ 'button' => 'share_save_171_16.png|171|16',
560
+ 'button_custom' => '',
561
+ 'additional_js_variables' => '',
562
+ 'button_text' => 'Share/Bookmark',
563
+ 'display_in_excerpts' => '1',
564
+ 'active_services' => Array(),
565
+ );
566
 
567
  $namespace = 'A2A_SHARE_SAVE_';
568
 
569
+ foreach ($options as $option_name => $option_value) {
570
+ $old_option_name = $namespace . $option_name;
571
+ $old_option_value = get_option($old_option_name);
572
+
573
+ if($old_option_value === FALSE) {
574
+ // Default value
575
+ $options[$option_name] = $option_value;
576
+ } else {
577
+ // Old value
578
+ $options[$option_name] = $old_option_value;
579
+ }
580
+
581
+ delete_option($old_option_name);
582
+ }
583
 
584
  update_option('addtoany_options', $options);
585
 
586
  $deprecated_options = array(
587
+ 'button_opens_new_window',
588
+ 'hide_embeds',
589
+ );
590
 
591
  foreach ($deprecated_options as $option_name) {
592
  delete_option($namespace . $option_name);
614
  // Nonce verification
615
  check_admin_referer('add-to-any-update-options');
616
 
617
+ $new_options['position'] = ($_POST['A2A_SHARE_SAVE_position']) ? $_POST['A2A_SHARE_SAVE_position'] : 'bottom';
618
+ $new_options['display_in_posts_on_front_page'] = ($_POST['A2A_SHARE_SAVE_display_in_posts_on_front_page']=='1') ? '1':'-1';
619
  $new_options['display_in_excerpts'] = ($_POST['A2A_SHARE_SAVE_display_in_excerpts']=='1') ? '1':'-1';
620
  $new_options['display_in_posts'] = ($_POST['A2A_SHARE_SAVE_display_in_posts']=='1') ? '1':'-1';
621
  $new_options['display_in_pages'] = ($_POST['A2A_SHARE_SAVE_display_in_pages']=='1') ? '1':'-1';
652
  $active_services[] = substr($sitename, 7);
653
  $new_options['active_services'] = $active_services;
654
 
655
+ update_option('addtoany_options', $new_options);
656
 
657
  ?>
658
  <div class="updated fade"><p><strong><?php _e('Settings saved.'); ?></strong></p></div>
666
  }
667
 
668
  $options = get_option('addtoany_options');
669
+
670
+ function position_in_content($options, $option_box = FALSE) {
671
+
672
+ if ( ! isset($options['position'])) {
673
+ $options['position'] = 'bottom';
674
+ }
675
+
676
+ $positions = array(
677
+ 'bottom' => array(
678
+ 'selected' => ('bottom' == $options['position']) ? ' selected="selected"' : '',
679
+ 'string' => __('bottom', 'add-to-any')
680
+ ),
681
+ 'top' => array(
682
+ 'selected' => ('top' == $options['position']) ? ' selected="selected"' : '',
683
+ 'string' => __('top', 'add-to-any')
684
+ ),
685
+ 'both' => array(
686
+ 'selected' => ('both' == $options['position']) ? ' selected="selected"' : '',
687
+ 'string' => __('top &amp; bottom', 'add-to-any')
688
+ )
689
+ );
690
+
691
+ if ($option_box) {
692
+ $html = '</label>';
693
+ $html .= '<label>'; // Label needed to prevent checkmark toggle on SELECT click
694
+ $html .= '<select name="A2A_SHARE_SAVE_position">';
695
+ $html .= '<option value="bottom"' . $positions['bottom']['selected'] . '>' . $positions['bottom']['string'] . '</option>';
696
+ $html .= '<option value="top"' . $positions['top']['selected'] . '>' . $positions['top']['string'] . '</option>';
697
+ $html .= '<option value="both"' . $positions['both']['selected'] . '>' . $positions['both']['string'] . '</option>';
698
+ $html .= '</select>';
699
+
700
+ return $html;
701
+ } else {
702
+ $html = '<span class="A2A_SHARE_SAVE_position">';
703
+ $html .= $positions[$options['position']]['string'];
704
+ $html .= '</span>';
705
+
706
+ return $html;
707
+ }
708
+ }
709
+
710
  ?>
711
 
712
  <?php A2A_wp_footer_check(); ?>
820
  <label>
821
  <input id="A2A_SHARE_SAVE_display_in_posts" name="A2A_SHARE_SAVE_display_in_posts" type="checkbox"<?php
822
  if($options['display_in_posts']!='-1') echo ' checked="checked"'; ?> value="1"/>
823
+ <?php printf(__('Display at the %s of posts', 'add-to-any'), position_in_content($options, TRUE)); ?> <strong>*</strong>
824
  </label><br/>
825
  <label>
826
  &nbsp; &nbsp; &nbsp; <input class="A2A_SHARE_SAVE_child_of_display_in_posts" name="A2A_SHARE_SAVE_display_in_excerpts" type="checkbox"<?php
827
  if($options['display_in_excerpts']!='-1') echo ' checked="checked"';
828
  if($options['display_in_posts']=='-1') echo ' disabled="disabled"';
829
  ?> value="1"/>
830
+ <?php printf(__('Display at the %s of post excerpts', 'add-to-any'), position_in_content($options)); ?>
831
  </label><br/>
832
  <label>
833
  &nbsp; &nbsp; &nbsp; <input class="A2A_SHARE_SAVE_child_of_display_in_posts" name="A2A_SHARE_SAVE_display_in_posts_on_front_page" type="checkbox"<?php
834
  if($options['display_in_posts_on_front_page']!='-1') echo ' checked="checked"';
835
  if($options['display_in_posts']=='-1') echo ' disabled="disabled"';
836
  ?> value="1"/>
837
+ <?php printf(__('Display at the %s of posts on the front page', 'add-to-any'), position_in_content($options)); ?>
838
  </label><br/>
839
 
840
  <label>
842
  if($options['display_in_feed']!='-1') echo ' checked="checked"';
843
  if($options['display_in_posts']=='-1') echo ' disabled="disabled"';
844
  ?> value="1"/>
845
+ <?php printf(__('Display at the %s of posts in the feed', 'add-to-any'), position_in_content($options)); ?>
846
  </label><br/>
847
  <label>
848
  <input name="A2A_SHARE_SAVE_display_in_pages" type="checkbox"<?php if($options['display_in_pages']!='-1') echo ' checked="checked"'; ?> value="1"/>
849
+ <?php printf(__('Display at the %s of pages', 'add-to-any'), position_in_content($options, TRUE)); ?>
850
  </label>
851
  <br/><br/>
852
  <div class="setting-description">
957
  $options = get_option('addtoany_options');
958
 
959
  ?>
960
+ <script type="text/javascript"><!--
961
  jQuery(document).ready(function(){
962
 
963
  // Toggle child options of 'Display in posts'
967
  else
968
  jQuery('.A2A_SHARE_SAVE_child_of_display_in_posts').attr('checked', false).attr('disabled', true);
969
  });
970
+
971
+ // Update button position labels/values universally in Placement section
972
+ jQuery('select[name="A2A_SHARE_SAVE_position"]').bind('change click', function(e){
973
+ var $this = jQuery(this);
974
+ jQuery('select[name="A2A_SHARE_SAVE_position"]').not($this).val($this.val());
975
+
976
+ jQuery('.A2A_SHARE_SAVE_position').html($this.find('option:selected').html());
977
+ });
978
 
979
  var to_input = function(this_sortable){
980
  // Clear any previous services stored as hidden inputs
languages/add-to-any-ar.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,265 +13,290 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr "نشر"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr "حفظ"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr "تابع"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr "رسالة بريدية"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr "مفضلة"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "عرض الكل"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr "عرض أقل"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "أبحث عن خدمة"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "بواسطة"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr "أرسال على البريد"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr "تابع عبر البريد"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr "أضف للمفضلة بالمتصفح"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "أضغط Ctrl+D أو &#8984;+D لحفظ هذه الصفحة بالمفضلة"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr "أضف لمفضلتك"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "أرسال من اي برنامج بريد أو أي عنوان بريدي"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr "برنامج بريدي"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "تصميمك يحتاج لتعديلز لتعديل تصميمك, أستخدم <a href=\"theme-editor.php\">محرر التصميم</a> لإضافة <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> في ملف <code>footer.php</code>."
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr "مفضلة"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr "تم حفظ الأعدادات"
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr "أضف إلى: نشر/حفظ"
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr "الأعدادات"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr "خدمات قائمة بذاتها"
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr "أختر الخدمات من الأسفل. &nbsp; أضغط لتختار الخدمة وأضغط مرة اخرى لألغائها. &nbsp; رتب الخدمات بأستخدام الفائرة."
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr "زر"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr "رابط صورة"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr "نص فقط"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr "مكان العرض"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك"
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
146
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالرئيسية"
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالخلاصات"
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr "عرض زر نشر/حفظ في أخر الصفحات"
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "إن لم تختار احد هذه الخيارات فتأكد ان تضع الكود بواسطة <a href=\"theme-editor.php\">محرر التصميم</a> (في <code>index.php</code>, <code>single.php</code>, و/أو <code>page.php</code>)"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr "تصميم القائمة"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "أستخدم محرر تصميم أضف إلى, يمكنك تخصيص الألوان لقائمة نشر/حفظ! عند إنتهائك, تأكد من لصق الكود في مربع <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">الخيارات الخاصة</a>"
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr "فتح قائمة تصميم أضف إلى في نافذة جديدة"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr "فتح قائمة التصميم"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr "خيارات القائمة"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "عرض عنوان التدوينة او الصفحة في القائمة"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "عرض القائمة عن الضغط عليها فقط"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "فتح موقع addtoany.com عند ضغط الزائر على زر نشر/حفظ"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr "خيارات خاصة"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr "ألصق الكود من قائمة تصميم أضف إلى في هذا المربع"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "يمكنك ضبط متغيرات جافا سكريبت خاصة لتنفيزها على قائمة نشر/حفظ"
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr "المستخدمين المتقدمين قد يحتاجون إلى تصفح أضف إلى <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">جافا سكريبت API</a>."
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr "<strong>ملحوظة</strong>: إذا أضفت اكواد جديدة, كن حزر حتى لا تمسح اكواد قديمة.</label>"
211
 
212
- #: add-to-any.php:782
213
  #, fuzzy
214
  msgid "Advanced Options"
215
  msgstr "خيارات خاصة"
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
  msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
  msgstr ""
224
 
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
  msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
  msgstr "حفظ التغيرات"
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
  msgstr "هل تحب هذه الأضافة؟"
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">قيمها</a> في موقع WordPress.org."
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">أنشرها</a> مع أصدقائك."
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr "بحاجة إلى الدعم؟"
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
  msgstr "راجع <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">الأسئلة الشائعة</a>."
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
  msgstr "أبحث في <a href=\"http://wordpress.org/tags/add-to-any\">منتديات الدعم</a>."
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
  msgstr "إضافة/ألغاء خدمات"
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
  msgstr "نشر/حفظ"
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
  msgstr "أزرار نشر/حفظ"
272
 
 
 
 
 
 
273
  #~ msgid ""
274
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
275
  #~ "when displayed"
276
  #~ msgstr "أخفاء (الفلاشات والفيديو و ... الخ) التي تتقاطع مع القائمة"
277
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "نشر"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "حفظ"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "تابع"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "رسالة بريدية"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "مفضلة"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "عرض الكل"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "عرض أقل"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "أبحث عن خدمة"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "بواسطة"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "أرسال على البريد"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "تابع عبر البريد"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "أضف للمفضلة بالمتصفح"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "أضغط Ctrl+D أو &#8984;+D لحفظ هذه الصفحة بالمفضلة"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "أضف لمفضلتك"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "أرسال من اي برنامج بريد أو أي عنوان بريدي"
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "برنامج بريدي"
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "تصميمك يحتاج لتعديلز لتعديل تصميمك, أستخدم <a href=\"theme-editor.php\">محرر التصميم</a> لإضافة <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> في ملف <code>footer.php</code>."
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "مفضلة"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "تم حفظ الأعدادات"
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "أضف إلى: نشر/حفظ"
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "الأعدادات"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "خدمات قائمة بذاتها"
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr "أختر الخدمات من الأسفل. &nbsp; أضغط لتختار الخدمة وأضغط مرة اخرى لألغائها. &nbsp; رتب الخدمات بأستخدام الفائرة."
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "زر"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "رابط صورة"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "نص فقط"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "مكان العرض"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك"
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
+
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالرئيسية"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالخلاصات"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
  msgstr "عرض زر نشر/حفظ في أخر الصفحات"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr "إن لم تختار احد هذه الخيارات فتأكد ان تضع الكود بواسطة <a href=\"theme-editor.php\">محرر التصميم</a> (في <code>index.php</code>, <code>single.php</code>, و/أو <code>page.php</code>)"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "تصميم القائمة"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "أستخدم محرر تصميم أضف إلى, يمكنك تخصيص الألوان لقائمة نشر/حفظ! عند إنتهائك, تأكد من لصق الكود في مربع <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">الخيارات الخاصة</a>"
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "فتح قائمة تصميم أضف إلى في نافذة جديدة"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "فتح قائمة التصميم"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "خيارات القائمة"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "عرض القائمة عن الضغط عليها فقط"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "عرض عنوان التدوينة او الصفحة في القائمة"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "خيارات خاصة"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "ألصق الكود من قائمة تصميم أضف إلى في هذا المربع"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "يمكنك ضبط متغيرات جافا سكريبت خاصة لتنفيزها على قائمة نشر/حفظ"
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "المستخدمين المتقدمين قد يحتاجون إلى تصفح أضف إلى <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">جافا سكريبت API</a>."
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>ملحوظة</strong>: إذا أضفت اكواد جديدة, كن حزر حتى لا تمسح اكواد قديمة.</label>"
228
 
229
+ #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "خيارات خاصة"
233
 
234
+ #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:922
 
 
 
 
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "حفظ التغيرات"
249
 
250
+ #: add-to-any.php:930
251
+ msgid "Are you sure you want to delete all AddToAny options?"
252
+ msgstr ""
253
+
254
+ #: add-to-any.php:930
255
+ msgid "Reset"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "هل تحب هذه الأضافة؟"
261
 
262
+ #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">قيمها</a> في موقع WordPress.org."
265
 
266
+ #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">أنشرها</a> مع أصدقائك."
269
 
270
+ #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "بحاجة إلى الدعم؟"
273
 
274
+ #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "راجع <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">الأسئلة الشائعة</a>."
277
 
278
+ #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "أبحث في <a href=\"http://wordpress.org/tags/add-to-any\">منتديات الدعم</a>."
281
 
282
+ #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "إضافة/ألغاء خدمات"
285
 
286
+ #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "نشر/حفظ"
289
 
290
+ #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "أزرار نشر/حفظ"
293
 
294
+ #~ msgid ""
295
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
296
+ #~ "the Share/Save button"
297
+ #~ msgstr "فتح موقع addtoany.com عند ضغط الزائر على زر نشر/حفظ"
298
+
299
  #~ msgid ""
300
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
301
  #~ "when displayed"
302
  #~ msgstr "أخفاء (الفلاشات والفيديو و ... الخ) التي تتقاطع مع القائمة"
 
languages/add-to-any-be.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Marcis Gasuns <by.marcis@gmail.com>\n"
@@ -15,269 +15,297 @@ msgstr ""
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:258
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
- #: add-to-any.php:259
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
- #: add-to-any.php:260
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
- #: add-to-any.php:261
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
- #: add-to-any.php:262
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
- #: add-to-any.php:263
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
- #: add-to-any.php:264
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
- #: add-to-any.php:265
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
- #: add-to-any.php:266
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
- #: add-to-any.php:267
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
- #: add-to-any.php:268
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
- #: add-to-any.php:269
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
- #: add-to-any.php:270
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
- #: add-to-any.php:271
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
73
 
74
- #: add-to-any.php:272
75
  msgid "Add to your favorites"
76
  msgstr "Дадаць у выбранае"
77
 
78
- #: add-to-any.php:273
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
81
 
82
- #: add-to-any.php:274
83
  msgid "E-mail program"
84
  msgstr "Паштовая праграма"
85
 
86
- #: add-to-any.php:299
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
89
 
90
- #: add-to-any.php:490
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
- #: add-to-any.php:566
96
- #: add-to-any.php:639
97
- #: add-to-any.php:643
98
- #: add-to-any.php:647
99
- #: add-to-any.php:651
100
- #: add-to-any.php:683
101
  msgid "Share/Bookmark"
102
  msgstr "Закладка"
103
 
104
- #: add-to-any.php:580
105
  msgid "Settings saved."
106
  msgstr "Наладкі захаваны"
107
 
108
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "AddToAny: Share/Save "
110
  msgstr "Дадаць у любое: падзяліць/захаваць"
111
 
112
- #: add-to-any.php:593
113
- #: add-to-any.php:978
114
- #: add-to-any.php:1002
115
  msgid "Settings"
116
  msgstr "Наладкі"
117
 
118
- #: add-to-any.php:602
119
  msgid "Standalone Services"
120
  msgstr "Дадаць/Выдаліць паслугі"
121
 
122
- #: add-to-any.php:607
123
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
124
  msgstr "Выберите услуги, которые вы хотите ниже. &nbsp;Нажмите выбранной услуги снова, чтобы удалить.&nbsp; Упорядочить услуг с помощью перетаскивания, как они появляются выше."
125
 
126
- #: add-to-any.php:634
127
  msgid "Button"
128
  msgstr "Клавіша"
129
 
130
- #: add-to-any.php:673
131
  msgid "Image URL"
132
  msgstr "URL de l'imatge"
133
 
134
- #: add-to-any.php:680
135
  msgid "Text only"
136
  msgstr "Толькт тэкст"
137
 
138
- #: add-to-any.php:688
139
  msgid "Placement"
140
  msgstr "Размяшчэнне"
141
 
142
- #: add-to-any.php:697
143
- msgid "Display Share/Save button at the bottom of posts"
 
144
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
145
 
146
- #: add-to-any.php:704
147
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
148
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
149
 
150
- #: add-to-any.php:711
151
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
152
  msgstr "Отображать Поделиться/Сохранить в нижней части сообщения в ленте"
153
 
154
- #: add-to-any.php:715
155
- msgid "Display Share/Save button at the bottom of pages"
 
156
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
157
 
158
- #: add-to-any.php:719
159
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
160
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
161
 
162
- #: add-to-any.php:728
163
  msgid "Menu Style"
164
  msgstr "Стыль меню"
165
 
166
- #: add-to-any.php:730
167
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
168
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
169
 
170
- #: add-to-any.php:732
171
  msgid "Open the AddToAny Menu Styler in a new window"
172
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
173
 
174
- #: add-to-any.php:734
175
  msgid "Open Menu Styler"
176
  msgstr "Адкрыць меню Styler"
177
 
178
- #: add-to-any.php:739
179
  msgid "Menu Options"
180
  msgstr "Меню опцый"
181
 
182
- #: add-to-any.php:744
183
- msgid "Show the title of the post (or page) within the menu"
184
- msgstr "Паказаць назву запісу(альбо старонкі) без меню"
185
-
186
- #: add-to-any.php:751
187
  msgid "Only show the menu when the user clicks the Share/Save button"
188
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
189
 
190
- #: add-to-any.php:757
191
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
192
- msgstr "Адкрыць меню addtoany.com старонкі ў новую ўкладку або акно, калі карыстальнік націскае кнопку Адкрыць/ Захаваць \t\t \t"
193
 
194
- #: add-to-any.php:762
195
  msgid "Additional Options"
196
  msgstr "Дадатковыя Опцыі"
197
 
198
- #: add-to-any.php:766
199
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
200
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
201
 
202
- #: add-to-any.php:770
203
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
204
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
205
 
206
- #: add-to-any.php:771
207
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
208
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\"> JavaScript API </ A>."
209
 
210
- #: add-to-any.php:777
211
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
212
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
213
 
214
- #: add-to-any.php:782
215
  #, fuzzy
216
  msgid "Advanced Options"
217
  msgstr "Дадатковыя Опцыі"
218
 
219
- #: add-to-any.php:787
220
  msgid "Use CSS stylesheet"
221
  msgstr ""
222
 
223
- #: add-to-any.php:792
224
  msgid "Cache AddToAny locally with daily cache updates"
225
  msgstr ""
226
 
227
- #: add-to-any.php:796
228
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
229
- msgstr ""
230
-
231
- #: add-to-any.php:801
232
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
233
  msgstr ""
234
 
235
- #: add-to-any.php:808
236
  msgid "Save Changes"
237
  msgstr "Захаваць змены"
238
 
239
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
240
  msgid "Like this plugin?"
241
  msgstr "Як і гэты плагін?"
242
 
243
- #: add-to-any.php:814
244
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
245
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Дайте хороший рейтинг</a> на WordPress.org."
246
 
247
- #: add-to-any.php:815
248
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
249
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a>с друзьями."
250
 
251
- #: add-to-any.php:817
252
  msgid "Need support?"
253
  msgstr "Патрэбна падтрымка?"
254
 
255
- #: add-to-any.php:818
256
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
257
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
258
 
259
- #: add-to-any.php:819
260
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
261
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
262
 
263
- #: add-to-any.php:926
264
  msgid "Add/Remove Services"
265
  msgstr "Дадаць/Выдаліць паслугі"
266
 
267
- #: add-to-any.php:978
268
  msgid "Share/Save"
269
  msgstr "Адкрыць/Захаваць"
270
 
271
- #: add-to-any.php:979
272
  msgid "Share/Save Buttons"
273
  msgstr "Кнопка Адкрыць/Захаваць"
274
 
 
 
 
 
 
 
 
275
  #~ msgid ""
276
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
277
  #~ "when displayed"
278
  #~ msgstr ""
279
  #~ "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з "
280
  #~ "меню пры адлюстраванні"
 
281
  #~ msgid "Services"
282
  #~ msgstr "Паслугі"
283
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Marcis Gasuns <by.marcis@gmail.com>\n"
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
+ #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
+ #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
+ #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
+ #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
+ #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
+ #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
+ #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
+ #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
+ #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
+ #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
+ #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
+ #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
+ #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
73
 
74
+ #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Дадаць у выбранае"
77
 
78
+ #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
81
 
82
+ #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Паштовая праграма"
85
 
86
+ #: add-to-any.php:354
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
89
 
90
+ #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
+ #: add-to-any.php:645
96
+ #: add-to-any.php:769
97
+ #: add-to-any.php:773
98
+ #: add-to-any.php:777
99
+ #: add-to-any.php:781
100
+ #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "Закладка"
103
 
104
+ #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "Наладкі захаваны"
107
 
108
+ #: add-to-any.php:679
109
+ msgid "bottom"
110
+ msgstr ""
111
+
112
+ #: add-to-any.php:683
113
+ msgid "top"
114
+ msgstr ""
115
+
116
+ #: add-to-any.php:687
117
+ msgid "top &amp; bottom"
118
+ msgstr ""
119
+
120
+ #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "Дадаць у любое: падзяліць/захаваць"
123
 
124
+ #: add-to-any.php:718
125
+ #: add-to-any.php:1123
126
+ #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "Наладкі"
129
 
130
+ #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "Дадаць/Выдаліць паслугі"
133
 
134
+ #: add-to-any.php:732
135
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
136
  msgstr "Выберите услуги, которые вы хотите ниже. &nbsp;Нажмите выбранной услуги снова, чтобы удалить.&nbsp; Упорядочить услуг с помощью перетаскивания, как они появляются выше."
137
 
138
+ #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "Клавіша"
141
 
142
+ #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "URL de l'imatge"
145
 
146
+ #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "Толькт тэкст"
149
 
150
+ #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "Размяшчэнне"
153
 
154
+ #: add-to-any.php:823
155
+ #, fuzzy, php-format
156
+ msgid "Display at the %s of posts"
157
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
158
 
159
+ #: add-to-any.php:830
160
+ #, php-format
161
+ msgid "Display at the %s of post excerpts"
162
+ msgstr ""
163
+
164
+ #: add-to-any.php:837
165
+ #, fuzzy, php-format
166
+ msgid "Display at the %s of posts on the front page"
167
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
168
 
169
+ #: add-to-any.php:845
170
+ #, fuzzy, php-format
171
+ msgid "Display at the %s of posts in the feed"
172
  msgstr "Отображать Поделиться/Сохранить в нижней части сообщения в ленте"
173
 
174
+ #: add-to-any.php:849
175
+ #, fuzzy, php-format
176
+ msgid "Display at the %s of pages"
177
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
178
 
179
+ #: add-to-any.php:853
180
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
181
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
182
 
183
+ #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "Стыль меню"
186
 
187
+ #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
190
 
191
+ #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
194
 
195
+ #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "Адкрыць меню Styler"
198
 
199
+ #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "Меню опцый"
202
 
203
+ #: add-to-any.php:878
 
 
 
 
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
206
 
207
+ #: add-to-any.php:883
208
+ msgid "Show the title of the post (or page) within the menu"
209
+ msgstr "Паказаць назву запісу(альбо старонкі) без меню"
210
 
211
+ #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "Дадатковыя Опцыі"
214
 
215
+ #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
218
 
219
+ #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
222
 
223
+ #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\"> JavaScript API </ A>."
226
 
227
+ #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
230
 
231
+ #: add-to-any.php:908
232
  #, fuzzy
233
  msgid "Advanced Options"
234
  msgstr "Дадатковыя Опцыі"
235
 
236
+ #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr ""
239
 
240
+ #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr ""
243
 
244
+ #: add-to-any.php:922
 
 
 
 
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr ""
247
 
248
+ #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Захаваць змены"
251
 
252
+ #: add-to-any.php:930
253
+ msgid "Are you sure you want to delete all AddToAny options?"
254
+ msgstr ""
255
+
256
+ #: add-to-any.php:930
257
+ msgid "Reset"
258
+ msgstr ""
259
+
260
+ #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Як і гэты плагін?"
263
 
264
+ #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Дайте хороший рейтинг</a> на WordPress.org."
267
 
268
+ #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a>с друзьями."
271
 
272
+ #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Патрэбна падтрымка?"
275
 
276
+ #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
 
280
+ #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
 
284
+ #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Дадаць/Выдаліць паслугі"
287
 
288
+ #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Адкрыць/Захаваць"
291
 
292
+ #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Кнопка Адкрыць/Захаваць"
295
 
296
+ #~ msgid ""
297
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
298
+ #~ "the Share/Save button"
299
+ #~ msgstr ""
300
+ #~ "Адкрыць меню addtoany.com старонкі ў новую ўкладку або акно, калі "
301
+ #~ "карыстальнік націскае кнопку Адкрыць/ Захаваць \t\t \t"
302
+
303
  #~ msgid ""
304
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
305
  #~ "when displayed"
306
  #~ msgstr ""
307
  #~ "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з "
308
  #~ "меню пры адлюстраванні"
309
+
310
  #~ msgid "Services"
311
  #~ msgstr "Паслугі"
 
languages/add-to-any-ca.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: <robert.buj@gmail.com>\n"
@@ -15,270 +15,298 @@ msgstr ""
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:258
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
- #: add-to-any.php:259
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
- #: add-to-any.php:260
27
  msgid "Subscribe"
28
  msgstr "Subscriure's"
29
 
30
- #: add-to-any.php:261
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
- #: add-to-any.php:262
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
- #: add-to-any.php:263
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
- #: add-to-any.php:264
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
- #: add-to-any.php:265
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
- #: add-to-any.php:266
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trobar instantàniament qualsevol servei per a afegir a"
53
 
54
- #: add-to-any.php:267
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
- #: add-to-any.php:268
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
- #: add-to-any.php:269
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
- #: add-to-any.php:270
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
- #: add-to-any.php:271
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Pressioneu Ctrl+D o &#8984;+D per afegir a preferits aquesta pàgina"
73
 
74
- #: add-to-any.php:272
75
  msgid "Add to your favorites"
76
  msgstr "Afegir als vostres favorits"
77
 
78
- #: add-to-any.php:273
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Enviar des de qualsevol adreça de correu electrònic o programa de correu electrònic"
81
 
82
- #: add-to-any.php:274
83
  msgid "E-mail program"
84
  msgstr "Programa de correu electrònic"
85
 
86
- #: add-to-any.php:299
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "El vostre tema ha de ser corregit. per corregir-lo, utilitzeu l'<a href=\"theme-editor.php\">Editor de tema</a> per afegir <code>&lt;?php wp_footer(); ?&gt;</code> justament abans de la línia <code>&lt;/body&gt;</code> del vostre tema al fitxer <code>footer.php</code>."
89
 
90
- #: add-to-any.php:490
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
- #: add-to-any.php:566
96
- #: add-to-any.php:639
97
- #: add-to-any.php:643
98
- #: add-to-any.php:647
99
- #: add-to-any.php:651
100
- #: add-to-any.php:683
101
  #, fuzzy
102
  msgid "Share/Bookmark"
103
  msgstr "Preferit"
104
 
105
- #: add-to-any.php:580
106
  msgid "Settings saved."
107
  msgstr "Preferències desades."
108
 
109
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
110
  msgid "AddToAny: Share/Save "
111
  msgstr "AddToAny: Compartir/Desar "
112
 
113
- #: add-to-any.php:593
114
- #: add-to-any.php:978
115
- #: add-to-any.php:1002
116
  msgid "Settings"
117
  msgstr "Preferències"
118
 
119
- #: add-to-any.php:602
120
  msgid "Standalone Services"
121
  msgstr "Serveis integrats"
122
 
123
- #: add-to-any.php:607
124
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
125
  msgstr "Seleccioneu els serveis que voleu a continuació. &nbsp;Cliqueu a un servei de nou per eliminar-lo. &nbsp;Reordeneu els serveis arrossegant-los i deixant-los en l'ordre que desitgeu."
126
 
127
- #: add-to-any.php:634
128
  msgid "Button"
129
  msgstr "Botó"
130
 
131
- #: add-to-any.php:673
132
  msgid "Image URL"
133
  msgstr "URL de la imatge"
134
 
135
- #: add-to-any.php:680
136
  msgid "Text only"
137
  msgstr "Només text"
138
 
139
- #: add-to-any.php:688
140
  msgid "Placement"
141
  msgstr "Emplaçament"
142
 
143
- #: add-to-any.php:697
144
- msgid "Display Share/Save button at the bottom of posts"
 
145
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits"
146
 
147
- #: add-to-any.php:704
148
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
149
  msgstr "Mostrar el botó de Compartir/Desar a la pàgina principal"
150
 
151
- #: add-to-any.php:711
152
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
153
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits al feed"
154
 
155
- #: add-to-any.php:715
156
- msgid "Display Share/Save button at the bottom of pages"
 
157
  msgstr "Mostrar el botó de Compartir/Desar sota les pàgines"
158
 
159
- #: add-to-any.php:719
160
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
161
  msgstr "Si no està habilitat s'ha d'afegir el següent codi a <a href=\"theme-editor.php\">les vostres pàgines de plantilla</a> (dins de <code>index.php</code>, <code>single.php</code>, i/o <code>page.php</code>)"
162
 
163
- #: add-to-any.php:728
164
  msgid "Menu Style"
165
  msgstr "Estil del menú"
166
 
167
- #: add-to-any.php:730
168
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
169
  msgstr "Utilitzant el personalitzador d'estil de AddToAny, vostè pot personalitzar els colors del vostre menú Compartir/Desar! Quan hageu acabat, heu de copiar el codi generat al recuadre d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opcions adicionals</a> de sota."
170
 
171
- #: add-to-any.php:732
172
  msgid "Open the AddToAny Menu Styler in a new window"
173
  msgstr "Obrir el personalitzador d'estil de AddToAny a una nova finestra"
174
 
175
- #: add-to-any.php:734
176
  msgid "Open Menu Styler"
177
  msgstr "Obrir el personalitzador d'estils"
178
 
179
- #: add-to-any.php:739
180
  msgid "Menu Options"
181
  msgstr "Opcions del menú"
182
 
183
- #: add-to-any.php:744
184
- msgid "Show the title of the post (or page) within the menu"
185
- msgstr "Mostrar el títol de l'entrada (o de la pàgina) dins del menú"
186
-
187
- #: add-to-any.php:751
188
  msgid "Only show the menu when the user clicks the Share/Save button"
189
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
190
 
191
- #: add-to-any.php:757
192
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
193
- msgstr "Obrir el menú de addtoany.com en una nova pestanya o finestra si l'usuari clica al botó Compartir/Desar"
194
 
195
- #: add-to-any.php:762
196
  msgid "Additional Options"
197
  msgstr "Opcions addicionals"
198
 
199
- #: add-to-any.php:766
200
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
201
  msgstr "Enganxeu el codi del personalitzador d'estil al següent requadre!"
202
 
203
- #: add-to-any.php:770
204
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
205
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
206
 
207
- #: add-to-any.php:771
208
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
209
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
210
 
211
- #: add-to-any.php:777
212
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
213
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
214
 
215
- #: add-to-any.php:782
216
  #, fuzzy
217
  msgid "Advanced Options"
218
  msgstr "Opcions addicionals"
219
 
220
- #: add-to-any.php:787
221
  msgid "Use CSS stylesheet"
222
  msgstr ""
223
 
224
- #: add-to-any.php:792
225
  msgid "Cache AddToAny locally with daily cache updates"
226
  msgstr ""
227
 
228
- #: add-to-any.php:796
229
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
230
- msgstr ""
231
-
232
- #: add-to-any.php:801
233
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
234
  msgstr ""
235
 
236
- #: add-to-any.php:808
237
  msgid "Save Changes"
238
  msgstr "Desar els canvis"
239
 
240
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
241
  msgid "Like this plugin?"
242
  msgstr "Com aquesta extensió?"
243
 
244
- #: add-to-any.php:814
245
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
246
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
247
 
248
- #: add-to-any.php:815
249
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
250
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Compartiu-lo</a> amb els vostres amics."
251
 
252
- #: add-to-any.php:817
253
  msgid "Need support?"
254
  msgstr "Necessiteu suport?"
255
 
256
- #: add-to-any.php:818
257
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
258
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
259
 
260
- #: add-to-any.php:819
261
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
262
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
263
 
264
- #: add-to-any.php:926
265
  msgid "Add/Remove Services"
266
  msgstr "Serveis Compartir/Desar"
267
 
268
- #: add-to-any.php:978
269
  msgid "Share/Save"
270
  msgstr "Compartir/Desar"
271
 
272
- #: add-to-any.php:979
273
  msgid "Share/Save Buttons"
274
  msgstr "Botons de Compartir/Desar"
275
 
 
 
 
 
 
 
 
276
  #~ msgid ""
277
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
278
  #~ "when displayed"
279
  #~ msgstr ""
280
  #~ "Amagar objectes incrustats (Flash, vídeo, etc) que interseccionin amb el "
281
  #~ "menú quan aquest aparegui"
 
282
  #~ msgid "Services"
283
  #~ msgstr "Serveis"
284
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: <robert.buj@gmail.com>\n"
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
+ #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
+ #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Subscriure's"
29
 
30
+ #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
+ #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
+ #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
+ #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
+ #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
+ #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trobar instantàniament qualsevol servei per a afegir a"
53
 
54
+ #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
+ #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
+ #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
+ #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
+ #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Pressioneu Ctrl+D o &#8984;+D per afegir a preferits aquesta pàgina"
73
 
74
+ #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Afegir als vostres favorits"
77
 
78
+ #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Enviar des de qualsevol adreça de correu electrònic o programa de correu electrònic"
81
 
82
+ #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Programa de correu electrònic"
85
 
86
+ #: add-to-any.php:354
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "El vostre tema ha de ser corregit. per corregir-lo, utilitzeu l'<a href=\"theme-editor.php\">Editor de tema</a> per afegir <code>&lt;?php wp_footer(); ?&gt;</code> justament abans de la línia <code>&lt;/body&gt;</code> del vostre tema al fitxer <code>footer.php</code>."
89
 
90
+ #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
+ #: add-to-any.php:645
96
+ #: add-to-any.php:769
97
+ #: add-to-any.php:773
98
+ #: add-to-any.php:777
99
+ #: add-to-any.php:781
100
+ #: add-to-any.php:813
101
  #, fuzzy
102
  msgid "Share/Bookmark"
103
  msgstr "Preferit"
104
 
105
+ #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "Preferències desades."
108
 
109
+ #: add-to-any.php:679
110
+ msgid "bottom"
111
+ msgstr ""
112
+
113
+ #: add-to-any.php:683
114
+ msgid "top"
115
+ msgstr ""
116
+
117
+ #: add-to-any.php:687
118
+ msgid "top &amp; bottom"
119
+ msgstr ""
120
+
121
+ #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: Compartir/Desar "
124
 
125
+ #: add-to-any.php:718
126
+ #: add-to-any.php:1123
127
+ #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "Preferències"
130
 
131
+ #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr "Serveis integrats"
134
 
135
+ #: add-to-any.php:732
136
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
137
  msgstr "Seleccioneu els serveis que voleu a continuació. &nbsp;Cliqueu a un servei de nou per eliminar-lo. &nbsp;Reordeneu els serveis arrossegant-los i deixant-los en l'ordre que desitgeu."
138
 
139
+ #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "Botó"
142
 
143
+ #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "URL de la imatge"
146
 
147
+ #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "Només text"
150
 
151
+ #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "Emplaçament"
154
 
155
+ #: add-to-any.php:823
156
+ #, fuzzy, php-format
157
+ msgid "Display at the %s of posts"
158
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits"
159
 
160
+ #: add-to-any.php:830
161
+ #, php-format
162
+ msgid "Display at the %s of post excerpts"
163
+ msgstr ""
164
+
165
+ #: add-to-any.php:837
166
+ #, fuzzy, php-format
167
+ msgid "Display at the %s of posts on the front page"
168
  msgstr "Mostrar el botó de Compartir/Desar a la pàgina principal"
169
 
170
+ #: add-to-any.php:845
171
+ #, fuzzy, php-format
172
+ msgid "Display at the %s of posts in the feed"
173
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits al feed"
174
 
175
+ #: add-to-any.php:849
176
+ #, fuzzy, php-format
177
+ msgid "Display at the %s of pages"
178
  msgstr "Mostrar el botó de Compartir/Desar sota les pàgines"
179
 
180
+ #: add-to-any.php:853
181
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
182
  msgstr "Si no està habilitat s'ha d'afegir el següent codi a <a href=\"theme-editor.php\">les vostres pàgines de plantilla</a> (dins de <code>index.php</code>, <code>single.php</code>, i/o <code>page.php</code>)"
183
 
184
+ #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "Estil del menú"
187
 
188
+ #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Utilitzant el personalitzador d'estil de AddToAny, vostè pot personalitzar els colors del vostre menú Compartir/Desar! Quan hageu acabat, heu de copiar el codi generat al recuadre d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opcions adicionals</a> de sota."
191
 
192
+ #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Obrir el personalitzador d'estil de AddToAny a una nova finestra"
195
 
196
+ #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "Obrir el personalitzador d'estils"
199
 
200
+ #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "Opcions del menú"
203
 
204
+ #: add-to-any.php:878
 
 
 
 
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
207
 
208
+ #: add-to-any.php:883
209
+ msgid "Show the title of the post (or page) within the menu"
210
+ msgstr "Mostrar el títol de l'entrada (o de la pàgina) dins del menú"
211
 
212
+ #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "Opcions addicionals"
215
 
216
+ #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Enganxeu el codi del personalitzador d'estil al següent requadre!"
219
 
220
+ #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
223
 
224
+ #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
227
 
228
+ #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
231
 
232
+ #: add-to-any.php:908
233
  #, fuzzy
234
  msgid "Advanced Options"
235
  msgstr "Opcions addicionals"
236
 
237
+ #: add-to-any.php:913
238
  msgid "Use CSS stylesheet"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:918
242
  msgid "Cache AddToAny locally with daily cache updates"
243
  msgstr ""
244
 
245
+ #: add-to-any.php:922
 
 
 
 
246
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
247
  msgstr ""
248
 
249
+ #: add-to-any.php:929
250
  msgid "Save Changes"
251
  msgstr "Desar els canvis"
252
 
253
+ #: add-to-any.php:930
254
+ msgid "Are you sure you want to delete all AddToAny options?"
255
+ msgstr ""
256
+
257
+ #: add-to-any.php:930
258
+ msgid "Reset"
259
+ msgstr ""
260
+
261
+ #: add-to-any.php:935
262
  msgid "Like this plugin?"
263
  msgstr "Com aquesta extensió?"
264
 
265
+ #: add-to-any.php:936
266
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
267
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
268
 
269
+ #: add-to-any.php:937
270
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
271
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Compartiu-lo</a> amb els vostres amics."
272
 
273
+ #: add-to-any.php:939
274
  msgid "Need support?"
275
  msgstr "Necessiteu suport?"
276
 
277
+ #: add-to-any.php:940
278
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
280
 
281
+ #: add-to-any.php:941
282
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
284
 
285
+ #: add-to-any.php:1066
286
  msgid "Add/Remove Services"
287
  msgstr "Serveis Compartir/Desar"
288
 
289
+ #: add-to-any.php:1123
290
  msgid "Share/Save"
291
  msgstr "Compartir/Desar"
292
 
293
+ #: add-to-any.php:1124
294
  msgid "Share/Save Buttons"
295
  msgstr "Botons de Compartir/Desar"
296
 
297
+ #~ msgid ""
298
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
299
+ #~ "the Share/Save button"
300
+ #~ msgstr ""
301
+ #~ "Obrir el menú de addtoany.com en una nova pestanya o finestra si l'usuari "
302
+ #~ "clica al botó Compartir/Desar"
303
+
304
  #~ msgid ""
305
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
306
  #~ "when displayed"
307
  #~ msgstr ""
308
  #~ "Amagar objectes incrustats (Flash, vídeo, etc) que interseccionin amb el "
309
  #~ "menú quan aquest aparegui"
310
+
311
  #~ msgid "Services"
312
  #~ msgstr "Serveis"
 
languages/add-to-any-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark .9.8.9.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -17,269 +17,297 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: add-to-any.php:258
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
- #: add-to-any.php:259
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
- #: add-to-any.php:260
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
- #: add-to-any.php:261
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
- #: add-to-any.php:262
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
- #: add-to-any.php:263
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
- #: add-to-any.php:264
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
- #: add-to-any.php:265
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
- #: add-to-any.php:266
53
  msgid "Instantly find any service to add to"
54
  msgstr "Find øjeblikkelig alle services at tilføje til"
55
 
56
- #: add-to-any.php:267
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
- #: add-to-any.php:268
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
- #: add-to-any.php:269
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
- #: add-to-any.php:270
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
- #: add-to-any.php:271
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
75
 
76
- #: add-to-any.php:272
77
  msgid "Add to your favorites"
78
  msgstr "Tilføj til dine favoritter"
79
 
80
- #: add-to-any.php:273
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
83
 
84
- #: add-to-any.php:274
85
  msgid "E-mail program"
86
  msgstr "E-mail-program"
87
 
88
- #: add-to-any.php:299
89
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
90
  msgstr "Dit tema skal repareres. For at gøre det skal du bruge <a href=\"theme-editor.php\">temaeditoren</a> til at indsætte koden <code>&lt;?php wp_footer(); ?&gt;</code> lige før <code>&lt;/body&gt;</code>-linjen i dit temas <code>footer.php</code>-fil."
91
 
92
- #: add-to-any.php:490
93
  #, php-format
94
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
95
  msgstr ""
96
 
97
- #: add-to-any.php:566
98
- #: add-to-any.php:639
99
- #: add-to-any.php:643
100
- #: add-to-any.php:647
101
- #: add-to-any.php:651
102
- #: add-to-any.php:683
103
  msgid "Share/Bookmark"
104
  msgstr "Bogmærk"
105
 
106
- #: add-to-any.php:580
107
  msgid "Settings saved."
108
  msgstr "Indstillinger gemt"
109
 
110
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
111
  msgid "AddToAny: Share/Save "
112
  msgstr "Tilføj til enhver: Del/gem"
113
 
114
- #: add-to-any.php:593
115
- #: add-to-any.php:978
116
- #: add-to-any.php:1002
117
  msgid "Settings"
118
  msgstr "Indstillinger"
119
 
120
- #: add-to-any.php:602
121
  msgid "Standalone Services"
122
  msgstr "Tilføj/fjern tjenesteudbydere"
123
 
124
- #: add-to-any.php:607
125
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
126
  msgstr "Vælg de tjenesteudbydere, du ønsker. Klik på en tjenesteudbyder, du har valgt, for at fjerne den igen. Du kan ændre rækkefølgen ved at trække og slippe, sådan som du ser dem ovenfor (når de er valgt)."
127
 
128
- #: add-to-any.php:634
129
  msgid "Button"
130
  msgstr "Knap"
131
 
132
- #: add-to-any.php:673
133
  msgid "Image URL"
134
  msgstr "Billed-URL"
135
 
136
- #: add-to-any.php:680
137
  msgid "Text only"
138
  msgstr "Kun tekst"
139
 
140
- #: add-to-any.php:688
141
  msgid "Placement"
142
  msgstr "Placering"
143
 
144
- #: add-to-any.php:697
145
- msgid "Display Share/Save button at the bottom of posts"
 
146
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
147
 
148
- #: add-to-any.php:704
149
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
150
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
151
 
152
- #: add-to-any.php:711
153
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
154
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
155
 
156
- #: add-to-any.php:715
157
- msgid "Display Share/Save button at the bottom of pages"
 
158
  msgstr "Vis Del-/Gem-knap i bunden af sider"
159
 
160
- #: add-to-any.php:719
161
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
162
  msgstr "Hvis du ikke vælger dette, skal du sørge for at placere den følgende kode i <a href=\"theme-editor.php\">dine skabelonsider</a> (i <code>index.php</code>, <code>single.php</code>, og/eller <code>page.php</code>)"
163
 
164
- #: add-to-any.php:728
165
  msgid "Menu Style"
166
  msgstr "Menutypografi"
167
 
168
- #: add-to-any.php:730
169
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
170
  msgstr "Ved at bruge AddToAny's menutypograf, kan du tilpasse farverne på din Del-/Gem-menu! Når du er færdig, skal du sørge for at indsætte den genererede kode i <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Yderligere indstillinger</a>-boksen nedenfor."
171
 
172
- #: add-to-any.php:732
173
  msgid "Open the AddToAny Menu Styler in a new window"
174
  msgstr "Åben AddToAny's menutypograf i et nyt vindue"
175
 
176
- #: add-to-any.php:734
177
  msgid "Open Menu Styler"
178
  msgstr "Åben menutypografen"
179
 
180
- #: add-to-any.php:739
181
  msgid "Menu Options"
182
  msgstr "Menuvalgmuligheder"
183
 
184
- #: add-to-any.php:744
185
- msgid "Show the title of the post (or page) within the menu"
186
- msgstr "Vis titlen på indlægget (eller siden) i menuen"
187
-
188
- #: add-to-any.php:751
189
  msgid "Only show the menu when the user clicks the Share/Save button"
190
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
191
 
192
- #: add-to-any.php:757
193
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
194
- msgstr "Åben menusidenaddtoany.com i en ny fane eller vindue hvis brugeren klikker på Del-/Gem-knappen"
195
 
196
- #: add-to-any.php:762
197
  msgid "Additional Options"
198
  msgstr "Yderligere indstillinger"
199
 
200
- #: add-to-any.php:766
201
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
202
  msgstr "Indsæt koden fra AddToAny's menutypograf i boksen nedenfor!"
203
 
204
- #: add-to-any.php:770
205
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
206
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
207
 
208
- #: add-to-any.php:771
209
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
210
  msgstr "Avancerede brugere kan se nærmere på AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
211
 
212
- #: add-to-any.php:777
213
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
214
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
215
 
216
- #: add-to-any.php:782
217
  #, fuzzy
218
  msgid "Advanced Options"
219
  msgstr "Yderligere indstillinger"
220
 
221
- #: add-to-any.php:787
222
  msgid "Use CSS stylesheet"
223
  msgstr ""
224
 
225
- #: add-to-any.php:792
226
  msgid "Cache AddToAny locally with daily cache updates"
227
  msgstr ""
228
 
229
- #: add-to-any.php:796
230
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
231
- msgstr ""
232
-
233
- #: add-to-any.php:801
234
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
235
  msgstr ""
236
 
237
- #: add-to-any.php:808
238
  msgid "Save Changes"
239
  msgstr "Gem ændringer"
240
 
241
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
242
  msgid "Like this plugin?"
243
  msgstr "Kan du lide dette plugin?"
244
 
245
- #: add-to-any.php:814
246
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
247
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
248
 
249
- #: add-to-any.php:815
250
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
251
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Del det</a> med dine venner."
252
 
253
- #: add-to-any.php:817
254
  msgid "Need support?"
255
  msgstr "Har du brug for support?"
256
 
257
- #: add-to-any.php:818
258
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
259
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
260
 
261
- #: add-to-any.php:819
262
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
263
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
264
 
265
- #: add-to-any.php:926
266
  msgid "Add/Remove Services"
267
  msgstr "Tilføj/fjern tjenesteudbydere"
268
 
269
- #: add-to-any.php:978
270
  msgid "Share/Save"
271
  msgstr "Del/Gem"
272
 
273
- #: add-to-any.php:979
274
  msgid "Share/Save Buttons"
275
  msgstr "Del-/Gem-knapper"
276
 
 
 
 
 
 
 
 
277
  #~ msgid ""
278
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
279
  #~ "when displayed"
280
  #~ msgstr ""
281
  #~ "Skjul indlejrede objekter (flash, video, osv.) som kan påvirke menuen, "
282
  #~ "når den vises"
 
283
  #~ msgid "Services"
284
  #~ msgstr "Tjenesteudbydere"
285
-
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark .9.8.9.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: add-to-any.php:313
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
+ #: add-to-any.php:314
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
+ #: add-to-any.php:315
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
+ #: add-to-any.php:316
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
+ #: add-to-any.php:317
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
+ #: add-to-any.php:318
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
+ #: add-to-any.php:319
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
+ #: add-to-any.php:320
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
+ #: add-to-any.php:321
53
  msgid "Instantly find any service to add to"
54
  msgstr "Find øjeblikkelig alle services at tilføje til"
55
 
56
+ #: add-to-any.php:322
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
+ #: add-to-any.php:323
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
+ #: add-to-any.php:324
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
+ #: add-to-any.php:325
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
+ #: add-to-any.php:326
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
75
 
76
+ #: add-to-any.php:327
77
  msgid "Add to your favorites"
78
  msgstr "Tilføj til dine favoritter"
79
 
80
+ #: add-to-any.php:328
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
83
 
84
+ #: add-to-any.php:329
85
  msgid "E-mail program"
86
  msgstr "E-mail-program"
87
 
88
+ #: add-to-any.php:354
89
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
90
  msgstr "Dit tema skal repareres. For at gøre det skal du bruge <a href=\"theme-editor.php\">temaeditoren</a> til at indsætte koden <code>&lt;?php wp_footer(); ?&gt;</code> lige før <code>&lt;/body&gt;</code>-linjen i dit temas <code>footer.php</code>-fil."
91
 
92
+ #: add-to-any.php:511
93
  #, php-format
94
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
95
  msgstr ""
96
 
97
+ #: add-to-any.php:645
98
+ #: add-to-any.php:769
99
+ #: add-to-any.php:773
100
+ #: add-to-any.php:777
101
+ #: add-to-any.php:781
102
+ #: add-to-any.php:813
103
  msgid "Share/Bookmark"
104
  msgstr "Bogmærk"
105
 
106
+ #: add-to-any.php:658
107
  msgid "Settings saved."
108
  msgstr "Indstillinger gemt"
109
 
110
+ #: add-to-any.php:679
111
+ msgid "bottom"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:683
115
+ msgid "top"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:687
119
+ msgid "top &amp; bottom"
120
+ msgstr ""
121
+
122
+ #: add-to-any.php:718
123
  msgid "AddToAny: Share/Save "
124
  msgstr "Tilføj til enhver: Del/gem"
125
 
126
+ #: add-to-any.php:718
127
+ #: add-to-any.php:1123
128
+ #: add-to-any.php:1154
129
  msgid "Settings"
130
  msgstr "Indstillinger"
131
 
132
+ #: add-to-any.php:727
133
  msgid "Standalone Services"
134
  msgstr "Tilføj/fjern tjenesteudbydere"
135
 
136
+ #: add-to-any.php:732
137
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
138
  msgstr "Vælg de tjenesteudbydere, du ønsker. Klik på en tjenesteudbyder, du har valgt, for at fjerne den igen. Du kan ændre rækkefølgen ved at trække og slippe, sådan som du ser dem ovenfor (når de er valgt)."
139
 
140
+ #: add-to-any.php:764
141
  msgid "Button"
142
  msgstr "Knap"
143
 
144
+ #: add-to-any.php:803
145
  msgid "Image URL"
146
  msgstr "Billed-URL"
147
 
148
+ #: add-to-any.php:810
149
  msgid "Text only"
150
  msgstr "Kun tekst"
151
 
152
+ #: add-to-any.php:818
153
  msgid "Placement"
154
  msgstr "Placering"
155
 
156
+ #: add-to-any.php:823
157
+ #, fuzzy, php-format
158
+ msgid "Display at the %s of posts"
159
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
160
 
161
+ #: add-to-any.php:830
162
+ #, php-format
163
+ msgid "Display at the %s of post excerpts"
164
+ msgstr ""
165
+
166
+ #: add-to-any.php:837
167
+ #, fuzzy, php-format
168
+ msgid "Display at the %s of posts on the front page"
169
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
170
 
171
+ #: add-to-any.php:845
172
+ #, fuzzy, php-format
173
+ msgid "Display at the %s of posts in the feed"
174
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
175
 
176
+ #: add-to-any.php:849
177
+ #, fuzzy, php-format
178
+ msgid "Display at the %s of pages"
179
  msgstr "Vis Del-/Gem-knap i bunden af sider"
180
 
181
+ #: add-to-any.php:853
182
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
183
  msgstr "Hvis du ikke vælger dette, skal du sørge for at placere den følgende kode i <a href=\"theme-editor.php\">dine skabelonsider</a> (i <code>index.php</code>, <code>single.php</code>, og/eller <code>page.php</code>)"
184
 
185
+ #: add-to-any.php:862
186
  msgid "Menu Style"
187
  msgstr "Menutypografi"
188
 
189
+ #: add-to-any.php:864
190
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
191
  msgstr "Ved at bruge AddToAny's menutypograf, kan du tilpasse farverne på din Del-/Gem-menu! Når du er færdig, skal du sørge for at indsætte den genererede kode i <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Yderligere indstillinger</a>-boksen nedenfor."
192
 
193
+ #: add-to-any.php:866
194
  msgid "Open the AddToAny Menu Styler in a new window"
195
  msgstr "Åben AddToAny's menutypograf i et nyt vindue"
196
 
197
+ #: add-to-any.php:868
198
  msgid "Open Menu Styler"
199
  msgstr "Åben menutypografen"
200
 
201
+ #: add-to-any.php:873
202
  msgid "Menu Options"
203
  msgstr "Menuvalgmuligheder"
204
 
205
+ #: add-to-any.php:878
 
 
 
 
206
  msgid "Only show the menu when the user clicks the Share/Save button"
207
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
208
 
209
+ #: add-to-any.php:883
210
+ msgid "Show the title of the post (or page) within the menu"
211
+ msgstr "Vis titlenindlægget (eller siden) i menuen"
212
 
213
+ #: add-to-any.php:888
214
  msgid "Additional Options"
215
  msgstr "Yderligere indstillinger"
216
 
217
+ #: add-to-any.php:892
218
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
219
  msgstr "Indsæt koden fra AddToAny's menutypograf i boksen nedenfor!"
220
 
221
+ #: add-to-any.php:896
222
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
223
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
224
 
225
+ #: add-to-any.php:897
226
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
227
  msgstr "Avancerede brugere kan se nærmere på AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
228
 
229
+ #: add-to-any.php:903
230
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
231
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
232
 
233
+ #: add-to-any.php:908
234
  #, fuzzy
235
  msgid "Advanced Options"
236
  msgstr "Yderligere indstillinger"
237
 
238
+ #: add-to-any.php:913
239
  msgid "Use CSS stylesheet"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:918
243
  msgid "Cache AddToAny locally with daily cache updates"
244
  msgstr ""
245
 
246
+ #: add-to-any.php:922
 
 
 
 
247
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
248
  msgstr ""
249
 
250
+ #: add-to-any.php:929
251
  msgid "Save Changes"
252
  msgstr "Gem ændringer"
253
 
254
+ #: add-to-any.php:930
255
+ msgid "Are you sure you want to delete all AddToAny options?"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:930
259
+ msgid "Reset"
260
+ msgstr ""
261
+
262
+ #: add-to-any.php:935
263
  msgid "Like this plugin?"
264
  msgstr "Kan du lide dette plugin?"
265
 
266
+ #: add-to-any.php:936
267
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
268
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
269
 
270
+ #: add-to-any.php:937
271
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
272
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Del det</a> med dine venner."
273
 
274
+ #: add-to-any.php:939
275
  msgid "Need support?"
276
  msgstr "Har du brug for support?"
277
 
278
+ #: add-to-any.php:940
279
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
280
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
281
 
282
+ #: add-to-any.php:941
283
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
284
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
285
 
286
+ #: add-to-any.php:1066
287
  msgid "Add/Remove Services"
288
  msgstr "Tilføj/fjern tjenesteudbydere"
289
 
290
+ #: add-to-any.php:1123
291
  msgid "Share/Save"
292
  msgstr "Del/Gem"
293
 
294
+ #: add-to-any.php:1124
295
  msgid "Share/Save Buttons"
296
  msgstr "Del-/Gem-knapper"
297
 
298
+ #~ msgid ""
299
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
300
+ #~ "the Share/Save button"
301
+ #~ msgstr ""
302
+ #~ "Åben menusiden på addtoany.com i en ny fane eller vindue hvis brugeren "
303
+ #~ "klikker på Del-/Gem-knappen"
304
+
305
  #~ msgid ""
306
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
307
  #~ "when displayed"
308
  #~ msgstr ""
309
  #~ "Skjul indlejrede objekter (flash, video, osv.) som kan påvirke menuen, "
310
  #~ "når den vises"
311
+
312
  #~ msgid "Services"
313
  #~ msgstr "Tjenesteudbydere"
 
languages/add-to-any-de.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,264 +13,284 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:271
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Seite mit Ctrl+D oder Cmd+D zu Lesezeichen hinzufügen"
72
 
73
- #: add-to-any.php:272
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
- #: add-to-any.php:273
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
- #: add-to-any.php:274
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
- #: add-to-any.php:299
86
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
87
  msgstr ""
88
 
89
- #: add-to-any.php:490
90
  #, php-format
91
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
92
  msgstr ""
93
 
94
- #: add-to-any.php:566
95
- #: add-to-any.php:639
96
- #: add-to-any.php:643
97
- #: add-to-any.php:647
98
- #: add-to-any.php:651
99
- #: add-to-any.php:683
100
  msgid "Share/Bookmark"
101
  msgstr ""
102
 
103
- #: add-to-any.php:580
104
  msgid "Settings saved."
105
  msgstr ""
106
 
107
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
108
  msgid "AddToAny: Share/Save "
109
  msgstr ""
110
 
111
- #: add-to-any.php:593
112
- #: add-to-any.php:978
113
- #: add-to-any.php:1002
114
  msgid "Settings"
115
  msgstr ""
116
 
117
- #: add-to-any.php:602
118
  msgid "Standalone Services"
119
  msgstr ""
120
 
121
- #: add-to-any.php:607
122
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
123
  msgstr ""
124
 
125
- #: add-to-any.php:634
126
  msgid "Button"
127
  msgstr ""
128
 
129
- #: add-to-any.php:673
130
  msgid "Image URL"
131
  msgstr ""
132
 
133
- #: add-to-any.php:680
134
  msgid "Text only"
135
  msgstr ""
136
 
137
- #: add-to-any.php:688
138
  msgid "Placement"
139
  msgstr ""
140
 
141
- #: add-to-any.php:697
142
- msgid "Display Share/Save button at the bottom of posts"
 
 
 
 
 
 
143
  msgstr ""
144
 
145
- #: add-to-any.php:704
146
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
147
  msgstr ""
148
 
149
- #: add-to-any.php:711
150
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
151
  msgstr ""
152
 
153
- #: add-to-any.php:715
154
- msgid "Display Share/Save button at the bottom of pages"
 
155
  msgstr ""
156
 
157
- #: add-to-any.php:719
158
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
159
  msgstr ""
160
 
161
- #: add-to-any.php:728
162
  msgid "Menu Style"
163
  msgstr ""
164
 
165
- #: add-to-any.php:730
166
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
167
  msgstr ""
168
 
169
- #: add-to-any.php:732
170
  msgid "Open the AddToAny Menu Styler in a new window"
171
  msgstr ""
172
 
173
- #: add-to-any.php:734
174
  msgid "Open Menu Styler"
175
  msgstr ""
176
 
177
- #: add-to-any.php:739
178
  msgid "Menu Options"
179
  msgstr ""
180
 
181
- #: add-to-any.php:744
182
- msgid "Show the title of the post (or page) within the menu"
183
- msgstr ""
184
-
185
- #: add-to-any.php:751
186
  msgid "Only show the menu when the user clicks the Share/Save button"
187
  msgstr ""
188
 
189
- #: add-to-any.php:757
190
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
191
  msgstr ""
192
 
193
- #: add-to-any.php:762
194
  msgid "Additional Options"
195
  msgstr ""
196
 
197
- #: add-to-any.php:766
198
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
199
  msgstr ""
200
 
201
- #: add-to-any.php:770
202
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
203
  msgstr ""
204
 
205
- #: add-to-any.php:771
206
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
207
  msgstr ""
208
 
209
- #: add-to-any.php:777
210
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
211
  msgstr ""
212
 
213
- #: add-to-any.php:782
214
  msgid "Advanced Options"
215
  msgstr ""
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
  msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
  msgstr ""
224
 
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
  msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
  msgstr ""
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
  msgstr ""
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
  msgstr ""
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
  msgstr ""
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr ""
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
  msgstr ""
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
  msgstr ""
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
  msgstr ""
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
  msgstr ""
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
  msgstr ""
272
 
273
  #, fuzzy
274
  #~ msgid "Services"
275
  #~ msgstr "Dienst(e) suchen"
276
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:326
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Seite mit Ctrl+D oder Cmd+D zu Lesezeichen hinzufügen"
72
 
73
+ #: add-to-any.php:327
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
+ #: add-to-any.php:328
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
+ #: add-to-any.php:329
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
+ #: add-to-any.php:354
86
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
87
  msgstr ""
88
 
89
+ #: add-to-any.php:511
90
  #, php-format
91
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
92
  msgstr ""
93
 
94
+ #: add-to-any.php:645
95
+ #: add-to-any.php:769
96
+ #: add-to-any.php:773
97
+ #: add-to-any.php:777
98
+ #: add-to-any.php:781
99
+ #: add-to-any.php:813
100
  msgid "Share/Bookmark"
101
  msgstr ""
102
 
103
+ #: add-to-any.php:658
104
  msgid "Settings saved."
105
  msgstr ""
106
 
107
+ #: add-to-any.php:679
108
+ msgid "bottom"
109
+ msgstr ""
110
+
111
+ #: add-to-any.php:683
112
+ msgid "top"
113
+ msgstr ""
114
+
115
+ #: add-to-any.php:687
116
+ msgid "top &amp; bottom"
117
+ msgstr ""
118
+
119
+ #: add-to-any.php:718
120
  msgid "AddToAny: Share/Save "
121
  msgstr ""
122
 
123
+ #: add-to-any.php:718
124
+ #: add-to-any.php:1123
125
+ #: add-to-any.php:1154
126
  msgid "Settings"
127
  msgstr ""
128
 
129
+ #: add-to-any.php:727
130
  msgid "Standalone Services"
131
  msgstr ""
132
 
133
+ #: add-to-any.php:732
134
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
135
  msgstr ""
136
 
137
+ #: add-to-any.php:764
138
  msgid "Button"
139
  msgstr ""
140
 
141
+ #: add-to-any.php:803
142
  msgid "Image URL"
143
  msgstr ""
144
 
145
+ #: add-to-any.php:810
146
  msgid "Text only"
147
  msgstr ""
148
 
149
+ #: add-to-any.php:818
150
  msgid "Placement"
151
  msgstr ""
152
 
153
+ #: add-to-any.php:823
154
+ #, php-format
155
+ msgid "Display at the %s of posts"
156
+ msgstr ""
157
+
158
+ #: add-to-any.php:830
159
+ #, php-format
160
+ msgid "Display at the %s of post excerpts"
161
  msgstr ""
162
 
163
+ #: add-to-any.php:837
164
+ #, php-format
165
+ msgid "Display at the %s of posts on the front page"
166
  msgstr ""
167
 
168
+ #: add-to-any.php:845
169
+ #, php-format
170
+ msgid "Display at the %s of posts in the feed"
171
  msgstr ""
172
 
173
+ #: add-to-any.php:849
174
+ #, php-format
175
+ msgid "Display at the %s of pages"
176
  msgstr ""
177
 
178
+ #: add-to-any.php:853
179
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
180
  msgstr ""
181
 
182
+ #: add-to-any.php:862
183
  msgid "Menu Style"
184
  msgstr ""
185
 
186
+ #: add-to-any.php:864
187
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
188
  msgstr ""
189
 
190
+ #: add-to-any.php:866
191
  msgid "Open the AddToAny Menu Styler in a new window"
192
  msgstr ""
193
 
194
+ #: add-to-any.php:868
195
  msgid "Open Menu Styler"
196
  msgstr ""
197
 
198
+ #: add-to-any.php:873
199
  msgid "Menu Options"
200
  msgstr ""
201
 
202
+ #: add-to-any.php:878
 
 
 
 
203
  msgid "Only show the menu when the user clicks the Share/Save button"
204
  msgstr ""
205
 
206
+ #: add-to-any.php:883
207
+ msgid "Show the title of the post (or page) within the menu"
208
  msgstr ""
209
 
210
+ #: add-to-any.php:888
211
  msgid "Additional Options"
212
  msgstr ""
213
 
214
+ #: add-to-any.php:892
215
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
216
  msgstr ""
217
 
218
+ #: add-to-any.php:896
219
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
220
  msgstr ""
221
 
222
+ #: add-to-any.php:897
223
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
224
  msgstr ""
225
 
226
+ #: add-to-any.php:903
227
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
228
  msgstr ""
229
 
230
+ #: add-to-any.php:908
231
  msgid "Advanced Options"
232
  msgstr ""
233
 
234
+ #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:922
 
 
 
 
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr ""
249
 
250
+ #: add-to-any.php:930
251
+ msgid "Are you sure you want to delete all AddToAny options?"
252
+ msgstr ""
253
+
254
+ #: add-to-any.php:930
255
+ msgid "Reset"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr ""
261
 
262
+ #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr ""
265
 
266
+ #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr ""
269
 
270
+ #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr ""
273
 
274
+ #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr ""
277
 
278
+ #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr ""
281
 
282
+ #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr ""
285
 
286
+ #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr ""
289
 
290
+ #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr ""
293
 
294
  #, fuzzy
295
  #~ msgid "Services"
296
  #~ msgstr "Dienst(e) suchen"
 
languages/add-to-any-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AddToAny: Share/Bookmark/Email Button v.9.9.6.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2010-10-06 07:34+0000\n"
7
  "Last-Translator: MediaCenter Laufenberg <info@portavision.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -13,323 +13,346 @@ msgstr ""
13
  "X-Poedit-Language: German\n"
14
  "X-Poedit-Country: GERMANY\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #: add-to-any.php:281
23
- #@ add-to-any
24
  msgid "Share"
25
  msgstr "Empfehlen"
26
 
27
- #: add-to-any.php:282
28
- #@ add-to-any
29
  msgid "Save"
30
  msgstr "Speichern"
31
 
32
- #: add-to-any.php:283
33
- #@ add-to-any
34
  msgid "Subscribe"
35
  msgstr "Abonnieren"
36
 
37
- #: add-to-any.php:284
38
- #@ add-to-any
39
  msgid "E-mail"
40
  msgstr "E-Mail"
41
 
42
- #: add-to-any.php:285
43
- #@ add-to-any
44
  msgid "Bookmark"
45
  msgstr "Bookmark"
46
 
47
- #: add-to-any.php:286
48
- #@ add-to-any
49
  msgid "Show all"
50
  msgstr "zeige alle"
51
 
52
- #: add-to-any.php:287
53
- #@ add-to-any
54
  msgid "Show less"
55
  msgstr "Zeige weniger"
56
 
57
- #: add-to-any.php:288
58
- #@ add-to-any
59
  msgid "Find service(s)"
60
  msgstr "Finden Dienstleistung(en)"
61
 
62
- #: add-to-any.php:289
63
- #@ add-to-any
64
  msgid "Instantly find any service to add to"
65
  msgstr "Um weitere Dienste ergänzen"
66
 
67
- #: add-to-any.php:290
68
- #@ add-to-any
69
  msgid "Powered by"
70
  msgstr "Powered by"
71
 
72
- #: add-to-any.php:291
73
- #@ add-to-any
74
  msgid "Share via e-mail"
75
  msgstr "per E-Mail empfehlen"
76
 
77
- #: add-to-any.php:292
78
- #@ add-to-any
79
  msgid "Subscribe via e-mail"
80
  msgstr "per E-Mail abonnieren"
81
 
82
- #: add-to-any.php:293
83
- #@ add-to-any
84
  msgid "Bookmark in your browser"
85
  msgstr "Seite den Bookmarks hinzufügen"
86
 
87
- #: add-to-any.php:294
88
- #@ add-to-any
89
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
90
  msgstr "Drücken Sie Strg + D oder ⌘ + D, um diese Seite den Bookmarks hinzuzufügen"
91
 
92
- #: add-to-any.php:295
93
- #@ add-to-any
94
  msgid "Add to your favorites"
95
  msgstr "Zu Ihren Favoriten hinzufügen"
96
 
97
- #: add-to-any.php:296
98
- #@ add-to-any
99
  msgid "Send from any e-mail address or e-mail program"
100
  msgstr "Von E-Mail-Adresse oder E-Mail-Programm senden"
101
 
102
- #: add-to-any.php:297
103
- #@ add-to-any
104
  msgid "E-mail program"
105
  msgstr "E-Mail-Programm"
106
 
107
- #: add-to-any.php:322
108
- #@ default
109
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
110
  msgstr ""
111
 
112
- #: add-to-any.php:462
 
113
  #, php-format
114
- #@ default
115
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
116
  msgstr ""
117
 
118
- #: add-to-any.php:542
119
- #: add-to-any.php:615
120
- #: add-to-any.php:619
121
- #: add-to-any.php:623
122
- #: add-to-any.php:627
123
- #: add-to-any.php:659
124
- #@ add-to-any
125
  msgid "Share/Bookmark"
126
  msgstr "Empfehlen/Bookmark"
127
 
128
- #: add-to-any.php:556
129
- #@ default
130
  msgid "Settings saved."
131
  msgstr ""
132
 
133
- #: add-to-any.php:569
134
- #@ add-to-any
 
 
 
 
 
 
 
 
 
 
 
 
135
  msgid "AddToAny: Share/Save "
136
  msgstr "AddToAny: Empfehlen/Speichern"
137
 
138
- #: add-to-any.php:569
139
- #: add-to-any.php:951
140
- #: add-to-any.php:982
141
- #@ default
142
  msgid "Settings"
143
  msgstr ""
144
 
145
- #: add-to-any.php:578
146
- #@ add-to-any
147
  msgid "Standalone Services"
148
  msgstr "einzelne Services"
149
 
150
- #: add-to-any.php:583
151
- #@ add-to-any
152
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
153
  msgstr "Wählen Sie die gewünschten Dienste aus. Klicken Sie auf einen gewählten Dienst erneut um ihn wieder zu entfernen. Per Drag &amp; Drop können Sie die Reihenfolge bestimmen."
154
 
155
- #: add-to-any.php:610
156
- #@ add-to-any
157
  msgid "Button"
158
  msgstr "Button"
159
 
160
- #: add-to-any.php:649
161
- #@ default
162
  msgid "Image URL"
163
  msgstr ""
164
 
165
- #: add-to-any.php:656
166
- #@ default
167
  msgid "Text only"
168
  msgstr ""
169
 
170
- #: add-to-any.php:664
171
- #@ add-to-any
172
  msgid "Placement"
173
  msgstr "Platzierung"
174
 
175
- #: add-to-any.php:669
176
- #@ add-to-any
177
- msgid "Display at the bottom of posts"
 
178
  msgstr "unterhalb von Beiträgen anzeigen lassen"
179
 
180
- #: add-to-any.php:676
181
- #@ add-to-any
182
- msgid "Display at the bottom of post excerpts"
 
183
  msgstr "am unteren Rand von Beitrags-Auszügen anzeigen lassen"
184
 
185
- #: add-to-any.php:683
186
- #@ add-to-any
187
- msgid "Display at the bottom of posts on the front page"
 
188
  msgstr "am unteren Rand der Beiträge auf der Startseite anzeigen lassen"
189
 
190
- #: add-to-any.php:691
191
- #@ add-to-any
192
- msgid "Display at the bottom of posts in the feed"
 
193
  msgstr "am unteren Rand der Beiträge im Feed anzeigen"
194
 
195
- #: add-to-any.php:695
196
- #@ add-to-any
197
- msgid "Display at the bottom of pages"
 
198
  msgstr "Anzeige am unteren Rand bei statischen Seiten"
199
 
200
- #: add-to-any.php:699
201
- #@ add-to-any
202
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
203
  msgstr "Ist diese Option deaktiviert, müssen Sie den folgenden Code <a href=\"theme-editor.php\">Ihren Vorlage-Seiten</a> (innherhalb <code>index.php</code> , <code>single.php</code> und / oder <code>page.php</code> ) manuell hinzufügen"
204
 
205
- #: add-to-any.php:708
206
- #@ add-to-any
207
  msgid "Menu Style"
208
  msgstr "Menüstil"
209
 
210
- #: add-to-any.php:710
211
- #@ add-to-any
212
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
213
  msgstr "Mit AddToAny&#39;s Menu Styler können Sie die Farben des Empfehlen/Speichern-Menü selbst festlegen. Den generierten Code fügen Sie unter <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Zusätzliche Optionen</a> in das Feld ein."
214
 
215
- #: add-to-any.php:712
216
- #@ add-to-any
217
  msgid "Open the AddToAny Menu Styler in a new window"
218
  msgstr "AddToAny Menü-Styler in einem neuen Fenster öffnen"
219
 
220
- #: add-to-any.php:714
221
- #@ add-to-any
222
  msgid "Open Menu Styler"
223
  msgstr "Menü-Styler öffnen"
224
 
225
- #: add-to-any.php:719
226
- #@ add-to-any
227
  msgid "Menu Options"
228
  msgstr "Menü-Optionen"
229
 
230
- #: add-to-any.php:724
231
- #@ add-to-any
232
  msgid "Only show the menu when the user clicks the Share/Save button"
233
  msgstr "Menü erst dann zeigen, wenn der Benutzer auf den Empfehlen/Speichern-Knopf drückt"
234
 
235
- #: add-to-any.php:729
236
- #@ add-to-any
237
  msgid "Show the title of the post (or page) within the menu"
238
  msgstr "Den Titel des Beitrags oder der Seite im Menü anzeigen"
239
 
240
- #: add-to-any.php:734
241
- #@ add-to-any
242
  msgid "Additional Options"
243
  msgstr "Zusätzliche Optionen"
244
 
245
- #: add-to-any.php:738
246
- #@ add-to-any
247
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
248
  msgstr "Fügen Sie den Code aus AddToAny&#39;s Menü-Styler in das untere Feld ein!"
249
 
250
- #: add-to-any.php:742
251
- #@ add-to-any
252
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
253
  msgstr "Hier können Sie spezielle JavaScript-Variablen für jedes \\\"Empfehlen/Speichern\\\"-Menü festlegen."
254
 
255
- #: add-to-any.php:743
256
- #@ add-to-any
257
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
258
  msgstr "Erfahrene Benutzer sollten auch die individuellen Funktionen unter <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">&raquo;AddToAny zusätzliche Optionen&laquo;</a> ausprobieren."
259
 
260
- #: add-to-any.php:749
261
- #@ add-to-any
262
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
263
  msgstr "<strong>Hinweis:</strong> Wenn Sie neuen Code hinzufügen sollten Sie darauf achten, dass Sie nicht den vorherigen Code überschreiben. Dies könnte zu Fehlern führen!"
264
 
265
- #: add-to-any.php:754
266
- #@ add-to-any
267
  msgid "Advanced Options"
268
  msgstr "Erweiterte Optionen"
269
 
270
- #: add-to-any.php:759
271
- #@ add-to-any
272
  msgid "Use CSS stylesheet"
273
  msgstr "Verwenden Sie CSS-Stylesheet"
274
 
275
- #: add-to-any.php:764
276
- #@ add-to-any
277
  msgid "Cache AddToAny locally with daily cache updates"
278
  msgstr "AddToAny lokal mit täglichen Updates Cachen"
279
 
280
- #: add-to-any.php:768
281
- #@ add-to-any
282
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
283
  msgstr "Nur für Webseiten mit häufig wiederkehrenden Besuchern zu empfehlen. Bei den Besuchern, in deren Browser AddToAny-Cache bereits eingestellt ist kann es dazu führen dass Ihre Seiten langsamer ausgeliefert werden. Achten Sie darauf, das &raquo;Cache/Ablauf&laquo;-Zeitlimit für Bild-Dateien in Ihrem <code>uploads/addtoany</code> Verzeichnis in die entfernte Zukunft festzulegen."
284
 
285
- #: add-to-any.php:775
286
- #@ add-to-any
287
  msgid "Save Changes"
288
  msgstr "Änderungen speichern"
289
 
290
- #: add-to-any.php:780
291
- #@ add-to-any
 
 
 
 
 
 
 
 
292
  msgid "Like this plugin?"
293
  msgstr "Gefällt Ihnen dieses Plugin?"
294
 
295
- #: add-to-any.php:781
296
- #@ add-to-any
297
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
298
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geben Sie diesem Plugin ein gutes Rating</a> auf WordPress.org."
299
 
300
- #: add-to-any.php:782
301
- #, php-format
302
- #@ add-to-any
303
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
304
  msgstr "<a href=\\\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\\\">Empfehlen Sie diesen Beitrag</a> Ihren Freunden."
305
 
306
- #: add-to-any.php:784
307
- #@ add-to-any
308
  msgid "Need support?"
309
  msgstr "Brauchen Sie Unterstützung?"
310
 
311
- #: add-to-any.php:785
312
- #@ add-to-any
313
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
314
  msgstr "Weitere Infos finden Sie in den <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs (frequently asked questions)</a>."
315
 
316
- #: add-to-any.php:786
317
- #@ add-to-any
318
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
319
  msgstr "Suchen Sie auch in den <a href=\"http://wordpress.org/tags/add-to-any\">Support-Foren</a> ."
320
 
321
- #: add-to-any.php:899
322
- #@ add-to-any
323
  msgid "Add/Remove Services"
324
  msgstr "Dienste hinzufügen / entfernen"
325
 
326
- #: add-to-any.php:951
327
- #@ add-to-any
328
  msgid "Share/Save"
329
  msgstr "Empfehlen / Speichern"
330
 
331
- #: add-to-any.php:952
332
- #@ add-to-any
333
  msgid "Share/Save Buttons"
334
  msgstr "Empfehlen / Speichern Knopf"
335
 
2
  msgstr ""
3
  "Project-Id-Version: AddToAny: Share/Bookmark/Email Button v.9.9.6.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
+ "PO-Revision-Date: 2011-02-16 00:10-0800\n"
7
  "Last-Translator: MediaCenter Laufenberg <info@portavision.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
13
  "X-Poedit-Language: German\n"
14
  "X-Poedit-Country: GERMANY\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
+ # @ add-to-any
22
+ #: add-to-any.php:313
23
  msgid "Share"
24
  msgstr "Empfehlen"
25
 
26
+ # @ add-to-any
27
+ #: add-to-any.php:314
28
  msgid "Save"
29
  msgstr "Speichern"
30
 
31
+ # @ add-to-any
32
+ #: add-to-any.php:315
33
  msgid "Subscribe"
34
  msgstr "Abonnieren"
35
 
36
+ # @ add-to-any
37
+ #: add-to-any.php:316
38
  msgid "E-mail"
39
  msgstr "E-Mail"
40
 
41
+ # @ add-to-any
42
+ #: add-to-any.php:317
43
  msgid "Bookmark"
44
  msgstr "Bookmark"
45
 
46
+ # @ add-to-any
47
+ #: add-to-any.php:318
48
  msgid "Show all"
49
  msgstr "zeige alle"
50
 
51
+ # @ add-to-any
52
+ #: add-to-any.php:319
53
  msgid "Show less"
54
  msgstr "Zeige weniger"
55
 
56
+ # @ add-to-any
57
+ #: add-to-any.php:320
58
  msgid "Find service(s)"
59
  msgstr "Finden Dienstleistung(en)"
60
 
61
+ # @ add-to-any
62
+ #: add-to-any.php:321
63
  msgid "Instantly find any service to add to"
64
  msgstr "Um weitere Dienste ergänzen"
65
 
66
+ # @ add-to-any
67
+ #: add-to-any.php:322
68
  msgid "Powered by"
69
  msgstr "Powered by"
70
 
71
+ # @ add-to-any
72
+ #: add-to-any.php:323
73
  msgid "Share via e-mail"
74
  msgstr "per E-Mail empfehlen"
75
 
76
+ # @ add-to-any
77
+ #: add-to-any.php:324
78
  msgid "Subscribe via e-mail"
79
  msgstr "per E-Mail abonnieren"
80
 
81
+ # @ add-to-any
82
+ #: add-to-any.php:325
83
  msgid "Bookmark in your browser"
84
  msgstr "Seite den Bookmarks hinzufügen"
85
 
86
+ # @ add-to-any
87
+ #: add-to-any.php:326
88
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
89
  msgstr "Drücken Sie Strg + D oder ⌘ + D, um diese Seite den Bookmarks hinzuzufügen"
90
 
91
+ # @ add-to-any
92
+ #: add-to-any.php:327
93
  msgid "Add to your favorites"
94
  msgstr "Zu Ihren Favoriten hinzufügen"
95
 
96
+ # @ add-to-any
97
+ #: add-to-any.php:328
98
  msgid "Send from any e-mail address or e-mail program"
99
  msgstr "Von E-Mail-Adresse oder E-Mail-Programm senden"
100
 
101
+ # @ add-to-any
102
+ #: add-to-any.php:329
103
  msgid "E-mail program"
104
  msgstr "E-Mail-Programm"
105
 
106
+ # @ default
107
+ #: add-to-any.php:354
108
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
109
  msgstr ""
110
 
111
+ # @ default
112
+ #: add-to-any.php:511
113
  #, php-format
 
114
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
115
  msgstr ""
116
 
117
+ # @ add-to-any
118
+ #: add-to-any.php:645
119
+ #: add-to-any.php:769
120
+ #: add-to-any.php:773
121
+ #: add-to-any.php:777
122
+ #: add-to-any.php:781
123
+ #: add-to-any.php:813
124
  msgid "Share/Bookmark"
125
  msgstr "Empfehlen/Bookmark"
126
 
127
+ # @ default
128
+ #: add-to-any.php:658
129
  msgid "Settings saved."
130
  msgstr ""
131
 
132
+ #: add-to-any.php:679
133
+ msgid "bottom"
134
+ msgstr ""
135
+
136
+ #: add-to-any.php:683
137
+ msgid "top"
138
+ msgstr ""
139
+
140
+ #: add-to-any.php:687
141
+ msgid "top &amp; bottom"
142
+ msgstr ""
143
+
144
+ # @ add-to-any
145
+ #: add-to-any.php:718
146
  msgid "AddToAny: Share/Save "
147
  msgstr "AddToAny: Empfehlen/Speichern"
148
 
149
+ # @ default
150
+ #: add-to-any.php:718
151
+ #: add-to-any.php:1123
152
+ #: add-to-any.php:1154
153
  msgid "Settings"
154
  msgstr ""
155
 
156
+ # @ add-to-any
157
+ #: add-to-any.php:727
158
  msgid "Standalone Services"
159
  msgstr "einzelne Services"
160
 
161
+ # @ add-to-any
162
+ #: add-to-any.php:732
163
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
164
  msgstr "Wählen Sie die gewünschten Dienste aus. Klicken Sie auf einen gewählten Dienst erneut um ihn wieder zu entfernen. Per Drag &amp; Drop können Sie die Reihenfolge bestimmen."
165
 
166
+ # @ add-to-any
167
+ #: add-to-any.php:764
168
  msgid "Button"
169
  msgstr "Button"
170
 
171
+ # @ default
172
+ #: add-to-any.php:803
173
  msgid "Image URL"
174
  msgstr ""
175
 
176
+ # @ default
177
+ #: add-to-any.php:810
178
  msgid "Text only"
179
  msgstr ""
180
 
181
+ # @ add-to-any
182
+ #: add-to-any.php:818
183
  msgid "Placement"
184
  msgstr "Platzierung"
185
 
186
+ # @ add-to-any
187
+ #: add-to-any.php:823
188
+ #, fuzzy, php-format
189
+ msgid "Display at the %s of posts"
190
  msgstr "unterhalb von Beiträgen anzeigen lassen"
191
 
192
+ # @ add-to-any
193
+ #: add-to-any.php:830
194
+ #, fuzzy, php-format
195
+ msgid "Display at the %s of post excerpts"
196
  msgstr "am unteren Rand von Beitrags-Auszügen anzeigen lassen"
197
 
198
+ # @ add-to-any
199
+ #: add-to-any.php:837
200
+ #, fuzzy, php-format
201
+ msgid "Display at the %s of posts on the front page"
202
  msgstr "am unteren Rand der Beiträge auf der Startseite anzeigen lassen"
203
 
204
+ # @ add-to-any
205
+ #: add-to-any.php:845
206
+ #, fuzzy, php-format
207
+ msgid "Display at the %s of posts in the feed"
208
  msgstr "am unteren Rand der Beiträge im Feed anzeigen"
209
 
210
+ # @ add-to-any
211
+ #: add-to-any.php:849
212
+ #, fuzzy, php-format
213
+ msgid "Display at the %s of pages"
214
  msgstr "Anzeige am unteren Rand bei statischen Seiten"
215
 
216
+ # @ add-to-any
217
+ #: add-to-any.php:853
218
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
219
  msgstr "Ist diese Option deaktiviert, müssen Sie den folgenden Code <a href=\"theme-editor.php\">Ihren Vorlage-Seiten</a> (innherhalb <code>index.php</code> , <code>single.php</code> und / oder <code>page.php</code> ) manuell hinzufügen"
220
 
221
+ # @ add-to-any
222
+ #: add-to-any.php:862
223
  msgid "Menu Style"
224
  msgstr "Menüstil"
225
 
226
+ # @ add-to-any
227
+ #: add-to-any.php:864
228
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
229
  msgstr "Mit AddToAny&#39;s Menu Styler können Sie die Farben des Empfehlen/Speichern-Menü selbst festlegen. Den generierten Code fügen Sie unter <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Zusätzliche Optionen</a> in das Feld ein."
230
 
231
+ # @ add-to-any
232
+ #: add-to-any.php:866
233
  msgid "Open the AddToAny Menu Styler in a new window"
234
  msgstr "AddToAny Menü-Styler in einem neuen Fenster öffnen"
235
 
236
+ # @ add-to-any
237
+ #: add-to-any.php:868
238
  msgid "Open Menu Styler"
239
  msgstr "Menü-Styler öffnen"
240
 
241
+ # @ add-to-any
242
+ #: add-to-any.php:873
243
  msgid "Menu Options"
244
  msgstr "Menü-Optionen"
245
 
246
+ # @ add-to-any
247
+ #: add-to-any.php:878
248
  msgid "Only show the menu when the user clicks the Share/Save button"
249
  msgstr "Menü erst dann zeigen, wenn der Benutzer auf den Empfehlen/Speichern-Knopf drückt"
250
 
251
+ # @ add-to-any
252
+ #: add-to-any.php:883
253
  msgid "Show the title of the post (or page) within the menu"
254
  msgstr "Den Titel des Beitrags oder der Seite im Menü anzeigen"
255
 
256
+ # @ add-to-any
257
+ #: add-to-any.php:888
258
  msgid "Additional Options"
259
  msgstr "Zusätzliche Optionen"
260
 
261
+ # @ add-to-any
262
+ #: add-to-any.php:892
263
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
264
  msgstr "Fügen Sie den Code aus AddToAny&#39;s Menü-Styler in das untere Feld ein!"
265
 
266
+ # @ add-to-any
267
+ #: add-to-any.php:896
268
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
269
  msgstr "Hier können Sie spezielle JavaScript-Variablen für jedes \\\"Empfehlen/Speichern\\\"-Menü festlegen."
270
 
271
+ # @ add-to-any
272
+ #: add-to-any.php:897
273
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
274
  msgstr "Erfahrene Benutzer sollten auch die individuellen Funktionen unter <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">&raquo;AddToAny zusätzliche Optionen&laquo;</a> ausprobieren."
275
 
276
+ # @ add-to-any
277
+ #: add-to-any.php:903
278
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
279
  msgstr "<strong>Hinweis:</strong> Wenn Sie neuen Code hinzufügen sollten Sie darauf achten, dass Sie nicht den vorherigen Code überschreiben. Dies könnte zu Fehlern führen!"
280
 
281
+ # @ add-to-any
282
+ #: add-to-any.php:908
283
  msgid "Advanced Options"
284
  msgstr "Erweiterte Optionen"
285
 
286
+ # @ add-to-any
287
+ #: add-to-any.php:913
288
  msgid "Use CSS stylesheet"
289
  msgstr "Verwenden Sie CSS-Stylesheet"
290
 
291
+ # @ add-to-any
292
+ #: add-to-any.php:918
293
  msgid "Cache AddToAny locally with daily cache updates"
294
  msgstr "AddToAny lokal mit täglichen Updates Cachen"
295
 
296
+ # @ add-to-any
297
+ #: add-to-any.php:922
298
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
299
  msgstr "Nur für Webseiten mit häufig wiederkehrenden Besuchern zu empfehlen. Bei den Besuchern, in deren Browser AddToAny-Cache bereits eingestellt ist kann es dazu führen dass Ihre Seiten langsamer ausgeliefert werden. Achten Sie darauf, das &raquo;Cache/Ablauf&laquo;-Zeitlimit für Bild-Dateien in Ihrem <code>uploads/addtoany</code> Verzeichnis in die entfernte Zukunft festzulegen."
300
 
301
+ # @ add-to-any
302
+ #: add-to-any.php:929
303
  msgid "Save Changes"
304
  msgstr "Änderungen speichern"
305
 
306
+ #: add-to-any.php:930
307
+ msgid "Are you sure you want to delete all AddToAny options?"
308
+ msgstr ""
309
+
310
+ #: add-to-any.php:930
311
+ msgid "Reset"
312
+ msgstr ""
313
+
314
+ # @ add-to-any
315
+ #: add-to-any.php:935
316
  msgid "Like this plugin?"
317
  msgstr "Gefällt Ihnen dieses Plugin?"
318
 
319
+ # @ add-to-any
320
+ #: add-to-any.php:936
321
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
322
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geben Sie diesem Plugin ein gutes Rating</a> auf WordPress.org."
323
 
324
+ # @ add-to-any
325
+ #: add-to-any.php:937
 
326
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
327
  msgstr "<a href=\\\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\\\">Empfehlen Sie diesen Beitrag</a> Ihren Freunden."
328
 
329
+ # @ add-to-any
330
+ #: add-to-any.php:939
331
  msgid "Need support?"
332
  msgstr "Brauchen Sie Unterstützung?"
333
 
334
+ # @ add-to-any
335
+ #: add-to-any.php:940
336
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
337
  msgstr "Weitere Infos finden Sie in den <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs (frequently asked questions)</a>."
338
 
339
+ # @ add-to-any
340
+ #: add-to-any.php:941
341
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
342
  msgstr "Suchen Sie auch in den <a href=\"http://wordpress.org/tags/add-to-any\">Support-Foren</a> ."
343
 
344
+ # @ add-to-any
345
+ #: add-to-any.php:1066
346
  msgid "Add/Remove Services"
347
  msgstr "Dienste hinzufügen / entfernen"
348
 
349
+ # @ add-to-any
350
+ #: add-to-any.php:1123
351
  msgid "Share/Save"
352
  msgstr "Empfehlen / Speichern"
353
 
354
+ # @ add-to-any
355
+ #: add-to-any.php:1124
356
  msgid "Share/Save Buttons"
357
  msgstr "Empfehlen / Speichern Knopf"
358
 
languages/add-to-any-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,263 +13,291 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr "Agregar a favoritos"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr ""
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr "Marcador"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr "Configuración guardada."
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr "AddToAny: Compartir/Guardar "
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr "Configuración"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr ""
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr ""
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr "Botón"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr "URL de la imagen"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr "Solo texto"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr "Ubicación del botón"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
146
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "Si no está habilitado se debe agregar el siguiente código en <a href=\"theme-editor.php\">la plantilla de su tema</a>(dentro de <code>index.php</code>, <code>single.php</code>, y/o <code>page.php</code>)"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr "Estilo del menú"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "Usar el personalizador de estilo de AddToAny, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr "Abrir el personalizador de estilo de AddToAny en una nueva ventana"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr "Abrir el personalizador de estilos"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr "Menú de opciones"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el usuario hace click en el botón Compartir/Guardar"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr "Opciones adicionales"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
211
 
212
- #: add-to-any.php:782
213
  #, fuzzy
214
  msgid "Advanced Options"
215
  msgstr "Opciones adicionales"
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
  msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
  msgstr ""
224
 
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
  msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
  msgstr "Guardar cambios"
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
  msgstr ""
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
  msgstr ""
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
  msgstr ""
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr ""
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
  msgstr ""
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
  msgstr ""
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
  msgstr ""
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
  msgstr "Compartir/Guardar"
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
  msgstr "Botones Compartir/Guardar"
272
 
 
 
 
 
 
 
 
273
  #~ msgid ""
274
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
275
  #~ "when displayed"
@@ -280,4 +308,3 @@ msgstr "Botones Compartir/Guardar"
280
  #, fuzzy
281
  #~ msgid "Services"
282
  #~ msgstr "Buscar servicios(s)"
283
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Agregar a favoritos"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr ""
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "Marcador"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Configuración guardada."
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny: Compartir/Guardar "
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Configuración"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr ""
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr ""
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Botón"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "URL de la imagen"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Solo texto"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Ubicación del botón"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
+
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr "Si no está habilitado se debe agregar el siguiente código en <a href=\"theme-editor.php\">la plantilla de su tema</a>(dentro de <code>index.php</code>, <code>single.php</code>, y/o <code>page.php</code>)"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Estilo del menú"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Usar el personalizador de estilo de AddToAny, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Abrir el personalizador de estilo de AddToAny en una nueva ventana"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Abrir el personalizador de estilos"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Menú de opciones"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Opciones adicionales"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
228
 
229
+ #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Opciones adicionales"
233
 
234
+ #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:922
 
 
 
 
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "Guardar cambios"
249
 
250
+ #: add-to-any.php:930
251
+ msgid "Are you sure you want to delete all AddToAny options?"
252
+ msgstr ""
253
+
254
+ #: add-to-any.php:930
255
+ msgid "Reset"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr ""
261
 
262
+ #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr ""
265
 
266
+ #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr ""
269
 
270
+ #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr ""
273
 
274
+ #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr ""
277
 
278
+ #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr ""
281
 
282
+ #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr ""
285
 
286
+ #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "Compartir/Guardar"
289
 
290
+ #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "Botones Compartir/Guardar"
293
 
294
+ #~ msgid ""
295
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
296
+ #~ "the Share/Save button"
297
+ #~ msgstr ""
298
+ #~ "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el "
299
+ #~ "usuario hace click en el botón Compartir/Guardar"
300
+
301
  #~ msgid ""
302
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
303
  #~ "when displayed"
308
  #, fuzzy
309
  #~ msgid "Services"
310
  #~ msgstr "Buscar servicios(s)"
 
languages/add-to-any-fa_IR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NajeeKurd\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-10-19 15:13+0330\n"
6
- "PO-Revision-Date: 2010-10-19 14:14-0800\n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: NajeeKurd <lordamar@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,377 +15,280 @@ msgstr ""
15
  "X-Poedit-Country: iran\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: C:\Documents
19
- #: and Settings\Administrator\My
20
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:310
21
  msgid "Share"
22
  msgstr "اشتراک گذاری"
23
 
24
- #: C:\Documents
25
- #: and Settings\Administrator\My
26
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:311
27
  msgid "Save"
28
  msgstr "ذخیره"
29
 
30
- #: C:\Documents
31
- #: and Settings\Administrator\My
32
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:312
33
  msgid "Subscribe"
34
  msgstr "عضویت"
35
 
36
- #: C:\Documents
37
- #: and Settings\Administrator\My
38
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:313
39
  msgid "E-mail"
40
  msgstr "ایمیل"
41
 
42
- #: C:\Documents
43
- #: and Settings\Administrator\My
44
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:314
45
  msgid "Bookmark"
46
  msgstr "نشانه گذاری"
47
 
48
- #: C:\Documents
49
- #: and Settings\Administrator\My
50
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:315
51
  msgid "Show all"
52
  msgstr "نمایش همگی"
53
 
54
- #: C:\Documents
55
- #: and Settings\Administrator\My
56
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:316
57
  msgid "Show less"
58
  msgstr "نمایش حداقل"
59
 
60
- #: C:\Documents
61
- #: and Settings\Administrator\My
62
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:317
63
  msgid "Find service(s)"
64
  msgstr "یافتن سرویس (ها)"
65
 
66
- #: C:\Documents
67
- #: and Settings\Administrator\My
68
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:318
69
  msgid "Instantly find any service to add to"
70
  msgstr "یافتن سریع دیگر سرویس ها برای اضافه کردن"
71
 
72
- #: C:\Documents
73
- #: and Settings\Administrator\My
74
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:319
75
  msgid "Powered by"
76
  msgstr "قدرت یافته از"
77
 
78
- #: C:\Documents
79
- #: and Settings\Administrator\My
80
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:320
81
  msgid "Share via e-mail"
82
  msgstr "اشتراک گذاری از طریق ایمیل (رایانامه)"
83
 
84
- #: C:\Documents
85
- #: and Settings\Administrator\My
86
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:321
87
  msgid "Subscribe via e-mail"
88
  msgstr "عضویت از طریق ایمیل (رایانامه)"
89
 
90
- #: C:\Documents
91
- #: and Settings\Administrator\My
92
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:322
93
  msgid "Bookmark in your browser"
94
  msgstr "ثبت به عنوان علاقه مندی برای مرورگر شما"
95
 
96
- #: C:\Documents
97
- #: and Settings\Administrator\My
98
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:323
99
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
100
  msgstr "برای نشانه گذاری این صفحه Ctrl+D یا &#8984;+D را فشار دهید"
101
 
102
- #: C:\Documents
103
- #: and Settings\Administrator\My
104
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:324
105
  msgid "Add to your favorites"
106
  msgstr "اضافه کردن به علاقه مندی ها"
107
 
108
- #: C:\Documents
109
- #: and Settings\Administrator\My
110
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:325
111
  msgid "Send from any e-mail address or e-mail program"
112
  msgstr "فرستادن از طریق یک آدرس ایمیل (رایانامه) یا هر برنامه ارسال ایمیل (رایانامه)"
113
 
114
- #: C:\Documents
115
- #: and Settings\Administrator\My
116
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:326
117
  msgid "E-mail program"
118
  msgstr "ایمیل برنامه"
119
 
120
- #: C:\Documents
121
- #: and Settings\Administrator\My
122
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:351
123
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
124
  msgstr "پوسته شما به تعمیر نیاز دارد. برای تعمیر پوسته ی خود، از کد زیر استفاده کنید:<a href=\"theme-editor.php\">ویرایشگر پوسته</a> برای قرار دادن<code>&lt;?php wp_footer(); ?&gt;</code>تنها قبل از <code>&lt;/body&gt;</code> خط از پوسته ی شما<code>footer.php</code> file."
125
 
126
- #: C:\Documents
127
- #: and Settings\Administrator\My
128
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:491
129
  #, php-format
130
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
131
  msgstr "قادر به ایجاد دایرکتوری نیست %s. آیا این دایرکتوری اولیه، برای سرور () خوانا است؟"
132
 
133
- #: C:\Documents
134
- #: and Settings\Administrator\My
135
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:571
136
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:649
137
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:653
138
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:657
139
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:661
140
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:693
141
  msgid "Share/Bookmark"
142
  msgstr "اشتراک گذاری/نشانه گذاری"
143
 
144
- #: C:\Documents
145
- #: and Settings\Administrator\My
146
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:585
147
  msgid "Settings saved."
148
  msgstr "تنظیمات ذخیره شد."
149
 
150
- #: C:\Documents
151
- #: and Settings\Administrator\My
152
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:598
 
 
 
 
 
 
 
 
 
 
153
  msgid "AddToAny: Share/Save "
154
  msgstr "AddToAny:اشتراک گذاری/نشانه گذاری"
155
 
156
- #: C:\Documents
157
- #: and Settings\Administrator\My
158
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:598
159
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:989
160
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:1020
161
  msgid "Settings"
162
  msgstr "تنظیمات"
163
 
164
- #: C:\Documents
165
- #: and Settings\Administrator\My
166
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:607
167
  msgid "Standalone Services"
168
  msgstr "خدمات سیستم های رایج"
169
 
170
- #: C:\Documents
171
- #: and Settings\Administrator\My
172
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:612
173
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
174
  msgstr "خدماتی را که می خواهید در زیر انتخاب کنید.&nbsp; یک سرویس انتخاب دوباره برای حذف کلیک کنیدخدمات را از طریق \"کشیدن و رها کردن\" مرتب کنید. همان گونه که در بالا به نظر می رسد."
175
 
176
- #: C:\Documents
177
- #: and Settings\Administrator\My
178
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:644
179
  msgid "Button"
180
  msgstr "دکمه"
181
 
182
- #: C:\Documents
183
- #: and Settings\Administrator\My
184
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:683
185
  msgid "Image URL"
186
  msgstr "نشانی تصویر"
187
 
188
- #: C:\Documents
189
- #: and Settings\Administrator\My
190
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:690
191
  msgid "Text only"
192
  msgstr "فقط متن"
193
 
194
- #: C:\Documents
195
- #: and Settings\Administrator\My
196
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:698
197
  msgid "Placement"
198
  msgstr "قرار دادن"
199
 
200
- #: C:\Documents
201
- #: and Settings\Administrator\My
202
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:703
203
- msgid "Display at the bottom of posts"
204
  msgstr "نمایش در پایین نوشته ها"
205
 
206
- #: C:\Documents
207
- #: and Settings\Administrator\My
208
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:710
209
- msgid "Display at the bottom of post excerpts"
210
  msgstr "نمایش در پایین خلاصه نوشته"
211
 
212
- #: C:\Documents
213
- #: and Settings\Administrator\My
214
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:717
215
- msgid "Display at the bottom of posts on the front page"
216
  msgstr "نمایش در پایین نوشته ها در صفحه ی نخست"
217
 
218
- #: C:\Documents
219
- #: and Settings\Administrator\My
220
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:725
221
- msgid "Display at the bottom of posts in the feed"
222
  msgstr "نمایش در پایین نوشته ها در خوراک (فید)"
223
 
224
- #: C:\Documents
225
- #: and Settings\Administrator\My
226
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:729
227
- msgid "Display at the bottom of pages"
228
  msgstr "نمایش در پایین برگه ها"
229
 
230
- #: C:\Documents
231
- #: and Settings\Administrator\My
232
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:733
233
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
234
  msgstr "اگر این را خالی گذاشتید، مطمئن شوید که قرار دهید کد زیر ، در <a href=\"theme-editor.php\"> پوسته ی برگه های شما(با <code>index.php</code>, <code>single.php</code>, و/یا <code>page.php</code>) "
235
 
236
- #: C:\Documents
237
- #: and Settings\Administrator\My
238
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:742
239
  msgid "Menu Style"
240
  msgstr "منوی قاب بندی"
241
 
242
- #: C:\Documents
243
- #: and Settings\Administrator\My
244
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:744
245
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
246
  msgstr "از طریق این منو شما می توانید رنگ منوی اشتراک گذاری/ذخیره را شخصی کنید.هنگامی که شما این کار را انجام دادید مطمئن شوید برای چسباندن (پیست) کد اصلی را در <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">گزینه های اضافی</a> جعبه ی زیر."
247
 
248
- #: C:\Documents
249
- #: and Settings\Administrator\My
250
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:746
251
  msgid "Open the AddToAny Menu Styler in a new window"
252
  msgstr "منوی قاب بندی AddToAny را در یک پنجره جدید باز کنید "
253
 
254
- #: C:\Documents
255
- #: and Settings\Administrator\My
256
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:748
257
  msgid "Open Menu Styler"
258
  msgstr "باز کردن منوی قاب بندی"
259
 
260
- #: C:\Documents
261
- #: and Settings\Administrator\My
262
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:753
263
  msgid "Menu Options"
264
  msgstr "گزینه ها"
265
 
266
- #: C:\Documents
267
- #: and Settings\Administrator\My
268
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:758
269
  msgid "Only show the menu when the user clicks the Share/Save button"
270
  msgstr "فقط زمانی منو را نمایش بده که کاربر بر روی دکمه اشتراک گذاری/نشانه گذاری کلیک کند."
271
 
272
- #: C:\Documents
273
- #: and Settings\Administrator\My
274
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:763
275
  msgid "Show the title of the post (or page) within the menu"
276
  msgstr "تیتر نوشته (یا برگه) را درون منو نمایش بده."
277
 
278
- #: C:\Documents
279
- #: and Settings\Administrator\My
280
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:768
281
  msgid "Additional Options"
282
  msgstr "گزینه های اضافی"
283
 
284
- #: C:\Documents
285
- #: and Settings\Administrator\My
286
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:772
287
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
288
  msgstr "کد را از منوی قاب بندیAddToAnyدر جعبه ی زیر بچسبانید"
289
 
290
- #: C:\Documents
291
- #: and Settings\Administrator\My
292
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:776
293
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
294
  msgstr "در زیر شما می توانید متغیرهای مخصوص جاوا اسکریپت را برای به کار بردن هر منوی اشتراک گذاری/نشانه گذاری قرار دهید. "
295
 
296
- #: C:\Documents
297
- #: and Settings\Administrator\My
298
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:777
299
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
300
  msgstr "کاربران پیشرفته ممکن است بخواهند در <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">گزینه های اضافی</a>کاوش کنند"
301
 
302
- #: C:\Documents
303
- #: and Settings\Administrator\My
304
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:783
305
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
306
  msgstr "<strong>توجه</strong>:اگر شما در حال اضافه کردن کد هستید، مراقب باشید که به صورت تصادفی کدها را بر روی کدهای قبلی بازنویسی نکنید"
307
 
308
- #: C:\Documents
309
- #: and Settings\Administrator\My
310
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:788
311
  msgid "Advanced Options"
312
  msgstr "گزینه های پیشرفته"
313
 
314
- #: C:\Documents
315
- #: and Settings\Administrator\My
316
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:793
317
  msgid "Use CSS stylesheet"
318
  msgstr "استفاده از شیوه نامه CSS "
319
 
320
- #: C:\Documents
321
- #: and Settings\Administrator\My
322
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:798
323
  msgid "Cache AddToAny locally with daily cache updates"
324
  msgstr " مسیر AddToAny را با روزانه به روز کردن نهانگاه پنهان کنید"
325
 
326
- #: C:\Documents
327
- #: and Settings\Administrator\My
328
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:802
329
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
330
  msgstr "مطرح کردن فقط برای سایت های با قابلیت بازگرداندن اغلب بازدیدکنندگان.از زمانی که بسیاری از بازدیدکنندگان قبلاAddToAny را در مروگر خود پنهان کرده اندخدمتAddToAny در سایت شما برای آن بازدیدکنندگان کندتر خواهد بود.مطمئن شوید که ویژگی ها دست نیافتنی و دور سربرگ نهان سازی/منقضی برای پرونده ی تصاویر در دایرکتوری<code>uploads/addtoany</code>ی شما قرار داده می شود."
331
 
332
- #: C:\Documents
333
- #: and Settings\Administrator\My
334
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:809
335
  msgid "Save Changes"
336
  msgstr "ذحیره تغییرات"
337
 
338
- #: C:\Documents
339
- #: and Settings\Administrator\My
340
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:814
 
 
 
 
 
 
341
  msgid "Like this plugin?"
342
  msgstr "این افزونه را دوست دارید؟"
343
 
344
- #: C:\Documents
345
- #: and Settings\Administrator\My
346
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:815
347
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
348
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">دادن یک امتیاز خوب</a>در WordPress.org."
349
 
350
- #: C:\Documents
351
- #: and Settings\Administrator\My
352
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:816
353
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
354
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">با دوستان خود به اشتراک</a> بگذارید ترجمه افزونه<a href=\"http://najeekurd.net/farsi/\">ناجی کرد</a>."
355
 
356
- #: C:\Documents
357
- #: and Settings\Administrator\My
358
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:818
359
  msgid "Need support?"
360
  msgstr "به کمک نیاز دارید؟"
361
 
362
- #: C:\Documents
363
- #: and Settings\Administrator\My
364
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:819
365
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
366
  msgstr " <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">پرسش و پاسخ را ببینید</a>."
367
 
368
- #: C:\Documents
369
- #: and Settings\Administrator\My
370
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:820
371
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
372
  msgstr "در میان <a href=\"http://wordpress.org/tags/add-to-any\">تالار گفتمان پشتیبانی</a>جستجو کنید."
373
 
374
- #: C:\Documents
375
- #: and Settings\Administrator\My
376
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:934
377
  msgid "Add/Remove Services"
378
  msgstr "اضافه/حذف کردن خدمات"
379
 
380
- #: C:\Documents
381
- #: and Settings\Administrator\My
382
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:989
383
  msgid "Share/Save"
384
  msgstr "اشتراگ گذاری/ذخیره"
385
 
386
- #: C:\Documents
387
- #: and Settings\Administrator\My
388
- #: Documents\Downloads\wordpress\add-to-any.0.9.9.6.9\add-to-any.0.9.9.6.9\add-to-any/add-to-any.php:990
389
  msgid "Share/Save Buttons"
390
  msgstr "اشتراک گذاری/ ذخیره دکمه ها"
391
 
2
  msgstr ""
3
  "Project-Id-Version: NajeeKurd\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
+ "PO-Revision-Date: 2011-02-16 00:10-0800\n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: NajeeKurd <lordamar@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: iran\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:313
 
 
19
  msgid "Share"
20
  msgstr "اشتراک گذاری"
21
 
22
+ #: add-to-any.php:314
 
 
23
  msgid "Save"
24
  msgstr "ذخیره"
25
 
26
+ #: add-to-any.php:315
 
 
27
  msgid "Subscribe"
28
  msgstr "عضویت"
29
 
30
+ #: add-to-any.php:316
 
 
31
  msgid "E-mail"
32
  msgstr "ایمیل"
33
 
34
+ #: add-to-any.php:317
 
 
35
  msgid "Bookmark"
36
  msgstr "نشانه گذاری"
37
 
38
+ #: add-to-any.php:318
 
 
39
  msgid "Show all"
40
  msgstr "نمایش همگی"
41
 
42
+ #: add-to-any.php:319
 
 
43
  msgid "Show less"
44
  msgstr "نمایش حداقل"
45
 
46
+ #: add-to-any.php:320
 
 
47
  msgid "Find service(s)"
48
  msgstr "یافتن سرویس (ها)"
49
 
50
+ #: add-to-any.php:321
 
 
51
  msgid "Instantly find any service to add to"
52
  msgstr "یافتن سریع دیگر سرویس ها برای اضافه کردن"
53
 
54
+ #: add-to-any.php:322
 
 
55
  msgid "Powered by"
56
  msgstr "قدرت یافته از"
57
 
58
+ #: add-to-any.php:323
 
 
59
  msgid "Share via e-mail"
60
  msgstr "اشتراک گذاری از طریق ایمیل (رایانامه)"
61
 
62
+ #: add-to-any.php:324
 
 
63
  msgid "Subscribe via e-mail"
64
  msgstr "عضویت از طریق ایمیل (رایانامه)"
65
 
66
+ #: add-to-any.php:325
 
 
67
  msgid "Bookmark in your browser"
68
  msgstr "ثبت به عنوان علاقه مندی برای مرورگر شما"
69
 
70
+ #: add-to-any.php:326
 
 
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "برای نشانه گذاری این صفحه Ctrl+D یا &#8984;+D را فشار دهید"
73
 
74
+ #: add-to-any.php:327
 
 
75
  msgid "Add to your favorites"
76
  msgstr "اضافه کردن به علاقه مندی ها"
77
 
78
+ #: add-to-any.php:328
 
 
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "فرستادن از طریق یک آدرس ایمیل (رایانامه) یا هر برنامه ارسال ایمیل (رایانامه)"
81
 
82
+ #: add-to-any.php:329
 
 
83
  msgid "E-mail program"
84
  msgstr "ایمیل برنامه"
85
 
86
+ #: add-to-any.php:354
 
 
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "پوسته شما به تعمیر نیاز دارد. برای تعمیر پوسته ی خود، از کد زیر استفاده کنید:<a href=\"theme-editor.php\">ویرایشگر پوسته</a> برای قرار دادن<code>&lt;?php wp_footer(); ?&gt;</code>تنها قبل از <code>&lt;/body&gt;</code> خط از پوسته ی شما<code>footer.php</code> file."
89
 
90
+ #: add-to-any.php:511
 
 
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "قادر به ایجاد دایرکتوری نیست %s. آیا این دایرکتوری اولیه، برای سرور () خوانا است؟"
94
 
95
+ #: add-to-any.php:645
96
+ #: add-to-any.php:769
97
+ #: add-to-any.php:773
98
+ #: add-to-any.php:777
99
+ #: add-to-any.php:781
100
+ #: add-to-any.php:813
 
 
101
  msgid "Share/Bookmark"
102
  msgstr "اشتراک گذاری/نشانه گذاری"
103
 
104
+ #: add-to-any.php:658
 
 
105
  msgid "Settings saved."
106
  msgstr "تنظیمات ذخیره شد."
107
 
108
+ #: add-to-any.php:679
109
+ msgid "bottom"
110
+ msgstr ""
111
+
112
+ #: add-to-any.php:683
113
+ msgid "top"
114
+ msgstr ""
115
+
116
+ #: add-to-any.php:687
117
+ msgid "top &amp; bottom"
118
+ msgstr ""
119
+
120
+ #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny:اشتراک گذاری/نشانه گذاری"
123
 
124
+ #: add-to-any.php:718
125
+ #: add-to-any.php:1123
126
+ #: add-to-any.php:1154
 
 
127
  msgid "Settings"
128
  msgstr "تنظیمات"
129
 
130
+ #: add-to-any.php:727
 
 
131
  msgid "Standalone Services"
132
  msgstr "خدمات سیستم های رایج"
133
 
134
+ #: add-to-any.php:732
 
 
135
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
136
  msgstr "خدماتی را که می خواهید در زیر انتخاب کنید.&nbsp; یک سرویس انتخاب دوباره برای حذف کلیک کنیدخدمات را از طریق \"کشیدن و رها کردن\" مرتب کنید. همان گونه که در بالا به نظر می رسد."
137
 
138
+ #: add-to-any.php:764
 
 
139
  msgid "Button"
140
  msgstr "دکمه"
141
 
142
+ #: add-to-any.php:803
 
 
143
  msgid "Image URL"
144
  msgstr "نشانی تصویر"
145
 
146
+ #: add-to-any.php:810
 
 
147
  msgid "Text only"
148
  msgstr "فقط متن"
149
 
150
+ #: add-to-any.php:818
 
 
151
  msgid "Placement"
152
  msgstr "قرار دادن"
153
 
154
+ #: add-to-any.php:823
155
+ #, fuzzy, php-format
156
+ msgid "Display at the %s of posts"
 
157
  msgstr "نمایش در پایین نوشته ها"
158
 
159
+ #: add-to-any.php:830
160
+ #, fuzzy, php-format
161
+ msgid "Display at the %s of post excerpts"
 
162
  msgstr "نمایش در پایین خلاصه نوشته"
163
 
164
+ #: add-to-any.php:837
165
+ #, fuzzy, php-format
166
+ msgid "Display at the %s of posts on the front page"
 
167
  msgstr "نمایش در پایین نوشته ها در صفحه ی نخست"
168
 
169
+ #: add-to-any.php:845
170
+ #, fuzzy, php-format
171
+ msgid "Display at the %s of posts in the feed"
 
172
  msgstr "نمایش در پایین نوشته ها در خوراک (فید)"
173
 
174
+ #: add-to-any.php:849
175
+ #, fuzzy, php-format
176
+ msgid "Display at the %s of pages"
 
177
  msgstr "نمایش در پایین برگه ها"
178
 
179
+ #: add-to-any.php:853
 
 
180
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
181
  msgstr "اگر این را خالی گذاشتید، مطمئن شوید که قرار دهید کد زیر ، در <a href=\"theme-editor.php\"> پوسته ی برگه های شما(با <code>index.php</code>, <code>single.php</code>, و/یا <code>page.php</code>) "
182
 
183
+ #: add-to-any.php:862
 
 
184
  msgid "Menu Style"
185
  msgstr "منوی قاب بندی"
186
 
187
+ #: add-to-any.php:864
 
 
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "از طریق این منو شما می توانید رنگ منوی اشتراک گذاری/ذخیره را شخصی کنید.هنگامی که شما این کار را انجام دادید مطمئن شوید برای چسباندن (پیست) کد اصلی را در <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">گزینه های اضافی</a> جعبه ی زیر."
190
 
191
+ #: add-to-any.php:866
 
 
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "منوی قاب بندی AddToAny را در یک پنجره جدید باز کنید "
194
 
195
+ #: add-to-any.php:868
 
 
196
  msgid "Open Menu Styler"
197
  msgstr "باز کردن منوی قاب بندی"
198
 
199
+ #: add-to-any.php:873
 
 
200
  msgid "Menu Options"
201
  msgstr "گزینه ها"
202
 
203
+ #: add-to-any.php:878
 
 
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "فقط زمانی منو را نمایش بده که کاربر بر روی دکمه اشتراک گذاری/نشانه گذاری کلیک کند."
206
 
207
+ #: add-to-any.php:883
 
 
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "تیتر نوشته (یا برگه) را درون منو نمایش بده."
210
 
211
+ #: add-to-any.php:888
 
 
212
  msgid "Additional Options"
213
  msgstr "گزینه های اضافی"
214
 
215
+ #: add-to-any.php:892
 
 
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "کد را از منوی قاب بندیAddToAnyدر جعبه ی زیر بچسبانید"
218
 
219
+ #: add-to-any.php:896
 
 
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "در زیر شما می توانید متغیرهای مخصوص جاوا اسکریپت را برای به کار بردن هر منوی اشتراک گذاری/نشانه گذاری قرار دهید. "
222
 
223
+ #: add-to-any.php:897
 
 
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "کاربران پیشرفته ممکن است بخواهند در <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">گزینه های اضافی</a>کاوش کنند"
226
 
227
+ #: add-to-any.php:903
 
 
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>توجه</strong>:اگر شما در حال اضافه کردن کد هستید، مراقب باشید که به صورت تصادفی کدها را بر روی کدهای قبلی بازنویسی نکنید"
230
 
231
+ #: add-to-any.php:908
 
 
232
  msgid "Advanced Options"
233
  msgstr "گزینه های پیشرفته"
234
 
235
+ #: add-to-any.php:913
 
 
236
  msgid "Use CSS stylesheet"
237
  msgstr "استفاده از شیوه نامه CSS "
238
 
239
+ #: add-to-any.php:918
 
 
240
  msgid "Cache AddToAny locally with daily cache updates"
241
  msgstr " مسیر AddToAny را با روزانه به روز کردن نهانگاه پنهان کنید"
242
 
243
+ #: add-to-any.php:922
 
 
244
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
245
  msgstr "مطرح کردن فقط برای سایت های با قابلیت بازگرداندن اغلب بازدیدکنندگان.از زمانی که بسیاری از بازدیدکنندگان قبلاAddToAny را در مروگر خود پنهان کرده اندخدمتAddToAny در سایت شما برای آن بازدیدکنندگان کندتر خواهد بود.مطمئن شوید که ویژگی ها دست نیافتنی و دور سربرگ نهان سازی/منقضی برای پرونده ی تصاویر در دایرکتوری<code>uploads/addtoany</code>ی شما قرار داده می شود."
246
 
247
+ #: add-to-any.php:929
 
 
248
  msgid "Save Changes"
249
  msgstr "ذحیره تغییرات"
250
 
251
+ #: add-to-any.php:930
252
+ msgid "Are you sure you want to delete all AddToAny options?"
253
+ msgstr ""
254
+
255
+ #: add-to-any.php:930
256
+ msgid "Reset"
257
+ msgstr ""
258
+
259
+ #: add-to-any.php:935
260
  msgid "Like this plugin?"
261
  msgstr "این افزونه را دوست دارید؟"
262
 
263
+ #: add-to-any.php:936
 
 
264
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
265
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">دادن یک امتیاز خوب</a>در WordPress.org."
266
 
267
+ #: add-to-any.php:937
 
 
268
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
269
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">با دوستان خود به اشتراک</a> بگذارید ترجمه افزونه<a href=\"http://najeekurd.net/farsi/\">ناجی کرد</a>."
270
 
271
+ #: add-to-any.php:939
 
 
272
  msgid "Need support?"
273
  msgstr "به کمک نیاز دارید؟"
274
 
275
+ #: add-to-any.php:940
 
 
276
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
277
  msgstr " <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">پرسش و پاسخ را ببینید</a>."
278
 
279
+ #: add-to-any.php:941
 
 
280
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
281
  msgstr "در میان <a href=\"http://wordpress.org/tags/add-to-any\">تالار گفتمان پشتیبانی</a>جستجو کنید."
282
 
283
+ #: add-to-any.php:1066
 
 
284
  msgid "Add/Remove Services"
285
  msgstr "اضافه/حذف کردن خدمات"
286
 
287
+ #: add-to-any.php:1123
 
 
288
  msgid "Share/Save"
289
  msgstr "اشتراگ گذاری/ذخیره"
290
 
291
+ #: add-to-any.php:1124
 
 
292
  msgid "Share/Save Buttons"
293
  msgstr "اشتراک گذاری/ ذخیره دکمه ها"
294
 
languages/add-to-any-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,267 +13,295 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr "Partager"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr "Enregistrer"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr "S'abonner"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr "Courriel"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr "Signet"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "Montrer tout"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr "Montrer moins"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "Trouver des service(s)"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr "Trouver instantan&eacute;ment des services &agrave; ajouter &agrave;"
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "Propuls&eacute; par"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr "Partager par l'entremise d'un courriel"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr "S'abonner par l'entremise d'un courriel"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr "Ajouter un signet dans votre fureteur"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Appuyez Crtl+D ou &#8984;+D pour cr&eacute;er un signet vers cette page"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr "Ajouter &agrave; vos favoris"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Envoyer depuis toutes adresses courriel ou tous programmes de messagerie"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr "Programme de messagerie"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "Votre th&egrave;me doit &ecirc;tre corrig&eacute;. Pour ce faire, utilisez <a href=\"theme-editor.php\">l'&eacute;diteur</a> pour ajouter <code>&lt;?php wp_footer(); ?&gt;</code> juste avant la ligne <code>&lt;/body&gt;</code> du fichier <code>footer.php</code> de votre th&egrave;me."
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr "Partager/Marquer"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr "Param&egrave;tres sauvegard&eacute;s."
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr "Ajouter&Agrave;Tout: Partager/Enregistrer "
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr "Param&egrave;tres"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr "Services ind&eacute;pendants"
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr "Choisissez les services que vous souhaitez ci-dessous. &nbsp;Cliquez sur un service choisi pour le retirer. &nbsp;R&eacute;organisez les services en les faisant glisser comme ils apparaissent ci-dessus."
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr "Bouton"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr "URL de l'image"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr "Texte seulement"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr "Positionnement"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles"
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
146
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles sur la page principale"
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles dans le flux"
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des pages"
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "Si d&eacute;coch&eacute;, n'oubliez pas de placer le code suivant dans vos <a href=\"theme-editor.php\">pages mod&egrave;les</a> (dans <code>index.php</code>, <code>single.php</code> et/ou <code><page.php</code>)"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr "Menu de styles"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "En utilisant le menu de styles AddToAny, vous pouvez personnaliser les couleurs de votre menu Partarger/Enregistrer. Lorsque vous aurez termin&eacute;, assrez-vous de copier le code g&eacute;n&eacute;r&eacute; dans la bo&icirc;te d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Options Compl&eacute;mentaires</a> ci-dessous."
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr "Ouvrir le menu de styles AddToAny dans une nouvelle fen&ecire;tre"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr "Ouvrir le menu de styles"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr "Menu d'options"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "Afficher le titre des articles (ou des pages) dans le menu"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "Afficher le menu uniquement lorsqu'un utilisateur appuie sur le bouton Partager/Enregistrer"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "Ouvrir la page menu de addtoany.com dans un nouvel onglet ou dans une nouvelle fen&ecirc;tre si un utilisateur appuie sur le bouton Partager/Enregistrer"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr "Options compl&eacute;mentaires"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr "Copier le code du menu de styles AddToAny dans la bo&icirc;te ci-dessous!"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "Vous pouvez d&eacute;finir, ci-dessous, des variables JavaScript sp&eacute;ciales &agrave; appliquer &agrave; chaque menu Partager/Enregistrer."
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr "Les utilisateurs exp&eacute;riment&eacute;s peuvent vouloir explorer l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> d'AddToAny."
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr ""
211
 
212
- #: add-to-any.php:782
213
  #, fuzzy
214
  msgid "Advanced Options"
215
  msgstr "Options compl&eacute;mentaires"
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
  msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
  msgstr ""
224
 
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
  msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
  msgstr "Enregistrer les changements"
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
  msgstr "Aimez-vous ce plugiciel?"
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Donnez-lui une bonne cote</a> sur WordPress.org."
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partagez le</a> avec vos amis."
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr "Besoin d'aide?"
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
  msgstr "Consultez la <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
  msgstr "Faites une recherche dans le <a href=\"http://wordpress.org/tags/add-to-any\">forums d'aide</a>."
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
  msgstr "Ajoutez/Supprimer les services"
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
  msgstr "Partager/Enregistrer"
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
  msgstr "Boutons Ajouter/Enregistrer"
272
 
 
 
 
 
 
 
 
 
273
  #~ msgid ""
274
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
275
  #~ "when displayed"
276
  #~ msgstr ""
277
  #~ "Masquer les objets incorpor&eacute;s (Flash, vid&eacute;os, etc.) qui "
278
  #~ "s'entrecoupent avec le menu lors de l'affichage."
279
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Partager"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Enregistrer"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "S'abonner"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "Courriel"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "Signet"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Montrer tout"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Montrer moins"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Trouver des service(s)"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Trouver instantan&eacute;ment des services &agrave; ajouter &agrave;"
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Propuls&eacute; par"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Partager par l'entremise d'un courriel"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "S'abonner par l'entremise d'un courriel"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Ajouter un signet dans votre fureteur"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Appuyez Crtl+D ou &#8984;+D pour cr&eacute;er un signet vers cette page"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Ajouter &agrave; vos favoris"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Envoyer depuis toutes adresses courriel ou tous programmes de messagerie"
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "Programme de messagerie"
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "Votre th&egrave;me doit &ecirc;tre corrig&eacute;. Pour ce faire, utilisez <a href=\"theme-editor.php\">l'&eacute;diteur</a> pour ajouter <code>&lt;?php wp_footer(); ?&gt;</code> juste avant la ligne <code>&lt;/body&gt;</code> du fichier <code>footer.php</code> de votre th&egrave;me."
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "Partager/Marquer"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Param&egrave;tres sauvegard&eacute;s."
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Ajouter&Agrave;Tout: Partager/Enregistrer "
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Param&egrave;tres"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "Services ind&eacute;pendants"
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr "Choisissez les services que vous souhaitez ci-dessous. &nbsp;Cliquez sur un service choisi pour le retirer. &nbsp;R&eacute;organisez les services en les faisant glisser comme ils apparaissent ci-dessus."
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Bouton"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "URL de l'image"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Texte seulement"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Positionnement"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles"
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
+
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles sur la page principale"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles dans le flux"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des pages"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr "Si d&eacute;coch&eacute;, n'oubliez pas de placer le code suivant dans vos <a href=\"theme-editor.php\">pages mod&egrave;les</a> (dans <code>index.php</code>, <code>single.php</code> et/ou <code><page.php</code>)"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Menu de styles"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "En utilisant le menu de styles AddToAny, vous pouvez personnaliser les couleurs de votre menu Partarger/Enregistrer. Lorsque vous aurez termin&eacute;, assrez-vous de copier le code g&eacute;n&eacute;r&eacute; dans la bo&icirc;te d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Options Compl&eacute;mentaires</a> ci-dessous."
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Ouvrir le menu de styles AddToAny dans une nouvelle fen&ecire;tre"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Ouvrir le menu de styles"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Menu d'options"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Afficher le menu uniquement lorsqu'un utilisateur appuie sur le bouton Partager/Enregistrer"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "Afficher le titre des articles (ou des pages) dans le menu"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Options compl&eacute;mentaires"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Copier le code du menu de styles AddToAny dans la bo&icirc;te ci-dessous!"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Vous pouvez d&eacute;finir, ci-dessous, des variables JavaScript sp&eacute;ciales &agrave; appliquer &agrave; chaque menu Partager/Enregistrer."
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Les utilisateurs exp&eacute;riment&eacute;s peuvent vouloir explorer l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> d'AddToAny."
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr ""
228
 
229
+ #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Options compl&eacute;mentaires"
233
 
234
+ #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:922
 
 
 
 
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "Enregistrer les changements"
249
 
250
+ #: add-to-any.php:930
251
+ msgid "Are you sure you want to delete all AddToAny options?"
252
+ msgstr ""
253
+
254
+ #: add-to-any.php:930
255
+ msgid "Reset"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "Aimez-vous ce plugiciel?"
261
 
262
+ #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Donnez-lui une bonne cote</a> sur WordPress.org."
265
 
266
+ #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partagez le</a> avec vos amis."
269
 
270
+ #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "Besoin d'aide?"
273
 
274
+ #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "Consultez la <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
277
 
278
+ #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "Faites une recherche dans le <a href=\"http://wordpress.org/tags/add-to-any\">forums d'aide</a>."
281
 
282
+ #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "Ajoutez/Supprimer les services"
285
 
286
+ #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "Partager/Enregistrer"
289
 
290
+ #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "Boutons Ajouter/Enregistrer"
293
 
294
+ #~ msgid ""
295
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
296
+ #~ "the Share/Save button"
297
+ #~ msgstr ""
298
+ #~ "Ouvrir la page menu de addtoany.com dans un nouvel onglet ou dans une "
299
+ #~ "nouvelle fen&ecirc;tre si un utilisateur appuie sur le bouton Partager/"
300
+ #~ "Enregistrer"
301
+
302
  #~ msgid ""
303
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
304
  #~ "when displayed"
305
  #~ msgstr ""
306
  #~ "Masquer les objets incorpor&eacute;s (Flash, vid&eacute;os, etc.) qui "
307
  #~ "s'entrecoupent avec le menu lors de l'affichage."
 
languages/add-to-any-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
@@ -15,267 +15,299 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:258
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
- #: add-to-any.php:259
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
- #: add-to-any.php:260
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
- #: add-to-any.php:261
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:262
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
- #: add-to-any.php:263
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
- #: add-to-any.php:264
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
- #: add-to-any.php:265
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
- #: add-to-any.php:266
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
- #: add-to-any.php:267
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
- #: add-to-any.php:268
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
- #: add-to-any.php:269
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
- #: add-to-any.php:270
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
- #: add-to-any.php:271
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
73
 
74
- #: add-to-any.php:272
75
  msgid "Add to your favorites"
76
  msgstr "Aggiungi ai favoriti"
77
 
78
- #: add-to-any.php:273
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Invia da un indirizzo email o client di posta elettronica"
81
 
82
- #: add-to-any.php:274
83
  msgid "E-mail program"
84
  msgstr "Client di posta elettronica"
85
 
86
- #: add-to-any.php:299
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "Il tuo tema deve essere aggiornato. Per apportare le modifiche necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer.php</code>."
89
 
90
- #: add-to-any.php:490
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "Impossibile creare la cartella %s. La sua cartella madre é scrivibile dal server?"
94
 
95
- #: add-to-any.php:566
96
- #: add-to-any.php:639
97
- #: add-to-any.php:643
98
- #: add-to-any.php:647
99
- #: add-to-any.php:651
100
- #: add-to-any.php:683
101
  msgid "Share/Bookmark"
102
  msgstr "Segnalibro"
103
 
104
- #: add-to-any.php:580
105
  msgid "Settings saved."
106
  msgstr "Le impostazioni sono state salvate"
107
 
108
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "AddToAny: Share/Save "
110
  msgstr "AddToAny: Condividi/Salva "
111
 
112
- #: add-to-any.php:593
113
- #: add-to-any.php:978
114
- #: add-to-any.php:1002
115
  msgid "Settings"
116
  msgstr "Impostazioni"
117
 
118
- #: add-to-any.php:602
119
  msgid "Standalone Services"
120
  msgstr "Servizi indipendenti"
121
 
122
- #: add-to-any.php:607
123
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
124
  msgstr "Scegli qui sotto i servizi di tuo gradimento. &nbsp;Clicca su di un servizio attivo per rimuoverlo. &nbsp;Riordina i servizi via drag and drop."
125
 
126
- #: add-to-any.php:634
127
  msgid "Button"
128
  msgstr "Pulsante"
129
 
130
- #: add-to-any.php:673
131
  msgid "Image URL"
132
  msgstr "URL immagine"
133
 
134
- #: add-to-any.php:680
135
  msgid "Text only"
136
  msgstr "Solo testo"
137
 
138
- #: add-to-any.php:688
139
  msgid "Placement"
140
  msgstr "Posizione"
141
 
142
- #: add-to-any.php:697
143
- msgid "Display Share/Save button at the bottom of posts"
 
144
  msgstr "Mostra il pulsante Share/Save in coda agli articoli"
145
 
146
- #: add-to-any.php:704
147
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
148
  msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
149
 
150
- #: add-to-any.php:711
151
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
152
  msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
153
 
154
- #: add-to-any.php:715
155
- msgid "Display Share/Save button at the bottom of pages"
 
156
  msgstr "Mostra il pulsante Share/Save in coda alle pagine"
157
 
158
- #: add-to-any.php:719
159
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
160
  msgstr "Se disattivata, dovrai inserire il codice qui sotto nelle <a href=\"theme-editor.php\">pagine del tuo tema</a> (in <code>index.php</code>, <code>single.php</code>, e/o <code>page.php</code>)"
161
 
162
- #: add-to-any.php:728
163
  msgid "Menu Style"
164
  msgstr "Stile menu"
165
 
166
- #: add-to-any.php:730
167
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
168
  msgstr "Utilizzando il Menu Styler di AddToAny potrai personalizzare i colori del menu Share/Save! Una volta apportata la modifica, incolla il codice così ottenuto nel riquadro delle <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opzioni agggiuntive</a> qui sotto."
169
 
170
- #: add-to-any.php:732
171
  msgid "Open the AddToAny Menu Styler in a new window"
172
  msgstr "Apri in una nuova pagina per personalizzare il menu di AddToAny"
173
 
174
- #: add-to-any.php:734
175
  msgid "Open Menu Styler"
176
  msgstr "Stile menu"
177
 
178
- #: add-to-any.php:739
179
  msgid "Menu Options"
180
  msgstr "Opzioni menu"
181
 
182
- #: add-to-any.php:744
183
- msgid "Show the title of the post (or page) within the menu"
184
- msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
185
-
186
- #: add-to-any.php:751
187
  msgid "Only show the menu when the user clicks the Share/Save button"
188
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
189
 
190
- #: add-to-any.php:757
191
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
192
- msgstr "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando un utente clicca il pulsante Share/Save"
193
 
194
- #: add-to-any.php:762
195
  msgid "Additional Options"
196
  msgstr "Opzioni aggiuntive"
197
 
198
- #: add-to-any.php:766
199
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
200
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
201
 
202
- #: add-to-any.php:770
203
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
204
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
205
 
206
- #: add-to-any.php:771
207
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
208
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> di AddToAny."
209
 
210
- #: add-to-any.php:777
211
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
212
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
213
 
214
- #: add-to-any.php:782
215
  msgid "Advanced Options"
216
  msgstr "Opzioni avanzate"
217
 
218
- #: add-to-any.php:787
219
  msgid "Use CSS stylesheet"
220
  msgstr "Usa foglio di stile CSS"
221
 
222
- #: add-to-any.php:792
223
  msgid "Cache AddToAny locally with daily cache updates"
224
  msgstr "Effettua localmente con aggiornamenti quotidiani la cache di AddToAny"
225
 
226
- #: add-to-any.php:796
227
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
228
- msgstr "Se non selezionato, aggiungi al foglio di stile del tuo tema il seguente CSS:"
229
-
230
- #: add-to-any.php:801
231
  #, fuzzy
232
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
233
  msgstr "Funzione risevata ai siti con traffico elevato. Accertati di impostare a far future cache/expires headers i file immagine nella tua cartella <code>uploads/addtoany</code>."
234
 
235
- #: add-to-any.php:808
236
  msgid "Save Changes"
237
  msgstr "Salva le modifiche"
238
 
239
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
240
  msgid "Like this plugin?"
241
  msgstr "Ti é piaciuto questo plugin?"
242
 
243
- #: add-to-any.php:814
244
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
245
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
246
 
247
- #: add-to-any.php:815
248
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
249
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Condividi</a> con i tuoi amici."
250
 
251
- #: add-to-any.php:817
252
  msgid "Need support?"
253
  msgstr "Serve aiuto?"
254
 
255
- #: add-to-any.php:818
256
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
257
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
258
 
259
- #: add-to-any.php:819
260
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
261
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
262
 
263
- #: add-to-any.php:926
264
  msgid "Add/Remove Services"
265
  msgstr "Aggiungi/Rimuovi i sevizi"
266
 
267
- #: add-to-any.php:978
268
  msgid "Share/Save"
269
  msgstr "Condividi/Salva"
270
 
271
- #: add-to-any.php:979
272
  msgid "Share/Save Buttons"
273
  msgstr "Pulsanti Condividi/Salva"
274
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  #~ msgid ""
276
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
277
  #~ "when displayed"
278
  #~ msgstr ""
279
  #~ "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono "
280
  #~ "interferire con la visualizzazione corretta del menu"
281
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
+ #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
+ #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
+ #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
+ #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
+ #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
+ #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
+ #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
+ #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
+ #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
+ #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
+ #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
+ #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
73
 
74
+ #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Aggiungi ai favoriti"
77
 
78
+ #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Invia da un indirizzo email o client di posta elettronica"
81
 
82
+ #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Client di posta elettronica"
85
 
86
+ #: add-to-any.php:354
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "Il tuo tema deve essere aggiornato. Per apportare le modifiche necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer.php</code>."
89
 
90
+ #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "Impossibile creare la cartella %s. La sua cartella madre é scrivibile dal server?"
94
 
95
+ #: add-to-any.php:645
96
+ #: add-to-any.php:769
97
+ #: add-to-any.php:773
98
+ #: add-to-any.php:777
99
+ #: add-to-any.php:781
100
+ #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "Segnalibro"
103
 
104
+ #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "Le impostazioni sono state salvate"
107
 
108
+ #: add-to-any.php:679
109
+ msgid "bottom"
110
+ msgstr ""
111
+
112
+ #: add-to-any.php:683
113
+ msgid "top"
114
+ msgstr ""
115
+
116
+ #: add-to-any.php:687
117
+ msgid "top &amp; bottom"
118
+ msgstr ""
119
+
120
+ #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny: Condividi/Salva "
123
 
124
+ #: add-to-any.php:718
125
+ #: add-to-any.php:1123
126
+ #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "Impostazioni"
129
 
130
+ #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "Servizi indipendenti"
133
 
134
+ #: add-to-any.php:732
135
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
136
  msgstr "Scegli qui sotto i servizi di tuo gradimento. &nbsp;Clicca su di un servizio attivo per rimuoverlo. &nbsp;Riordina i servizi via drag and drop."
137
 
138
+ #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "Pulsante"
141
 
142
+ #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "URL immagine"
145
 
146
+ #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "Solo testo"
149
 
150
+ #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "Posizione"
153
 
154
+ #: add-to-any.php:823
155
+ #, fuzzy, php-format
156
+ msgid "Display at the %s of posts"
157
  msgstr "Mostra il pulsante Share/Save in coda agli articoli"
158
 
159
+ #: add-to-any.php:830
160
+ #, php-format
161
+ msgid "Display at the %s of post excerpts"
162
+ msgstr ""
163
+
164
+ #: add-to-any.php:837
165
+ #, fuzzy, php-format
166
+ msgid "Display at the %s of posts on the front page"
167
  msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
168
 
169
+ #: add-to-any.php:845
170
+ #, fuzzy, php-format
171
+ msgid "Display at the %s of posts in the feed"
172
  msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
173
 
174
+ #: add-to-any.php:849
175
+ #, fuzzy, php-format
176
+ msgid "Display at the %s of pages"
177
  msgstr "Mostra il pulsante Share/Save in coda alle pagine"
178
 
179
+ #: add-to-any.php:853
180
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
181
  msgstr "Se disattivata, dovrai inserire il codice qui sotto nelle <a href=\"theme-editor.php\">pagine del tuo tema</a> (in <code>index.php</code>, <code>single.php</code>, e/o <code>page.php</code>)"
182
 
183
+ #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "Stile menu"
186
 
187
+ #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Utilizzando il Menu Styler di AddToAny potrai personalizzare i colori del menu Share/Save! Una volta apportata la modifica, incolla il codice così ottenuto nel riquadro delle <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opzioni agggiuntive</a> qui sotto."
190
 
191
+ #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Apri in una nuova pagina per personalizzare il menu di AddToAny"
194
 
195
+ #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "Stile menu"
198
 
199
+ #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "Opzioni menu"
202
 
203
+ #: add-to-any.php:878
 
 
 
 
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
206
 
207
+ #: add-to-any.php:883
208
+ msgid "Show the title of the post (or page) within the menu"
209
+ msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
210
 
211
+ #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "Opzioni aggiuntive"
214
 
215
+ #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
218
 
219
+ #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
222
 
223
+ #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> di AddToAny."
226
 
227
+ #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
230
 
231
+ #: add-to-any.php:908
232
  msgid "Advanced Options"
233
  msgstr "Opzioni avanzate"
234
 
235
+ #: add-to-any.php:913
236
  msgid "Use CSS stylesheet"
237
  msgstr "Usa foglio di stile CSS"
238
 
239
+ #: add-to-any.php:918
240
  msgid "Cache AddToAny locally with daily cache updates"
241
  msgstr "Effettua localmente con aggiornamenti quotidiani la cache di AddToAny"
242
 
243
+ #: add-to-any.php:922
 
 
 
 
244
  #, fuzzy
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr "Funzione risevata ai siti con traffico elevato. Accertati di impostare a far future cache/expires headers i file immagine nella tua cartella <code>uploads/addtoany</code>."
247
 
248
+ #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Salva le modifiche"
251
 
252
+ #: add-to-any.php:930
253
+ msgid "Are you sure you want to delete all AddToAny options?"
254
+ msgstr ""
255
+
256
+ #: add-to-any.php:930
257
+ msgid "Reset"
258
+ msgstr ""
259
+
260
+ #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Ti é piaciuto questo plugin?"
263
 
264
+ #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
267
 
268
+ #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Condividi</a> con i tuoi amici."
271
 
272
+ #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Serve aiuto?"
275
 
276
+ #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
279
 
280
+ #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
283
 
284
+ #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Aggiungi/Rimuovi i sevizi"
287
 
288
+ #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Condividi/Salva"
291
 
292
+ #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Pulsanti Condividi/Salva"
295
 
296
+ #~ msgid ""
297
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
298
+ #~ "the Share/Save button"
299
+ #~ msgstr ""
300
+ #~ "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando "
301
+ #~ "un utente clicca il pulsante Share/Save"
302
+
303
+ #~ msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
304
+ #~ msgstr ""
305
+ #~ "Se non selezionato, aggiungi al foglio di stile del tuo tema il seguente "
306
+ #~ "CSS:"
307
+
308
  #~ msgid ""
309
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
310
  #~ "when displayed"
311
  #~ msgstr ""
312
  #~ "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono "
313
  #~ "interferire con la visualizzazione corretta del menu"
 
languages/add-to-any-ja.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,265 +13,292 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr "共有"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr "ブックマーク"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr "購読"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr "メール"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr "ブックマーク"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "すべて表示する"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr "小さく表示する"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "サービスを探す"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr "追加するサービスを今すぐ探す"
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr "メールで共有"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr "メールで購読"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr "ブラウザにブックマーク"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Ctrl+D または &#8984;+D でブックマークします"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr "お気に入りに追加"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "お好きなメールアドレスかメールソフトで送信します"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr "メールソフト"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "テーマを修正してください。<a href=\"theme-editor.php\">テーマエディタ</a>で、使用しているテーマの <code>footer.php</code> 内の <code>&lt;/body&gt;</code> 直前に <code>&lt;?php wp_footer(); ?&gt;</code> を挿入してください。"
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr "ブックマーク"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr "設定を保存しました。"
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr "AddToAny ボタン"
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr "設定"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr "アイコン表示するサービス"
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr "以下からサービスを選択してください。再度クリックすると非選択にできます。上のアイコンをドラッグ&ドロップして表示の順序を変更できます。"
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr "ブックマークボタン"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr "画像のURL"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr "文字のみ"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr "ブックマークボタンの場所"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr "投稿の最後にボタンを表示する"
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
146
  msgstr "フロントページで投稿の最後にボタンを表示する"
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr "フィードで投稿の最後にボタンを表示する"
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr "ページの最後にボタンを表示する"
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "どれもチェックしない場合は、<code>index.php</code> や <code>single.php</code>、<code>page.php</code> などの <a href=\"theme-editor.php\">テンプレートページ</a> に次のコードを書いてください"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr "メニューのスタイル"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "AddToAny のメニュースタイラーでブックマークメニューの色を変更できます。コピーしたコードは下の <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">その他のオプション</a> 欄に貼り付けてください。"
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr "AddToAny メニュースタイラーを新しいウインドウで開きます"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr "メニュースタイラーを開く"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr "メニューのオプション"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "メニューに投稿(ページ)のタイトルを表示する"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "ブックマークボタンをクリックしたときだけメニューを表示する"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "ブックマークボタンをクリックした時に新しいタブ/ウインドウで addtoany.com のメニューページを開く"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr "その他のオプション"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr "AddToAny メニュースタイラーで作成したコードを以下に貼り付けてください。"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "ブックマークメニューで使用する javascript の変数を設定することができます。"
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr "詳しくは AddToAny の <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">javascript API</a> を参照してください。"
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr "<strong>注意</strong>: コードを追加する場合は、元のコードを上書きしないようにしてください。</label>"
211
 
212
- #: add-to-any.php:782
213
  #, fuzzy
214
  msgid "Advanced Options"
215
  msgstr "その他のオプション"
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
  msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
  msgstr ""
224
 
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
  msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
  msgstr "変更を保存"
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
  msgstr "このプラグインが気に入りましたか?"
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
  msgstr "WordPress.org で <a href=\"http://wordpress.org/extend/plugins/add-to-any/\">良い評価をつける</a>。"
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
  msgstr "友達に <a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">教える</a>。"
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr "サポートが必要ですか?"
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a> をご確認ください。"
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
  msgstr "<a href=\"http://wordpress.org/tags/add-to-any\">本家サポートフォーラム</a> をご利用ください。"
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
  msgstr "サービスの追加/削除"
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
  msgstr "ブックマーク"
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
  msgstr "AddToAny ボタン"
272
 
 
 
 
 
 
 
 
273
  #~ msgid ""
274
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
275
  #~ "when displayed"
276
  #~ msgstr "メニューと重なったFlashや動画などを非表示にする"
277
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "共有"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "ブックマーク"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "購読"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "メール"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "ブックマーク"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "すべて表示する"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "小さく表示する"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "サービスを探す"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "追加するサービスを今すぐ探す"
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "メールで共有"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "メールで購読"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "ブラウザにブックマーク"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Ctrl+D または &#8984;+D でブックマークします"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "お気に入りに追加"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "お好きなメールアドレスかメールソフトで送信します"
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "メールソフト"
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "テーマを修正してください。<a href=\"theme-editor.php\">テーマエディタ</a>で、使用しているテーマの <code>footer.php</code> 内の <code>&lt;/body&gt;</code> 直前に <code>&lt;?php wp_footer(); ?&gt;</code> を挿入してください。"
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "ブックマーク"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "設定を保存しました。"
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny ボタン"
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "設定"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "アイコン表示するサービス"
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr "以下からサービスを選択してください。再度クリックすると非選択にできます。上のアイコンをドラッグ&ドロップして表示の順序を変更できます。"
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "ブックマークボタン"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "画像のURL"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "文字のみ"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "ブックマークボタンの場所"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr "投稿の最後にボタンを表示する"
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
+
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr "フロントページで投稿の最後にボタンを表示する"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr "フィードで投稿の最後にボタンを表示する"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
  msgstr "ページの最後にボタンを表示する"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr "どれもチェックしない場合は、<code>index.php</code> や <code>single.php</code>、<code>page.php</code> などの <a href=\"theme-editor.php\">テンプレートページ</a> に次のコードを書いてください"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "メニューのスタイル"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "AddToAny のメニュースタイラーでブックマークメニューの色を変更できます。コピーしたコードは下の <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">その他のオプション</a> 欄に貼り付けてください。"
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "AddToAny メニュースタイラーを新しいウインドウで開きます"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "メニュースタイラーを開く"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "メニューのオプション"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "ブックマークボタンをクリックしたときだけメニューを表示する"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "メニューに投稿(ページ)のタイトルを表示する"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "その他のオプション"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "AddToAny メニュースタイラーで作成したコードを以下に貼り付けてください。"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "ブックマークメニューで使用する javascript の変数を設定することができます。"
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "詳しくは AddToAny の <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">javascript API</a> を参照してください。"
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>注意</strong>: コードを追加する場合は、元のコードを上書きしないようにしてください。</label>"
228
 
229
+ #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "その他のオプション"
233
 
234
+ #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:922
 
 
 
 
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "変更を保存"
249
 
250
+ #: add-to-any.php:930
251
+ msgid "Are you sure you want to delete all AddToAny options?"
252
+ msgstr ""
253
+
254
+ #: add-to-any.php:930
255
+ msgid "Reset"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "このプラグインが気に入りましたか?"
261
 
262
+ #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "WordPress.org で <a href=\"http://wordpress.org/extend/plugins/add-to-any/\">良い評価をつける</a>。"
265
 
266
+ #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr "友達に <a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">教える</a>。"
269
 
270
+ #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "サポートが必要ですか?"
273
 
274
+ #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a> をご確認ください。"
277
 
278
+ #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "<a href=\"http://wordpress.org/tags/add-to-any\">本家サポートフォーラム</a> をご利用ください。"
281
 
282
+ #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "サービスの追加/削除"
285
 
286
+ #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "ブックマーク"
289
 
290
+ #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "AddToAny ボタン"
293
 
294
+ #~ msgid ""
295
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
296
+ #~ "the Share/Save button"
297
+ #~ msgstr ""
298
+ #~ "ブックマークボタンをクリックした時に新しいタブ/ウインドウで addtoany.com "
299
+ #~ "のメニューページを開く"
300
+
301
  #~ msgid ""
302
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
303
  #~ "when displayed"
304
  #~ msgstr "メニューと重なったFlashや動画などを非表示にする"
 
languages/add-to-any-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any .9.9.6.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Rene <info@wpwebshop.com>\n"
8
  "Language-Team: Translation by WordPressWebshop.com <info@wpwebshop.com>\n"
@@ -16,259 +16,290 @@ msgstr ""
16
  "X-Poedit-Country: NETHERLANDS\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:258
20
  msgid "Share"
21
  msgstr "Delen"
22
 
23
- #: add-to-any.php:259
24
  msgid "Save"
25
  msgstr "Bewaren"
26
 
27
- #: add-to-any.php:260
28
  msgid "Subscribe"
29
  msgstr "Inschrijven"
30
 
31
- #: add-to-any.php:261
32
  msgid "E-mail"
33
  msgstr "E-mail"
34
 
35
- #: add-to-any.php:262
36
  msgid "Bookmark"
37
  msgstr "Bookmark"
38
 
39
- #: add-to-any.php:263
40
  msgid "Show all"
41
  msgstr "Alles weergeven"
42
 
43
- #: add-to-any.php:264
44
  msgid "Show less"
45
  msgstr "Niet alles weergeven"
46
 
47
- #: add-to-any.php:265
48
  msgid "Find service(s)"
49
  msgstr "Vind dienst(en)"
50
 
51
- #: add-to-any.php:266
52
  msgid "Instantly find any service to add to"
53
  msgstr "Vind direct een dienst om aan toe te voegen"
54
 
55
- #: add-to-any.php:267
56
  msgid "Powered by"
57
  msgstr "Mede mogelijk gemaakt door"
58
 
59
- #: add-to-any.php:268
60
  msgid "Share via e-mail"
61
  msgstr "Delen via e-mail"
62
 
63
- #: add-to-any.php:269
64
  msgid "Subscribe via e-mail"
65
  msgstr "Inschrijven via email"
66
 
67
- #: add-to-any.php:270
68
  msgid "Bookmark in your browser"
69
  msgstr "Bookmark in je browser"
70
 
71
- #: add-to-any.php:271
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Druk op Ctrl+D of &#8984;+D om deze pagina te bookmarken"
74
 
75
- #: add-to-any.php:272
76
  msgid "Add to your favorites"
77
  msgstr "Voeg aan je favorieten toe"
78
 
79
- #: add-to-any.php:273
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Verzend vanaf elk email adres of email programma"
82
 
83
- #: add-to-any.php:274
84
  msgid "E-mail program"
85
  msgstr "E-mail programma"
86
 
87
- #: add-to-any.php:299
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "Je template moet gerepareerd worden, gebruik hiervoor de <a href=\"theme-editor.php\">Template Editor</ a> om <code>&lt;?php wp_footer(); ?&gt;</code> in te voegen net voor de <code>&lt;/body&gt;</code> regel van het <code>footer.php</code> bestand."
90
 
91
- #: add-to-any.php:490
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr "Niet mogelijk om folder %s te creëeren. Is de bovenliggende folder beschrijfbaar door de server?"
95
 
96
- #: add-to-any.php:566
97
- #: add-to-any.php:639
98
- #: add-to-any.php:643
99
- #: add-to-any.php:647
100
- #: add-to-any.php:651
101
- #: add-to-any.php:683
102
  msgid "Share/Bookmark"
103
  msgstr "Delen/Bookmark"
104
 
105
- #: add-to-any.php:580
106
  msgid "Settings saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
110
  msgid "AddToAny: Share/Save "
111
  msgstr "AddToAny: Delen/Bewaren"
112
 
113
- #: add-to-any.php:593
114
- #: add-to-any.php:978
115
- #: add-to-any.php:1002
116
  msgid "Settings"
117
  msgstr "Instellingen"
118
 
119
- #: add-to-any.php:602
120
  msgid "Standalone Services"
121
  msgstr "Zelfstandige Diensten"
122
 
123
- #: add-to-any.php:607
124
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
125
  msgstr "Kies de gewenste diensten hieronder. Klik op een gekozen dienst om deze weer te verwijderen. Herorder de volgorde van diensten door middel van slepen en plaatsen zoals hierboven."
126
 
127
- #: add-to-any.php:634
128
  msgid "Button"
129
  msgstr "Knop"
130
 
131
- #: add-to-any.php:673
132
  msgid "Image URL"
133
  msgstr "Afbeelding URL"
134
 
135
- #: add-to-any.php:680
136
  msgid "Text only"
137
  msgstr "Alleen tekst"
138
 
139
- #: add-to-any.php:688
140
  msgid "Placement"
141
  msgstr "Plaatsing"
142
 
143
- #: add-to-any.php:697
144
- msgid "Display Share/Save button at the bottom of posts"
 
145
  msgstr "Laat Delen/Bewaren knop zien aan het einde van berichten"
146
 
147
- #: add-to-any.php:704
148
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
149
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van berichten op de voorpagina"
150
 
151
- #: add-to-any.php:711
152
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
153
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van feed berichten "
154
 
155
- #: add-to-any.php:715
156
- msgid "Display Share/Save button at the bottom of pages"
 
157
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van pagina's"
158
 
159
- #: add-to-any.php:719
160
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
161
  msgstr "Indien niet aangevinkt moet je de volgende code in <a href=\"theme-editor.php\">je sjabloon pagina's</a> plaatsen (binnen <code>index.php</code>, <code>single.php</code>, en/of <code>page.php</code>)"
162
 
163
- #: add-to-any.php:728
164
  msgid "Menu Style"
165
  msgstr "Menu Stijl"
166
 
167
- #: add-to-any.php:730
168
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
169
  msgstr "Met behulp van AddToAny's Menu Styler kun je de kleuren veranderen van je Delen/Bewaren menu! Wanneer je klaar bent moet je de gegenereerde code plakken in het onderstaande vak <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Aanvullende opties</a>."
170
 
171
- #: add-to-any.php:732
172
  msgid "Open the AddToAny Menu Styler in a new window"
173
  msgstr "Open het AddToAny Styler menu in een nieuw venster"
174
 
175
- #: add-to-any.php:734
176
  msgid "Open Menu Styler"
177
  msgstr "Open Menu Styler"
178
 
179
- #: add-to-any.php:739
180
  msgid "Menu Options"
181
  msgstr "Menu Opties"
182
 
183
- #: add-to-any.php:744
184
- msgid "Show the title of the post (or page) within the menu"
185
- msgstr "Toon de titel van het bericht (of pagina) in het menu"
186
-
187
- #: add-to-any.php:751
188
  msgid "Only show the menu when the user clicks the Share/Save button"
189
  msgstr "Alleen het menu weergeven wanneer de gebruiker klikt op de Delen/Bewaren knop"
190
 
191
- #: add-to-any.php:757
192
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
193
- msgstr "Open de addtoany.com menupagina in een nieuw tabblad of venster als de gebruiker klikt op de Delen/Bewaren knop"
194
 
195
- #: add-to-any.php:762
196
  msgid "Additional Options"
197
  msgstr "Additionele Opties"
198
 
199
- #: add-to-any.php:766
200
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
201
  msgstr "Plak de code van AddToAny's Menu Styler in het vak hieronder!"
202
 
203
- #: add-to-any.php:770
204
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
205
  msgstr "Hieronder kun je speciale JavaScript variabelen instellen welke van toepassing zijn op elk Delen/Bewaren menu."
206
 
207
- #: add-to-any.php:771
208
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
209
  msgstr "Gevorderde gebruikers willen wellicht de <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">extra opties</ a> van AddToAny's verkennen."
210
 
211
- #: add-to-any.php:777
212
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
213
  msgstr "<strong>Opmerking</ strong>: Pas op dat je niet per ongeluk oudere code overschrijft wanneer je nieuwe code toevoegt.</label>"
214
 
215
- #: add-to-any.php:782
216
  msgid "Advanced Options"
217
  msgstr "Geavanceerde Opties"
218
 
219
- #: add-to-any.php:787
220
  msgid "Use CSS stylesheet"
221
  msgstr "Gebruik CSS stijlbestand"
222
 
223
- #: add-to-any.php:792
224
  msgid "Cache AddToAny locally with daily cache updates"
225
  msgstr "Cache AddToAny lokaal met dagelijkse cache updates"
226
 
227
- #: add-to-any.php:796
228
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
229
- msgstr "Indien niet aangevinkt moet je de CSS plaatsen in je thema's stylesheet:"
230
-
231
- #: add-to-any.php:801
232
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
233
  msgstr "Alleen ter afweging voor sites met vaak terugkomende bezoekers. Aangezien veel bezoekers AddToAny al gecached hebben in hun browser zal AddToAny lokaal gestart van je site langzamer zijn voor bezoekers. Wees er zeker van om toekomstige cache/expires headers voor afbeelding bestanden in te stellen in je <code>uploads/addtoany</code> folder."
234
 
235
- #: add-to-any.php:808
236
  msgid "Save Changes"
237
  msgstr "Wijzigingen opslaan"
238
 
239
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
240
  msgid "Like this plugin?"
241
  msgstr "Vind je deze plugin goed?"
242
 
243
- #: add-to-any.php:814
244
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
245
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geef het een goede rating</a> op WordPress.org."
246
 
247
- #: add-to-any.php:815
248
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
249
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Deel het</a> met je vrienden."
250
 
251
- #: add-to-any.php:817
252
  msgid "Need support?"
253
  msgstr "Hulp nodig?"
254
 
255
- #: add-to-any.php:818
256
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
257
  msgstr "Zie de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">veelgestelde vragen</ a> (Engels)."
258
 
259
- #: add-to-any.php:819
260
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
261
  msgstr "Zoek in de <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a> (Engels)."
262
 
263
- #: add-to-any.php:926
264
  msgid "Add/Remove Services"
265
  msgstr "Toevoegen/Verwijderen Diensten"
266
 
267
- #: add-to-any.php:978
268
  msgid "Share/Save"
269
  msgstr "Delen/Bewaren"
270
 
271
- #: add-to-any.php:979
272
  msgid "Share/Save Buttons"
273
  msgstr "Delen/Bewaren Knoppen"
274
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any .9.9.6.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Rene <info@wpwebshop.com>\n"
8
  "Language-Team: Translation by WordPressWebshop.com <info@wpwebshop.com>\n"
16
  "X-Poedit-Country: NETHERLANDS\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:313
20
  msgid "Share"
21
  msgstr "Delen"
22
 
23
+ #: add-to-any.php:314
24
  msgid "Save"
25
  msgstr "Bewaren"
26
 
27
+ #: add-to-any.php:315
28
  msgid "Subscribe"
29
  msgstr "Inschrijven"
30
 
31
+ #: add-to-any.php:316
32
  msgid "E-mail"
33
  msgstr "E-mail"
34
 
35
+ #: add-to-any.php:317
36
  msgid "Bookmark"
37
  msgstr "Bookmark"
38
 
39
+ #: add-to-any.php:318
40
  msgid "Show all"
41
  msgstr "Alles weergeven"
42
 
43
+ #: add-to-any.php:319
44
  msgid "Show less"
45
  msgstr "Niet alles weergeven"
46
 
47
+ #: add-to-any.php:320
48
  msgid "Find service(s)"
49
  msgstr "Vind dienst(en)"
50
 
51
+ #: add-to-any.php:321
52
  msgid "Instantly find any service to add to"
53
  msgstr "Vind direct een dienst om aan toe te voegen"
54
 
55
+ #: add-to-any.php:322
56
  msgid "Powered by"
57
  msgstr "Mede mogelijk gemaakt door"
58
 
59
+ #: add-to-any.php:323
60
  msgid "Share via e-mail"
61
  msgstr "Delen via e-mail"
62
 
63
+ #: add-to-any.php:324
64
  msgid "Subscribe via e-mail"
65
  msgstr "Inschrijven via email"
66
 
67
+ #: add-to-any.php:325
68
  msgid "Bookmark in your browser"
69
  msgstr "Bookmark in je browser"
70
 
71
+ #: add-to-any.php:326
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Druk op Ctrl+D of &#8984;+D om deze pagina te bookmarken"
74
 
75
+ #: add-to-any.php:327
76
  msgid "Add to your favorites"
77
  msgstr "Voeg aan je favorieten toe"
78
 
79
+ #: add-to-any.php:328
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Verzend vanaf elk email adres of email programma"
82
 
83
+ #: add-to-any.php:329
84
  msgid "E-mail program"
85
  msgstr "E-mail programma"
86
 
87
+ #: add-to-any.php:354
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "Je template moet gerepareerd worden, gebruik hiervoor de <a href=\"theme-editor.php\">Template Editor</ a> om <code>&lt;?php wp_footer(); ?&gt;</code> in te voegen net voor de <code>&lt;/body&gt;</code> regel van het <code>footer.php</code> bestand."
90
 
91
+ #: add-to-any.php:511
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr "Niet mogelijk om folder %s te creëeren. Is de bovenliggende folder beschrijfbaar door de server?"
95
 
96
+ #: add-to-any.php:645
97
+ #: add-to-any.php:769
98
+ #: add-to-any.php:773
99
+ #: add-to-any.php:777
100
+ #: add-to-any.php:781
101
+ #: add-to-any.php:813
102
  msgid "Share/Bookmark"
103
  msgstr "Delen/Bookmark"
104
 
105
+ #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
+ #: add-to-any.php:679
110
+ msgid "bottom"
111
+ msgstr ""
112
+
113
+ #: add-to-any.php:683
114
+ msgid "top"
115
+ msgstr ""
116
+
117
+ #: add-to-any.php:687
118
+ msgid "top &amp; bottom"
119
+ msgstr ""
120
+
121
+ #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: Delen/Bewaren"
124
 
125
+ #: add-to-any.php:718
126
+ #: add-to-any.php:1123
127
+ #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "Instellingen"
130
 
131
+ #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr "Zelfstandige Diensten"
134
 
135
+ #: add-to-any.php:732
136
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
137
  msgstr "Kies de gewenste diensten hieronder. Klik op een gekozen dienst om deze weer te verwijderen. Herorder de volgorde van diensten door middel van slepen en plaatsen zoals hierboven."
138
 
139
+ #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "Knop"
142
 
143
+ #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "Afbeelding URL"
146
 
147
+ #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "Alleen tekst"
150
 
151
+ #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "Plaatsing"
154
 
155
+ #: add-to-any.php:823
156
+ #, fuzzy, php-format
157
+ msgid "Display at the %s of posts"
158
  msgstr "Laat Delen/Bewaren knop zien aan het einde van berichten"
159
 
160
+ #: add-to-any.php:830
161
+ #, php-format
162
+ msgid "Display at the %s of post excerpts"
163
+ msgstr ""
164
+
165
+ #: add-to-any.php:837
166
+ #, fuzzy, php-format
167
+ msgid "Display at the %s of posts on the front page"
168
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van berichten op de voorpagina"
169
 
170
+ #: add-to-any.php:845
171
+ #, fuzzy, php-format
172
+ msgid "Display at the %s of posts in the feed"
173
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van feed berichten "
174
 
175
+ #: add-to-any.php:849
176
+ #, fuzzy, php-format
177
+ msgid "Display at the %s of pages"
178
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van pagina's"
179
 
180
+ #: add-to-any.php:853
181
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
182
  msgstr "Indien niet aangevinkt moet je de volgende code in <a href=\"theme-editor.php\">je sjabloon pagina's</a> plaatsen (binnen <code>index.php</code>, <code>single.php</code>, en/of <code>page.php</code>)"
183
 
184
+ #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "Menu Stijl"
187
 
188
+ #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Met behulp van AddToAny's Menu Styler kun je de kleuren veranderen van je Delen/Bewaren menu! Wanneer je klaar bent moet je de gegenereerde code plakken in het onderstaande vak <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Aanvullende opties</a>."
191
 
192
+ #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Open het AddToAny Styler menu in een nieuw venster"
195
 
196
+ #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "Open Menu Styler"
199
 
200
+ #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "Menu Opties"
203
 
204
+ #: add-to-any.php:878
 
 
 
 
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Alleen het menu weergeven wanneer de gebruiker klikt op de Delen/Bewaren knop"
207
 
208
+ #: add-to-any.php:883
209
+ msgid "Show the title of the post (or page) within the menu"
210
+ msgstr "Toon de titel van het bericht (of pagina) in het menu"
211
 
212
+ #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "Additionele Opties"
215
 
216
+ #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Plak de code van AddToAny's Menu Styler in het vak hieronder!"
219
 
220
+ #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "Hieronder kun je speciale JavaScript variabelen instellen welke van toepassing zijn op elk Delen/Bewaren menu."
223
 
224
+ #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Gevorderde gebruikers willen wellicht de <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">extra opties</ a> van AddToAny's verkennen."
227
 
228
+ #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Opmerking</ strong>: Pas op dat je niet per ongeluk oudere code overschrijft wanneer je nieuwe code toevoegt.</label>"
231
 
232
+ #: add-to-any.php:908
233
  msgid "Advanced Options"
234
  msgstr "Geavanceerde Opties"
235
 
236
+ #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr "Gebruik CSS stijlbestand"
239
 
240
+ #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr "Cache AddToAny lokaal met dagelijkse cache updates"
243
 
244
+ #: add-to-any.php:922
 
 
 
 
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr "Alleen ter afweging voor sites met vaak terugkomende bezoekers. Aangezien veel bezoekers AddToAny al gecached hebben in hun browser zal AddToAny lokaal gestart van je site langzamer zijn voor bezoekers. Wees er zeker van om toekomstige cache/expires headers voor afbeelding bestanden in te stellen in je <code>uploads/addtoany</code> folder."
247
 
248
+ #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Wijzigingen opslaan"
251
 
252
+ #: add-to-any.php:930
253
+ msgid "Are you sure you want to delete all AddToAny options?"
254
+ msgstr ""
255
+
256
+ #: add-to-any.php:930
257
+ msgid "Reset"
258
+ msgstr ""
259
+
260
+ #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Vind je deze plugin goed?"
263
 
264
+ #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geef het een goede rating</a> op WordPress.org."
267
 
268
+ #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Deel het</a> met je vrienden."
271
 
272
+ #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Hulp nodig?"
275
 
276
+ #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Zie de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">veelgestelde vragen</ a> (Engels)."
279
 
280
+ #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Zoek in de <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a> (Engels)."
283
 
284
+ #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Toevoegen/Verwijderen Diensten"
287
 
288
+ #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Delen/Bewaren"
291
 
292
+ #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Delen/Bewaren Knoppen"
295
 
296
+ #~ msgid ""
297
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
298
+ #~ "the Share/Save button"
299
+ #~ msgstr ""
300
+ #~ "Open de addtoany.com menupagina in een nieuw tabblad of venster als de "
301
+ #~ "gebruiker klikt op de Delen/Bewaren knop"
302
+
303
+ #~ msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
304
+ #~ msgstr ""
305
+ #~ "Indien niet aangevinkt moet je de CSS plaatsen in je thema's stylesheet:"
languages/add-to-any-pt_BR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,263 +13,291 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr "Compartilhar"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr "Salvar"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr "Inscrever"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr "Favoritos"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr "Compartilhar por e-mail"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr "Inscrever por e-mail"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar aos favoritos"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos favoritos"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Enviar de qualquer e-mail ou programa de e-mail"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr "Compartilhar/Favoritos"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr "Configuração salvas."
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr "Compartilhar/Salvar"
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr "Configurações"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr "Serviços Isolados"
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente em um serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop (arrastar e soltar) conforme aparecem."
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr "Botão"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr "URL da imagem"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr "Apenas texto"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr "Posicionamento"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr "Mostrar o botão Compartilhar/Salvar no fim de cada post"
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
146
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts na página principal"
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts do feed RSS"
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr "Mostrar o botão Compartilhar/Salvar no fim das páginas"
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "Se estiver desativado, assegure-se de colocar o seguinte código em <a href=\"theme-editor.php\">Modelos das suas páginas</a> (dentro de <code>index.php</code>, <code>single.php</code>, e/ou <code>page.php</code>)"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr "Estilo de Menu"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr "Abrir o Menu de Personalização de Estilos"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr "Opções de Menu"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "Mostrar o título do post (ou da página) dentro do menu"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "Mostrar apenas o menu quando o usuário clicar no botão Partilhar/Guardar"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr "Opções Adicionais"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Compartilhar/Salvar."
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr "Usuários avançados podem querer explorar a <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr "<strong>Nota</strong>: Se quiser adicionar um novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
211
 
212
- #: add-to-any.php:782
213
  #, fuzzy
214
  msgid "Advanced Options"
215
  msgstr "Opções Adicionais"
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
  msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
  msgstr ""
224
 
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
  msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
  msgstr "Salvar alterações"
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
  msgstr "Gosta deste plugin?"
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Compartilhar</a> com os amigos."
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr "Precisa de ajuda?"
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
  msgstr "Adicionar/Remover Serviços"
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
  msgstr "Compartilhar/Salvar"
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
  msgstr "Compartilhar|Salvar"
272
 
 
 
 
 
 
 
 
273
  #~ msgid ""
274
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
275
  #~ "when displayed"
@@ -280,4 +308,3 @@ msgstr "Compartilhar|Salvar"
280
  #, fuzzy
281
  #~ msgid "Services"
282
  #~ msgstr "Procurar serviço(s)"
283
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Compartilhar"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Salvar"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "Inscrever"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "Favoritos"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Compartilhar por e-mail"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "Inscrever por e-mail"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar aos favoritos"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos favoritos"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Enviar de qualquer e-mail ou programa de e-mail"
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "Compartilhar/Favoritos"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Configuração salvas."
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Compartilhar/Salvar"
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Configurações"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "Serviços Isolados"
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente em um serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop (arrastar e soltar) conforme aparecem."
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Botão"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "URL da imagem"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Apenas texto"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Posicionamento"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr "Mostrar o botão Compartilhar/Salvar no fim de cada post"
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
+
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts na página principal"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts do feed RSS"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
  msgstr "Mostrar o botão Compartilhar/Salvar no fim das páginas"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr "Se estiver desativado, assegure-se de colocar o seguinte código em <a href=\"theme-editor.php\">Modelos das suas páginas</a> (dentro de <code>index.php</code>, <code>single.php</code>, e/ou <code>page.php</code>)"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Estilo de Menu"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Abrir o Menu de Personalização de Estilos"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Opções de Menu"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Mostrar apenas o menu quando o usuário clicar no botão Partilhar/Guardar"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "Mostrar o título do post (ou da página) dentro do menu"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Opções Adicionais"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Compartilhar/Salvar."
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Usuários avançados podem querer explorar a <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Nota</strong>: Se quiser adicionar um novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
228
 
229
+ #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Opções Adicionais"
233
 
234
+ #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:922
 
 
 
 
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "Salvar alterações"
249
 
250
+ #: add-to-any.php:930
251
+ msgid "Are you sure you want to delete all AddToAny options?"
252
+ msgstr ""
253
+
254
+ #: add-to-any.php:930
255
+ msgid "Reset"
256
+ msgstr ""
257
+
258
+ #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "Gosta deste plugin?"
261
 
262
+ #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
265
 
266
+ #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Compartilhar</a> com os amigos."
269
 
270
+ #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "Precisa de ajuda?"
273
 
274
+ #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
277
 
278
+ #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
281
 
282
+ #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "Adicionar/Remover Serviços"
285
 
286
+ #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "Compartilhar/Salvar"
289
 
290
+ #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "Compartilhar|Salvar"
293
 
294
+ #~ msgid ""
295
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
296
+ #~ "the Share/Save button"
297
+ #~ msgstr ""
298
+ #~ "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador "
299
+ #~ "fizer um clique no botão Partilhar/Guardar"
300
+
301
  #~ msgid ""
302
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
303
  #~ "when displayed"
308
  #, fuzzy
309
  #~ msgid "Services"
310
  #~ msgstr "Procurar serviço(s)"
 
languages/add-to-any-pt_PT.po CHANGED
@@ -1,274 +1,306 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: add-to-any\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-08-06 22:47-0000\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
- "Language-Team: Jorge Silva <jncs12@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-Language: Portuguese\n"
15
- "X-Poedit-Country: PORTUGAL\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: add-to-any.php:281
20
- msgid "Share"
21
- msgstr "Partilhar"
22
-
23
- #: add-to-any.php:282
24
- msgid "Save"
25
- msgstr "Guardar"
26
-
27
- #: add-to-any.php:283
28
- msgid "Subscribe"
29
- msgstr "Subscrever"
30
-
31
- #: add-to-any.php:284
32
- msgid "E-mail"
33
- msgstr "Email"
34
-
35
- #: add-to-any.php:285
36
- msgid "Bookmark"
37
- msgstr "Marcador"
38
-
39
- #: add-to-any.php:286
40
- msgid "Show all"
41
- msgstr "Mostrar tudo"
42
-
43
- #: add-to-any.php:287
44
- msgid "Show less"
45
- msgstr "Mostrar menos"
46
-
47
- #: add-to-any.php:288
48
- msgid "Find service(s)"
49
- msgstr "Procurar serviço(s)"
50
-
51
- #: add-to-any.php:289
52
- msgid "Instantly find any service to add to"
53
- msgstr "Encontrar rapidamente qualquer serviço para"
54
-
55
- #: add-to-any.php:290
56
- msgid "Powered by"
57
- msgstr "Serviço fornecido por"
58
-
59
- #: add-to-any.php:291
60
- msgid "Share via e-mail"
61
- msgstr "Partilhar por email"
62
-
63
- #: add-to-any.php:292
64
- msgid "Subscribe via e-mail"
65
- msgstr "Subscrever por email"
66
-
67
- #: add-to-any.php:293
68
- msgid "Bookmark in your browser"
69
- msgstr "Adicionar marcador"
70
-
71
- #: add-to-any.php:294
72
- msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
- msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
74
-
75
- #: add-to-any.php:295
76
- msgid "Add to your favorites"
77
- msgstr "Adicionar aos favoritos"
78
-
79
- #: add-to-any.php:296
80
- msgid "Send from any e-mail address or e-mail program"
81
- msgstr "Enviar de qualquer email ou programa de email"
82
-
83
- #: add-to-any.php:297
84
- msgid "E-mail program"
85
- msgstr "Programa de email"
86
-
87
- #: add-to-any.php:322
88
- msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
- msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
90
-
91
- #: add-to-any.php:513
92
- #, php-format
93
- msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
- msgstr "Impossível criar o directório %s. O directório ascendente tem permissões de escrita?"
95
-
96
- #: add-to-any.php:593
97
- #: add-to-any.php:666
98
- #: add-to-any.php:670
99
- #: add-to-any.php:674
100
- #: add-to-any.php:678
101
- #: add-to-any.php:710
102
- msgid "Share/Bookmark"
103
- msgstr "Marcador"
104
-
105
- #: add-to-any.php:607
106
- msgid "Settings saved."
107
- msgstr "Configurações guardadas."
108
-
109
- #: add-to-any.php:620
110
- msgid "AddToAny: Share/Save "
111
- msgstr "AddToAny: "
112
-
113
- #: add-to-any.php:620
114
- #: add-to-any.php:1005
115
- #: add-to-any.php:1029
116
- msgid "Settings"
117
- msgstr "Configurações"
118
-
119
- #: add-to-any.php:629
120
- msgid "Standalone Services"
121
- msgstr "Serviços Isolados"
122
-
123
- #: add-to-any.php:634
124
- msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
125
- msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente num serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop conforme aparecem por cima."
126
-
127
- #: add-to-any.php:661
128
- msgid "Button"
129
- msgstr "Botão"
130
-
131
- #: add-to-any.php:700
132
- msgid "Image URL"
133
- msgstr "URL da imagem"
134
-
135
- #: add-to-any.php:707
136
- msgid "Text only"
137
- msgstr "Apenas texto"
138
-
139
- #: add-to-any.php:715
140
- msgid "Placement"
141
- msgstr "Posicionamento"
142
-
143
- #: add-to-any.php:724
144
- msgid "Display Share/Save button at the bottom of posts"
145
- msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
146
-
147
- #: add-to-any.php:731
148
- msgid "Display Share/Save button at the bottom of posts on the front page"
149
- msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
150
-
151
- #: add-to-any.php:738
152
- msgid "Display Share/Save button at the bottom of posts in the feed"
153
- msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
154
-
155
- #: add-to-any.php:742
156
- msgid "Display Share/Save button at the bottom of pages"
157
- msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
158
-
159
- #: add-to-any.php:746
160
- msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
161
- msgstr "Se estiver desactivado, assegure-se que coloca o código seguinte em <a href=\"theme-editor.php\">Modelos das suas páginas</a> (dentro de <code>index.php</code>, <code>single.php</code>, e/ou <code>page.php</code>)"
162
-
163
- #: add-to-any.php:755
164
- msgid "Menu Style"
165
- msgstr "Estilo de Menu"
166
-
167
- #: add-to-any.php:757
168
- msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
169
- msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
170
-
171
- #: add-to-any.php:759
172
- msgid "Open the AddToAny Menu Styler in a new window"
173
- msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
174
-
175
- #: add-to-any.php:761
176
- msgid "Open Menu Styler"
177
- msgstr "Abrir o Menu de Personalização de Estilos"
178
-
179
- #: add-to-any.php:766
180
- msgid "Menu Options"
181
- msgstr "Opções do Menu"
182
-
183
- #: add-to-any.php:771
184
- msgid "Show the title of the post (or page) within the menu"
185
- msgstr "Mostrar o título do post (ou da página) dentro do menu"
186
-
187
- #: add-to-any.php:778
188
- msgid "Only show the menu when the user clicks the Share/Save button"
189
- msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
190
-
191
- #: add-to-any.php:784
192
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
193
- msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
194
-
195
- #: add-to-any.php:789
196
- msgid "Additional Options"
197
- msgstr "Opções Adicionais"
198
-
199
- #: add-to-any.php:793
200
- msgid "Paste the code from AddToAny's Menu Styler in the box below!"
201
- msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
202
-
203
- #: add-to-any.php:797
204
- msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
205
- msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
206
-
207
- #: add-to-any.php:798
208
- msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
209
- msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
210
-
211
- #: add-to-any.php:804
212
- msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
213
- msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
214
-
215
- #: add-to-any.php:809
216
- msgid "Advanced Options"
217
- msgstr "Opções Avançadas"
218
-
219
- #: add-to-any.php:814
220
- msgid "Use CSS stylesheet"
221
- msgstr "Usar a folha de estilos CSS"
222
-
223
- #: add-to-any.php:819
224
- msgid "Cache AddToAny locally with daily cache updates"
225
- msgstr "Fazer cópia local do serviço AddToAny com actualizações diárias"
226
-
227
- #: add-to-any.php:823
228
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
229
- msgstr "Se não estiver activado, assegure-se que coloca o CSS nas folhas de estilo do seu tema:"
230
-
231
- #: add-to-any.php:828
232
- msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
233
- msgstr "Utiliza apenas esta opção para sites com visitantes habituais. Uma vez que muitos visitantes terão já uma cópia local do serviço AddToAny no seu navegador, esta opção fará com que o carregamento so seu site seja mais lenta. Assegure-se que coloca cabeçalhos de expiração da cache para ficheiros de imagem no seu directório <code>uploads/addtoany</code>."
234
-
235
- #: add-to-any.php:835
236
- msgid "Save Changes"
237
- msgstr "Guardar alterações"
238
-
239
- #: add-to-any.php:840
240
- msgid "Like this plugin?"
241
- msgstr "Gosta deste plugin?"
242
-
243
- #: add-to-any.php:841
244
- msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
245
- msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
246
-
247
- #: add-to-any.php:842
248
- msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
249
- msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partilhar</a> com os amigos."
250
-
251
- #: add-to-any.php:844
252
- msgid "Need support?"
253
- msgstr "Precisa de ajuda?"
254
-
255
- #: add-to-any.php:845
256
- msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
257
- msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
258
-
259
- #: add-to-any.php:846
260
- msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
261
- msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
262
-
263
- #: add-to-any.php:953
264
- msgid "Add/Remove Services"
265
- msgstr "Adicionar/Remover Serviços"
266
-
267
- #: add-to-any.php:1005
268
- msgid "Share/Save"
269
- msgstr "Partilhar/Guardar"
270
-
271
- #: add-to-any.php:1006
272
- msgid "Share/Save Buttons"
273
- msgstr "AddToAny"
274
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: add-to-any\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
+ "Language-Team: Jorge Silva <jncs12@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "X-Poedit-Language: Portuguese\n"
15
+ "X-Poedit-Country: PORTUGAL\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: add-to-any.php:313
20
+ msgid "Share"
21
+ msgstr "Partilhar"
22
+
23
+ #: add-to-any.php:314
24
+ msgid "Save"
25
+ msgstr "Guardar"
26
+
27
+ #: add-to-any.php:315
28
+ msgid "Subscribe"
29
+ msgstr "Subscrever"
30
+
31
+ #: add-to-any.php:316
32
+ msgid "E-mail"
33
+ msgstr "Email"
34
+
35
+ #: add-to-any.php:317
36
+ msgid "Bookmark"
37
+ msgstr "Marcador"
38
+
39
+ #: add-to-any.php:318
40
+ msgid "Show all"
41
+ msgstr "Mostrar tudo"
42
+
43
+ #: add-to-any.php:319
44
+ msgid "Show less"
45
+ msgstr "Mostrar menos"
46
+
47
+ #: add-to-any.php:320
48
+ msgid "Find service(s)"
49
+ msgstr "Procurar serviço(s)"
50
+
51
+ #: add-to-any.php:321
52
+ msgid "Instantly find any service to add to"
53
+ msgstr "Encontrar rapidamente qualquer serviço para"
54
+
55
+ #: add-to-any.php:322
56
+ msgid "Powered by"
57
+ msgstr "Serviço fornecido por"
58
+
59
+ #: add-to-any.php:323
60
+ msgid "Share via e-mail"
61
+ msgstr "Partilhar por email"
62
+
63
+ #: add-to-any.php:324
64
+ msgid "Subscribe via e-mail"
65
+ msgstr "Subscrever por email"
66
+
67
+ #: add-to-any.php:325
68
+ msgid "Bookmark in your browser"
69
+ msgstr "Adicionar marcador"
70
+
71
+ #: add-to-any.php:326
72
+ msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
+ msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
74
+
75
+ #: add-to-any.php:327
76
+ msgid "Add to your favorites"
77
+ msgstr "Adicionar aos favoritos"
78
+
79
+ #: add-to-any.php:328
80
+ msgid "Send from any e-mail address or e-mail program"
81
+ msgstr "Enviar de qualquer email ou programa de email"
82
+
83
+ #: add-to-any.php:329
84
+ msgid "E-mail program"
85
+ msgstr "Programa de email"
86
+
87
+ #: add-to-any.php:354
88
+ msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
+ msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
90
+
91
+ #: add-to-any.php:511
92
+ #, php-format
93
+ msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
+ msgstr "Impossível criar o directório %s. O directório ascendente tem permissões de escrita?"
95
+
96
+ #: add-to-any.php:645
97
+ #: add-to-any.php:769
98
+ #: add-to-any.php:773
99
+ #: add-to-any.php:777
100
+ #: add-to-any.php:781
101
+ #: add-to-any.php:813
102
+ msgid "Share/Bookmark"
103
+ msgstr "Marcador"
104
+
105
+ #: add-to-any.php:658
106
+ msgid "Settings saved."
107
+ msgstr "Configurações guardadas."
108
+
109
+ #: add-to-any.php:679
110
+ msgid "bottom"
111
+ msgstr ""
112
+
113
+ #: add-to-any.php:683
114
+ msgid "top"
115
+ msgstr ""
116
+
117
+ #: add-to-any.php:687
118
+ msgid "top &amp; bottom"
119
+ msgstr ""
120
+
121
+ #: add-to-any.php:718
122
+ msgid "AddToAny: Share/Save "
123
+ msgstr "AddToAny: "
124
+
125
+ #: add-to-any.php:718
126
+ #: add-to-any.php:1123
127
+ #: add-to-any.php:1154
128
+ msgid "Settings"
129
+ msgstr "Configurações"
130
+
131
+ #: add-to-any.php:727
132
+ msgid "Standalone Services"
133
+ msgstr "Serviços Isolados"
134
+
135
+ #: add-to-any.php:732
136
+ msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
137
+ msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente num serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop conforme aparecem por cima."
138
+
139
+ #: add-to-any.php:764
140
+ msgid "Button"
141
+ msgstr "Botão"
142
+
143
+ #: add-to-any.php:803
144
+ msgid "Image URL"
145
+ msgstr "URL da imagem"
146
+
147
+ #: add-to-any.php:810
148
+ msgid "Text only"
149
+ msgstr "Apenas texto"
150
+
151
+ #: add-to-any.php:818
152
+ msgid "Placement"
153
+ msgstr "Posicionamento"
154
+
155
+ #: add-to-any.php:823
156
+ #, fuzzy, php-format
157
+ msgid "Display at the %s of posts"
158
+ msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
159
+
160
+ #: add-to-any.php:830
161
+ #, php-format
162
+ msgid "Display at the %s of post excerpts"
163
+ msgstr ""
164
+
165
+ #: add-to-any.php:837
166
+ #, fuzzy, php-format
167
+ msgid "Display at the %s of posts on the front page"
168
+ msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
169
+
170
+ #: add-to-any.php:845
171
+ #, fuzzy, php-format
172
+ msgid "Display at the %s of posts in the feed"
173
+ msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
174
+
175
+ #: add-to-any.php:849
176
+ #, fuzzy, php-format
177
+ msgid "Display at the %s of pages"
178
+ msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
179
+
180
+ #: add-to-any.php:853
181
+ msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
182
+ msgstr "Se estiver desactivado, assegure-se que coloca o código seguinte em <a href=\"theme-editor.php\">Modelos das suas páginas</a> (dentro de <code>index.php</code>, <code>single.php</code>, e/ou <code>page.php</code>)"
183
+
184
+ #: add-to-any.php:862
185
+ msgid "Menu Style"
186
+ msgstr "Estilo de Menu"
187
+
188
+ #: add-to-any.php:864
189
+ msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
+ msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
191
+
192
+ #: add-to-any.php:866
193
+ msgid "Open the AddToAny Menu Styler in a new window"
194
+ msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
195
+
196
+ #: add-to-any.php:868
197
+ msgid "Open Menu Styler"
198
+ msgstr "Abrir o Menu de Personalização de Estilos"
199
+
200
+ #: add-to-any.php:873
201
+ msgid "Menu Options"
202
+ msgstr "Opções do Menu"
203
+
204
+ #: add-to-any.php:878
205
+ msgid "Only show the menu when the user clicks the Share/Save button"
206
+ msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
207
+
208
+ #: add-to-any.php:883
209
+ msgid "Show the title of the post (or page) within the menu"
210
+ msgstr "Mostrar o título do post (ou da página) dentro do menu"
211
+
212
+ #: add-to-any.php:888
213
+ msgid "Additional Options"
214
+ msgstr "Opções Adicionais"
215
+
216
+ #: add-to-any.php:892
217
+ msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
+ msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
219
+
220
+ #: add-to-any.php:896
221
+ msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
+ msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
223
+
224
+ #: add-to-any.php:897
225
+ msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
+ msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
227
+
228
+ #: add-to-any.php:903
229
+ msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
+ msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
231
+
232
+ #: add-to-any.php:908
233
+ msgid "Advanced Options"
234
+ msgstr "Opções Avançadas"
235
+
236
+ #: add-to-any.php:913
237
+ msgid "Use CSS stylesheet"
238
+ msgstr "Usar a folha de estilos CSS"
239
+
240
+ #: add-to-any.php:918
241
+ msgid "Cache AddToAny locally with daily cache updates"
242
+ msgstr "Fazer cópia local do serviço AddToAny com actualizações diárias"
243
+
244
+ #: add-to-any.php:922
245
+ msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
+ msgstr "Utiliza apenas esta opção para sites com visitantes habituais. Uma vez que muitos visitantes terão já uma cópia local do serviço AddToAny no seu navegador, esta opção fará com que o carregamento so seu site seja mais lenta. Assegure-se que coloca cabeçalhos de expiração da cache para ficheiros de imagem no seu directório <code>uploads/addtoany</code>."
247
+
248
+ #: add-to-any.php:929
249
+ msgid "Save Changes"
250
+ msgstr "Guardar alterações"
251
+
252
+ #: add-to-any.php:930
253
+ msgid "Are you sure you want to delete all AddToAny options?"
254
+ msgstr ""
255
+
256
+ #: add-to-any.php:930
257
+ msgid "Reset"
258
+ msgstr ""
259
+
260
+ #: add-to-any.php:935
261
+ msgid "Like this plugin?"
262
+ msgstr "Gosta deste plugin?"
263
+
264
+ #: add-to-any.php:936
265
+ msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
267
+
268
+ #: add-to-any.php:937
269
+ msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
+ msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partilhar</a> com os amigos."
271
+
272
+ #: add-to-any.php:939
273
+ msgid "Need support?"
274
+ msgstr "Precisa de ajuda?"
275
+
276
+ #: add-to-any.php:940
277
+ msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
+ msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
279
+
280
+ #: add-to-any.php:941
281
+ msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
+ msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
283
+
284
+ #: add-to-any.php:1066
285
+ msgid "Add/Remove Services"
286
+ msgstr "Adicionar/Remover Serviços"
287
+
288
+ #: add-to-any.php:1123
289
+ msgid "Share/Save"
290
+ msgstr "Partilhar/Guardar"
291
+
292
+ #: add-to-any.php:1124
293
+ msgid "Share/Save Buttons"
294
+ msgstr "AddToAny"
295
+
296
+ #~ msgid ""
297
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
298
+ #~ "the Share/Save button"
299
+ #~ msgstr ""
300
+ #~ "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador "
301
+ #~ "fizer um clique no botão Partilhar/Guardar"
302
+
303
+ #~ msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
304
+ #~ msgstr ""
305
+ #~ "Se não estiver activado, assegure-se que coloca o CSS nas folhas de "
306
+ #~ "estilo do seu tema:"
languages/add-to-any-ro_RO.mo CHANGED
Binary file
languages/add-to-any-ro_RO.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,267 +13,298 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
- msgstr "Amparte"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
- msgstr "Salveaza"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
- msgstr "Inscriete"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
- msgstr "E-mail"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
- msgstr "Semneaza"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
- msgstr "Vezi Totul"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
- msgstr "Strange"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
- msgstr "Cauta servici"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
- msgstr "Cauta instantaneu tuoate servicile sa le pui a"
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
- msgstr "Amparte via e-mail"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
- msgstr "Inscriete la via e-mail"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
- msgstr "Semneaza in al tau browser"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
- msgstr "Digiteaza Ctrl+D sau &#8984;+D pentru semnare pagina asta"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
- msgstr "Ajunge la ai tai favoriti"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
- msgstr "Trimite de la fiecare email sau email client"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
- msgstr "Email Client"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
- msgstr "Tema ta trebuie sa fie la zi. Pentru purtare modifca necesara,foloseste <a href=\"theme-editor.php\">editorul de tema</a> pentru a intra <code>&lt;?php wp_footer(); ?&gt;</code> imediat dupa tag de anchidere <code>&lt;/body&gt;</code> present an <code>footer.php</code> la tema ta."
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
- msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
- msgstr "Semneaza"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
- msgstr "Impostationi salvate"
 
 
 
 
 
 
 
 
 
 
 
 
105
 
106
- #: add-to-any.php:593
107
  msgid "AddToAny: Share/Save "
108
- msgstr "AddToAny: Amparte /Salveaza"
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
- msgstr "Impostationi"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
- msgstr "Servitii independente"
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
- msgstr "Alege aici dedesupt servitile care ati plac. &nbsp;Clicca la un servici active pentru a elimina.&nbsp;Ordineaza servicii prin drag and drop."
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
- msgstr "Buton"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
- msgstr "Imagine URL"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
- msgstr "Duar text"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
- msgstr "Pozitia"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
142
- msgstr "Priveste Amparte/Salveaza buton la sfarsitul articolului"
 
 
 
 
 
 
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
146
- msgstr "Priveste Amparte/Salveaza buton la sfarsitul articolului de la pagina principala"
 
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
150
- msgstr "Priveste Amparte/Salveaza buton la sfarsitul de la feed"
 
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
154
- msgstr "Priveste Amparte/Salveaza buton la sfarsitul de la pagina"
 
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
- msgstr "Daca e dezactivat, trebuie sa fim siguri sa punem codul seguit <a href=\"theme-editor.php\">tema de la pagina</a> ( cu <code>index.php</code>, <code>single.php</code>, si/sau <code>page.php</code>)"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
- msgstr "Stil menu"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
- msgstr "Folosind stilul de la menu de la AddToAny,poti sa configurezi culorile de al tau Amparte/Salveaza ! Daca ai modificat, pune codul asa obtinut an cuadru de la <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">option ajunse</a> aici jos."
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
- msgstr "Deschide an o noue fineastra pentru a personaliza il menu de la AddToAny"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
- msgstr "Stil menu"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
- msgstr "Optioni menu"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "Priveste titlul de la articolul (sau pagina) an menu"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
- msgstr "Arata menu duar cand autorul clicca pe butonul Amparte/Salveaza"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "Deschide meniul addtoany.com antro noua feneastra sau scheda daca autorul clicca pe butonul Amparte/Salveava"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
- msgstr "Optioni adiţionale"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
- msgstr "Introduce aici jos codul personalizat pentru menu!"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
- msgstr "Aici jos e posibil impostare variabilele JavaScript applicate a fiecare menu Amparte/Salveaza"
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
- msgstr "Autorul poate sa vada de la <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
- msgstr "<strong>Nota</strong>: Daca ajungi un nou cod, atentione se nu soprascrieti din gresiala fiecare cod de prima.</label>"
211
 
212
- #: add-to-any.php:782
213
- #, fuzzy
214
  msgid "Advanced Options"
215
- msgstr "Optioni adiţionale"
216
 
217
- #: add-to-any.php:787
218
  msgid "Use CSS stylesheet"
219
- msgstr ""
220
 
221
- #: add-to-any.php:792
222
  msgid "Cache AddToAny locally with daily cache updates"
223
- msgstr ""
224
-
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
 
229
- #: add-to-any.php:801
230
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
231
- msgstr ""
232
 
233
- #: add-to-any.php:808
234
  msgid "Save Changes"
235
- msgstr "Salveaza schimbarile"
236
 
237
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
238
  msgid "Like this plugin?"
239
- msgstr "Ati place acest plugin?"
240
 
241
- #: add-to-any.php:814
242
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
- msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Voteazama</a> sus WordPress.org."
244
 
245
- #: add-to-any.php:815
246
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
- msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Amparte</a> cu prieteni tai."
248
 
249
- #: add-to-any.php:817
250
  msgid "Need support?"
251
  msgstr "Ai nevoie de ajutor?"
252
 
253
- #: add-to-any.php:818
254
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
- msgstr "Priveste <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
256
 
257
- #: add-to-any.php:819
258
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
- msgstr "Cauta pe <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
260
 
261
- #: add-to-any.php:926
262
  msgid "Add/Remove Services"
263
- msgstr "Ajunge/Elimina servitii"
264
 
265
- #: add-to-any.php:978
266
  msgid "Share/Save"
267
- msgstr "Amparte/Salveaza"
268
 
269
- #: add-to-any.php:979
270
  msgid "Share/Save Buttons"
271
- msgstr "Amparte/Salveaza buton"
 
 
 
 
 
 
 
 
 
 
 
 
272
 
273
  #~ msgid ""
274
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
275
  #~ "when displayed"
276
  #~ msgstr ""
277
- #~ "Ascondi obiecte incorporate (Flash, video, etc.) care poti interferi cu "
278
- #~ "menu vazut"
279
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:30-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
+ msgstr "distribuie"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
+ msgstr "salvează"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
+ msgstr "abonează"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
+ msgstr "e-mail"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
+ msgstr "semn de carte"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
+ msgstr "arată totul"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
+ msgstr "arată mai puţine"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
+ msgstr "găseşte serviciu/i"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
+ msgstr "găseşte instantaneu orice serviciu de adăugat la"
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
+ msgstr "distribuie via e-mail"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
+ msgstr "subscrie via e-mail"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
+ msgstr "pune semn în browserul tău"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
+ msgstr "apasă Ctrl+D sau &#8984;+D pentru a pune semn acestei pagini"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
+ msgstr "adaugă la pagini favorite"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
+ msgstr "trimite de la orice adresă sau program de e-mail "
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
+ msgstr "program e-mail "
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
+ msgstr "Tema ta trebuie reparată. Pentru a o repara, foloseşte <a href=\"theme-editor.php\">Editorul de temă</a> pentru a insera <code>&lt;?php wp_footer(); ?&gt;</code> exact înainte de linia <code>&lt;/body&gt;</code> din fişierul <code>footer.php</code> al temei tale."
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
+ msgstr "Directorul %s nu poate fi creat. Serverul poate scrie în directorul-părinte?"
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
+ msgstr "distribuie/pune semn"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
+ msgstr "setări salvate."
105
+
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
 
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
+ msgstr "AddToAny: distribuie/salvează "
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
+ msgstr "setări"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
+ msgstr "servicii de sine stătătoare"
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
+ msgstr "Alege mai jos serviciile pe care le preferi. &nbsp;Clic a doua oara pe un serviciu selectat, pentru a-l elimina. &nbsp;Mută pozitia serviciilor alese cu drag-and-drop."
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
+ msgstr "buton"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
+ msgstr "imagine URL"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
+ msgstr "doar text"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
+ msgstr "poziţionare"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
+ msgstr "afişează butonul 'distribuie/salvează' în coada articolelor"
156
+
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
 
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
+ msgstr "afişează butonul 'distribuie/salvează' în coada articolelor de pe prima pagină"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
+ msgstr "afişează butonul 'distribuie/salvează' în coada articolelor din feed"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
+ msgstr "afişează butonul 'distribuie/salvează' în josul paginilor"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
+ msgstr "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
+ msgstr "stil meniu"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
+ msgstr "Folosind stilizatorul de meniu AddToAny, poti sa configurezi culorile meniului tău 'distribuie/salvează' ! După ce ai terminat, asigură-te ca ai înlocuit codul generat în căsuţa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opţiuni suplimentare</a> de mai jos."
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
+ msgstr "Open the AddToAny Menu Styler in a new window"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
+ msgstr "deschide stilizatorul de meniu"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
+ msgstr "optiuni menu"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
+ msgstr "arată meniul doar cand utilizatorul clic pe butonul distribuie/salvează"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "arată titlul articolului (paginii) in cadrul meniului"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
+ msgstr "optiuni adiţionale"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
+ msgstr "introdu în căsuţa de mai jos codul din stilizatorul de meniu AddToAny!"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
+ msgstr "Mai jos poţi seta variabilele speciale JavaScript pentru a le aplica fiecărui meniu 'distribuie/salvează'."
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
+ msgstr "Utilizatorii avansaţi pot explora <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">optiunile adiţionale</a> ale AddToAny."
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
+ msgstr "<strong>Notă</strong>: dacă adaugi cod nou, ai grijă nu suprascrii vreun cod anterior.</label>"
228
 
229
+ #: add-to-any.php:908
 
230
  msgid "Advanced Options"
231
+ msgstr "Optiuni avansate"
232
 
233
+ #: add-to-any.php:913
234
  msgid "Use CSS stylesheet"
235
+ msgstr "utilizează stylesheet CSS"
236
 
237
+ #: add-to-any.php:918
238
  msgid "Cache AddToAny locally with daily cache updates"
239
+ msgstr "păstrează AddToAny local, in cache, cu actualizări zilnice ale cache-ului"
 
 
 
 
240
 
241
+ #: add-to-any.php:922
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
+ msgstr "Ia în considerare doar pentru situri cu vizitatori care revin frecvent. Cum multi vizitatori vor avea AddToAny salvat deja in cache-ul browser-ului lor, a le oferi AddToAny în mod local, din situl tău, va fi mai lent. Ai grijă să setezi cache/expires headers intr-un viitor îndepărtat pentru fişiere de imagini din directorul tău <code>uploads/addtoany</code>."
244
 
245
+ #: add-to-any.php:929
246
  msgid "Save Changes"
247
+ msgstr "salvează setările"
248
 
249
+ #: add-to-any.php:930
250
+ msgid "Are you sure you want to delete all AddToAny options?"
251
+ msgstr ""
252
+
253
+ #: add-to-any.php:930
254
+ msgid "Reset"
255
+ msgstr ""
256
+
257
+ #: add-to-any.php:935
258
  msgid "Like this plugin?"
259
+ msgstr "îti place acest plugin?"
260
 
261
+ #: add-to-any.php:936
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votează-l pozitiv</a> la WordPress.org."
264
 
265
+ #: add-to-any.php:937
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
+ msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">trimite-l</a> prietenilor tai."
268
 
269
+ #: add-to-any.php:939
270
  msgid "Need support?"
271
  msgstr "Ai nevoie de ajutor?"
272
 
273
+ #: add-to-any.php:940
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
+ msgstr "vezi <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
276
 
277
+ #: add-to-any.php:941
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
+ msgstr "Caută în <a href=\"http://wordpress.org/tags/add-to-any\">forumuri</a>."
280
 
281
+ #: add-to-any.php:1066
282
  msgid "Add/Remove Services"
283
+ msgstr "adaugă/elimină servicii"
284
 
285
+ #: add-to-any.php:1123
286
  msgid "Share/Save"
287
+ msgstr "distribuie/salvează"
288
 
289
+ #: add-to-any.php:1124
290
  msgid "Share/Save Buttons"
291
+ msgstr "butoane 'distribuie/salvează'"
292
+
293
+ #~ msgid ""
294
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
295
+ #~ "the Share/Save button"
296
+ #~ msgstr ""
297
+ #~ "deschide pagina-meniu addtoany.com într-un tab/fereastră nouă, dacă "
298
+ #~ "utilizatorul apasă pe butonul 'distribuie/salvează'"
299
+
300
+ #~ msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
301
+ #~ msgstr ""
302
+ #~ "dacă nu e bifat, ai grijă sa plasezi CSS-ul in stylesheet-ul temei tale "
303
+ #~ "(şablonului tău):"
304
 
305
  #~ msgid ""
306
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
307
  #~ "when displayed"
308
  #~ msgstr ""
309
+ #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
310
+ #~ "when displayed"
 
languages/add-to-any-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Elvis <main@fweb.org.rru>\n"
8
  "Language-Team: \n"
@@ -13,266 +13,299 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr "Отправить другу"
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr "Сохранить"
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr "Подписаться"
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr "В закладки!"
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr "Показать все"
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr "Показать остальное"
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr "Найти сервис(ы)"
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr "Найти сервис и добавить"
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr "Работает на"
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr "Поделиться по E-mail"
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr "Подписаться по E-mail"
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr "Добавить в закладки"
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Нажмите Ctrl+В или &#8984;+D чтобы добавить эту страницу в закладки"
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr "Добавить в Избранное"
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Отправить через E-mail сервис"
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr "E-mail сервисы"
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "Внимание! Плагин не работает с выбранной вами темой. Чтобы исправить это воспользуйтесь <a href=\"theme-editor.php\">редактором тем</a> и введите следующий код <code>&lt;?php wp_footer(); ?&gt;</code> сразу после строки <code>&lt;/body&gt;</code>. Изменения нужно сделать в файле <code>footer.php</code>."
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr "Ошибка при создании папки %s. Проверьте права на родительскую папку (необходимы права на запись)."
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr "В закладки!"
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr "Найстройки сохранены"
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr "Сохранить/Отправить другу "
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr "Настройки"
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr "Используемые сервисы"
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr "Выберите из списка ниже нужные вам сервисы.&nbsp;Чтобы удалить сервис из вашего списка - нажмите на его иконку еще раз.&nbsp;Для того чтобы поменять сервисы местами в Вашем списке, просто нажмите на иконку и перетащите на нужное место."
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr "Внешний вид кнопки"
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr "Адрес изображения"
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr "Только текст"
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr "Расположение"
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части всех записей"
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
146
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей на главной странице"
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей в фидах"
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части страниц"
155
 
156
- #: add-to-any.php:719
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "Если ОТКЛЮЧИТЬ одну или все данные опции, Вы должны добавить код, наобходимый для корректной работы плагина, в <a href=\"theme-editor.php\">Вашу тему оформления</a> (код должен присутствовать на следующих страницах: <code>index.php</code>, <code>single.php</code>, и/или <code>page.php</code>). Код"
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr "Внешний вид меню"
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "Используйте этот инструмент для того, чтобы сделать Ваше меню плагина Сохранить/Отправить другу уникальным в плане внешнего вида! Закончив настройки цветовой схемы, вставте полученный код в поле <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Дополнительные настройки</a>."
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr "Открыть меню стилей для плагина Сохранить/Отправить другу в новом окне"
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr "Открыть редактор внешнего вида (в новом окне)"
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr "Настройки меню"
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "Показывать название заметки или страницы в меню плагина"
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "Показывать меню плагина только если пользователь нажмет на кнопку Сохранить/Отправить другу"
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "Открывать меню addtoany.com в новом окне браузера, если пользователь нажал на кнопку плагина Сохранить/Отправить другу"
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr "Дополнительные настройки"
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr "Вставте в поле ниже полученный код для изменения внешнего вида меню плагина!"
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "В поле ниже вы можете вставить полученный код, который изменит внешний вид меню плагина. "
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr "Если Вы хотите узнать больше про технологии, используемые в плагине, читайте заметку о <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr "<strong>Обратите внимание</strong>: Добавляйте новый код осторожно, Ваш предыдущий вариант кода не будет сохранен!</label>"
211
 
212
- #: add-to-any.php:782
213
  msgid "Advanced Options"
214
  msgstr "Дополнительные настройки"
215
 
216
- #: add-to-any.php:787
217
  msgid "Use CSS stylesheet"
218
  msgstr "Использовать стиль CSS"
219
 
220
- #: add-to-any.php:792
221
  msgid "Cache AddToAny locally with daily cache updates"
222
  msgstr "Использовать опции кеширования для AddToAny "
223
 
224
- #: add-to-any.php:796
225
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
226
- msgstr "Если ОТКЛЮЧИТЬ отображение стандартного стиля CSS плагина, то для корректного отображения Вам необходимо разместить код в файле CSS своей темы. Код:"
227
-
228
- #: add-to-any.php:801
229
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
230
  msgstr "Рекомендуется использовать только для сайтов с постоянной (возвращающейся каждый день) аудиторией. Если пользователи уже сохраняют данные плагина AddToAny в своем браузере, то время отклика сервиса AddToAny увеличивается для них. Используя опцию кеширования, проверьте наличие заголовков кеша для изображений в папке <code>uploads/addtoany</code>."
231
 
232
- #: add-to-any.php:808
233
  msgid "Save Changes"
234
  msgstr "Сохранить все изменения"
235
 
236
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
237
  msgid "Like this plugin?"
238
  msgstr "Понравился плагин?"
239
 
240
- #: add-to-any.php:814
241
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
242
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Оцените плагин</a> на сайте WordPress.org."
243
 
244
- #: add-to-any.php:815
245
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
246
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Расскажите о плагине</a> своим друзьям."
247
 
248
- #: add-to-any.php:817
249
  msgid "Need support?"
250
  msgstr "Нужна помощь?"
251
 
252
- #: add-to-any.php:818
253
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
254
  msgstr "Смотрите <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">ЧАВО</a>."
255
 
256
- #: add-to-any.php:819
257
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
258
  msgstr "Ответы на свои вопросы также ищите на <a href=\"http://wordpress.org/tags/add-to-any\">форумах поддержки</a> (англ.)."
259
 
260
- #: add-to-any.php:926
261
  msgid "Add/Remove Services"
262
  msgstr "Добавить/Удалить сервисы"
263
 
264
- #: add-to-any.php:978
265
  msgid "Share/Save"
266
  msgstr "Сохранить/Отправить другу"
267
 
268
- #: add-to-any.php:979
269
  msgid "Share/Save Buttons"
270
  msgstr "Сохранить/Отправить другу"
271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
  #~ msgid ""
273
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
274
  #~ "when displayed"
275
  #~ msgstr ""
276
  #~ "Отключать различные эффекты (Flash, видео и другие), работающие "
277
  #~ "параллельно с меню плагина"
278
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Elvis <main@fweb.org.rru>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Отправить другу"
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Сохранить"
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "Подписаться"
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "В закладки!"
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Показать все"
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Показать остальное"
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Найти сервис(ы)"
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Найти сервис и добавить"
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Работает на"
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Поделиться по E-mail"
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "Подписаться по E-mail"
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Добавить в закладки"
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Нажмите Ctrl+В или &#8984;+D чтобы добавить эту страницу в закладки"
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Добавить в Избранное"
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Отправить через E-mail сервис"
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "E-mail сервисы"
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr "Внимание! Плагин не работает с выбранной вами темой. Чтобы исправить это воспользуйтесь <a href=\"theme-editor.php\">редактором тем</a> и введите следующий код <code>&lt;?php wp_footer(); ?&gt;</code> сразу после строки <code>&lt;/body&gt;</code>. Изменения нужно сделать в файле <code>footer.php</code>."
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr "Ошибка при создании папки %s. Проверьте права на родительскую папку (необходимы права на запись)."
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "В закладки!"
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Найстройки сохранены"
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Сохранить/Отправить другу "
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Настройки"
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "Используемые сервисы"
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr "Выберите из списка ниже нужные вам сервисы.&nbsp;Чтобы удалить сервис из вашего списка - нажмите на его иконку еще раз.&nbsp;Для того чтобы поменять сервисы местами в Вашем списке, просто нажмите на иконку и перетащите на нужное место."
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Внешний вид кнопки"
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "Адрес изображения"
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Только текст"
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Расположение"
151
 
152
+ #: add-to-any.php:823
153
+ #, fuzzy, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части всех записей"
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
+ msgstr ""
161
+
162
+ #: add-to-any.php:837
163
+ #, fuzzy, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей на главной странице"
166
 
167
+ #: add-to-any.php:845
168
+ #, fuzzy, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей в фидах"
171
 
172
+ #: add-to-any.php:849
173
+ #, fuzzy, php-format
174
+ msgid "Display at the %s of pages"
175
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части страниц"
176
 
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr "Если ОТКЛЮЧИТЬ одну или все данные опции, Вы должны добавить код, наобходимый для корректной работы плагина, в <a href=\"theme-editor.php\">Вашу тему оформления</a> (код должен присутствовать на следующих страницах: <code>index.php</code>, <code>single.php</code>, и/или <code>page.php</code>). Код"
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Внешний вид меню"
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Используйте этот инструмент для того, чтобы сделать Ваше меню плагина Сохранить/Отправить другу уникальным в плане внешнего вида! Закончив настройки цветовой схемы, вставте полученный код в поле <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Дополнительные настройки</a>."
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Открыть меню стилей для плагина Сохранить/Отправить другу в новом окне"
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Открыть редактор внешнего вида (в новом окне)"
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Настройки меню"
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Показывать меню плагина только если пользователь нажмет на кнопку Сохранить/Отправить другу"
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
+ msgstr "Показывать название заметки или страницы в меню плагина"
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Дополнительные настройки"
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Вставте в поле ниже полученный код для изменения внешнего вида меню плагина!"
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "В поле ниже вы можете вставить полученный код, который изменит внешний вид меню плагина. "
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Если Вы хотите узнать больше про технологии, используемые в плагине, читайте заметку о <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Обратите внимание</strong>: Добавляйте новый код осторожно, Ваш предыдущий вариант кода не будет сохранен!</label>"
228
 
229
+ #: add-to-any.php:908
230
  msgid "Advanced Options"
231
  msgstr "Дополнительные настройки"
232
 
233
+ #: add-to-any.php:913
234
  msgid "Use CSS stylesheet"
235
  msgstr "Использовать стиль CSS"
236
 
237
+ #: add-to-any.php:918
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr "Использовать опции кеширования для AddToAny "
240
 
241
+ #: add-to-any.php:922
 
 
 
 
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr "Рекомендуется использовать только для сайтов с постоянной (возвращающейся каждый день) аудиторией. Если пользователи уже сохраняют данные плагина AddToAny в своем браузере, то время отклика сервиса AddToAny увеличивается для них. Используя опцию кеширования, проверьте наличие заголовков кеша для изображений в папке <code>uploads/addtoany</code>."
244
 
245
+ #: add-to-any.php:929
246
  msgid "Save Changes"
247
  msgstr "Сохранить все изменения"
248
 
249
+ #: add-to-any.php:930
250
+ msgid "Are you sure you want to delete all AddToAny options?"
251
+ msgstr ""
252
+
253
+ #: add-to-any.php:930
254
+ msgid "Reset"
255
+ msgstr ""
256
+
257
+ #: add-to-any.php:935
258
  msgid "Like this plugin?"
259
  msgstr "Понравился плагин?"
260
 
261
+ #: add-to-any.php:936
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Оцените плагин</a> на сайте WordPress.org."
264
 
265
+ #: add-to-any.php:937
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Расскажите о плагине</a> своим друзьям."
268
 
269
+ #: add-to-any.php:939
270
  msgid "Need support?"
271
  msgstr "Нужна помощь?"
272
 
273
+ #: add-to-any.php:940
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr "Смотрите <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">ЧАВО</a>."
276
 
277
+ #: add-to-any.php:941
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr "Ответы на свои вопросы также ищите на <a href=\"http://wordpress.org/tags/add-to-any\">форумах поддержки</a> (англ.)."
280
 
281
+ #: add-to-any.php:1066
282
  msgid "Add/Remove Services"
283
  msgstr "Добавить/Удалить сервисы"
284
 
285
+ #: add-to-any.php:1123
286
  msgid "Share/Save"
287
  msgstr "Сохранить/Отправить другу"
288
 
289
+ #: add-to-any.php:1124
290
  msgid "Share/Save Buttons"
291
  msgstr "Сохранить/Отправить другу"
292
 
293
+ #~ msgid ""
294
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
295
+ #~ "the Share/Save button"
296
+ #~ msgstr ""
297
+ #~ "Открывать меню addtoany.com в новом окне браузера, если пользователь "
298
+ #~ "нажал на кнопку плагина Сохранить/Отправить другу"
299
+
300
+ #~ msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
301
+ #~ msgstr ""
302
+ #~ "Если ОТКЛЮЧИТЬ отображение стандартного стиля CSS плагина, то для "
303
+ #~ "корректного отображения Вам необходимо разместить код в файле CSS своей "
304
+ #~ "темы. Код:"
305
+
306
  #~ msgid ""
307
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
308
  #~ "when displayed"
309
  #~ msgstr ""
310
  #~ "Отключать различные эффекты (Flash, видео и другие), работающие "
311
  #~ "параллельно с меню плагина"
 
languages/add-to-any-sq_AL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any ne shqip\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Romeo Shuka | http://www.romeolab.com/ <webmaster@romeolab.com>\n"
@@ -15,267 +15,294 @@ msgstr ""
15
  "X-Poedit-Country: ALBANIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:258
19
  msgid "Share"
20
  msgstr "Shpërndaj"
21
 
22
- #: add-to-any.php:259
23
  msgid "Save"
24
  msgstr "Ruaj"
25
 
26
- #: add-to-any.php:260
27
  msgid "Subscribe"
28
  msgstr "Abonohu"
29
 
30
- #: add-to-any.php:261
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:262
35
  msgid "Bookmark"
36
  msgstr "Bookmark"
37
 
38
- #: add-to-any.php:263
39
  msgid "Show all"
40
  msgstr "Trego të gjitha"
41
 
42
- #: add-to-any.php:264
43
  msgid "Show less"
44
  msgstr "Trego më pak"
45
 
46
- #: add-to-any.php:265
47
  msgid "Find service(s)"
48
  msgstr "Gjej shërbimin"
49
 
50
- #: add-to-any.php:266
51
  msgid "Instantly find any service to add to"
52
  msgstr "Gjej menjëherë një shërbim për të shtuar"
53
 
54
- #: add-to-any.php:267
55
  msgid "Powered by"
56
  msgstr "Fuqizuar nga"
57
 
58
- #: add-to-any.php:268
59
  msgid "Share via e-mail"
60
  msgstr "Përhap me e-mail"
61
 
62
- #: add-to-any.php:269
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abonohu me email"
65
 
66
- #: add-to-any.php:270
67
  msgid "Bookmark in your browser"
68
  msgstr "Shtoje në bookmark të shfletuesit tuaj"
69
 
70
- #: add-to-any.php:271
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Shtyp Ctrl+D ose Cmd+D për të shktuar këtë faqe në bookmarket tuaja"
73
 
74
- #: add-to-any.php:272
75
  msgid "Add to your favorites"
76
  msgstr "Shtoje tek të preferuarat"
77
 
78
- #: add-to-any.php:273
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Dërgoja një ardrese emaili ose klienti të postës elektronike"
81
 
82
- #: add-to-any.php:274
83
  msgid "E-mail program"
84
  msgstr "Klienti i postës elektronike"
85
 
86
- #: add-to-any.php:299
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "Template juaj duhet azhornuar. Për të bërë ndryshimet e nevojshme, përdor editorini <a href=\"theme-editor.php\">e template</a> për të shtuar <code>&lt;?php wp_footer(); ?&gt;</code> menjëherë mbas mbylljes së tagut <code>&lt;/body&gt;</code> që ndodhet në dokumentin <code>footer.php</code>."
89
 
90
- #: add-to-any.php:490
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
- #: add-to-any.php:566
96
- #: add-to-any.php:639
97
- #: add-to-any.php:643
98
- #: add-to-any.php:647
99
- #: add-to-any.php:651
100
- #: add-to-any.php:683
101
  msgid "Share/Bookmark"
102
  msgstr "Bookmark"
103
 
104
- #: add-to-any.php:580
105
  msgid "Settings saved."
106
  msgstr "Opsionet u ruajtën."
107
 
108
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "AddToAny: Share/Save "
110
  msgstr "AddToAny: Shpërnda/Ruaj"
111
 
112
- #: add-to-any.php:593
113
- #: add-to-any.php:978
114
- #: add-to-any.php:1002
115
  msgid "Settings"
116
  msgstr "Opsionet"
117
 
118
- #: add-to-any.php:602
119
  msgid "Standalone Services"
120
  msgstr "Shërbime të pavarur"
121
 
122
- #: add-to-any.php:607
123
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
124
  msgstr "Zgjidh këtu poshtë shërbimet që të pëlqejnë. &nbsp;Kliko tek një nga shërbimet aktive për ta hequr. &nbsp;Rëndit shërbimet me drag and drop."
125
 
126
- #: add-to-any.php:634
127
  msgid "Button"
128
  msgstr "Buton"
129
 
130
- #: add-to-any.php:673
131
  msgid "Image URL"
132
  msgstr "URL e imazhit"
133
 
134
- #: add-to-any.php:680
135
  msgid "Text only"
136
  msgstr "Vetëm tekst"
137
 
138
- #: add-to-any.php:688
139
  msgid "Placement"
140
  msgstr "Vendndodhja"
141
 
142
- #: add-to-any.php:697
143
- msgid "Display Share/Save button at the bottom of posts"
 
144
  msgstr "Trego butonin Share/Save në fund të artikujve"
145
 
146
- #: add-to-any.php:704
147
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
148
  msgstr "Trego butonin Share/Save në fund të artikujve në faqen kryesore"
149
 
150
- #: add-to-any.php:711
151
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
152
  msgstr "Trego butonin Share/Save në fund të artikujve feed"
153
 
154
- #: add-to-any.php:715
155
- msgid "Display Share/Save button at the bottom of pages"
 
156
  msgstr "Trego butonin Share/Save në fund të faqeve"
157
 
158
- #: add-to-any.php:719
159
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
160
  msgstr "Nëse nuk është e selektuar, sigurohu që të vendosësh kodin në <a href=\"theme-editor.php\">faqen e templates tënde</a> (në <code>index.php</code>, <code>single.php</code>, edhe/ose <code>page.php</code>)"
161
 
162
- #: add-to-any.php:728
163
  msgid "Menu Style"
164
  msgstr "Stili i menusë"
165
 
166
- #: add-to-any.php:730
167
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
168
  msgstr "Duke përdorur Menunë Styler të AddToAny mund të personalizosh ngjyrat e menusë Share/Save! Mbasi të keni bër ndryshimet e duhura, ngjit kodin që gjëndet në <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opsionet shtesë</a> këtu poshtë."
169
 
170
- #: add-to-any.php:732
171
  msgid "Open the AddToAny Menu Styler in a new window"
172
  msgstr "Hape në një faqe të re për të personalizuar menunë e AddToAny"
173
 
174
- #: add-to-any.php:734
175
  msgid "Open Menu Styler"
176
  msgstr "Stili menu"
177
 
178
- #: add-to-any.php:739
179
  msgid "Menu Options"
180
  msgstr "Opsionet e menusë"
181
 
182
- #: add-to-any.php:744
183
- msgid "Show the title of the post (or page) within the menu"
184
- msgstr "Trego në menu titullin e artikullit (ose të faqes)"
185
-
186
- #: add-to-any.php:751
187
  msgid "Only show the menu when the user clicks the Share/Save button"
188
  msgstr "Trego menunë vetëm kur një anëtar klikon mbi butonin Share/Save"
189
 
190
- #: add-to-any.php:757
191
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
192
- msgstr "Hapnjë skedë apo dritare re faqen menu addtoany.com kur një vizitor klikon mbi butonin Share/Save"
193
 
194
- #: add-to-any.php:762
195
  msgid "Additional Options"
196
  msgstr "Opsione shtesë"
197
 
198
- #: add-to-any.php:766
199
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
200
  msgstr "Ngjit në kutinë poshtë kodin tuaj të personalizuar të menusë! "
201
 
202
- #: add-to-any.php:770
203
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
204
  msgstr "Këtu poshtë është e mundur ndryshimi i variableve të JavaScript që përdor menuja Share/Save."
205
 
206
- #: add-to-any.php:771
207
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
208
  msgstr "Përdoruesit me njohuri më të thella mund të eksplorojnë <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> të AddToAny."
209
 
210
- #: add-to-any.php:777
211
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
212
  msgstr "<strong>Shënim</strong>: nëse ti vendos kod të ri, ki kujdes mos të rishkruash ndonjë kod të vjetër.</label>"
213
 
214
- #: add-to-any.php:782
215
  #, fuzzy
216
  msgid "Advanced Options"
217
  msgstr "Opsione shtesë"
218
 
219
- #: add-to-any.php:787
220
  msgid "Use CSS stylesheet"
221
  msgstr ""
222
 
223
- #: add-to-any.php:792
224
  msgid "Cache AddToAny locally with daily cache updates"
225
  msgstr ""
226
 
227
- #: add-to-any.php:796
228
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
229
- msgstr ""
230
-
231
- #: add-to-any.php:801
232
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
233
  msgstr ""
234
 
235
- #: add-to-any.php:808
236
  msgid "Save Changes"
237
  msgstr "Ruaj ndryshimet"
238
 
239
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
240
  msgid "Like this plugin?"
241
  msgstr "Të pëlqeu ky plugin?"
242
 
243
- #: add-to-any.php:814
244
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
245
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votoje</a> në WordPress.org."
246
 
247
- #: add-to-any.php:815
248
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
249
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Shpërndaja</a> miqve të tu.."
250
 
251
- #: add-to-any.php:817
252
  msgid "Need support?"
253
  msgstr "Të duhet ndihmë??"
254
 
255
- #: add-to-any.php:818
256
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
257
  msgstr "Shiko faqen dedikuar <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
258
 
259
- #: add-to-any.php:819
260
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
261
  msgstr "Bëj një kërkim në <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
262
 
263
- #: add-to-any.php:926
264
  msgid "Add/Remove Services"
265
  msgstr "Shtoi/Hiq shërbimet"
266
 
267
- #: add-to-any.php:978
268
  msgid "Share/Save"
269
  msgstr "Shpërnda/Ruaj"
270
 
271
- #: add-to-any.php:979
272
  msgid "Share/Save Buttons"
273
  msgstr "Butoni Shpërnda/Ruaj"
274
 
 
 
 
 
 
 
 
275
  #~ msgid ""
276
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
277
  #~ "when displayed"
278
  #~ msgstr ""
279
  #~ "Fshih objektet e inkorporuar (Flash, video, etj.) të cilët mund të "
280
  #~ "ndikojnë në shikimin e rregullt të menusë"
281
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any ne shqip\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Romeo Shuka | http://www.romeolab.com/ <webmaster@romeolab.com>\n"
15
  "X-Poedit-Country: ALBANIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Shpërndaj"
21
 
22
+ #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Ruaj"
25
 
26
+ #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Abonohu"
29
 
30
+ #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Bookmark"
37
 
38
+ #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "Trego të gjitha"
41
 
42
+ #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "Trego më pak"
45
 
46
+ #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Gjej shërbimin"
49
 
50
+ #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Gjej menjëherë një shërbim për të shtuar"
53
 
54
+ #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Fuqizuar nga"
57
 
58
+ #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Përhap me e-mail"
61
 
62
+ #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abonohu me email"
65
 
66
+ #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Shtoje në bookmark të shfletuesit tuaj"
69
 
70
+ #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Shtyp Ctrl+D ose Cmd+D për të shktuar këtë faqe në bookmarket tuaja"
73
 
74
+ #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Shtoje tek të preferuarat"
77
 
78
+ #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Dërgoja një ardrese emaili ose klienti të postës elektronike"
81
 
82
+ #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Klienti i postës elektronike"
85
 
86
+ #: add-to-any.php:354
87
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
88
  msgstr "Template juaj duhet azhornuar. Për të bërë ndryshimet e nevojshme, përdor editorini <a href=\"theme-editor.php\">e template</a> për të shtuar <code>&lt;?php wp_footer(); ?&gt;</code> menjëherë mbas mbylljes së tagut <code>&lt;/body&gt;</code> që ndodhet në dokumentin <code>footer.php</code>."
89
 
90
+ #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
+ #: add-to-any.php:645
96
+ #: add-to-any.php:769
97
+ #: add-to-any.php:773
98
+ #: add-to-any.php:777
99
+ #: add-to-any.php:781
100
+ #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "Bookmark"
103
 
104
+ #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "Opsionet u ruajtën."
107
 
108
+ #: add-to-any.php:679
109
+ msgid "bottom"
110
+ msgstr ""
111
+
112
+ #: add-to-any.php:683
113
+ msgid "top"
114
+ msgstr ""
115
+
116
+ #: add-to-any.php:687
117
+ msgid "top &amp; bottom"
118
+ msgstr ""
119
+
120
+ #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny: Shpërnda/Ruaj"
123
 
124
+ #: add-to-any.php:718
125
+ #: add-to-any.php:1123
126
+ #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "Opsionet"
129
 
130
+ #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "Shërbime të pavarur"
133
 
134
+ #: add-to-any.php:732
135
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
136
  msgstr "Zgjidh këtu poshtë shërbimet që të pëlqejnë. &nbsp;Kliko tek një nga shërbimet aktive për ta hequr. &nbsp;Rëndit shërbimet me drag and drop."
137
 
138
+ #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "Buton"
141
 
142
+ #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "URL e imazhit"
145
 
146
+ #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "Vetëm tekst"
149
 
150
+ #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "Vendndodhja"
153
 
154
+ #: add-to-any.php:823
155
+ #, fuzzy, php-format
156
+ msgid "Display at the %s of posts"
157
  msgstr "Trego butonin Share/Save në fund të artikujve"
158
 
159
+ #: add-to-any.php:830
160
+ #, php-format
161
+ msgid "Display at the %s of post excerpts"
162
+ msgstr ""
163
+
164
+ #: add-to-any.php:837
165
+ #, fuzzy, php-format
166
+ msgid "Display at the %s of posts on the front page"
167
  msgstr "Trego butonin Share/Save në fund të artikujve në faqen kryesore"
168
 
169
+ #: add-to-any.php:845
170
+ #, fuzzy, php-format
171
+ msgid "Display at the %s of posts in the feed"
172
  msgstr "Trego butonin Share/Save në fund të artikujve feed"
173
 
174
+ #: add-to-any.php:849
175
+ #, fuzzy, php-format
176
+ msgid "Display at the %s of pages"
177
  msgstr "Trego butonin Share/Save në fund të faqeve"
178
 
179
+ #: add-to-any.php:853
180
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
181
  msgstr "Nëse nuk është e selektuar, sigurohu që të vendosësh kodin në <a href=\"theme-editor.php\">faqen e templates tënde</a> (në <code>index.php</code>, <code>single.php</code>, edhe/ose <code>page.php</code>)"
182
 
183
+ #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "Stili i menusë"
186
 
187
+ #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Duke përdorur Menunë Styler të AddToAny mund të personalizosh ngjyrat e menusë Share/Save! Mbasi të keni bër ndryshimet e duhura, ngjit kodin që gjëndet në <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opsionet shtesë</a> këtu poshtë."
190
 
191
+ #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Hape në një faqe të re për të personalizuar menunë e AddToAny"
194
 
195
+ #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "Stili menu"
198
 
199
+ #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "Opsionet e menusë"
202
 
203
+ #: add-to-any.php:878
 
 
 
 
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "Trego menunë vetëm kur një anëtar klikon mbi butonin Share/Save"
206
 
207
+ #: add-to-any.php:883
208
+ msgid "Show the title of the post (or page) within the menu"
209
+ msgstr "Tregomenu titullin e artikullit (osefaqes)"
210
 
211
+ #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "Opsione shtesë"
214
 
215
+ #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Ngjit në kutinë poshtë kodin tuaj të personalizuar të menusë! "
218
 
219
+ #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Këtu poshtë është e mundur ndryshimi i variableve të JavaScript që përdor menuja Share/Save."
222
 
223
+ #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Përdoruesit me njohuri më të thella mund të eksplorojnë <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> të AddToAny."
226
 
227
+ #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Shënim</strong>: nëse ti vendos kod të ri, ki kujdes mos të rishkruash ndonjë kod të vjetër.</label>"
230
 
231
+ #: add-to-any.php:908
232
  #, fuzzy
233
  msgid "Advanced Options"
234
  msgstr "Opsione shtesë"
235
 
236
+ #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr ""
239
 
240
+ #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr ""
243
 
244
+ #: add-to-any.php:922
 
 
 
 
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr ""
247
 
248
+ #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Ruaj ndryshimet"
251
 
252
+ #: add-to-any.php:930
253
+ msgid "Are you sure you want to delete all AddToAny options?"
254
+ msgstr ""
255
+
256
+ #: add-to-any.php:930
257
+ msgid "Reset"
258
+ msgstr ""
259
+
260
+ #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Të pëlqeu ky plugin?"
263
 
264
+ #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votoje</a> në WordPress.org."
267
 
268
+ #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Shpërndaja</a> miqve të tu.."
271
 
272
+ #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Të duhet ndihmë??"
275
 
276
+ #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Shiko faqen dedikuar <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
279
 
280
+ #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Bëj një kërkim në <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
283
 
284
+ #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Shtoi/Hiq shërbimet"
287
 
288
+ #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Shpërnda/Ruaj"
291
 
292
+ #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Butoni Shpërnda/Ruaj"
295
 
296
+ #~ msgid ""
297
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
298
+ #~ "the Share/Save button"
299
+ #~ msgstr ""
300
+ #~ "Hap në një skedë apo dritare të re faqen menu të addtoany.com kur një "
301
+ #~ "vizitor klikon mbi butonin Share/Save"
302
+
303
  #~ msgid ""
304
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
305
  #~ "when displayed"
306
  #~ msgstr ""
307
  #~ "Fshih objektet e inkorporuar (Flash, video, etj.) të cilët mund të "
308
  #~ "ndikojnë në shikimin e rregullt të menusë"
 
languages/add-to-any-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -16,263 +16,290 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:258
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
- #: add-to-any.php:259
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
- #: add-to-any.php:260
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
- #: add-to-any.php:261
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
- #: add-to-any.php:262
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
- #: add-to-any.php:263
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
- #: add-to-any.php:264
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
- #: add-to-any.php:265
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
- #: add-to-any.php:266
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
- #: add-to-any.php:267
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
- #: add-to-any.php:268
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
- #: add-to-any.php:269
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
- #: add-to-any.php:270
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
- #: add-to-any.php:271
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
74
 
75
- #: add-to-any.php:272
76
  msgid "Add to your favorites"
77
  msgstr "添加至收藏夹"
78
 
79
- #: add-to-any.php:273
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "从任何电子邮件地址或电子邮件程序发送"
82
 
83
- #: add-to-any.php:274
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
- #: add-to-any.php:299
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr ""
90
 
91
- #: add-to-any.php:490
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr ""
95
 
96
- #: add-to-any.php:566
97
- #: add-to-any.php:639
98
- #: add-to-any.php:643
99
- #: add-to-any.php:647
100
- #: add-to-any.php:651
101
- #: add-to-any.php:683
102
  msgid "Share/Bookmark"
103
  msgstr "书签"
104
 
105
- #: add-to-any.php:580
106
  msgid "Settings saved."
107
  msgstr "设置已保存"
108
 
109
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
110
  msgid "AddToAny: Share/Save "
111
  msgstr "AddToAny: 分享/收藏"
112
 
113
- #: add-to-any.php:593
114
- #: add-to-any.php:978
115
- #: add-to-any.php:1002
116
  msgid "Settings"
117
  msgstr "设置"
118
 
119
- #: add-to-any.php:602
120
  msgid "Standalone Services"
121
  msgstr ""
122
 
123
- #: add-to-any.php:607
124
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
125
  msgstr ""
126
 
127
- #: add-to-any.php:634
128
  msgid "Button"
129
  msgstr "按钮"
130
 
131
- #: add-to-any.php:673
132
  msgid "Image URL"
133
  msgstr "图片 URL"
134
 
135
- #: add-to-any.php:680
136
  msgid "Text only"
137
  msgstr "仅用文字"
138
 
139
- #: add-to-any.php:688
140
  msgid "Placement"
141
  msgstr "按钮位置"
142
 
143
- #: add-to-any.php:697
144
- msgid "Display Share/Save button at the bottom of posts"
 
145
  msgstr "在文章底部显示 分享/收藏 按钮"
146
 
147
- #: add-to-any.php:704
148
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
 
 
 
 
 
149
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
150
 
151
- #: add-to-any.php:711
152
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
153
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
154
 
155
- #: add-to-any.php:715
156
- msgid "Display Share/Save button at the bottom of pages"
 
157
  msgstr "在页面底部显示 分享/收藏 按钮"
158
 
159
- #: add-to-any.php:719
160
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
161
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
162
 
163
- #: add-to-any.php:728
164
  msgid "Menu Style"
165
  msgstr "菜单风格"
166
 
167
- #: add-to-any.php:730
168
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
169
  msgstr "使用 AddToAny 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
170
 
171
- #: add-to-any.php:732
172
  msgid "Open the AddToAny Menu Styler in a new window"
173
  msgstr "在新窗口中打开 AddToAny 菜单风格设置器"
174
 
175
- #: add-to-any.php:734
176
  msgid "Open Menu Styler"
177
  msgstr "打开菜单风格设置器"
178
 
179
- #: add-to-any.php:739
180
  msgid "Menu Options"
181
  msgstr "菜单选项"
182
 
183
- #: add-to-any.php:744
184
- msgid "Show the title of the post (or page) within the menu"
185
- msgstr "菜单中显示文章(或页面)的标题"
186
-
187
- #: add-to-any.php:751
188
  msgid "Only show the menu when the user clicks the Share/Save button"
189
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
190
 
191
- #: add-to-any.php:757
192
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
193
- msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
194
 
195
- #: add-to-any.php:762
196
  msgid "Additional Options"
197
  msgstr "附加选项"
198
 
199
- #: add-to-any.php:766
200
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
201
  msgstr "粘贴 AddToAny 菜单风格设置器生成的代码于下方框内!"
202
 
203
- #: add-to-any.php:770
204
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
205
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
206
 
207
- #: add-to-any.php:771
208
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
209
  msgstr "高级用户可能希望尝试 AddToAny 的 <a href=\"http://www.addtoany.com/buttons/customize/\">JavaScript API</a> 所生成的代码。"
210
 
211
- #: add-to-any.php:777
212
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
213
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
214
 
215
- #: add-to-any.php:782
216
  #, fuzzy
217
  msgid "Advanced Options"
218
  msgstr "附加选项"
219
 
220
- #: add-to-any.php:787
221
  msgid "Use CSS stylesheet"
222
  msgstr ""
223
 
224
- #: add-to-any.php:792
225
  msgid "Cache AddToAny locally with daily cache updates"
226
  msgstr ""
227
 
228
- #: add-to-any.php:796
229
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
230
- msgstr ""
231
-
232
- #: add-to-any.php:801
233
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
234
  msgstr ""
235
 
236
- #: add-to-any.php:808
237
  msgid "Save Changes"
238
  msgstr "保存更改"
239
 
240
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
241
  msgid "Like this plugin?"
242
  msgstr ""
243
 
244
- #: add-to-any.php:814
245
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
246
  msgstr ""
247
 
248
- #: add-to-any.php:815
249
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
250
  msgstr ""
251
 
252
- #: add-to-any.php:817
253
  msgid "Need support?"
254
  msgstr ""
255
 
256
- #: add-to-any.php:818
257
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
258
  msgstr ""
259
 
260
- #: add-to-any.php:819
261
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
262
  msgstr ""
263
 
264
- #: add-to-any.php:926
265
  msgid "Add/Remove Services"
266
  msgstr ""
267
 
268
- #: add-to-any.php:978
269
  msgid "Share/Save"
270
  msgstr "分享/收藏"
271
 
272
- #: add-to-any.php:979
273
  msgid "Share/Save Buttons"
274
  msgstr "分享/收藏 按钮"
275
 
 
 
 
 
 
 
276
  #~ msgid ""
277
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
278
  #~ "when displayed"
@@ -281,4 +308,3 @@ msgstr "分享/收藏 按钮"
281
  #, fuzzy
282
  #~ msgid "Services"
283
  #~ msgstr "查找服务"
284
-
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:313
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
+ #: add-to-any.php:314
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
+ #: add-to-any.php:315
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
+ #: add-to-any.php:316
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
+ #: add-to-any.php:317
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
+ #: add-to-any.php:318
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
+ #: add-to-any.php:319
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
+ #: add-to-any.php:320
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
+ #: add-to-any.php:321
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
+ #: add-to-any.php:322
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
+ #: add-to-any.php:323
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
+ #: add-to-any.php:324
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
+ #: add-to-any.php:325
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
+ #: add-to-any.php:326
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
74
 
75
+ #: add-to-any.php:327
76
  msgid "Add to your favorites"
77
  msgstr "添加至收藏夹"
78
 
79
+ #: add-to-any.php:328
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "从任何电子邮件地址或电子邮件程序发送"
82
 
83
+ #: add-to-any.php:329
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
+ #: add-to-any.php:354
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr ""
90
 
91
+ #: add-to-any.php:511
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr ""
95
 
96
+ #: add-to-any.php:645
97
+ #: add-to-any.php:769
98
+ #: add-to-any.php:773
99
+ #: add-to-any.php:777
100
+ #: add-to-any.php:781
101
+ #: add-to-any.php:813
102
  msgid "Share/Bookmark"
103
  msgstr "书签"
104
 
105
+ #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "设置已保存"
108
 
109
+ #: add-to-any.php:679
110
+ msgid "bottom"
111
+ msgstr ""
112
+
113
+ #: add-to-any.php:683
114
+ msgid "top"
115
+ msgstr ""
116
+
117
+ #: add-to-any.php:687
118
+ msgid "top &amp; bottom"
119
+ msgstr ""
120
+
121
+ #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: 分享/收藏"
124
 
125
+ #: add-to-any.php:718
126
+ #: add-to-any.php:1123
127
+ #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "设置"
130
 
131
+ #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr ""
134
 
135
+ #: add-to-any.php:732
136
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
137
  msgstr ""
138
 
139
+ #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "按钮"
142
 
143
+ #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "图片 URL"
146
 
147
+ #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "仅用文字"
150
 
151
+ #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "按钮位置"
154
 
155
+ #: add-to-any.php:823
156
+ #, fuzzy, php-format
157
+ msgid "Display at the %s of posts"
158
  msgstr "在文章底部显示 分享/收藏 按钮"
159
 
160
+ #: add-to-any.php:830
161
+ #, php-format
162
+ msgid "Display at the %s of post excerpts"
163
+ msgstr ""
164
+
165
+ #: add-to-any.php:837
166
+ #, fuzzy, php-format
167
+ msgid "Display at the %s of posts on the front page"
168
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
169
 
170
+ #: add-to-any.php:845
171
+ #, fuzzy, php-format
172
+ msgid "Display at the %s of posts in the feed"
173
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
174
 
175
+ #: add-to-any.php:849
176
+ #, fuzzy, php-format
177
+ msgid "Display at the %s of pages"
178
  msgstr "在页面底部显示 分享/收藏 按钮"
179
 
180
+ #: add-to-any.php:853
181
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
182
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
183
 
184
+ #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "菜单风格"
187
 
188
+ #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "使用 AddToAny 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
191
 
192
+ #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "在新窗口中打开 AddToAny 菜单风格设置器"
195
 
196
+ #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "打开菜单风格设置器"
199
 
200
+ #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "菜单选项"
203
 
204
+ #: add-to-any.php:878
 
 
 
 
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
207
 
208
+ #: add-to-any.php:883
209
+ msgid "Show the title of the post (or page) within the menu"
210
+ msgstr "菜单中显示文章(或页面)的标题"
211
 
212
+ #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "附加选项"
215
 
216
+ #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "粘贴 AddToAny 菜单风格设置器生成的代码于下方框内!"
219
 
220
+ #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
223
 
224
+ #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "高级用户可能希望尝试 AddToAny 的 <a href=\"http://www.addtoany.com/buttons/customize/\">JavaScript API</a> 所生成的代码。"
227
 
228
+ #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
231
 
232
+ #: add-to-any.php:908
233
  #, fuzzy
234
  msgid "Advanced Options"
235
  msgstr "附加选项"
236
 
237
+ #: add-to-any.php:913
238
  msgid "Use CSS stylesheet"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:918
242
  msgid "Cache AddToAny locally with daily cache updates"
243
  msgstr ""
244
 
245
+ #: add-to-any.php:922
 
 
 
 
246
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
247
  msgstr ""
248
 
249
+ #: add-to-any.php:929
250
  msgid "Save Changes"
251
  msgstr "保存更改"
252
 
253
+ #: add-to-any.php:930
254
+ msgid "Are you sure you want to delete all AddToAny options?"
255
+ msgstr ""
256
+
257
+ #: add-to-any.php:930
258
+ msgid "Reset"
259
+ msgstr ""
260
+
261
+ #: add-to-any.php:935
262
  msgid "Like this plugin?"
263
  msgstr ""
264
 
265
+ #: add-to-any.php:936
266
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
267
  msgstr ""
268
 
269
+ #: add-to-any.php:937
270
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
271
  msgstr ""
272
 
273
+ #: add-to-any.php:939
274
  msgid "Need support?"
275
  msgstr ""
276
 
277
+ #: add-to-any.php:940
278
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
  msgstr ""
280
 
281
+ #: add-to-any.php:941
282
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
  msgstr ""
284
 
285
+ #: add-to-any.php:1066
286
  msgid "Add/Remove Services"
287
  msgstr ""
288
 
289
+ #: add-to-any.php:1123
290
  msgid "Share/Save"
291
  msgstr "分享/收藏"
292
 
293
+ #: add-to-any.php:1124
294
  msgid "Share/Save Buttons"
295
  msgstr "分享/收藏 按钮"
296
 
297
+ #~ msgid ""
298
+ #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
299
+ #~ "the Share/Save button"
300
+ #~ msgstr ""
301
+ #~ "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
302
+
303
  #~ msgid ""
304
  #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
305
  #~ "when displayed"
308
  #, fuzzy
309
  #~ msgid "Services"
310
  #~ msgstr "查找服务"
 
languages/add-to-any.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-20 01:02-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,259 +13,280 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:258
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:259
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:260
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:261
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:262
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:263
37
  msgid "Show all"
38
  msgstr ""
39
 
40
- #: add-to-any.php:264
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:265
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
- #: add-to-any.php:266
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:267
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:268
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:269
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:270
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:271
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
- #: add-to-any.php:272
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
- #: add-to-any.php:273
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
- #: add-to-any.php:274
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
- #: add-to-any.php:299
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr ""
87
 
88
- #: add-to-any.php:490
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
  msgid "Share/Bookmark"
100
  msgstr ""
101
 
102
- #: add-to-any.php:580
103
  msgid "Settings saved."
104
  msgstr ""
105
 
106
- #: add-to-any.php:593
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "AddToAny: Share/Save "
108
  msgstr ""
109
 
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
  msgid "Settings"
114
  msgstr ""
115
 
116
- #: add-to-any.php:602
117
  msgid "Standalone Services"
118
  msgstr ""
119
 
120
- #: add-to-any.php:607
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr ""
123
 
124
- #: add-to-any.php:634
125
  msgid "Button"
126
  msgstr ""
127
 
128
- #: add-to-any.php:673
129
  msgid "Image URL"
130
  msgstr ""
131
 
132
- #: add-to-any.php:680
133
  msgid "Text only"
134
  msgstr ""
135
 
136
- #: add-to-any.php:688
137
  msgid "Placement"
138
  msgstr ""
139
 
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
 
142
  msgstr ""
143
 
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
 
146
  msgstr ""
147
 
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
 
150
  msgstr ""
151
 
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
 
154
  msgstr ""
155
 
156
- #: add-to-any.php:719
 
 
 
 
 
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr ""
159
 
160
- #: add-to-any.php:728
161
  msgid "Menu Style"
162
  msgstr ""
163
 
164
- #: add-to-any.php:730
165
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr ""
167
 
168
- #: add-to-any.php:732
169
  msgid "Open the AddToAny Menu Styler in a new window"
170
  msgstr ""
171
 
172
- #: add-to-any.php:734
173
  msgid "Open Menu Styler"
174
  msgstr ""
175
 
176
- #: add-to-any.php:739
177
  msgid "Menu Options"
178
  msgstr ""
179
 
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr ""
183
-
184
- #: add-to-any.php:751
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr ""
187
 
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
  msgstr ""
191
 
192
- #: add-to-any.php:762
193
  msgid "Additional Options"
194
  msgstr ""
195
 
196
- #: add-to-any.php:766
197
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
  msgstr ""
199
 
200
- #: add-to-any.php:770
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr ""
203
 
204
- #: add-to-any.php:771
205
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
  msgstr ""
207
 
208
- #: add-to-any.php:777
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr ""
211
 
212
- #: add-to-any.php:782
213
  msgid "Advanced Options"
214
  msgstr ""
215
 
216
- #: add-to-any.php:787
217
  msgid "Use CSS stylesheet"
218
  msgstr ""
219
 
220
- #: add-to-any.php:792
221
  msgid "Cache AddToAny locally with daily cache updates"
222
  msgstr ""
223
 
224
- #: add-to-any.php:796
225
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
226
- msgstr ""
227
-
228
- #: add-to-any.php:801
229
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
230
  msgstr ""
231
 
232
- #: add-to-any.php:808
233
  msgid "Save Changes"
234
  msgstr ""
235
 
236
- #: add-to-any.php:813
 
 
 
 
 
 
 
 
237
  msgid "Like this plugin?"
238
  msgstr ""
239
 
240
- #: add-to-any.php:814
241
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
242
  msgstr ""
243
 
244
- #: add-to-any.php:815
245
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
246
  msgstr ""
247
 
248
- #: add-to-any.php:817
249
  msgid "Need support?"
250
  msgstr ""
251
 
252
- #: add-to-any.php:818
253
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
254
  msgstr ""
255
 
256
- #: add-to-any.php:819
257
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
258
  msgstr ""
259
 
260
- #: add-to-any.php:926
261
  msgid "Add/Remove Services"
262
  msgstr ""
263
 
264
- #: add-to-any.php:978
265
  msgid "Share/Save"
266
  msgstr ""
267
 
268
- #: add-to-any.php:979
269
  msgid "Share/Save Buttons"
270
  msgstr ""
271
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr ""
39
 
40
+ #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
+ #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
+ #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
+ #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
+ #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
+ #: add-to-any.php:354
85
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
  msgstr ""
87
 
88
+ #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:645
94
+ #: add-to-any.php:769
95
+ #: add-to-any.php:773
96
+ #: add-to-any.php:777
97
+ #: add-to-any.php:781
98
+ #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr ""
101
 
102
+ #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr ""
105
 
106
+ #: add-to-any.php:679
107
+ msgid "bottom"
108
+ msgstr ""
109
+
110
+ #: add-to-any.php:683
111
+ msgid "top"
112
+ msgstr ""
113
+
114
+ #: add-to-any.php:687
115
+ msgid "top &amp; bottom"
116
+ msgstr ""
117
+
118
+ #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr ""
121
 
122
+ #: add-to-any.php:718
123
+ #: add-to-any.php:1123
124
+ #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr ""
127
 
128
+ #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr ""
131
 
132
+ #: add-to-any.php:732
133
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
  msgstr ""
135
 
136
+ #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr ""
139
 
140
+ #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr ""
143
 
144
+ #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr ""
147
 
148
+ #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr ""
151
 
152
+ #: add-to-any.php:823
153
+ #, php-format
154
+ msgid "Display at the %s of posts"
155
  msgstr ""
156
 
157
+ #: add-to-any.php:830
158
+ #, php-format
159
+ msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:837
163
+ #, php-format
164
+ msgid "Display at the %s of posts on the front page"
165
  msgstr ""
166
 
167
+ #: add-to-any.php:845
168
+ #, php-format
169
+ msgid "Display at the %s of posts in the feed"
170
  msgstr ""
171
 
172
+ #: add-to-any.php:849
173
+ #, php-format
174
+ msgid "Display at the %s of pages"
175
+ msgstr ""
176
+
177
+ #: add-to-any.php:853
178
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
  msgstr ""
180
 
181
+ #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr ""
184
 
185
+ #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr ""
188
 
189
+ #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr ""
192
 
193
+ #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr ""
196
 
197
+ #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr ""
200
 
201
+ #: add-to-any.php:878
 
 
 
 
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr ""
204
 
205
+ #: add-to-any.php:883
206
+ msgid "Show the title of the post (or page) within the menu"
207
  msgstr ""
208
 
209
+ #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr ""
212
 
213
+ #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr ""
216
 
217
+ #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr ""
220
 
221
+ #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr ""
224
 
225
+ #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr ""
228
 
229
+ #: add-to-any.php:908
230
  msgid "Advanced Options"
231
  msgstr ""
232
 
233
+ #: add-to-any.php:913
234
  msgid "Use CSS stylesheet"
235
  msgstr ""
236
 
237
+ #: add-to-any.php:918
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:922
 
 
 
 
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr ""
244
 
245
+ #: add-to-any.php:929
246
  msgid "Save Changes"
247
  msgstr ""
248
 
249
+ #: add-to-any.php:930
250
+ msgid "Are you sure you want to delete all AddToAny options?"
251
+ msgstr ""
252
+
253
+ #: add-to-any.php:930
254
+ msgid "Reset"
255
+ msgstr ""
256
+
257
+ #: add-to-any.php:935
258
  msgid "Like this plugin?"
259
  msgstr ""
260
 
261
+ #: add-to-any.php:936
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr ""
264
 
265
+ #: add-to-any.php:937
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  msgstr ""
268
 
269
+ #: add-to-any.php:939
270
  msgid "Need support?"
271
  msgstr ""
272
 
273
+ #: add-to-any.php:940
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr ""
276
 
277
+ #: add-to-any.php:941
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr ""
280
 
281
+ #: add-to-any.php:1066
282
  msgid "Add/Remove Services"
283
  msgstr ""
284
 
285
+ #: add-to-any.php:1123
286
  msgid "Share/Save"
287
  msgstr ""
288
 
289
+ #: add-to-any.php:1124
290
  msgid "Share/Save Buttons"
291
  msgstr ""
292