Changeset 427428
- Timestamp:
- 08/23/2011 04:31:15 AM (15 years ago)
- Location:
- facebook-likes-you/trunk
- Files:
-
- 2 added
- 22 edited
-
facebook-likes-you.php (modified) (22 diffs)
-
js (added)
-
js/fbObjectValidationV4.js (added)
-
languages/fb_like_trans_domain-cs_CZ.mo (modified) (previous)
-
languages/fb_like_trans_domain-cs_CZ.po (modified) (2 diffs)
-
languages/fb_like_trans_domain-de_DE.mo (modified) (previous)
-
languages/fb_like_trans_domain-de_DE.po (modified) (2 diffs)
-
languages/fb_like_trans_domain-es_ES.mo (modified) (previous)
-
languages/fb_like_trans_domain-es_ES.po (modified) (7 diffs)
-
languages/fb_like_trans_domain-id_ID.mo (modified) (previous)
-
languages/fb_like_trans_domain-id_ID.po (modified) (6 diffs)
-
languages/fb_like_trans_domain-it_IT.mo (modified) (previous)
-
languages/fb_like_trans_domain-it_IT.po (modified) (8 diffs)
-
languages/fb_like_trans_domain-pl_PL.mo (modified) (previous)
-
languages/fb_like_trans_domain-pl_PL.po (modified) (4 diffs)
-
languages/fb_like_trans_domain-pt_BR.mo (modified) (previous)
-
languages/fb_like_trans_domain-pt_BR.po (modified) (7 diffs)
-
languages/fb_like_trans_domain-ru_RU.mo (modified) (previous)
-
languages/fb_like_trans_domain-ru_RU.po (modified) (2 diffs)
-
languages/fb_like_trans_domain-tr_TR.mo (modified) (previous)
-
languages/fb_like_trans_domain-tr_TR.po (modified) (2 diffs)
-
languages/fb_like_trans_domain.pot (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
screenshot-1.jpg (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
facebook-likes-you/trunk/facebook-likes-you.php
r422910 r427428 4 4 Plugin URI: http://www.sproject.name/download/wp-facebook-likes-you/ 5 5 Description: Facebook Likes You! is simple plugin which makes it easy to add Facebook Like button and widgetable Like box. It's fully configurable, so you can decide where to append the button. 6 Version: 1. 4.76 Version: 1.5 7 7 Author: Piotr Sochalewski 8 8 Author URI: http://www.sproject.name/ … … 31 31 $fb_like_settings = array(); 32 32 33 $fb_like_layouts = array('standard', ' standard (show faces)', 'button_count', 'box_count');33 $fb_like_layouts = array('standard', 'button_count', 'box_count'); 34 34 $fb_like_verbs = array('like', 'recommend'); 35 35 $fb_like_colorschemes = array('light', 'dark'); … … 39 39 register_setting('fb_like', 'fb_like_width'); 40 40 register_setting('fb_like', 'fb_like_layout'); 41 register_setting('fb_like', 'fb_like_showfaces'); 41 42 register_setting('fb_like', 'fb_like_verb'); 42 43 register_setting('fb_like', 'fb_like_colorscheme'); 43 44 register_setting('fb_like', 'fb_like_font'); 44 register_setting('fb_like', 'fb_like_ html5');45 register_setting('fb_like', 'fb_like_valid'); 45 46 register_setting('fb_like', 'fb_like_xfbml'); 46 47 register_setting('fb_like', 'fb_like_google1'); … … 76 77 add_filter('widget_text', 'do_shortcode'); 77 78 add_action('widgets_init', create_function('', 'return register_widget("fb_like_widget");')); 79 78 80 add_option('fb_like_width', '450'); 79 81 add_option('fb_like_layout', 'standard'); 82 add_option('fb_like_showfaces', 'true'); 80 83 add_option('fb_like_verb', 'like'); 81 84 add_option('fb_like_font', ''); 82 85 add_option('fb_like_colorscheme', 'light'); 83 add_option('fb_like_ html5', 'false');86 add_option('fb_like_valid', 'false'); 84 87 add_option('fb_like_opengraph', 'true'); 85 88 add_option('fb_like_defaultpic', WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)) . 'images/facebook.png'); … … 105 108 $fb_like_settings['width'] = get_option('fb_like_width'); 106 109 $fb_like_settings['layout'] = get_option('fb_like_layout'); 110 $fb_like_settings['showfaces'] = get_option('fb_like_showfaces') === 'true'; 107 111 $fb_like_settings['verb'] = get_option('fb_like_verb'); 108 112 $fb_like_settings['font'] = get_option('fb_like_font'); 109 113 $fb_like_settings['colorscheme'] = get_option('fb_like_colorscheme'); 110 $fb_like_settings[' html5'] = get_option('fb_like_html5') === 'true';114 $fb_like_settings['valid'] = get_option('fb_like_valid') === 'true'; 111 115 $fb_like_settings['opengraph'] = get_option('fb_like_opengraph') === 'true'; 112 116 $fb_like_settings['defaultpic'] = get_option('fb_like_defaultpic'); … … 133 137 134 138 $locale = defined(WPLANG) ? WPLANG : 'en_US'; 135 139 136 140 // 'wp_footer' is there instead of 'wp_head' because it makes better validation 137 // but it can be risky…138 141 add_action('wp_footer', 'fb_like_js_sdk'); 139 142 140 143 // Google +1 JavaScripted placed in 'wp_head'. That's OK. 141 144 add_action('wp_head', 'fb_like_google1_js'); 142 145 143 146 // Open Graph 144 147 add_action('wp_head', 'fb_like_open_graph'); 145 146 / * Shortcode [fb-like-button] linked to generate_button() */148 149 // Shortcode [fb-like-button] linked to generate_button() 147 150 add_shortcode('fb-like-button', 'generate_button'); 148 149 $plugin_path = plugin_basename( dirname( __FILE__ ) . '/languages' ); 150 load_plugin_textdomain( 'fb_like_trans_domain', '', $plugin_path ); 151 152 load_plugin_textdomain( 'fb_like_trans_domain', '', plugin_basename( dirname( __FILE__ ) . '/languages') ); 153 } 154 155 function fb_like_pluginPath($file) { 156 // $file without first '/' 157 return WP_PLUGIN_URL . '/' . str_replace( basename( __FILE__) , "" , plugin_basename(__FILE__) ) . $file; 151 158 } 152 159 … … 168 175 if($fb_like_settings['xfbml']=='true') { 169 176 global $locale; 177 178 if($fb_like_settings['valid']=='true') 179 echo ' <script type="text/javascript" src="' . fb_like_pluginPath('js/fbObjectValidationV4.js') . '"></script> 180 '; 170 181 171 182 echo ' <div id="fb-root"></div> … … 210 221 ob_end_clean(); 211 222 212 // Default picture if is home213 if ( is_home())223 // Default picture if is NOT post or page 224 if (!is_single() && !is_page()) 214 225 return $fb_like_settings['defaultpic']; 215 226 … … 233 244 return $img; 234 245 else { 235 $img = site_url() . '/' . $img; 246 $upload_dir = wp_upload_dir(); 247 $img = $upload_dir['baseurl'] . '/' . $img; 236 248 if (fb_like_isValidURL($img)) 237 249 return $img; … … 254 266 if($fb_like_settings['opengraph']=='true') { 255 267 ?> 256 <?php if ( is_home())268 <?php if (!is_single() && !is_page()) 257 269 echo '<meta property="og:title" content="' . get_bloginfo('name') . '"/> 258 270 <meta property="og:type" content="blog"/> … … 342 354 return '<div style="float: right; margin: ' . fb_like_count_margin() . '"><g:plusone size="medium" href="' . get_permalink() . '"></g:plusone></div>'; 343 355 break; 344 case " standard (show faces)": case "box_count":356 case "box_count": 345 357 return '<div style="float: right; margin: ' . fb_like_count_margin() . '"><g:plusone size="tall" href="' . get_permalink() . '"></g:plusone></div>'; 346 358 break; … … 359 371 global $locale; 360 372 361 $ url = ' href="' . get_permalink() . '"';373 $fblike = '<fb:like href="' . get_permalink() . '" send="' . (($fb_like_settings['send']=='true')?'true':'false') . '" layout="' . $fb_like_settings['layout'] . '" width="' . $fb_like_settings['width'] . '" show_faces="'. (($fb_like_settings['showfaces']=='true')?'true':'false') . '" action="' . $fb_like_settings['verb'] . '"' . (($fb_like_settings['colorscheme']=='dark')?' colorscheme="dark" ':'') . ' font="' . $fb_like_settings['font'] . '" style="margin: ' . $margin . ';' . (($fb_like_settings['css_style']!='') ? ' ' . $fb_like_settings['css_style'] : '') . '"></fb:like>'; 362 374 363 $url .= ' send=' . (($fb_like_settings['send']=='true')?'"true"':'"false"'); 364 365 // Validate layout 366 switch($fb_like_settings['layout']) { 367 case "standard": 368 $url .= ' show_faces="false"'; 369 break; 370 case "button_count": case "box_count": 371 $url .= ' layout="' . $fb_like_settings['layout'] . '"'; 372 break; 373 } 374 375 $url .= ' width="' . $fb_like_settings['width'] . '"'; 376 377 if($fb_like_settings['verb']=='recommend') 378 $url .= ' action="recommend"'; 379 380 if($fb_like_settings['font']!='') 381 $url .= ' font="' . $fb_like_settings['font'] . '"'; 382 383 if($fb_like_settings['colorscheme']=='dark') 384 $url .= ' colorscheme="dark"'; 385 386 $url .= ' style="margin:' . $margin . ';'; 387 388 $url .= ($fb_like_settings['css_style']!='') ? ' ' . $fb_like_settings['css_style'] . '"' : '"'; 389 390 return '<div id="fb-root"></div><script src="http://connect.facebook.net/' . $locale . '/all.js#appId=' . fb_like_return_appid() . '&xfbml=1" type="text/javascript"></script> <fb:like' . $url . '></fb:like>' . fb_like_generate_google1(); 375 if ($fb_like_settings['valid']) 376 return ' 377 <span class="fbreplace"> 378 <!-- FBML ' . $fblike . ' FBML --> 379 </span> 380 ' . fb_like_generate_google1() . ' 381 '; else 382 return '<div id="fb-root"></div><script src="http://connect.facebook.net/' . $locale . '/all.js#appId=' . fb_like_return_appid() . '&xfbml=1"></script>' . $fblike . fb_like_generate_google1(); 391 383 /* END OF XFBML VERSION */ 392 384 } … … 395 387 switch($fb_like_settings['layout']) { 396 388 case "standard": 397 $height = 35; 398 break; 399 case "standard (show faces)": 400 $height = 80; 389 $height = (($fb_like_settings['showfaces']=='true')?80:35); 401 390 break; 402 391 case "button_count": … … 408 397 } 409 398 410 $url = '<iframe class="fblikes" src="http://www.facebook.com/plugins/like.php?href=' 411 . get_permalink() . '&send=false&layout=' 412 . $fb_like_settings['layout'] . '&show_faces=' . (($fb_like_settings['showfaces']=='true')?'true':'false') 413 . '&width=' . $fb_like_settings['width'] . '&action=' . $fb_like_settings['verb'] 414 . '&colorscheme=' . $fb_like_settings['colorscheme'] . '&height=' . $height; 415 416 if($fb_like_settings['font']!='') 417 $url .= '&font=' . $fb_like_settings['font']; 418 419 if($fb_like_settings['html5']) 420 return $url.'" style="scrolling:no; allowTransparency:true; border:none; overflow:hidden; width:'.$fb_like_settings['width'].'px; height:'.$height.'px; margin:'.$margin.'; '.$fb_like_settings['css_style'].'"></iframe>' . fb_like_generate_google1(); 421 else 422 return $url.'" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:'.$fb_like_settings['width'].'px; height:'.$height.'px; margin:'.$margin.'; '.$fb_like_settings['css_style'].'" allowTransparency="true"></iframe>' . fb_like_generate_google1(); 399 return '<iframe class="fblikes" src="http://www.facebook.com/plugins/like.php?href=' . get_permalink() . '&send=false&layout=' . $fb_like_settings['layout'] . '&width=' . $fb_like_settings['width'] . '&show_faces=' . (($fb_like_settings['showfaces']=='true')?'true':'false') . '&action=' . $fb_like_settings['verb'] . '&colorscheme=' . $fb_like_settings['colorscheme'] . '&' . (($fb_like_settings['font']!='') ? 'font='. $fb_like_settings['font'] : 'font') . '&height=' . $height . '" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:' . $fb_like_settings['width'] . 'px; height:' . $height . 'px; margin: ' . $margin . ';' . (($fb_like_settings['css_style']!='') ? ' ' . $fb_like_settings['css_style'] : '') . '" allowTransparency="true"></iframe>' . fb_like_generate_google1(); 423 400 /* END OF STANDARD (NON-XFBML) VERSION */ 424 401 } … … 452 429 if($fb_like_settings['xfbml']) { 453 430 /* XFBML VERSION OF LIKE BOX */ 454 echo '<script src="http://connect.facebook.net/'; 455 echo $locale; 456 echo '/all.js#xfbml=1"></script><fb:like-box href="'; 457 echo $url; 458 echo '" width="'; 459 echo $width; 460 echo '" show_faces="'; 461 echo ($showfaces ? 'true' : 'false'); 462 echo '" stream="'; 463 echo ($stream ? 'true' : 'false'); 464 echo '" header="'; 465 echo ($header ? 'true' : 'false'); 466 echo '"'; 467 if($fb_like_settings['colorscheme']=="dark") 468 echo ' colorscheme=\"dark\"'; 469 echo '></fb:like-box>'; 431 $fblikebox = '<fb:like-box href="' . $url . '" width="' . $width . '"' . ($fb_like_settings['colorscheme']=="dark" ? ' colorscheme="dark"' : '') . ' show_faces="' . ($showfaces ? 'true' : 'false') . '" border_color="" stream="' . ($stream ? 'true' : 'false') . '" header="' . ($header ? 'true' : 'false') . '"></fb:like-box>'; 432 433 if ($fb_like_settings['valid']) 434 echo ' 435 <span class="fbreplace"> 436 <!-- FBML ' . $fblikebox . ' FBML --> 437 </span> 438 '; else 439 echo '<div id="fb-root"></div><script src="http://connect.facebook.net/'.$locale.'/all.js#xfbml=1"></script>' . $fblikebox; 470 440 } 471 441 else { … … 487 457 else $height = 62; 488 458 489 echo '<iframe src="http://www.facebook.com/plugins/likebox.php?href='; 490 echo $url; 491 echo '&width='; 492 echo $width; 493 echo '&colorscheme='; 494 echo $fb_like_settings['colorscheme']; 495 echo '&show_faces='; 496 echo ($showfaces ? 'true' : 'false'); 497 echo '&stream='; 498 echo ($stream ? 'true' : 'false'); 499 echo '&header='; 500 echo ($header ? 'true' : 'false'); 501 echo '&height='; 502 echo $height; 503 if($fb_like_settings['html5']) 504 echo '" style="scrolling: no; allowTransparency: true; border:none; overflow:hidden; width:'; 505 else 506 echo '" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:'; 507 echo $width; 508 echo 'px; height:'; 509 echo $height; 510 echo 'px;"></iframe>'; 459 echo '<iframe src="http://www.facebook.com/plugins/likebox.php?href=' . $url . '&width=' . $width . '&colorscheme=' . $fb_like_settings['colorscheme'] . '&show_faces=' . ($showfaces ? 'true' : 'false') . '&border_color&stream=' . ($stream ? 'true' : 'false') . '&header=' . ($header ? 'true' : 'false') . '&height=' . $height . '" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:' . $width . 'px; height:' . $height . 'px;" allowTransparency="true"></iframe>'; 511 460 } 512 461 … … 608 557 echo "<option value=\"$type\"". ($type == $curmenutype ? " selected":""). ">$type</option>"; 609 558 ?> 610 </select> 559 </select><br /> 560 <input id="faces" type="checkbox" name="fb_like_showfaces" value="true" <?php echo (get_option('fb_like_showfaces') == 'true' ? 'checked' : ''); ?>/> <label for="faces"><?php _e("Show Faces", 'fb_like_trans_domain' ); ?></label> 611 561 </td> 612 562 </tr> … … 648 598 </tr> 649 599 <tr valign="top"> 650 <th scope="row"><?php _e(" HTML5 Mode:", 'fb_like_trans_domain' ); ?></th>651 <td><input type="checkbox" name="fb_like_ html5" value="true" <?php echo (get_option('fb_like_html5') == 'true' ? 'checked' : ''); ?>/> <small><?php _e("Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers.", 'fb_like_trans_domain' ); ?></small></td>600 <th scope="row"><?php _e("Fix for W3C Valid XFBML:", 'fb_like_trans_domain' ); ?></th> 601 <td><input type="checkbox" name="fb_like_valid" value="true" <?php echo (get_option('fb_like_valid') == 'true' ? 'checked' : ''); ?>/></td> 652 602 </tr> 653 603 <tr valign="top"> 654 <th scope="row"><?php _e("S how Send button:", 'fb_like_trans_domain' ); ?></th>604 <th scope="row"><?php _e("Send Button:", 'fb_like_trans_domain' ); ?></th> 655 605 <td><input type="checkbox" name="fb_like_send" value="true" <?php echo (get_option('fb_like_send') == 'true' ? 'checked' : ''); ?>/> <small><?php _e("It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>.", 'fb_like_trans_domain' ); ?></small></td> 656 606 </tr> … … 665 615 <tr valign="top"> 666 616 <th scope="row"><?php _e("Use Open Graph:", 'fb_like_trans_domain' ); ?></th> 667 <td><input type="checkbox" name="fb_like_opengraph" value="true" <?php echo (get_option('fb_like_opengraph') == 'true' ? 'checked' : ''); ?>/> <small><?php _e("Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin.", 'fb_like_trans_domain' ); ?><br /><?php _e("Absolute path to default picture (used if not found any):", 'fb_like_trans_domain' ); ?> <input size="40" type="text" id="fb_like_defaultpic" name="fb_like_defaultpic" style="font-size: 11px; height: 18px;" value="<?php echo get_option('fb_like_defaultpic'); ?>" /> <a onclick="document.getElementById('fb_like_defaultpic').value='<?php echo WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)) . 'images/facebook.png'?>'">[ <?php _e("Back to default", 'fb_like_trans_domain' ); ?> ]</a></small></td>617 <td><input type="checkbox" name="fb_like_opengraph" value="true" <?php echo (get_option('fb_like_opengraph') == 'true' ? 'checked' : ''); ?>/> <small><?php _e("Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin.", 'fb_like_trans_domain' ); ?><br /><?php _e("Absolute path to default picture (used if not found any):", 'fb_like_trans_domain' ); ?> <input size="40" type="text" id="fb_like_defaultpic" name="fb_like_defaultpic" style="font-size: 11px; height: 18px;" value="<?php echo get_option('fb_like_defaultpic'); ?>" /> <a onclick="document.getElementById('fb_like_defaultpic').value='<?php echo fb_like_pluginPath('images/facebook.png') ?>'">[ <?php _e("Back to default", 'fb_like_trans_domain' ); ?> ]</a></small></td> 668 618 </tr> 669 619 <tr valign="top"> … … 680 630 <th scope="row"><?php _e("Show at:", 'fb_like_trans_domain' ); ?></th> 681 631 <td> 682 <input type="checkbox" name="fb_like_show_at_top" value="true" <?php echo (get_option('fb_like_show_at_top') == 'true' ? 'checked' : ''); ?>/> <?php _e("Top", 'fb_like_trans_domain' ); ?><br />683 <input type="checkbox" name="fb_like_show_at_bottom" value="true" <?php echo (get_option('fb_like_show_at_bottom') == 'true' ? 'checked' : ''); ?>/> <?php _e("Bottom", 'fb_like_trans_domain' ); ?><br />632 <input id="top" type="checkbox" name="fb_like_show_at_top" value="true" <?php echo (get_option('fb_like_show_at_top') == 'true' ? 'checked' : ''); ?>/> <label for="top"><?php _e("Top", 'fb_like_trans_domain' ); ?></label><br /> 633 <input id="bottom" type="checkbox" name="fb_like_show_at_bottom" value="true" <?php echo (get_option('fb_like_show_at_bottom') == 'true' ? 'checked' : ''); ?>/> <label for="bottom"><?php _e("Bottom", 'fb_like_trans_domain' ); ?></label> 684 634 </td> 685 635 </tr> … … 687 637 <th scope="row"><?php _e("Show on:", 'fb_like_trans_domain' ); ?></th> 688 638 <td> 689 <input type="checkbox" name="fb_like_show_on_page" value="true" <?php echo (get_option('fb_like_show_on_page') == 'true' ? 'checked' : ''); ?>/> <?php _e("Page", 'fb_like_trans_domain' ); ?><br />690 <input type="checkbox" name="fb_like_show_on_post" value="true" <?php echo (get_option('fb_like_show_on_post') == 'true' ? 'checked' : ''); ?>/> <?php _e("Post", 'fb_like_trans_domain' ); ?><br />691 <input type="checkbox" name="fb_like_show_on_home" value="true" <?php echo (get_option('fb_like_show_on_home') == 'true' ? 'checked' : ''); ?>/> <?php _e("Home", 'fb_like_trans_domain' ); ?><br />692 <input type="checkbox" name="fb_like_show_on_search" value="true" <?php echo (get_option('fb_like_show_on_search') == 'true' ? 'checked' : ''); ?>/> <?php _e("Search", 'fb_like_trans_domain' ); ?><br />693 <input type="checkbox" name="fb_like_show_on_archive" value="true" <?php echo (get_option('fb_like_show_on_archive') == 'true' ? 'checked' : ''); ?>/> <?php _e("Archive", 'fb_like_trans_domain' ); ?><br />639 <input id="page" type="checkbox" name="fb_like_show_on_page" value="true" <?php echo (get_option('fb_like_show_on_page') == 'true' ? 'checked' : ''); ?>/> <label for="page"><?php _e("Page", 'fb_like_trans_domain' ); ?></label><br /> 640 <input id="post" type="checkbox" name="fb_like_show_on_post" value="true" <?php echo (get_option('fb_like_show_on_post') == 'true' ? 'checked' : ''); ?>/> <label for="post"><?php _e("Post", 'fb_like_trans_domain' ); ?></label><br /> 641 <input id="home" type="checkbox" name="fb_like_show_on_home" value="true" <?php echo (get_option('fb_like_show_on_home') == 'true' ? 'checked' : ''); ?>/> <label for="home"><?php _e("Home", 'fb_like_trans_domain' ); ?></label><br /> 642 <input id="search" type="checkbox" name="fb_like_show_on_search" value="true" <?php echo (get_option('fb_like_show_on_search') == 'true' ? 'checked' : ''); ?>/> <label for="search"><?php _e("Search", 'fb_like_trans_domain' ); ?></label><br /> 643 <input id="archive" type="checkbox" name="fb_like_show_on_archive" value="true" <?php echo (get_option('fb_like_show_on_archive') == 'true' ? 'checked' : ''); ?>/> <label for="archive"><?php _e("Archive", 'fb_like_trans_domain' ); ?></label> 694 644 </td> 695 645 </tr> … … 701 651 <br /> 702 652 <span style="float: left; margin-top: 3px;"><input size="2" type="text" name="fb_like_margin_left" style="text-align:right" value="<?php echo get_option('fb_like_margin_left'); ?>" /> <small>px</small></span> 703 <img src="<?php echo WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)); ?>images/button.jpg" style="margin-top: 10px; margin-bottom: 7px;">653 <img src="<?php echo fb_like_pluginPath('images/button.jpg'); ?>" style="margin-top: 10px; margin-bottom: 7px;"> 704 654 <span style="float: right; margin-top: 3px;"><input size="2" type="text" name="fb_like_margin_right" style="text-align:right" value="<?php echo get_option('fb_like_margin_right'); ?>" /> <small>px</small></span> 705 655 <br /> -
facebook-likes-you/trunk/languages/fb_like_trans_domain-cs_CZ.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: \n"6 "PO-Revision-Date: 2011-0 5-03 12:43+0100\n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-14 19:02+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 8 "Language-Team: Georgij Gadjukin <[email protected]>\n" … … 15 15 "X-Poedit-SearchPath-0: .\n" 16 16 17 #@ fb_like_trans_domain 17 #: facebook-likes-you.php 18 msgid "Important info for users" 19 msgstr "" 20 18 21 #: facebook-likes-you.php 19 22 msgid "Appearance" 20 23 msgstr "Vzhled" 21 24 22 #@ fb_like_trans_domain23 25 #: facebook-likes-you.php 24 26 msgid "Width:" 25 27 msgstr "Šířka:" 26 28 27 #@ fb_like_trans_domain 29 #: facebook-likes-you.php 30 msgid "Height:" 31 msgstr "" 32 28 33 #: facebook-likes-you.php 29 34 msgid "Layout:" 30 35 msgstr "Rozložení:" 31 36 32 #@ fb_like_trans_domain33 37 #: facebook-likes-you.php 34 38 msgid "Verb to display:" 35 39 msgstr "Zobrazené slovo:" 36 40 37 #@ fb_like_trans_domain38 41 #: facebook-likes-you.php 39 42 msgid "Font:" 40 43 msgstr "Písmo:" 41 44 42 #@ fb_like_trans_domain43 45 #: facebook-likes-you.php 44 46 msgid "Color Scheme:" 45 47 msgstr "Barevné schéma:" 46 48 47 #@ fb_like_trans_domain 48 #: facebook-likes-you.php 49 msgid "Show Faces:" 50 msgstr "Zobrazit obrázky profilu:" 51 52 #@ fb_like_trans_domain 53 #: facebook-likes-you.php 54 msgid "Automatically increase the height accordingly" 55 msgstr "Automaticky podle toho zvětšit výšku" 56 57 #@ fb_like_trans_domain 49 #: facebook-likes-you.php 50 msgid "Fix for W3C Valid XFBML:" 51 msgstr "" 52 53 #: facebook-likes-you.php 54 msgid "Send Button:" 55 msgstr "" 56 57 #: facebook-likes-you.php 58 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 59 msgstr "" 60 61 #: facebook-likes-you.php 62 msgid "Google +1 Button:" 63 msgstr "" 64 58 65 #: facebook-likes-you.php 59 66 msgid "Use <span title='XFBML version is more versatile, but requires use of the JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 60 67 msgstr "Použití <span title='XFBML verze má více funkcí, ale vyžaduje použití SDK JavaScriptu' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML:</span>" 61 68 62 #@ fb_like_trans_domain 69 #: facebook-likes-you.php 70 msgid "Use Open Graph:" 71 msgstr "" 72 73 #: facebook-likes-you.php 74 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 75 msgstr "" 76 77 #: facebook-likes-you.php 78 msgid "Absolute path to default picture (used if not found any):" 79 msgstr "" 80 81 #: facebook-likes-you.php 82 msgid "Back to default" 83 msgstr "" 84 63 85 #: facebook-likes-you.php 64 86 msgid "Your app ID:" 65 87 msgstr "Vaše app ID:" 66 88 67 #@ fb_like_trans_domain 68 #: facebook-likes-you.php 69 msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 89 #: facebook-likes-you.php 90 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 70 91 msgstr "Pokud nemáte app ID, můžete políčko nechat prázdné a použít výchozí app ID Facebooku <code>165570960176857</code>,<br />ale nezapomeňte, že můžete získat svůj vlastní app ID po <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registraci vaší žádosti</a> ." 71 92 72 #@ fb_like_trans_domain73 93 #: facebook-likes-you.php 74 94 msgid "Position" 75 95 msgstr "Pozice" 76 96 77 #@ fb_like_trans_domain78 97 #: facebook-likes-you.php 79 98 msgid "Remember that you can place it manually by <code>[fb-like-button]</code>. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 80 99 msgstr "Nezapomeňte, že můžete umístit ručně <code>[fb-like-button]</code>, kdykoliv budete chtít. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 81 100 82 #@ fb_like_trans_domain83 101 #: facebook-likes-you.php 84 102 msgid "Show at:" 85 103 msgstr "Zobrazit na:" 86 104 87 #@ fb_like_trans_domain88 105 #: facebook-likes-you.php 89 106 msgid "Top" 90 107 msgstr "začátku" 91 108 92 #@ fb_like_trans_domain93 109 #: facebook-likes-you.php 94 110 msgid "Bottom" 95 111 msgstr "konci" 96 112 97 #@ fb_like_trans_domain98 113 #: facebook-likes-you.php 99 114 msgid "Show on:" 100 115 msgstr "Zobrazit:" 101 116 102 #@ fb_like_trans_domain103 117 #: facebook-likes-you.php 104 118 msgid "Page" 105 119 msgstr "na stránce" 106 120 107 #@ fb_like_trans_domain108 121 #: facebook-likes-you.php 109 122 msgid "Post" 110 123 msgstr "u příspěvku" 111 124 112 #@ fb_like_trans_domain113 125 #: facebook-likes-you.php 114 126 msgid "Home" 115 127 msgstr "ve výpisu" 116 128 117 #@ fb_like_trans_domain118 129 #: facebook-likes-you.php 119 130 msgid "Search" 120 131 msgstr "u vyhledávání" 121 132 122 #@ fb_like_trans_domain123 133 #: facebook-likes-you.php 124 134 msgid "Archive" 125 135 msgstr "u archívu" 126 136 127 #@ fb_like_trans_domain128 137 #: facebook-likes-you.php 129 138 msgid "Margins:" 130 139 msgstr "Marže:" 131 140 132 #@ fb_like_trans_domain133 141 #: facebook-likes-you.php 134 142 msgid "Exclude posts and pages:" 135 143 msgstr "Vyjmout příspěvky a stránky:" 136 144 137 #@ fb_like_trans_domain 145 #: facebook-likes-you.php 146 msgid "Exclude categories:" 147 msgstr "Vyjmout kategorie:" 148 138 149 #: facebook-likes-you.php 139 150 msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>." 140 151 msgstr "Můžete zadat ID, název nebo zkratku příspěvku/stránky, seznam oddělte čárkami.<br />Např. <code>17, Irish Stew, beef-stew</code> ." 141 152 142 #@ fb_like_trans_domain143 #: facebook-likes-you.php144 msgid "Exclude categories:"145 msgstr "Vyjmout kategorie:"146 147 #@ fb_like_trans_domain148 153 #: facebook-likes-you.php 149 154 msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>." 150 155 msgstr "Můžete zadat ID, jméno, nebo zkratku pro každou kategorii, seznam oddělte čárkami.<br />Např. <code>9, Stinky Cheeses, blue-cheese</code> ." 151 156 152 #@ fb_like_trans_domain153 157 #: facebook-likes-you.php 154 158 msgid "Additional CSS style:" 155 159 msgstr "Dodatečný CSS styl:" 156 160 157 #@ fb_like_trans_domain158 161 #: facebook-likes-you.php 159 162 msgid "Added properties will be placed between <code>style=\"</code> and <code>\"</code>. If you want refer to Like button in e.g. <strong>style.css</strong>,<br />try to use <code>iframe.fblikes</code> or if you use XFBML <code>.fb_edge_widget_with_comment</code>." 160 163 msgstr "Přidané vlastnosti budou umístěny mezi <code>style=\"</code> a <code>\"</code> . Pokud chcete odkazovat na tlačítko Líbí se mi jako např. v <strong>style.css,</strong><br /> zkuste použít <code>iframe.fblikes</code> nebo pokud používáte XFBML <code>.fb_edge_widget_with_comment</code> ." 161 164 162 #@ fb_like_trans_domain163 165 #: facebook-likes-you.php 164 166 msgid "Help and Support" 165 167 msgstr "Nápověda a odborná pomoc" 166 168 167 #@ fb_like_trans_domain 169 #: facebook-likes-you.php 170 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 171 msgstr "" 172 173 #: facebook-likes-you.php 174 msgid "Read the plugin homepage and its comments" 175 msgstr "Přečtěte si domovskou stránku pluginu a komentáře" 176 168 177 #: facebook-likes-you.php 169 178 msgid "Donate to this plugin" 170 179 msgstr "Přispějte na tento plugin" 171 180 172 #@ fb_like_trans_domain173 #: facebook-likes-you.php174 msgid "Read the plugin homepage and its comments"175 msgstr "Přečtěte si domovskou stránku pluginu a komentáře"176 177 #@ default178 181 #: facebook-likes-you.php 179 182 msgid "Save Changes" 180 183 msgstr "Uložit změny" 181 184 182 #: f b_likes_widget.php185 #: facebook-likes-you.php 183 186 msgid "Title:" 184 187 msgstr "Název:" 185 188 186 #: f b_likes_widget.php189 #: facebook-likes-you.php 187 190 msgid "Facebook Page URL:" 188 191 msgstr "Facebook Page URL:" 189 192 190 #: f b_likes_widget.php193 #: facebook-likes-you.php 191 194 msgid "The URL of the FB Page for this Like box." 192 195 msgstr "The URL of the FB Page for this Like box." 193 196 194 #: f b_likes_widget.php197 #: facebook-likes-you.php 195 198 msgid "The width of the widget in pixels." 196 199 msgstr "The width of the widget in pixels." 197 200 198 #: f b_likes_widget.php201 #: facebook-likes-you.php 199 202 msgid "In pixels too. Needed if you don't use XFBML." 200 203 msgstr "In pixels too. Needed if you don't use XFBML." 201 204 202 #: fb_likes_widget.php 203 msgid "Connections:" 204 msgstr "Connections:" 205 206 #: fb_likes_widget.php 207 msgid "Count of shown users who've liked this Page." 208 msgstr "Count of shown users who've liked this Page." 209 210 #: fb_likes_widget.php 205 # @ fb_like_trans_domain 206 #: facebook-likes-you.php 207 #, fuzzy 208 msgid "Show Faces" 209 msgstr "Zobrazit obrázky profilu" 210 211 #: facebook-likes-you.php 211 212 msgid "Stream" 212 213 msgstr "Stream" 213 214 214 #: f b_likes_widget.php215 #: facebook-likes-you.php 215 216 msgid "Show the profile stream for the public profile." 216 217 msgstr "Show the profile stream for the public profile." 217 218 218 #: f b_likes_widget.php219 #: facebook-likes-you.php 219 220 msgid "Header" 220 221 msgstr "Header" 221 222 222 #: f b_likes_widget.php223 #: facebook-likes-you.php 223 224 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 224 225 msgstr "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" -
facebook-likes-you/trunk/languages/fb_like_trans_domain-de_DE.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: \n"6 "PO-Revision-Date: 2011-0 5-03 12:43+0100\n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-14 19:02+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 "Language-Team: Stefan Meier \n"8 "Language-Team: Stefan Meier <[email protected]>\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" … … 19 19 "X-Poedit-SearchPath-0: .\n" 20 20 21 #@ fb_like_trans_domain 21 # @ fb_like_trans_domain 22 #: facebook-likes-you.php 23 msgid "Important info for users" 24 msgstr "Wichtiger Information für Nutzer" 25 26 # @ fb_like_trans_domain 27 #: facebook-likes-you.php 28 msgid "Appearance" 29 msgstr "Erscheinung" 30 31 # @ fb_like_trans_domain 32 #: facebook-likes-you.php 33 msgid "Width:" 34 msgstr "Breite:" 35 36 # @ fb_like_trans_domain 37 #: facebook-likes-you.php 38 msgid "Height:" 39 msgstr "Höhe:" 40 41 # @ fb_like_trans_domain 42 #: facebook-likes-you.php 43 msgid "Layout:" 44 msgstr "Layout:" 45 46 # @ fb_like_trans_domain 47 #: facebook-likes-you.php 48 msgid "Verb to display:" 49 msgstr "Anzuzeigendes Verb:" 50 51 # @ fb_like_trans_domain 52 #: facebook-likes-you.php 53 msgid "Font:" 54 msgstr "Schriftart:" 55 56 # @ fb_like_trans_domain 57 #: facebook-likes-you.php 58 msgid "Color Scheme:" 59 msgstr "Farbschema:" 60 61 #: facebook-likes-you.php 62 msgid "Fix for W3C Valid XFBML:" 63 msgstr "" 64 65 #: facebook-likes-you.php 66 msgid "Send Button:" 67 msgstr "" 68 69 #: facebook-likes-you.php 70 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 71 msgstr "" 72 73 #: facebook-likes-you.php 74 msgid "Google +1 Button:" 75 msgstr "" 76 77 # @ fb_like_trans_domain 78 #: facebook-likes-you.php 79 msgid "Use <span title='XFBML version is more versatile, but requires use of the JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 80 msgstr "Benutze <span title='XFBML Version ist vielseitiger, aber benötigt JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 81 82 #: facebook-likes-you.php 83 msgid "Use Open Graph:" 84 msgstr "" 85 86 #: facebook-likes-you.php 87 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 88 msgstr "" 89 90 #: facebook-likes-you.php 91 msgid "Absolute path to default picture (used if not found any):" 92 msgstr "" 93 94 #: facebook-likes-you.php 95 msgid "Back to default" 96 msgstr "" 97 98 # @ fb_like_trans_domain 99 #: facebook-likes-you.php 100 msgid "Your app ID:" 101 msgstr "Deine App-ID:" 102 103 # @ fb_like_trans_domain 104 #: facebook-likes-you.php 105 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 106 msgstr "Falls du keine App-ID hast, kannst du dieses Feld leer lassen, um die standardmäßige Facebook App-ID <code>165570960176857</code> zu benutzen,<br />du kannst allerdings auch eine eigene App-ID bekommen, indem du <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>deine Applikation registrierst</a>." 107 108 # @ fb_like_trans_domain 109 #: facebook-likes-you.php 110 msgid "Position" 111 msgstr "Position" 112 113 # @ fb_like_trans_domain 114 #: facebook-likes-you.php 115 msgid "Remember that you can place it manually by <code>[fb-like-button]</code>. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 116 msgstr "Du kannst den Button manuell platzieren, indem du den Code <code>[fb-like-button]</code> an der gewünschten Stelle einfügst. Dies ist auch mit PHP möglich, kann allerdings im WordPress Editor nicht benutzt werden - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 117 118 # @ fb_like_trans_domain 119 #: facebook-likes-you.php 120 msgid "Show at:" 121 msgstr "Anzeigen:" 122 123 # @ fb_like_trans_domain 124 #: facebook-likes-you.php 125 msgid "Top" 126 msgstr "oben" 127 128 # @ fb_like_trans_domain 129 #: facebook-likes-you.php 130 msgid "Bottom" 131 msgstr "unten" 132 133 # @ fb_like_trans_domain 134 #: facebook-likes-you.php 135 msgid "Show on:" 136 msgstr "Anzeigen:" 137 138 # @ fb_like_trans_domain 139 #: facebook-likes-you.php 140 msgid "Page" 141 msgstr "auf Seite" 142 143 # @ fb_like_trans_domain 144 #: facebook-likes-you.php 145 msgid "Post" 146 msgstr "in Artikel" 147 148 # @ fb_like_trans_domain 149 #: facebook-likes-you.php 150 msgid "Home" 151 msgstr "auf der Startseite" 152 153 # @ fb_like_trans_domain 154 #: facebook-likes-you.php 155 msgid "Search" 156 msgstr "bei der Suche" 157 158 # @ fb_like_trans_domain 159 #: facebook-likes-you.php 160 msgid "Archive" 161 msgstr "im Archiv" 162 163 # @ fb_like_trans_domain 164 #: facebook-likes-you.php 165 msgid "Margins:" 166 msgstr "Abstände:" 167 168 # @ fb_like_trans_domain 169 #: facebook-likes-you.php 170 msgid "Exclude posts and pages:" 171 msgstr "Seiten und Artikel ausschließen:" 172 173 # @ fb_like_trans_domain 174 #: facebook-likes-you.php 175 msgid "Exclude categories:" 176 msgstr "Kategorien ausschließen:" 177 178 # @ fb_like_trans_domain 179 #: facebook-likes-you.php 180 msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>." 181 msgstr "Du kannst ID, Titel oder Slug der Artikel/Seiten eintippen, getrennt mit Kommas.<br />z.B. <code>17, Irish Stew, beef-stew</code>." 182 183 # @ fb_like_trans_domain 184 #: facebook-likes-you.php 185 msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>." 186 msgstr "Du kannst ID, Titel oder Slug der Kategorien eintippen, getrennt mit Kommas.<br />z.B. <code>9, Stinky Cheeses, blue-cheese</code>." 187 188 # @ fb_like_trans_domain 189 #: facebook-likes-you.php 190 msgid "Additional CSS style:" 191 msgstr "Zusätzliches CSS:" 192 193 # @ fb_like_trans_domain 194 #: facebook-likes-you.php 195 msgid "Added properties will be placed between <code>style=\"</code> and <code>\"</code>. If you want refer to Like button in e.g. <strong>style.css</strong>,<br />try to use <code>iframe.fblikes</code> or if you use XFBML <code>.fb_edge_widget_with_comment</code>." 196 msgstr "Hinzugefügte Eigenschaften werden zwischen code>style=\"</code> und <code>\"</code> eingefügt. Wenn du dich z.B. in <strong>style.css</strong> auf den Like Button beziehen möchtest,<br />verwende <code>iframe.fblikes</code> oder, falls du XFBML benutzt, <code>.fb_edge_widget_with_comment</code>." 197 198 # @ fb_like_trans_domain 199 #: facebook-likes-you.php 200 msgid "Help and Support" 201 msgstr "Hilfe und Support" 202 203 #: facebook-likes-you.php 204 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 205 msgstr "" 206 207 # @ fb_like_trans_domain 208 #: facebook-likes-you.php 209 msgid "Read the plugin homepage and its comments" 210 msgstr "Plugin Homepage aufrufen" 211 212 # @ fb_like_trans_domain 213 #: facebook-likes-you.php 214 msgid "Donate to this plugin" 215 msgstr "Für dieses Plugin spenden" 216 217 # @ default 218 #: facebook-likes-you.php 219 msgid "Save Changes" 220 msgstr "Änderungen speichern" 221 222 # @ fb_like_trans_domain 22 223 #: facebook-likes-you.php 23 224 msgid "Title:" 24 225 msgstr "Titel:" 25 226 26 # @ fb_like_trans_domain227 # @ fb_like_trans_domain 27 228 #: facebook-likes-you.php 28 229 msgid "Facebook Page URL:" 29 230 msgstr "Facebook Seite URL:" 30 231 31 # @ fb_like_trans_domain232 # @ fb_like_trans_domain 32 233 #: facebook-likes-you.php 33 234 msgid "The URL of the FB Page for this Like box." 34 235 msgstr "Die URL der FB Seite für diese Like Box." 35 236 36 #@ fb_like_trans_domain 37 #: facebook-likes-you.php 38 msgid "Width:" 39 msgstr "Breite:" 40 41 #@ fb_like_trans_domain 237 # @ fb_like_trans_domain 42 238 #: facebook-likes-you.php 43 239 msgid "The width of the widget in pixels." 44 240 msgstr "Die Breite des Widgets in Pixeln." 45 241 46 #@ fb_like_trans_domain 47 #: facebook-likes-you.php 48 msgid "Height:" 49 msgstr "Höhe:" 50 51 #@ fb_like_trans_domain 242 # @ fb_like_trans_domain 52 243 #: facebook-likes-you.php 53 244 msgid "In pixels too. Needed if you don't use XFBML." 54 245 msgstr "Die Höhe des Widgets in Pixeln. Nötig, falls du nicht XFBML benutzt." 55 246 56 # @ fb_like_trans_domain247 # @ fb_like_trans_domain 57 248 #: facebook-likes-you.php 58 249 msgid "Show Faces" 59 250 msgstr "Gesichter zeigen" 60 251 61 # @ fb_like_trans_domain252 # @ fb_like_trans_domain 62 253 #: facebook-likes-you.php 63 254 msgid "Stream" 64 255 msgstr "Stream" 65 256 66 # @ fb_like_trans_domain257 # @ fb_like_trans_domain 67 258 #: facebook-likes-you.php 68 259 msgid "Show the profile stream for the public profile." 69 260 msgstr "Zeigt die Profilaktivität für das öffentliche Profil." 70 261 71 # @ fb_like_trans_domain262 # @ fb_like_trans_domain 72 263 #: facebook-likes-you.php 73 264 msgid "Header" 74 265 msgstr "Header" 75 266 76 # @ fb_like_trans_domain267 # @ fb_like_trans_domain 77 268 #: facebook-likes-you.php 78 269 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 79 270 msgstr "Zeigt die 'Finde uns auf Facebook' Leiste am oberen Rand an.<br /><small>Nur wenn Stream oder Gesicher angezeigt werden.</small>" 80 271 81 #@ fb_like_trans_domain82 #: facebook-likes-you.php83 msgid "Important info for users"84 msgstr "Wichtiger Information für Nutzer"85 86 #@ fb_like_trans_domain87 #: facebook-likes-you.php88 msgid "Appearance"89 msgstr "Erscheinung"90 91 #@ fb_like_trans_domain92 #: facebook-likes-you.php93 msgid "Layout:"94 msgstr "Layout:"95 96 #@ fb_like_trans_domain97 #: facebook-likes-you.php98 msgid "Verb to display:"99 msgstr "Anzuzeigendes Verb:"100 101 #@ fb_like_trans_domain102 #: facebook-likes-you.php103 msgid "Font:"104 msgstr "Schriftart:"105 106 #@ fb_like_trans_domain107 #: facebook-likes-you.php108 msgid "Color Scheme:"109 msgstr "Farbschema:"110 111 #@ fb_like_trans_domain112 #: facebook-likes-you.php113 msgid "HTML5 Mode:"114 msgstr "HTML5 Modus:"115 116 #@ fb_like_trans_domain117 #: facebook-likes-you.php118 msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers."119 msgstr "Empfohlen, falls dein Blog HTML5 unterstützt und/oder deine Seite valide sein soll. NICHT von allen Browsern unterstützt."120 121 #@ fb_like_trans_domain122 #: facebook-likes-you.php123 msgid "Show Faces:"124 msgstr "Gesicher zeigen:"125 126 #@ fb_like_trans_domain127 #: facebook-likes-you.php128 msgid "Automatically increase the height accordingly"129 msgstr "Höhe automatisch anpassen"130 131 #@ fb_like_trans_domain132 #: facebook-likes-you.php133 msgid "Use <span title='XFBML version is more versatile, but requires use of the JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"134 msgstr "Benutze <span title='XFBML Version ist vielseitiger, aber benötigt JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"135 136 #@ fb_like_trans_domain137 #: facebook-likes-you.php138 msgid "Your app ID:"139 msgstr "Deine App-ID:"140 141 #@ fb_like_trans_domain142 #: facebook-likes-you.php143 msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>."144 msgstr "Falls du keine App-ID hast, kannst du dieses Feld leer lassen, um die standardmäßige Facebook App-ID <code>165570960176857</code> zu benutzen,<br />du kannst allerdings auch eine eigene App-ID bekommen, indem du <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>deine Applikation registrierst</a>."145 146 #@ fb_like_trans_domain147 #: facebook-likes-you.php148 msgid "Position"149 msgstr "Position"150 151 #@ fb_like_trans_domain152 #: facebook-likes-you.php153 msgid "Remember that you can place it manually by <code>[fb-like-button]</code>. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>."154 msgstr "Du kannst den Button manuell platzieren, indem du den Code <code>[fb-like-button]</code> an der gewünschten Stelle einfügst. Dies ist auch mit PHP möglich, kann allerdings im WordPress Editor nicht benutzt werden - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>."155 156 #@ fb_like_trans_domain157 #: facebook-likes-you.php158 msgid "Show at:"159 msgstr "Anzeigen:"160 161 #@ fb_like_trans_domain162 #: facebook-likes-you.php163 msgid "Top"164 msgstr "oben"165 166 #@ fb_like_trans_domain167 #: facebook-likes-you.php168 msgid "Bottom"169 msgstr "unten"170 171 #@ fb_like_trans_domain172 #: facebook-likes-you.php173 msgid "Show on:"174 msgstr "Anzeigen:"175 176 #@ fb_like_trans_domain177 #: facebook-likes-you.php178 msgid "Page"179 msgstr "auf Seite"180 181 #@ fb_like_trans_domain182 #: facebook-likes-you.php183 msgid "Post"184 msgstr "in Artikel"185 186 #@ fb_like_trans_domain187 #: facebook-likes-you.php188 msgid "Home"189 msgstr "auf der Startseite"190 191 #@ fb_like_trans_domain192 #: facebook-likes-you.php193 msgid "Search"194 msgstr "bei der Suche"195 196 #@ fb_like_trans_domain197 #: facebook-likes-you.php198 msgid "Archive"199 msgstr "im Archiv"200 201 #@ fb_like_trans_domain202 #: facebook-likes-you.php203 msgid "Margins:"204 msgstr "Abstände:"205 206 #@ fb_like_trans_domain207 #: facebook-likes-you.php208 msgid "Exclude posts and pages:"209 msgstr "Seiten und Artikel ausschließen:"210 211 #@ fb_like_trans_domain212 #: facebook-likes-you.php213 msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."214 msgstr "Du kannst ID, Titel oder Slug der Artikel/Seiten eintippen, getrennt mit Kommas.<br />z.B. <code>17, Irish Stew, beef-stew</code>."215 216 #@ fb_like_trans_domain217 #: facebook-likes-you.php218 msgid "Exclude categories:"219 msgstr "Kategorien ausschließen:"220 221 #@ fb_like_trans_domain222 #: facebook-likes-you.php223 msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."224 msgstr "Du kannst ID, Titel oder Slug der Kategorien eintippen, getrennt mit Kommas.<br />z.B. <code>9, Stinky Cheeses, blue-cheese</code>."225 226 #@ fb_like_trans_domain227 #: facebook-likes-you.php228 msgid "Additional CSS style:"229 msgstr "Zusätzliches CSS:"230 231 #@ fb_like_trans_domain232 #: facebook-likes-you.php233 msgid "Added properties will be placed between <code>style=\"</code> and <code>\"</code>. If you want refer to Like button in e.g. <strong>style.css</strong>,<br />try to use <code>iframe.fblikes</code> or if you use XFBML <code>.fb_edge_widget_with_comment</code>."234 msgstr "Hinzugefügte Eigenschaften werden zwischen code>style=\"</code> und <code>\"</code> eingefügt. Wenn du dich z.B. in <strong>style.css</strong> auf den Like Button beziehen möchtest,<br />verwende <code>iframe.fblikes</code> oder, falls du XFBML benutzt, <code>.fb_edge_widget_with_comment</code>."235 236 #@ fb_like_trans_domain237 #: facebook-likes-you.php238 msgid "Help and Support"239 msgstr "Hilfe und Support"240 241 #@ fb_like_trans_domain242 #: facebook-likes-you.php243 msgid "Donate to this plugin"244 msgstr "Für dieses Plugin spenden"245 246 #@ fb_like_trans_domain247 #: facebook-likes-you.php248 msgid "Read the plugin homepage and its comments"249 msgstr "Plugin Homepage aufrufen"250 251 #@ default252 #: facebook-likes-you.php253 msgid "Save Changes"254 msgstr "Änderungen speichern"255 -
facebook-likes-you/trunk/languages/fb_like_trans_domain-es_ES.po
r406651 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! 1.3.2\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" … … 49 49 50 50 #: facebook-likes-you.php 51 msgid "HTML5 Mode:" 52 msgstr "Modo HTML5:" 53 54 #: facebook-likes-you.php 55 msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers." 56 msgstr "Recomendado si tu blog está preparado y/o necesitas un correcta validación HTML5. No está soportado por todos los navegadores." 57 58 #: facebook-likes-you.php 59 msgid "Automatically increase the height accordingly" 60 msgstr "Incrementar automáticamente la altura acorde" 61 62 #: facebook-likes-you.php 63 msgid "Show Send button:" 64 msgstr "Mostrar botón enviar:" 51 msgid "Fix for W3C Valid XFBML:" 52 msgstr "Correción para XFBML válido W3C:" 53 54 #: facebook-likes-you.php 55 msgid "Send Button:" 56 msgstr "Botón Enviar:" 65 57 66 58 #: facebook-likes-you.php … … 77 69 78 70 #: facebook-likes-you.php 71 msgid "Use Open Graph:" 72 msgstr "Usar Open Graph:" 73 74 #: facebook-likes-you.php 75 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 76 msgstr "Principalmente corrige un problema con miniaturas erróneas. Deshabilitar si tienes otro plugin Open Graph." 77 78 #: facebook-likes-you.php 79 msgid "Absolute path to default picture (used if not found any):" 80 msgstr "Ruta absoluta a la foto por defecto (usado si no se encuentra ninguna):" 81 82 #: facebook-likes-you.php 83 msgid "Back to default" 84 msgstr "Volver a valores por defecto" 85 86 #: facebook-likes-you.php 79 87 msgid "Your app ID:" 80 88 msgstr "Tu app ID:" 81 89 82 90 #: facebook-likes-you.php 83 msgid "If you have no app ID, you c en leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>."91 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 84 92 msgstr "Si no dispones de un app ID, puedes dejar esto vacío para usar el app ID por defecto de Facebook <code>165570960176857</code>,<br />pero recuerda que puedes ontener tu propia app ID <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registrando tu aplicación</a>." 85 93 … … 161 169 162 170 #: facebook-likes-you.php 171 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 172 msgstr "<strong>Truco gratis:</strong> Tu puedes obtener fácilmente <a href='http://www.facebook.com/insights/' target='_blank'>ideas para tu Web</a> proporcionadas por Facebook." 173 174 #: facebook-likes-you.php 175 msgid "Read the plugin homepage and its comments" 176 msgstr "Leer la página Web del plugin y sus comentarios" 177 178 #: facebook-likes-you.php 163 179 msgid "Donate to this plugin" 164 180 msgstr "Donar para este plugin" 165 181 166 182 #: facebook-likes-you.php 167 msgid "Read the plugin homepage and its comments"168 msgstr "Leer la página Web del plugin y sus comentarios"169 170 #: facebook-likes-you.php171 183 msgid "Save Changes" 172 184 msgstr "Guardar los cambios" … … 190 202 #: facebook-likes-you.php 191 203 msgid "In pixels too. Needed if you don't use XFBML." 192 msgstr "En píxeles tambi en. Necesario si usas XFBML."204 msgstr "En píxeles también. Necesario si usas XFBML." 193 205 194 206 #: facebook-likes-you.php … … 198 210 #: facebook-likes-you.php 199 211 msgid "Stream" 200 msgstr "F ujo"212 msgstr "Flujo" 201 213 202 214 #: facebook-likes-you.php … … 210 222 #: facebook-likes-you.php 211 223 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 212 msgstr "Mostrar la barra \"Encuéntranos en Facebook\" en la parte superior.<br /><small>Solo cuando cualquiera de los dos, fujo o conexiones están presentes.</small>" 213 224 msgstr "Mostrar la barra \"Encuéntranos en Facebook\" en la parte superior.<br /><small>Solo cuando cualquiera de los dos, flujo o conexiones están presentes.</small>" 225 226 #~ msgid "HTML5 Mode:" 227 #~ msgstr "Modo HTML5:" 228 229 #~ msgid "" 230 #~ "Recommended if your blog is HTML5 ready and/or you need proper " 231 #~ "validation. NOT supported by all web browsers." 232 #~ msgstr "" 233 #~ "Recomendado si tu blog está preparado y/o necesitas un correcta " 234 #~ "validación HTML5. No está soportado por todos los navegadores." 235 236 #~ msgid "Automatically increase the height accordingly" 237 #~ msgstr "Incrementar automáticamente la altura acorde" -
facebook-likes-you/trunk/languages/fb_like_trans_domain-id_ID.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 0-05-10 11:45-0800\n"6 "PO-Revision-Date: 2011-0 5-03 12:43+0100\n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-15 20:03+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 8 "Language-Team: Dadan Adrian Y. <[email protected]>\n" … … 17 17 18 18 #: facebook-likes-you.php 19 msgid "Important info for users" 20 msgstr "Informasi penting untuk user" 21 22 #: facebook-likes-you.php 19 23 msgid "Appearance" 20 24 msgstr "Tampilan" … … 45 49 46 50 #: facebook-likes-you.php 47 msgid "Show Faces:" 48 msgstr "Tampilkan: Photo" 51 msgid "Fix for W3C Valid XFBML:" 52 msgstr "Perbaikan untuk W3C Valid XFBML" 53 54 #: facebook-likes-you.php 55 msgid "Send Button:" 56 msgstr "Tombol Kirim" 57 58 #: facebook-likes-you.php 59 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 60 msgstr "Mengijinkan user anda untuk dengan mudah mengirim konten ke temannya. <strong>Membutuhkan XFBML</strong>" 61 62 #: facebook-likes-you.php 63 msgid "Google +1 Button:" 64 msgstr "Tombol Google +1:" 49 65 50 66 #: facebook-likes-you.php … … 53 69 54 70 #: facebook-likes-you.php 71 msgid "Use Open Graph:" 72 msgstr "Gunakan Open Graph" 73 74 #: facebook-likes-you.php 75 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 76 msgstr "Perbaikan utama masalah thumbnail yang salah. Matikan jika Anda memiliki plugin Open Graph lain." 77 78 #: facebook-likes-you.php 79 msgid "Absolute path to default picture (used if not found any):" 80 msgstr "Path absolut ke gambar default (gunakan jika tidak ditemukan):" 81 82 #: facebook-likes-you.php 83 msgid "Back to default" 84 msgstr "Kembali ke default" 85 86 #: facebook-likes-you.php 55 87 msgid "Your app ID:" 56 88 msgstr "Facebook App ID Anda:" 57 89 58 90 #: facebook-likes-you.php 59 msgid "If you have no app ID, you c en leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>."60 msgstr "Jika tidak/belum mempunyai app ID, biarkan kosong untuk menggunakan Facebook app ID <code>165570960176857</code> standard ,<br />Anda dapat mempunyai app ID sendiri dengan cara <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>mendaftarkan diri</a> disini."91 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 92 msgstr "Jika tidak/belum mempunyai app ID, biarkan kosong untuk menggunakan Facebook app ID <code>165570960176857</code> standard.<br />Anda dapat mempunyai app ID sendiri dengan cara <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>mendaftarkan diri</a> disini." 61 93 62 94 #: facebook-likes-you.php … … 69 101 70 102 #: facebook-likes-you.php 71 msgid "Automatically increase the height accordingly"72 msgstr "Secara otomatis tingginya menyesuaikan"73 74 #: facebook-likes-you.php75 103 msgid "Show at:" 76 104 msgstr "Tampilkan dibagian:" … … 141 169 142 170 #: facebook-likes-you.php 171 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 172 msgstr "<strong>Tip bebas:</strong> Anda dapat dengan mudah <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 173 174 #: facebook-likes-you.php 175 msgid "Read the plugin homepage and its comments" 176 msgstr "Baca halaman plugin ini dan komentarnya" 177 178 #: facebook-likes-you.php 143 179 msgid "Donate to this plugin" 144 180 msgstr "Kirim donasi untuk plugin ini" 145 181 146 182 #: facebook-likes-you.php 147 msgid "Read the plugin homepage and its comments"148 msgstr "Baca halaman plugin ini dan komentarnya"149 150 #: facebook-likes-you.php151 183 msgid "Save Changes" 152 184 msgstr "Simpan Perubahan" 153 185 186 #: facebook-likes-you.php 187 msgid "Title:" 188 msgstr "Judul:" 189 190 #: facebook-likes-you.php 191 msgid "Facebook Page URL:" 192 msgstr "URL Halaman Facebook:" 193 194 #: facebook-likes-you.php 195 msgid "The URL of the FB Page for this Like box." 196 msgstr "URL Halaman FB untuk Like box ini." 197 198 #: facebook-likes-you.php 199 msgid "The width of the widget in pixels." 200 msgstr "Lebar widget dalam pixel." 201 202 #: facebook-likes-you.php 203 msgid "In pixels too. Needed if you don't use XFBML." 204 msgstr "Dalam pixel juga. Diperlukan jika tidak menggunakan XFBML." 205 206 #: facebook-likes-you.php 207 msgid "Show Faces" 208 msgstr "Tampilkan Wajah" 209 210 #: facebook-likes-you.php 211 msgid "Stream" 212 msgstr "Stream" 213 214 #: facebook-likes-you.php 215 msgid "Show the profile stream for the public profile." 216 msgstr "Tampilkan profile stream untuk profil publik." 217 218 #: facebook-likes-you.php 219 msgid "Header" 220 msgstr "Judul" 221 222 #: facebook-likes-you.php 223 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 224 msgstr "Tampilkan baris 'Find us on Facebook' diatas.<br/><small>Hanya jika ada stream atau koneksi.</small>" 225 -
facebook-likes-you/trunk/languages/fb_like_trans_domain-it_IT.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 0-12-03 10:35+0100\n"6 "PO-Revision-Date: 2011-0 5-03 12:43+0100\n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-17 19:18+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 8 "Language-Team: Paolo Nicorelli <[email protected]>\n" … … 17 17 18 18 #: facebook-likes-you.php 19 msgid "Important info for users" 20 msgstr "Informazioni importanti per gli utenti" 21 22 #: facebook-likes-you.php 19 23 msgid "Appearance" 20 24 msgstr "Aspetto" … … 45 49 46 50 #: facebook-likes-you.php 47 msgid "Show Faces:" 48 msgstr "Visualizzare icone:" 51 msgid "Fix for W3C Valid XFBML:" 52 msgstr "Fix per usare XFBML con validazione W3C:" 53 54 #: facebook-likes-you.php 55 msgid "Send Button:" 56 msgstr "Pulsante di Invio:" 57 58 #: facebook-likes-you.php 59 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 60 msgstr "Permette agli utenti di inviare facilmente il contenuto ai tuoi amici. <strong>Richiede XFBML</strong>." 61 62 #: facebook-likes-you.php 63 msgid "Google +1 Button:" 64 msgstr "Pulsante Google +1:" 49 65 50 66 #: facebook-likes-you.php … … 53 69 54 70 #: facebook-likes-you.php 71 msgid "Use Open Graph:" 72 msgstr "Usa Open Graph:" 73 74 #: facebook-likes-you.php 75 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 76 msgstr "Aggiusta principalmente un problema con le thumbnails sbagliate. Disattivare se si possiede un altro plugin per Open Graph." 77 78 #: facebook-likes-you.php 79 msgid "Absolute path to default picture (used if not found any):" 80 msgstr "Percorso assoluto all'immagine di default (usata se non ne esistono altre):" 81 82 #: facebook-likes-you.php 83 msgid "Back to default" 84 msgstr "Reimposta l'immagine di default" 85 86 #: facebook-likes-you.php 55 87 msgid "Your app ID:" 56 88 msgstr "La tua Facebook App ID:" 57 89 58 90 #: facebook-likes-you.php 59 msgid "If you have no app ID, you c en leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>."60 msgstr "Nel caso tu non abbia una Facebook App ID lascia il campo vuoto, verrà utilizzata la ID di default <code>165570960176857</code>.<br /> ricordati che puoi ottenere una App ID <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registrando l'applicazione qui</a>."91 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 92 msgstr "Nel caso tu non abbia una Facebook App ID lascia il campo vuoto, verrà utilizzata la ID di default <code>165570960176857</code>.<br />Ricordati che puoi ottenere una App ID <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registrando l'applicazione qui</a>." 61 93 62 94 #: facebook-likes-you.php … … 69 101 70 102 #: facebook-likes-you.php 71 msgid "Automatically increase the height accordingly"72 msgstr "Aumentare l'altezza automaticamente"73 74 #: facebook-likes-you.php75 103 msgid "Show at:" 76 104 msgstr "Visualizza in:" … … 141 169 142 170 #: facebook-likes-you.php 171 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 172 msgstr "<strong>Avviso:</strong> Puoi usare facilmente <a href='http://www.facebook.com/insights/' target='_blank'>insights per il tuo sito</a> fornito da Facebook." 173 174 #: facebook-likes-you.php 175 msgid "Read the plugin homepage and its comments" 176 msgstr "Vai alla homepage del plugins ed leggi i commenti" 177 178 #: facebook-likes-you.php 143 179 msgid "Donate to this plugin" 144 180 msgstr "Fai una donazione per il plugin" 145 181 146 182 #: facebook-likes-you.php 147 msgid "Read the plugin homepage and its comments"148 msgstr "Vai alla homepage del plugins ed leggi i commenti"149 150 #: facebook-likes-you.php151 183 msgid "Save Changes" 152 184 msgstr "Salva Modifiche" … … 158 190 #: facebook-likes-you.php 159 191 msgid "Facebook Page URL:" 160 msgstr " Facebook Page URL:"192 msgstr "Indirizzo URL della pagina Facebook:" 161 193 162 194 #: facebook-likes-you.php 163 195 msgid "The URL of the FB Page for this Like box." 164 msgstr " The URL of the FB Page for this Like box."196 msgstr "L'indirizzo URL della pagina FB per questo box Mi Piace." 165 197 166 198 #: facebook-likes-you.php 167 199 msgid "The width of the widget in pixels." 168 msgstr " The width of the widgetin pixels."200 msgstr "La lunghezza del contenitore in pixels." 169 201 170 202 #: facebook-likes-you.php 171 203 msgid "In pixels too. Needed if you don't use XFBML." 172 msgstr "In pixels too. Needed if you don't use XFBML." 173 174 #: facebook-likes-you.php 175 msgid "Connections:" 176 msgstr "Connections:" 177 178 #: facebook-likes-you.php 179 msgid "Count of shown users who've liked this Page." 180 msgstr "Count of shown users who've liked this Page." 204 msgstr "Anche questo in pixels. Ti serve se non usi XFBML." 205 206 #: facebook-likes-you.php 207 msgid "Show Faces" 208 msgstr "Mostra Volti" 181 209 182 210 #: facebook-likes-you.php … … 186 214 #: facebook-likes-you.php 187 215 msgid "Show the profile stream for the public profile." 188 msgstr " Show the profile stream for the public profile."216 msgstr "Mostra lo stream del il profilo pubblico." 189 217 190 218 #: facebook-likes-you.php 191 219 msgid "Header" 192 msgstr " Header"220 msgstr "Intestazioni" 193 221 194 222 #: facebook-likes-you.php 195 223 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 196 msgstr " Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"197 224 msgstr "Mostra la barra 'Cercaci su Facebook' in alto.<br /><small>Solo quando gli stream o le connessioni sono presenti.</small>" 225 -
facebook-likes-you/trunk/languages/fb_like_trans_domain-pl_PL.po
r422256 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 4.5\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-1 1 21:15+0100\n"6 "PO-Revision-Date: 2011-08-15 20:14+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 8 "Language-Team: Piotr Sochalewski <[email protected]>\n" … … 49 49 50 50 #: facebook-likes-you.php 51 msgid "HTML5 Mode:" 52 msgstr "Tryb HTML5:" 53 54 #: facebook-likes-you.php 55 msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers." 56 msgstr "Polecane, gdy używasz HTML5 i zależy Ci na poprawnej walidacji. Niewspierane przez starsze przeglądarki." 57 58 #: facebook-likes-you.php 59 msgid "Show Send button:" 60 msgstr "Przycisk 'Wyślij':" 51 msgid "Fix for W3C Valid XFBML:" 52 msgstr "Poprawna walidacja XFBML:" 53 54 #: facebook-likes-you.php 55 msgid "Send Button:" 56 msgstr "Przycisk Wyślij:" 61 57 62 58 #: facebook-likes-you.php … … 173 169 174 170 #: facebook-likes-you.php 171 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 172 msgstr "<strong>Rada:</strong> Statystyki dotyczące reakcji społeczności Facebooka na Twoje wpisy możesz znaleźć <a href='http://www.facebook.com/insights/' target='_blank'>tutaj</a>." 173 174 #: facebook-likes-you.php 175 msgid "Read the plugin homepage and its comments" 176 msgstr "Odwiedź stronę www wtyczki" 177 178 #: facebook-likes-you.php 175 179 msgid "Donate to this plugin" 176 180 msgstr "Przekaż darowiznę na rzecz autora" 177 181 178 182 #: facebook-likes-you.php 179 msgid "Read the plugin homepage and its comments"180 msgstr "Odwiedź stronę www wtyczki"181 182 #: facebook-likes-you.php183 183 msgid "Save Changes" 184 184 msgstr "Zapisz zmiany" 185 185 186 186 #: facebook-likes-you.php 187 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook."188 msgstr "<strong>Rada:</strong> Statystyki dotyczące reakcji społeczności Facebooka na Twoje wpisy możesz znaleźć <a href='http://www.facebook.com/insights/' target='_blank'>tutaj</a>."189 190 #: facebook-likes-you.php191 187 msgid "Title:" 192 188 msgstr "Tytuł:" … … 228 224 msgstr "Pokazuj 'Znajdź nas na Facebooku' u góry.<br /><small>Gdy wybrano pokazywanie zawartości lub użytkowników</small>" 229 225 226 #~ msgid "HTML5 Mode:" 227 #~ msgstr "Tryb HTML5:" 228 229 #~ msgid "" 230 #~ "Recommended if your blog is HTML5 ready and/or you need proper " 231 #~ "validation. NOT supported by all web browsers." 232 #~ msgstr "" 233 #~ "Polecane, gdy używasz HTML5 i zależy Ci na poprawnej walidacji. " 234 #~ "Niewspierane przez starsze przeglądarki." -
facebook-likes-you/trunk/languages/fb_like_trans_domain-pt_BR.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 0-05-10 11:45-0800\n"6 "PO-Revision-Date: 2011-0 7-02 17:18+0100\n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-14 19:02+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 8 "Language-Team: Paulo Vital <[email protected]>\n" … … 16 16 17 17 #: facebook-likes-you.php 18 msgid "Important info for users" 19 msgstr "" 20 21 #: facebook-likes-you.php 18 22 msgid "Appearance" 19 23 msgstr "Aparência" … … 44 48 45 49 #: facebook-likes-you.php 46 msgid "Show Faces:" 47 msgstr "Mostrar ícones:" 50 msgid "Fix for W3C Valid XFBML:" 51 msgstr "" 52 53 #: facebook-likes-you.php 54 msgid "Send Button:" 55 msgstr "" 56 57 #: facebook-likes-you.php 58 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 59 msgstr "" 60 61 #: facebook-likes-you.php 62 msgid "Google +1 Button:" 63 msgstr "" 48 64 49 65 #: facebook-likes-you.php … … 52 68 53 69 #: facebook-likes-you.php 70 msgid "Use Open Graph:" 71 msgstr "" 72 73 #: facebook-likes-you.php 74 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 75 msgstr "" 76 77 #: facebook-likes-you.php 78 msgid "Absolute path to default picture (used if not found any):" 79 msgstr "" 80 81 #: facebook-likes-you.php 82 msgid "Back to default" 83 msgstr "" 84 85 #: facebook-likes-you.php 54 86 msgid "Your app ID:" 55 87 msgstr "Seu Facebook App ID:" 56 88 57 89 #: facebook-likes-you.php 58 msgid "If you have no app ID, you c en leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>."90 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 59 91 msgstr "Caso não tenha um Facebook App ID, você pode deixar este campo vazio para que seje utilizado o Facebook App ID padrão <code>165570960176857</code>.<br />Você pode obter um Facebook App ID próprio <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registrando sua aplicação aqui</a>." 60 92 … … 68 100 69 101 #: facebook-likes-you.php 70 msgid "Automatically increase the height accordingly"71 msgstr "Aumentar a altura automaticamente"72 73 #: facebook-likes-you.php74 102 msgid "Show at:" 75 103 msgstr "Mostrar no:" … … 140 168 141 169 #: facebook-likes-you.php 170 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 171 msgstr "" 172 173 #: facebook-likes-you.php 174 msgid "Read the plugin homepage and its comments" 175 msgstr "Leia o site do plugin e seus comentários" 176 177 #: facebook-likes-you.php 142 178 msgid "Donate to this plugin" 143 179 msgstr "Doar para este plugin" 144 180 145 181 #: facebook-likes-you.php 146 msgid "Read the plugin homepage and its comments"147 msgstr "Leia o site do plugin e seus comentários"148 149 #: facebook-likes-you.php150 182 msgid "Save Changes" 151 183 msgstr "Salvar Alterações" … … 172 204 173 205 #: facebook-likes-you.php 174 msgid "Connections:" 175 msgstr "Connections:" 176 177 #: facebook-likes-you.php 178 msgid "Count of shown users who've liked this Page." 179 msgstr "Count of shown users who've liked this Page." 206 #, fuzzy 207 msgid "Show Faces" 208 msgstr "Mostrar ícones" 180 209 181 210 #: facebook-likes-you.php -
facebook-likes-you/trunk/languages/fb_like_trans_domain-ru_RU.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: \n"6 "PO-Revision-Date: 2011-0 5-03 12:44+0100\n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-14 19:02+0100\n" 7 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 8 "Language-Team: Denis Kuligin <[email protected]>\n" … … 15 15 "X-Poedit-SearchPath-0: .\n" 16 16 17 #@ fb_like_trans_domain 17 #: facebook-likes-you.php 18 msgid "Important info for users" 19 msgstr "" 20 21 # @ fb_like_trans_domain 18 22 #: facebook-likes-you.php 19 23 msgid "Appearance" 20 24 msgstr "Внешний вид" 21 25 22 # @ fb_like_trans_domain26 # @ fb_like_trans_domain 23 27 #: facebook-likes-you.php 24 28 msgid "Width:" 25 29 msgstr "Ширина:" 26 30 27 #@ fb_like_trans_domain 31 #: facebook-likes-you.php 32 msgid "Height:" 33 msgstr "" 34 35 # @ fb_like_trans_domain 28 36 #: facebook-likes-you.php 29 37 msgid "Layout:" 30 38 msgstr "Расположение:" 31 39 32 # @ fb_like_trans_domain40 # @ fb_like_trans_domain 33 41 #: facebook-likes-you.php 34 42 msgid "Verb to display:" 35 43 msgstr "Действие для отображения:" 36 44 37 # @ fb_like_trans_domain45 # @ fb_like_trans_domain 38 46 #: facebook-likes-you.php 39 47 msgid "Font:" 40 48 msgstr "Шрифт:" 41 49 42 # @ fb_like_trans_domain50 # @ fb_like_trans_domain 43 51 #: facebook-likes-you.php 44 52 msgid "Color Scheme:" 45 53 msgstr "Цветовая схема:" 46 54 47 #@ fb_like_trans_domain 48 #: facebook-likes-you.php 49 msgid "Show Faces:" 50 msgstr "Показать лица:" 51 52 #@ fb_like_trans_domain 53 #: facebook-likes-you.php 54 msgid "Automatically increase the height accordingly" 55 msgstr "Автоматическое увеличение высоты соответственно" 56 57 #@ fb_like_trans_domain 55 #: facebook-likes-you.php 56 msgid "Fix for W3C Valid XFBML:" 57 msgstr "" 58 59 #: facebook-likes-you.php 60 msgid "Send Button:" 61 msgstr "" 62 63 #: facebook-likes-you.php 64 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 65 msgstr "" 66 67 #: facebook-likes-you.php 68 msgid "Google +1 Button:" 69 msgstr "" 70 71 # @ fb_like_trans_domain 58 72 #: facebook-likes-you.php 59 73 msgid "Use <span title='XFBML version is more versatile, but requires use of the JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 60 74 msgstr "Использовать <span title='XFBML версия является более универсальным, но требует использования JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 61 75 62 #@ fb_like_trans_domain 76 #: facebook-likes-you.php 77 msgid "Use Open Graph:" 78 msgstr "" 79 80 #: facebook-likes-you.php 81 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 82 msgstr "" 83 84 #: facebook-likes-you.php 85 msgid "Absolute path to default picture (used if not found any):" 86 msgstr "" 87 88 #: facebook-likes-you.php 89 msgid "Back to default" 90 msgstr "" 91 92 # @ fb_like_trans_domain 63 93 #: facebook-likes-you.php 64 94 msgid "Your app ID:" 65 95 msgstr "ID Вашего приложения:" 66 96 67 # @ fb_like_trans_domain68 #: facebook-likes-you.php 69 msgid "If you have no app ID, you c en leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>."70 msgstr "Если у вас нет APP ID, будет использован ID по умолчанию <code>165570960176857</code>,<br /> но помните, что вы можете получить свой собственный ID приложения. <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>Регистрация вашего приложения</a>."71 72 # @ fb_like_trans_domain97 # @ fb_like_trans_domain 98 #: facebook-likes-you.php 99 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 100 msgstr "Если у вас нет APP ID, будет использован ID по умолчанию <code>165570960176857</code>,<br />но помните, что вы можете получить свой собственный ID приложения. <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>Регистрация вашего приложения</a>." 101 102 # @ fb_like_trans_domain 73 103 #: facebook-likes-you.php 74 104 msgid "Position" 75 105 msgstr "Позиция" 76 106 77 # @ fb_like_trans_domain107 # @ fb_like_trans_domain 78 108 #: facebook-likes-you.php 79 109 msgid "Remember that you can place it manually by <code>[fb-like-button]</code>. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 80 110 msgstr "Помните, что вы можете поместить кнопку используя <code>[fb-like-button]</code> в любом месте. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 81 111 82 # @ fb_like_trans_domain112 # @ fb_like_trans_domain 83 113 #: facebook-likes-you.php 84 114 msgid "Show at:" 85 115 msgstr "Показывать:" 86 116 87 # @ fb_like_trans_domain117 # @ fb_like_trans_domain 88 118 #: facebook-likes-you.php 89 119 msgid "Top" 90 120 msgstr "вверху" 91 121 92 # @ fb_like_trans_domain122 # @ fb_like_trans_domain 93 123 #: facebook-likes-you.php 94 124 msgid "Bottom" 95 125 msgstr "внизу" 96 126 97 # @ fb_like_trans_domain127 # @ fb_like_trans_domain 98 128 #: facebook-likes-you.php 99 129 msgid "Show on:" 100 130 msgstr "Показывать:" 101 131 102 # @ fb_like_trans_domain132 # @ fb_like_trans_domain 103 133 #: facebook-likes-you.php 104 134 msgid "Page" 105 135 msgstr "на странице" 106 136 107 # @ fb_like_trans_domain137 # @ fb_like_trans_domain 108 138 #: facebook-likes-you.php 109 139 msgid "Post" 110 140 msgstr "в записях" 111 141 112 # @ fb_like_trans_domain142 # @ fb_like_trans_domain 113 143 #: facebook-likes-you.php 114 144 msgid "Home" 115 145 msgstr "на Главной странице" 116 146 117 # @ fb_like_trans_domain147 # @ fb_like_trans_domain 118 148 #: facebook-likes-you.php 119 149 msgid "Search" 120 150 msgstr "в результатах поиска" 121 151 122 # @ fb_like_trans_domain152 # @ fb_like_trans_domain 123 153 #: facebook-likes-you.php 124 154 msgid "Archive" 125 155 msgstr "в Архивах" 126 156 127 # @ fb_like_trans_domain157 # @ fb_like_trans_domain 128 158 #: facebook-likes-you.php 129 159 msgid "Margins:" 130 160 msgstr "Поля:" 131 161 132 # @ fb_like_trans_domain162 # @ fb_like_trans_domain 133 163 #: facebook-likes-you.php 134 164 msgid "Exclude posts and pages:" 135 165 msgstr "Исключить посты и/или страницы:" 136 166 137 #@ fb_like_trans_domain 167 # @ fb_like_trans_domain 168 #: facebook-likes-you.php 169 msgid "Exclude categories:" 170 msgstr "Исключить категории:" 171 172 # @ fb_like_trans_domain 138 173 #: facebook-likes-you.php 139 174 msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>." 140 175 msgstr "Вы можете указать номер, тег или название статьи, разделяйте запятыми.<br />Например, <code>17, Irish Stew, beef-stew</code>." 141 176 142 #@ fb_like_trans_domain 143 #: facebook-likes-you.php 144 msgid "Exclude categories:" 145 msgstr "Исключить категории:" 146 147 #@ fb_like_trans_domain 177 # @ fb_like_trans_domain 148 178 #: facebook-likes-you.php 149 179 msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>." 150 180 msgstr "Вы можете указать ID категории, имя статьи или тег, разделяйте запятыми.<br />Например, <code>9, Stinky Cheeses, blue-cheese</code>." 151 181 152 # @ fb_like_trans_domain182 # @ fb_like_trans_domain 153 183 #: facebook-likes-you.php 154 184 msgid "Additional CSS style:" 155 185 msgstr "Дополнительный CSS код:" 156 186 157 # @ fb_like_trans_domain187 # @ fb_like_trans_domain 158 188 #: facebook-likes-you.php 159 189 msgid "Added properties will be placed between <code>style=\"</code> and <code>\"</code>. If you want refer to Like button in e.g. <strong>style.css</strong>,<br />try to use <code>iframe.fblikes</code> or if you use XFBML <code>.fb_edge_widget_with_comment</code>." 160 190 msgstr "Добавленное свойство будет размещено между <code>style=\"</code> и <code>\"</code> . Если вы хотите сослаться на Like кнопку как в примере <strong>style.css</strong>,<br />попробуйте использовать <code>iframe.fblikes</code> или если вы используете XFBML <code>.fb_edge_widget_with_comment</code>." 161 191 162 # @ fb_like_trans_domain192 # @ fb_like_trans_domain 163 193 #: facebook-likes-you.php 164 194 msgid "Help and Support" 165 195 msgstr "Помощь и поддержка" 166 196 167 #@ fb_like_trans_domain 197 #: facebook-likes-you.php 198 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 199 msgstr "" 200 201 # @ fb_like_trans_domain 202 #: facebook-likes-you.php 203 msgid "Read the plugin homepage and its comments" 204 msgstr "Найти информацию и комментарии можно на странице плагина" 205 206 # @ fb_like_trans_domain 168 207 #: facebook-likes-you.php 169 208 msgid "Donate to this plugin" 170 209 msgstr "Поддержать этот плагин" 171 210 172 #@ fb_like_trans_domain 173 #: facebook-likes-you.php 174 msgid "Read the plugin homepage and its comments" 175 msgstr "Найти информацию и комментарии можно на странице плагина" 176 177 #@ default 211 # @ default 178 212 #: facebook-likes-you.php 179 213 msgid "Save Changes" 180 214 msgstr "Сохранить изменения" 181 215 216 #: facebook-likes-you.php 217 msgid "Title:" 218 msgstr "" 219 220 #: facebook-likes-you.php 221 msgid "Facebook Page URL:" 222 msgstr "" 223 224 #: facebook-likes-you.php 225 msgid "The URL of the FB Page for this Like box." 226 msgstr "" 227 228 #: facebook-likes-you.php 229 msgid "The width of the widget in pixels." 230 msgstr "" 231 232 #: facebook-likes-you.php 233 msgid "In pixels too. Needed if you don't use XFBML." 234 msgstr "" 235 236 # @ fb_like_trans_domain 237 #: facebook-likes-you.php 238 #, fuzzy 239 msgid "Show Faces" 240 msgstr "Показать лица" 241 242 #: facebook-likes-you.php 243 msgid "Stream" 244 msgstr "" 245 246 #: facebook-likes-you.php 247 msgid "Show the profile stream for the public profile." 248 msgstr "" 249 250 #: facebook-likes-you.php 251 msgid "Header" 252 msgstr "" 253 254 #: facebook-likes-you.php 255 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 256 msgstr "" 257 -
facebook-likes-you/trunk/languages/fb_like_trans_domain-tr_TR.po
r403741 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! v1. 1.6\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: \n"6 "PO-Revision-Date: 2011-0 6-23 23:01+0200\n"7 "Last-Translator: \n"8 "Language-Team: Semih Yeşilyurt \n"5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" 6 "PO-Revision-Date: 2011-08-15 20:05+0100\n" 7 "Last-Translator: Piotr Sochalewski <[email protected]>\n" 8 "Language-Team: Semih Yeşilyurt <[email protected]>\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" … … 19 19 "X-Poedit-SearchPath-0: .\n" 20 20 21 #@ fb_like_trans_domain 21 # @ fb_like_trans_domain 22 #: facebook-likes-you.php 23 msgid "Important info for users" 24 msgstr "Kullanıcı bilgileri için önemli" 25 26 # @ fb_like_trans_domain 27 #: facebook-likes-you.php 28 msgid "Appearance" 29 msgstr "Görünüm" 30 31 # @ fb_like_trans_domain 32 #: facebook-likes-you.php 33 msgid "Width:" 34 msgstr "Genişlik:" 35 36 # @ fb_like_trans_domain 37 #: facebook-likes-you.php 38 msgid "Height:" 39 msgstr "Yükseklik:" 40 41 # @ fb_like_trans_domain 42 #: facebook-likes-you.php 43 msgid "Layout:" 44 msgstr "Düzen:" 45 46 # @ fb_like_trans_domain 47 #: facebook-likes-you.php 48 msgid "Verb to display:" 49 msgstr "Görüntülemek için:" 50 51 # @ fb_like_trans_domain 52 #: facebook-likes-you.php 53 msgid "Font:" 54 msgstr "Yazı sitili:" 55 56 # @ fb_like_trans_domain 57 #: facebook-likes-you.php 58 msgid "Color Scheme:" 59 msgstr "Renk Düzeni:" 60 61 #: facebook-likes-you.php 62 msgid "Fix for W3C Valid XFBML:" 63 msgstr "XFBML için W3C geçerli düzeltme:" 64 65 #: facebook-likes-you.php 66 msgid "Send Button:" 67 msgstr "Gönder Düğmesini Göster:" 68 69 #: facebook-likes-you.php 70 msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>." 71 msgstr "Bu seçenek kullanıcıların kolayca onların facebook arkadaşlarına içerik göndermesini sağlar. <strong>XFBML Gerektirir</strong>." 72 73 #: facebook-likes-you.php 74 msgid "Google +1 Button:" 75 msgstr "Google +1 Düğmesi:" 76 77 # @ fb_like_trans_domain 78 #: facebook-likes-you.php 79 msgid "Use <span title='XFBML version is more versatile, but requires use of the JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 80 msgstr "<span title='XFBML sürümünü kullanmak daha kullanışlı, ancak JavaScript SDK kullanılmasını gerektirir' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 81 82 #: facebook-likes-you.php 83 msgid "Use Open Graph:" 84 msgstr "Açık Grafik kullanın:" 85 86 #: facebook-likes-you.php 87 msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin." 88 msgstr "Temelde yanlış küçük bir sorunu giderir. Başka bir Açık Grafik eklentisi varsa kapatın." 89 90 #: facebook-likes-you.php 91 msgid "Absolute path to default picture (used if not found any):" 92 msgstr "Varsayılan resim yolu (başka kullanılan yoksa):" 93 94 #: facebook-likes-you.php 95 msgid "Back to default" 96 msgstr "Varsayılana dön:" 97 98 # @ fb_like_trans_domain 99 #: facebook-likes-you.php 100 msgid "Your app ID:" 101 msgstr "Uygulama ID:" 102 103 # @ fb_like_trans_domain 104 #: facebook-likes-you.php 105 msgid "If you have no app ID, you can leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='https://www.facebook.com/developers/createapp.php' target='_blank'>registering your application</a>." 106 msgstr "Hiçbir uygulamanız yoksa, varsayılan kullanmak için bu boş bırakın. Facebook uygulaması kimlik <code>165570960176857</ code><br />ama kendi bir uygulama kimliği almak unutmayın <a href='http://developers.facebook.com/setup/' target=' _blank '>uygulama kayıt</a>." 107 108 # @ fb_like_trans_domain 109 #: facebook-likes-you.php 110 msgid "Position" 111 msgstr "Pozisyon" 112 113 # @ fb_like_trans_domain 114 #: facebook-likes-you.php 115 msgid "Remember that you can place it manually by <code>[fb-like-button]</code>. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 116 msgstr "<code>[fb-like-button]</code> etiketlerinin arasına yerleştirebilirsiniz.Bunun için wordpress editörünü kullanamazsınız.php editörü kullanmalısınız - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 117 118 # @ fb_like_trans_domain 119 #: facebook-likes-you.php 120 msgid "Show at:" 121 msgstr "Gösterim pozisyonu:" 122 123 # @ fb_like_trans_domain 124 #: facebook-likes-you.php 125 msgid "Top" 126 msgstr "Yukarda" 127 128 # @ fb_like_trans_domain 129 #: facebook-likes-you.php 130 msgid "Bottom" 131 msgstr "Aşağıda" 132 133 # @ fb_like_trans_domain 134 #: facebook-likes-you.php 135 msgid "Show on:" 136 msgstr "Gösterilecek sayfalar:" 137 138 # @ fb_like_trans_domain 139 #: facebook-likes-you.php 140 msgid "Page" 141 msgstr "Sayfa" 142 143 # @ fb_like_trans_domain 144 #: facebook-likes-you.php 145 msgid "Post" 146 msgstr "Yazı" 147 148 # @ fb_like_trans_domain 149 #: facebook-likes-you.php 150 msgid "Home" 151 msgstr "Ana Sayfa" 152 153 # @ fb_like_trans_domain 154 #: facebook-likes-you.php 155 msgid "Search" 156 msgstr "Arama" 157 158 # @ fb_like_trans_domain 159 #: facebook-likes-you.php 160 msgid "Archive" 161 msgstr "Arşiv" 162 163 # @ fb_like_trans_domain 164 #: facebook-likes-you.php 165 msgid "Margins:" 166 msgstr "Kenar boşlukları:" 167 168 # @ fb_like_trans_domain 169 #: facebook-likes-you.php 170 msgid "Exclude posts and pages:" 171 msgstr "Mesajlar ve Sayfaları hariç tut:" 172 173 # @ fb_like_trans_domain 174 #: facebook-likes-you.php 175 msgid "Exclude categories:" 176 msgstr "Kategorileri Hariç:" 177 178 # @ fb_like_trans_domain 179 #: facebook-likes-you.php 180 msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>." 181 msgstr "Her mesaj / sayfa numarası, başlık ya da virgülle ayrılmış slug için yazabilirsiniz..<br />Örneğin <code>17, İrlanda Yahni, sığır-güveç.</code>." 182 183 # @ fb_like_trans_domain 184 #: facebook-likes-you.php 185 msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>." 186 msgstr "Her kategori kimliği, adı veya virgülle ayrılmış slug için yazabilirsiniz..<br />Örneğin <code>9, Stinky peynirler, mavi peynir.</code>." 187 188 # @ fb_like_trans_domain 189 #: facebook-likes-you.php 190 msgid "Additional CSS style:" 191 msgstr "Ek CSS stili:" 192 193 # @ fb_like_trans_domain 194 #: facebook-likes-you.php 195 msgid "Added properties will be placed between <code>style=\"</code> and <code>\"</code>. If you want refer to Like button in e.g. <strong>style.css</strong>,<br />try to use <code>iframe.fblikes</code> or if you use XFBML <code>.fb_edge_widget_with_comment</code>." 196 msgstr "Eklenen özellikler etiketi arasında yer alacak <code>style=\"</code> and <code>\"</code>. İsterseniz örneğin beğen düğmesini gibi <strong>style.css</strong><br />XFBML kullanmak veya eğer <code>iframe.fblikes</code> kullanmayı deneyin. <code>fb_edge_widget_with_comment</ code>." 197 198 # @ fb_like_trans_domain 199 #: facebook-likes-you.php 200 msgid "Help and Support" 201 msgstr "Yardım ve Destek" 202 203 #: facebook-likes-you.php 204 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 205 msgstr "<strong>İpucu:</strong>Facebook tarafından verilen <a href='http://www.facebook.com/insights/' target='_blank'>insights</a> ile web siteniz için kolayca bilgi alabilirsiniz." 206 207 # @ fb_like_trans_domain 208 #: facebook-likes-you.php 209 msgid "Read the plugin homepage and its comments" 210 msgstr "Eklenti Ana Sayfasına Bakın veya Yorumları okuyun" 211 212 # @ fb_like_trans_domain 213 #: facebook-likes-you.php 214 msgid "Donate to this plugin" 215 msgstr "Bu Eklenti için Bağış" 216 217 # @ default 218 #: facebook-likes-you.php 219 msgid "Save Changes" 220 msgstr "Değişiklikleri Kaydet" 221 222 # @ fb_like_trans_domain 22 223 #: facebook-likes-you.php 23 224 msgid "Title:" 24 225 msgstr "Başlık:" 25 226 26 # @ fb_like_trans_domain227 # @ fb_like_trans_domain 27 228 #: facebook-likes-you.php 28 229 msgid "Facebook Page URL:" 29 230 msgstr "Facebook Sayfa URL:" 30 231 31 # @ fb_like_trans_domain232 # @ fb_like_trans_domain 32 233 #: facebook-likes-you.php 33 234 msgid "The URL of the FB Page for this Like box." 34 235 msgstr "Bunun gibi facebook sayfa URLsi." 35 236 36 #@ fb_like_trans_domain 37 #: facebook-likes-you.php 38 msgid "Width:" 39 msgstr "Genişlik:" 40 41 #@ fb_like_trans_domain 237 # @ fb_like_trans_domain 42 238 #: facebook-likes-you.php 43 239 msgid "The width of the widget in pixels." 44 240 msgstr "Piksel olarak bileşen genişliği." 45 241 46 #@ fb_like_trans_domain 47 #: facebook-likes-you.php 48 msgid "Height:" 49 msgstr "Yükseklik:" 50 51 #@ fb_like_trans_domain 242 # @ fb_like_trans_domain 52 243 #: facebook-likes-you.php 53 244 msgid "In pixels too. Needed if you don't use XFBML." 54 msgstr "Çok piksel gerekli. Eğer XFBML kullanmıyorsanız gerekli."55 56 # @ fb_like_trans_domain245 msgstr "Çok piksel gerekli. Eğer XFBML kullanmıyorsanız gerekli." 246 247 # @ fb_like_trans_domain 57 248 #: facebook-likes-you.php 58 249 msgid "Show Faces" 59 250 msgstr "Yüzleri Göster" 60 251 61 # @ fb_like_trans_domain252 # @ fb_like_trans_domain 62 253 #: facebook-likes-you.php 63 254 msgid "Stream" 64 255 msgstr "Profil Bağlantısı" 65 256 66 # @ fb_like_trans_domain257 # @ fb_like_trans_domain 67 258 #: facebook-likes-you.php 68 259 msgid "Show the profile stream for the public profile." 69 260 msgstr "Profil bağlantısını göster." 70 261 71 # @ fb_like_trans_domain262 # @ fb_like_trans_domain 72 263 #: facebook-likes-you.php 73 264 msgid "Header" 74 265 msgstr "Başlık" 75 266 76 # @ fb_like_trans_domain267 # @ fb_like_trans_domain 77 268 #: facebook-likes-you.php 78 269 msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>" 79 msgstr "Üst barda 'Facebook'ta bizi bulun'u göster.<br /><small>Sadece profil bağlantısı mevcut olduğunda</small>" 80 81 #@ fb_like_trans_domain 82 #: facebook-likes-you.php 83 msgid "Important info for users" 84 msgstr "Kullanıcı bilgileri için önemli" 85 86 #@ fb_like_trans_domain 87 #: facebook-likes-you.php 88 msgid "Appearance" 89 msgstr "Görünüm" 90 91 #@ fb_like_trans_domain 92 #: facebook-likes-you.php 93 msgid "Layout:" 94 msgstr "Düzen:" 95 96 #@ fb_like_trans_domain 97 #: facebook-likes-you.php 98 msgid "Verb to display:" 99 msgstr "Görüntülemek için:" 100 101 #@ fb_like_trans_domain 102 #: facebook-likes-you.php 103 msgid "Font:" 104 msgstr "Yazı sitili:" 105 106 #@ fb_like_trans_domain 107 #: facebook-likes-you.php 108 msgid "Color Scheme:" 109 msgstr "Renk Düzeni:" 110 111 #@ fb_like_trans_domain 112 #: facebook-likes-you.php 113 msgid "HTML5 Mode:" 114 msgstr "HTML5 Modu:" 115 116 #@ fb_like_trans_domain 117 #: facebook-likes-you.php 118 msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers." 119 msgstr "Blogunuza HTML5 uyumu doğrulaması gerekiyorsa önerilir. Tüm web tarayıcıları tarafından desteklenmez." 120 121 #@ fb_like_trans_domain 122 #: facebook-likes-you.php 123 msgid "Show Faces:" 124 msgstr "Yüzü Göster:" 125 126 #@ fb_like_trans_domain 127 #: facebook-likes-you.php 128 msgid "Automatically increase the height accordingly" 129 msgstr "Buna göre otomatik yükseklik artışı" 130 131 #@ fb_like_trans_domain 132 #: facebook-likes-you.php 133 msgid "Use <span title='XFBML version is more versatile, but requires use of the JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:" 134 msgstr "<span Title='XFBML sürümünü kullanmak daha kullanışlı, ancak JavaScript SDK' kullanılmasını gerektirir style='border-bottom: 1px noktalı #CCC; CURSOR: help;'> XFBML </ span>:" 135 136 #@ fb_like_trans_domain 137 #: facebook-likes-you.php 138 msgid "Your app ID:" 139 msgstr "Uygulama ID:" 140 141 #@ fb_like_trans_domain 142 #: facebook-likes-you.php 143 msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>165570960176857</code>,<br />but remember that you can get your own an app ID by <a href='http://developers.facebook.com/setup/' target='_blank'>registering your application</a>." 144 msgstr "Hiçbir uygulamanız yoksa, varsayılan kullanmak için bu boş bırakın. Facebook uygulaması kimlik <code> 165570960176857 </ code> <br /> ama <kendi bir uygulama kimliği almak unutmayın a href = \"http: / / developers.facebook.com / setup / 'target =' _blank '> uygulama kayıt </ a>." 145 146 #@ fb_like_trans_domain 147 #: facebook-likes-you.php 148 msgid "Position" 149 msgstr "Pozisyon" 150 151 #@ fb_like_trans_domain 152 #: facebook-likes-you.php 153 msgid "Remember that you can place it manually by <code>[fb-like-button]</code>. There is PHP for that, but you can't use it in WordPress post editor - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 154 msgstr "<code>[fb-like-button] </ code> etiketlerinin arasına yerleştirebilirsiniz.Bunun için wordpress editörünü kullanamazsınız.php editörü kullanmalısınız - <code><?php echo do_shortcode('[fb-like-button]'); ?></code>." 155 156 #@ fb_like_trans_domain 157 #: facebook-likes-you.php 158 msgid "Show at:" 159 msgstr "Gösterim pozisyonu:" 160 161 #@ fb_like_trans_domain 162 #: facebook-likes-you.php 163 msgid "Top" 164 msgstr "Yukarda" 165 166 #@ fb_like_trans_domain 167 #: facebook-likes-you.php 168 msgid "Bottom" 169 msgstr "Aşağıda" 170 171 #@ fb_like_trans_domain 172 #: facebook-likes-you.php 173 msgid "Show on:" 174 msgstr "Gösterilecek sayfalar:" 175 176 #@ fb_like_trans_domain 177 #: facebook-likes-you.php 178 msgid "Page" 179 msgstr "Sayfa" 180 181 #@ fb_like_trans_domain 182 #: facebook-likes-you.php 183 msgid "Post" 184 msgstr "Yazı" 185 186 #@ fb_like_trans_domain 187 #: facebook-likes-you.php 188 msgid "Home" 189 msgstr "Ana Sayfa" 190 191 #@ fb_like_trans_domain 192 #: facebook-likes-you.php 193 msgid "Search" 194 msgstr "Arama" 195 196 #@ fb_like_trans_domain 197 #: facebook-likes-you.php 198 msgid "Archive" 199 msgstr "Arşiv" 200 201 #@ fb_like_trans_domain 202 #: facebook-likes-you.php 203 msgid "Margins:" 204 msgstr "Kenar boşlukları:" 205 206 #@ fb_like_trans_domain 207 #: facebook-likes-you.php 208 msgid "Exclude posts and pages:" 209 msgstr "Mesajlar ve Sayfaları hariç tut:" 210 211 #@ fb_like_trans_domain 212 #: facebook-likes-you.php 213 msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>." 214 msgstr "Her mesaj / sayfa numarası, başlık ya da virgülle ayrılmış slug için yazabilirsiniz..<br />Örneğin <code>17, İrlanda Yahni, sığır-güveç.</code>." 215 216 #@ fb_like_trans_domain 217 #: facebook-likes-you.php 218 msgid "Exclude categories:" 219 msgstr "Kategorileri Hariç:" 220 221 #@ fb_like_trans_domain 222 #: facebook-likes-you.php 223 msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>." 224 msgstr "Her kategori kimliği, adı veya virgülle ayrılmış slug için yazabilirsiniz..<br />Örneğin <code>9, Stinky peynirler, mavi peynir.</code>." 225 226 #@ fb_like_trans_domain 227 #: facebook-likes-you.php 228 msgid "Additional CSS style:" 229 msgstr "Ek CSS stili:" 230 231 #@ fb_like_trans_domain 232 #: facebook-likes-you.php 233 msgid "Added properties will be placed between <code>style=\"</code> and <code>\"</code>. If you want refer to Like button in e.g. <strong>style.css</strong>,<br />try to use <code>iframe.fblikes</code> or if you use XFBML <code>.fb_edge_widget_with_comment</code>." 234 msgstr "Eklenen özellikler <code> etiketi arasında yer alacak <code>style=\"</code> and <code>\"</code>. İsterseniz örneğin beğen düğmesini gibi<strong> style.css </ strong> <br /> XFBML <code> kullanmak </ code> veya eğer <code> iframe.fblikes kullanmayı deneyin. fb_edge_widget_with_comment </ code>." 235 236 #@ fb_like_trans_domain 237 #: facebook-likes-you.php 238 msgid "Help and Support" 239 msgstr "Yardım ve Destek" 240 241 #@ fb_like_trans_domain 242 #: facebook-likes-you.php 243 msgid "Donate to this plugin" 244 msgstr "Bu Eklenti için Bağış" 245 246 #@ fb_like_trans_domain 247 #: facebook-likes-you.php 248 msgid "Read the plugin homepage and its comments" 249 msgstr "Eklenti Ana Sayfasına Bakın veya Yorumları okuyun" 250 251 #@ default 252 #: facebook-likes-you.php 253 msgid "Save Changes" 254 msgstr "Değişiklikleri Kaydet" 255 270 msgstr "Üst barda 'Facebook'ta bizi bulun'u göster.<br /><small>Sadece profil bağlantısı mevcut olduğunda</small>" 271 -
facebook-likes-you/trunk/languages/fb_like_trans_domain.pot
r422256 r427428 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Facebook Likes You! 1.4.5\n"3 "Project-Id-Version: Facebook Likes You! v1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2011-05-03 01:22-0800\n" … … 47 47 48 48 #: facebook-likes-you.php 49 msgid "HTML5 Mode:" 50 msgstr "" 51 52 #: facebook-likes-you.php 53 msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers." 54 msgstr "" 55 56 #: facebook-likes-you.php 57 msgid "Show Send button:" 49 msgid "Fix for W3C Valid XFBML:" 50 msgstr "" 51 52 #: facebook-likes-you.php 53 msgid "Send Button:" 58 54 msgstr "" 59 55 … … 171 167 172 168 #: facebook-likes-you.php 169 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook." 170 msgstr "" 171 172 #: facebook-likes-you.php 173 msgid "Read the plugin homepage and its comments" 174 msgstr "" 175 176 #: facebook-likes-you.php 173 177 msgid "Donate to this plugin" 174 178 msgstr "" 175 179 176 180 #: facebook-likes-you.php 177 msgid "Read the plugin homepage and its comments"178 msgstr ""179 180 #: facebook-likes-you.php181 181 msgid "Save Changes" 182 182 msgstr "" 183 183 184 184 #: facebook-likes-you.php 185 msgid "<strong>Free tip:</strong> You can get easily <a href='http://www.facebook.com/insights/' target='_blank'>insights for your website</a> supplied by Facebook."186 msgstr ""187 188 #: facebook-likes-you.php189 185 msgid "Title:" 190 186 msgstr "" -
facebook-likes-you/trunk/readme.txt
r422910 r427428 4 4 Tags: facebook, like, button, share, social, facebook like button, facebook like, facebook like box, like box, facebook send button, send button, google +1, google +1 button, widget 5 5 Requires at least: 2.9 6 Tested up to: 3.2 7 Stable tag: 1. 4.76 Tested up to: 3.2.1 7 Stable tag: 1.5 8 8 9 9 Facebook Likes You! is simple plugin which makes it easy to add Like Button and widgetable Like Box. Google +1 Button isn't a problem too! … … 14 14 15 15 * English<br /> 16 * Brazilian Portuguese (pt_BR)<br /> 17 * Czech (cs_CZ)<br /> 18 * German (de_DE)<br /> 19 * Indonesian (id_ID)<br /> 20 * Italian (it_IT)<br /> 21 * Polish (pl_PL)<br /> 22 * Russian (ru_RU)<br /> 23 * Spanish (es_ES)<br /> 24 * Turkish (tr_TR)<br /> 16 * Indonesian (Bahasa Indonesia)<br /> 17 * Italian (Italiano)<br /> 18 * Polish (język polski)<br /> 19 * Spanish (Español, castellano)<br /> 20 * Turkish (Türkçe)<br /> 21 * incomplete in Brazilian Portuguese, Czech, German, and Russian 25 22 26 23 If you have created your own language pack, or have an update of an existing one, you can send [gettext .po and .mo files](http://codex.wordpress.org/Translating_WordPress) to me (you can find my e-mail address [here](http://www.sproject.name/o-mnie/)) so that I can bundle it into Facebook Likes You! … … 48 45 49 46 == Changelog == 47 48 = 1.5 = 49 * Fix for W3C Valid XFBML 50 * Removed HTML5 Mode 51 * Fix for relative thumbnails' URL in Custom Fields 52 * Rewrited Facebook Like Button and Box code generator 53 50 54 = 1.4.7 = 51 55 * Support for relative thumbnails' URL in Custom Fields
Note: See TracChangeset
for help on using the changeset viewer.