Make punctuation consistent. Props hervada and lloydbudd. fixes #5880
git-svn-id: http://svn.automattic.com/wordpress/trunk@7072 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eaf3da1a2c
commit
d91f8ed06e
|
@ -837,7 +837,7 @@ thead td { font-weight: bold; }
|
|||
|
||||
$blogger_import = new Blogger_Import();
|
||||
|
||||
register_importer('blogger', __('Blogger'), __('Import posts, comments, and users from a Blogger blog'), array ($blogger_import, 'start'));
|
||||
register_importer('blogger', __('Blogger'), __('Import posts, comments, and users from a Blogger blog.'), array ($blogger_import, 'start'));
|
||||
|
||||
class AtomEntry {
|
||||
var $links = array();
|
||||
|
|
|
@ -197,5 +197,5 @@ class BW_Import {
|
|||
|
||||
$blogware_import = new BW_Import();
|
||||
|
||||
register_importer('blogware', __('Blogware'), __('Import posts from Blogware'), array ($blogware_import, 'dispatch'));
|
||||
register_importer('blogware', __('Blogware'), __('Import posts from Blogware.'), array ($blogware_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -742,5 +742,5 @@ class Dotclear_Import {
|
|||
}
|
||||
|
||||
$dc_import = new Dotclear_Import();
|
||||
register_importer('dotclear', __('DotClear'), __('Import categories, users, posts, comments, and links from a DotClear blog'), array ($dc_import, 'dispatch'));
|
||||
register_importer('dotclear', __('DotClear'), __('Import categories, users, posts, comments, and links from a DotClear blog.'), array ($dc_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -316,5 +316,5 @@ class GM_Import {
|
|||
|
||||
$gm_import = new GM_Import();
|
||||
|
||||
register_importer('greymatter', __('GreyMatter'), __('Import users, posts, and comments from a Greymatter blog'), array ($gm_import, 'dispatch'));
|
||||
register_importer('greymatter', __('GreyMatter'), __('Import users, posts, and comments from a Greymatter blog.'), array ($gm_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -175,5 +175,5 @@ class LJ_Import {
|
|||
|
||||
$livejournal_import = new LJ_Import();
|
||||
|
||||
register_importer('livejournal', __('LiveJournal'), __('Import posts from a LiveJournal XML export file'), array ($livejournal_import, 'dispatch'));
|
||||
register_importer('livejournal', __('LiveJournal'), __('Import posts from a LiveJournal XML export file.'), array ($livejournal_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -454,5 +454,5 @@ class MT_Import {
|
|||
|
||||
$mt_import = new MT_Import();
|
||||
|
||||
register_importer('mt', __('Movable Type and TypePad'), __('Import posts and comments from a Movable Type or Typepad blog'), array ($mt_import, 'dispatch'));
|
||||
register_importer('mt', __('Movable Type and TypePad'), __('Import posts and comments from a Movable Type or Typepad blog.'), array ($mt_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -178,5 +178,5 @@ class RSS_Import {
|
|||
|
||||
$rss_import = new RSS_Import();
|
||||
|
||||
register_importer('rss', __('RSS'), __('Import posts from an RSS feed'), array ($rss_import, 'dispatch'));
|
||||
register_importer('rss', __('RSS'), __('Import posts from an RSS feed.'), array ($rss_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -670,5 +670,5 @@ class Textpattern_Import {
|
|||
}
|
||||
|
||||
$txp_import = new Textpattern_Import();
|
||||
register_importer('textpattern', __('Textpattern'), __('Import categories, users, posts, comments, and links from a Textpattern blog'), array ($txp_import, 'dispatch'));
|
||||
register_importer('textpattern', __('Textpattern'), __('Import categories, users, posts, comments, and links from a Textpattern blog.'), array ($txp_import, 'dispatch'));
|
||||
?>
|
||||
|
|
|
@ -740,6 +740,6 @@ class WP_Import {
|
|||
|
||||
$wp_import = new WP_Import();
|
||||
|
||||
register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, pages, and categories</strong> from a WordPress export file'), array ($wp_import, 'dispatch'));
|
||||
register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, pages, and categories</strong> from a WordPress export file.'), array ($wp_import, 'dispatch'));
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue