Plugin Directory

Changeset 427428


Ignore:
Timestamp:
08/23/2011 04:31:15 AM (15 years ago)
Author:
sproject
Message:

1.5 release

Location:
facebook-likes-you/trunk
Files:
2 added
22 edited

Legend:

Unmodified
Added
Removed
  • facebook-likes-you/trunk/facebook-likes-you.php

    r422910 r427428  
    44Plugin URI: http://www.sproject.name/download/wp-facebook-likes-you/
    55Description: 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.7
     6Version: 1.5
    77Author: Piotr Sochalewski
    88Author URI: http://www.sproject.name/
     
    3131$fb_like_settings = array();
    3232
    33 $fb_like_layouts        = array('standard', 'standard (show faces)', 'button_count', 'box_count');
     33$fb_like_layouts        = array('standard', 'button_count', 'box_count');
    3434$fb_like_verbs          = array('like', 'recommend');
    3535$fb_like_colorschemes   = array('light', 'dark');
     
    3939    register_setting('fb_like', 'fb_like_width');
    4040    register_setting('fb_like', 'fb_like_layout');
     41    register_setting('fb_like', 'fb_like_showfaces');
    4142    register_setting('fb_like', 'fb_like_verb');
    4243    register_setting('fb_like', 'fb_like_colorscheme');
    4344    register_setting('fb_like', 'fb_like_font');
    44     register_setting('fb_like', 'fb_like_html5');
     45    register_setting('fb_like', 'fb_like_valid');
    4546    register_setting('fb_like', 'fb_like_xfbml');
    4647    register_setting('fb_like', 'fb_like_google1');
     
    7677    add_filter('widget_text', 'do_shortcode');
    7778    add_action('widgets_init', create_function('', 'return register_widget("fb_like_widget");'));
     79   
    7880    add_option('fb_like_width', '450');
    7981    add_option('fb_like_layout', 'standard');
     82    add_option('fb_like_showfaces', 'true');
    8083    add_option('fb_like_verb', 'like');
    8184    add_option('fb_like_font', '');
    8285    add_option('fb_like_colorscheme', 'light');
    83     add_option('fb_like_html5', 'false');
     86    add_option('fb_like_valid', 'false');
    8487    add_option('fb_like_opengraph', 'true');
    8588    add_option('fb_like_defaultpic', WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)) . 'images/facebook.png');
     
    105108    $fb_like_settings['width'] = get_option('fb_like_width');
    106109    $fb_like_settings['layout'] = get_option('fb_like_layout');
     110    $fb_like_settings['showfaces'] = get_option('fb_like_showfaces') === 'true';
    107111    $fb_like_settings['verb'] = get_option('fb_like_verb');
    108112    $fb_like_settings['font'] = get_option('fb_like_font');
    109113    $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';
    111115    $fb_like_settings['opengraph'] = get_option('fb_like_opengraph') === 'true';
    112116    $fb_like_settings['defaultpic'] = get_option('fb_like_defaultpic');
     
    133137   
    134138    $locale = defined(WPLANG) ? WPLANG : 'en_US';
    135    
     139
    136140    // 'wp_footer' is there instead of 'wp_head' because it makes better validation
    137     // but it can be risky…
    138141    add_action('wp_footer', 'fb_like_js_sdk');
    139    
     142
    140143    // Google +1 JavaScripted placed in 'wp_head'. That's OK.
    141144    add_action('wp_head', 'fb_like_google1_js');
    142    
     145
    143146    // Open Graph
    144147    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()
    147150    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
     155function fb_like_pluginPath($file) {
     156    // $file without first '/'
     157    return WP_PLUGIN_URL . '/' . str_replace( basename( __FILE__) , "" , plugin_basename(__FILE__) ) . $file;
    151158}
    152159
     
    168175    if($fb_like_settings['xfbml']=='true') {
    169176    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';
    170181   
    171182    echo '  <div id="fb-root"></div>
     
    210221    ob_end_clean();
    211222   
    212     // Default picture if is home
    213     if (is_home())
     223    // Default picture if is NOT post or page
     224    if (!is_single() && !is_page())
    214225        return $fb_like_settings['defaultpic'];
    215226
     
    233244            return $img;
    234245        else {
    235             $img = site_url() . '/' . $img;
     246            $upload_dir = wp_upload_dir();
     247            $img = $upload_dir['baseurl'] . '/' . $img;
    236248            if (fb_like_isValidURL($img))
    237249                return $img;
     
    254266    if($fb_like_settings['opengraph']=='true') {
    255267        ?>
    256         <?php if (is_home())
     268        <?php if (!is_single() && !is_page())
    257269            echo '<meta property="og:title" content="' . get_bloginfo('name') . '"/>
    258270        <meta property="og:type" content="blog"/>
     
    342354                return '<div style="float: right; margin: ' . fb_like_count_margin() . '"><g:plusone size="medium" href="' . get_permalink() . '"></g:plusone></div>';
    343355                break;
    344             case "standard (show faces)": case "box_count":
     356            case "box_count":
    345357                return '<div style="float: right; margin: ' . fb_like_count_margin() . '"><g:plusone size="tall" href="' . get_permalink() . '"></g:plusone></div>';
    346358                break;
     
    359371        global $locale;
    360372       
    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>';
    362374       
    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() . '&amp;xfbml=1"></script>' . $fblike . fb_like_generate_google1();
    391383        /* END OF XFBML VERSION */
    392384    }
     
    395387        switch($fb_like_settings['layout']) {
    396388            case "standard":
    397                 $height = 35;
    398                 break;
    399             case "standard (show faces)":
    400                 $height = 80;
     389                $height = (($fb_like_settings['showfaces']=='true')?80:35);
    401390                break;
    402391            case "button_count":
     
    408397        }
    409398
    410         $url = '<iframe class="fblikes" src="http://www.facebook.com/plugins/like.php?href='
    411         . get_permalink() . '&amp;send=false&amp;layout='
    412         . $fb_like_settings['layout'] . '&amp;show_faces=' . (($fb_like_settings['showfaces']=='true')?'true':'false')
    413         . '&amp;width=' . $fb_like_settings['width'] . '&amp;action=' . $fb_like_settings['verb']
    414         . '&amp;colorscheme=' . $fb_like_settings['colorscheme'] . '&amp;height=' . $height;
    415        
    416         if($fb_like_settings['font']!='')
    417             $url .= '&amp;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() . '&amp;send=false&amp;layout=' . $fb_like_settings['layout'] . '&amp;width=' . $fb_like_settings['width'] . '&amp;show_faces=' . (($fb_like_settings['showfaces']=='true')?'true':'false') . '&amp;action=' . $fb_like_settings['verb'] . '&amp;colorscheme=' . $fb_like_settings['colorscheme'] . '&amp;' . (($fb_like_settings['font']!='') ? 'font='. $fb_like_settings['font'] : 'font') . '&amp;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();
    423400        /* END OF STANDARD (NON-XFBML) VERSION */
    424401    }
     
    452429        if($fb_like_settings['xfbml']) {
    453430            /* 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;
    470440        }
    471441        else {
     
    487457            else $height = 62; 
    488458           
    489             echo '<iframe src="http://www.facebook.com/plugins/likebox.php?href=';
    490             echo $url;
    491             echo '&amp;width=';
    492             echo $width;
    493             echo '&amp;colorscheme=';
    494             echo $fb_like_settings['colorscheme'];
    495             echo '&amp;show_faces=';
    496             echo ($showfaces ? 'true' : 'false');
    497             echo '&amp;stream=';
    498             echo ($stream ? 'true' : 'false');
    499             echo '&amp;header=';
    500             echo ($header ? 'true' : 'false');
    501             echo '&amp;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 . '&amp;width=' . $width . '&amp;colorscheme=' . $fb_like_settings['colorscheme'] . '&amp;show_faces=' . ($showfaces ? 'true' : 'false') . '&amp;border_color&amp;stream=' . ($stream ? 'true' : 'false') . '&amp;header=' . ($header ? 'true' : 'false') . '&amp;height=' . $height . '" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:' . $width . 'px; height:' . $height . 'px;" allowTransparency="true"></iframe>';
    511460        }
    512461           
     
    608557                        echo "<option value=\"$type\"". ($type == $curmenutype ? " selected":""). ">$type</option>";
    609558                ?>
    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' : ''); ?>/>&nbsp;<label for="faces"><?php _e("Show Faces", 'fb_like_trans_domain' ); ?></label>
    611561            </td>   
    612562        </tr>
     
    648598        </tr>
    649599        <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>
    652602        </tr>
    653603        <tr valign="top">
    654             <th scope="row"><?php _e("Show Send button:", 'fb_like_trans_domain' ); ?></th>
     604            <th scope="row"><?php _e("Send Button:", 'fb_like_trans_domain' ); ?></th>
    655605            <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>
    656606        </tr>
     
    665615        <tr valign="top">
    666616            <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' ); ?>&nbsp;<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'); ?>" />&nbsp;<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' ); ?>&nbsp;<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'); ?>" />&nbsp;<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>
    668618        </tr>
    669619        <tr valign="top">
     
    680630            <th scope="row"><?php _e("Show at:", 'fb_like_trans_domain' ); ?></th>
    681631            <td>
    682                 <input type="checkbox" name="fb_like_show_at_top" value="true" <?php echo (get_option('fb_like_show_at_top') == 'true' ? 'checked' : ''); ?>/>&nbsp;<?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' : ''); ?>/>&nbsp;<?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' : ''); ?>/>&nbsp;<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' : ''); ?>/>&nbsp;<label for="bottom"><?php _e("Bottom", 'fb_like_trans_domain' ); ?></label>
    684634            </td>
    685635        </tr>
     
    687637            <th scope="row"><?php _e("Show on:", 'fb_like_trans_domain' ); ?></th>
    688638            <td>
    689                 <input type="checkbox" name="fb_like_show_on_page" value="true" <?php echo (get_option('fb_like_show_on_page') == 'true' ? 'checked' : ''); ?>/>&nbsp;<?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' : ''); ?>/>&nbsp;<?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' : ''); ?>/>&nbsp;<?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' : ''); ?>/>&nbsp;<?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' : ''); ?>/>&nbsp;<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' : ''); ?>/>&nbsp;<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' : ''); ?>/>&nbsp;<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' : ''); ?>/>&nbsp;<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' : ''); ?>/>&nbsp;<label for="archive"><?php _e("Archive", 'fb_like_trans_domain' ); ?></label>
    694644            </td>
    695645        </tr>
     
    701651                    <br />
    702652                    <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'); ?>" />&nbsp;<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;">
    704654                    <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'); ?>" />&nbsp;<small>px</small></span>
    705655                    <br />
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-cs_CZ.po

    r403741 r427428  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-05-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"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Georgij Gadjukin <[email protected]>\n"
     
    1515"X-Poedit-SearchPath-0: .\n"
    1616
    17 #@ fb_like_trans_domain
     17#: facebook-likes-you.php
     18msgid "Important info for users"
     19msgstr ""
     20
    1821#: facebook-likes-you.php
    1922msgid "Appearance"
    2023msgstr "Vzhled"
    2124
    22 #@ fb_like_trans_domain
    2325#: facebook-likes-you.php
    2426msgid "Width:"
    2527msgstr "Šířka:"
    2628
    27 #@ fb_like_trans_domain
     29#: facebook-likes-you.php
     30msgid "Height:"
     31msgstr ""
     32
    2833#: facebook-likes-you.php
    2934msgid "Layout:"
    3035msgstr "Rozložení:"
    3136
    32 #@ fb_like_trans_domain
    3337#: facebook-likes-you.php
    3438msgid "Verb to display:"
    3539msgstr "Zobrazené slovo:"
    3640
    37 #@ fb_like_trans_domain
    3841#: facebook-likes-you.php
    3942msgid "Font:"
    4043msgstr "Písmo:"
    4144
    42 #@ fb_like_trans_domain
    4345#: facebook-likes-you.php
    4446msgid "Color Scheme:"
    4547msgstr "Barevné schéma:"
    4648
    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
     50msgid "Fix for W3C Valid XFBML:"
     51msgstr ""
     52
     53#: facebook-likes-you.php
     54msgid "Send Button:"
     55msgstr ""
     56
     57#: facebook-likes-you.php
     58msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     59msgstr ""
     60
     61#: facebook-likes-you.php
     62msgid "Google +1 Button:"
     63msgstr ""
     64
    5865#: facebook-likes-you.php
    5966msgid "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>:"
    6067msgstr "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>"
    6168
    62 #@ fb_like_trans_domain
     69#: facebook-likes-you.php
     70msgid "Use Open Graph:"
     71msgstr ""
     72
     73#: facebook-likes-you.php
     74msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     75msgstr ""
     76
     77#: facebook-likes-you.php
     78msgid "Absolute path to default picture (used if not found any):"
     79msgstr ""
     80
     81#: facebook-likes-you.php
     82msgid "Back to default"
     83msgstr ""
     84
    6385#: facebook-likes-you.php
    6486msgid "Your app ID:"
    6587msgstr "Vaše app ID:"
    6688
    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
     90msgid "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>."
    7091msgstr "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> ."
    7192
    72 #@ fb_like_trans_domain
    7393#: facebook-likes-you.php
    7494msgid "Position"
    7595msgstr "Pozice"
    7696
    77 #@ fb_like_trans_domain
    7897#: facebook-likes-you.php
    7998msgid "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
    8099msgstr "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
    81100
    82 #@ fb_like_trans_domain
    83101#: facebook-likes-you.php
    84102msgid "Show at:"
    85103msgstr "Zobrazit na:"
    86104
    87 #@ fb_like_trans_domain
    88105#: facebook-likes-you.php
    89106msgid "Top"
    90107msgstr "začátku"
    91108
    92 #@ fb_like_trans_domain
    93109#: facebook-likes-you.php
    94110msgid "Bottom"
    95111msgstr "konci"
    96112
    97 #@ fb_like_trans_domain
    98113#: facebook-likes-you.php
    99114msgid "Show on:"
    100115msgstr "Zobrazit:"
    101116
    102 #@ fb_like_trans_domain
    103117#: facebook-likes-you.php
    104118msgid "Page"
    105119msgstr "na stránce"
    106120
    107 #@ fb_like_trans_domain
    108121#: facebook-likes-you.php
    109122msgid "Post"
    110123msgstr "u příspěvku"
    111124
    112 #@ fb_like_trans_domain
    113125#: facebook-likes-you.php
    114126msgid "Home"
    115127msgstr "ve výpisu"
    116128
    117 #@ fb_like_trans_domain
    118129#: facebook-likes-you.php
    119130msgid "Search"
    120131msgstr "u vyhledávání"
    121132
    122 #@ fb_like_trans_domain
    123133#: facebook-likes-you.php
    124134msgid "Archive"
    125135msgstr "u archívu"
    126136
    127 #@ fb_like_trans_domain
    128137#: facebook-likes-you.php
    129138msgid "Margins:"
    130139msgstr "Marže:"
    131140
    132 #@ fb_like_trans_domain
    133141#: facebook-likes-you.php
    134142msgid "Exclude posts and pages:"
    135143msgstr "Vyjmout příspěvky a stránky:"
    136144
    137 #@ fb_like_trans_domain
     145#: facebook-likes-you.php
     146msgid "Exclude categories:"
     147msgstr "Vyjmout kategorie:"
     148
    138149#: facebook-likes-you.php
    139150msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    140151msgstr "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> ."
    141152
    142 #@ fb_like_trans_domain
    143 #: facebook-likes-you.php
    144 msgid "Exclude categories:"
    145 msgstr "Vyjmout kategorie:"
    146 
    147 #@ fb_like_trans_domain
    148153#: facebook-likes-you.php
    149154msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    150155msgstr "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> ."
    151156
    152 #@ fb_like_trans_domain
    153157#: facebook-likes-you.php
    154158msgid "Additional CSS style:"
    155159msgstr "Dodatečný CSS styl:"
    156160
    157 #@ fb_like_trans_domain
    158161#: facebook-likes-you.php
    159162msgid "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>."
    160163msgstr "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> ."
    161164
    162 #@ fb_like_trans_domain
    163165#: facebook-likes-you.php
    164166msgid "Help and Support"
    165167msgstr "Nápověda a odborná pomoc"
    166168
    167 #@ fb_like_trans_domain
     169#: facebook-likes-you.php
     170msgid "<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."
     171msgstr ""
     172
     173#: facebook-likes-you.php
     174msgid "Read the plugin homepage and its comments"
     175msgstr "Přečtěte si domovskou stránku pluginu a komentáře"
     176
    168177#: facebook-likes-you.php
    169178msgid "Donate to this plugin"
    170179msgstr "Přispějte na tento plugin"
    171180
    172 #@ fb_like_trans_domain
    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 
    177 #@ default
    178181#: facebook-likes-you.php
    179182msgid "Save Changes"
    180183msgstr "Uložit změny"
    181184
    182 #: fb_likes_widget.php
     185#: facebook-likes-you.php
    183186msgid "Title:"
    184187msgstr "Název:"
    185188
    186 #: fb_likes_widget.php
     189#: facebook-likes-you.php
    187190msgid "Facebook Page URL:"
    188191msgstr "Facebook Page URL:"
    189192
    190 #: fb_likes_widget.php
     193#: facebook-likes-you.php
    191194msgid "The URL of the FB Page for this Like box."
    192195msgstr "The URL of the FB Page for this Like box."
    193196
    194 #: fb_likes_widget.php
     197#: facebook-likes-you.php
    195198msgid "The width of the widget in pixels."
    196199msgstr "The width of the widget in pixels."
    197200
    198 #: fb_likes_widget.php
     201#: facebook-likes-you.php
    199202msgid "In pixels too. Needed if you don't use XFBML."
    200203msgstr "In pixels too. Needed if you don't use XFBML."
    201204
    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
     208msgid "Show Faces"
     209msgstr "Zobrazit obrázky profilu"
     210
     211#: facebook-likes-you.php
    211212msgid "Stream"
    212213msgstr "Stream"
    213214
    214 #: fb_likes_widget.php
     215#: facebook-likes-you.php
    215216msgid "Show the profile stream for the public profile."
    216217msgstr "Show the profile stream for the public profile."
    217218
    218 #: fb_likes_widget.php
     219#: facebook-likes-you.php
    219220msgid "Header"
    220221msgstr "Header"
    221222
    222 #: fb_likes_widget.php
     223#: facebook-likes-you.php
    223224msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
    224225msgstr "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  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-05-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"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    8 "Language-Team: Stefan Meier\n"
     8"Language-Team: Stefan Meier <[email protected]>\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
     
    1919"X-Poedit-SearchPath-0: .\n"
    2020
    21 #@ fb_like_trans_domain
     21# @ fb_like_trans_domain
     22#: facebook-likes-you.php
     23msgid "Important info for users"
     24msgstr "Wichtiger Information für Nutzer"
     25
     26# @ fb_like_trans_domain
     27#: facebook-likes-you.php
     28msgid "Appearance"
     29msgstr "Erscheinung"
     30
     31# @ fb_like_trans_domain
     32#: facebook-likes-you.php
     33msgid "Width:"
     34msgstr "Breite:"
     35
     36# @ fb_like_trans_domain
     37#: facebook-likes-you.php
     38msgid "Height:"
     39msgstr "Höhe:"
     40
     41# @ fb_like_trans_domain
     42#: facebook-likes-you.php
     43msgid "Layout:"
     44msgstr "Layout:"
     45
     46# @ fb_like_trans_domain
     47#: facebook-likes-you.php
     48msgid "Verb to display:"
     49msgstr "Anzuzeigendes Verb:"
     50
     51# @ fb_like_trans_domain
     52#: facebook-likes-you.php
     53msgid "Font:"
     54msgstr "Schriftart:"
     55
     56# @ fb_like_trans_domain
     57#: facebook-likes-you.php
     58msgid "Color Scheme:"
     59msgstr "Farbschema:"
     60
     61#: facebook-likes-you.php
     62msgid "Fix for W3C Valid XFBML:"
     63msgstr ""
     64
     65#: facebook-likes-you.php
     66msgid "Send Button:"
     67msgstr ""
     68
     69#: facebook-likes-you.php
     70msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     71msgstr ""
     72
     73#: facebook-likes-you.php
     74msgid "Google +1 Button:"
     75msgstr ""
     76
     77# @ fb_like_trans_domain
     78#: facebook-likes-you.php
     79msgid "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>:"
     80msgstr "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
     83msgid "Use Open Graph:"
     84msgstr ""
     85
     86#: facebook-likes-you.php
     87msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     88msgstr ""
     89
     90#: facebook-likes-you.php
     91msgid "Absolute path to default picture (used if not found any):"
     92msgstr ""
     93
     94#: facebook-likes-you.php
     95msgid "Back to default"
     96msgstr ""
     97
     98# @ fb_like_trans_domain
     99#: facebook-likes-you.php
     100msgid "Your app ID:"
     101msgstr "Deine App-ID:"
     102
     103# @ fb_like_trans_domain
     104#: facebook-likes-you.php
     105msgid "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>."
     106msgstr "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
     110msgid "Position"
     111msgstr "Position"
     112
     113# @ fb_like_trans_domain
     114#: facebook-likes-you.php
     115msgid "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
     116msgstr "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
     117
     118# @ fb_like_trans_domain
     119#: facebook-likes-you.php
     120msgid "Show at:"
     121msgstr "Anzeigen:"
     122
     123# @ fb_like_trans_domain
     124#: facebook-likes-you.php
     125msgid "Top"
     126msgstr "oben"
     127
     128# @ fb_like_trans_domain
     129#: facebook-likes-you.php
     130msgid "Bottom"
     131msgstr "unten"
     132
     133# @ fb_like_trans_domain
     134#: facebook-likes-you.php
     135msgid "Show on:"
     136msgstr "Anzeigen:"
     137
     138# @ fb_like_trans_domain
     139#: facebook-likes-you.php
     140msgid "Page"
     141msgstr "auf Seite"
     142
     143# @ fb_like_trans_domain
     144#: facebook-likes-you.php
     145msgid "Post"
     146msgstr "in Artikel"
     147
     148# @ fb_like_trans_domain
     149#: facebook-likes-you.php
     150msgid "Home"
     151msgstr "auf der Startseite"
     152
     153# @ fb_like_trans_domain
     154#: facebook-likes-you.php
     155msgid "Search"
     156msgstr "bei der Suche"
     157
     158# @ fb_like_trans_domain
     159#: facebook-likes-you.php
     160msgid "Archive"
     161msgstr "im Archiv"
     162
     163# @ fb_like_trans_domain
     164#: facebook-likes-you.php
     165msgid "Margins:"
     166msgstr "Abstände:"
     167
     168# @ fb_like_trans_domain
     169#: facebook-likes-you.php
     170msgid "Exclude posts and pages:"
     171msgstr "Seiten und Artikel ausschließen:"
     172
     173# @ fb_like_trans_domain
     174#: facebook-likes-you.php
     175msgid "Exclude categories:"
     176msgstr "Kategorien ausschließen:"
     177
     178# @ fb_like_trans_domain
     179#: facebook-likes-you.php
     180msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
     181msgstr "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
     185msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
     186msgstr "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
     190msgid "Additional CSS style:"
     191msgstr "Zusätzliches CSS:"
     192
     193# @ fb_like_trans_domain
     194#: facebook-likes-you.php
     195msgid "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>."
     196msgstr "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
     200msgid "Help and Support"
     201msgstr "Hilfe und Support"
     202
     203#: facebook-likes-you.php
     204msgid "<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."
     205msgstr ""
     206
     207# @ fb_like_trans_domain
     208#: facebook-likes-you.php
     209msgid "Read the plugin homepage and its comments"
     210msgstr "Plugin Homepage aufrufen"
     211
     212# @ fb_like_trans_domain
     213#: facebook-likes-you.php
     214msgid "Donate to this plugin"
     215msgstr "Für dieses Plugin spenden"
     216
     217# @ default
     218#: facebook-likes-you.php
     219msgid "Save Changes"
     220msgstr "Änderungen speichern"
     221
     222# @ fb_like_trans_domain
    22223#: facebook-likes-you.php
    23224msgid "Title:"
    24225msgstr "Titel:"
    25226
    26 #@ fb_like_trans_domain
     227# @ fb_like_trans_domain
    27228#: facebook-likes-you.php
    28229msgid "Facebook Page URL:"
    29230msgstr "Facebook Seite URL:"
    30231
    31 #@ fb_like_trans_domain
     232# @ fb_like_trans_domain
    32233#: facebook-likes-you.php
    33234msgid "The URL of the FB Page for this Like box."
    34235msgstr "Die URL der FB Seite für diese Like Box."
    35236
    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
    42238#: facebook-likes-you.php
    43239msgid "The width of the widget in pixels."
    44240msgstr "Die Breite des Widgets in Pixeln."
    45241
    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
    52243#: facebook-likes-you.php
    53244msgid "In pixels too. Needed if you don't use XFBML."
    54245msgstr "Die Höhe des Widgets in Pixeln. Nötig, falls du nicht XFBML benutzt."
    55246
    56 #@ fb_like_trans_domain
     247# @ fb_like_trans_domain
    57248#: facebook-likes-you.php
    58249msgid "Show Faces"
    59250msgstr "Gesichter zeigen"
    60251
    61 #@ fb_like_trans_domain
     252# @ fb_like_trans_domain
    62253#: facebook-likes-you.php
    63254msgid "Stream"
    64255msgstr "Stream"
    65256
    66 #@ fb_like_trans_domain
     257# @ fb_like_trans_domain
    67258#: facebook-likes-you.php
    68259msgid "Show the profile stream for the public profile."
    69260msgstr "Zeigt die Profilaktivität für das öffentliche Profil."
    70261
    71 #@ fb_like_trans_domain
     262# @ fb_like_trans_domain
    72263#: facebook-likes-you.php
    73264msgid "Header"
    74265msgstr "Header"
    75266
    76 #@ fb_like_trans_domain
     267# @ fb_like_trans_domain
    77268#: facebook-likes-you.php
    78269msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
    79270msgstr "Zeigt die 'Finde uns auf Facebook' Leiste am oberen Rand an.<br /><small>Nur wenn Stream oder Gesicher angezeigt werden.</small>"
    80271
    81 #@ fb_like_trans_domain
    82 #: facebook-likes-you.php
    83 msgid "Important info for users"
    84 msgstr "Wichtiger Information für Nutzer"
    85 
    86 #@ fb_like_trans_domain
    87 #: facebook-likes-you.php
    88 msgid "Appearance"
    89 msgstr "Erscheinung"
    90 
    91 #@ fb_like_trans_domain
    92 #: facebook-likes-you.php
    93 msgid "Layout:"
    94 msgstr "Layout:"
    95 
    96 #@ fb_like_trans_domain
    97 #: facebook-likes-you.php
    98 msgid "Verb to display:"
    99 msgstr "Anzuzeigendes Verb:"
    100 
    101 #@ fb_like_trans_domain
    102 #: facebook-likes-you.php
    103 msgid "Font:"
    104 msgstr "Schriftart:"
    105 
    106 #@ fb_like_trans_domain
    107 #: facebook-likes-you.php
    108 msgid "Color Scheme:"
    109 msgstr "Farbschema:"
    110 
    111 #@ fb_like_trans_domain
    112 #: facebook-likes-you.php
    113 msgid "HTML5 Mode:"
    114 msgstr "HTML5 Modus:"
    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 "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_domain
    122 #: facebook-likes-you.php
    123 msgid "Show Faces:"
    124 msgstr "Gesicher zeigen:"
    125 
    126 #@ fb_like_trans_domain
    127 #: facebook-likes-you.php
    128 msgid "Automatically increase the height accordingly"
    129 msgstr "Höhe automatisch anpassen"
    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 "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_domain
    137 #: facebook-likes-you.php
    138 msgid "Your app ID:"
    139 msgstr "Deine App-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='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_domain
    147 #: facebook-likes-you.php
    148 msgid "Position"
    149 msgstr "Position"
    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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
    155 
    156 #@ fb_like_trans_domain
    157 #: facebook-likes-you.php
    158 msgid "Show at:"
    159 msgstr "Anzeigen:"
    160 
    161 #@ fb_like_trans_domain
    162 #: facebook-likes-you.php
    163 msgid "Top"
    164 msgstr "oben"
    165 
    166 #@ fb_like_trans_domain
    167 #: facebook-likes-you.php
    168 msgid "Bottom"
    169 msgstr "unten"
    170 
    171 #@ fb_like_trans_domain
    172 #: facebook-likes-you.php
    173 msgid "Show on:"
    174 msgstr "Anzeigen:"
    175 
    176 #@ fb_like_trans_domain
    177 #: facebook-likes-you.php
    178 msgid "Page"
    179 msgstr "auf Seite"
    180 
    181 #@ fb_like_trans_domain
    182 #: facebook-likes-you.php
    183 msgid "Post"
    184 msgstr "in Artikel"
    185 
    186 #@ fb_like_trans_domain
    187 #: facebook-likes-you.php
    188 msgid "Home"
    189 msgstr "auf der Startseite"
    190 
    191 #@ fb_like_trans_domain
    192 #: facebook-likes-you.php
    193 msgid "Search"
    194 msgstr "bei der Suche"
    195 
    196 #@ fb_like_trans_domain
    197 #: facebook-likes-you.php
    198 msgid "Archive"
    199 msgstr "im Archiv"
    200 
    201 #@ fb_like_trans_domain
    202 #: facebook-likes-you.php
    203 msgid "Margins:"
    204 msgstr "Abstände:"
    205 
    206 #@ fb_like_trans_domain
    207 #: facebook-likes-you.php
    208 msgid "Exclude posts and pages:"
    209 msgstr "Seiten und Artikel ausschließen:"
    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 "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_domain
    217 #: facebook-likes-you.php
    218 msgid "Exclude categories:"
    219 msgstr "Kategorien ausschließen:"
    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 "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_domain
    227 #: facebook-likes-you.php
    228 msgid "Additional CSS style:"
    229 msgstr "Zusätzliches CSS:"
    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 "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_domain
    237 #: facebook-likes-you.php
    238 msgid "Help and Support"
    239 msgstr "Hilfe und Support"
    240 
    241 #@ fb_like_trans_domain
    242 #: facebook-likes-you.php
    243 msgid "Donate to this plugin"
    244 msgstr "Für dieses Plugin spenden"
    245 
    246 #@ fb_like_trans_domain
    247 #: facebook-likes-you.php
    248 msgid "Read the plugin homepage and its comments"
    249 msgstr "Plugin Homepage aufrufen"
    250 
    251 #@ default
    252 #: facebook-likes-you.php
    253 msgid "Save Changes"
    254 msgstr "Änderungen speichern"
    255 
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-es_ES.po

    r406651 r427428  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! 1.3.2\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2011-05-03 01:22-0800\n"
     
    4949
    5050#: 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:"
     51msgid "Fix for W3C Valid XFBML:"
     52msgstr "Correción para XFBML válido W3C:"
     53
     54#: facebook-likes-you.php
     55msgid "Send Button:"
     56msgstr "Botón Enviar:"
    6557
    6658#: facebook-likes-you.php
     
    7769
    7870#: facebook-likes-you.php
     71msgid "Use Open Graph:"
     72msgstr "Usar Open Graph:"
     73
     74#: facebook-likes-you.php
     75msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     76msgstr "Principalmente corrige un problema con miniaturas erróneas. Deshabilitar si tienes otro plugin Open Graph."
     77
     78#: facebook-likes-you.php
     79msgid "Absolute path to default picture (used if not found any):"
     80msgstr "Ruta absoluta a la foto por defecto (usado si no se encuentra ninguna):"
     81
     82#: facebook-likes-you.php
     83msgid "Back to default"
     84msgstr "Volver a valores por defecto"
     85
     86#: facebook-likes-you.php
    7987msgid "Your app ID:"
    8088msgstr "Tu app ID:"
    8189
    8290#: facebook-likes-you.php
    83 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>."
     91msgid "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>."
    8492msgstr "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>."
    8593
     
    161169
    162170#: facebook-likes-you.php
     171msgid "<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."
     172msgstr "<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
     175msgid "Read the plugin homepage and its comments"
     176msgstr "Leer la página Web del plugin y sus comentarios"
     177
     178#: facebook-likes-you.php
    163179msgid "Donate to this plugin"
    164180msgstr "Donar para este plugin"
    165181
    166182#: 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.php
    171183msgid "Save Changes"
    172184msgstr "Guardar los cambios"
     
    190202#: facebook-likes-you.php
    191203msgid "In pixels too. Needed if you don't use XFBML."
    192 msgstr "En píxeles tambien. Necesario si usas XFBML."
     204msgstr "En píxeles también. Necesario si usas XFBML."
    193205
    194206#: facebook-likes-you.php
     
    198210#: facebook-likes-you.php
    199211msgid "Stream"
    200 msgstr "Fujo"
     212msgstr "Flujo"
    201213
    202214#: facebook-likes-you.php
     
    210222#: facebook-likes-you.php
    211223msgid "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 
     224msgstr "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  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-05-10 11:45-0800\n"
    6 "PO-Revision-Date: 2011-05-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"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Dadan Adrian Y. <[email protected]>\n"
     
    1717
    1818#: facebook-likes-you.php
     19msgid "Important info for users"
     20msgstr "Informasi penting untuk user"
     21
     22#: facebook-likes-you.php
    1923msgid "Appearance"
    2024msgstr "Tampilan"
     
    4549
    4650#: facebook-likes-you.php
    47 msgid "Show Faces:"
    48 msgstr "Tampilkan: Photo"
     51msgid "Fix for W3C Valid XFBML:"
     52msgstr "Perbaikan untuk W3C Valid XFBML"
     53
     54#: facebook-likes-you.php
     55msgid "Send Button:"
     56msgstr "Tombol Kirim"
     57
     58#: facebook-likes-you.php
     59msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     60msgstr "Mengijinkan user anda untuk dengan mudah mengirim konten ke temannya. <strong>Membutuhkan XFBML</strong>"
     61
     62#: facebook-likes-you.php
     63msgid "Google +1 Button:"
     64msgstr "Tombol Google +1:"
    4965
    5066#: facebook-likes-you.php
     
    5369
    5470#: facebook-likes-you.php
     71msgid "Use Open Graph:"
     72msgstr "Gunakan Open Graph"
     73
     74#: facebook-likes-you.php
     75msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     76msgstr "Perbaikan utama masalah thumbnail yang salah. Matikan jika Anda memiliki plugin Open Graph lain."
     77
     78#: facebook-likes-you.php
     79msgid "Absolute path to default picture (used if not found any):"
     80msgstr "Path absolut ke gambar default (gunakan jika tidak ditemukan):"
     81
     82#: facebook-likes-you.php
     83msgid "Back to default"
     84msgstr "Kembali ke default"
     85
     86#: facebook-likes-you.php
    5587msgid "Your app ID:"
    5688msgstr "Facebook App ID Anda:"
    5789
    5890#: facebook-likes-you.php
    59 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>."
    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."
     91msgid "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>."
     92msgstr "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."
    6193
    6294#: facebook-likes-you.php
     
    69101
    70102#: facebook-likes-you.php
    71 msgid "Automatically increase the height accordingly"
    72 msgstr "Secara otomatis tingginya menyesuaikan"
    73 
    74 #: facebook-likes-you.php
    75103msgid "Show at:"
    76104msgstr "Tampilkan dibagian:"
     
    141169
    142170#: facebook-likes-you.php
     171msgid "<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."
     172msgstr "<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
     175msgid "Read the plugin homepage and its comments"
     176msgstr "Baca halaman plugin ini dan komentarnya"
     177
     178#: facebook-likes-you.php
    143179msgid "Donate to this plugin"
    144180msgstr "Kirim donasi untuk plugin ini"
    145181
    146182#: 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.php
    151183msgid "Save Changes"
    152184msgstr "Simpan Perubahan"
    153185
     186#: facebook-likes-you.php
     187msgid "Title:"
     188msgstr "Judul:"
     189
     190#: facebook-likes-you.php
     191msgid "Facebook Page URL:"
     192msgstr "URL Halaman Facebook:"
     193
     194#: facebook-likes-you.php
     195msgid "The URL of the FB Page for this Like box."
     196msgstr "URL Halaman FB untuk Like box ini."
     197
     198#: facebook-likes-you.php
     199msgid "The width of the widget in pixels."
     200msgstr "Lebar widget dalam pixel."
     201
     202#: facebook-likes-you.php
     203msgid "In pixels too. Needed if you don't use XFBML."
     204msgstr "Dalam pixel juga. Diperlukan jika tidak menggunakan XFBML."
     205
     206#: facebook-likes-you.php
     207msgid "Show Faces"
     208msgstr "Tampilkan Wajah"
     209
     210#: facebook-likes-you.php
     211msgid "Stream"
     212msgstr "Stream"
     213
     214#: facebook-likes-you.php
     215msgid "Show the profile stream for the public profile."
     216msgstr "Tampilkan profile stream untuk profil publik."
     217
     218#: facebook-likes-you.php
     219msgid "Header"
     220msgstr "Judul"
     221
     222#: facebook-likes-you.php
     223msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
     224msgstr "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  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-12-03 10:35+0100\n"
    6 "PO-Revision-Date: 2011-05-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"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Paolo Nicorelli <[email protected]>\n"
     
    1717
    1818#: facebook-likes-you.php
     19msgid "Important info for users"
     20msgstr "Informazioni importanti per gli utenti"
     21
     22#: facebook-likes-you.php
    1923msgid "Appearance"
    2024msgstr "Aspetto"
     
    4549
    4650#: facebook-likes-you.php
    47 msgid "Show Faces:"
    48 msgstr "Visualizzare icone:"
     51msgid "Fix for W3C Valid XFBML:"
     52msgstr "Fix per usare XFBML con validazione W3C:"
     53
     54#: facebook-likes-you.php
     55msgid "Send Button:"
     56msgstr "Pulsante di Invio:"
     57
     58#: facebook-likes-you.php
     59msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     60msgstr "Permette agli utenti di inviare facilmente il contenuto ai tuoi amici. <strong>Richiede XFBML</strong>."
     61
     62#: facebook-likes-you.php
     63msgid "Google +1 Button:"
     64msgstr "Pulsante Google +1:"
    4965
    5066#: facebook-likes-you.php
     
    5369
    5470#: facebook-likes-you.php
     71msgid "Use Open Graph:"
     72msgstr "Usa Open Graph:"
     73
     74#: facebook-likes-you.php
     75msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     76msgstr "Aggiusta principalmente un problema con le thumbnails sbagliate. Disattivare se si possiede un altro plugin per Open Graph."
     77
     78#: facebook-likes-you.php
     79msgid "Absolute path to default picture (used if not found any):"
     80msgstr "Percorso assoluto all'immagine di default (usata se non ne esistono altre):"
     81
     82#: facebook-likes-you.php
     83msgid "Back to default"
     84msgstr "Reimposta l'immagine di default"
     85
     86#: facebook-likes-you.php
    5587msgid "Your app ID:"
    5688msgstr "La tua Facebook App ID:"
    5789
    5890#: facebook-likes-you.php
    59 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>."
    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>."
     91msgid "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>."
     92msgstr "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>."
    6193
    6294#: facebook-likes-you.php
     
    69101
    70102#: facebook-likes-you.php
    71 msgid "Automatically increase the height accordingly"
    72 msgstr "Aumentare l'altezza automaticamente"
    73 
    74 #: facebook-likes-you.php
    75103msgid "Show at:"
    76104msgstr "Visualizza in:"
     
    141169
    142170#: facebook-likes-you.php
     171msgid "<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."
     172msgstr "<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
     175msgid "Read the plugin homepage and its comments"
     176msgstr "Vai alla homepage del plugins ed leggi i commenti"
     177
     178#: facebook-likes-you.php
    143179msgid "Donate to this plugin"
    144180msgstr "Fai una donazione per il plugin"
    145181
    146182#: 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.php
    151183msgid "Save Changes"
    152184msgstr "Salva Modifiche"
     
    158190#: facebook-likes-you.php
    159191msgid "Facebook Page URL:"
    160 msgstr "Facebook Page URL:"
     192msgstr "Indirizzo URL della pagina Facebook:"
    161193
    162194#: facebook-likes-you.php
    163195msgid "The URL of the FB Page for this Like box."
    164 msgstr "The URL of the FB Page for this Like box."
     196msgstr "L'indirizzo URL della pagina FB per questo box Mi Piace."
    165197
    166198#: facebook-likes-you.php
    167199msgid "The width of the widget in pixels."
    168 msgstr "The width of the widget in pixels."
     200msgstr "La lunghezza del contenitore in pixels."
    169201
    170202#: facebook-likes-you.php
    171203msgid "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."
     204msgstr "Anche questo in pixels. Ti serve se non usi XFBML."
     205
     206#: facebook-likes-you.php
     207msgid "Show Faces"
     208msgstr "Mostra Volti"
    181209
    182210#: facebook-likes-you.php
     
    186214#: facebook-likes-you.php
    187215msgid "Show the profile stream for the public profile."
    188 msgstr "Show the profile stream for the public profile."
     216msgstr "Mostra lo stream del il profilo pubblico."
    189217
    190218#: facebook-likes-you.php
    191219msgid "Header"
    192 msgstr "Header"
     220msgstr "Intestazioni"
    193221
    194222#: facebook-likes-you.php
    195223msgid "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 
     224msgstr "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  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.4.5\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2011-05-03 01:22-0800\n"
    6 "PO-Revision-Date: 2011-08-11 21:15+0100\n"
     6"PO-Revision-Date: 2011-08-15 20:14+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Piotr Sochalewski <[email protected]>\n"
     
    4949
    5050#: 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':"
     51msgid "Fix for W3C Valid XFBML:"
     52msgstr "Poprawna walidacja XFBML:"
     53
     54#: facebook-likes-you.php
     55msgid "Send Button:"
     56msgstr "Przycisk Wyślij:"
    6157
    6258#: facebook-likes-you.php
     
    173169
    174170#: facebook-likes-you.php
     171msgid "<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."
     172msgstr "<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
     175msgid "Read the plugin homepage and its comments"
     176msgstr "Odwiedź stronę www wtyczki"
     177
     178#: facebook-likes-you.php
    175179msgid "Donate to this plugin"
    176180msgstr "Przekaż darowiznę na rzecz autora"
    177181
    178182#: facebook-likes-you.php
    179 msgid "Read the plugin homepage and its comments"
    180 msgstr "Odwiedź stronę www wtyczki"
    181 
    182 #: facebook-likes-you.php
    183183msgid "Save Changes"
    184184msgstr "Zapisz zmiany"
    185185
    186186#: 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.php
    191187msgid "Title:"
    192188msgstr "Tytuł:"
     
    228224msgstr "Pokazuj 'Znajdź nas na Facebooku' u góry.<br /><small>Gdy wybrano pokazywanie zawartości lub użytkowników</small>"
    229225
     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  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-05-10 11:45-0800\n"
    6 "PO-Revision-Date: 2011-07-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"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Paulo Vital <[email protected]>\n"
     
    1616
    1717#: facebook-likes-you.php
     18msgid "Important info for users"
     19msgstr ""
     20
     21#: facebook-likes-you.php
    1822msgid "Appearance"
    1923msgstr "Aparência"
     
    4448
    4549#: facebook-likes-you.php
    46 msgid "Show Faces:"
    47 msgstr "Mostrar ícones:"
     50msgid "Fix for W3C Valid XFBML:"
     51msgstr ""
     52
     53#: facebook-likes-you.php
     54msgid "Send Button:"
     55msgstr ""
     56
     57#: facebook-likes-you.php
     58msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     59msgstr ""
     60
     61#: facebook-likes-you.php
     62msgid "Google +1 Button:"
     63msgstr ""
    4864
    4965#: facebook-likes-you.php
     
    5268
    5369#: facebook-likes-you.php
     70msgid "Use Open Graph:"
     71msgstr ""
     72
     73#: facebook-likes-you.php
     74msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     75msgstr ""
     76
     77#: facebook-likes-you.php
     78msgid "Absolute path to default picture (used if not found any):"
     79msgstr ""
     80
     81#: facebook-likes-you.php
     82msgid "Back to default"
     83msgstr ""
     84
     85#: facebook-likes-you.php
    5486msgid "Your app ID:"
    5587msgstr "Seu Facebook App ID:"
    5688
    5789#: facebook-likes-you.php
    58 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>."
     90msgid "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>."
    5991msgstr "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>."
    6092
     
    68100
    69101#: facebook-likes-you.php
    70 msgid "Automatically increase the height accordingly"
    71 msgstr "Aumentar a altura automaticamente"
    72 
    73 #: facebook-likes-you.php
    74102msgid "Show at:"
    75103msgstr "Mostrar no:"
     
    140168
    141169#: facebook-likes-you.php
     170msgid "<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."
     171msgstr ""
     172
     173#: facebook-likes-you.php
     174msgid "Read the plugin homepage and its comments"
     175msgstr "Leia o site do plugin e seus comentários"
     176
     177#: facebook-likes-you.php
    142178msgid "Donate to this plugin"
    143179msgstr "Doar para este plugin"
    144180
    145181#: 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.php
    150182msgid "Save Changes"
    151183msgstr "Salvar Alterações"
     
    172204
    173205#: 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
     207msgid "Show Faces"
     208msgstr "Mostrar ícones"
    180209
    181210#: facebook-likes-you.php
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-ru_RU.po

    r403741 r427428  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-05-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"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Denis Kuligin <[email protected]>\n"
     
    1515"X-Poedit-SearchPath-0: .\n"
    1616
    17 #@ fb_like_trans_domain
     17#: facebook-likes-you.php
     18msgid "Important info for users"
     19msgstr ""
     20
     21# @ fb_like_trans_domain
    1822#: facebook-likes-you.php
    1923msgid "Appearance"
    2024msgstr "Внешний вид"
    2125
    22 #@ fb_like_trans_domain
     26# @ fb_like_trans_domain
    2327#: facebook-likes-you.php
    2428msgid "Width:"
    2529msgstr "Ширина:"
    2630
    27 #@ fb_like_trans_domain
     31#: facebook-likes-you.php
     32msgid "Height:"
     33msgstr ""
     34
     35# @ fb_like_trans_domain
    2836#: facebook-likes-you.php
    2937msgid "Layout:"
    3038msgstr "Расположение:"
    3139
    32 #@ fb_like_trans_domain
     40# @ fb_like_trans_domain
    3341#: facebook-likes-you.php
    3442msgid "Verb to display:"
    3543msgstr "Действие для отображения:"
    3644
    37 #@ fb_like_trans_domain
     45# @ fb_like_trans_domain
    3846#: facebook-likes-you.php
    3947msgid "Font:"
    4048msgstr "Шрифт:"
    4149
    42 #@ fb_like_trans_domain
     50# @ fb_like_trans_domain
    4351#: facebook-likes-you.php
    4452msgid "Color Scheme:"
    4553msgstr "Цветовая схема:"
    4654
    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
     56msgid "Fix for W3C Valid XFBML:"
     57msgstr ""
     58
     59#: facebook-likes-you.php
     60msgid "Send Button:"
     61msgstr ""
     62
     63#: facebook-likes-you.php
     64msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     65msgstr ""
     66
     67#: facebook-likes-you.php
     68msgid "Google +1 Button:"
     69msgstr ""
     70
     71# @ fb_like_trans_domain
    5872#: facebook-likes-you.php
    5973msgid "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>:"
    6074msgstr "Использовать <span title='XFBML версия является более универсальным, но требует использования JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    6175
    62 #@ fb_like_trans_domain
     76#: facebook-likes-you.php
     77msgid "Use Open Graph:"
     78msgstr ""
     79
     80#: facebook-likes-you.php
     81msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     82msgstr ""
     83
     84#: facebook-likes-you.php
     85msgid "Absolute path to default picture (used if not found any):"
     86msgstr ""
     87
     88#: facebook-likes-you.php
     89msgid "Back to default"
     90msgstr ""
     91
     92# @ fb_like_trans_domain
    6393#: facebook-likes-you.php
    6494msgid "Your app ID:"
    6595msgstr "ID Вашего приложения:"
    6696
    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>."
    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_domain
     97# @ fb_like_trans_domain
     98#: facebook-likes-you.php
     99msgid "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>."
     100msgstr "Если у вас нет 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
    73103#: facebook-likes-you.php
    74104msgid "Position"
    75105msgstr "Позиция"
    76106
    77 #@ fb_like_trans_domain
     107# @ fb_like_trans_domain
    78108#: facebook-likes-you.php
    79109msgid "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
    80110msgstr "Помните, что вы можете поместить кнопку используя <code>[fb-like-button]</code> в любом месте. There is PHP for that, but you can't use it in WordPress post editor - <code>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
    81111
    82 #@ fb_like_trans_domain
     112# @ fb_like_trans_domain
    83113#: facebook-likes-you.php
    84114msgid "Show at:"
    85115msgstr "Показывать:"
    86116
    87 #@ fb_like_trans_domain
     117# @ fb_like_trans_domain
    88118#: facebook-likes-you.php
    89119msgid "Top"
    90120msgstr "вверху"
    91121
    92 #@ fb_like_trans_domain
     122# @ fb_like_trans_domain
    93123#: facebook-likes-you.php
    94124msgid "Bottom"
    95125msgstr "внизу"
    96126
    97 #@ fb_like_trans_domain
     127# @ fb_like_trans_domain
    98128#: facebook-likes-you.php
    99129msgid "Show on:"
    100130msgstr "Показывать:"
    101131
    102 #@ fb_like_trans_domain
     132# @ fb_like_trans_domain
    103133#: facebook-likes-you.php
    104134msgid "Page"
    105135msgstr "на странице"
    106136
    107 #@ fb_like_trans_domain
     137# @ fb_like_trans_domain
    108138#: facebook-likes-you.php
    109139msgid "Post"
    110140msgstr "в записях"
    111141
    112 #@ fb_like_trans_domain
     142# @ fb_like_trans_domain
    113143#: facebook-likes-you.php
    114144msgid "Home"
    115145msgstr "на Главной странице"
    116146
    117 #@ fb_like_trans_domain
     147# @ fb_like_trans_domain
    118148#: facebook-likes-you.php
    119149msgid "Search"
    120150msgstr "в результатах поиска"
    121151
    122 #@ fb_like_trans_domain
     152# @ fb_like_trans_domain
    123153#: facebook-likes-you.php
    124154msgid "Archive"
    125155msgstr "в Архивах"
    126156
    127 #@ fb_like_trans_domain
     157# @ fb_like_trans_domain
    128158#: facebook-likes-you.php
    129159msgid "Margins:"
    130160msgstr "Поля:"
    131161
    132 #@ fb_like_trans_domain
     162# @ fb_like_trans_domain
    133163#: facebook-likes-you.php
    134164msgid "Exclude posts and pages:"
    135165msgstr "Исключить посты и/или страницы:"
    136166
    137 #@ fb_like_trans_domain
     167# @ fb_like_trans_domain
     168#: facebook-likes-you.php
     169msgid "Exclude categories:"
     170msgstr "Исключить категории:"
     171
     172# @ fb_like_trans_domain
    138173#: facebook-likes-you.php
    139174msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    140175msgstr "Вы можете указать номер, тег или название статьи, разделяйте запятыми.<br />Например, <code>17, Irish Stew, beef-stew</code>."
    141176
    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
    148178#: facebook-likes-you.php
    149179msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    150180msgstr "Вы можете указать ID категории, имя статьи или тег, разделяйте запятыми.<br />Например, <code>9, Stinky Cheeses, blue-cheese</code>."
    151181
    152 #@ fb_like_trans_domain
     182# @ fb_like_trans_domain
    153183#: facebook-likes-you.php
    154184msgid "Additional CSS style:"
    155185msgstr "Дополнительный CSS код:"
    156186
    157 #@ fb_like_trans_domain
     187# @ fb_like_trans_domain
    158188#: facebook-likes-you.php
    159189msgid "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>."
    160190msgstr "Добавленное свойство будет размещено между <code>style=\"</code> и <code>\"</code> . Если вы хотите сослаться на Like кнопку как в примере <strong>style.css</strong>,<br />попробуйте использовать <code>iframe.fblikes</code> или если вы используете XFBML <code>.fb_edge_widget_with_comment</code>."
    161191
    162 #@ fb_like_trans_domain
     192# @ fb_like_trans_domain
    163193#: facebook-likes-you.php
    164194msgid "Help and Support"
    165195msgstr "Помощь и поддержка"
    166196
    167 #@ fb_like_trans_domain
     197#: facebook-likes-you.php
     198msgid "<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."
     199msgstr ""
     200
     201# @ fb_like_trans_domain
     202#: facebook-likes-you.php
     203msgid "Read the plugin homepage and its comments"
     204msgstr "Найти информацию и комментарии можно на странице плагина"
     205
     206# @ fb_like_trans_domain
    168207#: facebook-likes-you.php
    169208msgid "Donate to this plugin"
    170209msgstr "Поддержать этот плагин"
    171210
    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
    178212#: facebook-likes-you.php
    179213msgid "Save Changes"
    180214msgstr "Сохранить изменения"
    181215
     216#: facebook-likes-you.php
     217msgid "Title:"
     218msgstr ""
     219
     220#: facebook-likes-you.php
     221msgid "Facebook Page URL:"
     222msgstr ""
     223
     224#: facebook-likes-you.php
     225msgid "The URL of the FB Page for this Like box."
     226msgstr ""
     227
     228#: facebook-likes-you.php
     229msgid "The width of the widget in pixels."
     230msgstr ""
     231
     232#: facebook-likes-you.php
     233msgid "In pixels too. Needed if you don't use XFBML."
     234msgstr ""
     235
     236# @ fb_like_trans_domain
     237#: facebook-likes-you.php
     238#, fuzzy
     239msgid "Show Faces"
     240msgstr "Показать лица"
     241
     242#: facebook-likes-you.php
     243msgid "Stream"
     244msgstr ""
     245
     246#: facebook-likes-you.php
     247msgid "Show the profile stream for the public profile."
     248msgstr ""
     249
     250#: facebook-likes-you.php
     251msgid "Header"
     252msgstr ""
     253
     254#: facebook-likes-you.php
     255msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
     256msgstr ""
     257
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-tr_TR.po

    r403741 r427428  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.6\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-06-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"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
     
    1919"X-Poedit-SearchPath-0: .\n"
    2020
    21 #@ fb_like_trans_domain
     21# @ fb_like_trans_domain
     22#: facebook-likes-you.php
     23msgid "Important info for users"
     24msgstr "Kullanıcı bilgileri için önemli"
     25
     26# @ fb_like_trans_domain
     27#: facebook-likes-you.php
     28msgid "Appearance"
     29msgstr "Görünüm"
     30
     31# @ fb_like_trans_domain
     32#: facebook-likes-you.php
     33msgid "Width:"
     34msgstr "Genişlik:"
     35
     36# @ fb_like_trans_domain
     37#: facebook-likes-you.php
     38msgid "Height:"
     39msgstr "Yükseklik:"
     40
     41# @ fb_like_trans_domain
     42#: facebook-likes-you.php
     43msgid "Layout:"
     44msgstr "Düzen:"
     45
     46# @ fb_like_trans_domain
     47#: facebook-likes-you.php
     48msgid "Verb to display:"
     49msgstr "Görüntülemek için:"
     50
     51# @ fb_like_trans_domain
     52#: facebook-likes-you.php
     53msgid "Font:"
     54msgstr "Yazı sitili:"
     55
     56# @ fb_like_trans_domain
     57#: facebook-likes-you.php
     58msgid "Color Scheme:"
     59msgstr "Renk Düzeni:"
     60
     61#: facebook-likes-you.php
     62msgid "Fix for W3C Valid XFBML:"
     63msgstr "XFBML için W3C geçerli düzeltme:"
     64
     65#: facebook-likes-you.php
     66msgid "Send Button:"
     67msgstr "Gönder Düğmesini Göster:"
     68
     69#: facebook-likes-you.php
     70msgid "It allows your users to easily send your content to their friends. <strong>Requires XFBML</strong>."
     71msgstr "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
     74msgid "Google +1 Button:"
     75msgstr "Google +1 Düğmesi:"
     76
     77# @ fb_like_trans_domain
     78#: facebook-likes-you.php
     79msgid "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>:"
     80msgstr "<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
     83msgid "Use Open Graph:"
     84msgstr "Açık Grafik kullanın:"
     85
     86#: facebook-likes-you.php
     87msgid "Mainly fixes an issue with wrong thumbnails. Turn off if you have another Open Graph plugin."
     88msgstr "Temelde yanlış küçük bir sorunu giderir. Başka bir Açık Grafik eklentisi varsa kapatın."
     89
     90#: facebook-likes-you.php
     91msgid "Absolute path to default picture (used if not found any):"
     92msgstr "Varsayılan resim yolu (başka kullanılan yoksa):"
     93
     94#: facebook-likes-you.php
     95msgid "Back to default"
     96msgstr "Varsayılana dön:"
     97
     98# @ fb_like_trans_domain
     99#: facebook-likes-you.php
     100msgid "Your app ID:"
     101msgstr "Uygulama ID:"
     102
     103# @ fb_like_trans_domain
     104#: facebook-likes-you.php
     105msgid "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>."
     106msgstr "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
     110msgid "Position"
     111msgstr "Pozisyon"
     112
     113# @ fb_like_trans_domain
     114#: facebook-likes-you.php
     115msgid "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
     116msgstr "<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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
     117
     118# @ fb_like_trans_domain
     119#: facebook-likes-you.php
     120msgid "Show at:"
     121msgstr "Gösterim pozisyonu:"
     122
     123# @ fb_like_trans_domain
     124#: facebook-likes-you.php
     125msgid "Top"
     126msgstr "Yukarda"
     127
     128# @ fb_like_trans_domain
     129#: facebook-likes-you.php
     130msgid "Bottom"
     131msgstr "Aşağıda"
     132
     133# @ fb_like_trans_domain
     134#: facebook-likes-you.php
     135msgid "Show on:"
     136msgstr "Gösterilecek sayfalar:"
     137
     138# @ fb_like_trans_domain
     139#: facebook-likes-you.php
     140msgid "Page"
     141msgstr "Sayfa"
     142
     143# @ fb_like_trans_domain
     144#: facebook-likes-you.php
     145msgid "Post"
     146msgstr "Yazı"
     147
     148# @ fb_like_trans_domain
     149#: facebook-likes-you.php
     150msgid "Home"
     151msgstr "Ana Sayfa"
     152
     153# @ fb_like_trans_domain
     154#: facebook-likes-you.php
     155msgid "Search"
     156msgstr "Arama"
     157
     158# @ fb_like_trans_domain
     159#: facebook-likes-you.php
     160msgid "Archive"
     161msgstr "Arşiv"
     162
     163# @ fb_like_trans_domain
     164#: facebook-likes-you.php
     165msgid "Margins:"
     166msgstr "Kenar boşlukları:"
     167
     168# @ fb_like_trans_domain
     169#: facebook-likes-you.php
     170msgid "Exclude posts and pages:"
     171msgstr "Mesajlar ve Sayfaları hariç tut:"
     172
     173# @ fb_like_trans_domain
     174#: facebook-likes-you.php
     175msgid "Exclude categories:"
     176msgstr "Kategorileri Hariç:"
     177
     178# @ fb_like_trans_domain
     179#: facebook-likes-you.php
     180msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
     181msgstr "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
     185msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
     186msgstr "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
     190msgid "Additional CSS style:"
     191msgstr "Ek CSS stili:"
     192
     193# @ fb_like_trans_domain
     194#: facebook-likes-you.php
     195msgid "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>."
     196msgstr "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
     200msgid "Help and Support"
     201msgstr "Yardım ve Destek"
     202
     203#: facebook-likes-you.php
     204msgid "<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."
     205msgstr "<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
     209msgid "Read the plugin homepage and its comments"
     210msgstr "Eklenti Ana Sayfasına Bakın veya Yorumları okuyun"
     211
     212# @ fb_like_trans_domain
     213#: facebook-likes-you.php
     214msgid "Donate to this plugin"
     215msgstr "Bu Eklenti için Bağış"
     216
     217# @ default
     218#: facebook-likes-you.php
     219msgid "Save Changes"
     220msgstr "Değişiklikleri Kaydet"
     221
     222# @ fb_like_trans_domain
    22223#: facebook-likes-you.php
    23224msgid "Title:"
    24225msgstr "Başlık:"
    25226
    26 #@ fb_like_trans_domain
     227# @ fb_like_trans_domain
    27228#: facebook-likes-you.php
    28229msgid "Facebook Page URL:"
    29230msgstr "Facebook Sayfa URL:"
    30231
    31 #@ fb_like_trans_domain
     232# @ fb_like_trans_domain
    32233#: facebook-likes-you.php
    33234msgid "The URL of the FB Page for this Like box."
    34235msgstr "Bunun gibi facebook sayfa URLsi."
    35236
    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
    42238#: facebook-likes-you.php
    43239msgid "The width of the widget in pixels."
    44240msgstr "Piksel olarak bileşen genişliği."
    45241
    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
    52243#: facebook-likes-you.php
    53244msgid "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_domain
     245msgstr "Çok piksel gerekli. Eğer XFBML kullanmıyorsanız gerekli."
     246
     247# @ fb_like_trans_domain
    57248#: facebook-likes-you.php
    58249msgid "Show Faces"
    59250msgstr "Yüzleri Göster"
    60251
    61 #@ fb_like_trans_domain
     252# @ fb_like_trans_domain
    62253#: facebook-likes-you.php
    63254msgid "Stream"
    64255msgstr "Profil Bağlantısı"
    65256
    66 #@ fb_like_trans_domain
     257# @ fb_like_trans_domain
    67258#: facebook-likes-you.php
    68259msgid "Show the profile stream for the public profile."
    69260msgstr "Profil bağlantısını göster."
    70261
    71 #@ fb_like_trans_domain
     262# @ fb_like_trans_domain
    72263#: facebook-likes-you.php
    73264msgid "Header"
    74265msgstr "Başlık"
    75266
    76 #@ fb_like_trans_domain
     267# @ fb_like_trans_domain
    77268#: facebook-likes-you.php
    78269msgid "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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</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>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</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 
     270msgstr "Ü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  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! 1.4.5\n"
     3"Project-Id-Version: Facebook Likes You! v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2011-05-03 01:22-0800\n"
     
    4747
    4848#: 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:"
     49msgid "Fix for W3C Valid XFBML:"
     50msgstr ""
     51
     52#: facebook-likes-you.php
     53msgid "Send Button:"
    5854msgstr ""
    5955
     
    171167
    172168#: facebook-likes-you.php
     169msgid "<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."
     170msgstr ""
     171
     172#: facebook-likes-you.php
     173msgid "Read the plugin homepage and its comments"
     174msgstr ""
     175
     176#: facebook-likes-you.php
    173177msgid "Donate to this plugin"
    174178msgstr ""
    175179
    176180#: facebook-likes-you.php
    177 msgid "Read the plugin homepage and its comments"
    178 msgstr ""
    179 
    180 #: facebook-likes-you.php
    181181msgid "Save Changes"
    182182msgstr ""
    183183
    184184#: 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.php
    189185msgid "Title:"
    190186msgstr ""
  • facebook-likes-you/trunk/readme.txt

    r422910 r427428  
    44Tags: 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
    55Requires at least: 2.9
    6 Tested up to: 3.2
    7 Stable tag: 1.4.7
     6Tested up to: 3.2.1
     7Stable tag: 1.5
    88
    99Facebook 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!
     
    1414
    1515* 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
    2522
    2623If 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!
     
    4845
    4946== 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
    5054= 1.4.7 =
    5155* Support for relative thumbnails' URL in Custom Fields
Note: See TracChangeset for help on using the changeset viewer.