diff --git a/docs/NEWS b/docs/NEWS index e712fd56..6b64436f 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -3,6 +3,10 @@ Version 1.2 () ------------------------------------------------------------------------ + * Improve WP importer by only fetching real posts (attachments/static + only optional) and splitting a post into extended/normal entry. + Thanks to jtb! + * Update Spartacus plugin to allow configuring whether to fetch Themes or Plugins, or only one/none of them (garvinhicking) diff --git a/include/admin/importers/wordpress.inc.php b/include/admin/importers/wordpress.inc.php index f65f87ad..3fbbcfab 100644 --- a/include/admin/importers/wordpress.inc.php +++ b/include/admin/importers/wordpress.inc.php @@ -48,7 +48,13 @@ class Serendipity_Import_WordPress extends Serendipity_Import { array('text' => ACTIVATE_AUTODISCOVERY, 'type' => 'bool', 'name' => 'autodiscovery', - 'default' => 'false') + 'default' => 'false'), + + array('text' => IMPORT_WP_PAGES, + 'type' => 'bool', + 'name' => 'import_all', + 'default' => 'false' + ) ); } @@ -164,7 +170,11 @@ class Serendipity_Import_WordPress extends Serendipity_Import { serendipity_rebuildCategoryTree(); /* Entries */ - $res = @$this->nativeQuery("SELECT * FROM {$this->data['prefix']}posts ORDER BY post_date;", $wpdb); + if (serendipity_db_bool($this->data['import_all'])) { + $res = @$this->nativeQuery("SELECT * FROM {$this->data['prefix']}posts WHERE post_status IN ('publish', 'draft') ORDER BY post_date;", $wpdb); + } else { + $res = @$this->nativeQuery("SELECT * FROM {$this->data['prefix']}posts ORDER BY post_date;", $wpdb); + } if ( !$res ) { return sprintf(COULDNT_SELECT_ENTRY_INFO, mysql_error($wpdb)); } @@ -172,11 +182,16 @@ class Serendipity_Import_WordPress extends Serendipity_Import { for ( $x=0 ; $x', $entries[$x]['post_content'], 2); + $body = $content[0]; + $extended = $content[1]; + $entry = array('title' => $this->decode($entries[$x]['post_title']), // htmlentities() is called later, so we can leave this. 'isdraft' => ($entries[$x]['post_status'] == 'publish') ? 'false' : 'true', 'allow_comments' => ($entries[$x]['comment_status'] == 'open' ) ? 'true' : 'false', 'timestamp' => strtotime($entries[$x]['post_date']), - 'body' => $this->strtr($entries[$x]['post_content'])); + 'body' => $this->strtr($body), + 'extended' => $this->strtr($extended)); foreach ( $users as $user ) { if ( $user['ID'] == $entries[$x]['post_author'] ) { diff --git a/lang/UTF-8/plugin_lang.php b/lang/UTF-8/plugin_lang.php index de5433d2..b1ab8428 100644 --- a/lang/UTF-8/plugin_lang.php +++ b/lang/UTF-8/plugin_lang.php @@ -89,3 +89,4 @@ foreach($const['missing'] AS $file => $constants) { @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_bg.inc.php b/lang/UTF-8/serendipity_lang_bg.inc.php index fdbf2c80..cb982a3f 100644 --- a/lang/UTF-8/serendipity_lang_bg.inc.php +++ b/lang/UTF-8/serendipity_lang_bg.inc.php @@ -876,3 +876,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Показване само на автори с най-малко X статии'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_cn.inc.php b/lang/UTF-8/serendipity_lang_cn.inc.php index 74d4e23e..442f98d5 100644 --- a/lang/UTF-8/serendipity_lang_cn.inc.php +++ b/lang/UTF-8/serendipity_lang_cn.inc.php @@ -889,3 +889,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_cs.inc.php b/lang/UTF-8/serendipity_lang_cs.inc.php index d3c708b4..8cfc9452 100644 --- a/lang/UTF-8/serendipity_lang_cs.inc.php +++ b/lang/UTF-8/serendipity_lang_cs.inc.php @@ -1,4 +1,4 @@ - @@ -897,3 +897,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_HOOKS', 'Zakázané události'); @define('PERMISSION_FORBIDDEN_ENABLE', 'Povolit Plugin ACL pro uživatelské skupiny?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Jestliže je volba "Plugin ACL pro uživatelské skupiny" v konfiguraci povolena, můžete určit, které skupiny uživatelů mohou provádět určité pluginy/události.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_cz.inc.php b/lang/UTF-8/serendipity_lang_cz.inc.php index 519bf3f6..d37f50bc 100644 --- a/lang/UTF-8/serendipity_lang_cz.inc.php +++ b/lang/UTF-8/serendipity_lang_cz.inc.php @@ -1,4 +1,4 @@ - @@ -897,3 +897,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_HOOKS', 'Zakázané události'); @define('PERMISSION_FORBIDDEN_ENABLE', 'Povolit Plugin ACL pro uživatelské skupiny?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Jestliže je volba "Plugin ACL pro uživatelské skupiny" v konfiguraci povolena, můžete určit, které skupiny uživatelů mohou provádět určité pluginy/události.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_da.inc.php b/lang/UTF-8/serendipity_lang_da.inc.php index a5a9d2fc..ed60c3d3 100644 --- a/lang/UTF-8/serendipity_lang_da.inc.php +++ b/lang/UTF-8/serendipity_lang_da.inc.php @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Mulighed for at bestemme hvilke grupper der må anvende hvilke plugins.'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_de.inc.php b/lang/UTF-8/serendipity_lang_de.inc.php index 0a37b078..0d78b6d4 100644 --- a/lang/UTF-8/serendipity_lang_de.inc.php +++ b/lang/UTF-8/serendipity_lang_de.inc.php @@ -884,3 +884,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Fügen Sie diesen Link als Lesezeichen/Favoriten hinzu. Dann können Sie dieses Lesezeichen auf jeder beliebigen Seite benutzen um so sofort in ihr Serendipity-Blog zu gelangen.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_en.inc.php b/lang/UTF-8/serendipity_lang_en.inc.php index dc4aff24..c1804ef8 100644 --- a/lang/UTF-8/serendipity_lang_en.inc.php +++ b/lang/UTF-8/serendipity_lang_en.inc.php @@ -885,3 +885,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_es.inc.php b/lang/UTF-8/serendipity_lang_es.inc.php index adf38fb8..8e882b64 100644 --- a/lang/UTF-8/serendipity_lang_es.inc.php +++ b/lang/UTF-8/serendipity_lang_es.inc.php @@ -905,3 +905,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ?? @define('PLUGIN_AUTHORS_MINCOUNT', 'Sólo mostrar aquellos autores con al menos X artículos'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_fa.inc.php b/lang/UTF-8/serendipity_lang_fa.inc.php index 8d9a57c6..4b6370fb 100644 --- a/lang/UTF-8/serendipity_lang_fa.inc.php +++ b/lang/UTF-8/serendipity_lang_fa.inc.php @@ -889,3 +889,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'به نویسندگان حداقل X مطلب نشان داده شود'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_fi.inc.php b/lang/UTF-8/serendipity_lang_fi.inc.php index d050f983..867f117a 100644 --- a/lang/UTF-8/serendipity_lang_fi.inc.php +++ b/lang/UTF-8/serendipity_lang_fi.inc.php @@ -887,3 +887,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_fr.inc.php b/lang/UTF-8/serendipity_lang_fr.inc.php index 1d0f28a2..39d2f742 100644 --- a/lang/UTF-8/serendipity_lang_fr.inc.php +++ b/lang/UTF-8/serendipity_lang_fr.inc.php @@ -894,3 +894,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_hu.inc.php b/lang/UTF-8/serendipity_lang_hu.inc.php index 397a190b..1e9d72cb 100644 --- a/lang/UTF-8/serendipity_lang_hu.inc.php +++ b/lang/UTF-8/serendipity_lang_hu.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_is.inc.php b/lang/UTF-8/serendipity_lang_is.inc.php index 284d64fe..22c0de8e 100644 --- a/lang/UTF-8/serendipity_lang_is.inc.php +++ b/lang/UTF-8/serendipity_lang_is.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_it.inc.php b/lang/UTF-8/serendipity_lang_it.inc.php index 114df946..b0aac4fc 100644 --- a/lang/UTF-8/serendipity_lang_it.inc.php +++ b/lang/UTF-8/serendipity_lang_it.inc.php @@ -891,3 +891,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_ja.inc.php b/lang/UTF-8/serendipity_lang_ja.inc.php index 3e2cb556..fd9d1b95 100644 --- a/lang/UTF-8/serendipity_lang_ja.inc.php +++ b/lang/UTF-8/serendipity_lang_ja.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_ko.inc.php b/lang/UTF-8/serendipity_lang_ko.inc.php index d5719787..7236923e 100644 --- a/lang/UTF-8/serendipity_lang_ko.inc.php +++ b/lang/UTF-8/serendipity_lang_ko.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_nl.inc.php b/lang/UTF-8/serendipity_lang_nl.inc.php index f0bf2917..7cfcea05 100644 --- a/lang/UTF-8/serendipity_lang_nl.inc.php +++ b/lang/UTF-8/serendipity_lang_nl.inc.php @@ -1,4 +1,4 @@ - @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_no.inc.php b/lang/UTF-8/serendipity_lang_no.inc.php index d147b0be..f90c3e0b 100644 --- a/lang/UTF-8/serendipity_lang_no.inc.php +++ b/lang/UTF-8/serendipity_lang_no.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_pl.inc.php b/lang/UTF-8/serendipity_lang_pl.inc.php index a6269c77..02289dd2 100644 --- a/lang/UTF-8/serendipity_lang_pl.inc.php +++ b/lang/UTF-8/serendipity_lang_pl.inc.php @@ -1,4 +1,4 @@ - @@ -890,4 +890,5 @@ $i18n_unknown = 'tw'; @define('DELETE_SELECTED_ENTRIES', '刪除選擇的文章'); @define('PLUGIN_AUTHORS_MINCOUNT', '顯示多於 X 文章的作者'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', '書籤'); -@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', '將這個連結設為書籤可以讓您快速的進入網誌。'); \ No newline at end of file +@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', '將這個連結設為書籤可以讓您快速的進入網誌。'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_tr.inc.php b/lang/UTF-8/serendipity_lang_tr.inc.php index a2132584..d6a0f6dc 100644 --- a/lang/UTF-8/serendipity_lang_tr.inc.php +++ b/lang/UTF-8/serendipity_lang_tr.inc.php @@ -891,3 +891,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_tw.inc.php b/lang/UTF-8/serendipity_lang_tw.inc.php index 6a1ed860..a5c32261 100644 --- a/lang/UTF-8/serendipity_lang_tw.inc.php +++ b/lang/UTF-8/serendipity_lang_tw.inc.php @@ -1,4 +1,4 @@ - @@ -891,4 +891,4 @@ $i18n_unknown = 'tw'; @define('DELETE_SELECTED_ENTRIES', '刪除選擇的文章'); @define('PLUGIN_AUTHORS_MINCOUNT', '顯示多於 X 文章的作者'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', '書籤'); -@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', '將這個連結設為書籤可以讓您快速的進入網誌。'); \ No newline at end of file +@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', '將這個連結設為書籤可以讓您快速的進入網誌。');@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/UTF-8/serendipity_lang_zh.inc.php b/lang/UTF-8/serendipity_lang_zh.inc.php index c246a7c3..db77229f 100644 --- a/lang/UTF-8/serendipity_lang_zh.inc.php +++ b/lang/UTF-8/serendipity_lang_zh.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/addlang.txt b/lang/addlang.txt index 917f8ec6..1046322d 100644 --- a/lang/addlang.txt +++ b/lang/addlang.txt @@ -1,2 +1 @@ -@define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); -@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/plugin_lang.php b/lang/plugin_lang.php index de5433d2..b1ab8428 100644 --- a/lang/plugin_lang.php +++ b/lang/plugin_lang.php @@ -89,3 +89,4 @@ foreach($const['missing'] AS $file => $constants) { @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index f8ca2e2d..b04b8f59 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -876,3 +876,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', ' - X '); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index ad14afa1..146176db 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -889,3 +889,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index 9e4c4f91..73fe97e2 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -897,3 +897,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_HOOKS', 'Zakzan udlosti'); @define('PERMISSION_FORBIDDEN_ENABLE', 'Povolit Plugin ACL pro uivatelsk skupiny?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Jestlie je volba "Plugin ACL pro uivatelsk skupiny" v konfiguraci povolena, mete urit, kter skupiny uivatel mohou provdt urit pluginy/udlosti.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index af7c378a..1792b226 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -897,3 +897,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_HOOKS', 'Zakzan udlosti'); @define('PERMISSION_FORBIDDEN_ENABLE', 'Povolit Plugin ACL pro uivatelsk skupiny?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Jestlie je volba "Plugin ACL pro uivatelsk skupiny" v konfiguraci povolena, mete urit, kter skupiny uivatel mohou provdt urit pluginy/udlosti.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 68ea804b..4c2cd6e7 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Mulighed for at bestemme hvilke grupper der m anvende hvilke plugins.'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index 3132eca2..8b59b5a5 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -884,3 +884,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Fgen Sie diesen Link als Lesezeichen/Favoriten hinzu. Dann knnen Sie dieses Lesezeichen auf jeder beliebigen Seite benutzen um so sofort in ihr Serendipity-Blog zu gelangen.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index 6efa25eb..96ac0682 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -885,3 +885,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index f93d3fa9..c05ae594 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -905,3 +905,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ?? @define('PLUGIN_AUTHORS_MINCOUNT', 'Slo mostrar aquellos autores con al menos X artculos'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index 2b50329a..640af236 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -889,3 +889,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'به نویسندگان حداقل X مطلب نشان داده شود'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index a275e91c..24ddcf34 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -887,3 +887,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index 895ff974..af884bae 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -894,3 +894,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_hu.inc.php b/lang/serendipity_lang_hu.inc.php index a1b5881d..a0fe3597 100644 --- a/lang/serendipity_lang_hu.inc.php +++ b/lang/serendipity_lang_hu.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index ba6e020b..078d9143 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index 47a52281..adc2c3d3 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -891,3 +891,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index f0771f84..5b3bdf68 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index 8ce9bdc0..14d28c33 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index 8b6eb4bd..588da5f2 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index 90a28695..ffd3b788 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -890,3 +890,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_pl.inc.php b/lang/serendipity_lang_pl.inc.php index 7c477b95..36fab6b0 100644 --- a/lang/serendipity_lang_pl.inc.php +++ b/lang/serendipity_lang_pl.inc.php @@ -885,3 +885,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Poka tylko autorw majcych co najmniej X wpisw'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark (dodaj do Ulubionych) ten link i uyj na dowolnej stronie, o ktrej chcesz blogowa, by szybko dosta si do swojego bloga.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index b42d637c..058a1950 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -892,3 +892,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_pt_PT.inc.php b/lang/serendipity_lang_pt_PT.inc.php index 8288b55b..8446abf0 100644 --- a/lang/serendipity_lang_pt_PT.inc.php +++ b/lang/serendipity_lang_pt_PT.inc.php @@ -899,3 +899,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Mostar apenas Autores com um mnimo de X artigos'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Marque esta ligao e use-a em qualquer pgina em que quiser blogar para aceder rapidamente ao seu blogue Serendipity.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 02992510..378c3bba 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index f9ad5afa..5f54150c 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -891,3 +891,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_sa.inc.php b/lang/serendipity_lang_sa.inc.php index 025a34eb..e2b602fe 100644 --- a/lang/serendipity_lang_sa.inc.php +++ b/lang/serendipity_lang_sa.inc.php @@ -806,3 +806,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_se.inc.php b/lang/serendipity_lang_se.inc.php index a08ea989..eff3609e 100644 --- a/lang/serendipity_lang_se.inc.php +++ b/lang/serendipity_lang_se.inc.php @@ -887,3 +887,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_ta.inc.php b/lang/serendipity_lang_ta.inc.php index 7decd22a..b8aaeb2a 100644 --- a/lang/serendipity_lang_ta.inc.php +++ b/lang/serendipity_lang_ta.inc.php @@ -887,3 +887,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index e6ad229b..162effec 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -891,3 +891,4 @@ $i18n_unknown = 'tw'; @define('PLUGIN_AUTHORS_MINCOUNT', '顯示多於 X 文章的作者'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', '書籤'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', '將這個連結設為書籤可以讓您快速的進入網誌。'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_tr.inc.php b/lang/serendipity_lang_tr.inc.php index a2132584..d6a0f6dc 100644 --- a/lang/serendipity_lang_tr.inc.php +++ b/lang/serendipity_lang_tr.inc.php @@ -891,3 +891,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index e8266af8..4fd6bca6 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -891,4 +891,4 @@ $i18n_unknown = 'tw'; @define('DELETE_SELECTED_ENTRIES', 'Rܪ峹'); @define('PLUGIN_AUTHORS_MINCOUNT', 'ܦh X 峹@'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', ''); -@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Noӳs]ҥiHzֳtiJxC'); \ No newline at end of file +@define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Noӳs]ҥiHzֳtiJxC');@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?'); diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index 1f6bd1a1..50e3cbb7 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -888,3 +888,4 @@ @define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET', 'Bookmarklet'); @define('FURTHER_LINKS_S9Y_BOOKMARKLET_DESC', 'Bookmark this link and then use it on any page you want to blog about to quickly access your Serendipity Blog.'); +@define('IMPORT_WP_PAGES', 'Also fetch attachments and staticpages as normal blog entries?');