Version Notes
For changes, please see https://fishpig.co.uk/magento/wordpress-integration/#changelog
Download this release
Release Info
Developer | fishpig |
Extension | Fishpig_Wordpress_Integration |
Version | 4.2.2.7 |
Comparing to | |
See all releases |
Code changes from version 4.2.2.5 to 4.2.2.7
- app/code/community/Fishpig/Wordpress/Model/Image.php +16 -0
- app/code/community/Fishpig/Wordpress/change-log.txt +3 -0
- app/code/community/Fishpig/Wordpress/etc/config.xml +1 -1
- app/code/community/Fishpig/Wordpress/etc/fishpig.xml +1 -1
- app/locale/cs_CZ/Fishpig_Wordpress.csv +0 -104
- app/locale/da_DK/Fishpig_Wordpress.csv +0 -99
- app/locale/de_DE/Fishpig_Wordpress.csv +0 -89
- app/locale/en_GB/Fishpig_Wordpress.csv +0 -102
- app/locale/en_US/Fishpig_Wordpress.csv +0 -102
- app/locale/es_ES/Fishpig_Wordpress.csv +0 -102
- app/locale/fr_FR/Fishpig_Wordpress.csv +0 -100
- app/locale/it_IT/Fishpig_Wordpress.csv +0 -98
- app/locale/ja_JP/Fishpig_Wordpress.csv +0 -100
- app/locale/nb_NO/Fishpig_Wordpress.csv +0 -103
- app/locale/nl_NL/Fishpig_Wordpress.csv +0 -98
- app/locale/nn_NO/Fishpig_Wordpress.csv +0 -103
- app/locale/pl_PL/Fishpig_Wordpress.csv +0 -103
- app/locale/pt_BR/Fishpig_Wordpress.csv +0 -99
- app/locale/pt_PT/Fishpig_Wordpress.csv +0 -99
- app/locale/ru_RU/Fishpig_Wordpress.csv +0 -104
- app/locale/sl_SI/Fishpig_Wordpress.csv +0 -99
- app/locale/sv_SE/Fishpig_Wordpress.csv +0 -102
- app/locale/tr_TR/Fishpig_Wordpress.csv +0 -103
- app/locale/zh_CN/Fishpig_Wordpress.csv +0 -102
- package.xml +4 -4
app/code/community/Fishpig/Wordpress/Model/Image.php
CHANGED
@@ -98,6 +98,10 @@ class Fishpig_Wordpress_Model_Image extends Fishpig_Wordpress_Model_Post_Attachm
|
|
98 |
*/
|
99 |
protected function _getImagePath($type = null)
|
100 |
{
|
|
|
|
|
|
|
|
|
101 |
$filename = null;
|
102 |
|
103 |
if ($type == null) {
|
@@ -118,6 +122,18 @@ class Fishpig_Wordpress_Model_Image extends Fishpig_Wordpress_Model_Post_Attachm
|
|
118 |
return $this->_getThisImageUrl().$filename;
|
119 |
}
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
/**
|
122 |
* Retrieve the URL to the folder that the image is stored in
|
123 |
*
|
98 |
*/
|
99 |
protected function _getImagePath($type = null)
|
100 |
{
|
101 |
+
if ($this->isSvg()) {
|
102 |
+
return $this->getData('guid');
|
103 |
+
}
|
104 |
+
|
105 |
$filename = null;
|
106 |
|
107 |
if ($type == null) {
|
122 |
return $this->_getThisImageUrl().$filename;
|
123 |
}
|
124 |
|
125 |
+
/*
|
126 |
+
* Determine if the current image is an SVG image
|
127 |
+
* These cannot be resized by WordPress so all requests for a different image
|
128 |
+
* should return the upload URL (this is stored as guid by WordPress)
|
129 |
+
*
|
130 |
+
* @return bool
|
131 |
+
*/
|
132 |
+
public function isSvg()
|
133 |
+
{
|
134 |
+
return $this->getPostMimeType() === 'image/svg+xml';
|
135 |
+
}
|
136 |
+
|
137 |
/**
|
138 |
* Retrieve the URL to the folder that the image is stored in
|
139 |
*
|
app/code/community/Fishpig/Wordpress/change-log.txt
CHANGED
@@ -5,6 +5,9 @@
|
|
5 |
* @author Ben Tideswell <ben@fishpig.co.uk>
|
6 |
*/
|
7 |
|
|
|
|
|
|
|
8 |
26/06/2017 = 4.2.2.4
|
9 |
- Added better support for new term meta table in WordPress.
|
10 |
|
5 |
* @author Ben Tideswell <ben@fishpig.co.uk>
|
6 |
*/
|
7 |
|
8 |
+
21/07/2017 = 4.2.2.7
|
9 |
+
- Added support for SVG images.
|
10 |
+
|
11 |
26/06/2017 = 4.2.2.4
|
12 |
- Added better support for new term meta table in WordPress.
|
13 |
|
app/code/community/Fishpig/Wordpress/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fishpig_Wordpress>
|
5 |
-
<version>4.2.2.
|
6 |
</Fishpig_Wordpress>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fishpig_Wordpress>
|
5 |
+
<version>4.2.2.7</version>
|
6 |
</Fishpig_Wordpress>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Fishpig/Wordpress/etc/fishpig.xml
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<config><fishpig><extensions><Fishpig_Wordpress_Addon_ACF><new_version>1.4.0.
|
1 |
<?xml version="1.0"?>
|
2 |
+
<config><fishpig><extensions><Fishpig_Wordpress_Addon_ACF><new_version>1.4.0.16</new_version><name>Advanced Custom Fields</name><id>advanced-custom-field</id><url>https://fishpig.co.uk/magento/wordpress-integration/advanced-custom-fields/</url></Fishpig_Wordpress_Addon_ACF><Fishpig_Wordpress_Addon_AMP><new_version>1.0.0.2</new_version><id>amp</id><name>AMP</name><url>https://fishpig.co.uk/magento/wordpress-integration/amp/</url></Fishpig_Wordpress_Addon_AMP><Fishpig_Wordpress_Addon_BBPress><new_version>1.0.0.2</new_version><id>bbpress</id><name>bbPress</name><url>https://fishpig.co.uk/magento/wordpress-integration/bbpress/</url></Fishpig_Wordpress_Addon_BBPress><Fishpig_Wordpress_Addon_CPT><new_version>2.1.1.3</new_version><id>posttypes-taxonomies</id><name>Post Types and Taxonomies</name><url>http://fishpig.co.uk/magento/wordpress-integration/post-types-taxonomies/</url></Fishpig_Wordpress_Addon_CPT><Fishpig_Wordpress_Addon_CS><new_version>1.4.0.2</new_version><id>customer-synch</id><name>Customer Synchronisation</name><url>http://fishpig.co.uk/magento/wordpress-integration/customer-synchronisation/</url></Fishpig_Wordpress_Addon_CS><Fishpig_Wordpress_Addon_ContactForm7><new_version>1.6.0.22</new_version><id>contact-form-7</id><name>Contact Form 7</name><url>https://fishpig.co.uk/magento/wordpress-integration/contact-form-7/</url></Fishpig_Wordpress_Addon_ContactForm7><Fishpig_Wordpress_Addon_ContentBlocks><new_version>1.0.0.0</new_version><id>content-blocks</id><name>Content Blocks</name><url>https://fishpig.co.uk/magento/wordpress-integration/content-blocks/</url></Fishpig_Wordpress_Addon_ContentBlocks><Fishpig_Wordpress_Addon_Disqus><new_version>1.3.0.1</new_version><id>disqus</id><name>Disqus</name><url>http://fishpig.co.uk/magento/wordpress-integration/disqus/</url></Fishpig_Wordpress_Addon_Disqus><Fishpig_Wordpress_Addon_EventsCalendar><new_version>1.1.0.28</new_version><id>events-calendar</id><name>The Events Calendar</name><url>https://fishpig.co.uk/magento/wordpress-integration/events-calendar/</url></Fishpig_Wordpress_Addon_EventsCalendar><Fishpig_Wordpress_Addon_FormAssembly><new_version>1.0.0.0</new_version><id>form-assembly</id><name>Form Assembly</name><url>http://fishpig.co.uk/magento/wordpress-integration/</url></Fishpig_Wordpress_Addon_FormAssembly><Fishpig_Wordpress_Addon_GravityForms><new_version>1.1.0.26</new_version><id>gravity-forms</id><name>Gravity Forms</name><url>https://fishpig.co.uk/magento/wordpress-integration/gravity-forms/</url></Fishpig_Wordpress_Addon_GravityForms><Fishpig_Wordpress_Addon_IntegratedSearch><new_version>1.3.0.1</new_version><name>Integrated Search</name><url>http://fishpig.co.uk/magento/wordpress-integration/integrated-search/</url></Fishpig_Wordpress_Addon_IntegratedSearch><Fishpig_Wordpress_Addon_Multisite><new_version>2.1.1.2</new_version><name>Multisite Integration</name><url>http://fishpig.co.uk/magento/wordpress-integration/multisite/</url></Fishpig_Wordpress_Addon_Multisite><Fishpig_Wordpress_Addon_NewsSitemap><new_version>1.0.0.0</new_version><name>Google News XML Sitemap</name><id>google-news-xml-sitemap</id><url>https://fishpig.co.uk/magento/wordpress-integration/google-news-xml-sitemap/</url></Fishpig_Wordpress_Addon_NewsSitemap><Fishpig_Wordpress_Addon_ReCaptcha><new_version>1.3.0.1</new_version><name>ReCaptcha</name><url>http://fishpig.co.uk/magento/wordpress-integration/recaptcha/</url></Fishpig_Wordpress_Addon_ReCaptcha><Fishpig_Wordpress_Addon_RevolutionSlider><new_version>1.1.0.22</new_version><id>revolutionslider</id><name>Revolution Slider</name><url>http://fishpig.co.uk/magento/wordpress-integration/revolution-slider/</url></Fishpig_Wordpress_Addon_RevolutionSlider><Fishpig_Wordpress_Addon_Root><new_version>1.1.0.10</new_version><name>Root</name><url>http://fishpig.co.uk/magento/wordpress-integration/root/</url></Fishpig_Wordpress_Addon_Root><Fishpig_Wordpress_Addon_TOC><new_version>1.0.0.3</new_version><id>toc</id><name>Table of Contents Plus</name><url>http://fishpig.co.uk/magento/wordpress-integration/</url></Fishpig_Wordpress_Addon_TOC><Fishpig_Wordpress_Addon_Tablepress><new_version>1.1.0.21</new_version><name>Tablepress</name><id>tablepress</id><url>http://fishpig.co.uk/magento/wordpress-integration/tablepress/</url></Fishpig_Wordpress_Addon_Tablepress><Fishpig_Wordpress_Addon_UCE><new_version>1.4.0.0</new_version><id>ultimate-category-excluder</id><name>Ultimate Category Excluder</name><url>http://fishpig.co.uk/magento-wordpress-ultimate-category-excluder.html</url></Fishpig_Wordpress_Addon_UCE><Fishpig_Wordpress_Addon_VisualComposer><new_version>1.1.0.30</new_version><id>visual-composer</id><name>Visual Composer</name><url>https://fishpig.co.uk/magento/wordpress-integration/visual-composer/</url></Fishpig_Wordpress_Addon_VisualComposer><Fishpig_Wordpress_Addon_WPSeoNews><new_version>1.0.0.0</new_version><id>wpseo-news</id><name>WPSeo News</name><url>https://fishpig.co.uk/magento/wordpress-integration/wp-seo-news/</url></Fishpig_Wordpress_Addon_WPSeoNews><Fishpig_Wordpress_Addon_WPSubscribe><new_version>1.0.0.4</new_version><id>wp-subscribe</id><name>WP Subscribe</name><url>http://fishpig.co.uk/magento/wordpress-integration/wp-subscribe/</url></Fishpig_Wordpress_Addon_WPSubscribe></extensions></fishpig></config>
|
app/locale/cs_CZ/Fishpig_Wordpress.csv
DELETED
@@ -1,104 +0,0 @@
|
|
1 |
-
Path,Cesta
|
2 |
-
Author,Redaktor
|
3 |
-
Type,Typ
|
4 |
-
Name,Název
|
5 |
-
"Previous Post","Předchozí příspěvek"
|
6 |
-
"Next Post","Následující příspěvek"
|
7 |
-
"Protected: %s","Chráněno: %s"
|
8 |
-
Home,"Úvodní stránka"
|
9 |
-
Submit,Potvrdit
|
10 |
-
Published,Publikováno
|
11 |
-
Pages,stránky
|
12 |
-
"Search Posts","Hledat příspěvky"
|
13 |
-
Image,Obrázek
|
14 |
-
"An unidentified error has occurred.","Došlo k nějaké blíže neidentifikované chybě."
|
15 |
-
of,"z celkem"
|
16 |
-
Add,
|
17 |
-
"No results found.","Nebylo nic nalezeno."
|
18 |
-
Tags,štítky
|
19 |
-
Categories,rubriky
|
20 |
-
"Leave a comment","Napsat komentář"
|
21 |
-
"Sorry, you must be logged in to post a comment.","Pro přidání komentáře se musíte nejdříve přihlásit."
|
22 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","URL adresa zobrazeného webu %s je neplatná. Opravte ji prosím přímo v <a href=\"%s\">Nastavení pro vývojáře</a> (položka home)."
|
23 |
-
Search,Hledat
|
24 |
-
WordPress.org,"Česká lokalizace"
|
25 |
-
"%s Comments","Komentáře: %s"
|
26 |
-
"No Comments","Žádné komentáře"
|
27 |
-
"1 Comment","1 komentář"
|
28 |
-
Comment,Komentář
|
29 |
-
Reply,Odpovědět
|
30 |
-
"Leave a Reply","Napsat komentář"
|
31 |
-
"Your comment is awaiting moderation.","Komentář čeká na schválení."
|
32 |
-
"%s at %s","%s | %s"
|
33 |
-
Email,"Emailová adresa"
|
34 |
-
Website,"Webová stránka"
|
35 |
-
Links,Odkazy
|
36 |
-
Archives,Archiv
|
37 |
-
"Select Month","Vybrat měsíc"
|
38 |
-
Meta,"Další informace"
|
39 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","<abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
40 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Používáme WordPress, nejmodernější sémantický osobní redakční systém."
|
41 |
-
"Select Category","Vybrat rubriku"
|
42 |
-
"Recent Posts","Nejnovější příspěvky"
|
43 |
-
"Recent Comments","Nejnovější komentáře"
|
44 |
-
"%s on %s","%s u %s"
|
45 |
-
"Tag Cloud","Shluk štítků"
|
46 |
-
"Comment on %s by %s","Komentář k příspěvku %s od %s"
|
47 |
-
"By: %s","Od: %s"
|
48 |
-
"Error establishing a database connection","Během připojování k databázovému serveru došlo k chybě"
|
49 |
-
Password,Heslo
|
50 |
-
"« Previous","« Předchozí"
|
51 |
-
"Next »","Další »"
|
52 |
-
Close,Zavřít
|
53 |
-
January,Leden
|
54 |
-
February,Únor
|
55 |
-
March,Březen
|
56 |
-
April,Duben
|
57 |
-
May,Květen
|
58 |
-
June,Červen
|
59 |
-
July,Červenec
|
60 |
-
August,Srpen
|
61 |
-
September,Září
|
62 |
-
October,Říjen
|
63 |
-
November,Listopad
|
64 |
-
December,Prosinec
|
65 |
-
Jan_January_abbreviation,Led
|
66 |
-
Feb_February_abbreviation,Úno
|
67 |
-
Mar_March_abbreviation,Bře
|
68 |
-
Apr_April_abbreviation,Dub
|
69 |
-
May_May_abbreviation,Kvě
|
70 |
-
Jun_June_abbreviation,Čer
|
71 |
-
Jul_July_abbreviation,Čec
|
72 |
-
Aug_August_abbreviation,Srp
|
73 |
-
Sep_September_abbreviation,Zář
|
74 |
-
Oct_October_abbreviation,Říj
|
75 |
-
Nov_November_abbreviation,Lis
|
76 |
-
Dec_December_abbreviation,Pro
|
77 |
-
Sunday,Neděle
|
78 |
-
Monday,Pondělí
|
79 |
-
Tuesday,Úterý
|
80 |
-
Wednesday,Středa
|
81 |
-
Thursday,Čtvrtek
|
82 |
-
Friday,Pátek
|
83 |
-
Saturday,Sobota
|
84 |
-
Sun,Ne
|
85 |
-
Mon,Po
|
86 |
-
Tue,Út
|
87 |
-
Wed,St
|
88 |
-
Thu,Čt
|
89 |
-
Fri,Pá
|
90 |
-
Sat,So
|
91 |
-
"Please wait...","Prosím čekejte..."
|
92 |
-
"Daily Archives: %s","Archiv pro den: %s"
|
93 |
-
"Monthly Archives: %s","Archiv pro měsíc: %s"
|
94 |
-
"One thought on “%s”","1 komentář u „%s“"
|
95 |
-
"%s thoughts on “%s”","%s komentáře u „%s“"
|
96 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Celý příspěvek <span class=\"meta-nav\">→</span>"
|
97 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Příspěvek byl publikován %s | Rubrika: %s | Štítky: %s<span class=\"by-author\"> | Autor: %s</span>."
|
98 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Příspěvek byl publikován %s | Rubrika: %s<span class=\"by-author\"> | Autor: %s</span>."
|
99 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Příspěvek byl publikován %s<span class=\"by-author\"> | Autor: %s</span>."
|
100 |
-
"You have version %s installed. Update to %s.","Používáte zastaralou verzi %s. Můžete aktualizovat na nejnovější verzi %s."
|
101 |
-
"Default Template","Výchozí šablona"
|
102 |
-
"Install %s","Instalovat %s"
|
103 |
-
"Update to version %s","Aktualizovat na nejnovější verzi %s"
|
104 |
-
Position,Umístění
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/da_DK/Fishpig_Wordpress.csv
DELETED
@@ -1,99 +0,0 @@
|
|
1 |
-
Path,Sti
|
2 |
-
Author,Forfatter
|
3 |
-
Name,Navn
|
4 |
-
"Previous Post","Tidligere indlæg"
|
5 |
-
"Next Post","Næste indlæg"
|
6 |
-
"Protected: %s","Beskyttet: %s"
|
7 |
-
Home,Forside
|
8 |
-
Submit,Send
|
9 |
-
Published,Udgivet
|
10 |
-
Pages,Sider
|
11 |
-
"Search Posts","Søg i indlæg"
|
12 |
-
Image,Billede
|
13 |
-
"An unidentified error has occurred.","En ikke-genkendt fejl er opstået."
|
14 |
-
of,af
|
15 |
-
Add,Tilføj
|
16 |
-
"No results found.","Ingen resultater fundet."
|
17 |
-
Categories,Kategorier
|
18 |
-
"Leave a comment","Skriv en kommentar"
|
19 |
-
"Sorry, you must be logged in to post a comment.","Desværre. Du skal være logget ind for at skrive en kommentar."
|
20 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Din WordPress forside URL%s er ugyldig. Ret venligst <a href=\"%s\">forside</a>."
|
21 |
-
Search,Søg
|
22 |
-
"%s Comments","%s kommentarer"
|
23 |
-
"No Comments","Ingen kommentarer"
|
24 |
-
"1 Comment","1 kommentar"
|
25 |
-
Comment,Kommentar
|
26 |
-
Reply,Svar
|
27 |
-
"Leave a Reply","Skriv et svar"
|
28 |
-
"Your comment is awaiting moderation.","Din kommentar afventer godkendelse."
|
29 |
-
"%s at %s","%s kl. %s"
|
30 |
-
Email,E-mail
|
31 |
-
Website,Webside
|
32 |
-
Archives,Arkiver
|
33 |
-
"Select Month","Vælg måned"
|
34 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","<abbr title=\"Really Simple Syndication\">RSS</abbr> af indlæg"
|
35 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Denne webside kører WordPress; et moderne, semantisk publiceringsverktøj"
|
36 |
-
"Select Category","Vælg kategori"
|
37 |
-
"Recent Posts","Nye indlæg"
|
38 |
-
"Recent Comments","Nye kommentarer"
|
39 |
-
"%s on %s","%s til %s"
|
40 |
-
"Tag Cloud",Tag-cloud
|
41 |
-
"Comment on %s by %s","Kommentar til %s af %s"
|
42 |
-
"By: %s","Af: %s"
|
43 |
-
"Error establishing a database connection","Fejl ved etablering af databaseforbindelse"
|
44 |
-
Password,Kodeord
|
45 |
-
"« Previous","« Tidligere"
|
46 |
-
"Next »","Næste »"
|
47 |
-
Close,Luk
|
48 |
-
January,januar
|
49 |
-
February,februar
|
50 |
-
March,marts
|
51 |
-
April,april
|
52 |
-
May,maj
|
53 |
-
June,juni
|
54 |
-
July,juli
|
55 |
-
August,august
|
56 |
-
September,september
|
57 |
-
October,oktober
|
58 |
-
November,november
|
59 |
-
December,december
|
60 |
-
Jan_January_abbreviation,jan
|
61 |
-
Feb_February_abbreviation,feb
|
62 |
-
Mar_March_abbreviation,mar
|
63 |
-
Apr_April_abbreviation,apr
|
64 |
-
May_May_abbreviation,maj
|
65 |
-
Jun_June_abbreviation,jun
|
66 |
-
Jul_July_abbreviation,jul
|
67 |
-
Aug_August_abbreviation,aug
|
68 |
-
Sep_September_abbreviation,sep
|
69 |
-
Oct_October_abbreviation,okt
|
70 |
-
Nov_November_abbreviation,nov
|
71 |
-
Dec_December_abbreviation,dec
|
72 |
-
Sunday,søndag
|
73 |
-
Monday,mandag
|
74 |
-
Tuesday,tirsdag
|
75 |
-
Wednesday,onsdag
|
76 |
-
Thursday,torsdag
|
77 |
-
Friday,fredag
|
78 |
-
Saturday,lørdag
|
79 |
-
Sun,søn
|
80 |
-
Mon,man
|
81 |
-
Tue,tirs
|
82 |
-
Wed,ons
|
83 |
-
Thu,tors
|
84 |
-
Fri,fre
|
85 |
-
Sat,lør
|
86 |
-
"Please wait...","Vent venligst..."
|
87 |
-
"Daily Archives: %s","Dagsarkiv: %s"
|
88 |
-
"Monthly Archives: %s","Månedsarkiv: %s"
|
89 |
-
"One thought on “%s”","En tanke om \"%s\""
|
90 |
-
"%s thoughts on “%s”","%s tanker om \"%s\""
|
91 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Læs resten <span class=\"meta-nav\">→</span>"
|
92 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Dette indlæg blev udgivet i %s og tagget %s den %s<span class=\"by-author\"> af %s</span>."
|
93 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Dette indlæg blev udgivet i %s den %s<span class=\"by-author\"> af %s</span>."
|
94 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Dette indlæg blev udgivet den %s<span class=\"by-author\"> af %s</span>."
|
95 |
-
"You have version %s installed. Update to %s.","Du har version %s installeret. Opdater til %s."
|
96 |
-
"Default Template",Standardskabelon
|
97 |
-
"Install %s","Installer %s"
|
98 |
-
"Update to version %s","Opdater til version %s"
|
99 |
-
Position,Placering
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/de_DE/Fishpig_Wordpress.csv
DELETED
@@ -1,89 +0,0 @@
|
|
1 |
-
Path,Pfad
|
2 |
-
Author,Autor
|
3 |
-
Type,Typ
|
4 |
-
"Previous Post","vorheriger Beitrag"
|
5 |
-
"Next Post","nächster Beitrag"
|
6 |
-
"Protected: %s","Geschützt: %s"
|
7 |
-
Submit,Senden
|
8 |
-
Published,Veröffentlicht
|
9 |
-
Pages,Seiten
|
10 |
-
"Search Posts","Beiträge duchsuchen"
|
11 |
-
Image,Bild
|
12 |
-
"An unidentified error has occurred.","Ein unbekannter Fehler ist aufgetreten."
|
13 |
-
of,von
|
14 |
-
Add,Hinzufügen
|
15 |
-
"No results found.","Es wurden keine Kommentare gefunden, die deinen Suchkriterien entsprechen."
|
16 |
-
Tags,Schlagwörter
|
17 |
-
Categories,Kategorien
|
18 |
-
"Leave a comment","Hinterlasse einen Kommentar"
|
19 |
-
"Sorry, you must be logged in to post a comment.","Um einen Kommentar zu hinterlassen, musst du angemeldet sein."
|
20 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Deine WordPress-Adresse %s ist falsch. Bitte <a href=\"%s\">korrigiere diese</a> (Eingabefeld 'home')."
|
21 |
-
Search,Suchen
|
22 |
-
"%s Comments","%s Kommentare"
|
23 |
-
"No Comments","Keine Kommentare"
|
24 |
-
"1 Comment","1 Kommentar"
|
25 |
-
Comment,Kommentar
|
26 |
-
Reply,Antworten
|
27 |
-
"Leave a Reply","Hinterlasse eine Antwort"
|
28 |
-
"Your comment is awaiting moderation.","Dein Kommentar wartet auf Freischaltung."
|
29 |
-
"%s at %s","%s um %s"
|
30 |
-
Email,E-Mail-Adresse
|
31 |
-
Archives,Archive
|
32 |
-
"Select Month","Wähle den Monat"
|
33 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Beitrags-Feed (<abbr title=\"Really Simple Syndication\">RSS</abbr>)"
|
34 |
-
"Select Category","Kategorie auswählen"
|
35 |
-
"Recent Posts","Letzte Beiträge"
|
36 |
-
"Recent Comments","Letzte Kommentare"
|
37 |
-
"%s on %s","%s bei %s"
|
38 |
-
"Tag Cloud",Schlagwörter-Wolke
|
39 |
-
"Comment on %s by %s","Kommentar zu %s von %s"
|
40 |
-
"By: %s","Von: %s"
|
41 |
-
"Error establishing a database connection","Fehler beim Aufbau einer Datenbankverbindung"
|
42 |
-
Password,Passwort
|
43 |
-
"« Previous","« Zurück"
|
44 |
-
"Next »","Weiter »"
|
45 |
-
Close,Schließen
|
46 |
-
January,Januar
|
47 |
-
February,Februar
|
48 |
-
March,März
|
49 |
-
May,Mai
|
50 |
-
June,Juni
|
51 |
-
July,Juli
|
52 |
-
October,Oktober
|
53 |
-
December,Dezember
|
54 |
-
Jan_January_abbreviation,Jan_Januar_abbreviation
|
55 |
-
Feb_February_abbreviation,Feb_Februar_abbreviation
|
56 |
-
Mar_March_abbreviation,Mrz_März_abbreviation
|
57 |
-
May_May_abbreviation,Mai_Mai_abbreviation
|
58 |
-
Jun_June_abbreviation,Jun_Juni_abbreviation
|
59 |
-
Jul_July_abbreviation,Jul_Juli_abbreviation
|
60 |
-
Oct_October_abbreviation,Okt_Oktober_abbreviation
|
61 |
-
Dec_December_abbreviation,Dez_Dezember_abbreviation
|
62 |
-
Sunday,Sonntag
|
63 |
-
Monday,Montag
|
64 |
-
Tuesday,Dienstag
|
65 |
-
Wednesday,Mittwoch
|
66 |
-
Thursday,Donnerstag
|
67 |
-
Friday,Freitag
|
68 |
-
Saturday,Samstag
|
69 |
-
Sun,So
|
70 |
-
Mon,Mo
|
71 |
-
Tue,Di
|
72 |
-
Wed,Mi
|
73 |
-
Thu,Do
|
74 |
-
Fri,Fr
|
75 |
-
Sat,Sa
|
76 |
-
"Please wait...","Bitte warten …"
|
77 |
-
"Daily Archives: %s","Archiv für den Tag: %s"
|
78 |
-
"Monthly Archives: %s","Archiv für den Monat: %s"
|
79 |
-
"One thought on “%s”","Ein Gedanke zu „%s“"
|
80 |
-
"%s thoughts on “%s”","%s Gedanken zu „%s“"
|
81 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Weiterlesen <span class=\"meta-nav\">→</span>"
|
82 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Dieser Beitrag wurde unter %s abgelegt und mit %s verschlagwortet am %s<span class=\"by-author\"> von %s</span>. "
|
83 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Dieser Beitrag wurde unter %s abgelegt am %s<span class=\"by-author\"> von %s</span>. "
|
84 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Dieser Beitrag wurde veröffentlicht am %s<span class=\"by-author\"> von %s</span>. "
|
85 |
-
"You have version %s installed. Update to %s.","Du hast Version %s installiert. Aktualisiere auf Version %s."
|
86 |
-
Home,Startseite
|
87 |
-
"Default Template",Standardtemplate
|
88 |
-
"Install %s","Installiere %s"
|
89 |
-
"Update to version %s","Aktualisiere auf Version %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/en_GB/Fishpig_Wordpress.csv
DELETED
@@ -1,102 +0,0 @@
|
|
1 |
-
"Sorry, you must be logged in to post a comment.","Sorry, you must be logged in to post a comment."
|
2 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>."
|
3 |
-
Search,Search
|
4 |
-
"No results found.","No results found."
|
5 |
-
Categories,Categories
|
6 |
-
"%s Comments","%s Comments"
|
7 |
-
"No Comments","No Comments"
|
8 |
-
"1 Comment","1 Comment"
|
9 |
-
Comment,Comment
|
10 |
-
Reply,Reply
|
11 |
-
"Leave a Reply","Leave a Reply"
|
12 |
-
"Your comment is awaiting moderation.","Your comment is awaiting moderation."
|
13 |
-
"%s at %s","%s at %s"
|
14 |
-
Name,Name
|
15 |
-
Email,Email
|
16 |
-
Website,Website
|
17 |
-
Pages,Pages
|
18 |
-
Links,Links
|
19 |
-
Archives,Archives
|
20 |
-
"Select Month","Select Month"
|
21 |
-
Meta,Meta
|
22 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
23 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
24 |
-
"Select Category","Select Category"
|
25 |
-
"Recent Posts","Recent Posts"
|
26 |
-
"Recent Comments","Recent Comments"
|
27 |
-
"%s on %s","%s on %s"
|
28 |
-
"Tag Cloud","Tag Cloud"
|
29 |
-
Tags,Tags
|
30 |
-
"Comment on %s by %s","Comment on %s by %s"
|
31 |
-
"By: %s","By: %s"
|
32 |
-
"Error establishing a database connection","Error establishing a database connection"
|
33 |
-
Password,Password
|
34 |
-
"« Previous","« Previous"
|
35 |
-
"Next »","Next »"
|
36 |
-
Close,Close
|
37 |
-
January,January
|
38 |
-
February,February
|
39 |
-
March,March
|
40 |
-
April,April
|
41 |
-
May,May
|
42 |
-
June,June
|
43 |
-
July,July
|
44 |
-
August,August
|
45 |
-
September,September
|
46 |
-
October,October
|
47 |
-
November,November
|
48 |
-
December,December
|
49 |
-
Jan_January_abbreviation,Jan_January_abbreviation
|
50 |
-
Feb_February_abbreviation,Feb_February_abbreviation
|
51 |
-
Mar_March_abbreviation,Mar_March_abbreviation
|
52 |
-
Apr_April_abbreviation,Apr_April_abbreviation
|
53 |
-
May_May_abbreviation,May_May_abbreviation
|
54 |
-
Jun_June_abbreviation,Jun_June_abbreviation
|
55 |
-
Jul_July_abbreviation,Jul_July_abbreviation
|
56 |
-
Aug_August_abbreviation,Aug_August_abbreviation
|
57 |
-
Sep_September_abbreviation,Sep_September_abbreviation
|
58 |
-
Oct_October_abbreviation,Oct_October_abbreviation
|
59 |
-
Nov_November_abbreviation,Nov_November_abbreviation
|
60 |
-
Dec_December_abbreviation,Dec_December_abbreviation
|
61 |
-
Sunday,Sunday
|
62 |
-
Monday,Monday
|
63 |
-
Tuesday,Tuesday
|
64 |
-
Wednesday,Wednesday
|
65 |
-
Thursday,Thursday
|
66 |
-
Friday,Friday
|
67 |
-
Saturday,Saturday
|
68 |
-
Sun,Sun
|
69 |
-
Mon,Mon
|
70 |
-
Tue,Tue
|
71 |
-
Wed,Wed
|
72 |
-
Thu,Thu
|
73 |
-
Fri,Fri
|
74 |
-
Sat,Sat
|
75 |
-
"Please wait...","Please wait..."
|
76 |
-
Path,Path
|
77 |
-
Plugin,Plugin
|
78 |
-
Author,Author
|
79 |
-
Type,Type
|
80 |
-
"Previous Post","Previous Post"
|
81 |
-
"Next Post","Next Post"
|
82 |
-
"Protected: %s","Protected: %s"
|
83 |
-
Home,Home
|
84 |
-
Submit,Submit
|
85 |
-
Published,Published
|
86 |
-
"Search Posts","Search Posts"
|
87 |
-
Image,Image
|
88 |
-
"An unidentified error has occurred.","An unidentified error has occurred."
|
89 |
-
of,of
|
90 |
-
Add,Add
|
91 |
-
"Leave a comment","Leave a comment"
|
92 |
-
"Daily Archives: %s","Daily Archives: %s"
|
93 |
-
"Monthly Archives: %s","Monthly Archives: %s"
|
94 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Continue reading <span class=\"meta-nav\">→</span>"
|
95 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>."
|
96 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>."
|
97 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","This entry was posted on %s<span class=\"by-author\"> by %s</span>."
|
98 |
-
Position,Position
|
99 |
-
"Install %s","Install %s"
|
100 |
-
"Update to version %s","Update to version %s"
|
101 |
-
"Default Template","Default Template"
|
102 |
-
"You have version %s installed. Update to %s.","You have version %s installed. Update to %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/en_US/Fishpig_Wordpress.csv
DELETED
@@ -1,102 +0,0 @@
|
|
1 |
-
"Sorry, you must be logged in to post a comment.","Sorry, you must be logged in to post a comment."
|
2 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>."
|
3 |
-
Search,Search
|
4 |
-
"No results found.","No results found."
|
5 |
-
Categories,Categories
|
6 |
-
"%s Comments","%s Comments"
|
7 |
-
"No Comments","No Comments"
|
8 |
-
"1 Comment","1 Comment"
|
9 |
-
Comment,Comment
|
10 |
-
Reply,Reply
|
11 |
-
"Leave a Reply","Leave a Reply"
|
12 |
-
"Your comment is awaiting moderation.","Your comment is awaiting moderation."
|
13 |
-
"%s at %s","%s at %s"
|
14 |
-
Name,Name
|
15 |
-
Email,Email
|
16 |
-
Website,Website
|
17 |
-
Pages,Pages
|
18 |
-
Links,Links
|
19 |
-
Archives,Archives
|
20 |
-
"Select Month","Select Month"
|
21 |
-
Meta,Meta
|
22 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
23 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
24 |
-
"Select Category","Select Category"
|
25 |
-
"Recent Posts","Recent Posts"
|
26 |
-
"Recent Comments","Recent Comments"
|
27 |
-
"%s on %s","%s on %s"
|
28 |
-
"Tag Cloud","Tag Cloud"
|
29 |
-
Tags,Tags
|
30 |
-
"Comment on %s by %s","Comment on %s by %s"
|
31 |
-
"By: %s","By: %s"
|
32 |
-
"Error establishing a database connection","Error establishing a database connection"
|
33 |
-
Password,Password
|
34 |
-
"« Previous","« Previous"
|
35 |
-
"Next »","Next »"
|
36 |
-
Close,Close
|
37 |
-
January,January
|
38 |
-
February,February
|
39 |
-
March,March
|
40 |
-
April,April
|
41 |
-
May,May
|
42 |
-
June,June
|
43 |
-
July,July
|
44 |
-
August,August
|
45 |
-
September,September
|
46 |
-
October,October
|
47 |
-
November,November
|
48 |
-
December,December
|
49 |
-
Jan_January_abbreviation,Jan_January_abbreviation
|
50 |
-
Feb_February_abbreviation,Feb_February_abbreviation
|
51 |
-
Mar_March_abbreviation,Mar_March_abbreviation
|
52 |
-
Apr_April_abbreviation,Apr_April_abbreviation
|
53 |
-
May_May_abbreviation,May_May_abbreviation
|
54 |
-
Jun_June_abbreviation,Jun_June_abbreviation
|
55 |
-
Jul_July_abbreviation,Jul_July_abbreviation
|
56 |
-
Aug_August_abbreviation,Aug_August_abbreviation
|
57 |
-
Sep_September_abbreviation,Sep_September_abbreviation
|
58 |
-
Oct_October_abbreviation,Oct_October_abbreviation
|
59 |
-
Nov_November_abbreviation,Nov_November_abbreviation
|
60 |
-
Dec_December_abbreviation,Dec_December_abbreviation
|
61 |
-
Sunday,Sunday
|
62 |
-
Monday,Monday
|
63 |
-
Tuesday,Tuesday
|
64 |
-
Wednesday,Wednesday
|
65 |
-
Thursday,Thursday
|
66 |
-
Friday,Friday
|
67 |
-
Saturday,Saturday
|
68 |
-
Sun,Sun
|
69 |
-
Mon,Mon
|
70 |
-
Tue,Tue
|
71 |
-
Wed,Wed
|
72 |
-
Thu,Thu
|
73 |
-
Fri,Fri
|
74 |
-
Sat,Sat
|
75 |
-
"Please wait...","Please wait..."
|
76 |
-
Path,Path
|
77 |
-
Plugin,Plugin
|
78 |
-
Author,Author
|
79 |
-
Type,Type
|
80 |
-
"Previous Post","Previous Post"
|
81 |
-
"Next Post","Next Post"
|
82 |
-
"Protected: %s","Protected: %s"
|
83 |
-
Home,Home
|
84 |
-
Submit,Submit
|
85 |
-
Published,Published
|
86 |
-
"Search Posts","Search Posts"
|
87 |
-
Image,Image
|
88 |
-
"An unidentified error has occurred.","An unidentified error has occurred."
|
89 |
-
of,of
|
90 |
-
Add,Add
|
91 |
-
"Leave a comment","Leave a comment"
|
92 |
-
"Daily Archives: %s","Daily Archives: %s"
|
93 |
-
"Monthly Archives: %s","Monthly Archives: %s"
|
94 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Continue reading <span class=\"meta-nav\">→</span>"
|
95 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>."
|
96 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>."
|
97 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","This entry was posted on %s<span class=\"by-author\"> by %s</span>."
|
98 |
-
Position,Position
|
99 |
-
"Install %s","Install %s"
|
100 |
-
"Update to version %s","Update to version %s"
|
101 |
-
"Default Template","Default Template"
|
102 |
-
"You have version %s installed. Update to %s.","You have version %s installed. Update to %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/es_ES/Fishpig_Wordpress.csv
DELETED
@@ -1,102 +0,0 @@
|
|
1 |
-
Path,Ruta
|
2 |
-
Author,Autor
|
3 |
-
Type,Tipo
|
4 |
-
Name,Nombre
|
5 |
-
"Previous Post","Entrada anterior"
|
6 |
-
"Next Post","Entrada siguiente"
|
7 |
-
"Protected: %s","Protegido: %s"
|
8 |
-
Home,Inicio
|
9 |
-
Submit,Enviar
|
10 |
-
Published,Publicada
|
11 |
-
Pages,Páginas
|
12 |
-
"Search Posts","Buscar entradas"
|
13 |
-
Image,Imagen
|
14 |
-
"An unidentified error has occurred.","Ha ocurrido un error no identificado."
|
15 |
-
of,de
|
16 |
-
Add,Añadir
|
17 |
-
"No results found.","Sin resultados."
|
18 |
-
Tags,Etiquetas
|
19 |
-
Categories,Categorías
|
20 |
-
"Leave a comment","Deja un comentario"
|
21 |
-
"Sorry, you must be logged in to post a comment.","Disculpa, debes identificarte para escribir un comentario."
|
22 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","La URL de la página de inicio de tu WordPress %s no es válida. Por favor, arregla <a href=\"%s\">la opción de página de inicio</a>."
|
23 |
-
Search,Buscar
|
24 |
-
"%s Comments","%s comentarios"
|
25 |
-
"No Comments","No hay comentarios"
|
26 |
-
"1 Comment","1 comentario"
|
27 |
-
Comment,Comentario
|
28 |
-
Reply,Responder
|
29 |
-
"Leave a Reply","Deja un comentario"
|
30 |
-
"Your comment is awaiting moderation.","Tu comentario está pendiente de moderación."
|
31 |
-
"%s at %s","%s en %s"
|
32 |
-
Email,"Correo electrónico"
|
33 |
-
Website,Web
|
34 |
-
Links,Enlaces
|
35 |
-
Archives,Archivos
|
36 |
-
"Select Month","Elegir mes"
|
37 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","<abbr title=\"Really Simple Syndication\">RSS</abbr> de las entradas"
|
38 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Gestionado con WordPress, una avanzada plataforma semántica de publicación personal."
|
39 |
-
"Select Category","Elegir categoría"
|
40 |
-
"Recent Posts","Entradas recientes"
|
41 |
-
"Recent Comments","Comentarios recientes"
|
42 |
-
"%s on %s","%s en %s"
|
43 |
-
"Tag Cloud","Nube de etiquetas"
|
44 |
-
"Comment on %s by %s","Comentario en %s por %s"
|
45 |
-
"By: %s","Por: %s"
|
46 |
-
"Error establishing a database connection","Error estableciendo una conexión con la base de datos"
|
47 |
-
Password,Contraseña
|
48 |
-
"« Previous","« Anterior"
|
49 |
-
"Next »","Siguiente »"
|
50 |
-
Close,Cerrar
|
51 |
-
January,enero
|
52 |
-
February,febrero
|
53 |
-
March,marzo
|
54 |
-
April,abril
|
55 |
-
May,mayo
|
56 |
-
June,junio
|
57 |
-
July,julio
|
58 |
-
August,agosto
|
59 |
-
September,septiembre
|
60 |
-
October,octubre
|
61 |
-
November,noviembre
|
62 |
-
December,diciembre
|
63 |
-
Jan_January_abbreviation,ene
|
64 |
-
Feb_February_abbreviation,feb
|
65 |
-
Mar_March_abbreviation,mar
|
66 |
-
Apr_April_abbreviation,abr
|
67 |
-
May_May_abbreviation,may
|
68 |
-
Jun_June_abbreviation,jun
|
69 |
-
Jul_July_abbreviation,jul
|
70 |
-
Aug_August_abbreviation,ago
|
71 |
-
Sep_September_abbreviation,sep
|
72 |
-
Oct_October_abbreviation,oct
|
73 |
-
Nov_November_abbreviation,nov
|
74 |
-
Dec_December_abbreviation,dic
|
75 |
-
Sunday,Domingo
|
76 |
-
Monday,Lunes
|
77 |
-
Tuesday,Martes
|
78 |
-
Wednesday,Miércoles
|
79 |
-
Thursday,Jueves
|
80 |
-
Friday,Viernes
|
81 |
-
Saturday,Sábado
|
82 |
-
Sun,Dom
|
83 |
-
Mon,Lun
|
84 |
-
Tue,Mar
|
85 |
-
Wed,Mie
|
86 |
-
Thu,Jue
|
87 |
-
Fri,Vie
|
88 |
-
Sat,Sab
|
89 |
-
"Please wait...","Un momento..."
|
90 |
-
"Daily Archives: %s","Archivo por días: %s"
|
91 |
-
"Monthly Archives: %s","Archivo por meses: %s"
|
92 |
-
"One thought on “%s”","Un pensamiento en “%s”"
|
93 |
-
"%s thoughts on “%s”","%s pensamientos en “%s”"
|
94 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Sigue leyendo <span class=\"meta-nav\">→</span>"
|
95 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Esta entrada se publicó en %s y está etiquetada con %s en %s<span class=\"by-author\"> por %s</span>."
|
96 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Esta entrada fue publicada en %s el %s<span class=\"by-author\"> por %s</span>."
|
97 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Esta entrada fue publicada el %s<span class=\"by-author\"> por %s</span>."
|
98 |
-
"You have version %s installed. Update to %s.","Estás usando la versión %s. Actualiza a %s."
|
99 |
-
"Default Template","Plantilla predeterminada"
|
100 |
-
"Install %s","Instalar %s"
|
101 |
-
"Update to version %s","Actualizar a la versión %s"
|
102 |
-
Position,Posición
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/fr_FR/Fishpig_Wordpress.csv
DELETED
@@ -1,100 +0,0 @@
|
|
1 |
-
"Sorry, you must be logged in to post a comment.","Désolé, vous devez être connecté(e) pour rédiger un commentaire."
|
2 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","L’adresse de votre accueil WordPress (%s) n’est pas valide. Veuillez la corriger l’<a href=\"%s\">option de l’accueil</a>."
|
3 |
-
Search,Recherche
|
4 |
-
"No results found.","Aucun résultat trouvé."
|
5 |
-
WordPress.org,"Site de WordPress-FR"
|
6 |
-
Categories,Catégories
|
7 |
-
"%s Comments","%s commentaires"
|
8 |
-
"No Comments","Pas de commentaire"
|
9 |
-
"1 Comment","Un commentaire"
|
10 |
-
Comment,Commentaire
|
11 |
-
Reply,Répondre
|
12 |
-
"Leave a Reply","Laisser un commentaire"
|
13 |
-
"Your comment is awaiting moderation.","Votre commentaire est en attente de validation."
|
14 |
-
"%s at %s","%s à %s"
|
15 |
-
Name,Nom
|
16 |
-
Email,"Adresse de contact"
|
17 |
-
Website,"Site web"
|
18 |
-
Links,Liens
|
19 |
-
"Select Month","Choisir un mois"
|
20 |
-
Meta,Méta
|
21 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Flux <abbr title=\"Really Simple Syndication\">RSS</abbr> des articles"
|
22 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Propulsé par WordPress, plate-forme de publication personnelle sémantique de pointe."
|
23 |
-
"Select Category","Choisir une catégorie"
|
24 |
-
"Recent Posts","Articles récents"
|
25 |
-
"Recent Comments","Commentaires récents"
|
26 |
-
"%s on %s","%s dans %s"
|
27 |
-
"Tag Cloud","Nuage de mots-clefs"
|
28 |
-
Tags,Mots-clefs
|
29 |
-
"Comment on %s by %s","Commentaires sur %s par %s"
|
30 |
-
"By: %s","Par : %s"
|
31 |
-
"Error establishing a database connection","Erreur lors de la connexion à la base de données"
|
32 |
-
Password,"Mot de passe"
|
33 |
-
"« Previous","« Précédent"
|
34 |
-
"Next »","Suivant »"
|
35 |
-
Close,Fermer
|
36 |
-
January,janvier
|
37 |
-
February,février
|
38 |
-
March,mars
|
39 |
-
April,avril
|
40 |
-
May,mai
|
41 |
-
June,juin
|
42 |
-
July,juillet
|
43 |
-
August,août
|
44 |
-
September,septembre
|
45 |
-
October,octobre
|
46 |
-
November,novembre
|
47 |
-
December,décembre
|
48 |
-
Jan_January_abbreviation,jan
|
49 |
-
Feb_February_abbreviation,fév
|
50 |
-
Mar_March_abbreviation,mar
|
51 |
-
Apr_April_abbreviation,avr
|
52 |
-
May_May_abbreviation,mai
|
53 |
-
Jun_June_abbreviation,juin
|
54 |
-
Jul_July_abbreviation,juil
|
55 |
-
Aug_August_abbreviation,août
|
56 |
-
Sep_September_abbreviation,sept
|
57 |
-
Oct_October_abbreviation,oct
|
58 |
-
Nov_November_abbreviation,nov
|
59 |
-
Dec_December_abbreviation,déc
|
60 |
-
Sunday,Dimanche
|
61 |
-
Monday,Lundi
|
62 |
-
Tuesday,Mardi
|
63 |
-
Wednesday,Mercredi
|
64 |
-
Thursday,Jeudi
|
65 |
-
Friday,Vendredi
|
66 |
-
Saturday,Samedi
|
67 |
-
Sun,dim
|
68 |
-
Mon,lun
|
69 |
-
Tue,mar
|
70 |
-
Wed,mer
|
71 |
-
Thu,jeu
|
72 |
-
Fri,ven
|
73 |
-
Sat,sam
|
74 |
-
"Please wait...","Veuillez patienter…"
|
75 |
-
Path,"Chemin "
|
76 |
-
Plugin,Extension
|
77 |
-
Author,Auteur
|
78 |
-
"Previous Post","Article précèdent"
|
79 |
-
"Next Post","Article suivant"
|
80 |
-
"Protected: %s","Protégé : %s"
|
81 |
-
Home,Accueil
|
82 |
-
Submit,Envoyer
|
83 |
-
Published,Publié
|
84 |
-
"Search Posts","Chercher dans les articles"
|
85 |
-
"An unidentified error has occurred.","Une erreur non identifiée est survenue."
|
86 |
-
of,sur
|
87 |
-
Add,Ajouter
|
88 |
-
"Leave a comment","Laisser un commentaire"
|
89 |
-
"Daily Archives: %s","Archives quotidiennes :"
|
90 |
-
"Monthly Archives: %s","Archives mensuelles : %s"
|
91 |
-
"One thought on “%s”","Une réflexion au sujet de « %s »"
|
92 |
-
"%s thoughts on “%s”","%s réflexions au sujet de « %s »"
|
93 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Lire la suite <span class=\"meta-nav\">→</span>"
|
94 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Cette entrée a été publiée dans %s, et marquée avec %s, le %s <span class=\"by-author\">par %s</span>."
|
95 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Cette entrée a été publiée dans %s le %s <span class=\"by-author\">par %s</span>."
|
96 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Cette entrée a été publiée le %s <span class=\"by-author\">par %s</span>."
|
97 |
-
"Install %s","Installer %s"
|
98 |
-
"Update to version %s","Mettre à jour vers la version %s"
|
99 |
-
"Default Template","Modèle par défaut"
|
100 |
-
"You have version %s installed. Update to %s.","Vous utilisez la version %s. Mettez à jour vers la version %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/it_IT/Fishpig_Wordpress.csv
DELETED
@@ -1,98 +0,0 @@
|
|
1 |
-
Path,Percorso
|
2 |
-
Author,Autore
|
3 |
-
Type,Tipo
|
4 |
-
Name,Nome
|
5 |
-
"Previous Post","Articolo precedente"
|
6 |
-
"Next Post","Articolo successivo"
|
7 |
-
"Protected: %s","Protetto: %s"
|
8 |
-
Submit,Invia
|
9 |
-
Published,Pubblicato
|
10 |
-
Pages,Pagine
|
11 |
-
"Search Posts","Cerca articoli"
|
12 |
-
Image,Immagine
|
13 |
-
"An unidentified error has occurred.","Si è verificato un errore non identificato."
|
14 |
-
of,di
|
15 |
-
Add,Aggiungi
|
16 |
-
"No results found.","Nessun risultato trovato."
|
17 |
-
Tags,Tag
|
18 |
-
Categories,Categorie
|
19 |
-
"Leave a comment","Lascia un commento"
|
20 |
-
"Sorry, you must be logged in to post a comment.","Per inviare un commento occorre aver effettuato il login."
|
21 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","L'URL %s della home di WordPress non è valida. Per favore correggi <a href=\"%s\">l'opzione home</a>."
|
22 |
-
Search,Cerca
|
23 |
-
"%s Comments","%s commenti"
|
24 |
-
"No Comments","Nessun commento"
|
25 |
-
"1 Comment","1 commento"
|
26 |
-
Comment,Commento
|
27 |
-
Reply,Replica
|
28 |
-
"Leave a Reply","Lascia un Commento"
|
29 |
-
"Your comment is awaiting moderation.","Il commento è in attesa di moderazione."
|
30 |
-
"%s at %s","%s alle %s"
|
31 |
-
Website,"Sito web"
|
32 |
-
Links,Link
|
33 |
-
Archives,Archivi
|
34 |
-
"Select Month","Seleziona mese"
|
35 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Voce <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
36 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Funziona con Wordpress."
|
37 |
-
"Select Category","Seleziona una categoria"
|
38 |
-
"Recent Posts","Articoli recenti"
|
39 |
-
"Recent Comments","Commenti recenti"
|
40 |
-
"%s on %s","%s per %s"
|
41 |
-
"Comment on %s by %s","Commenti su %s di %s"
|
42 |
-
"By: %s","Di: %s"
|
43 |
-
"Error establishing a database connection","Errore nello stabilire una connessione al database"
|
44 |
-
"« Previous","« Precedente"
|
45 |
-
"Next »","Successivo »"
|
46 |
-
Close,Chiudi
|
47 |
-
January,gennaio
|
48 |
-
February,febbraio
|
49 |
-
March,marzo
|
50 |
-
April,aprile
|
51 |
-
May,maggio
|
52 |
-
June,giugno
|
53 |
-
July,luglio
|
54 |
-
August,agosto
|
55 |
-
September,settembre
|
56 |
-
October,ottobre
|
57 |
-
November,novembre
|
58 |
-
December,dicembre
|
59 |
-
Jan_January_abbreviation,gen
|
60 |
-
Feb_February_abbreviation,feb
|
61 |
-
Mar_March_abbreviation,mar
|
62 |
-
Apr_April_abbreviation,apr
|
63 |
-
May_May_abbreviation,mag
|
64 |
-
Jun_June_abbreviation,giu
|
65 |
-
Jul_July_abbreviation,lug
|
66 |
-
Aug_August_abbreviation,ago
|
67 |
-
Sep_September_abbreviation,set
|
68 |
-
Oct_October_abbreviation,ott
|
69 |
-
Nov_November_abbreviation,nov
|
70 |
-
Dec_December_abbreviation,dic
|
71 |
-
Sunday,domenica
|
72 |
-
Monday,lunedì
|
73 |
-
Tuesday,martedì
|
74 |
-
Wednesday,mercoledì
|
75 |
-
Thursday,giovedì
|
76 |
-
Friday,venerdì
|
77 |
-
Saturday,sabato
|
78 |
-
Sun,dom
|
79 |
-
Mon,lun
|
80 |
-
Tue,mar
|
81 |
-
Wed,mer
|
82 |
-
Thu,gio
|
83 |
-
Fri,ven
|
84 |
-
Sat,sab
|
85 |
-
"Please wait...",Attendi...
|
86 |
-
"Daily Archives: %s","Archivi giornalieri: %s"
|
87 |
-
"Monthly Archives: %s","Archivio mensile:%s"
|
88 |
-
"One thought on “%s”","Un pensiero su “%s”"
|
89 |
-
"%s thoughts on “%s”","%s pensieri su “%s”"
|
90 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Continua a leggere <span class=\"meta-nav\">→</span>"
|
91 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Questo articolo è stato pubblicato in %s e taggato come %s il %s<span class=\"by-author\"> da %s</span>"
|
92 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Questo articolo è stato pubblicato in %s il %s<span class=\"by-author\"> da %s</span>."
|
93 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Questo articolo è stato pubblicato il %s<span class=\"by-author\"> da %s</span>."
|
94 |
-
"You have version %s installed. Update to %s.","Si sta utilizzando la versione %s. Aggiornare alla versione %s."
|
95 |
-
"Default Template","Template standard"
|
96 |
-
"Install %s","Installa %s"
|
97 |
-
"Update to version %s","Aggiornare alla versione %s"
|
98 |
-
Position,Posizione
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/ja_JP/Fishpig_Wordpress.csv
DELETED
@@ -1,100 +0,0 @@
|
|
1 |
-
Path,パス
|
2 |
-
Plugin,プラグイン
|
3 |
-
Author,投稿者
|
4 |
-
"Previous Post",過去の投稿へ
|
5 |
-
"Next Post",次の投稿へ
|
6 |
-
"Protected: %s","保護中: %s"
|
7 |
-
Home,ホーム
|
8 |
-
Submit,送信
|
9 |
-
Published,公開済み
|
10 |
-
Pages,固定ページ
|
11 |
-
"Search Posts",投稿を検索
|
12 |
-
Image,画像
|
13 |
-
"An unidentified error has occurred.",不明なエラーが発生しました。
|
14 |
-
of,/
|
15 |
-
Add,追加
|
16 |
-
"No results found.",見つかりませんでした。
|
17 |
-
Tags,タグ
|
18 |
-
Categories,カテゴリー
|
19 |
-
"Leave a comment",コメントする
|
20 |
-
"Sorry, you must be logged in to post a comment.",コメントを投稿するにはログインしてください。
|
21 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","WordPress のホーム URL %s が無効です。<a href=\"%s\">ホーム設定</a>を修正してください。"
|
22 |
-
Search,検索
|
23 |
-
"%s Comments",%s件のコメント
|
24 |
-
"No Comments",コメントはまだありません
|
25 |
-
"1 Comment",1件のコメント
|
26 |
-
Comment,コメント
|
27 |
-
Reply,返信
|
28 |
-
"Leave a Reply",コメントを残す
|
29 |
-
"Your comment is awaiting moderation.",あなたのコメントは承認待ちです。
|
30 |
-
"%s at %s","%s %s"
|
31 |
-
Name,名前
|
32 |
-
Email,メールアドレス
|
33 |
-
Website,ウェブサイト
|
34 |
-
Links,リンク
|
35 |
-
Archives,アーカイブ
|
36 |
-
"Select Month",月を選択
|
37 |
-
Meta,メタ情報
|
38 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","投稿の <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
39 |
-
"Select Category",カテゴリーを選択
|
40 |
-
"Recent Posts",最近の投稿
|
41 |
-
"Recent Comments",最近のコメント
|
42 |
-
"%s on %s","%s への %s"
|
43 |
-
"Tag Cloud",タグクラウド
|
44 |
-
"Comment on %s by %s","%s より %s へのコメント"
|
45 |
-
"By: %s","%s より"
|
46 |
-
"Error establishing a database connection",データベース接続確立エラー
|
47 |
-
Password,パスワード
|
48 |
-
"« Previous","« 前へ"
|
49 |
-
"Next »","次へ »"
|
50 |
-
Close,閉じる
|
51 |
-
January,1月
|
52 |
-
February,2月
|
53 |
-
March,3月
|
54 |
-
April,4月
|
55 |
-
May,5月
|
56 |
-
June,6月
|
57 |
-
July,7月
|
58 |
-
August,8月
|
59 |
-
September,9月
|
60 |
-
October,10月
|
61 |
-
November,11月
|
62 |
-
December,12月
|
63 |
-
Jan_January_abbreviation,1月_January_abbreviation
|
64 |
-
Feb_February_abbreviation,2月_February_abbreviation
|
65 |
-
Mar_March_abbreviation,3月_March_abbreviation
|
66 |
-
Apr_April_abbreviation,4月_April_abbreviation
|
67 |
-
May_May_abbreviation,5月_May_abbreviation
|
68 |
-
Jun_June_abbreviation,6月_June_abbreviation
|
69 |
-
Jul_July_abbreviation,7月_July_abbreviation
|
70 |
-
Aug_August_abbreviation,8月_August_abbreviation
|
71 |
-
Sep_September_abbreviation,9月_September_abbreviation
|
72 |
-
Oct_October_abbreviation,10月_October_abbreviation
|
73 |
-
Nov_November_abbreviation,11月_November_abbreviation
|
74 |
-
Dec_December_abbreviation,12月_December_abbreviation
|
75 |
-
Sunday,日曜日
|
76 |
-
Monday,月曜日
|
77 |
-
Tuesday,火曜日
|
78 |
-
Wednesday,水曜日
|
79 |
-
Thursday,木曜日
|
80 |
-
Friday,金曜日
|
81 |
-
Saturday,土曜日
|
82 |
-
Sun,日
|
83 |
-
Mon,月
|
84 |
-
Tue,火
|
85 |
-
Wed,水
|
86 |
-
Thu,木
|
87 |
-
Fri,金
|
88 |
-
Sat,土
|
89 |
-
"Please wait...",しばらくお待ちください...
|
90 |
-
"Daily Archives: %s","日別アーカイブ: %s"
|
91 |
-
"Monthly Archives: %s","月別アーカイブ: %s"
|
92 |
-
"Continue reading <span class=\"meta-nav\">→</span>","続きを読む <span class=\"meta-nav\">→</span>"
|
93 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","カテゴリー: %s | タグ: %s | 投稿日: %s | <span class=\"by-author\">投稿者: %s</span>"
|
94 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","カテゴリー: %s | 投稿日: %s | <span class=\"by-author\">投稿者: %s</span>"
|
95 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","この投稿は%s<span class=\"by-author\">に%sが公開しました</span>。"
|
96 |
-
"You have version %s installed. Update to %s.","現在お使いのバージョンは %s です。%s に更新します。"
|
97 |
-
"Default Template",デフォルトテンプレート
|
98 |
-
"Install %s","%s のインストール"
|
99 |
-
"Update to version %s","バージョン %s に更新"
|
100 |
-
Position,位置
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/nb_NO/Fishpig_Wordpress.csv
DELETED
@@ -1,103 +0,0 @@
|
|
1 |
-
Path,Bane
|
2 |
-
Plugin,Utvidelse
|
3 |
-
Author,Forfatter
|
4 |
-
Name,Navn
|
5 |
-
"Previous Post","Forrige innlegg"
|
6 |
-
"Next Post","Neste innlegg"
|
7 |
-
"Protected: %s","Beskyttet: %s"
|
8 |
-
Home,Hjem
|
9 |
-
Submit,Send
|
10 |
-
Published,Publisert
|
11 |
-
Pages,Sider
|
12 |
-
"Search Posts","Søk i innlegg"
|
13 |
-
Image,Bilde
|
14 |
-
"An unidentified error has occurred.","En ikke identifisert feil har oppstått."
|
15 |
-
of,av
|
16 |
-
Add,"Legg til "
|
17 |
-
"No results found.","Ingen treff."
|
18 |
-
Tags,Stikkord
|
19 |
-
Categories,Kategorier
|
20 |
-
"Leave a comment","Legg igjen en kommentar"
|
21 |
-
"Sorry, you must be logged in to post a comment.","Beklager, du må være innlogget for å kunne kommentere."
|
22 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Din WordPress hjem-URL %s er ugyldig. Fiks <a href=\"%s\">hjem-valget</a>."
|
23 |
-
Search,Søk
|
24 |
-
"%s Comments","%s kommentarer"
|
25 |
-
"No Comments","Ingen kommentarer"
|
26 |
-
"1 Comment","1 kommentar"
|
27 |
-
Comment,Kommentar
|
28 |
-
Reply,Svar
|
29 |
-
"Leave a Reply","Legg igjen en kommentar"
|
30 |
-
"Your comment is awaiting moderation.","Din kommentar avventer moderasjon."
|
31 |
-
"%s at %s","%s, kl. %s"
|
32 |
-
Email,E-post
|
33 |
-
Website,Nettsted
|
34 |
-
Links,Lenker
|
35 |
-
Archives,Arkiv
|
36 |
-
"Select Month","Velg måned"
|
37 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Innlegg <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
38 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Drives med WordPress, toppmoderne personlig publiseringsverktøy."
|
39 |
-
"Select Category","Velg kategori"
|
40 |
-
"Recent Posts","Siste innlegg"
|
41 |
-
"Recent Comments","Siste kommentarer"
|
42 |
-
"%s on %s","%s til %s"
|
43 |
-
"Tag Cloud",Stikkordsky
|
44 |
-
"Comment on %s by %s","Kommentar til %s av %s"
|
45 |
-
"By: %s","Av: %s"
|
46 |
-
"Error establishing a database connection","Feil: klarte ikke å etablere databasetilkobling"
|
47 |
-
Password,Passord
|
48 |
-
"« Previous","« Forrige"
|
49 |
-
"Next »","Neste »"
|
50 |
-
Close,Lukk
|
51 |
-
January,januar
|
52 |
-
February,februar
|
53 |
-
March,mars
|
54 |
-
April,april
|
55 |
-
May,mai
|
56 |
-
June,juni
|
57 |
-
July,juli
|
58 |
-
August,august
|
59 |
-
September,september
|
60 |
-
October,oktober
|
61 |
-
November,november
|
62 |
-
December,desember
|
63 |
-
Jan_January_abbreviation,jan
|
64 |
-
Feb_February_abbreviation,feb
|
65 |
-
Mar_March_abbreviation,mar
|
66 |
-
Apr_April_abbreviation,apr
|
67 |
-
May_May_abbreviation,mai
|
68 |
-
Jun_June_abbreviation,jun
|
69 |
-
Jul_July_abbreviation,jul
|
70 |
-
Aug_August_abbreviation,aug
|
71 |
-
Sep_September_abbreviation,sept
|
72 |
-
Oct_October_abbreviation,okt
|
73 |
-
Nov_November_abbreviation,nov
|
74 |
-
Dec_December_abbreviation,des
|
75 |
-
Sunday,søndag
|
76 |
-
Monday,mandag
|
77 |
-
Tuesday,tirsdag
|
78 |
-
Wednesday,onsdag
|
79 |
-
Thursday,torsdag
|
80 |
-
Friday,fredag
|
81 |
-
Saturday,lørdag
|
82 |
-
Sun,søn
|
83 |
-
Mon,man
|
84 |
-
Tue,tir
|
85 |
-
Wed,ons
|
86 |
-
Thu,tor
|
87 |
-
Fri,fre
|
88 |
-
Sat,lør
|
89 |
-
"Please wait...","Vennligst vent..."
|
90 |
-
"Daily Archives: %s","Daglige arkiver: %s"
|
91 |
-
"Monthly Archives: %s","Månedlige arkiver: %s"
|
92 |
-
"One thought on “%s”","En tanke om “%s”"
|
93 |
-
"%s thoughts on “%s”","%s tanker om “%s”"
|
94 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Les videre <span class=\"meta-nav\">→</span>"
|
95 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Dette innlegget ble skrevet i %s og market %s, %s<span class=\"by-author\"> av %s</span>."
|
96 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Dette innlegget ble skrevet i %s, %s<span class=\"by-author\"> av %s</span>."
|
97 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Dette innlegget ble skrevet %s<span class=\"by-author\"> av %s</span>."
|
98 |
-
"You have version %s installed. Update to %s.","Du bruker versjon %s. Oppgrader til %s."
|
99 |
-
Tumblr,"Tumblr mikroblogg"
|
100 |
-
"Default Template",Standardmal
|
101 |
-
"Install %s","Installer %s"
|
102 |
-
"Update to version %s","Oppdater til versjon %s"
|
103 |
-
Position,Posisjon
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/nl_NL/Fishpig_Wordpress.csv
DELETED
@@ -1,98 +0,0 @@
|
|
1 |
-
Path,Pad
|
2 |
-
Author,Auteur
|
3 |
-
Name,Naam
|
4 |
-
"Previous Post","Vorige bericht"
|
5 |
-
"Next Post","Volgende bericht"
|
6 |
-
"Protected: %s","Beveiligd: %s"
|
7 |
-
Submit,Vastleggen
|
8 |
-
Published,Gepubliceerd
|
9 |
-
Pages,Pagina's
|
10 |
-
"Search Posts","Berichten zoeken"
|
11 |
-
Image,Afbeelding
|
12 |
-
"An unidentified error has occurred.","Er is een ongeïdentificeerde fout opgetreden."
|
13 |
-
of,van
|
14 |
-
Add,Toevoegen
|
15 |
-
"No results found.","Niets gevonden."
|
16 |
-
Categories,Categorieën
|
17 |
-
"Leave a comment","Een reactie plaatsen"
|
18 |
-
"Sorry, you must be logged in to post a comment.","Helaas, je moet ingelogd zijn om een reactie te geven."
|
19 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Je WordPress home URL %s is ongeldig. Corrigeer de <a href=\"%s\">home optie</a>."
|
20 |
-
Search,Zoeken
|
21 |
-
"%s Comments","%s reacties"
|
22 |
-
"No Comments",Reageren?
|
23 |
-
"1 Comment","1 reactie"
|
24 |
-
Comment,Reactie
|
25 |
-
Reply,Reageren
|
26 |
-
"Leave a Reply","Geef een reactie"
|
27 |
-
"Your comment is awaiting moderation.","Je reactie is in afwachting van moderatie."
|
28 |
-
"%s at %s","%s om %s"
|
29 |
-
Email,E-mail
|
30 |
-
Website,Site
|
31 |
-
Archives,Archieven
|
32 |
-
"Select Month","Maand selecteren"
|
33 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Berichten <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
34 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Powered by WordPress"
|
35 |
-
"Select Category","Categorie selecteren"
|
36 |
-
"Recent Posts","Meest recente berichten"
|
37 |
-
"Recent Comments","Recente reacties"
|
38 |
-
"%s on %s","%s op %s"
|
39 |
-
"Tag Cloud",Tagwolk
|
40 |
-
"Comment on %s by %s","Reactie op %s door %s"
|
41 |
-
"By: %s","Door: %s"
|
42 |
-
"Error establishing a database connection","Fout bij het maken van de databaseconnectie"
|
43 |
-
Password,Wachtwoord
|
44 |
-
"« Previous","« Vorige"
|
45 |
-
"Next »","Volgende »"
|
46 |
-
Close,Sluiten
|
47 |
-
January,januari
|
48 |
-
February,februari
|
49 |
-
March,maart
|
50 |
-
April,april
|
51 |
-
May,mei
|
52 |
-
June,juni
|
53 |
-
July,juli
|
54 |
-
August,augustus
|
55 |
-
September,september
|
56 |
-
October,oktober
|
57 |
-
November,november
|
58 |
-
December,december
|
59 |
-
Jan_January_abbreviation,jan
|
60 |
-
Feb_February_abbreviation,feb
|
61 |
-
Mar_March_abbreviation,mrt
|
62 |
-
Apr_April_abbreviation,apr
|
63 |
-
May_May_abbreviation,mei
|
64 |
-
Jun_June_abbreviation,jun
|
65 |
-
Jul_July_abbreviation,jul
|
66 |
-
Aug_August_abbreviation,aug
|
67 |
-
Sep_September_abbreviation,sep
|
68 |
-
Oct_October_abbreviation,okt
|
69 |
-
Nov_November_abbreviation,nov
|
70 |
-
Dec_December_abbreviation,dec
|
71 |
-
Sunday,zondag
|
72 |
-
Monday,maandag
|
73 |
-
Tuesday,dinsdag
|
74 |
-
Wednesday,woensdag
|
75 |
-
Thursday,donderdag
|
76 |
-
Friday,vrijdag
|
77 |
-
Saturday,zaterdag
|
78 |
-
Sun,zo
|
79 |
-
Mon,ma
|
80 |
-
Tue,di
|
81 |
-
Wed,wo
|
82 |
-
Thu,do
|
83 |
-
Fri,vr
|
84 |
-
Sat,za
|
85 |
-
"Please wait...","Even wachten..."
|
86 |
-
"Daily Archives: %s","Dagelijks archief: %s"
|
87 |
-
"Monthly Archives: %s","Maandelijks archief: %s"
|
88 |
-
"One thought on “%s”","Een gedachte over “%s”"
|
89 |
-
"%s thoughts on “%s”","%s gedachten over “%s”"
|
90 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Lees verder <span class=\"meta-nav\">→</span>"
|
91 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Dit bericht werd geplaatst in %s en getagged met %s op %s<span class=\"by-author\"> door %s</span>."
|
92 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Dit bericht werd geplaatst in %s op %s<span class=\"by-author\"> door %s</span>."
|
93 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Dit bericht werd geplaatst op %s<span class=\"by-author\"> door %s</span>."
|
94 |
-
"You have version %s installed. Update to %s.","Je hebt versie %s geïnstalleerd. Naar versie %s bijwerken."
|
95 |
-
"Default Template","Standaard template"
|
96 |
-
"Install %s","%s installeren"
|
97 |
-
"Update to version %s","Bijwerken naar versie %s"
|
98 |
-
Position,Positie
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/nn_NO/Fishpig_Wordpress.csv
DELETED
@@ -1,103 +0,0 @@
|
|
1 |
-
Path,Stig
|
2 |
-
Plugin,Innstikk
|
3 |
-
Author,Forfattar
|
4 |
-
Name,Namn
|
5 |
-
"Previous Post","Førre innlegg"
|
6 |
-
"Next Post","Neste innlegg"
|
7 |
-
"Protected: %s","Verna: %s"
|
8 |
-
Home,Heim
|
9 |
-
Submit,"Send inn"
|
10 |
-
Published,Publisert
|
11 |
-
Pages,Sider
|
12 |
-
"Search Posts","Søk i innlegg"
|
13 |
-
Image,Bilete
|
14 |
-
"An unidentified error has occurred.","Det oppstod ein ukjend feil."
|
15 |
-
of,av
|
16 |
-
Add,"Legg til"
|
17 |
-
"No results found.","Ingen treff."
|
18 |
-
Tags,Merkelappar
|
19 |
-
Categories,Kategoriar
|
20 |
-
"Leave a comment","Legg att eit innspel"
|
21 |
-
"Sorry, you must be logged in to post a comment.","Du må nok vere innlogga for å kunne gje innspel."
|
22 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","WordPress-heimadressa %s er ugyldig. Du må retta opp <a href=\"%s\">heim-innstillinga</a>."
|
23 |
-
Search,Søk
|
24 |
-
"%s Comments","%s innspel"
|
25 |
-
"No Comments","Inkje innspel"
|
26 |
-
"1 Comment","1 innspel"
|
27 |
-
Comment,Innspel
|
28 |
-
Reply,Svar
|
29 |
-
"Leave a Reply","Legg att eit svar"
|
30 |
-
"Your comment is awaiting moderation.","Kommentaren din ventar på godkjenning."
|
31 |
-
"%s at %s","%s kl. %s"
|
32 |
-
Email,Epost
|
33 |
-
Website,Vevstad
|
34 |
-
Links,Lenkjer
|
35 |
-
Archives,Arkiv
|
36 |
-
"Select Month","Vel månad"
|
37 |
-
Meta,Bakom
|
38 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Innlegg <abbr lang=\"en\" xml:lang=\"en\" title=\"Really Simple Syndication\">RSS</abbr>"
|
39 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Vert driven med WordPress, toppmoderne og semantisk personleg publiseringsverkty."
|
40 |
-
"Select Category","Vel kategori"
|
41 |
-
"Recent Posts","Nye innlegg"
|
42 |
-
"Recent Comments","Seinaste innspel"
|
43 |
-
"%s on %s","%s til %s"
|
44 |
-
"Tag Cloud",Merkelappsky
|
45 |
-
"Comment on %s by %s","Innspel til %s av %s"
|
46 |
-
"By: %s","Av: %s"
|
47 |
-
"Error establishing a database connection","Greidde ikkje kopla til databasen"
|
48 |
-
Password,Passord
|
49 |
-
"« Previous","« Førre"
|
50 |
-
"Next »","Neste »"
|
51 |
-
Close,Lukk
|
52 |
-
January,januar
|
53 |
-
February,februar
|
54 |
-
March,mars
|
55 |
-
April,april
|
56 |
-
May,mai
|
57 |
-
June,juni
|
58 |
-
July,juli
|
59 |
-
August,august
|
60 |
-
September,september
|
61 |
-
October,oktober
|
62 |
-
November,november
|
63 |
-
December,desember
|
64 |
-
Jan_January_abbreviation,jan
|
65 |
-
Feb_February_abbreviation,feb
|
66 |
-
Mar_March_abbreviation,mar
|
67 |
-
Apr_April_abbreviation,apr
|
68 |
-
May_May_abbreviation,mai
|
69 |
-
Jun_June_abbreviation,jun
|
70 |
-
Jul_July_abbreviation,jul
|
71 |
-
Aug_August_abbreviation,aug
|
72 |
-
Sep_September_abbreviation,sept
|
73 |
-
Oct_October_abbreviation,okt
|
74 |
-
Nov_November_abbreviation,nov
|
75 |
-
Dec_December_abbreviation,des
|
76 |
-
Sunday,sundag
|
77 |
-
Monday,måndag
|
78 |
-
Tuesday,tysdag
|
79 |
-
Wednesday,onsdag
|
80 |
-
Thursday,torsdag
|
81 |
-
Friday,fredag
|
82 |
-
Saturday,laurdag
|
83 |
-
Sun,sun
|
84 |
-
Mon,mån
|
85 |
-
Tue,tys
|
86 |
-
Wed,ons
|
87 |
-
Thu,tor
|
88 |
-
Fri,fre
|
89 |
-
Sat,lau
|
90 |
-
"Please wait...","Vent litt..."
|
91 |
-
"Daily Archives: %s","Dagsarkiv: %s"
|
92 |
-
"Monthly Archives: %s","Månadsarki: %s"
|
93 |
-
"One thought on “%s”","Ein tanke om “%s”"
|
94 |
-
"%s thoughts on “%s”","%s tankar om “%s”"
|
95 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Les meir <span class=\"meta-nav\">→</span>"
|
96 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Dette innlegget vart lagt inn %s<span class=\"by-author\"> av %s</span> i %s og merka %s."
|
97 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Dette innlegget vart lagt inn %s<span class=\"by-author\"> av %s</span> i %s."
|
98 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Dette innlegget vart lagt inn %s<span class=\"by-author\"> av %s</span>."
|
99 |
-
"You have version %s installed. Update to %s.","Du har utgåve %s installert. Oppdater til %s."
|
100 |
-
"Default Template",Standardmal
|
101 |
-
"Install %s","Installer %s"
|
102 |
-
"Update to version %s","Oppdater til utgåva %s"
|
103 |
-
Position,Plassering
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/pl_PL/Fishpig_Wordpress.csv
DELETED
@@ -1,103 +0,0 @@
|
|
1 |
-
Email,E-mail
|
2 |
-
Name,Nazwa
|
3 |
-
Path,Ścieżka
|
4 |
-
"Error establishing a database connection","Błąd łączenia się z bazą danych"
|
5 |
-
Tags,tagi
|
6 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","Podany adres strony domowej - %s - jest nieprawidłowy. Proszę poprawić zawartość <a href=\"%s\">pola z adresem strony domowej</a>."
|
7 |
-
Image,Obrazek
|
8 |
-
"Leave a comment","Dodaj komentarz"
|
9 |
-
Categories,kategorie
|
10 |
-
"Search Posts","Szukaj wpisów"
|
11 |
-
Pages,strony
|
12 |
-
"No results found.","Nie znaleziono żadnych elementów."
|
13 |
-
"Select Month","Wybierz miesiąc"
|
14 |
-
"Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>","Kanał <abbr title=\"Really Simple Syndication\">RSS</abbr> z wpisami"
|
15 |
-
"Select Category","Wybierz kategorię"
|
16 |
-
"Recent Posts","Najnowsze wpisy"
|
17 |
-
"%s on %s","%s o %s"
|
18 |
-
"Tag Cloud","Chmurka tagów"
|
19 |
-
"Comment on %s by %s","Skomentuj %s, którego autorem jest %s"
|
20 |
-
"By: %s","Autor: %s"
|
21 |
-
"« Previous","« Poprzednie"
|
22 |
-
"Next »","Następne »"
|
23 |
-
January,Styczeń
|
24 |
-
February,Luty
|
25 |
-
March,Marzec
|
26 |
-
April,Kwiecień
|
27 |
-
May,Maj
|
28 |
-
June,Czerwiec
|
29 |
-
July,Lipiec
|
30 |
-
August,Sierpień
|
31 |
-
September,Wrzesień
|
32 |
-
October,Październik
|
33 |
-
November,Listopad
|
34 |
-
December,Grudzień
|
35 |
-
Jan_January_abbreviation,sty
|
36 |
-
Feb_February_abbreviation,lut
|
37 |
-
Mar_March_abbreviation,mar
|
38 |
-
Apr_April_abbreviation,kwi
|
39 |
-
May_May_abbreviation,maj
|
40 |
-
Jun_June_abbreviation,cze
|
41 |
-
Jul_July_abbreviation,lip
|
42 |
-
Aug_August_abbreviation,sie
|
43 |
-
Sep_September_abbreviation,wrz
|
44 |
-
Oct_October_abbreviation,paź
|
45 |
-
Nov_November_abbreviation,lis
|
46 |
-
Dec_December_abbreviation,gru
|
47 |
-
Sunday,niedziela
|
48 |
-
Monday,poniedziałek
|
49 |
-
Tuesday,wtorek
|
50 |
-
Wednesday,środa
|
51 |
-
Thursday,czwartek
|
52 |
-
Friday,piątek
|
53 |
-
Saturday,sobota
|
54 |
-
Sun,nie
|
55 |
-
Mon,pon
|
56 |
-
Tue,wt
|
57 |
-
Wed,śr
|
58 |
-
Thu,czw
|
59 |
-
Fri,pt
|
60 |
-
Sat,sob
|
61 |
-
"Please wait...","Proszę czekać..."
|
62 |
-
Type,Typ
|
63 |
-
"Previous Post","Poprzedni wpis"
|
64 |
-
"Next Post","Następny wpis"
|
65 |
-
"Protected: %s","Zabezpieczony: %s"
|
66 |
-
Home,"Strona główna"
|
67 |
-
Published,Opublikowano
|
68 |
-
"An unidentified error has occurred.","Wystąpił niezidentyfikowany błąd."
|
69 |
-
of,z
|
70 |
-
Plugin,Wtyczkę
|
71 |
-
Website,"Witryna internetowa"
|
72 |
-
"Sorry, you must be logged in to post a comment.","Przepraszamy, musisz się zalogować, aby móc napisać komentarz."
|
73 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform.","Ta strona jest oparta na WordPressie — nowoczesnej, semantycznej, osobistej platformie publikacyjnej."
|
74 |
-
"No Comments","Brak komentarzy"
|
75 |
-
"1 Comment","1 komentarz"
|
76 |
-
"%s Comments","%s komentarzy"
|
77 |
-
"Your comment is awaiting moderation.","Twój komentarz oczekuje na moderację."
|
78 |
-
"%s at %s","%s o %s"
|
79 |
-
"Leave a Reply","Dodaj komentarz"
|
80 |
-
Author,Autor
|
81 |
-
Comment,Komentarz
|
82 |
-
Submit,Wyślij
|
83 |
-
"Recent Comments","Najnowsze komentarze"
|
84 |
-
Reply,Odpowiedz
|
85 |
-
Archives,Archiwa
|
86 |
-
Password,Hasło
|
87 |
-
Add,Dodaj
|
88 |
-
Search,Szukaj
|
89 |
-
Links,Odnośniki
|
90 |
-
Close,Zamknij
|
91 |
-
"This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.","Wpis opublikowany w %s i otagowany %s %s<span class=\"by-author\"> przez %s</span>."
|
92 |
-
"This entry was posted in %s on %s<span class=\"by-author\"> by %s</span>.","Ten wpis został opublikowany w %s dnia %s, <span class=\"by-author\">przez %s</span>."
|
93 |
-
"This entry was posted on %s<span class=\"by-author\"> by %s</span>.","Ten wpis został opublikowany dnia %s, <span class=\"by-author\">przez %s</span>."
|
94 |
-
"One thought on “%s”","Jedna myśl nt. „%s”"
|
95 |
-
"%s thoughts on “%s”","%s myśli nt. „%s”"
|
96 |
-
"Daily Archives: %s","Dzienne archiwum: %s"
|
97 |
-
"Monthly Archives: %s","Miesięczne archiwum: %s"
|
98 |
-
"Continue reading <span class=\"meta-nav\">→</span>","Czytaj dalej <span class=\"meta-nav\">→</span>"
|
99 |
-
"You have version %s installed. Update to %s.","Używasz wersji %s. Zaktualizuj do wersji %s."
|
100 |
-
"Update to version %s","Zaktualizuj do wersji %s"
|
101 |
-
"Install %s","Zainstaluj „%s”"
|
102 |
-
Position,Położenie
|
103 |
-
"Default Template","Domyślny szablon"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/pt_BR/Fishpig_Wordpress.csv
DELETED
@@ -1,99 +0,0 @@
|
|
1 |
-
Path,Caminho
|
2 |
-
Author,Autor
|
3 |
-
Type,Tipo
|
4 |
-
Name,Nome
|
5 |
-
"Previous Post","Post anterior"
|
6 |
-
"Next Post","Post seguinte"
|
7 |
-
"Protected: %s","Protegido: %s"
|
8 |
-
Home,Início
|
9 |
-
Submit,Enviar
|
10 |
-
Published,Publicado
|
11 |
-
Pages,Páginas
|
12 |
-
"Search Posts","Pesquisar posts"
|
13 |
-
Image,Imagem
|
14 |
-
"An unidentified error has occurred.","Ocorreu um erro não identificado."
|
15 |
-
of,de
|
16 |
-
Add,Adicionar
|
17 |
-
"No results found.","Nenhum resultado encontrado."
|
18 |
-
Categories,Categorias
|
19 |
-
"Leave a comment","Deixe um comentário"
|
20 |
-
"Sorry, you must be logged in to post a comment.","Você precisa fazer login para publicar um comentário."
|
21 |
-
"Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>.","O URL inicial de seu WordPress %s é inválido. Corrija <a href=\"%s\">opção inicial</a>."
|
22 |
-
Search,Pesquisar
|
23 |
-
"%s Comments","%s Comentários"
|
24 |
-
"No Comments","Nenhum Comentário"
|
25 |