Plugin Directory

Changeset 368395


Ignore:
Timestamp:
04/03/2011 05:58:10 PM (15 years ago)
Author:
sproject
Message:

1.1.6 release

Location:
facebook-likes-you/trunk
Files:
17 edited

Legend:

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

    r368273 r368395  
    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.1.5
     6Version: 1.1.6
    77Author: Piotr Sochalewski
    88Author URI: http://www.sproject.name/
     
    130130    $plugin_path = plugin_basename( dirname( __FILE__ ) .'/languages' );
    131131    load_plugin_textdomain( 'fb_like_trans_domain', '', $plugin_path );
    132 
    133132}
    134133
     
    538537        </tr>
    539538        <tr valign="top">
    540             <th scope="row"><?php _e("Show at Top:", 'fb_like_trans_domain' ); ?></th>
    541             <td><input type="checkbox" name="fb_like_show_at_top" value="true" <?php echo (get_option('fb_like_show_at_top') == 'true' ? 'checked' : ''); ?>/></td>
    542         </tr>
    543         <tr valign="top">
    544             <th scope="row"><?php _e("Show at Bottom:", 'fb_like_trans_domain' ); ?></th>
    545             <td><input type="checkbox" name="fb_like_show_at_bottom" value="true" <?php echo (get_option('fb_like_show_at_bottom') == 'true' ? 'checked' : ''); ?>/></td>
    546         </tr>
    547         <tr valign="top">
    548             <th scope="row"><?php _e("Show on Page:", 'fb_like_trans_domain' ); ?></th>
    549             <td><input type="checkbox" name="fb_like_show_on_page" value="true" <?php echo (get_option('fb_like_show_on_page') == 'true' ? 'checked' : ''); ?>/></td>
    550         </tr>
    551         <tr valign="top">
    552             <th scope="row"><?php _e("Show on Post:", 'fb_like_trans_domain' ); ?></th>
    553             <td><input type="checkbox" name="fb_like_show_on_post" value="true" <?php echo (get_option('fb_like_show_on_post') == 'true' ? 'checked' : ''); ?>/></td>
    554         </tr>
    555         <tr valign="top">
    556             <th scope="row"><?php _e("Show on Home:", 'fb_like_trans_domain' ); ?></th>
    557             <td><input type="checkbox" name="fb_like_show_on_home" value="true" <?php echo (get_option('fb_like_show_on_home') == 'true' ? 'checked' : ''); ?>/></td>
    558         </tr>
    559         <tr valign="top">
    560             <th scope="row"><?php _e("Show on Search:", 'fb_like_trans_domain' ); ?></th>
    561             <td><input type="checkbox" name="fb_like_show_on_search" value="true" <?php echo (get_option('fb_like_show_on_search') == 'true' ? 'checked' : ''); ?>/></td>
    562         </tr>
    563         <tr valign="top">
    564             <th scope="row"><?php _e("Show on Archive:", 'fb_like_trans_domain' ); ?></th>
    565             <td><input type="checkbox" name="fb_like_show_on_archive" value="true" <?php echo (get_option('fb_like_show_on_archive') == 'true' ? 'checked' : ''); ?>/></td>
     539            <th scope="row"><?php _e("Show at:", 'fb_like_trans_domain' ); ?></th>
     540            <td>
     541                <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 />
     542                <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 />
     543            </td>
     544        </tr>
     545        <tr valign="top">
     546            <th scope="row"><?php _e("Show on:", 'fb_like_trans_domain' ); ?></th>
     547            <td>
     548                <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 />
     549                <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 />
     550                <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 />
     551                <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 />
     552                <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 />
     553            </td>
    566554        </tr>
    567555        <tr valign="top">
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-cs_CZ.po

    r367763 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You!\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-04-01 03:48+0100\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Georgij Gadjukin <[email protected]>\n"
     
    1616
    1717#@ fb_like_trans_domain
    18 #: facebook-likes-it.php
     18#: facebook-likes-you.php
    1919msgid "Appearance"
    2020msgstr "Vzhled"
    2121
    2222#@ fb_like_trans_domain
    23 #: facebook-likes-it.php
     23#: facebook-likes-you.php
    2424msgid "Width:"
    2525msgstr "Šířka:"
    2626
    2727#@ fb_like_trans_domain
    28 #: facebook-likes-it.php
     28#: facebook-likes-you.php
    2929msgid "Layout:"
    3030msgstr "Rozložení:"
    3131
    3232#@ fb_like_trans_domain
    33 #: facebook-likes-it.php
     33#: facebook-likes-you.php
    3434msgid "Verb to display:"
    3535msgstr "Zobrazené slovo:"
    3636
    3737#@ fb_like_trans_domain
    38 #: facebook-likes-it.php
     38#: facebook-likes-you.php
    3939msgid "Font:"
    4040msgstr "Písmo:"
    4141
    4242#@ fb_like_trans_domain
    43 #: facebook-likes-it.php
     43#: facebook-likes-you.php
    4444msgid "Color Scheme:"
    4545msgstr "Barevné schéma:"
    4646
    4747#@ fb_like_trans_domain
    48 #: facebook-likes-it.php
     48#: facebook-likes-you.php
    4949msgid "Show Faces:"
    5050msgstr "Zobrazit obrázky profilu:"
    5151
    5252#@ fb_like_trans_domain
    53 #: facebook-likes-it.php
     53#: facebook-likes-you.php
    5454msgid "Automatically increase the height accordingly"
    5555msgstr "Automaticky podle toho zvětšit výšku"
    5656
    5757#@ fb_like_trans_domain
    58 #: facebook-likes-it.php
     58#: facebook-likes-you.php
    5959msgid "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>:"
    6060msgstr "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>"
    6161
    6262#@ fb_like_trans_domain
    63 #: facebook-likes-it.php
     63#: facebook-likes-you.php
    6464msgid "Your app ID:"
    6565msgstr "Vaše app ID:"
    6666
    6767#@ fb_like_trans_domain
    68 #: facebook-likes-it.php
     68#: facebook-likes-you.php
    6969msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    7070msgstr "Pokud nemáte app ID, můžete políčko nechat prázdné a použít výchozí app ID Facebooku <code>113869198637480</code>,<br />ale nezapomeňte, že můžete získat svůj vlastní app ID po <a href='http://developers.facebook.com/setup/' target='_blank'>registraci vaší žádosti</a> ."
    7171
    7272#@ fb_like_trans_domain
    73 #: facebook-likes-it.php
     73#: facebook-likes-you.php
    7474msgid "Position"
    7575msgstr "Pozice"
    7676
    7777#@ fb_like_trans_domain
    78 #: facebook-likes-it.php
     78#: facebook-likes-you.php
    7979msgid "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>."
    8080msgstr "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>."
    8181
    8282#@ fb_like_trans_domain
    83 #: facebook-likes-it.php
    84 msgid "Show at Top:"
    85 msgstr "Zobrazit na začátku:"
    86 
    87 #@ fb_like_trans_domain
    88 #: facebook-likes-it.php
    89 msgid "Show at Bottom:"
    90 msgstr "Zobrazit na konci:"
    91 
    92 #@ fb_like_trans_domain
    93 #: facebook-likes-it.php
    94 msgid "Show on Page:"
    95 msgstr "Zobrazit na stránce:"
    96 
    97 #@ fb_like_trans_domain
    98 #: facebook-likes-it.php
    99 msgid "Show on Post:"
    100 msgstr "Zobrazit u příspěvku:"
    101 
    102 #@ fb_like_trans_domain
    103 #: facebook-likes-it.php
    104 msgid "Show on Home:"
    105 msgstr "Zobrazit ve výpisu:"
    106 
    107 #@ fb_like_trans_domain
    108 #: facebook-likes-it.php
    109 msgid "Show on Search:"
    110 msgstr "Zobrazit u vyhledávání:"
    111 
    112 #@ fb_like_trans_domain
    113 #: facebook-likes-it.php
    114 msgid "Show on Archive:"
    115 msgstr "Zobrazit u archívu:"
    116 
    117 #@ fb_like_trans_domain
    118 #: facebook-likes-it.php
     83#: facebook-likes-you.php
     84msgid "Show at:"
     85msgstr "Zobrazit na:"
     86
     87#@ fb_like_trans_domain
     88#: facebook-likes-you.php
     89msgid "Top"
     90msgstr "začátku"
     91
     92#@ fb_like_trans_domain
     93#: facebook-likes-you.php
     94msgid "Bottom"
     95msgstr "konci"
     96
     97#@ fb_like_trans_domain
     98#: facebook-likes-you.php
     99msgid "Show on:"
     100msgstr "Zobrazit:"
     101
     102#@ fb_like_trans_domain
     103#: facebook-likes-you.php
     104msgid "Page"
     105msgstr "na stránce"
     106
     107#@ fb_like_trans_domain
     108#: facebook-likes-you.php
     109msgid "Post"
     110msgstr "u příspěvku"
     111
     112#@ fb_like_trans_domain
     113#: facebook-likes-you.php
     114msgid "Home"
     115msgstr "ve výpisu"
     116
     117#@ fb_like_trans_domain
     118#: facebook-likes-you.php
     119msgid "Search"
     120msgstr "u vyhledávání"
     121
     122#@ fb_like_trans_domain
     123#: facebook-likes-you.php
     124msgid "Archive"
     125msgstr "u archívu"
     126
     127#@ fb_like_trans_domain
     128#: facebook-likes-you.php
    119129msgid "Margins:"
    120130msgstr "Marže:"
    121131
    122132#@ fb_like_trans_domain
    123 #: facebook-likes-it.php
     133#: facebook-likes-you.php
    124134msgid "Exclude posts and pages:"
    125135msgstr "Vyjmout příspěvky a stránky:"
    126136
    127137#@ fb_like_trans_domain
    128 #: facebook-likes-it.php
     138#: facebook-likes-you.php
    129139msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    130140msgstr "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> ."
    131141
    132142#@ fb_like_trans_domain
    133 #: facebook-likes-it.php
     143#: facebook-likes-you.php
    134144msgid "Exclude categories:"
    135145msgstr "Vyjmout kategorie:"
    136146
    137147#@ fb_like_trans_domain
    138 #: facebook-likes-it.php
     148#: facebook-likes-you.php
    139149msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    140150msgstr "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> ."
    141151
    142152#@ fb_like_trans_domain
    143 #: facebook-likes-it.php
     153#: facebook-likes-you.php
    144154msgid "Additional CSS style:"
    145155msgstr "Dodatečný CSS styl:"
    146156
    147157#@ fb_like_trans_domain
    148 #: facebook-likes-it.php
     158#: facebook-likes-you.php
    149159msgid "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>."
    150160msgstr "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> ."
    151161
    152162#@ fb_like_trans_domain
    153 #: facebook-likes-it.php
     163#: facebook-likes-you.php
    154164msgid "Help and Support"
    155165msgstr "Nápověda a odborná pomoc"
    156166
    157167#@ fb_like_trans_domain
    158 #: facebook-likes-it.php
     168#: facebook-likes-you.php
    159169msgid "Donate to this plugin"
    160170msgstr "Přispějte na tento plugin"
    161171
    162172#@ fb_like_trans_domain
    163 #: facebook-likes-it.php
     173#: facebook-likes-you.php
    164174msgid "Read the plugin homepage and its comments"
    165175msgstr "Přečtěte si domovskou stránku pluginu a komentáře"
    166176
    167177#@ default
    168 #: facebook-likes-it.php
     178#: facebook-likes-you.php
    169179msgid "Save Changes"
    170180msgstr "Uložit změny"
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-de_DE.po

    r368274 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You! v1.1.4\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-04-01 13:37+0000\n"
    7 "Last-Translator: Stefan Meier\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
     7"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Stefan Meier\n"
    99"MIME-Version: 1.0\n"
     
    1414"X-Poedit-Country: GERMANY\n"
    1515"X-Poedit-SourceCharset: utf-8\n"
    16 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
     16"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
    1717"X-Poedit-Basepath: ../\n"
    18 "X-Poedit-Bookmarks: \n"
     18"X-Textdomain-Support: yes\n"
    1919"X-Poedit-SearchPath-0: .\n"
    20 "X-Textdomain-Support: yes"
    21 
    22 #: facebook-likes-you.php:397
    23 #@ fb_like_trans_domain
     20
     21#@ fb_like_trans_domain
     22#: facebook-likes-you.php
    2423msgid "Title:"
    2524msgstr "Titel:"
    2625
    27 #: facebook-likes-you.php:399
    28 #@ fb_like_trans_domain
     26#@ fb_like_trans_domain
     27#: facebook-likes-you.php
    2928msgid "Facebook Page URL:"
    3029msgstr "Facebook Seite URL:"
    3130
    32 #: facebook-likes-you.php:399
    33 #@ fb_like_trans_domain
     31#@ fb_like_trans_domain
     32#: facebook-likes-you.php
    3433msgid "The URL of the FB Page for this Like box."
    3534msgstr "Die URL der FB Seite für diese Like Box."
    3635
    37 #: facebook-likes-you.php:401
    38 #: facebook-likes-you.php:464
    39 #@ fb_like_trans_domain
     36#@ fb_like_trans_domain
     37#: facebook-likes-you.php
    4038msgid "Width:"
    4139msgstr "Breite:"
    4240
    43 #: facebook-likes-you.php:401
    44 #@ fb_like_trans_domain
     41#@ fb_like_trans_domain
     42#: facebook-likes-you.php
    4543msgid "The width of the widget in pixels."
    4644msgstr "Die Breite des Widgets in Pixeln."
    4745
    48 #: facebook-likes-you.php:407
    49 #@ fb_like_trans_domain
     46#@ fb_like_trans_domain
     47#: facebook-likes-you.php
    5048msgid "Height:"
    5149msgstr "Höhe:"
    5250
    53 #: facebook-likes-you.php:415
    54 #@ fb_like_trans_domain
     51#@ fb_like_trans_domain
     52#: facebook-likes-you.php
    5553msgid "In pixels too. Needed if you don't use XFBML."
    5654msgstr "Die Höhe des Widgets in Pixeln. Nötig, falls du nicht XFBML benutzt."
    5755
    58 #: facebook-likes-you.php:419
    59 #@ fb_like_trans_domain
     56#@ fb_like_trans_domain
     57#: facebook-likes-you.php
    6058msgid "Show Faces"
    6159msgstr "Gesichter zeigen"
    6260
    63 #: facebook-likes-you.php:421
    64 #@ fb_like_trans_domain
     61#@ fb_like_trans_domain
     62#: facebook-likes-you.php
    6563msgid "Stream"
    6664msgstr "Stream"
    6765
    68 #: facebook-likes-you.php:421
    69 #@ fb_like_trans_domain
     66#@ fb_like_trans_domain
     67#: facebook-likes-you.php
    7068msgid "Show the profile stream for the public profile."
    7169msgstr "Zeigt die Profilaktivität für das öffentliche Profil."
    7270
    73 #: facebook-likes-you.php:423
    74 #@ fb_like_trans_domain
     71#@ fb_like_trans_domain
     72#: facebook-likes-you.php
    7573msgid "Header"
    7674msgstr "Header"
    7775
    78 #: facebook-likes-you.php:423
    79 #@ fb_like_trans_domain
     76#@ fb_like_trans_domain
     77#: facebook-likes-you.php
    8078msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
    81 msgstr "Zeigt die 'Finde uns auf Facebook' Leiste am oberen Rand an.<br ><small>Nur wenn Stream oder Gesicher angezeigt werden.</small>"
    82 
    83 #: facebook-likes-you.php:455
    84 #@ fb_like_trans_domain
     79msgstr "Zeigt die 'Finde uns auf Facebook' Leiste am oberen Rand an.<br /><small>Nur wenn Stream oder Gesicher angezeigt werden.</small>"
     80
     81#@ fb_like_trans_domain
     82#: facebook-likes-you.php
    8583msgid "Important info for users"
    8684msgstr "Wichtiger Information für Nutzer"
    8785
    88 #: facebook-likes-you.php:460
    89 #@ fb_like_trans_domain
     86#@ fb_like_trans_domain
     87#: facebook-likes-you.php
    9088msgid "Appearance"
    9189msgstr "Erscheinung"
    9290
    93 #: facebook-likes-you.php:468
    94 #@ fb_like_trans_domain
     91#@ fb_like_trans_domain
     92#: facebook-likes-you.php
    9593msgid "Layout:"
    9694msgstr "Layout:"
    9795
    98 #: facebook-likes-you.php:480
    99 #@ fb_like_trans_domain
     96#@ fb_like_trans_domain
     97#: facebook-likes-you.php
    10098msgid "Verb to display:"
    10199msgstr "Anzuzeigendes Verb:"
    102100
    103 #: facebook-likes-you.php:492
    104 #@ fb_like_trans_domain
     101#@ fb_like_trans_domain
     102#: facebook-likes-you.php
    105103msgid "Font:"
    106104msgstr "Schriftart:"
    107105
    108 #: facebook-likes-you.php:504
    109 #@ fb_like_trans_domain
     106#@ fb_like_trans_domain
     107#: facebook-likes-you.php
    110108msgid "Color Scheme:"
    111109msgstr "Farbschema:"
    112110
    113 #: facebook-likes-you.php:516
    114 #@ fb_like_trans_domain
     111#@ fb_like_trans_domain
     112#: facebook-likes-you.php
    115113msgid "HTML5 Mode:"
    116114msgstr "HTML5 Modus:"
    117115
    118 #: facebook-likes-you.php:517
    119 #@ fb_like_trans_domain
     116#@ fb_like_trans_domain
     117#: facebook-likes-you.php
    120118msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers."
    121119msgstr "Empfohlen, falls dein Blog HTML5 unterstützt und/oder deine Seite valide sein soll. NICHT von allen Browsern unterstützt."
    122120
    123 #: facebook-likes-you.php:520
    124 #@ fb_like_trans_domain
     121#@ fb_like_trans_domain
     122#: facebook-likes-you.php
    125123msgid "Show Faces:"
    126124msgstr "Gesicher zeigen:"
    127125
    128 #: facebook-likes-you.php:521
    129 #@ fb_like_trans_domain
     126#@ fb_like_trans_domain
     127#: facebook-likes-you.php
    130128msgid "Automatically increase the height accordingly"
    131129msgstr "Höhe automatisch anpassen"
    132130
    133 #: facebook-likes-you.php:524
    134 #@ fb_like_trans_domain
     131#@ fb_like_trans_domain
     132#: facebook-likes-you.php
    135133msgid "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>:"
    136134msgstr "Benutze <span title='XFBML Version ist vielseitiger, aber benötigt JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    137135
    138 #: facebook-likes-you.php:528
    139 #@ fb_like_trans_domain
     136#@ fb_like_trans_domain
     137#: facebook-likes-you.php
    140138msgid "Your app ID:"
    141139msgstr "Deine App-ID:"
    142140
    143 #: facebook-likes-you.php:529
    144 #@ fb_like_trans_domain
     141#@ fb_like_trans_domain
     142#: facebook-likes-you.php
    145143msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    146144msgstr "Falls du keine App-ID hast, kannst du dieses Feld leer lassen, um die standardmäßige Facebook App-ID <code>113869198637480</code> zu benutzen,<br />du kannst allerdings auch eine eigene App-ID bekommen, indem du <a href='http://developers.facebook.com/setup/' target='_blank'>deine Applikation registrierst</a>."
    147145
    148 #: facebook-likes-you.php:532
    149 #@ fb_like_trans_domain
     146#@ fb_like_trans_domain
     147#: facebook-likes-you.php
    150148msgid "Position"
    151149msgstr "Position"
    152150
    153 #: facebook-likes-you.php:535
    154 #@ fb_like_trans_domain
     151#@ fb_like_trans_domain
     152#: facebook-likes-you.php
    155153msgid "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>."
    156154msgstr "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>."
    157155
    158 #: facebook-likes-you.php:538
    159 #@ fb_like_trans_domain
    160 msgid "Show at Top:"
    161 msgstr "Oben anzeigen:"
    162 
    163 #: facebook-likes-you.php:542
    164 #@ fb_like_trans_domain
    165 msgid "Show at Bottom:"
    166 msgstr "Unten anzeigen:"
    167 
    168 #: facebook-likes-you.php:546
    169 #@ fb_like_trans_domain
    170 msgid "Show on Page:"
    171 msgstr "Auf Seite anzeigen:"
    172 
    173 #: facebook-likes-you.php:550
    174 #@ fb_like_trans_domain
    175 msgid "Show on Post:"
    176 msgstr "In Artikel anzeigen:"
    177 
    178 #: facebook-likes-you.php:554
    179 #@ fb_like_trans_domain
    180 msgid "Show on Home:"
    181 msgstr "Auf der Startseite anzeigen:"
    182 
    183 #: facebook-likes-you.php:558
    184 #@ fb_like_trans_domain
    185 msgid "Show on Search:"
    186 msgstr "Bei der Suche anzeigen:"
    187 
    188 #: facebook-likes-you.php:562
    189 #@ fb_like_trans_domain
    190 msgid "Show on Archive:"
    191 msgstr "Im Archiv anzeigen:"
    192 
    193 #: facebook-likes-you.php:566
    194 #@ fb_like_trans_domain
     156#@ fb_like_trans_domain
     157#: facebook-likes-you.php
     158msgid "Show at:"
     159msgstr "Anzeigen:"
     160
     161#@ fb_like_trans_domain
     162#: facebook-likes-you.php
     163msgid "Top"
     164msgstr "oben"
     165
     166#@ fb_like_trans_domain
     167#: facebook-likes-you.php
     168msgid "Bottom"
     169msgstr "unten"
     170
     171#@ fb_like_trans_domain
     172#: facebook-likes-you.php
     173msgid "Show on:"
     174msgstr "Anzeigen:"
     175
     176#@ fb_like_trans_domain
     177#: facebook-likes-you.php
     178msgid "Page"
     179msgstr "auf Seite"
     180
     181#@ fb_like_trans_domain
     182#: facebook-likes-you.php
     183msgid "Post"
     184msgstr "in Artikel"
     185
     186#@ fb_like_trans_domain
     187#: facebook-likes-you.php
     188msgid "Home"
     189msgstr "auf der Startseite"
     190
     191#@ fb_like_trans_domain
     192#: facebook-likes-you.php
     193msgid "Search"
     194msgstr "bei der Suche"
     195
     196#@ fb_like_trans_domain
     197#: facebook-likes-you.php
     198msgid "Archive"
     199msgstr "im Archiv"
     200
     201#@ fb_like_trans_domain
     202#: facebook-likes-you.php
    195203msgid "Margins:"
    196204msgstr "Abstände:"
    197205
    198 #: facebook-likes-you.php:581
    199 #@ fb_like_trans_domain
     206#@ fb_like_trans_domain
     207#: facebook-likes-you.php
    200208msgid "Exclude posts and pages:"
    201209msgstr "Seiten und Artikel ausschließen:"
    202210
    203 #: facebook-likes-you.php:582
    204 #@ fb_like_trans_domain
     211#@ fb_like_trans_domain
     212#: facebook-likes-you.php
    205213msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    206214msgstr "Du kannst ID, Titel oder Slug der Artikel/Seiten eintippen, getrennt mit Kommas.<br />z.B. <code>17, Irish Stew, beef-stew</code>."
    207215
    208 #: facebook-likes-you.php:585
    209 #@ fb_like_trans_domain
     216#@ fb_like_trans_domain
     217#: facebook-likes-you.php
    210218msgid "Exclude categories:"
    211219msgstr "Kategorien ausschließen:"
    212220
    213 #: facebook-likes-you.php:586
    214 #@ fb_like_trans_domain
     221#@ fb_like_trans_domain
     222#: facebook-likes-you.php
    215223msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    216224msgstr "Du kannst ID, Titel oder Slug der Kategorien eintippen, getrennt mit Kommas.<br />z.B. <code>9, Stinky Cheeses, blue-cheese</code>."
    217225
    218 #: facebook-likes-you.php:589
    219 #@ fb_like_trans_domain
     226#@ fb_like_trans_domain
     227#: facebook-likes-you.php
    220228msgid "Additional CSS style:"
    221229msgstr "Zusätzliches CSS:"
    222230
    223 #: facebook-likes-you.php:590
    224 #@ fb_like_trans_domain
     231#@ fb_like_trans_domain
     232#: facebook-likes-you.php
    225233msgid "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>."
    226234msgstr "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>."
    227235
    228 #: facebook-likes-you.php:594
    229 #@ fb_like_trans_domain
     236#@ fb_like_trans_domain
     237#: facebook-likes-you.php
    230238msgid "Help and Support"
    231239msgstr "Hilfe und Support"
    232240
    233 #: facebook-likes-you.php:598
    234 #@ fb_like_trans_domain
     241#@ fb_like_trans_domain
     242#: facebook-likes-you.php
    235243msgid "Donate to this plugin"
    236244msgstr "Für dieses Plugin spenden"
    237245
    238 #: facebook-likes-you.php:601
    239 #@ fb_like_trans_domain
     246#@ fb_like_trans_domain
     247#: facebook-likes-you.php
    240248msgid "Read the plugin homepage and its comments"
    241249msgstr "Plugin Homepage aufrufen"
    242250
    243 #: facebook-likes-you.php:606
    244251#@ default
     252#: facebook-likes-you.php
    245253msgid "Save Changes"
    246254msgstr "Änderungen speichern"
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-id_ID.po

    r367763 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You!\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2010-05-10 11:45-0800\n"
    6 "PO-Revision-Date: 2011-04-01 03:48+0100\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Dadan Adrian Y. <[email protected]>\n"
     
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: fb_likes_widget.php
     18#: facebook-likes-you.php
    1919msgid "Appearance"
    2020msgstr "Tampilan"
    2121
    22 #: fb_likes_widget.php
     22#: facebook-likes-you.php
    2323msgid "Width:"
    2424msgstr "Lebar:"
    2525
    26 #: fb_likes_widget.php
     26#: facebook-likes-you.php
    2727msgid "Height:"
    2828msgstr "Tinggi:"
    2929
    30 #: fb_likes_widget.php
     30#: facebook-likes-you.php
    3131msgid "Layout:"
    3232msgstr "Layout:"
    3333
    34 #: fb_likes_widget.php
     34#: facebook-likes-you.php
    3535msgid "Verb to display:"
    3636msgstr "Kalimat/kata untuk tampilan:"
    3737
    38 #: fb_likes_widget.php
     38#: facebook-likes-you.php
    3939msgid "Font:"
    4040msgstr "Font:"
    4141
    42 #: fb_likes_widget.php
     42#: facebook-likes-you.php
    4343msgid "Color Scheme:"
    4444msgstr "Skema Warna:"
    4545
    46 #: fb_likes_widget.php
     46#: facebook-likes-you.php
    4747msgid "Show Faces:"
    4848msgstr "Tampilkan: Photo"
    4949
    50 #: fb_likes_widget.php
     50#: facebook-likes-you.php
    5151msgid "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>:"
    5252msgstr "Gunakan <span title='XFBML lebih serbaguna, tapi membutuhkan JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    5353
    54 #: fb_likes_widget.php
     54#: facebook-likes-you.php
    5555msgid "Your app ID:"
    5656msgstr "Facebook App ID Anda:"
    5757
    58 #: fb_likes_widget.php
     58#: facebook-likes-you.php
    5959msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    6060msgstr "Jika tidak/belum mempunyai app ID, biarkan kosong untuk menggunakan Facebook app ID <code>113869198637480</code> standard,<br /> Anda dapat mempunyai app ID sendiri dengan cara <a href='http://developers.facebook.com/setup/' target='_blank'>mendaftarkan diri</a> disini."
    6161
    62 #: fb_likes_widget.php
     62#: facebook-likes-you.php
    6363msgid "Position"
    6464msgstr "Posisi"
    6565
    66 #: fb_likes_widget.php
     66#: facebook-likes-you.php
    6767msgid "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>."
    6868msgstr "Anda dapat menempatkan secara manual menggunakan <code>[fb-like-button]</code> dimana saja. 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>."
    6969
    70 #: fb_likes_widget.php
     70#: facebook-likes-you.php
    7171msgid "Automatically increase the height accordingly"
    7272msgstr "Secara otomatis tingginya menyesuaikan"
    7373
    74 #: fb_likes_widget.php
    75 msgid "Show at Top:"
    76 msgstr "Tampilkan dibagian atas:"
     74#: facebook-likes-you.php
     75msgid "Show at:"
     76msgstr "Tampilkan dibagian:"
    7777
    78 #: fb_likes_widget.php
    79 msgid "Show at Bottom:"
    80 msgstr "Tampilkan dibagian bawah:"
     78#: facebook-likes-you.php
     79msgid "Top"
     80msgstr "atas"
    8181
    82 #: fb_likes_widget.php
    83 msgid "Show on Page:"
    84 msgstr "Tampilkan dihalaman:"
     82#: facebook-likes-you.php
     83msgid "Bottom"
     84msgstr "bawah"
    8585
    86 #: fb_likes_widget.php
    87 msgid "Show on Post:"
    88 msgstr "Tampilkan dipostingan:"
     86#: facebook-likes-you.php
     87msgid "Show on:"
     88msgstr "Tampilkan:"
    8989
    90 #: fb_likes_widget.php
    91 msgid "Show on Home:"
    92 msgstr "Tampilkan di Home:"
     90#: facebook-likes-you.php
     91msgid "Page"
     92msgstr "dihalaman"
    9393
    94 #: fb_likes_widget.php
    95 msgid "Show on Search:"
    96 msgstr "Tampilkan dipencarian:"
     94#: facebook-likes-you.php
     95msgid "Post"
     96msgstr "dipostingan"
    9797
    98 #: fb_likes_widget.php
    99 msgid "Show on Archive:"
    100 msgstr "Tampilkan di Arsip:"
     98#: facebook-likes-you.php
     99msgid "Home"
     100msgstr "di Home"
    101101
    102 #: fb_likes_widget.php
     102#: facebook-likes-you.php
     103msgid "Search"
     104msgstr "dipencarian"
     105
     106#: facebook-likes-you.php
     107msgid "Archive"
     108msgstr "di Arsip"
     109
     110#: facebook-likes-you.php
    103111msgid "Margins:"
    104112msgstr "Batas:"
    105113
    106 #: fb_likes_widget.php
     114#: facebook-likes-you.php
    107115msgid "Exclude posts and pages:"
    108116msgstr "Kecualikan post dan halaman ini:"
    109117
    110 #: fb_likes_widget.php
     118#: facebook-likes-you.php
    111119msgid "Exclude categories:"
    112120msgstr "Kecualikan kategori ini:"
    113121
    114 #: fb_likes_widget.php
     122#: facebook-likes-you.php
    115123msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    116124msgstr "Anda dapat menuliskan beberapa atau semua post/page ID, judul, atau slug dipisahkan dengan koma.<br />Contoh, <code>17, Irish Stew, beef-stew</code>."
    117125
    118 #: fb_likes_widget.php
     126#: facebook-likes-you.php
    119127msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    120128msgstr "Anda dapat menuliskan beberapa atau semua kategori ID, nama, atau slug dipisahkan dengan koma.<br />Contoh, <code>9, Stinky Cheeses, blue-cheese</code>."
    121129
    122 #: fb_likes_widget.php
     130#: facebook-likes-you.php
    123131msgid "Additional CSS style:"
    124132msgstr "Style CSS tambahan:"
    125133
    126 #: fb_likes_widget.php
     134#: facebook-likes-you.php
    127135msgid "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>."
    128136msgstr "Properti tambahan akan ditempatkan diantara <code>style=\"</code> e <code>\"</code>. Jika Anda ingin menempatkan tombol Like ditempat lain, misalnya <strong>style.css</strong>,<br />cobalah gunakan <code>iframe.fblikes</code> ini atau <code>.fb_edge_widget_with_comment</code> jika Anda menggunakan XFBML."
    129137
    130 #: fb_likes_widget.php
     138#: facebook-likes-you.php
    131139msgid "Help and Support"
    132140msgstr "Bantuan dan Dukungan"
    133141
    134 #: fb_likes_widget.php
     142#: facebook-likes-you.php
    135143msgid "Donate to this plugin"
    136144msgstr "Kirim donasi untuk plugin ini"
    137145
    138 #: fb_likes_widget.php
     146#: facebook-likes-you.php
    139147msgid "Read the plugin homepage and its comments"
    140148msgstr "Baca halaman plugin ini dan komentarnya"
    141149
    142 #: fb_likes_widget.php
     150#: facebook-likes-you.php
    143151msgid "Save Changes"
    144152msgstr "Simpan Perubahan"
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-it_IT.po

    r367763 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You!\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2010-12-03 10:35+0100\n"
    6 "PO-Revision-Date: 2011-04-01 03:48+0100\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Paolo Nicorelli <[email protected]>\n"
     
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: fb_likes_widget.php
     18#: facebook-likes-you.php
    1919msgid "Appearance"
    2020msgstr "Aspetto"
    2121
    22 #: fb_likes_widget.php
     22#: facebook-likes-you.php
    2323msgid "Width:"
    2424msgstr "Larghezza:"
    2525
    26 #: fb_likes_widget.php
     26#: facebook-likes-you.php
    2727msgid "Height:"
    2828msgstr "Altezza:"
    2929
    30 #: fb_likes_widget.php
     30#: facebook-likes-you.php
    3131msgid "Layout:"
    3232msgstr "Layout:"
    3333
    34 #: fb_likes_widget.php
     34#: facebook-likes-you.php
    3535msgid "Verb to display:"
    3636msgstr "Verbo da usare:"
    3737
    38 #: fb_likes_widget.php
     38#: facebook-likes-you.php
    3939msgid "Font:"
    4040msgstr "Font:"
    4141
    42 #: fb_likes_widget.php
     42#: facebook-likes-you.php
    4343msgid "Color Scheme:"
    4444msgstr "Schema di colori:"
    4545
    46 #: fb_likes_widget.php
     46#: facebook-likes-you.php
    4747msgid "Show Faces:"
    4848msgstr "Visualizzare icone:"
    4949
    50 #: fb_likes_widget.php
     50#: facebook-likes-you.php
    5151msgid "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>:"
    5252msgstr "Usare <span title='Utilizzare XFBML aumenta la versatilità, ma richiede JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    5353
    54 #: fb_likes_widget.php
     54#: facebook-likes-you.php
    5555msgid "Your app ID:"
    5656msgstr "La tua Facebook App ID:"
    5757
    58 #: fb_likes_widget.php
     58#: facebook-likes-you.php
    5959msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    6060msgstr "Nel caso tu non abbia una Facebook App ID lascia il campo vuoto, verrà utilizzata la ID di default <code>113869198637480</code>.<br /> ricordati che puoi ottenere una App ID <a href='http://developers.facebook.com/setup/' target='_blank'>registrando l'applicazione qui</a>."
    6161
    62 #: fb_likes_widget.php
     62#: facebook-likes-you.php
    6363msgid "Position"
    6464msgstr "Posizione"
    6565
    66 #: fb_likes_widget.php
     66#: facebook-likes-you.php
    6767msgid "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>."
    6868msgstr "Puoi posizionare il like-it inserendo il codice <code>[fb-like-button]</code> ovunque tu voglia. 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>."
    6969
    70 #: fb_likes_widget.php
     70#: facebook-likes-you.php
    7171msgid "Automatically increase the height accordingly"
    7272msgstr "Aumentare l'altezza automaticamente"
    7373
    74 #: fb_likes_widget.php
    75 msgid "Show at Top:"
    76 msgstr "Visualizza in alto:"
     74#: facebook-likes-you.php
     75msgid "Show at:"
     76msgstr "Visualizza in:"
    7777
    78 #: fb_likes_widget.php
    79 msgid "Show at Bottom:"
    80 msgstr "Visualizza in basso:"
     78#: facebook-likes-you.php
     79msgid "Top"
     80msgstr "alto"
    8181
    82 #: fb_likes_widget.php
    83 msgid "Show on Page:"
    84 msgstr "Visualizza nella Pagina:"
     82#: facebook-likes-you.php
     83msgid "Bottom"
     84msgstr "basso"
    8585
    86 #: fb_likes_widget.php
    87 msgid "Show on Post:"
    88 msgstr "Visualizza nell'Articolo:"
     86#: facebook-likes-you.php
     87msgid "Show on:"
     88msgstr "Visualizza:"
    8989
    90 #: fb_likes_widget.php
    91 msgid "Show on Home:"
    92 msgstr "Visualizza in Home:"
     90#: facebook-likes-you.php
     91msgid "Page"
     92msgstr "nella Pagina"
    9393
    94 #: fb_likes_widget.php
    95 msgid "Show on Search:"
    96 msgstr "Visualizza in Cerca:"
     94#: facebook-likes-you.php
     95msgid "Post"
     96msgstr "nell'Articolo"
    9797
    98 #: fb_likes_widget.php
    99 msgid "Show on Archive:"
    100 msgstr "Visualizza nell'Archivio:"
     98#: facebook-likes-you.php
     99msgid "Home"
     100msgstr "in Home"
    101101
    102 #: fb_likes_widget.php
     102#: facebook-likes-you.php
     103msgid "Search"
     104msgstr "in Cerca"
     105
     106#: facebook-likes-you.php
     107msgid "Archive"
     108msgstr "nell'Archivio"
     109
     110#: facebook-likes-you.php
    103111msgid "Margins:"
    104112msgstr "Margini:"
    105113
    106 #: fb_likes_widget.php
     114#: facebook-likes-you.php
    107115msgid "Exclude posts and pages:"
    108116msgstr "Escludere Articoli e Pagine:"
    109117
    110 #: fb_likes_widget.php
     118#: facebook-likes-you.php
    111119msgid "Exclude categories:"
    112120msgstr "Escludere Categorie:"
    113121
    114 #: fb_likes_widget.php
     122#: facebook-likes-you.php
    115123msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    116124msgstr "Per ogni Articolo/Pagina puoi scrivere ID, titolo o 'slug' separandoli con virgole.<br />Ad esempio: <code>17, Stufato Irlandese, stufato-carne</code>."
    117125
    118 #: fb_likes_widget.php
     126#: facebook-likes-you.php
    119127msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    120128msgstr "Per ogni Categoria puoi scrivere ID, nome o 'slug' separandoli con virgole.<br />Ad esempio: <code>17, Formaggio puzzolente, gorgonzola</code>."
    121129
    122 #: fb_likes_widget.php
     130#: facebook-likes-you.php
    123131msgid "Additional CSS style:"
    124132msgstr "Stile CSS aggiuntivo:"
    125133
    126 #: fb_likes_widget.php
     134#: facebook-likes-you.php
    127135msgid "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>."
    128136msgstr "Posiziona le proprietà aggiuntive tra <code>style=\"</code> e <code>\"</code>. Se vuoi riferirti al pulsante Like nel foglio di stile <strong>style.css</strong>,<br /> utilizza <code>iframe.fblikes</code> oppure se usi XFBML <code>.fb_edge_widget_with_comment</code>."
    129137
    130 #: fb_likes_widget.php
     138#: facebook-likes-you.php
    131139msgid "Help and Support"
    132140msgstr "Aiuto e Supporto"
    133141
    134 #: fb_likes_widget.php
     142#: facebook-likes-you.php
    135143msgid "Donate to this plugin"
    136144msgstr "Fai una donazione per il plugin"
    137145
    138 #: fb_likes_widget.php
     146#: facebook-likes-you.php
    139147msgid "Read the plugin homepage and its comments"
    140148msgstr "Vai alla homepage del plugins ed leggi i commenti"
    141149
    142 #: fb_likes_widget.php
     150#: facebook-likes-you.php
    143151msgid "Save Changes"
    144152msgstr "Salva Modifiche"
    145153
    146 #: fb_likes_widget.php
     154#: facebook-likes-you.php
    147155msgid "Title:"
    148156msgstr "Titolo:"
    149157
    150 #: fb_likes_widget.php
     158#: facebook-likes-you.php
    151159msgid "Facebook Page URL:"
    152160msgstr "Facebook Page URL:"
    153161
    154 #: fb_likes_widget.php
     162#: facebook-likes-you.php
    155163msgid "The URL of the FB Page for this Like box."
    156164msgstr "The URL of the FB Page for this Like box."
    157165
    158 #: fb_likes_widget.php
     166#: facebook-likes-you.php
    159167msgid "The width of the widget in pixels."
    160168msgstr "The width of the widget in pixels."
    161169
    162 #: fb_likes_widget.php
     170#: facebook-likes-you.php
    163171msgid "In pixels too. Needed if you don't use XFBML."
    164172msgstr "In pixels too. Needed if you don't use XFBML."
    165173
    166 #: fb_likes_widget.php
     174#: facebook-likes-you.php
    167175msgid "Connections:"
    168176msgstr "Connections:"
    169177
    170 #: fb_likes_widget.php
     178#: facebook-likes-you.php
    171179msgid "Count of shown users who've liked this Page."
    172180msgstr "Count of shown users who've liked this Page."
    173181
    174 #: fb_likes_widget.php
     182#: facebook-likes-you.php
    175183msgid "Stream"
    176184msgstr "Stream"
    177185
    178 #: fb_likes_widget.php
     186#: facebook-likes-you.php
    179187msgid "Show the profile stream for the public profile."
    180188msgstr "Show the profile stream for the public profile."
    181189
    182 #: fb_likes_widget.php
     190#: facebook-likes-you.php
    183191msgid "Header"
    184192msgstr "Header"
    185193
    186 #: fb_likes_widget.php
     194#: facebook-likes-you.php
    187195msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
    188196msgstr "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-pl_PL.po

    r367763 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You!\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2010-05-10 11:45-0800\n"
    6 "PO-Revision-Date: 2011-04-01 03:50+0100\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Piotr Sochalewski <[email protected]>\n"
     
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: fb_likes_widget.php
     18#: facebook-likes-you.php
    1919msgid "Important info for users"
    2020msgstr "Ważne informacje dla użytkowników"
    2121
    22 #: fb_likes_widget.php
     22#: facebook-likes-you.php
    2323msgid "Appearance"
    2424msgstr "Wygląd"
    2525
    26 #: fb_likes_widget.php
     26#: facebook-likes-you.php
    2727msgid "Width:"
    2828msgstr "Szerokość:"
    2929
    30 #: fb_likes_widget.php
     30#: facebook-likes-you.php
    3131msgid "Height:"
    3232msgstr "Wysokość:"
    3333
    34 #: fb_likes_widget.php
     34#: facebook-likes-you.php
    3535msgid "Layout:"
    3636msgstr "Motyw:"
    3737
    38 #: fb_likes_widget.php
     38#: facebook-likes-you.php
    3939msgid "Verb to display:"
    4040msgstr "Czynność do wyświetlenia:"
    4141
    42 #: fb_likes_widget.php
     42#: facebook-likes-you.php
    4343msgid "Font:"
    4444msgstr "Czcionka:"
    4545
    46 #: fb_likes_widget.php
     46#: facebook-likes-you.php
    4747msgid "Color Scheme:"
    4848msgstr "Kolor:"
    4949
    50 #: fb_likes_widget.php
     50#: facebook-likes-you.php
    5151msgid "HTML5 Mode:"
    5252msgstr "Tryb HTML5:"
    5353
    54 #: fb_likes_widget.php
     54#: facebook-likes-you.php
    5555msgid "Recommended if your blog is HTML5 ready and/or you need proper validation. NOT supported by all web browsers."
    5656msgstr "Polecane, gdy używasz HTML5 i zależy Ci na poprawnej walidacji. Niewspierane przez starsze przeglądarki."
    5757
    58 #: fb_likes_widget.php
     58#: facebook-likes-you.php
    5959msgid "Show Faces:"
    6060msgstr "Pokazuj twarze:"
    6161
    62 #: fb_likes_widget.php
     62#: facebook-likes-you.php
    6363msgid "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>:"
    6464msgstr "Użyj <span title='XFBML jest bardziej elastyczny, aczkolwiek wymaga użycia JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    6565
    66 #: fb_likes_widget.php
     66#: facebook-likes-you.php
    6767msgid "Your app ID:"
    6868msgstr "Twoje app ID:"
    6969
    70 #: fb_likes_widget.php
     70#: facebook-likes-you.php
    7171msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    7272msgstr "Jeśli nie posiadasz app ID możesz pozostawić to pole puste, aby użyć domyślnego ID <code>113869198637480</code>.<br />Własne app ID możesz uzyskać <a href='http://developers.facebook.com/setup/' target='_blank'>rejestrując aplikację</a>."
    7373
    74 #: fb_likes_widget.php
     74#: facebook-likes-you.php
    7575msgid "Position"
    7676msgstr "Położenie"
    7777
    78 #: fb_likes_widget.php
     78#: facebook-likes-you.php
    7979msgid "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>."
    8080msgstr "Możesz także umieścić przycisk ręcznie przy pomocy kodu <code>[fb-like-button]</code>. Istnieje także możliwość użycia kodu PHP tam gdzie jest to dozwolone - <code>&lt;?php echo do_shortcode('[fb-like-button]'); ?&gt;</code>."
    8181
    82 #: fb_likes_widget.php
     82#: facebook-likes-you.php
    8383msgid "Automatically increase the height accordingly"
    8484msgstr "Odpowiednio zwiększa wysokość"
    8585
    86 #: fb_likes_widget.php
    87 msgid "Show at Top:"
    88 msgstr "Wyświetlaj nad treścią:"
    89 
    90 #: fb_likes_widget.php
    91 msgid "Show at Bottom:"
    92 msgstr "Wyświetlaj pod treścią:"
    93 
    94 #: fb_likes_widget.php
    95 msgid "Show on Page:"
    96 msgstr "Pokazuj na stronach:"
    97 
    98 #: fb_likes_widget.php
    99 msgid "Show on Post:"
    100 msgstr "Pokazuj we wpisach:"
    101 
    102 #: fb_likes_widget.php
    103 msgid "Show on Home:"
    104 msgstr "Pokazuj na stronie głównej:"
    105 
    106 #: fb_likes_widget.php
    107 msgid "Show on Search:"
    108 msgstr "Pokazuj w wynikach wyszukiwania:"
    109 
    110 #: fb_likes_widget.php
    111 msgid "Show on Archive:"
    112 msgstr "Pokazuj na stronach archiwum:"
    113 
    114 #: fb_likes_widget.php
     86#: facebook-likes-you.php
     87msgid "Show at:"
     88msgstr "Wyświetlaj:"
     89
     90#: facebook-likes-you.php
     91msgid "Top"
     92msgstr "nad wpisem"
     93
     94#: facebook-likes-you.php
     95msgid "Bottom"
     96msgstr "pod wpisem"
     97
     98#: facebook-likes-you.php
     99msgid "Show on:"
     100msgstr "Pokazuj:"
     101
     102#: facebook-likes-you.php
     103msgid "Page"
     104msgstr "na stronach"
     105
     106#: facebook-likes-you.php
     107msgid "Post"
     108msgstr "we wpisach"
     109
     110#: facebook-likes-you.php
     111msgid "Home"
     112msgstr "na stronie głównej"
     113
     114#: facebook-likes-you.php
     115msgid "Search"
     116msgstr "w wynikach wyszukiwania"
     117
     118#: facebook-likes-you.php
     119msgid "Archive"
     120msgstr "na stronach archiwum"
     121
     122#: facebook-likes-you.php
    115123msgid "Margins:"
    116124msgstr "Odstępy:"
    117125
    118 #: fb_likes_widget.php
     126#: facebook-likes-you.php
    119127msgid "Exclude posts and pages:"
    120128msgstr "Wyłącz dla wpisów i stron:"
    121129
    122 #: fb_likes_widget.php
     130#: facebook-likes-you.php
    123131msgid "Exclude categories:"
    124132msgstr "Wyłącz dla kategorii:"
    125133
    126 #: fb_likes_widget.php
     134#: facebook-likes-you.php
    127135msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    128136msgstr "Możesz podać zarówno ID, tytuł lub bezpośredni odnośnik do wpisu albo strony. Pamiętaj o oddzieleniu ich spacjami.<br />Na przykład <code>17, nowy-wpis, Nowy wpis</code>."
    129137
    130 #: fb_likes_widget.php
     138#: facebook-likes-you.php
    131139msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    132140msgstr "Możesz podać zarówno ID, nazwę lub bezpośredni odnośnik do kategorii. Pamiętaj o oddzieleniu ich spacjami.<br />Na przykład <code>9, maly-i-duzy-ekran, Mały i duży ekran</code>."
    133141
    134 #: fb_likes_widget.php
     142#: facebook-likes-you.php
    135143msgid "Additional CSS style:"
    136144msgstr "Dodatkowy styl CSS:"
    137145
    138 #: fb_likes_widget.php
     146#: facebook-likes-you.php
    139147msgid "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>."
    140148msgstr "Podane właściwości będą umieszczone między <code>style=\"</code> a <code>\"</code>. Aby odwołać się do przycisku np. w pliku <strong>style.css</strong>,<br />użyj <code>iframe.fblikes</code> lub <code>.fb_edge_widget_with_comment</code> dla wersji XFBML."
    141149
    142 #: fb_likes_widget.php
     150#: facebook-likes-you.php
    143151msgid "Help and Support"
    144152msgstr "Pomoc"
    145153
    146 #: fb_likes_widget.php
     154#: facebook-likes-you.php
    147155msgid "Donate to this plugin"
    148156msgstr "Przekaż darowiznę na rzecz autora"
    149157
    150 #: fb_likes_widget.php
     158#: facebook-likes-you.php
    151159msgid "Read the plugin homepage and its comments"
    152160msgstr "Odwiedź stronę www wtyczki"
    153161
    154 #: fb_likes_widget.php
     162#: facebook-likes-you.php
    155163msgid "Save Changes"
    156164msgstr "Zapisz zmiany"
    157165
    158 #: fb_likes_widget.php
     166#: facebook-likes-you.php
    159167msgid "Title:"
    160168msgstr "Tytuł:"
    161169
    162 #: fb_likes_widget.php
     170#: facebook-likes-you.php
    163171msgid "Facebook Page URL:"
    164172msgstr "Adres strony fanpage'a:"
    165173
    166 #: fb_likes_widget.php
     174#: facebook-likes-you.php
    167175msgid "The URL of the FB Page for this Like box."
    168176msgstr "Kompletny adres URL dla strony fanpage."
    169177
    170 #: fb_likes_widget.php
     178#: facebook-likes-you.php
    171179msgid "The width of the widget in pixels."
    172180msgstr "Szerokość podana w pikselach."
    173181
    174 #: fb_likes_widget.php
     182#: facebook-likes-you.php
    175183msgid "In pixels too. Needed if you don't use XFBML."
    176184msgstr "Także w px. Tylko, gdy nie używasz XFBML."
    177185
    178 #: fb_likes_widget.php
     186#: facebook-likes-you.php
    179187msgid "Show Faces"
    180188msgstr "Pokazuj zdjęcia fanów"
    181189
    182 #: fb_likes_widget.php
     190#: facebook-likes-you.php
    183191msgid "Stream"
    184192msgstr "Zawartość"
    185193
    186 #: fb_likes_widget.php
     194#: facebook-likes-you.php
    187195msgid "Show the profile stream for the public profile."
    188196msgstr "Pokazuj zawartość ściany fanpage'a."
    189197
    190 #: fb_likes_widget.php
     198#: facebook-likes-you.php
    191199msgid "Header"
    192200msgstr "Nagłówek"
    193201
    194 #: fb_likes_widget.php
     202#: facebook-likes-you.php
    195203msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
    196204msgstr "Pokazuj 'Znajdź nas na Facebooku' u góry.<br /><small>Gdy wybrano pokazywanie zawartości lub użytkowników</small>"
  • facebook-likes-you/trunk/languages/fb_like_trans_domain-pt_BR.po

    r367763 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You!\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2010-05-10 11:45-0800\n"
    6 "PO-Revision-Date: 2011-04-01 03:48+0100\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Paulo Vital <[email protected]>\n"
     
    1515"X-Poedit-SearchPath-0: .\n"
    1616
    17 #: fb_likes_widget.php
     17#: facebook-likes-you.php
    1818msgid "Appearance"
    1919msgstr "Aparência"
    2020
    21 #: fb_likes_widget.php
     21#: facebook-likes-you.php
    2222msgid "Width:"
    2323msgstr "Largura:"
    2424
    25 #: fb_likes_widget.php
     25#: facebook-likes-you.php
    2626msgid "Height:"
    2727msgstr "Altura:"
    2828
    29 #: fb_likes_widget.php
     29#: facebook-likes-you.php
    3030msgid "Layout:"
    3131msgstr "Layout:"
    3232
    33 #: fb_likes_widget.php
     33#: facebook-likes-you.php
    3434msgid "Verb to display:"
    3535msgstr "Verbo a mostrar:"
    3636
    37 #: fb_likes_widget.php
     37#: facebook-likes-you.php
    3838msgid "Font:"
    3939msgstr "Fonte:"
    4040
    41 #: fb_likes_widget.php
     41#: facebook-likes-you.php
    4242msgid "Color Scheme:"
    4343msgstr "Esquema de Cor:"
    4444
    45 #: fb_likes_widget.php
     45#: facebook-likes-you.php
    4646msgid "Show Faces:"
    4747msgstr "Mostrar ícones:"
    4848
    49 #: fb_likes_widget.php
     49#: facebook-likes-you.php
    5050msgid "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>:"
    5151msgstr "Usar <span title='a utilização de XFBML é mais versátil, porém requer uso do JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    5252
    53 #: fb_likes_widget.php
     53#: facebook-likes-you.php
    5454msgid "Your app ID:"
    5555msgstr "Seu Facebook App ID:"
    5656
    57 #: fb_likes_widget.php
     57#: facebook-likes-you.php
    5858msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    5959msgstr "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>113869198637480</code>.<br />Você pode obter um Facebook App ID próprio <a href='http://developers.facebook.com/setup/' target='_blank'>registrando sua aplicação aqui</a>."
    6060
    61 #: fb_likes_widget.php
     61#: facebook-likes-you.php
    6262msgid "Position"
    6363msgstr "Posição"
    6464
    65 #: fb_likes_widget.php
     65#: facebook-likes-you.php
    6666msgid "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>."
    6767msgstr "Lembre-se que você pode colocá-lo manualmente com <code>[fb-like-button]</code> sempre que quiser. 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>."
    6868
    69 #: fb_likes_widget.php
     69#: facebook-likes-you.php
    7070msgid "Automatically increase the height accordingly"
    7171msgstr "Aumentar a altura automaticamente"
    7272
    73 #: fb_likes_widget.php
    74 msgid "Show at Top:"
    75 msgstr "Mostrar no topo:"
     73#: facebook-likes-you.php
     74msgid "Show at:"
     75msgstr "Mostrar no:"
    7676
    77 #: fb_likes_widget.php
    78 msgid "Show at Bottom:"
    79 msgstr "Mostrar no rodapé:"
     77#: facebook-likes-you.php
     78msgid "Top"
     79msgstr "topo"
    8080
    81 #: fb_likes_widget.php
    82 msgid "Show on Page:"
    83 msgstr "Mostrar em páginas:"
     81#: facebook-likes-you.php
     82msgid "Bottom"
     83msgstr "rodapé"
    8484
    85 #: fb_likes_widget.php
    86 msgid "Show on Post:"
    87 msgstr "Mostrar em artigos:"
     85#: facebook-likes-you.php
     86msgid "Show on:"
     87msgstr "Mostrar:"
    8888
    89 #: fb_likes_widget.php
    90 msgid "Show on Home:"
    91 msgstr "Mostrar no Home:"
     89#: facebook-likes-you.php
     90msgid "Page"
     91msgstr "em páginas"
    9292
    93 #: fb_likes_widget.php
    94 msgid "Show on Search:"
    95 msgstr "Mostrar na Busca:"
     93#: facebook-likes-you.php
     94msgid "Post"
     95msgstr "em artigos"
    9696
    97 #: fb_likes_widget.php
    98 msgid "Show on Archive:"
    99 msgstr "Mostrar no Arquivo:"
     97#: facebook-likes-you.php
     98msgid "Home"
     99msgstr "no Home"
    100100
    101 #: fb_likes_widget.php
     101#: facebook-likes-you.php
     102msgid "Search"
     103msgstr "na Busca"
     104
     105#: facebook-likes-you.php
     106msgid "Archive"
     107msgstr "no Arquivo"
     108
     109#: facebook-likes-you.php
    102110msgid "Margins:"
    103111msgstr "Margens:"
    104112
    105 #: fb_likes_widget.php
     113#: facebook-likes-you.php
    106114msgid "Exclude posts and pages:"
    107115msgstr "Excluir dos artigos e páginas:"
    108116
    109 #: fb_likes_widget.php
     117#: facebook-likes-you.php
    110118msgid "Exclude categories:"
    111119msgstr "Excluir das categorias:"
    112120
    113 #: fb_likes_widget.php
     121#: facebook-likes-you.php
    114122msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    115123msgstr "Você pode digitar para cada artigo/página o ID, título ou 'slug' separados por vírgulas.<br />Exemplo: <code>17, Ensopado Irlandês, ensopado-carne</code>."
    116124
    117 #: fb_likes_widget.php
     125#: facebook-likes-you.php
    118126msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    119127msgstr "Você pode digitar para cada categoria o ID, título ou 'slug' separados por vírgulas.<br />Exemplo: <code>17, Ensopado Irlandês, ensopado-carne</code>."
    120128
    121 #: fb_likes_widget.php
     129#: facebook-likes-you.php
    122130msgid "Additional CSS style:"
    123131msgstr "Estilo CSS adicional:"
    124132
    125 #: fb_likes_widget.php
     133#: facebook-likes-you.php
    126134msgid "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>."
    127135msgstr "Propriedades adicionadas irão ser inseridas entre <code>style=\"</code> e <code>\"</code>. Se você quiser se referir ao botão do Facebook em um arquivo, como por exemplo em <strong>style.css</strong>,<br /> use <code>iframe.fblikes</code> ou se estiver utilizando XFBML <code>.fb_edge_widget_with_comment</code>."
    128136
    129 #: fb_likes_widget.php
     137#: facebook-likes-you.php
    130138msgid "Help and Support"
    131139msgstr "Ajuda e Suporte"
    132140
    133 #: fb_likes_widget.php
     141#: facebook-likes-you.php
    134142msgid "Donate to this plugin"
    135143msgstr "Doar para este plugin"
    136144
    137 #: fb_likes_widget.php
     145#: facebook-likes-you.php
    138146msgid "Read the plugin homepage and its comments"
    139147msgstr "Leia o site do plugin e seus comentários"
    140148
    141 #: fb_likes_widget.php
     149#: facebook-likes-you.php
    142150msgid "Save Changes"
    143151msgstr "Salvar Alterações"
    144152
    145 #: fb_likes_widget.php
     153#: facebook-likes-you.php
    146154msgid "Title:"
    147155msgstr "Título:"
    148156
    149 #: fb_likes_widget.php
     157#: facebook-likes-you.php
    150158msgid "Facebook Page URL:"
    151159msgstr "Facebook Page URL:"
    152160
    153 #: fb_likes_widget.php
     161#: facebook-likes-you.php
    154162msgid "The URL of the FB Page for this Like box."
    155163msgstr "The URL of the FB Page for this Like box."
    156164
    157 #: fb_likes_widget.php
     165#: facebook-likes-you.php
    158166msgid "The width of the widget in pixels."
    159167msgstr "The width of the widget in pixels."
    160168
    161 #: fb_likes_widget.php
     169#: facebook-likes-you.php
    162170msgid "In pixels too. Needed if you don't use XFBML."
    163171msgstr "In pixels too. Needed if you don't use XFBML."
    164172
    165 #: fb_likes_widget.php
     173#: facebook-likes-you.php
    166174msgid "Connections:"
    167175msgstr "Connections:"
    168176
    169 #: fb_likes_widget.php
     177#: facebook-likes-you.php
    170178msgid "Count of shown users who've liked this Page."
    171179msgstr "Count of shown users who've liked this Page."
    172180
    173 #: fb_likes_widget.php
     181#: facebook-likes-you.php
    174182msgid "Stream"
    175183msgstr "Stream"
    176184
    177 #: fb_likes_widget.php
     185#: facebook-likes-you.php
    178186msgid "Show the profile stream for the public profile."
    179187msgstr "Show the profile stream for the public profile."
    180188
    181 #: fb_likes_widget.php
     189#: facebook-likes-you.php
    182190msgid "Header"
    183191msgstr "Header"
    184192
    185 #: fb_likes_widget.php
     193#: facebook-likes-you.php
    186194msgid "Show the 'Find us on Facebook' bar at top.<br /><small>Only when either stream or connections are present.</small>"
    187195msgstr "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-ru_RU.po

    r367763 r368395  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Facebook Likes You!\n"
     3"Project-Id-Version: Facebook Likes You! v1.1.6\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2011-04-01 03:49+0100\n"
     6"PO-Revision-Date: 2011-04-03 19:21+0100\n"
    77"Last-Translator: Piotr Sochalewski <[email protected]>\n"
    88"Language-Team: Denis Kuligin <[email protected]>\n"
     
    1616
    1717#@ fb_like_trans_domain
    18 #: facebook-likes-it.php:311
     18#: facebook-likes-you.php
    1919msgid "Appearance"
    2020msgstr "Внешний вид"
    2121
    2222#@ fb_like_trans_domain
    23 #: facebook-likes-it.php:315
     23#: facebook-likes-you.php
    2424msgid "Width:"
    2525msgstr "Ширина:"
    2626
    2727#@ fb_like_trans_domain
    28 #: facebook-likes-it.php:319
     28#: facebook-likes-you.php
    2929msgid "Layout:"
    3030msgstr "Расположение:"
    3131
    3232#@ fb_like_trans_domain
    33 #: facebook-likes-it.php:333
     33#: facebook-likes-you.php
    3434msgid "Verb to display:"
    3535msgstr "Действие для отображения:"
    3636
    3737#@ fb_like_trans_domain
    38 #: facebook-likes-it.php:347
     38#: facebook-likes-you.php
    3939msgid "Font:"
    4040msgstr "Шрифт:"
    4141
    4242#@ fb_like_trans_domain
    43 #: facebook-likes-it.php:361
     43#: facebook-likes-you.php
    4444msgid "Color Scheme:"
    4545msgstr "Цветовая схема:"
    4646
    4747#@ fb_like_trans_domain
    48 #: facebook-likes-it.php:375
     48#: facebook-likes-you.php
    4949msgid "Show Faces:"
    5050msgstr "Показать лица:"
    5151
    5252#@ fb_like_trans_domain
    53 #: facebook-likes-it.php:376
     53#: facebook-likes-you.php
    5454msgid "Automatically increase the height accordingly"
    5555msgstr "Автоматическое увеличение высоты соответственно"
    5656
    5757#@ fb_like_trans_domain
    58 #: facebook-likes-it.php:379
     58#: facebook-likes-you.php
    5959msgid "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>:"
    6060msgstr "Использовать <span title='XFBML версия является более универсальным, но требует использования JavaScript SDK' style='border-bottom: 1px dotted #CCC; cursor: help; '>XFBML</span>:"
    6161
    6262#@ fb_like_trans_domain
    63 #: facebook-likes-it.php:383
     63#: facebook-likes-you.php
    6464msgid "Your app ID:"
    6565msgstr "ID Вашего приложения:"
    6666
    6767#@ fb_like_trans_domain
    68 #: facebook-likes-it.php:384
     68#: facebook-likes-you.php
    6969msgid "If you have no app ID, you cen leave this empty to use default Facebook app ID <code>113869198637480</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>."
    7070msgstr "Если у вас нет APP ID, будет использован ID по умолчанию <code>113869198637480</code>,<br /> но помните, что вы можете получить свой собственный ID приложения. <a href='http://developers.facebook.com/setup/' target='_blank'>Регистрация вашего приложения</a>."
    7171
    7272#@ fb_like_trans_domain
    73 #: facebook-likes-it.php:387
     73#: facebook-likes-you.php
    7474msgid "Position"
    7575msgstr "Позиция"
    7676
    7777#@ fb_like_trans_domain
    78 #: facebook-likes-it.php:390
     78#: facebook-likes-you.php
    7979msgid "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>."
    8080msgstr "Помните, что вы можете поместить кнопку используя <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>."
    8181
    8282#@ fb_like_trans_domain
    83 #: facebook-likes-it.php:393
    84 msgid "Show at Top:"
    85 msgstr "Показывать вверху:"
     83#: facebook-likes-you.php
     84msgid "Show at:"
     85msgstr "Показывать:"
    8686
    8787#@ fb_like_trans_domain
    88 #: facebook-likes-it.php:397
    89 msgid "Show at Bottom:"
    90 msgstr "Показывать внизу:"
     88#: facebook-likes-you.php
     89msgid "Top"
     90msgstr "вверху"
    9191
    9292#@ fb_like_trans_domain
    93 #: facebook-likes-it.php:401
    94 msgid "Show on Page:"
    95 msgstr "Показывать на странице:"
     93#: facebook-likes-you.php
     94msgid "Bottom"
     95msgstr "внизу"
    9696
    9797#@ fb_like_trans_domain
    98 #: facebook-likes-it.php:405
    99 msgid "Show on Post:"
    100 msgstr "Показывать в записях:"
     98#: facebook-likes-you.php
     99msgid "Show on:"
     100msgstr "Показывать:"
    101101
    102102#@ fb_like_trans_domain
    103 #: facebook-likes-it.php:409
    104 msgid "Show on Home:"
    105 msgstr "Показывать на Главной странице:"
     103#: facebook-likes-you.php
     104msgid "Page"
     105msgstr "на странице"
    106106
    107107#@ fb_like_trans_domain
    108 #: facebook-likes-it.php:413
    109 msgid "Show on Search:"
    110 msgstr "Показывать в результатах поиска:"
     108#: facebook-likes-you.php
     109msgid "Post"
     110msgstr "в записях"
    111111
    112112#@ fb_like_trans_domain
    113 #: facebook-likes-it.php:417
    114 msgid "Show on Archive:"
    115 msgstr "Показывать в Архивах:"
     113#: facebook-likes-you.php
     114msgid "Home"
     115msgstr "на Главной странице"
    116116
    117117#@ fb_like_trans_domain
    118 #: facebook-likes-it.php:421
     118#: facebook-likes-you.php
     119msgid "Search"
     120msgstr "в результатах поиска"
     121
     122#@ fb_like_trans_domain
     123#: facebook-likes-you.php
     124msgid "Archive"
     125msgstr "в Архивах"
     126
     127#@ fb_like_trans_domain
     128#: facebook-likes-you.php
    119129msgid "Margins:"
    120130msgstr "Поля:"
    121131
    122132#@ fb_like_trans_domain
    123 #: facebook-likes-it.php:437
     133#: facebook-likes-you.php
    124134msgid "Exclude posts and pages:"
    125135msgstr "Исключить посты и/или страницы:"
    126136
    127137#@ fb_like_trans_domain
    128 #: facebook-likes-it.php:438
     138#: facebook-likes-you.php
    129139msgid "You can type for each post/page ID, title, or slug seperated with commas.<br />E.g. <code>17, Irish Stew, beef-stew</code>."
    130140msgstr "Вы можете указать номер, тег или название статьи, разделяйте запятыми.<br />Например, <code>17, Irish Stew, beef-stew</code>."
    131141
    132142#@ fb_like_trans_domain
    133 #: facebook-likes-it.php:441
     143#: facebook-likes-you.php
    134144msgid "Exclude categories:"
    135145msgstr "Исключить категории:"
    136146
    137147#@ fb_like_trans_domain
    138 #: facebook-likes-it.php:442
     148#: facebook-likes-you.php
    139149msgid "You can type for each category ID, name, or slug seperated with commas.<br />E.g. <code>9, Stinky Cheeses, blue-cheese</code>."
    140150msgstr "Вы можете указать ID категории, имя статьи или тег, разделяйте запятыми.<br />Например, <code>9, Stinky Cheeses, blue-cheese</code>."
    141151
    142152#@ fb_like_trans_domain
    143 #: facebook-likes-it.php:445
     153#: facebook-likes-you.php
    144154msgid "Additional CSS style:"
    145155msgstr "Дополнительный CSS код:"
    146156
    147157#@ fb_like_trans_domain
    148 #: facebook-likes-it.php:446
     158#: facebook-likes-you.php
    149159msgid "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>."
    150160msgstr "Добавленное свойство будет размещено между <code>style=\"</code> и <code>\"</code> . Если вы хотите сослаться на Like кнопку как в примере <strong>style.css</strong>,<br />попробуйте использовать <code>iframe.fblikes</code> или если вы используете XFBML <code>.fb_edge_widget_with_comment</code>."
    151161
    152162#@ fb_like_trans_domain
    153 #: facebook-likes-it.php:451
     163#: facebook-likes-you.php
    154164msgid "Help and Support"
    155165msgstr "Помощь и поддержка"
    156166
    157167#@ fb_like_trans_domain
    158 #: facebook-likes-it.php:455
     168#: facebook-likes-you.php
    159169msgid "Donate to this plugin"
    160170msgstr "Поддержать этот плагин"
    161171
    162172#@ fb_like_trans_domain
    163 #: facebook-likes-it.php:458
     173#: facebook-likes-you.php
    164174msgid "Read the plugin homepage and its comments"
    165175msgstr "Найти информацию и комментарии можно на странице плагина"
    166176
    167177#@ default
    168 #: facebook-likes-it.php:463
     178#: facebook-likes-you.php
    169179msgid "Save Changes"
    170180msgstr "Сохранить изменения"
  • facebook-likes-you/trunk/readme.txt

    r368274 r368395  
    55Requires at least: 2.9
    66Tested up to: 3.1
    7 Stable tag: 1.1.5
     7Stable tag: 1.1.6
    88
    99Facebook Likes You! is simple plugin which makes it easy to add Facebook Like button and widgetable Like box.
     
    2222* Russian (ru_RU)<br />
    2323
    24 <br />
    25 If you have created your own language pack, or have an update of an existing one, you can send [gettext .po and .mo files](http://codex.wordpress.org/Translating_WordPress) to me (my e-mail address is posted [here](http://www.sproject.name/o-mnie/)) so that I can bundle it into Facebook Likes You!
     24If 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!
    2625
    2726== Installation ==
     
    4847
    4948== Changelog ==
     49
     50= 1.1.6 =
     51* Simplified, but still powerful settings
     52* Updated all translation files
    5053
    5154= 1.1.5 =
Note: See TracChangeset for help on using the changeset viewer.