--- a/wp/wp-links-opml.php Tue Jun 09 11:14:17 2015 +0000
+++ b/wp/wp-links-opml.php Mon Oct 14 17:39:30 2019 +0200
@@ -26,7 +26,10 @@
?>
<opml version="1.0">
<head>
- <title><?php printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) ); ?></title>
+ <title><?php
+ /* translators: 1: Site name */
+ printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) );
+ ?></title>
<dateCreated><?php echo gmdate("D, d M Y H:i:s"); ?> GMT</dateCreated>
<?php
/**
@@ -46,7 +49,7 @@
foreach ( (array)$cats as $cat ) :
/**
- * Filter the OPML outline link category name.
+ * Filters the OPML outline link category name.
*
* @since 2.2.0
*
@@ -60,7 +63,7 @@
$bookmarks = get_bookmarks(array("category" => $cat->term_id));
foreach ( (array)$bookmarks as $bookmark ) :
/**
- * Filter the OPML outline link title text.
+ * Filters the OPML outline link title text.
*
* @since 2.2.0
*