Version Description
- Added de_DE (German) translation
- General update to language files
- Major code efficiency upgrades
=
Download this release
Release Info
Developer | bitacre |
Plugin | Custom Meta Widget |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- customMeta.php +173 -181
- lang/customMetaWidget-da_DK.mo +0 -0
- lang/customMetaWidget-da_DK.po +150 -150
- lang/customMetaWidget-de_DE.mo +0 -0
- lang/customMetaWidget-de_DE.po +150 -0
- lang/customMetaWidget-en_AU.po +21 -21
- lang/customMetaWidget-en_CA.po +21 -21
- lang/customMetaWidget-es_MX.po +150 -161
- lang/customMetaWidget-ru_RU.mo +0 -0
- lang/customMetaWidget-ru_RU.po +66 -40
- readme.txt +14 -4
customMeta.php
CHANGED
@@ -1,173 +1,154 @@
|
|
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.
|
7 |
Author: bitacre
|
8 |
Author URI: http://shinraholdings.com/
|
9 |
License: GPLv2
|
10 |
Copyright 2012 Shinra Web Holdings (http://shinraholdings.com)
|
11 |
*/
|
12 |
|
13 |
-
|
|
|
|
|
|
|
14 |
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
|
|
|
23 |
$this->WP_Widget( 'customMetaWidget', 'Custom Meta', $widget_ops );
|
24 |
}
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
function get_options() {
|
28 |
-
$
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
'
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
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 |
-
|
71 |
-
'showcustom' => array(
|
72 |
-
'slug' => 'showcustom',
|
73 |
-
'type' => 'checkbox',
|
74 |
-
'default' => 0,
|
75 |
-
'label' => __( 'Show the custom link?', 'customMetaWidget' ),
|
76 |
-
'before' => '' ),
|
77 |
-
|
78 |
-
'customurl' => array(
|
79 |
-
'slug' => 'customurl',
|
80 |
-
'type' => 'text',
|
81 |
-
'default' => '',
|
82 |
-
'label' => __( 'URL', 'customMetaWidget' ),
|
83 |
-
'before' => ' style="margin-left:20px;"' ),
|
84 |
-
|
85 |
-
'customtext' => array(
|
86 |
-
'slug' => 'customtext',
|
87 |
-
'type' => 'text',
|
88 |
-
'default' => '',
|
89 |
-
'label' => __( 'Text', 'customMetaWidget' ),
|
90 |
-
'before' => ' style="margin-left:20px;"' ),
|
91 |
-
|
92 |
-
'linklove' => array(
|
93 |
-
'slug' => 'linklove',
|
94 |
-
'type' => 'checkbox',
|
95 |
-
'default' => 0,
|
96 |
-
'label' => __( 'Show Plugin link?', 'customMetaWidget' ),
|
97 |
-
'before' => '' )
|
98 |
);
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
return $options;
|
101 |
}
|
102 |
|
103 |
-
// draw widget options
|
104 |
-
function form( $instance ) {
|
105 |
-
$options = $this->get_options();
|
106 |
-
|
107 |
-
// get defaults array
|
108 |
-
$defaults = array();
|
109 |
-
foreach( $options as $key=>$value )
|
110 |
-
$defaults = array_merge( $defaults, array( $key => $value['default'] ) );
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
// parse instance values over defaults
|
113 |
-
$instance = wp_parse_args( ( array ) $instance, $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
-
// loop through text boxes
|
116 |
-
foreach( $options as $slug=>$value ) {
|
117 |
-
|
118 |
-
if( $value['type'] == 'text' )
|
119 |
-
printf( '<!-- %1$s -->
|
120 |
-
<p%6$s>
|
121 |
-
<label for="%2$s">%3$s: </label>
|
122 |
-
<input class="widefat" id="%4$s" name="%2$s" type="text" value="%5$s" />
|
123 |
-
</p>',
|
124 |
-
$slug,
|
125 |
-
$this->get_field_name( $slug ),
|
126 |
-
$value['label'],
|
127 |
-
$this->get_field_id( $slug ),
|
128 |
-
esc_attr( $instance[$slug] ),
|
129 |
-
$value['before']
|
130 |
-
);
|
131 |
|
132 |
-
elseif( $value['type'] == 'checkbox' )
|
133 |
-
printf( '<!-- %1$s -->
|
134 |
-
<p%6$s>
|
135 |
-
<label for="%2$s">%3$s</label>
|
136 |
-
<input id="%4$s" name="%2$s" type="checkbox" value="1" %5$s />
|
137 |
-
</p>',
|
138 |
-
$slug,
|
139 |
-
$this->get_field_name( $slug ),
|
140 |
-
$value['label'],
|
141 |
-
$this->get_field_id( $slug ),
|
142 |
-
checked( $instance[$slug], 1, false ),
|
143 |
-
$value['before']
|
144 |
-
);
|
145 |
-
}
|
146 |
|
147 |
-
|
148 |
-
|
149 |
-
// check for errors
|
150 |
-
if ( esc_attr( $instance['showcustom'] ) ) { // IF 'showcustom' is checked, AND
|
151 |
-
|
152 |
-
// 1. no link and no URL
|
153 |
-
if( empty( $instance['customtext']) && empty($instance['customurl'] ) )
|
154 |
-
echo '<p style="color:#f00; font-weight:bold;" >' . __( 'You have a custom link with no URL or text!', 'customMetaWidget' ) . '</p>';
|
155 |
-
// 2. no link
|
156 |
-
elseif( empty( $instance['customtext'] ) )
|
157 |
-
echo '<p style="color:#f00; font-weight:bold;" >' . __( 'You have a custom link with no text!', 'customMetaWidget' ) . '</p>';
|
158 |
|
159 |
-
|
160 |
-
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
}
|
|
|
|
|
163 |
}
|
164 |
|
165 |
-
|
|
|
|
|
|
|
166 |
function update( $new_instance, $old_instance) {
|
167 |
-
$instance = $old_instance;
|
168 |
-
$options = $this->get_options();
|
169 |
|
170 |
-
foreach( $
|
171 |
$instance[$key] = $new_instance[$key];
|
172 |
|
173 |
return $instance;
|
@@ -176,61 +157,72 @@ function update( $new_instance, $old_instance) {
|
|
176 |
// ACTUAL WIDGET OUTPUT
|
177 |
function widget( $args, $instance ) {
|
178 |
extract( $args, EXTR_SKIP ); // extract arguments
|
179 |
-
$title = empty( $instance['title'] ) ? __( 'Meta', 'customMetaWidget' ) : apply_filters( 'widget_title', $instance['title'] ); // if no title, use default
|
180 |
-
|
181 |
-
// insert start of widget HTML comment
|
182 |
-
echo '
|
183 |
<!--
|
184 |
-
|
185 |
-
|
186 |
-->
|
187 |
-
';
|
188 |
|
189 |
-
|
190 |
-
echo $
|
191 |
-
echo '
|
|
|
192 |
|
193 |
-
// ADD LINKS
|
194 |
-
if( esc_attr( $instance['register'] ) ) wp_register( '<li>', '</li>' ); // 1. register link
|
195 |
|
196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
'
|
201 |
-
|
202 |
-
'
|
203 |
|
204 |
-
|
205 |
-
printf( __( '%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s', 'customMetaWidget' ),
|
206 |
-
'<li><a href="' . get_bloginfo( 'comments_rss2_url' ) . '" title="', '">',
|
207 |
-
'<abbr title="' . __( 'Really Simple Syndication', 'customMetaWidget' ) . '">',
|
208 |
-
'</abbr></a></li>' );// 4. entires RSS link
|
209 |
-
|
210 |
-
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
|
211 |
|
212 |
-
if( esc_attr( $instance['showcustom'] ) ) { // 6. custom link
|
213 |
-
if( !empty( $instance['customtext'] )
|
214 |
-
&& !empty( $instance['customurl'] ) )
|
215 |
-
echo '<li><a href="' . esc_attr( $instance['customurl'] ) . '">' . esc_attr( $instance['customtext'] ) . '</a></li>';
|
216 |
-
// otherwise insert error comment
|
217 |
-
else
|
218 |
-
echo '
|
219 |
-
<!-- ' . __( '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.', 'customMetaWidget' ) . ' -->
|
220 |
-
';
|
221 |
-
}
|
222 |
|
223 |
-
|
224 |
-
|
225 |
-
}
|
226 |
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
}
|
232 |
|
233 |
-
//
|
234 |
-
|
235 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
?>
|
1 |
+
<?php /*
|
|
|
2 |
Plugin Name: Custom Meta Widget
|
3 |
Plugin URI: http://shinraholdings.com/plugins/custom-meta-widget
|
4 |
Description: Clone of the standard Meta widget with options to hide thlogin, admin, entry and comment feed, WordPress.org and /custom links.
|
5 |
+
Version: 1.4.4
|
6 |
Author: bitacre
|
7 |
Author URI: http://shinraholdings.com/
|
8 |
License: GPLv2
|
9 |
Copyright 2012 Shinra Web Holdings (http://shinraholdings.com)
|
10 |
*/
|
11 |
|
12 |
+
/**
|
13 |
+
* CLASS customMetaWidget
|
14 |
+
*/
|
15 |
+
class customMetaWidget extends WP_Widget { // start of class
|
16 |
|
17 |
+
/**
|
18 |
+
* Initialize Classwide Variables
|
19 |
+
*/
|
20 |
+
var $homepage = 'http://shinraholdings.com/plugins/custom-meta-widget/';
|
21 |
+
|
22 |
+
/**
|
23 |
+
* CONSTRUCTOR
|
24 |
+
*/
|
25 |
+
function customMetaWidget() {
|
26 |
// set widget options
|
27 |
$widget_ops = array (
|
28 |
'classname' => 'customMetaWidget',
|
29 |
'description' => __( 'Hide the individual log in/out, admin, feed and WordPress links', 'customMetaWidget' )
|
30 |
);
|
31 |
+
|
32 |
+
// extend widget
|
33 |
$this->WP_Widget( 'customMetaWidget', 'Custom Meta', $widget_ops );
|
34 |
}
|
35 |
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Declare Form Input Options
|
39 |
+
* (not part of WP_Widget class)
|
40 |
+
*/
|
41 |
function get_options() {
|
42 |
+
$keys = array( 'slug', 'type', 'default', 'label', 'before' );
|
43 |
+
|
44 |
+
$values = array(
|
45 |
+
'title' => array( 'title', 'text', __( 'Meta', 'customMetaWidget' ), __( 'Title', 'customMetaWidget' ), '' ),
|
46 |
+
'register' => array( 'register', 'checkbox', 1, __( 'Show "Register/Admin" link?', 'customMetaWidget' ), '' ),
|
47 |
+
'login' => array( 'login', 'checkbox', 1, __( 'Show "Log in/out" link?', 'customMetaWidget' ), '' ),
|
48 |
+
'entryrss' => array( 'entryrss', 'checkbox', 1, __( 'Show "Entries RSS" link?', 'customMetaWidget' ), '' ),
|
49 |
+
'commentrss' => array( 'commentrss', 'checkbox', 1, __( 'Show "Comments RSS" link?', 'customMetaWidget' ), '' ),
|
50 |
+
'wordpress' => array( 'wordpress', 'checkbox', 1, __( 'Show "WordPress.org" link?', 'customMetaWidget' ), '' ),
|
51 |
+
'showcustom' => array( 'showcustom', 'checkbox', 0, __( 'Show the custom link?', 'customMetaWidget' ), 'before' => '' ),
|
52 |
+
'customurl' => array( 'customurl', 'text', '', __( 'URL', 'customMetaWidget' ), ' style="margin-left:20px;"' ),
|
53 |
+
'customtext' => array( 'customtext', 'text', '', __( 'Text', 'customMetaWidget' ), ' style="margin-left:20px;"' ),
|
54 |
+
'linklove' => array( 'linklove', 'checkbox', 0, '<small>' . __( 'An awesome way to support this free plugin!', 'customMetaWidget' ) . '</small>', '' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
);
|
56 |
+
|
57 |
+
// build into multi-array
|
58 |
+
$options = array();
|
59 |
+
foreach( $values as $slug => $sub_values ) {
|
60 |
+
$temp = array();
|
61 |
+
for( $i=0; $i<5; $i++ )
|
62 |
+
$temp[$keys[$i]] = $sub_values[$i];
|
63 |
+
$options[$slug] = $temp;
|
64 |
+
}
|
65 |
return $options;
|
66 |
}
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
+
/**
|
70 |
+
* Declare Form Input Defaults
|
71 |
+
* (not part of WP_Widget Class)
|
72 |
+
*/
|
73 |
+
function get_defaults() {
|
74 |
+
// create container and loop
|
75 |
+
$defaults = array();
|
76 |
+
foreach( $this->get_options() as $key => $value )
|
77 |
+
$defaults[$key] = $value['default'];
|
78 |
+
return $defaults;
|
79 |
+
}
|
80 |
+
|
81 |
+
|
82 |
+
/**
|
83 |
+
* Declare Form Input Keys
|
84 |
+
* (not part of WP_Widget Class)
|
85 |
+
*/
|
86 |
+
function get_keys() {
|
87 |
+
// create container and loop
|
88 |
+
$keys = array();
|
89 |
+
foreach( $this->get_options() as $key => $value )
|
90 |
+
$keys[] = $key;
|
91 |
+
return $keys;
|
92 |
+
}
|
93 |
+
|
94 |
+
|
95 |
+
/**
|
96 |
+
* Draw Widget Options
|
97 |
+
*/
|
98 |
+
function form( $instance ) {
|
99 |
// parse instance values over defaults
|
100 |
+
$instance = wp_parse_args( ( array ) $instance, $this->get_defaults() );
|
101 |
+
|
102 |
+
// loop through input option
|
103 |
+
foreach( $this->get_options() as $slug => $value ) :
|
104 |
+
extract( $value );
|
105 |
+
$id = $this->get_field_id( $slug );
|
106 |
+
$name = $this->get_field_name( $slug );
|
107 |
+
if( $type == 'text' ) {
|
108 |
+
$value = $instance[$slug];
|
109 |
+
$checked = '';
|
110 |
+
$label = $label . ': ';
|
111 |
+
} else {
|
112 |
+
$checked = checked( $instance[$slug], 1, false );
|
113 |
+
$value = 1;
|
114 |
+
}
|
115 |
+
$label_tag = '<label style="margin:0 3px;" for="' . $id . '">' . $label . '</label>';
|
116 |
+
?>
|
117 |
+
|
118 |
+
|
119 |
+
<!-- <?php echo $slug; ?> -->
|
120 |
+
|
121 |
+
<p<?php echo $before; ?>><?php echo ( $type == 'text' ? $label_tag : '' ); ?><input class="<?php echo ( $type == 'text' ? 'widefat' : 'check' ); ?>" id="<?php echo $id; ?>" name="<?php echo $name; ?>" type="<?php echo $type; ?>" value="<?php echo $value; ?>" <?php echo $checked; ?>/><?php echo ( $type == 'checkbox' ? $label_tag : '' ); ?></p>
|
122 |
+
|
123 |
+
<?php endforeach; ?>
|
124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
|
127 |
+
<?php // check for errors
|
128 |
+
if( $instance['showcustom'] ) { // IF 'showcustom' is checked, AND
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
+
if( empty( $instance['customtext']) && empty( $instance['customurl'] ) ) // 1. no link and no URL
|
131 |
+
$message = 'You have a custom link with no URL or text!';
|
132 |
+
|
133 |
+
elseif( empty( $instance['customtext'] ) ) // 2. no link
|
134 |
+
$message = 'You have a custom link with no text!';
|
135 |
+
|
136 |
+
elseif( empty( $instance['customurl' ] ) ) // 3. no url
|
137 |
+
$message = 'You have a custom link with no URL!';
|
138 |
+
|
139 |
}
|
140 |
+
if( isset( $message ) ) // set message (or don't)
|
141 |
+
echo '<p style="color:#f00; font-weight:bold;" >' . __( $message, 'customMetaWidget' ) . '</p>';
|
142 |
}
|
143 |
|
144 |
+
|
145 |
+
/**
|
146 |
+
* SAVE WIDGET OPTIONS
|
147 |
+
*/
|
148 |
function update( $new_instance, $old_instance) {
|
149 |
+
$instance = $old_instance; // move over unchanged
|
|
|
150 |
|
151 |
+
foreach( $this->get_keys() as $key ) // parse new values over
|
152 |
$instance[$key] = $new_instance[$key];
|
153 |
|
154 |
return $instance;
|
157 |
// ACTUAL WIDGET OUTPUT
|
158 |
function widget( $args, $instance ) {
|
159 |
extract( $args, EXTR_SKIP ); // extract arguments
|
160 |
+
$title = empty( $instance['title'] ) ? __( 'Meta', 'customMetaWidget' ) : apply_filters( 'widget_title', $instance['title'] ); // if no title, use default ?>
|
161 |
+
|
|
|
|
|
162 |
<!--
|
163 |
+
<?php _e( 'Plugin: Custom Meta Widget', 'customMetaWidget' ); ?>
|
164 |
+
<?php _e( 'Plugin URL', 'customMetaWidget' ); ?>: <?php echo $this->homepage; ?>
|
165 |
-->
|
|
|
166 |
|
167 |
+
|
168 |
+
<?php echo $before_widget; // (from theme) ?>
|
169 |
+
<?php echo $before_title . esc_attr( $instance['title'] ) . $after_title; ?>
|
170 |
+
<ul>
|
171 |
|
|
|
|
|
172 |
|
173 |
+
<?php // ADD LINKS
|
174 |
+
$content = array(
|
175 |
+
'register' => wp_register( '<li>', '</li>', false ),
|
176 |
+
|
177 |
+
'login' => '<li>' . wp_loginout( NULL, false ) . '</li>',
|
178 |
+
|
179 |
+
'entryrss' => sprintf( __( '%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s', 'customMetaWidget' ),
|
180 |
+
'<li><a href="' . get_bloginfo( 'rss2_url' ) . '" title="', '">',
|
181 |
+
'<abbr title="' . __( 'Really Simple Syndication', 'customMetaWidget' ) . '">', '</abbr></a></li>' ),
|
182 |
+
|
183 |
+
'commentrss' => sprintf( __( '%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s', 'customMetaWidget' ),
|
184 |
+
'<li><a href="' . get_bloginfo( 'comments_rss2_url' ) . '" title="', '">',
|
185 |
+
'<abbr title="' . __( 'Really Simple Syndication', 'customMetaWidget' ) . '">', '</abbr></a></li>' ),
|
186 |
+
|
187 |
+
'wordpress' => '<li><a href="http://wordpress.org/" title="' .
|
188 |
+
__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'customMetaWidget' ) .
|
189 |
+
'">WordPress.org</a></li>',
|
190 |
|
191 |
+
'showcustom' => ( !empty( $instance['customtext'] ) && !empty( $instance['customurl'] ) ?
|
192 |
+
'<li><a href="' . esc_url( $instance['customurl'] ) . '">' . esc_attr( $instance['customtext'] ) . '</a></li>' :
|
193 |
+
'<!--' . __( '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.', 'customMetaWidget' ) . '-->' ),
|
194 |
+
|
195 |
+
'linklove' => '<li><a href="' . $this->homepage . '" title="' . __( 'WordPress Plugin Homepage', 'customMetaWidget' ) . '">' . __( 'Custom Meta', 'customMetaWidget' ) . '</a></li>'
|
196 |
|
197 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
|
200 |
+
foreach( $content as $checked => $output )
|
201 |
+
if( (int) esc_attr( $instance[$checked] ) === 1 ) echo $output; ?>
|
|
|
202 |
|
203 |
+
</ul>
|
204 |
+
|
205 |
+
<?php echo $after_widget;
|
206 |
+
|
207 |
}
|
208 |
|
209 |
+
} // end class
|
210 |
+
|
211 |
+
|
212 |
+
/**
|
213 |
+
* Unregister WP_Widget_Meta
|
214 |
+
*/
|
215 |
+
function customMetaWidget_swap() {
|
216 |
+
unregister_widget( 'WP_Widget_Meta' );
|
217 |
+
register_widget( 'customMetaWidget' );
|
218 |
+
} add_action( 'widgets_init', 'customMetaWidget_swap' ); // hook
|
219 |
+
|
220 |
+
|
221 |
+
/**
|
222 |
+
* Load TextDomain
|
223 |
+
*/
|
224 |
+
function customMetaWidget_i18n() {
|
225 |
+
load_plugin_textdomain( 'customMetaWidget', NULL, trailingslashit( basename( dirname(__FILE__) ) ) . 'lang' );
|
226 |
+
} add_action( 'plugins_loaded', 'customMetaWidget_i18n' ); // hook
|
227 |
+
|
228 |
?>
|
lang/customMetaWidget-da_DK.mo
CHANGED
Binary file
|
lang/customMetaWidget-da_DK.po
CHANGED
@@ -1,150 +1,150 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Custom Meta Widget v1.4.
|
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:
|
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-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-
|
16 |
-
"
|
17 |
-
"X-Poedit-
|
18 |
-
"X-Poedit-
|
19 |
-
"X-Poedit-
|
20 |
-
"X-
|
21 |
-
|
22 |
-
|
23 |
-
#: customMeta.php:
|
24 |
-
|
25 |
-
msgid "Meta"
|
26 |
-
msgstr "Meta"
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
msgid "Title"
|
31 |
-
msgstr "Titel"
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
msgid "Show \"Register/Admin\" link?"
|
36 |
-
msgstr "Vis \"Registrér/Admin\"-link?"
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
msgid "Show \"Log in/out\" link?"
|
41 |
-
msgstr "Vis \"Log ind/ud\"-link?"
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
msgid "Show \"Entries RSS\" link?"
|
46 |
-
msgstr "Vis \"Indlæg RSS\"-link?"
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
msgid "Show \"Comments RSS\" link?"
|
51 |
-
msgstr "Vis \"Kommentar RSS\"-link?"
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
msgid "URL"
|
56 |
-
msgstr "URL"
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
msgid "Text"
|
61 |
-
msgstr "Tekst"
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
msgid "Show Plugin link?"
|
66 |
-
msgstr "Vis plugin-link?"
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
msgid "An awesome way to support this free plugin!"
|
71 |
-
msgstr "En fantastisk måde at støtte dette gratis plugin!"
|
72 |
-
|
73 |
-
|
74 |
-
|
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 |
-
|
79 |
-
|
80 |
-
msgid "You have a custom link with no text!"
|
81 |
-
msgstr "Du har et tilpasset link uden tekst!"
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
msgid "You have a custom link with no URL!"
|
86 |
-
msgstr "Du har et tilpasset link uden url!"
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
msgid "Plugin: Custom Meta Widget"
|
91 |
-
msgstr "Plugin: Custom Meta Widget"
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
msgid "Plugin URL"
|
96 |
-
msgstr "Plugin-url"
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
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 |
-
|
105 |
-
|
106 |
-
|
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 |
-
|
111 |
-
|
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 |
-
|
116 |
-
|
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 |
-
|
121 |
-
|
122 |
-
msgid "WordPress Plugin Homepage"
|
123 |
-
msgstr "WordPress-pluginhjemmeside"
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
msgid "Custom Meta"
|
128 |
-
msgstr "Tilpasset Meta"
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
msgid "Show \"WordPress.org\" link?"
|
133 |
-
msgstr "Vis \"WordPress.org\"-link?"
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
msgid "Show the custom link?"
|
138 |
-
msgstr "Vis det tilpassede link?"
|
139 |
-
|
140 |
-
|
141 |
-
#: customMeta.php:
|
142 |
-
|
143 |
-
msgid "Really Simple Syndication"
|
144 |
-
msgstr "Virkelig simpel syndikering"
|
145 |
-
|
146 |
-
|
147 |
-
|
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 |
-
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.3\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: 2013-01-21 03:36:18+0000\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-Language: Danish\n"
|
14 |
+
"X-Poedit-Country: DENMARK\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:179
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Titel"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Vis \"Registrér/Admin\"-link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Vis \"Log ind/ud\"-link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Vis \"Indlæg RSS\"-link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Vis \"Kommentar RSS\"-link?"
|
52 |
+
|
53 |
+
#: customMeta.php:82
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:89
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Tekst"
|
62 |
+
|
63 |
+
#: customMeta.php:96
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Vis plugin-link?"
|
67 |
+
|
68 |
+
#: customMeta.php:147
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "En fantastisk måde at støtte dette gratis plugin!"
|
72 |
+
|
73 |
+
#: customMeta.php:154
|
74 |
+
#@ customMetaWidget
|
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 |
+
#: customMeta.php:157
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "Du har et tilpasset link uden tekst!"
|
82 |
+
|
83 |
+
#: customMeta.php:161
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "Du har et tilpasset link uden url!"
|
87 |
+
|
88 |
+
#: customMeta.php:184
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:185
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin-url"
|
97 |
+
|
98 |
+
#: customMeta.php:199
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
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 |
+
#: customMeta.php:205
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
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 |
+
#: customMeta.php:210
|
111 |
+
#@ customMetaWidget
|
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 |
+
#: customMeta.php:219
|
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 "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 |
+
#: customMeta.php:224
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress-pluginhjemmeside"
|
124 |
+
|
125 |
+
#: customMeta.php:224
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Tilpasset Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Vis \"WordPress.org\"-link?"
|
134 |
+
|
135 |
+
#: customMeta.php:75
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Vis det tilpassede link?"
|
139 |
+
|
140 |
+
#: customMeta.php:201
|
141 |
+
#: customMeta.php:207
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "Virkelig simpel syndikering"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
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-de_DE.mo
ADDED
Binary file
|
lang/customMetaWidget-de_DE.po
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.3\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: 2013-01-21 03:29:01+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:179
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Titel"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "Zeige \"Anmelden/Admin\" link?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "Zeige \"Einloggen/Ausloggen\" link?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "Zeige \"RSS Abonnieren\"-link?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "Zeige \"RSS Kommentare\" Link?"
|
52 |
+
|
53 |
+
#: customMeta.php:82
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:89
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Text"
|
62 |
+
|
63 |
+
#: customMeta.php:96
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "Zeige Plugin Link?"
|
67 |
+
|
68 |
+
#: customMeta.php:147
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "Eine grossartige Möglichkeit, dieses gratis Plugin zu unterstützen!"
|
72 |
+
|
73 |
+
#: customMeta.php:154
|
74 |
+
#@ customMetaWidget
|
75 |
+
msgid "You have a custom link with no URL or text!"
|
76 |
+
msgstr "Du hast einen benutzerdefinierten Link ohne URL oder Text!"
|
77 |
+
|
78 |
+
#: customMeta.php:157
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "Du hast einen benutzerdefinierten Link ohne Text!"
|
82 |
+
|
83 |
+
#: customMeta.php:161
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "Du hast einen benutzerdefinierten Link ohne URL!"
|
87 |
+
|
88 |
+
#: customMeta.php:184
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Custom Meta Widget"
|
92 |
+
|
93 |
+
#: customMeta.php:185
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "URL des Plugin"
|
97 |
+
|
98 |
+
#: customMeta.php:199
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSyndikat diese Seite nutzt RSS 2.0%2$sBeiträge %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:205
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSyndikat diese Seite nutzt RSS 2.0%2$sKommentare %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:210
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Von WordPress, top moderne semantische, indviduelle Plattform für Veröffentlichungen."
|
114 |
+
|
115 |
+
#: customMeta.php:219
|
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 "Fehler: \"Zeige benutzerdefinierten Link\" ist ausgewählt, aber entweder der Text oder die URL für den Link ist nicht definiert. Der Link wurde nicht angezeigt, da er sonst defekt wäre. Überprüfe die Einstellungen für dein benutzerdefiniertes Custom Meta Widget."
|
119 |
+
|
120 |
+
#: customMeta.php:224
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "WordPress Plugin Homepage"
|
124 |
+
|
125 |
+
#: customMeta.php:224
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Benutzerdefiniertes Meta"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "Zeige \"WordPress.org\" Link?"
|
134 |
+
|
135 |
+
#: customMeta.php:75
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "Zeige den benutzerdefinierten Link?"
|
139 |
+
|
140 |
+
#: customMeta.php:201
|
141 |
+
#: customMeta.php:207
|
142 |
+
#@ customMetaWidget
|
143 |
+
msgid "Really Simple Syndication"
|
144 |
+
msgstr "RSS"
|
145 |
+
|
146 |
+
#: customMeta.php:20
|
147 |
+
#@ customMetaWidget
|
148 |
+
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
149 |
+
msgstr "Verstecke die einzelnen Anmelde/Abmelde, Admin, Feed und WordPress Links"
|
150 |
+
|
lang/customMetaWidget-en_AU.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Custom Meta Widget v1.4.
|
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:
|
7 |
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
#: customMeta.php:32
|
23 |
-
#: customMeta.php:
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
@@ -50,79 +50,79 @@ msgstr "Show \"Entries RSS\" link?"
|
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
-
#: customMeta.php:
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
-
#: customMeta.php:
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
-
#: customMeta.php:
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
-
#: customMeta.php:
|
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:
|
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:
|
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:
|
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:
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
-
#: customMeta.php:
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
-
#: customMeta.php:
|
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:
|
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:
|
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:
|
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:
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
-
#: customMeta.php:
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
@@ -132,13 +132,13 @@ msgstr "Custom Meta"
|
|
132 |
msgid "Show \"WordPress.org\" link?"
|
133 |
msgstr "Show \"WordPress.org\" link?"
|
134 |
|
135 |
-
#: customMeta.php:
|
136 |
#@ customMetaWidget
|
137 |
msgid "Show the custom link?"
|
138 |
msgstr "Show the custom link?"
|
139 |
|
140 |
-
#: customMeta.php:
|
141 |
-
#: customMeta.php:
|
142 |
#@ customMetaWidget
|
143 |
msgid "Really Simple Syndication"
|
144 |
msgstr "Really Simple Syndication"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.3\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: 2013-01-21 03:36:23+0000\n"
|
7 |
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
#: customMeta.php:32
|
23 |
+
#: customMeta.php:179
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
+
#: customMeta.php:82
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
+
#: customMeta.php:89
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
+
#: customMeta.php:96
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
+
#: customMeta.php:147
|
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:154
|
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:157
|
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:161
|
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:184
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
+
#: customMeta.php:185
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
+
#: customMeta.php:199
|
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:205
|
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:210
|
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:219
|
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:224
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
+
#: customMeta.php:224
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
132 |
msgid "Show \"WordPress.org\" link?"
|
133 |
msgstr "Show \"WordPress.org\" link?"
|
134 |
|
135 |
+
#: customMeta.php:75
|
136 |
#@ customMetaWidget
|
137 |
msgid "Show the custom link?"
|
138 |
msgstr "Show the custom link?"
|
139 |
|
140 |
+
#: customMeta.php:201
|
141 |
+
#: customMeta.php:207
|
142 |
#@ customMetaWidget
|
143 |
msgid "Really Simple Syndication"
|
144 |
msgstr "Really Simple Syndication"
|
lang/customMetaWidget-en_CA.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Custom Meta Widget v1.4.
|
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:
|
7 |
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
#: customMeta.php:32
|
23 |
-
#: customMeta.php:
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
@@ -50,79 +50,79 @@ msgstr "Show \"Entries RSS\" link?"
|
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
-
#: customMeta.php:
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
-
#: customMeta.php:
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
-
#: customMeta.php:
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
-
#: customMeta.php:
|
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:
|
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:
|
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:
|
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:
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
-
#: customMeta.php:
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
-
#: customMeta.php:
|
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:
|
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:
|
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:
|
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:
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
-
#: customMeta.php:
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
@@ -132,13 +132,13 @@ msgstr "Custom Meta"
|
|
132 |
msgid "Show \"WordPress.org\" link?"
|
133 |
msgstr "Show \"WordPress.org\" link?"
|
134 |
|
135 |
-
#: customMeta.php:
|
136 |
#@ customMetaWidget
|
137 |
msgid "Show the custom link?"
|
138 |
msgstr "Show the custom link?"
|
139 |
|
140 |
-
#: customMeta.php:
|
141 |
-
#: customMeta.php:
|
142 |
#@ customMetaWidget
|
143 |
msgid "Really Simple Syndication"
|
144 |
msgstr "Really Simple Syndication"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.3\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: 2013-01-21 03:36:28+0000\n"
|
7 |
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
#: customMeta.php:32
|
23 |
+
#: customMeta.php:179
|
24 |
#@ customMetaWidget
|
25 |
msgid "Meta"
|
26 |
msgstr "Meta"
|
50 |
msgid "Show \"Comments RSS\" link?"
|
51 |
msgstr "Show \"Comments RSS\" link?"
|
52 |
|
53 |
+
#: customMeta.php:82
|
54 |
#@ customMetaWidget
|
55 |
msgid "URL"
|
56 |
msgstr "URL"
|
57 |
|
58 |
+
#: customMeta.php:89
|
59 |
#@ customMetaWidget
|
60 |
msgid "Text"
|
61 |
msgstr "Text"
|
62 |
|
63 |
+
#: customMeta.php:96
|
64 |
#@ customMetaWidget
|
65 |
msgid "Show Plugin link?"
|
66 |
msgstr "Show Plugin link?"
|
67 |
|
68 |
+
#: customMeta.php:147
|
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:154
|
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:157
|
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:161
|
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:184
|
89 |
#@ customMetaWidget
|
90 |
msgid "Plugin: Custom Meta Widget"
|
91 |
msgstr "Plugin: Custom Meta Widget"
|
92 |
|
93 |
+
#: customMeta.php:185
|
94 |
#@ customMetaWidget
|
95 |
msgid "Plugin URL"
|
96 |
msgstr "Plugin URL"
|
97 |
|
98 |
+
#: customMeta.php:199
|
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:205
|
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:210
|
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:219
|
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:224
|
121 |
#@ customMetaWidget
|
122 |
msgid "WordPress Plugin Homepage"
|
123 |
msgstr "WordPress Plugin Homepage"
|
124 |
|
125 |
+
#: customMeta.php:224
|
126 |
#@ customMetaWidget
|
127 |
msgid "Custom Meta"
|
128 |
msgstr "Custom Meta"
|
132 |
msgid "Show \"WordPress.org\" link?"
|
133 |
msgstr "Show \"WordPress.org\" link?"
|
134 |
|
135 |
+
#: customMeta.php:75
|
136 |
#@ customMetaWidget
|
137 |
msgid "Show the custom link?"
|
138 |
msgstr "Show the custom link?"
|
139 |
|
140 |
+
#: customMeta.php:201
|
141 |
+
#: customMeta.php:207
|
142 |
#@ customMetaWidget
|
143 |
msgid "Really Simple Syndication"
|
144 |
msgstr "Really Simple Syndication"
|
lang/customMetaWidget-es_MX.po
CHANGED
@@ -1,161 +1,150 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Custom Meta Widget v1.4.
|
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:
|
7 |
-
"Last-Translator: bitacre <bitacre@gmail.com>\n"
|
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 |
-
msgid "Meta"
|
26 |
-
msgstr "Meta"
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
msgid "Title"
|
31 |
-
msgstr "Título"
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
msgid "Show \"Register/Admin\" link?"
|
36 |
-
msgstr "¿Mostrar enlaces de registrarse/administración?"
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
msgid "Show \"Log in/out\" link?"
|
41 |
-
msgstr "¿Mostrar enlace de conectarse/desconectarse?"
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
msgid "Show \"Entries RSS\" link?"
|
46 |
-
msgstr "¿Mostrar enlace de entradas RSS?"
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
msgid "Show \"Comments RSS\" link?"
|
51 |
-
msgstr "¿Mostrar enlace de Comentarios RSS?"
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
msgid "URL"
|
56 |
-
msgstr "URL"
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
msgid "Text"
|
61 |
-
msgstr "Texto"
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
msgid "Show Plugin link?"
|
66 |
-
msgstr "¿Mostrar enlace de plugin?"
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
msgid "An awesome way to support this free plugin!"
|
71 |
-
msgstr "¡Una manera impresionante para apoyar este plugin gratis!"
|
72 |
-
|
73 |
-
|
74 |
-
|
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 |
-
|
79 |
-
|
80 |
-
msgid "You have a custom link with no text!"
|
81 |
-
msgstr "¡Usted tiene un enlace personalizado, sin texto!"
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
msgid "You have a custom link with no URL!"
|
86 |
-
msgstr "¡Usted tiene un enlace personalizado, sin dirección!"
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
msgid "Plugin: Custom Meta Widget"
|
91 |
-
msgstr "Plugin: Widget Meta Personalizada"
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
msgid "Plugin URL"
|
96 |
-
msgstr "Plugin dirección"
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"
|
118 |
-
"de
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
msgid ""
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
"
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
msgid "
|
149 |
-
msgstr "
|
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"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.3\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: 2013-01-21 03:36:38+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:179
|
24 |
+
#@ customMetaWidget
|
25 |
+
msgid "Meta"
|
26 |
+
msgstr "Meta"
|
27 |
+
|
28 |
+
#: customMeta.php:33
|
29 |
+
#@ customMetaWidget
|
30 |
+
msgid "Title"
|
31 |
+
msgstr "Título"
|
32 |
+
|
33 |
+
#: customMeta.php:40
|
34 |
+
#@ customMetaWidget
|
35 |
+
msgid "Show \"Register/Admin\" link?"
|
36 |
+
msgstr "¿Mostrar enlaces de registrarse/administración?"
|
37 |
+
|
38 |
+
#: customMeta.php:47
|
39 |
+
#@ customMetaWidget
|
40 |
+
msgid "Show \"Log in/out\" link?"
|
41 |
+
msgstr "¿Mostrar enlace de conectarse/desconectarse?"
|
42 |
+
|
43 |
+
#: customMeta.php:54
|
44 |
+
#@ customMetaWidget
|
45 |
+
msgid "Show \"Entries RSS\" link?"
|
46 |
+
msgstr "¿Mostrar enlace de entradas RSS?"
|
47 |
+
|
48 |
+
#: customMeta.php:61
|
49 |
+
#@ customMetaWidget
|
50 |
+
msgid "Show \"Comments RSS\" link?"
|
51 |
+
msgstr "¿Mostrar enlace de Comentarios RSS?"
|
52 |
+
|
53 |
+
#: customMeta.php:82
|
54 |
+
#@ customMetaWidget
|
55 |
+
msgid "URL"
|
56 |
+
msgstr "URL"
|
57 |
+
|
58 |
+
#: customMeta.php:89
|
59 |
+
#@ customMetaWidget
|
60 |
+
msgid "Text"
|
61 |
+
msgstr "Texto"
|
62 |
+
|
63 |
+
#: customMeta.php:96
|
64 |
+
#@ customMetaWidget
|
65 |
+
msgid "Show Plugin link?"
|
66 |
+
msgstr "¿Mostrar enlace de plugin?"
|
67 |
+
|
68 |
+
#: customMeta.php:147
|
69 |
+
#@ customMetaWidget
|
70 |
+
msgid "An awesome way to support this free plugin!"
|
71 |
+
msgstr "¡Una manera impresionante para apoyar este plugin gratis!"
|
72 |
+
|
73 |
+
#: customMeta.php:154
|
74 |
+
#@ customMetaWidget
|
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 |
+
#: customMeta.php:157
|
79 |
+
#@ customMetaWidget
|
80 |
+
msgid "You have a custom link with no text!"
|
81 |
+
msgstr "¡Usted tiene un enlace personalizado, sin texto!"
|
82 |
+
|
83 |
+
#: customMeta.php:161
|
84 |
+
#@ customMetaWidget
|
85 |
+
msgid "You have a custom link with no URL!"
|
86 |
+
msgstr "¡Usted tiene un enlace personalizado, sin dirección!"
|
87 |
+
|
88 |
+
#: customMeta.php:184
|
89 |
+
#@ customMetaWidget
|
90 |
+
msgid "Plugin: Custom Meta Widget"
|
91 |
+
msgstr "Plugin: Widget Meta Personalizada"
|
92 |
+
|
93 |
+
#: customMeta.php:185
|
94 |
+
#@ customMetaWidget
|
95 |
+
msgid "Plugin URL"
|
96 |
+
msgstr "Plugin dirección"
|
97 |
+
|
98 |
+
#: customMeta.php:199
|
99 |
+
#, php-format
|
100 |
+
#@ customMetaWidget
|
101 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
102 |
+
msgstr "%1$sSuscribirse a este sitio por medio de RSS 2.0%2$sEntradas %3$sRSS%4$s"
|
103 |
+
|
104 |
+
#: customMeta.php:205
|
105 |
+
#, php-format
|
106 |
+
#@ customMetaWidget
|
107 |
+
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
108 |
+
msgstr "%1$sSuscribirse a este sitio por medio de RSS 2.0%2$sComentarios %3$sRSS%4$s"
|
109 |
+
|
110 |
+
#: customMeta.php:210
|
111 |
+
#@ customMetaWidget
|
112 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
113 |
+
msgstr "Funciona con WordPress, el estado de la técnica de la plataforma semántica de publicación personal."
|
114 |
+
|
115 |
+
#: customMeta.php:219
|
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: \"Morstrar Enlace de la Personalizada\" está activada, pero el texto o la URL de ese enlace no se especifican. El vínculo no se muestra porque se rompería. Compruebe la configuración de tu Widget Personalizado Meta."
|
119 |
+
|
120 |
+
#: customMeta.php:224
|
121 |
+
#@ customMetaWidget
|
122 |
+
msgid "WordPress Plugin Homepage"
|
123 |
+
msgstr "Página de inicio de WordPress Plugin"
|
124 |
+
|
125 |
+
#: customMeta.php:224
|
126 |
+
#@ customMetaWidget
|
127 |
+
msgid "Custom Meta"
|
128 |
+
msgstr "Meta Personalizado"
|
129 |
+
|
130 |
+
#: customMeta.php:68
|
131 |
+
#@ customMetaWidget
|
132 |
+
msgid "Show \"WordPress.org\" link?"
|
133 |
+
msgstr "¿Mostrar enlaces de \"WordPress.org\"?"
|
134 |
+
|
135 |
+
#: customMeta.php:75
|
136 |
+
#@ customMetaWidget
|
137 |
+
msgid "Show the custom link?"
|
138 |
+
msgstr "¿Mostrar enlaces personalizada?"
|
139 |
+
|
140 |
+
#: customMeta.php:201
|
141 |
+
#: customMeta.php:207
|
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 "Ocultar el enlaces de inicio/cierre de sesión, administración, alimentación y WordPress"
|
150 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/customMetaWidget-ru_RU.mo
CHANGED
Binary file
|
lang/customMetaWidget-ru_RU.po
CHANGED
@@ -1,124 +1,150 @@
|
|
1 |
-
# Copyright (C) 2012
|
2 |
-
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
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"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
|
|
|
|
|
|
|
|
16 |
|
17 |
#: customMeta.php:20
|
|
|
18 |
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
19 |
-
msgstr ""
|
20 |
-
"Скрывает/выводит ссылки \"Вход\" и \"Выход\", админпанель, RSS ссылки и "
|
21 |
-
"ссылку на главную страницу Wordpress."
|
22 |
|
23 |
-
#: customMeta.php:32
|
|
|
|
|
24 |
msgid "Meta"
|
25 |
msgstr "Мета"
|
26 |
|
27 |
#: customMeta.php:33
|
|
|
28 |
msgid "Title"
|
29 |
msgstr "Название"
|
30 |
|
31 |
#: customMeta.php:40
|
|
|
32 |
msgid "Show \"Register/Admin\" link?"
|
33 |
msgstr "Показывать ссылку \"Регистрация/Админпанель\"?"
|
34 |
|
35 |
#: customMeta.php:47
|
|
|
36 |
msgid "Show \"Log in/out\" link?"
|
37 |
msgstr "Показывать ссылку \"Вход\"/\"Выход\"?"
|
38 |
|
39 |
#: customMeta.php:54
|
|
|
40 |
msgid "Show \"Entries RSS\" link?"
|
41 |
msgstr "Показывать ссылку \"RSS записи\"?"
|
42 |
|
43 |
#: customMeta.php:61
|
|
|
44 |
msgid "Show \"Comments RSS\" link?"
|
45 |
msgstr "Показывать ссылку \"RSS комментарии\"?"
|
46 |
|
47 |
#: customMeta.php:68
|
|
|
48 |
msgid "Show \"WordPress.org\" link?"
|
49 |
msgstr "Показывать ссылку \"WordPress.org\"?"
|
50 |
|
51 |
-
#: customMeta.php:
|
|
|
52 |
msgid "Show the custom link?"
|
53 |
msgstr "Показывать пользовательскую ссылку?"
|
54 |
|
55 |
-
#: customMeta.php:
|
|
|
56 |
msgid "URL"
|
57 |
msgstr "Ссылка"
|
58 |
|
59 |
-
#: customMeta.php:
|
|
|
60 |
msgid "Text"
|
61 |
msgstr "Текст"
|
62 |
|
63 |
-
#: customMeta.php:
|
|
|
64 |
msgid "Show Plugin link?"
|
65 |
msgstr "Показыть ссылку на страницу плагина?"
|
66 |
|
67 |
-
#: customMeta.php:
|
|
|
68 |
msgid "An awesome way to support this free plugin!"
|
69 |
msgstr "Это способ поддержки плагина!"
|
70 |
|
71 |
-
#: customMeta.php:
|
|
|
72 |
msgid "You have a custom link with no URL or text!"
|
73 |
msgstr "Ваша ссылка без адреса или текста!"
|
74 |
|
75 |
-
#: customMeta.php:
|
|
|
76 |
msgid "You have a custom link with no text!"
|
77 |
msgstr "Ваша ссылка без текста!"
|
78 |
|
79 |
-
#: customMeta.php:
|
|
|
80 |
msgid "You have a custom link with no URL!"
|
81 |
msgstr "Ваша ссылка без адреса!"
|
82 |
|
83 |
-
#: customMeta.php:
|
|
|
84 |
msgid "Plugin: Custom Meta Widget"
|
85 |
msgstr "Плагин: Custom Meta Widget"
|
86 |
|
87 |
-
#: customMeta.php:
|
|
|
88 |
msgid "Plugin URL"
|
89 |
msgstr "Адрес плагина"
|
90 |
|
91 |
-
#: customMeta.php:
|
|
|
|
|
92 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
93 |
msgstr "%1$sИсользуется RSS 2.0%2$sЗаписи %3$sRSS%4$s"
|
94 |
|
95 |
-
#: customMeta.php:
|
|
|
|
|
96 |
msgid "Really Simple Syndication"
|
97 |
msgstr "RSS"
|
98 |
|
99 |
-
#: customMeta.php:
|
|
|
|
|
100 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
101 |
msgstr "%1$sИсользуется RSS 2.0%2$sКомментарии %3$sRSS%4$s"
|
102 |
|
103 |
-
#: customMeta.php:
|
104 |
-
|
105 |
-
"Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
106 |
msgstr "Работает на WordPress. Современной платформе для блогов"
|
107 |
|
108 |
-
#: customMeta.php:
|
109 |
-
|
110 |
-
"Error: \"Show Custom Link\" is checked, but either the text or URL for that "
|
111 |
-
"
|
112 |
-
"broken. Check the settings for your Custom Meta widget."
|
113 |
-
msgstr ""
|
114 |
-
"Ошибка: \"Показывать пользовательскию ссылку\" проверена, но текст или адрес "
|
115 |
-
"для этой ссылки не найдены. Ссылка не будет показана, потому что она "
|
116 |
-
"некорректна. Проверьте настройки виджета Custom Meta."
|
117 |
|
118 |
-
#: customMeta.php:
|
|
|
119 |
msgid "WordPress Plugin Homepage"
|
120 |
msgstr "Страница плагина в WordPress"
|
121 |
|
122 |
-
#: customMeta.php:
|
|
|
123 |
msgid "Custom Meta"
|
124 |
-
msgstr ""
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Custom Meta Widget v1.4.3\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-meta-widget\n"
|
5 |
"POT-Creation-Date: 2012-08-28 14:39:17+00:00\n"
|
6 |
+
"PO-Revision-Date: 2013-01-21 03:37:08+0000\n"
|
7 |
+
"Last-Translator: Вадим <vadim.artdev@gmail.com>\n"
|
8 |
+
"Language-Team: VadDevArt <vadim.artdev@gmail.com>\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=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 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:20
|
23 |
+
#@ customMetaWidget
|
24 |
msgid "Hide the individual log in/out, admin, feed and WordPress links"
|
25 |
+
msgstr "Скрывает/выводит ссылки \"Вход\" и \"Выход\", админпанель, RSS ссылки и ссылку на главную страницу Wordpress."
|
|
|
|
|
26 |
|
27 |
+
#: customMeta.php:32
|
28 |
+
#: customMeta.php:179
|
29 |
+
#@ customMetaWidget
|
30 |
msgid "Meta"
|
31 |
msgstr "Мета"
|
32 |
|
33 |
#: customMeta.php:33
|
34 |
+
#@ customMetaWidget
|
35 |
msgid "Title"
|
36 |
msgstr "Название"
|
37 |
|
38 |
#: customMeta.php:40
|
39 |
+
#@ customMetaWidget
|
40 |
msgid "Show \"Register/Admin\" link?"
|
41 |
msgstr "Показывать ссылку \"Регистрация/Админпанель\"?"
|
42 |
|
43 |
#: customMeta.php:47
|
44 |
+
#@ customMetaWidget
|
45 |
msgid "Show \"Log in/out\" link?"
|
46 |
msgstr "Показывать ссылку \"Вход\"/\"Выход\"?"
|
47 |
|
48 |
#: customMeta.php:54
|
49 |
+
#@ customMetaWidget
|
50 |
msgid "Show \"Entries RSS\" link?"
|
51 |
msgstr "Показывать ссылку \"RSS записи\"?"
|
52 |
|
53 |
#: customMeta.php:61
|
54 |
+
#@ customMetaWidget
|
55 |
msgid "Show \"Comments RSS\" link?"
|
56 |
msgstr "Показывать ссылку \"RSS комментарии\"?"
|
57 |
|
58 |
#: customMeta.php:68
|
59 |
+
#@ customMetaWidget
|
60 |
msgid "Show \"WordPress.org\" link?"
|
61 |
msgstr "Показывать ссылку \"WordPress.org\"?"
|
62 |
|
63 |
+
#: customMeta.php:75
|
64 |
+
#@ customMetaWidget
|
65 |
msgid "Show the custom link?"
|
66 |
msgstr "Показывать пользовательскую ссылку?"
|
67 |
|
68 |
+
#: customMeta.php:82
|
69 |
+
#@ customMetaWidget
|
70 |
msgid "URL"
|
71 |
msgstr "Ссылка"
|
72 |
|
73 |
+
#: customMeta.php:89
|
74 |
+
#@ customMetaWidget
|
75 |
msgid "Text"
|
76 |
msgstr "Текст"
|
77 |
|
78 |
+
#: customMeta.php:96
|
79 |
+
#@ customMetaWidget
|
80 |
msgid "Show Plugin link?"
|
81 |
msgstr "Показыть ссылку на страницу плагина?"
|
82 |
|
83 |
+
#: customMeta.php:147
|
84 |
+
#@ customMetaWidget
|
85 |
msgid "An awesome way to support this free plugin!"
|
86 |
msgstr "Это способ поддержки плагина!"
|
87 |
|
88 |
+
#: customMeta.php:154
|
89 |
+
#@ customMetaWidget
|
90 |
msgid "You have a custom link with no URL or text!"
|
91 |
msgstr "Ваша ссылка без адреса или текста!"
|
92 |
|
93 |
+
#: customMeta.php:157
|
94 |
+
#@ customMetaWidget
|
95 |
msgid "You have a custom link with no text!"
|
96 |
msgstr "Ваша ссылка без текста!"
|
97 |
|
98 |
+
#: customMeta.php:161
|
99 |
+
#@ customMetaWidget
|
100 |
msgid "You have a custom link with no URL!"
|
101 |
msgstr "Ваша ссылка без адреса!"
|
102 |
|
103 |
+
#: customMeta.php:184
|
104 |
+
#@ customMetaWidget
|
105 |
msgid "Plugin: Custom Meta Widget"
|
106 |
msgstr "Плагин: Custom Meta Widget"
|
107 |
|
108 |
+
#: customMeta.php:185
|
109 |
+
#@ customMetaWidget
|
110 |
msgid "Plugin URL"
|
111 |
msgstr "Адрес плагина"
|
112 |
|
113 |
+
#: customMeta.php:199
|
114 |
+
#, php-format
|
115 |
+
#@ customMetaWidget
|
116 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sEntries %3$sRSS%4$s"
|
117 |
msgstr "%1$sИсользуется RSS 2.0%2$sЗаписи %3$sRSS%4$s"
|
118 |
|
119 |
+
#: customMeta.php:201
|
120 |
+
#: customMeta.php:207
|
121 |
+
#@ customMetaWidget
|
122 |
msgid "Really Simple Syndication"
|
123 |
msgstr "RSS"
|
124 |
|
125 |
+
#: customMeta.php:205
|
126 |
+
#, php-format
|
127 |
+
#@ customMetaWidget
|
128 |
msgid "%1$sSyndicate this site using RSS 2.0%2$sComments %3$sRSS%4$s"
|
129 |
msgstr "%1$sИсользуется RSS 2.0%2$sКомментарии %3$sRSS%4$s"
|
130 |
|
131 |
+
#: customMeta.php:210
|
132 |
+
#@ customMetaWidget
|
133 |
+
msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
|
134 |
msgstr "Работает на WordPress. Современной платформе для блогов"
|
135 |
|
136 |
+
#: customMeta.php:219
|
137 |
+
#@ customMetaWidget
|
138 |
+
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."
|
139 |
+
msgstr "Ошибка: \"Показывать пользовательскию ссылку\" проверена, но текст или адрес для этой ссылки не найдены. Ссылка не будет показана, потому что она некорректна. Проверьте настройки виджета Custom Meta."
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
+
#: customMeta.php:224
|
142 |
+
#@ customMetaWidget
|
143 |
msgid "WordPress Plugin Homepage"
|
144 |
msgstr "Страница плагина в WordPress"
|
145 |
|
146 |
+
#: customMeta.php:224
|
147 |
+
#@ customMetaWidget
|
148 |
msgid "Custom Meta"
|
149 |
+
msgstr "Custom Meta"
|
150 |
+
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
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.5
|
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 |
|
@@ -24,7 +24,7 @@ The standard Meta widget that comes with WordPress offers no customization and r
|
|
24 |
= Why does my Meta widget look the same? =
|
25 |
This plugin does not modify the standard WordPress Meta widget. It is a completely separate widget titled 'Custom Meta.' If you are currently using the standard Meta widget, you will have to remove it from your sidebar and replace it with the Custom Meta widget using the Appearance > Widgets menu.
|
26 |
|
27 |
-
It also looks identical to the standard Meta Widget unless you opt to change which links are shown/hidden in the Appearance > Widgets menu, under the expanded 'Custom Meta' widget
|
28 |
|
29 |
= Which links can I hide/show? =
|
30 |
You can remove any, all, or none of the links which appear on the standard Meta widget. You are also able to add a custom link to the list if you wish.
|
@@ -46,6 +46,12 @@ Most people, myself included, are understandably reluctant to donate real curren
|
|
46 |
2. The widget displayed on the sidebar with 3 links hidden and a custom link added.
|
47 |
3. Comparison of options between the standard and Custom Meta Widget.
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
== Changelog ==
|
50 |
= 1.4.3 =
|
51 |
* Small correction to the ru_RU (Russian) translation
|
@@ -108,6 +114,9 @@ Most people, myself included, are understandably reluctant to donate real curren
|
|
108 |
* There may still be bugs, but I can't find any.
|
109 |
|
110 |
== Upgrade Notice ==
|
|
|
|
|
|
|
111 |
= 1.4.3 =
|
112 |
Small correction to ru_RU (Russian) language translation files, recommended upgrade.
|
113 |
|
@@ -156,6 +165,7 @@ If you would like to help make this plugin available in your native language, pl
|
|
156 |
* en_XX - [bitacre](mailto:lang@shinraholdings.com)
|
157 |
* da_DK - [Kris Thomsen](mailto:mail@kristhomsen.dk)
|
158 |
* ru_RU - [VadDevArt](mailto:vadim.artdev@gmail.com)
|
|
|
159 |
|
160 |
== Readme Generator ==
|
161 |
* This plugin's readme.txt file was generated by the [bitacre Readme Generator](http://shinraholdings.com/tools/readme-gen/) for WordPress Plugins.
|
@@ -165,4 +175,4 @@ If you would like to help make this plugin available in your native language, pl
|
|
165 |
* [plugins@shinraholdings.com](mailto:plugins@shinraholdings.com)
|
166 |
|
167 |
== Donations ==
|
168 |
-
[Donations](http://shinraholdings.com/donate
|
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.5
|
8 |
+
Stable tag: 1.4.4
|
9 |
|
10 |
Clone of the standard Meta widget plus options to hide log in/out, admin, feed and WordPress.org/custom links.
|
11 |
|
24 |
= Why does my Meta widget look the same? =
|
25 |
This plugin does not modify the standard WordPress Meta widget. It is a completely separate widget titled 'Custom Meta.' If you are currently using the standard Meta widget, you will have to remove it from your sidebar and replace it with the Custom Meta widget using the Appearance > Widgets menu.
|
26 |
|
27 |
+
It also looks identical to the standard Meta Widget unless you opt to change which links are shown/hidden in the Appearance > Widgets menu, under the expanded 'Custom Meta' widget.
|
28 |
|
29 |
= Which links can I hide/show? =
|
30 |
You can remove any, all, or none of the links which appear on the standard Meta widget. You are also able to add a custom link to the list if you wish.
|
46 |
2. The widget displayed on the sidebar with 3 links hidden and a custom link added.
|
47 |
3. Comparison of options between the standard and Custom Meta Widget.
|
48 |
|
49 |
+
|
50 |
+
= 1.4.4 =
|
51 |
+
* Added de_DE (German) translation
|
52 |
+
* General update to language files
|
53 |
+
* Major code efficiency upgrades
|
54 |
+
|
55 |
== Changelog ==
|
56 |
= 1.4.3 =
|
57 |
* Small correction to the ru_RU (Russian) translation
|
114 |
* There may still be bugs, but I can't find any.
|
115 |
|
116 |
== Upgrade Notice ==
|
117 |
+
= 1.4.4 =
|
118 |
+
Recommended upgrade, new languages and performance improvement.
|
119 |
+
|
120 |
= 1.4.3 =
|
121 |
Small correction to ru_RU (Russian) language translation files, recommended upgrade.
|
122 |
|
165 |
* en_XX - [bitacre](mailto:lang@shinraholdings.com)
|
166 |
* da_DK - [Kris Thomsen](mailto:mail@kristhomsen.dk)
|
167 |
* ru_RU - [VadDevArt](mailto:vadim.artdev@gmail.com)
|
168 |
+
* de_DE - [Dr. Paolo Colombani](mailto:paolo.colombani@gmail.com)
|
169 |
|
170 |
== Readme Generator ==
|
171 |
* This plugin's readme.txt file was generated by the [bitacre Readme Generator](http://shinraholdings.com/tools/readme-gen/) for WordPress Plugins.
|
175 |
* [plugins@shinraholdings.com](mailto:plugins@shinraholdings.com)
|
176 |
|
177 |
== Donations ==
|
178 |
+
[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!
|