Version Description
- Added missed textdomains for more complete i18n
- Added translations for da_DK, en_NZ, en_PH, and en_NZ
- Updated/fixed all translation files
Download this release
Release Info
Developer | bitacre |
Plugin | Custom Meta Widget |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- customMeta.php +83 -25
- lang/customMeta.pot +31 -29
- lang/customMetaWidget-da_DK.mo +0 -0
- lang/customMetaWidget-da_DK.po +150 -0
- lang/customMetaWidget-en_AU.mo +0 -0
- lang/customMetaWidget-en_AU.po +52 -43
- lang/customMetaWidget-en_CA.mo +0 -0
- lang/customMetaWidget-en_CA.po +52 -43
- lang/customMetaWidget-en_GB.mo +0 -0
- lang/customMetaWidget-en_GB.po +52 -43
- lang/customMetaWidget-en_IE.mo +0 -0
- lang/customMetaWidget-en_IE.po +57 -44
- lang/customMetaWidget-en_NZ.mo +0 -0
- lang/customMetaWidget-en_NZ.po +150 -0
- lang/customMetaWidget-en_PH.mo +0 -0
- lang/customMetaWidget-en_PH.po +150 -0
- lang/customMetaWidget-en_US.mo +0 -0
- lang/customMetaWidget-en_US.po +150 -0
- lang/customMetaWidget-en_ZA.mo +0 -0
- lang/customMetaWidget-en_ZA.po +150 -0
- lang/customMetaWidget-es_MX.mo +0 -0
- lang/customMetaWidget-es_MX.po +161 -141
- lang/customMetaWidget.pot +150 -0
- readme.txt +23 -8
customMeta.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Custom Meta Widget
|
4 |
-
Plugin URI: http://
|
5 |
Description: Clone of the standard Meta widget with options to hide thlogin, admin, entry and comment feed, WordPress.org and /custom links.
|
6 |
-
Version: 1.4.
|
7 |
Author: bitacre
|
8 |
-
Author URI: http://
|
9 |
License: GPLv2
|
10 |
Copyright 2012 Shinra Web Holdings (http://shinraholdings.com)
|
11 |
*/
|
@@ -17,7 +17,7 @@ function customMetaWidget() {
|
|
17 |
// set widget options
|
18 |
$widget_ops = array (
|
19 |
'classname' => 'customMetaWidget',
|
20 |
-
'description' => __( 'Hide the individual log in/out, admin, feed and WordPress links
|
21 |
);
|
22 |
// extend class
|
23 |
$this->WP_Widget( 'customMetaWidget', 'Custom Meta', $widget_ops );
|
@@ -26,17 +26,75 @@ function customMetaWidget() {
|
|
26 |
// declare form options (not part of WP_Widget)
|
27 |
function get_options() {
|
28 |
$options = array (
|
29 |
-
'title' => array(
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
'
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
);
|
|
|
40 |
return $options;
|
41 |
}
|
42 |
|
@@ -63,7 +121,7 @@ function form( $instance ) {
|
|
63 |
</p>',
|
64 |
$slug,
|
65 |
$this->get_field_name( $slug ),
|
66 |
-
|
67 |
$this->get_field_id( $slug ),
|
68 |
esc_attr( $instance[$slug] ),
|
69 |
$value['before']
|
@@ -77,7 +135,7 @@ function form( $instance ) {
|
|
77 |
</p>',
|
78 |
$slug,
|
79 |
$this->get_field_name( $slug ),
|
80 |
-
|
81 |
$this->get_field_id( $slug ),
|
82 |
checked( $instance[$slug], 1, false ),
|
83 |
$value['before']
|
@@ -91,14 +149,14 @@ echo '<small>(' . __( 'An awesome way to support this free plugin!', 'customMeta
|
|
91 |
|
92 |
// 1. no link and no URL
|
93 |
if( empty( $instance['customtext']) && empty($instance['customurl'] ) )
|
94 |
-
echo '<p style="color:#
|
95 |
// 2. no link
|
96 |
elseif( empty( $instance['customtext'] ) )
|
97 |
-
echo '<p style="color:#
|
98 |
|
99 |
// 3. no url
|
100 |
elseif( empty($instance['customurl' ]) )
|
101 |
-
echo '<p style="color:#
|
102 |
}
|
103 |
}
|
104 |
|
@@ -116,13 +174,13 @@ function update( $new_instance, $old_instance) {
|
|
116 |
// ACTUAL WIDGET OUTPUT
|
117 |
function widget( $args, $instance ) {
|
118 |
extract( $args, EXTR_SKIP ); // extract arguments
|
119 |
-
$title = empty( $instance['title'] ) ? 'Meta' : apply_filters( 'widget_title', $instance['title'] ); // if no title, use default
|
120 |
|
121 |
// insert start of widget HTML comment
|
122 |
echo '
|
123 |
<!--
|
124 |
' . __( 'Plugin: Custom Meta Widget', 'customMetaWidget' ) . '
|
125 |
-
' . __( 'Plugin URL', 'customMetaWidget' ) . ': http://
|
126 |
-->
|
127 |
';
|
128 |
|
@@ -136,15 +194,15 @@ function widget( $args, $instance ) {
|
|
136 |
if( esc_attr( $instance['login'] ) ) echo '<li>' . wp_loginout( NULL, FALSE ) . '</li>'; // 2. login link
|
137 |
|
138 |
if( esc_attr( $instance['entryrss'] ) ) // 3. entries RSS link
|
139 |
-
printf( __( '%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s', 'customMetaWidget'),
|
140 |
'<li><a href="' . get_bloginfo( 'rss2_url' ) . '" title="', '">',
|
141 |
-
'<abbr title="Really Simple Syndication">',
|
142 |
'</abbr></a></li>' ); // 4. comments RSS link
|
143 |
|
144 |
if( esc_attr( $instance['commentrss'] ) )
|
145 |
printf( __( '%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s', 'customMetaWidget' ),
|
146 |
'<li><a href="' . get_bloginfo( 'comments_rss2_url' ) . '" title="', '">',
|
147 |
-
'<abbr title="Really Simple Syndication">',
|
148 |
'</abbr></a></li>' );// 4. entires RSS link
|
149 |
|
150 |
if( esc_attr( $instance['wordpress'] ) ) echo '<li><a href="http://wordpress.org/" title="' . __( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'customMetaWidget' ) . '">WordPress.org</a></li>'; // 5. wordpress.org link
|
@@ -161,7 +219,7 @@ function widget( $args, $instance ) {
|
|
161 |
}
|
162 |
|
163 |
if( esc_attr( $instance['linklove'] ) ) { // 7. link love
|
164 |
-
echo '<li><a href="http://
|
165 |
}
|
166 |
|
167 |
echo "\r\n" . '</ul>';
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Custom Meta Widget
|
4 |
+
Plugin URI: http://shinraholdings.com/plugins/custom-meta-widget
|
5 |
Description: Clone of the standard Meta widget with options to hide thlogin, admin, entry and comment feed, WordPress.org and /custom links.
|
6 |
+
Version: 1.4.1
|
7 |
Author: bitacre
|
8 |
+
Author URI: http://shinraholdings.com/
|
9 |
License: GPLv2
|
10 |
Copyright 2012 Shinra Web Holdings (http://shinraholdings.com)
|
11 |
*/
|
17 |
// set widget options
|
18 |
$widget_ops = array (
|
19 |
'classname' => 'customMetaWidget',
|
20 |
+
'description' => __( 'Hide the individual log in/out, admin, feed and WordPress links', 'customMetaWidget' )
|
21 |
);
|
22 |
// extend class
|
23 |
$this->WP_Widget( 'customMetaWidget', 'Custom Meta', $widget_ops );
|
26 |
// declare form options (not part of WP_Widget)
|
27 |
function get_options() {
|
28 |
$options = array (
|
29 |
+
'title' => array(
|
30 |
+
'slug' => 'title',
|
31 |
+
'type' => 'text',
|
32 |
+
'default' => __( 'Meta', 'customMetaWidget' ),
|
33 |
+
'label' => __( 'Title', 'customMetaWidget' ),
|
34 |
+
'before' => '' ),
|
35 |
+
|
36 |
+
'register' => array(
|
37 |
+
'slug' => 'register',
|
38 |
+
'type' => 'checkbox',
|
39 |
+
'default' => 1,
|
40 |
+
'label' => __( 'Show "Register/Admin" link?', 'customMetaWidget' ),
|
41 |
+
'before' => '' ),
|
42 |
+
|
43 |
+
'login' => array(
|
44 |
+
'slug' => 'login',
|
45 |
+
'type' => 'checkbox',
|
46 |
+
'default' => 1,
|
47 |
+
'label' => __( 'Show "Log in/out" link?', 'customMetaWidget' ),
|
48 |
+
'before' => '' ),
|
49 |
+
|
50 |
+
'entryrss' => array(
|
51 |
+
'slug' => 'entryrss',
|
52 |
+
'type' => 'checkbox',
|
53 |
+
'default' => 1,
|
54 |
+
'label' => __( 'Show "Entries RSS" link?', 'customMetaWidget' ),
|
55 |
+
'before' => '' ),
|
56 |
+
|
57 |
+
'commentrss' => array(
|
58 |
+
'slug' => 'commentrss',
|
59 |
+
'type' => 'checkbox',
|
60 |
+
'default' => 1,
|
61 |
+
'label' => __( 'Show "Comments RSS" link?', 'customMetaWidget' ),
|
62 |
+
'before' => '' ),
|
63 |
+
|
64 |
+
'wordpress' => array(
|
65 |
+
'slug' => 'wordpress',
|
66 |
+
'type' => 'checkbox',
|
67 |
+
'default' => 1,
|
68 |
+
'label' => __( 'Show "WordPress.org" link?', 'customMetaWidget' ),
|
69 |
+
'before' => '' ),
|
70 |
+
'showcustom' => array(
|
71 |
+
'slug' => 'showcustom',
|
72 |
+
'type' => 'checkbox',
|
73 |
+
'default' => 0,
|
74 |
+
'label' => __( 'Show the custom link?', 'customMetaWidget' ),
|
75 |
+
'before' => '' ),
|
76 |
+
'customurl' => array(
|
77 |
+
'slug' => 'customurl',
|
78 |
+
'type' => 'text',
|
79 |
+
'default' => '',
|
80 |
+
'label' => __( 'URL', 'customMetaWidget' ),
|
81 |
+
'before' => ' style="margin-left:20px;"' ),
|
82 |
+
|
83 |
+
'customtext' => array(
|
84 |
+
'slug' => 'customtext',
|
85 |
+
'type' => 'text',
|
86 |
+
'default' => '',
|
87 |
+
'label' => __( 'Text', 'customMetaWidget' ),
|
88 |
+
'before' => ' style="margin-left:20px;"' ),
|
89 |
+
|
90 |
+
'linklove' => array(
|
91 |
+
'slug' => 'linklove',
|
92 |
+
'type' => 'checkbox',
|
93 |
+
'default' => 0,
|
94 |
+
'label' => __( 'Show Plugin link?', 'customMetaWidget' ),
|
95 |
+
'before' => '' )
|
96 |
);
|
97 |
+
|
98 |
return $options;
|
99 |
}
|
100 |
|
121 |
</p>',
|
122 |
$slug,
|
123 |
$this->get_field_name( $slug ),
|
124 |
+
$value['label'],
|
125 |
$this->get_field_id( $slug ),
|
126 |
esc_attr( $instance[$slug] ),
|
127 |
$value['before']
|
135 |
</p>',
|
136 |
$slug,
|
137 |
$this->get_field_name( $slug ),
|
138 |
+
$value['label'],
|
139 |
$this->get_field_id( $slug ),
|
140 |
checked( $instance[$slug], 1, false ),
|
141 |
$value['before']
|
149 |
|
150 |
// 1. no link and no URL
|
151 |
if( empty( $instance['customtext']) && empty($instance['customurl'] ) )
|
152 |
+
echo '<p style="color:#f00; font-weight:bold;" >' . __( 'You have a custom link with no URL or text!', 'customMetaWidget' ) . '</p>';
|
153 |
// 2. no link
|
154 |
elseif( empty( $instance['customtext'] ) )
|
155 |
+
echo '<p style="color:#f00; font-weight:bold;" >' . __( 'You have a custom link with no text!', 'customMetaWidget' ) . '</p>';
|
156 |
|
157 |
// 3. no url
|
158 |
elseif( empty($instance['customurl' ]) )
|
159 |
+
echo '<p style="color:#f00; font-weight:bold;" >' . __( 'You have a custom link with no URL!', 'customMetaWidget' ) . '</p>';
|
160 |
}
|
161 |
}
|
162 |
|
174 |
// ACTUAL WIDGET OUTPUT
|
175 |
function widget( $args, $instance ) {
|
176 |
extract( $args, EXTR_SKIP ); // extract arguments
|
177 |
+
$title = empty( $instance['title'] ) ? __( 'Meta', 'customMetaWidget' ) : apply_filters( 'widget_title', $instance['title'] ); // if no title, use default
|
178 |
|
179 |
// insert start of widget HTML comment
|
180 |
echo '
|
181 |
<!--
|
182 |
' . __( 'Plugin: Custom Meta Widget', 'customMetaWidget' ) . '
|
183 |
+
' . __( 'Plugin URL', 'customMetaWidget' ) . ': http://shinraholdings.com/plugins/custom-meta-widget
|
184 |
-->
|
185 |
';
|
186 |
|
194 |
if( esc_attr( $instance['login'] ) ) echo '<li>' . wp_loginout( NULL, FALSE ) . '</li>'; // 2. login link
|
195 |
|
196 |
if( esc_attr( $instance['entryrss'] ) ) // 3. entries RSS link
|
197 |
+
printf( __( '%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s', 'customMetaWidget' ),
|
198 |
'<li><a href="' . get_bloginfo( 'rss2_url' ) . '" title="', '">',
|
199 |
+
'<abbr title="' . __( 'Really Simple Syndication', 'customMetaWidget' ) . '">',
|
200 |
'</abbr></a></li>' ); // 4. comments RSS link
|
201 |
|
202 |
if( esc_attr( $instance['commentrss'] ) )
|
203 |
printf( __( '%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s', 'customMetaWidget' ),
|
204 |
'<li><a href="' . get_bloginfo( 'comments_rss2_url' ) . '" title="', '">',
|
205 |
+
'<abbr title="' . __( 'Really Simple Syndication', 'customMetaWidget' ) . '">',
|
206 |
'</abbr></a></li>' );// 4. entires RSS link
|
207 |
|
208 |
if( esc_attr( $instance['wordpress'] ) ) echo '<li><a href="http://wordpress.org/" title="' . __( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'customMetaWidget' ) . '">WordPress.org</a></li>'; // 5. wordpress.org link
|
219 |
}
|
220 |
|
221 |
if( esc_attr( $instance['linklove'] ) ) { // 7. link love
|
222 |
+
echo '<li><a href="http://shinraholdings.com/plugins/custom-meta-widget" title="' . __( 'WordPress Plugin Homepage', 'customMetaWidget' ) . '">' . __( 'Custom Meta', 'customMetaWidget' ) . '</a></li>';
|
223 |
}
|
224 |
|
225 |
echo "\r\n" . '</ul>';
|
lang/customMeta.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-meta-widget\n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,103 +13,105 @@ msgstr ""
|
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
#: customMeta.php:20
|
16 |
-
msgid ""
|
17 |
-
"Clone of the standard Meta widget with options to show or hide log in/out, "
|
18 |
-
"admin, feed, WordPress/custom links."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: customMeta.php:
|
22 |
msgid "Meta"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: customMeta.php:
|
26 |
msgid "Title"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: customMeta.php:
|
30 |
msgid "Show \"Register/Admin\" link?"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: customMeta.php:
|
34 |
msgid "Show \"Log in/out\" link?"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: customMeta.php:
|
38 |
msgid "Show \"Entries RSS\" link?"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: customMeta.php:
|
42 |
msgid "Show \"Comments RSS\" link?"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: customMeta.php:
|
46 |
-
msgid "Show \"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: customMeta.php:
|
50 |
-
msgid "Show
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: customMeta.php:
|
54 |
msgid "URL"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: customMeta.php:
|
58 |
msgid "Text"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: customMeta.php:
|
62 |
msgid "Show Plugin link?"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: customMeta.php:
|
66 |
msgid "An awesome way to support this free plugin!"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: customMeta.php:
|
70 |
msgid "You have a custom link with no URL or text!"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: customMeta.php:
|
74 |
msgid "You have a custom link with no text!"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: customMeta.php:
|
78 |
msgid "You have a custom link with no URL!"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: customMeta.php:
|
82 |
msgid "Plugin: Custom Meta Widget"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: customMeta.php:
|
86 |
msgid "Plugin URL"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: customMeta.php:
|
90 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: customMeta.php:
|
|
|
|
|
|
|
|
|
94 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: customMeta.php:
|
98 |
msgid ""
|
99 |
"Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: customMeta.php:
|
103 |
msgid ""
|
104 |
"Error: \"Show Custom Link\" is checked, but either the text or URL for that "
|
105 |
"link are not specified. The link was not displayed because it would be "
|
106 |
"broken. Check the settings for your Custom Meta widget."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: customMeta.php:
|
110 |
msgid "WordPress Plugin Homepage"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: customMeta.php:
|
114 |
msgid "Custom Meta"
|
115 |
msgstr ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-meta-widget\n"
|
7 |
+
"POT-Creation-Date: 2012-08-28 14:39:17+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
#: customMeta.php:20
|
16 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
|
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: customMeta.php:32 customMeta.php:177
|
20 |
msgid "Meta"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: customMeta.php:33
|
24 |
msgid "Title"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: customMeta.php:40
|
28 |
msgid "Show \"Register/Admin\" link?"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: customMeta.php:47
|
32 |
msgid "Show \"Log in/out\" link?"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: customMeta.php:54
|
36 |
msgid "Show \"Entries RSS\" link?"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: customMeta.php:61
|
40 |
msgid "Show \"Comments RSS\" link?"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: customMeta.php:68
|
44 |
+
msgid "Show \"WordPress.org\" link?"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: customMeta.php:74
|
48 |
+
msgid "Show the custom link?"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: customMeta.php:80
|
52 |
msgid "URL"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: customMeta.php:87
|
56 |
msgid "Text"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: customMeta.php:94
|
60 |
msgid "Show Plugin link?"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: customMeta.php:145
|
64 |
msgid "An awesome way to support this free plugin!"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: customMeta.php:152
|
68 |
msgid "You have a custom link with no URL or text!"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: customMeta.php:155
|
72 |
msgid "You have a custom link with no text!"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: customMeta.php:159
|
76 |
msgid "You have a custom link with no URL!"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: customMeta.php:182
|
80 |
msgid "Plugin: Custom Meta Widget"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: customMeta.php:183
|
84 |
msgid "Plugin URL"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: customMeta.php:197
|
88 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: customMeta.php:199 customMeta.php:205
|
92 |
+
msgid "Really Simple Syndication"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: customMeta.php:203
|
96 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: customMeta.php:208
|
100 |
msgid ""
|
101 |
"Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: customMeta.php:217
|
105 |
msgid ""
|
106 |
"Error: \"Show Custom Link\" is checked, but either the text or URL for that "
|
107 |
"link are not specified. The link was not displayed because it would be "
|
108 |
"broken. Check the settings for your Custom Meta widget."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: customMeta.php:222
|
112 |
msgid "WordPress Plugin Homepage"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: customMeta.php:222
|
116 |
msgid "Custom Meta"
|
117 |
msgstr ""
|
lang/customMetaWidget-da_DK.mo
ADDED
Binary file
|
lang/customMetaWidget-da_DK.po
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 23:59+0100\n"
|
7 |
+
"Last-Translator: Kris Thomsen <mail@kristhomsen.dk>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
15 |
+
"X-Textdomain-Support: yes\n"
|
16 |
+
"Language: da_DK\n"
|
17 |
+
"X-Poedit-Language: Danish\n"
|
18 |
+
"X-Poedit-Country: DENMARK\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
# @ customMetaWidget
|
23 |
+
#: customMeta.php:32
|
24 |
+
#: customMeta.php:177
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
# @ customMetaWidget
|
29 |
+
#: customMeta.php:33
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Titel"
|
32 |
+
|
33 |
+
# @ customMetaWidget
|
34 |
+
#: customMeta.php:40
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Vis \"Registrér/Admin\"-link?"
|
37 |
+
|
38 |
+
# @ customMetaWidget
|
39 |
+
#: customMeta.php:47
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Vis \"Log ind/ud\"-link?"
|
42 |
+
|
43 |
+
# @ customMetaWidget
|
44 |
+
#: customMeta.php:54
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Vis \"Indlæg RSS\"-link?"
|
47 |
+
|
48 |
+
# @ customMetaWidget
|
49 |
+
#: customMeta.php:61
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Vis \"Kommentar RSS\"-link?"
|
52 |
+
|
53 |
+
# @ customMetaWidget
|
54 |
+
#: customMeta.php:80
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
# @ customMetaWidget
|
59 |
+
#: customMeta.php:87
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Tekst"
|
62 |
+
|
63 |
+
# @ customMetaWidget
|
64 |
+
#: customMeta.php:94
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Vis plugin-link?"
|
67 |
+
|
68 |
+
# @ customMetaWidget
|
69 |
+
#: customMeta.php:145
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "En fantastisk måde at støtte dette gratis plugin!"
|
72 |
+
|
73 |
+
# @ customMetaWidget
|
74 |
+
#: customMeta.php:152
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "Du har et tilpasset link uden url eller tekst!"
|
77 |
+
|
78 |
+
# @ customMetaWidget
|
79 |
+
#: customMeta.php:155
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "Du har et tilpasset link uden tekst!"
|
82 |
+
|
83 |
+
# @ customMetaWidget
|
84 |
+
#: customMeta.php:159
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "Du har et tilpasset link uden url!"
|
87 |
+
|
88 |
+
# @ customMetaWidget
|
89 |
+
#: customMeta.php:182
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
# @ customMetaWidget
|
94 |
+
#: customMeta.php:183
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin-url"
|
97 |
+
|
98 |
+
# @ customMetaWidget
|
99 |
+
#: customMeta.php:197
|
100 |
+
#, php-format
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndikér denne side med RSS 2.0%2$sIndlæg %3$sRSS%4$s"
|
103 |
+
|
104 |
+
# @ customMetaWidget
|
105 |
+
#: customMeta.php:203
|
106 |
+
#, php-format
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndikér denne side med RSS 2.0%2$sKommentarer %3$sRSS%4$s"
|
109 |
+
|
110 |
+
# @ customMetaWidget
|
111 |
+
#: customMeta.php:208
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Drevet af WordPress, top-moderne semantisk personlig udgivelsesplatform."
|
114 |
+
|
115 |
+
# @ customMetaWidget
|
116 |
+
#: customMeta.php:217
|
117 |
+
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
+
msgstr "Fejl: \"Vis tilpasset link\" er krydset af, men enten er teksten eller url'en for det link ikke angivet. Linket blev ikke vist fordi det kan være i stykket. Kontrollér indstillingerne for din Custom Meta-widget."
|
119 |
+
|
120 |
+
# @ customMetaWidget
|
121 |
+
#: customMeta.php:222
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress-pluginhjemmeside"
|
124 |
+
|
125 |
+
# @ customMetaWidget
|
126 |
+
#: customMeta.php:222
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Tilpasset Meta"
|
129 |
+
|
130 |
+
# @ customMetaWidget
|
131 |
+
#: customMeta.php:68
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Vis \"WordPress.org\"-link?"
|
134 |
+
|
135 |
+
# @ customMetaWidget
|
136 |
+
#: customMeta.php:74
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Vis det tilpassede link?"
|
139 |
+
|
140 |
+
# @ customMetaWidget
|
141 |
+
#: customMeta.php:199
|
142 |
+
#: customMeta.php:205
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Virkelig simpel syndikering"
|
145 |
+
|
146 |
+
# @ customMetaWidget
|
147 |
+
#: customMeta.php:20
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Skjul de individuelle log ind-/ud-, admin-, feed- og WordPress-links"
|
150 |
+
|
lang/customMetaWidget-en_AU.mo
CHANGED
Binary file
|
lang/customMetaWidget-en_AU.po
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"Report-Msgid-Bugs-To: http://
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: \n"
|
14 |
-
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
@@ -19,123 +19,132 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: customMeta.php:
|
23 |
-
|
24 |
-
msgid "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
25 |
-
msgstr "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
26 |
-
|
27 |
-
#: customMeta.php:30
|
28 |
#@ customMetaWidget
|
29 |
msgid "Meta"
|
30 |
msgstr "Meta"
|
31 |
|
32 |
-
#: customMeta.php:
|
33 |
#@ customMetaWidget
|
34 |
msgid "Title"
|
35 |
msgstr "Title"
|
36 |
|
37 |
-
#: customMeta.php:
|
38 |
#@ customMetaWidget
|
39 |
msgid "Show \"Register/Admin\" link?"
|
40 |
msgstr "Show \"Register/Admin\" link?"
|
41 |
|
42 |
-
#: customMeta.php:
|
43 |
#@ customMetaWidget
|
44 |
msgid "Show \"Log in/out\" link?"
|
45 |
msgstr "Show \"Log in/out\" link?"
|
46 |
|
47 |
-
#: customMeta.php:
|
48 |
#@ customMetaWidget
|
49 |
msgid "Show \"Entries RSS\" link?"
|
50 |
msgstr "Show \"Entries RSS\" link?"
|
51 |
|
52 |
-
#: customMeta.php:
|
53 |
#@ customMetaWidget
|
54 |
msgid "Show \"Comments RSS\" link?"
|
55 |
msgstr "Show \"Comments RSS\" link?"
|
56 |
|
57 |
-
#: customMeta.php:
|
58 |
-
#@ customMetaWidget
|
59 |
-
msgid "Show \"Wordpress\" link?"
|
60 |
-
msgstr "Show \"Wordpress\" link?"
|
61 |
-
|
62 |
-
#: customMeta.php:81
|
63 |
-
#@ customMetaWidget
|
64 |
-
msgid "Show Custom link?"
|
65 |
-
msgstr "Show Custom link?"
|
66 |
-
|
67 |
-
#: customMeta.php:85
|
68 |
#@ customMetaWidget
|
69 |
msgid "URL"
|
70 |
msgstr "URL"
|
71 |
|
72 |
-
#: customMeta.php:
|
73 |
#@ customMetaWidget
|
74 |
msgid "Text"
|
75 |
msgstr "Text"
|
76 |
|
77 |
-
#: customMeta.php:
|
78 |
#@ customMetaWidget
|
79 |
msgid "Show Plugin link?"
|
80 |
msgstr "Show Plugin link?"
|
81 |
|
82 |
-
#: customMeta.php:
|
83 |
#@ customMetaWidget
|
84 |
msgid "An awesome way to support this free plugin!"
|
85 |
msgstr "An awesome way to support this free plugin, mate!"
|
86 |
|
87 |
-
#: customMeta.php:
|
88 |
#@ customMetaWidget
|
89 |
msgid "You have a custom link with no URL or text!"
|
90 |
msgstr "You have a custom link with no URL or text!"
|
91 |
|
92 |
-
#: customMeta.php:
|
93 |
#@ customMetaWidget
|
94 |
msgid "You have a custom link with no text!"
|
95 |
msgstr "You have a custom link with no text!"
|
96 |
|
97 |
-
#: customMeta.php:
|
98 |
#@ customMetaWidget
|
99 |
msgid "You have a custom link with no URL!"
|
100 |
msgstr "You have a custom link with no URL!"
|
101 |
|
102 |
-
#: customMeta.php:
|
103 |
#@ customMetaWidget
|
104 |
msgid "Plugin: Custom Meta Widget"
|
105 |
msgstr "Plugin: Custom Meta Widget"
|
106 |
|
107 |
-
#: customMeta.php:
|
108 |
#@ customMetaWidget
|
109 |
msgid "Plugin URL"
|
110 |
msgstr "Plugin URL"
|
111 |
|
112 |
-
#: customMeta.php:
|
|
|
113 |
#@ customMetaWidget
|
114 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
115 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
116 |
|
117 |
-
#: customMeta.php:
|
|
|
118 |
#@ customMetaWidget
|
119 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
120 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
121 |
|
122 |
-
#: customMeta.php:
|
123 |
#@ customMetaWidget
|
124 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
125 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
126 |
|
127 |
-
#: customMeta.php:
|
128 |
#@ customMetaWidget
|
129 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
130 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
131 |
|
132 |
-
#: customMeta.php:
|
133 |
#@ customMetaWidget
|
134 |
msgid "WordPress Plugin Homepage"
|
135 |
msgstr "WordPress Plugin Homepage"
|
136 |
|
137 |
-
#: customMeta.php:
|
138 |
#@ customMetaWidget
|
139 |
msgid "Custom Meta"
|
140 |
msgstr "Custom Meta"
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:08:53+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: Australia\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
|
|
|
|
|
|
|
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
27 |
|
28 |
+
#: customMeta.php:33
|
29 |
#@ customMetaWidget
|
30 |
msgid "Title"
|
31 |
msgstr "Title"
|
32 |
|
33 |
+
#: customMeta.php:40
|
34 |
#@ customMetaWidget
|
35 |
msgid "Show \"Register/Admin\" link?"
|
36 |
msgstr "Show \"Register/Admin\" link?"
|
37 |
|
38 |
+
#: customMeta.php:47
|
39 |
#@ customMetaWidget
|
40 |
msgid "Show \"Log in/out\" link?"
|
41 |
msgstr "Show \"Log in/out\" link?"
|
42 |
|
43 |
+
#: customMeta.php:54
|
44 |
#@ customMetaWidget
|
45 |
msgid "Show \"Entries RSS\" link?"
|
46 |
msgstr "Show \"Entries RSS\" link?"
|
47 |
|
48 |
+
#: customMeta.php:61
|
49 |
#@ customMetaWidget
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
+
#: customMeta.php:80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
+
#: customMeta.php:87
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
+
#: customMeta.php:94
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
+
#: customMeta.php:145
|
69 |
#@ customMetaWidget
|
70 |
msgid "An awesome way to support this free plugin!"
|
71 |
msgstr "An awesome way to support this free plugin, mate!"
|
72 |
|
73 |
+
#: customMeta.php:152
|
74 |
#@ customMetaWidget
|
75 |
msgid "You have a custom link with no URL or text!"
|
76 |
msgstr "You have a custom link with no URL or text!"
|
77 |
|
78 |
+
#: customMeta.php:155
|
79 |
#@ customMetaWidget
|
80 |
msgid "You have a custom link with no text!"
|
81 |
msgstr "You have a custom link with no text!"
|
82 |
|
83 |
+
#: customMeta.php:159
|
84 |
#@ customMetaWidget
|
85 |
msgid "You have a custom link with no URL!"
|
86 |
msgstr "You have a custom link with no URL!"
|
87 |
|
88 |
+
#: customMeta.php:182
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
+
#: customMeta.php:183
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
#@ customMetaWidget
|
101 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
#@ customMetaWidget
|
107 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
|
110 |
+
#: customMeta.php:208
|
111 |
#@ customMetaWidget
|
112 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
|
115 |
+
#: customMeta.php:217
|
116 |
#@ customMetaWidget
|
117 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
|
120 |
+
#: customMeta.php:222
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
+
#: customMeta.php:222
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
129 |
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_CA.mo
CHANGED
Binary file
|
lang/customMetaWidget-en_CA.po
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"Report-Msgid-Bugs-To: http://
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: \n"
|
14 |
-
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
@@ -19,123 +19,132 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: customMeta.php:
|
23 |
-
|
24 |
-
msgid "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
25 |
-
msgstr "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
26 |
-
|
27 |
-
#: customMeta.php:30
|
28 |
#@ customMetaWidget
|
29 |
msgid "Meta"
|
30 |
msgstr "Meta"
|
31 |
|
32 |
-
#: customMeta.php:
|
33 |
#@ customMetaWidget
|
34 |
msgid "Title"
|
35 |
msgstr "Title"
|
36 |
|
37 |
-
#: customMeta.php:
|
38 |
#@ customMetaWidget
|
39 |
msgid "Show \"Register/Admin\" link?"
|
40 |
msgstr "Show \"Register/Admin\" link?"
|
41 |
|
42 |
-
#: customMeta.php:
|
43 |
#@ customMetaWidget
|
44 |
msgid "Show \"Log in/out\" link?"
|
45 |
msgstr "Show \"Log in/out\" link?"
|
46 |
|
47 |
-
#: customMeta.php:
|
48 |
#@ customMetaWidget
|
49 |
msgid "Show \"Entries RSS\" link?"
|
50 |
msgstr "Show \"Entries RSS\" link?"
|
51 |
|
52 |
-
#: customMeta.php:
|
53 |
#@ customMetaWidget
|
54 |
msgid "Show \"Comments RSS\" link?"
|
55 |
msgstr "Show \"Comments RSS\" link?"
|
56 |
|
57 |
-
#: customMeta.php:
|
58 |
-
#@ customMetaWidget
|
59 |
-
msgid "Show \"Wordpress\" link?"
|
60 |
-
msgstr "Show \"Wordpress\" link?"
|
61 |
-
|
62 |
-
#: customMeta.php:81
|
63 |
-
#@ customMetaWidget
|
64 |
-
msgid "Show Custom link?"
|
65 |
-
msgstr "Show Custom link?"
|
66 |
-
|
67 |
-
#: customMeta.php:85
|
68 |
#@ customMetaWidget
|
69 |
msgid "URL"
|
70 |
msgstr "URL"
|
71 |
|
72 |
-
#: customMeta.php:
|
73 |
#@ customMetaWidget
|
74 |
msgid "Text"
|
75 |
msgstr "Text"
|
76 |
|
77 |
-
#: customMeta.php:
|
78 |
#@ customMetaWidget
|
79 |
msgid "Show Plugin link?"
|
80 |
msgstr "Show Plugin link?"
|
81 |
|
82 |
-
#: customMeta.php:
|
83 |
#@ customMetaWidget
|
84 |
msgid "An awesome way to support this free plugin!"
|
85 |
msgstr "An awesome way to support this free plugin, eh!"
|
86 |
|
87 |
-
#: customMeta.php:
|
88 |
#@ customMetaWidget
|
89 |
msgid "You have a custom link with no URL or text!"
|
90 |
msgstr "You have a custom link with no URL or text!"
|
91 |
|
92 |
-
#: customMeta.php:
|
93 |
#@ customMetaWidget
|
94 |
msgid "You have a custom link with no text!"
|
95 |
msgstr "You have a custom link with no text!"
|
96 |
|
97 |
-
#: customMeta.php:
|
98 |
#@ customMetaWidget
|
99 |
msgid "You have a custom link with no URL!"
|
100 |
msgstr "You have a custom link with no URL!"
|
101 |
|
102 |
-
#: customMeta.php:
|
103 |
#@ customMetaWidget
|
104 |
msgid "Plugin: Custom Meta Widget"
|
105 |
msgstr "Plugin: Custom Meta Widget"
|
106 |
|
107 |
-
#: customMeta.php:
|
108 |
#@ customMetaWidget
|
109 |
msgid "Plugin URL"
|
110 |
msgstr "Plugin URL"
|
111 |
|
112 |
-
#: customMeta.php:
|
|
|
113 |
#@ customMetaWidget
|
114 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
115 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
116 |
|
117 |
-
#: customMeta.php:
|
|
|
118 |
#@ customMetaWidget
|
119 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
120 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
121 |
|
122 |
-
#: customMeta.php:
|
123 |
#@ customMetaWidget
|
124 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
125 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
126 |
|
127 |
-
#: customMeta.php:
|
128 |
#@ customMetaWidget
|
129 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
130 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
131 |
|
132 |
-
#: customMeta.php:
|
133 |
#@ customMetaWidget
|
134 |
msgid "WordPress Plugin Homepage"
|
135 |
msgstr "WordPress Plugin Homepage"
|
136 |
|
137 |
-
#: customMeta.php:
|
138 |
#@ customMetaWidget
|
139 |
msgid "Custom Meta"
|
140 |
msgstr "Custom Meta"
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:09:14+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: Canada\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
|
|
|
|
|
|
|
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
27 |
|
28 |
+
#: customMeta.php:33
|
29 |
#@ customMetaWidget
|
30 |
msgid "Title"
|
31 |
msgstr "Title"
|
32 |
|
33 |
+
#: customMeta.php:40
|
34 |
#@ customMetaWidget
|
35 |
msgid "Show \"Register/Admin\" link?"
|
36 |
msgstr "Show \"Register/Admin\" link?"
|
37 |
|
38 |
+
#: customMeta.php:47
|
39 |
#@ customMetaWidget
|
40 |
msgid "Show \"Log in/out\" link?"
|
41 |
msgstr "Show \"Log in/out\" link?"
|
42 |
|
43 |
+
#: customMeta.php:54
|
44 |
#@ customMetaWidget
|
45 |
msgid "Show \"Entries RSS\" link?"
|
46 |
msgstr "Show \"Entries RSS\" link?"
|
47 |
|
48 |
+
#: customMeta.php:61
|
49 |
#@ customMetaWidget
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
+
#: customMeta.php:80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
+
#: customMeta.php:87
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
+
#: customMeta.php:94
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
+
#: customMeta.php:145
|
69 |
#@ customMetaWidget
|
70 |
msgid "An awesome way to support this free plugin!"
|
71 |
msgstr "An awesome way to support this free plugin, eh!"
|
72 |
|
73 |
+
#: customMeta.php:152
|
74 |
#@ customMetaWidget
|
75 |
msgid "You have a custom link with no URL or text!"
|
76 |
msgstr "You have a custom link with no URL or text!"
|
77 |
|
78 |
+
#: customMeta.php:155
|
79 |
#@ customMetaWidget
|
80 |
msgid "You have a custom link with no text!"
|
81 |
msgstr "You have a custom link with no text!"
|
82 |
|
83 |
+
#: customMeta.php:159
|
84 |
#@ customMetaWidget
|
85 |
msgid "You have a custom link with no URL!"
|
86 |
msgstr "You have a custom link with no URL!"
|
87 |
|
88 |
+
#: customMeta.php:182
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
+
#: customMeta.php:183
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
#@ customMetaWidget
|
101 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
#@ customMetaWidget
|
107 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
|
110 |
+
#: customMeta.php:208
|
111 |
#@ customMetaWidget
|
112 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
|
115 |
+
#: customMeta.php:217
|
116 |
#@ customMetaWidget
|
117 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
|
120 |
+
#: customMeta.php:222
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
+
#: customMeta.php:222
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
129 |
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_GB.mo
CHANGED
Binary file
|
lang/customMetaWidget-en_GB.po
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"Report-Msgid-Bugs-To: http://
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: \n"
|
14 |
-
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
@@ -19,123 +19,132 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: customMeta.php:
|
23 |
-
|
24 |
-
msgid "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
25 |
-
msgstr "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
26 |
-
|
27 |
-
#: customMeta.php:30
|
28 |
#@ customMetaWidget
|
29 |
msgid "Meta"
|
30 |
msgstr "Meta"
|
31 |
|
32 |
-
#: customMeta.php:
|
33 |
#@ customMetaWidget
|
34 |
msgid "Title"
|
35 |
msgstr "Title"
|
36 |
|
37 |
-
#: customMeta.php:
|
38 |
#@ customMetaWidget
|
39 |
msgid "Show \"Register/Admin\" link?"
|
40 |
msgstr "Show \"Register/Admin\" link?"
|
41 |
|
42 |
-
#: customMeta.php:
|
43 |
#@ customMetaWidget
|
44 |
msgid "Show \"Log in/out\" link?"
|
45 |
msgstr "Show \"Log in/out\" link?"
|
46 |
|
47 |
-
#: customMeta.php:
|
48 |
#@ customMetaWidget
|
49 |
msgid "Show \"Entries RSS\" link?"
|
50 |
msgstr "Show \"Entries RSS\" link?"
|
51 |
|
52 |
-
#: customMeta.php:
|
53 |
#@ customMetaWidget
|
54 |
msgid "Show \"Comments RSS\" link?"
|
55 |
msgstr "Show \"Comments RSS\" link?"
|
56 |
|
57 |
-
#: customMeta.php:
|
58 |
-
#@ customMetaWidget
|
59 |
-
msgid "Show \"Wordpress\" link?"
|
60 |
-
msgstr "Show \"Wordpress\" link?"
|
61 |
-
|
62 |
-
#: customMeta.php:81
|
63 |
-
#@ customMetaWidget
|
64 |
-
msgid "Show Custom link?"
|
65 |
-
msgstr "Show Custom link?"
|
66 |
-
|
67 |
-
#: customMeta.php:85
|
68 |
#@ customMetaWidget
|
69 |
msgid "URL"
|
70 |
msgstr "URL"
|
71 |
|
72 |
-
#: customMeta.php:
|
73 |
#@ customMetaWidget
|
74 |
msgid "Text"
|
75 |
msgstr "Text"
|
76 |
|
77 |
-
#: customMeta.php:
|
78 |
#@ customMetaWidget
|
79 |
msgid "Show Plugin link?"
|
80 |
msgstr "Show Plugin link?"
|
81 |
|
82 |
-
#: customMeta.php:
|
83 |
#@ customMetaWidget
|
84 |
msgid "An awesome way to support this free plugin!"
|
85 |
msgstr "An awesome way to support this free plugin, gov'nor!"
|
86 |
|
87 |
-
#: customMeta.php:
|
88 |
#@ customMetaWidget
|
89 |
msgid "You have a custom link with no URL or text!"
|
90 |
msgstr "You have a custom link with no URL or text!"
|
91 |
|
92 |
-
#: customMeta.php:
|
93 |
#@ customMetaWidget
|
94 |
msgid "You have a custom link with no text!"
|
95 |
msgstr "You have a custom link with no text!"
|
96 |
|
97 |
-
#: customMeta.php:
|
98 |
#@ customMetaWidget
|
99 |
msgid "You have a custom link with no URL!"
|
100 |
msgstr "You have a custom link with no URL!"
|
101 |
|
102 |
-
#: customMeta.php:
|
103 |
#@ customMetaWidget
|
104 |
msgid "Plugin: Custom Meta Widget"
|
105 |
msgstr "Plugin: Custom Meta Widget"
|
106 |
|
107 |
-
#: customMeta.php:
|
108 |
#@ customMetaWidget
|
109 |
msgid "Plugin URL"
|
110 |
msgstr "Plugin URL"
|
111 |
|
112 |
-
#: customMeta.php:
|
|
|
113 |
#@ customMetaWidget
|
114 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
115 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
116 |
|
117 |
-
#: customMeta.php:
|
|
|
118 |
#@ customMetaWidget
|
119 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
120 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
121 |
|
122 |
-
#: customMeta.php:
|
123 |
#@ customMetaWidget
|
124 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
125 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
126 |
|
127 |
-
#: customMeta.php:
|
128 |
#@ customMetaWidget
|
129 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
130 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
131 |
|
132 |
-
#: customMeta.php:
|
133 |
#@ customMetaWidget
|
134 |
msgid "WordPress Plugin Homepage"
|
135 |
msgstr "WordPress Plugin Homepage"
|
136 |
|
137 |
-
#: customMeta.php:
|
138 |
#@ customMetaWidget
|
139 |
msgid "Custom Meta"
|
140 |
msgstr "Custom Meta"
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:09:36+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: Great Britan\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
|
|
|
|
|
|
|
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
27 |
|
28 |
+
#: customMeta.php:33
|
29 |
#@ customMetaWidget
|
30 |
msgid "Title"
|
31 |
msgstr "Title"
|
32 |
|
33 |
+
#: customMeta.php:40
|
34 |
#@ customMetaWidget
|
35 |
msgid "Show \"Register/Admin\" link?"
|
36 |
msgstr "Show \"Register/Admin\" link?"
|
37 |
|
38 |
+
#: customMeta.php:47
|
39 |
#@ customMetaWidget
|
40 |
msgid "Show \"Log in/out\" link?"
|
41 |
msgstr "Show \"Log in/out\" link?"
|
42 |
|
43 |
+
#: customMeta.php:54
|
44 |
#@ customMetaWidget
|
45 |
msgid "Show \"Entries RSS\" link?"
|
46 |
msgstr "Show \"Entries RSS\" link?"
|
47 |
|
48 |
+
#: customMeta.php:61
|
49 |
#@ customMetaWidget
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
+
#: customMeta.php:80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
+
#: customMeta.php:87
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
+
#: customMeta.php:94
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
+
#: customMeta.php:145
|
69 |
#@ customMetaWidget
|
70 |
msgid "An awesome way to support this free plugin!"
|
71 |
msgstr "An awesome way to support this free plugin, gov'nor!"
|
72 |
|
73 |
+
#: customMeta.php:152
|
74 |
#@ customMetaWidget
|
75 |
msgid "You have a custom link with no URL or text!"
|
76 |
msgstr "You have a custom link with no URL or text!"
|
77 |
|
78 |
+
#: customMeta.php:155
|
79 |
#@ customMetaWidget
|
80 |
msgid "You have a custom link with no text!"
|
81 |
msgstr "You have a custom link with no text!"
|
82 |
|
83 |
+
#: customMeta.php:159
|
84 |
#@ customMetaWidget
|
85 |
msgid "You have a custom link with no URL!"
|
86 |
msgstr "You have a custom link with no URL!"
|
87 |
|
88 |
+
#: customMeta.php:182
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
+
#: customMeta.php:183
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
#@ customMetaWidget
|
101 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
#@ customMetaWidget
|
107 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
|
110 |
+
#: customMeta.php:208
|
111 |
#@ customMetaWidget
|
112 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
|
115 |
+
#: customMeta.php:217
|
116 |
#@ customMetaWidget
|
117 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
|
120 |
+
#: customMeta.php:222
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
+
#: customMeta.php:222
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
129 |
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_IE.mo
CHANGED
Binary file
|
lang/customMetaWidget-en_IE.po
CHANGED
@@ -1,137 +1,150 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"Report-Msgid-Bugs-To: http://
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator: bitacre <
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
13 |
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
15 |
-
"X-
|
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
17 |
|
|
|
|
|
18 |
#@ customMetaWidget
|
19 |
-
#: customMeta.php:20
|
20 |
-
msgid "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
21 |
-
msgstr "Clone of the standard Meta widget with options to show or hide log in/out, admin, feed, WordPress/custom links."
|
22 |
-
|
23 |
-
#@ customMetaWidget
|
24 |
-
#: customMeta.php:30
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
27 |
|
|
|
28 |
#@ customMetaWidget
|
29 |
-
#: customMeta.php:45
|
30 |
msgid "Title"
|
31 |
msgstr "Title"
|
32 |
|
|
|
33 |
#@ customMetaWidget
|
34 |
-
#: customMeta.php:51
|
35 |
msgid "Show \"Register/Admin\" link?"
|
36 |
msgstr "Show \"Register/Admin\" link?"
|
37 |
|
|
|
38 |
#@ customMetaWidget
|
39 |
-
#: customMeta.php:57
|
40 |
msgid "Show \"Log in/out\" link?"
|
41 |
msgstr "Show \"Log in/out\" link?"
|
42 |
|
|
|
43 |
#@ customMetaWidget
|
44 |
-
#: customMeta.php:63
|
45 |
msgid "Show \"Entries RSS\" link?"
|
46 |
msgstr "Show \"Entries RSS\" link?"
|
47 |
|
|
|
48 |
#@ customMetaWidget
|
49 |
-
#: customMeta.php:69
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
|
|
53 |
#@ customMetaWidget
|
54 |
-
#: customMeta.php:75
|
55 |
-
msgid "Show \"Wordpress\" link?"
|
56 |
-
msgstr "Show \"Wordpress\" link?"
|
57 |
-
|
58 |
-
#@ customMetaWidget
|
59 |
-
#: customMeta.php:81
|
60 |
-
msgid "Show Custom link?"
|
61 |
-
msgstr "Show Custom link?"
|
62 |
-
|
63 |
-
#@ customMetaWidget
|
64 |
-
#: customMeta.php:85
|
65 |
msgid "URL"
|
66 |
msgstr "URL"
|
67 |
|
|
|
68 |
#@ customMetaWidget
|
69 |
-
#: customMeta.php:90
|
70 |
msgid "Text"
|
71 |
msgstr "Text"
|
72 |
|
|
|
73 |
#@ customMetaWidget
|
74 |
-
#: customMeta.php:97
|
75 |
msgid "Show Plugin link?"
|
76 |
msgstr "Show Plugin link?"
|
77 |
|
|
|
78 |
#@ customMetaWidget
|
79 |
-
#: customMeta.php:100
|
80 |
msgid "An awesome way to support this free plugin!"
|
81 |
-
msgstr "An awesome way to support this wee free plugin!"
|
82 |
|
|
|
83 |
#@ customMetaWidget
|
84 |
-
#: customMeta.php:107
|
85 |
msgid "You have a custom link with no URL or text!"
|
86 |
msgstr "You have a custom link with no URL or text!"
|
87 |
|
|
|
88 |
#@ customMetaWidget
|
89 |
-
#: customMeta.php:110
|
90 |
msgid "You have a custom link with no text!"
|
91 |
msgstr "You have a custom link with no text!"
|
92 |
|
|
|
93 |
#@ customMetaWidget
|
94 |
-
#: customMeta.php:114
|
95 |
msgid "You have a custom link with no URL!"
|
96 |
msgstr "You have a custom link with no URL!"
|
97 |
|
|
|
98 |
#@ customMetaWidget
|
99 |
-
#: customMeta.php:143
|
100 |
msgid "Plugin: Custom Meta Widget"
|
101 |
msgstr "Plugin: Custom Meta Widget"
|
102 |
|
|
|
103 |
#@ customMetaWidget
|
104 |
-
#: customMeta.php:144
|
105 |
msgid "Plugin URL"
|
106 |
msgstr "Plugin URL"
|
107 |
|
|
|
|
|
108 |
#@ customMetaWidget
|
109 |
-
#: customMeta.php:169
|
110 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
111 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
112 |
|
|
|
|
|
113 |
#@ customMetaWidget
|
114 |
-
#: customMeta.php:173
|
115 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
116 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
117 |
|
|
|
118 |
#@ customMetaWidget
|
119 |
-
#: customMeta.php:176
|
120 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
121 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
122 |
|
|
|
123 |
#@ customMetaWidget
|
124 |
-
#: customMeta.php:184
|
125 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
126 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
127 |
|
|
|
128 |
#@ customMetaWidget
|
129 |
-
#: customMeta.php:190
|
130 |
msgid "WordPress Plugin Homepage"
|
131 |
msgstr "WordPress Plugin Homepage"
|
132 |
|
|
|
133 |
#@ customMetaWidget
|
134 |
-
#: customMeta.php:190
|
135 |
msgid "Custom Meta"
|
136 |
msgstr "Custom Meta"
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:10:01+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: Ireland\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
24 |
#@ customMetaWidget
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
27 |
|
28 |
+
#: customMeta.php:33
|
29 |
#@ customMetaWidget
|
|
|
30 |
msgid "Title"
|
31 |
msgstr "Title"
|
32 |
|
33 |
+
#: customMeta.php:40
|
34 |
#@ customMetaWidget
|
|
|
35 |
msgid "Show \"Register/Admin\" link?"
|
36 |
msgstr "Show \"Register/Admin\" link?"
|
37 |
|
38 |
+
#: customMeta.php:47
|
39 |
#@ customMetaWidget
|
|
|
40 |
msgid "Show \"Log in/out\" link?"
|
41 |
msgstr "Show \"Log in/out\" link?"
|
42 |
|
43 |
+
#: customMeta.php:54
|
44 |
#@ customMetaWidget
|
|
|
45 |
msgid "Show \"Entries RSS\" link?"
|
46 |
msgstr "Show \"Entries RSS\" link?"
|
47 |
|
48 |
+
#: customMeta.php:61
|
49 |
#@ customMetaWidget
|
|
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
+
#: customMeta.php:80
|
54 |
#@ customMetaWidget
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
+
#: customMeta.php:87
|
59 |
#@ customMetaWidget
|
|
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
+
#: customMeta.php:94
|
64 |
#@ customMetaWidget
|
|
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
+
#: customMeta.php:145
|
69 |
#@ customMetaWidget
|
|
|
70 |
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "An awesome way to support this wee little free plugin!"
|
72 |
|
73 |
+
#: customMeta.php:152
|
74 |
#@ customMetaWidget
|
|
|
75 |
msgid "You have a custom link with no URL or text!"
|
76 |
msgstr "You have a custom link with no URL or text!"
|
77 |
|
78 |
+
#: customMeta.php:155
|
79 |
#@ customMetaWidget
|
|
|
80 |
msgid "You have a custom link with no text!"
|
81 |
msgstr "You have a custom link with no text!"
|
82 |
|
83 |
+
#: customMeta.php:159
|
84 |
#@ customMetaWidget
|
|
|
85 |
msgid "You have a custom link with no URL!"
|
86 |
msgstr "You have a custom link with no URL!"
|
87 |
|
88 |
+
#: customMeta.php:182
|
89 |
#@ customMetaWidget
|
|
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
+
#: customMeta.php:183
|
94 |
#@ customMetaWidget
|
|
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
#@ customMetaWidget
|
|
|
101 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
#@ customMetaWidget
|
|
|
107 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
|
110 |
+
#: customMeta.php:208
|
111 |
#@ customMetaWidget
|
|
|
112 |
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
|
115 |
+
#: customMeta.php:217
|
116 |
#@ customMetaWidget
|
|
|
117 |
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
|
120 |
+
#: customMeta.php:222
|
121 |
#@ customMetaWidget
|
|
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
+
#: customMeta.php:222
|
126 |
#@ customMetaWidget
|
|
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
129 |
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_NZ.mo
ADDED
Binary file
|
lang/customMetaWidget-en_NZ.po
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:10:25+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: New Zealand\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Title"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Show \"Register/Admin\" link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Show \"Log in/out\" link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Show \"Entries RSS\" link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Show \"Comments RSS\" link?"
|
52 |
+
|
53 |
+
#: customMeta.php:80
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:87
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Text"
|
62 |
+
|
63 |
+
#: customMeta.php:94
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Show Plugin link?"
|
67 |
+
|
68 |
+
#: customMeta.php:145
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "An awesome way to support this free plugin, mate!"
|
72 |
+
|
73 |
+
#: customMeta.php:152
|
74 |
+
#@ customMetaWidget
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "You have a custom link with no URL or text!"
|
77 |
+
|
78 |
+
#: customMeta.php:155
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "You have a custom link with no text!"
|
82 |
+
|
83 |
+
#: customMeta.php:159
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "You have a custom link with no URL!"
|
87 |
+
|
88 |
+
#: customMeta.php:182
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:183
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin URL"
|
97 |
+
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:208
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
+
|
115 |
+
#: customMeta.php:217
|
116 |
+
#@ customMetaWidget
|
117 |
+
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
+
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
+
|
120 |
+
#: customMeta.php:222
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress Plugin Homepage"
|
124 |
+
|
125 |
+
#: customMeta.php:222
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Custom Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_PH.mo
ADDED
Binary file
|
lang/customMetaWidget-en_PH.po
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:11:55+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: Philippines\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Title"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Show \"Register/Admin\" link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Show \"Log in/out\" link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Show \"Entries RSS\" link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Show \"Comments RSS\" link?"
|
52 |
+
|
53 |
+
#: customMeta.php:80
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:87
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Text"
|
62 |
+
|
63 |
+
#: customMeta.php:94
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Show Plugin link?"
|
67 |
+
|
68 |
+
#: customMeta.php:145
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "An awesome way to support this free plugin, kaibigan!"
|
72 |
+
|
73 |
+
#: customMeta.php:152
|
74 |
+
#@ customMetaWidget
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "You have a custom link with no URL or text!"
|
77 |
+
|
78 |
+
#: customMeta.php:155
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "You have a custom link with no text!"
|
82 |
+
|
83 |
+
#: customMeta.php:159
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "You have a custom link with no URL!"
|
87 |
+
|
88 |
+
#: customMeta.php:182
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:183
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin URL"
|
97 |
+
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:208
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
+
|
115 |
+
#: customMeta.php:217
|
116 |
+
#@ customMetaWidget
|
117 |
+
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
+
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
+
|
120 |
+
#: customMeta.php:222
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress Plugin Homepage"
|
124 |
+
|
125 |
+
#: customMeta.php:222
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Custom Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_US.mo
ADDED
Binary file
|
lang/customMetaWidget-en_US.po
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 15:00:26+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: United States\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Title"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Show \"Register/Admin\" link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Show \"Log in/out\" link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Show \"Entries RSS\" link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Show \"Comments RSS\" link?"
|
52 |
+
|
53 |
+
#: customMeta.php:80
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:87
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Text"
|
62 |
+
|
63 |
+
#: customMeta.php:94
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Show Plugin link?"
|
67 |
+
|
68 |
+
#: customMeta.php:145
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "An awesome way to support this free plugin!"
|
72 |
+
|
73 |
+
#: customMeta.php:152
|
74 |
+
#@ customMetaWidget
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "You have a custom link with no URL or text!"
|
77 |
+
|
78 |
+
#: customMeta.php:155
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "You have a custom link with no text!"
|
82 |
+
|
83 |
+
#: customMeta.php:159
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "You have a custom link with no URL!"
|
87 |
+
|
88 |
+
#: customMeta.php:182
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:183
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin URL"
|
97 |
+
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:208
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
+
|
115 |
+
#: customMeta.php:217
|
116 |
+
#@ customMetaWidget
|
117 |
+
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
+
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
+
|
120 |
+
#: customMeta.php:222
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress Plugin Homepage"
|
124 |
+
|
125 |
+
#: customMeta.php:222
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Custom Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-en_ZA.mo
ADDED
Binary file
|
lang/customMetaWidget-en_ZA.po
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 16:12:16+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: English\n"
|
14 |
+
"X-Poedit-Country: South Africa\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Title"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Show \"Register/Admin\" link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Show \"Log in/out\" link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Show \"Entries RSS\" link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Show \"Comments RSS\" link?"
|
52 |
+
|
53 |
+
#: customMeta.php:80
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:87
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Text"
|
62 |
+
|
63 |
+
#: customMeta.php:94
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Show Plugin link?"
|
67 |
+
|
68 |
+
#: customMeta.php:145
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "An awesome way to support this free plugin, friend!"
|
72 |
+
|
73 |
+
#: customMeta.php:152
|
74 |
+
#@ customMetaWidget
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "You have a custom link with no URL or text!"
|
77 |
+
|
78 |
+
#: customMeta.php:155
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "You have a custom link with no text!"
|
82 |
+
|
83 |
+
#: customMeta.php:159
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "You have a custom link with no URL!"
|
87 |
+
|
88 |
+
#: customMeta.php:182
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:183
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin URL"
|
97 |
+
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:208
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
+
|
115 |
+
#: customMeta.php:217
|
116 |
+
#@ customMetaWidget
|
117 |
+
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
+
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
+
|
120 |
+
#: customMeta.php:222
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress Plugin Homepage"
|
124 |
+
|
125 |
+
#: customMeta.php:222
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Custom Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
lang/customMetaWidget-es_MX.mo
CHANGED
Binary file
|
lang/customMetaWidget-es_MX.po
CHANGED
@@ -1,141 +1,161 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-meta-widget\n"
|
5 |
-
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"Content-
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
"X-Poedit-
|
17 |
-
"X-Poedit-
|
18 |
-
"X-Poedit-
|
19 |
-
"X-Poedit-
|
20 |
-
"X-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
msgid "
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
#: customMeta.php:
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
#: customMeta.php:
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 10:48-0600\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Poedit-Language: English\n"
|
15 |
+
"X-Poedit-Country: United States\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: \n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
# @ customMetaWidget
|
24 |
+
#: customMeta.php:32 customMeta.php:177
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
# @ customMetaWidget
|
29 |
+
#: customMeta.php:33
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Título"
|
32 |
+
|
33 |
+
# @ customMetaWidget
|
34 |
+
#: customMeta.php:40
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "¿Mostrar enlaces de registrarse/administración?"
|
37 |
+
|
38 |
+
# @ customMetaWidget
|
39 |
+
#: customMeta.php:47
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "¿Mostrar enlace de conectarse/desconectarse?"
|
42 |
+
|
43 |
+
# @ customMetaWidget
|
44 |
+
#: customMeta.php:54
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "¿Mostrar enlace de entradas RSS?"
|
47 |
+
|
48 |
+
# @ customMetaWidget
|
49 |
+
#: customMeta.php:61
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "¿Mostrar enlace de Comentarios RSS?"
|
52 |
+
|
53 |
+
# @ customMetaWidget
|
54 |
+
#: customMeta.php:80
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
# @ customMetaWidget
|
59 |
+
#: customMeta.php:87
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Texto"
|
62 |
+
|
63 |
+
# @ customMetaWidget
|
64 |
+
#: customMeta.php:94
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "¿Mostrar enlace de plugin?"
|
67 |
+
|
68 |
+
# @ customMetaWidget
|
69 |
+
#: customMeta.php:145
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "¡Una manera impresionante para apoyar este plugin gratis!"
|
72 |
+
|
73 |
+
# @ customMetaWidget
|
74 |
+
#: customMeta.php:152
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "¡Usted tiene un enlace personalizado, sin dirección o texto!"
|
77 |
+
|
78 |
+
# @ customMetaWidget
|
79 |
+
#: customMeta.php:155
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "¡Usted tiene un enlace personalizado, sin texto!"
|
82 |
+
|
83 |
+
# @ customMetaWidget
|
84 |
+
#: customMeta.php:159
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "¡Usted tiene un enlace personalizado, sin dirección!"
|
87 |
+
|
88 |
+
# @ customMetaWidget
|
89 |
+
#: customMeta.php:182
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Widget Meta Personalizada"
|
92 |
+
|
93 |
+
# @ customMetaWidget
|
94 |
+
#: customMeta.php:183
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin dirección"
|
97 |
+
|
98 |
+
# @ customMetaWidget
|
99 |
+
#: customMeta.php:197
|
100 |
+
#, php-format
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr ""
|
103 |
+
"%1$sSuscribirse a este sitio por medio de RSS 2.0%2$sEntradas %3$sRSS%4$s"
|
104 |
+
|
105 |
+
# @ customMetaWidget
|
106 |
+
#: customMeta.php:203
|
107 |
+
#, php-format
|
108 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
+
msgstr ""
|
110 |
+
"%1$sSuscribirse a este sitio por medio de RSS 2.0%2$sComentarios %3$sRSS%4$s"
|
111 |
+
|
112 |
+
# @ customMetaWidget
|
113 |
+
#: customMeta.php:208
|
114 |
+
msgid ""
|
115 |
+
"Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
116 |
+
msgstr ""
|
117 |
+
"Funciona con WordPress, el estado de la técnica de la plataforma semántica "
|
118 |
+
"de publicación personal."
|
119 |
+
|
120 |
+
# @ customMetaWidget
|
121 |
+
#: customMeta.php:217
|
122 |
+
msgid ""
|
123 |
+
"Error: \"Show Custom Link\" is checked, but either the text or URL for that "
|
124 |
+
"link are not specified. The link was not displayed because it would be "
|
125 |
+
"broken. Check the settings for your Custom Meta widget."
|
126 |
+
msgstr ""
|
127 |
+
"Error: \"Morstrar Enlace de la Personalizada\" está activada, pero el texto "
|
128 |
+
"o la URL de ese enlace no se especifican. El vínculo no se muestra porque se "
|
129 |
+
"rompería. Compruebe la configuración de tu Widget Personalizado Meta."
|
130 |
+
|
131 |
+
# @ customMetaWidget
|
132 |
+
#: customMeta.php:222
|
133 |
+
msgid "WordPress Plugin Homepage"
|
134 |
+
msgstr "Página de inicio de WordPress Plugin"
|
135 |
+
|
136 |
+
# @ customMetaWidget
|
137 |
+
#: customMeta.php:222
|
138 |
+
msgid "Custom Meta"
|
139 |
+
msgstr "Meta Personalizado"
|
140 |
+
|
141 |
+
# @ customMetaWidget
|
142 |
+
#: customMeta.php:68
|
143 |
+
msgid "Show \"WordPress.org\" link?"
|
144 |
+
msgstr "¿Mostrar enlaces de \"WordPress.org\"?"
|
145 |
+
|
146 |
+
# @ customMetaWidget
|
147 |
+
#: customMeta.php:74
|
148 |
+
msgid "Show the custom link?"
|
149 |
+
msgstr "¿Mostrar enlaces personalizada?"
|
150 |
+
|
151 |
+
# @ customMetaWidget
|
152 |
+
#: customMeta.php:199 customMeta.php:205
|
153 |
+
msgid "Really Simple Syndication"
|
154 |
+
msgstr "Really Simple Syndication"
|
155 |
+
|
156 |
+
# @ customMetaWidget
|
157 |
+
#: customMeta.php:20
|
158 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
159 |
+
msgstr ""
|
160 |
+
"Ocultar el enlaces de inicio/cierre de sesión, administración, alimentación "
|
161 |
+
"y WordPress"
|
lang/customMetaWidget.pot
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://bitacre.com/plugins/custom-meta-widget\n"
|
5 |
+
"POT-Creation-Date: 2012-04-19 22:57:47+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-08-28 15:00:26+0000\n"
|
7 |
+
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: \n"
|
14 |
+
"X-Poedit-Country: \n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: customMeta.php:32
|
23 |
+
#: customMeta.php:177
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Title"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Show \"Register/Admin\" link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Show \"Log in/out\" link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Show \"Entries RSS\" link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Show \"Comments RSS\" link?"
|
52 |
+
|
53 |
+
#: customMeta.php:80
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:87
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Text"
|
62 |
+
|
63 |
+
#: customMeta.php:94
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Show Plugin link?"
|
67 |
+
|
68 |
+
#: customMeta.php:145
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "An awesome way to support this free plugin mate!"
|
72 |
+
|
73 |
+
#: customMeta.php:152
|
74 |
+
#@ customMetaWidget
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "You have a custom link with no URL or text!"
|
77 |
+
|
78 |
+
#: customMeta.php:155
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "You have a custom link with no text!"
|
82 |
+
|
83 |
+
#: customMeta.php:159
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "You have a custom link with no URL!"
|
87 |
+
|
88 |
+
#: customMeta.php:182
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:183
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin URL"
|
97 |
+
|
98 |
+
#: customMeta.php:197
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:203
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:208
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
114 |
+
|
115 |
+
#: customMeta.php:217
|
116 |
+
#@ customMetaWidget
|
117 |
+
msgid "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
118 |
+
msgstr "Error: \"Show Custom Link\" is checked, but either the text or URL for that link are not specified. The link was not displayed because it would be broken. Check the settings for your Custom Meta widget."
|
119 |
+
|
120 |
+
#: customMeta.php:222
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress Plugin Homepage"
|
124 |
+
|
125 |
+
#: customMeta.php:222
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Custom Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Show \"WordPress.org\" link?"
|
134 |
+
|
135 |
+
#: customMeta.php:74
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Show the custom link?"
|
139 |
+
|
140 |
+
#: customMeta.php:199
|
141 |
+
#: customMeta.php:205
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Really Simple Syndication"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Hide the individual log in/out, admin, feed and WordPress links"
|
150 |
+
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Custom Meta Widget ===
|
2 |
-
Plugin URI: http://
|
3 |
Contributors: bitacre
|
4 |
-
Donate link: http://
|
5 |
Tags: meta,hide,link,admin,simple,widget,default,wordpress.org,change,rss, remove,login
|
6 |
Requires at least: 2.8
|
7 |
-
Tested up to: 3.4.
|
8 |
-
Stable tag: 1.4.
|
9 |
|
10 |
Clone of the standard Meta widget plus options to hide log in/out, admin, feed and Wordpress.org/custom links.
|
11 |
|
@@ -47,6 +47,11 @@ Most people, myself included, are understandably reluctant to donate real curren
|
|
47 |
3. Comparison of options between the standard and Custom Meta Widget.
|
48 |
|
49 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
50 |
= 1.4.0 =
|
51 |
* Code efficiency improvements (better loops)
|
52 |
* Now removes default Meta Widget (to avoid confusion)
|
@@ -96,8 +101,12 @@ Most people, myself included, are understandably reluctant to donate real curren
|
|
96 |
* There may still be bugs, but I can't find any.
|
97 |
|
98 |
== Upgrade Notice ==
|
|
|
|
|
|
|
99 |
= 1.4.0 =
|
100 |
Improves code efficiency, new features, recommended upgrade.
|
|
|
101 |
= 1.3.6 =
|
102 |
Updated metadata, not an essential upgrade.
|
103 |
|
@@ -128,12 +137,18 @@ Fixes a code error.
|
|
128 |
= 1.1 =
|
129 |
Not essential, no bug fixes just minor structural code changes. (Mostly a test of the SVN repository system which I am new at.)
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
== Readme Generator ==
|
132 |
-
* This plugin's readme.txt file was generated by the [bitacre Readme Generator](http://
|
133 |
|
134 |
== Support ==
|
135 |
-
* [Plugin Homepage](http://
|
136 |
-
* [
|
137 |
|
138 |
== Donations ==
|
139 |
-
[Donations](http://
|
1 |
=== Custom Meta Widget ===
|
2 |
+
Plugin URI: http://shinraholdings.com/plugins/custom-meta-widget
|
3 |
Contributors: bitacre
|
4 |
+
Donate link: http://shinraholdings.com/donate
|
5 |
Tags: meta,hide,link,admin,simple,widget,default,wordpress.org,change,rss, remove,login
|
6 |
Requires at least: 2.8
|
7 |
+
Tested up to: 3.4.2
|
8 |
+
Stable tag: 1.4.1
|
9 |
|
10 |
Clone of the standard Meta widget plus options to hide log in/out, admin, feed and Wordpress.org/custom links.
|
11 |
|
47 |
3. Comparison of options between the standard and Custom Meta Widget.
|
48 |
|
49 |
== Changelog ==
|
50 |
+
= 1.4.1 =
|
51 |
+
* Added missed textdomains for more complete i18n
|
52 |
+
* Added translations for da_DK, en_NZ, en_PH, and en_NZ
|
53 |
+
* Updated/fixed all translation files
|
54 |
+
|
55 |
= 1.4.0 =
|
56 |
* Code efficiency improvements (better loops)
|
57 |
* Now removes default Meta Widget (to avoid confusion)
|
101 |
* There may still be bugs, but I can't find any.
|
102 |
|
103 |
== Upgrade Notice ==
|
104 |
+
= 1.4.1 =
|
105 |
+
Fixes some i18n issues and adds additional languages, recommended upgrade.
|
106 |
+
|
107 |
= 1.4.0 =
|
108 |
Improves code efficiency, new features, recommended upgrade.
|
109 |
+
|
110 |
= 1.3.6 =
|
111 |
Updated metadata, not an essential upgrade.
|
112 |
|
137 |
= 1.1 =
|
138 |
Not essential, no bug fixes just minor structural code changes. (Mostly a test of the SVN repository system which I am new at.)
|
139 |
|
140 |
+
== Translation Help ==
|
141 |
+
If you would like to help make this plugin available in your native language, please send your `.po` file to [plugins@shinraholdings.com](mailto:plugins@shinraholdings.com), and I will include it in the next version. The all the language files are in the `lang` subdirectory of the plugin.
|
142 |
+
|
143 |
+
* en_XX - [bitacre](mailto:lang@shinraholdings.com)
|
144 |
+
* da_DK - [Kris Thomsen](mailto:mail@kristhomsen.dk)
|
145 |
+
|
146 |
== Readme Generator ==
|
147 |
+
* This plugin's readme.txt file was generated by the [bitacre Readme Generator](http://shinraholdings/tools/readme-gen) for WordPress Plugins.
|
148 |
|
149 |
== Support ==
|
150 |
+
* [Plugin Homepage](http://shinraholdings.com/plugins/custom-meta-widget)
|
151 |
+
* [plugins@shinraholdings.com](mailto:plugins@shinraholdings.com)
|
152 |
|
153 |
== Donations ==
|
154 |
+
[Donations](http://shinraholdings.com/donate) are graciously accepted to support the continued development and maintenance of this and other plugins. We currently accept Paypal, link backs, and kind words. Also, checking the 'show plugin link' option on the widget helps us out greatly!
|