Version Description
- Fix: Notice undefined variable: post_ids, thanks to zytzagoo
- Tweak: Switched translation files storage, from local to WP repository
Download this release
Release Info
Developer | dfactory |
Plugin | Post Views Counter |
Version | 1.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.2
- includes/columns.php +320 -320
- languages/post-views-counter-es_ES.mo +0 -0
- languages/post-views-counter-es_ES.po +0 -486
- languages/post-views-counter-fr_FR.mo +0 -0
- languages/post-views-counter-fr_FR.po +0 -487
- languages/post-views-counter-he_IL.mo +0 -0
- languages/post-views-counter-he_IL.po +0 -703
- languages/post-views-counter-hr.mo +0 -0
- languages/post-views-counter-hr.po +0 -579
- languages/post-views-counter-it_IT.mo +0 -0
- languages/post-views-counter-it_IT.po +0 -492
- languages/post-views-counter-pl_PL.mo +0 -0
- languages/post-views-counter-pl_PL.po +143 -252
- languages/post-views-counter-ru_RU.mo +0 -0
- languages/post-views-counter-ru_RU.po +0 -438
- post-views-counter.php +3 -3
- readme.txt +9 -15
includes/columns.php
CHANGED
@@ -1,320 +1,320 @@
|
|
1 |
-
<?php
|
2 |
-
// exit if accessed directly
|
3 |
-
if ( ! defined( 'ABSPATH' ) )
|
4 |
-
exit;
|
5 |
-
|
6 |
-
/**
|
7 |
-
* Post_Views_Counter_Columns class.
|
8 |
-
*/
|
9 |
-
class Post_Views_Counter_Columns {
|
10 |
-
|
11 |
-
public function __construct() {
|
12 |
-
// actions
|
13 |
-
add_action( 'admin_init', array( $this, 'register_new_column' ) );
|
14 |
-
add_action( 'post_submitbox_misc_actions', array( $this, 'submitbox_views' ) );
|
15 |
-
add_action( 'save_post', array( $this, 'save_post' ), 10, 2 );
|
16 |
-
add_action( 'bulk_edit_custom_box', array( $this, 'quick_edit_custom_box' ), 10, 2 );
|
17 |
-
add_action( 'quick_edit_custom_box', array( $this, 'quick_edit_custom_box') , 10, 2 );
|
18 |
-
add_action( 'wp_ajax_save_bulk_post_views', array( $this, 'save_bulk_post_views' ) );
|
19 |
-
}
|
20 |
-
|
21 |
-
/**
|
22 |
-
* Output post views for single post.
|
23 |
-
*
|
24 |
-
* @global object $post
|
25 |
-
* @global object $wpbd
|
26 |
-
*
|
27 |
-
* @return mixed
|
28 |
-
*/
|
29 |
-
public function submitbox_views() {
|
30 |
-
global $post;
|
31 |
-
|
32 |
-
$post_types = Post_Views_Counter()->options['general']['post_types_count'];
|
33 |
-
|
34 |
-
if ( ! in_array( $post->post_type, (array) $post_types ) )
|
35 |
-
return;
|
36 |
-
|
37 |
-
// break if current user can't edit this post
|
38 |
-
if ( ! current_user_can( 'edit_post', $post->ID ) )
|
39 |
-
return;
|
40 |
-
|
41 |
-
global $wpdb;
|
42 |
-
|
43 |
-
// get total post views
|
44 |
-
$count = $wpdb->get_var(
|
45 |
-
$wpdb->prepare( "
|
46 |
-
SELECT count
|
47 |
-
FROM " . $wpdb->prefix . "post_views
|
48 |
-
WHERE id = %d AND type = 4", absint( $post->ID )
|
49 |
-
)
|
50 |
-
);
|
51 |
-
?>
|
52 |
-
|
53 |
-
<div class="misc-pub-section" id="post-views">
|
54 |
-
|
55 |
-
<?php wp_nonce_field( 'post_views_count', 'pvc_nonce' ); ?>
|
56 |
-
|
57 |
-
<span id="post-views-display">
|
58 |
-
|
59 |
-
<?php echo __( 'Post Views', 'post-views-counter' ) . ': <b>' . number_format_i18n( (int) $count ) . '</b>'; ?>
|
60 |
-
|
61 |
-
</span>
|
62 |
-
|
63 |
-
<?php // restrict editing
|
64 |
-
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
65 |
-
|
66 |
-
if ( $restrict === false || ( $restrict === true && current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) ) ) {
|
67 |
-
?>
|
68 |
-
<a href="#post-views" class="edit-post-views hide-if-no-js"><?php _e( 'Edit', 'post-views-counter' ); ?></a>
|
69 |
-
|
70 |
-
<div id="post-views-input-container" class="hide-if-js">
|
71 |
-
|
72 |
-
<p><?php _e( 'Adjust the views count for this post.', 'post-views-counter' ); ?></p>
|
73 |
-
<input type="hidden" name="current_post_views" id="post-views-current" value="<?php echo (int) $count; ?>" />
|
74 |
-
<input type="text" name="post_views" id="post-views-input" value="<?php echo (int) $count; ?>"/><br />
|
75 |
-
<p>
|
76 |
-
<a href="#post-views" class="save-post-views hide-if-no-js button"><?php _e( 'OK', 'post-views-counter' ); ?></a>
|
77 |
-
<a href="#post-views" class="cancel-post-views hide-if-no-js"><?php _e( 'Cancel', 'post-views-counter' ); ?></a>
|
78 |
-
</p>
|
79 |
-
|
80 |
-
</div>
|
81 |
-
<?php
|
82 |
-
}
|
83 |
-
?>
|
84 |
-
|
85 |
-
</div>
|
86 |
-
<?php
|
87 |
-
}
|
88 |
-
|
89 |
-
/**
|
90 |
-
* Save post views data.
|
91 |
-
*
|
92 |
-
* @param int $post_id
|
93 |
-
* @param object $post
|
94 |
-
*/
|
95 |
-
public function save_post( $post_id, $post ) {
|
96 |
-
|
97 |
-
// break if doing autosave
|
98 |
-
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
|
99 |
-
return $post_id;
|
100 |
-
|
101 |
-
// break if current user can't edit this post
|
102 |
-
if ( ! current_user_can( 'edit_post', $post_id ) )
|
103 |
-
return $post_id;
|
104 |
-
|
105 |
-
// is post views set
|
106 |
-
if ( ! isset( $_POST['post_views'] ) )
|
107 |
-
return $post_id;
|
108 |
-
|
109 |
-
// break if post views in not one of the selected
|
110 |
-
$post_types = Post_Views_Counter()->options['general']['post_types_count'];
|
111 |
-
|
112 |
-
if ( ! in_array( $post->post_type, (array) $post_types ) )
|
113 |
-
return $post_id;
|
114 |
-
|
115 |
-
// break if views editing is restricted
|
116 |
-
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
117 |
-
|
118 |
-
if ( $restrict === true && ! current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) )
|
119 |
-
return $post_id;
|
120 |
-
|
121 |
-
// validate data
|
122 |
-
if ( ! isset( $_POST['pvc_nonce'] ) || ! wp_verify_nonce( $_POST['pvc_nonce'], 'post_views_count' ) )
|
123 |
-
return $post_id;
|
124 |
-
|
125 |
-
global $wpdb;
|
126 |
-
|
127 |
-
$count = apply_filters( 'pvc_update_post_views_count', absint( $_POST['post_views'] ), $post_id );
|
128 |
-
|
129 |
-
// insert or update db post views count
|
130 |
-
$wpdb->query(
|
131 |
-
$wpdb->prepare( "
|
132 |
-
INSERT INTO " . $wpdb->prefix . "post_views (id, type, period, count)
|
133 |
-
VALUES (%d, %d, %s, %d)
|
134 |
-
ON DUPLICATE KEY UPDATE count = %d", $post_id, 4, 'total', $count, $count
|
135 |
-
)
|
136 |
-
);
|
137 |
-
|
138 |
-
do_action( 'pvc_after_update_post_views_count', $post_id );
|
139 |
-
}
|
140 |
-
|
141 |
-
/**
|
142 |
-
* Register post views column for specific post types
|
143 |
-
*/
|
144 |
-
public function register_new_column() {
|
145 |
-
$post_types = Post_Views_Counter()->options['general']['post_types_count'];
|
146 |
-
|
147 |
-
if ( ! empty( $post_types ) ) {
|
148 |
-
foreach ( $post_types as $post_type ) {
|
149 |
-
// actions
|
150 |
-
add_action( 'manage_' . $post_type . '_posts_custom_column', array( $this, 'add_new_column_content' ), 10, 2 );
|
151 |
-
|
152 |
-
// filters
|
153 |
-
add_filter( 'manage_' . $post_type . '_posts_columns', array( $this, 'add_new_column' ) );
|
154 |
-
add_filter( 'manage_edit-' . $post_type . '_sortable_columns', array( $this, 'register_sortable_custom_column' ) );
|
155 |
-
}
|
156 |
-
}
|
157 |
-
}
|
158 |
-
|
159 |
-
/**
|
160 |
-
* Register sortable post views column.
|
161 |
-
*
|
162 |
-
* @param array $columns
|
163 |
-
* @return array
|
164 |
-
*/
|
165 |
-
public function register_sortable_custom_column( $columns ) {
|
166 |
-
// add new sortable column
|
167 |
-
$columns['post_views'] = 'post_views';
|
168 |
-
|
169 |
-
return $columns;
|
170 |
-
}
|
171 |
-
|
172 |
-
/**
|
173 |
-
* Add post views column.
|
174 |
-
*
|
175 |
-
* @param array $columns
|
176 |
-
* @return array
|
177 |
-
*/
|
178 |
-
public function add_new_column( $columns ) {
|
179 |
-
$offset = 0;
|
180 |
-
|
181 |
-
if ( isset( $columns['date'] ) )
|
182 |
-
$offset ++;
|
183 |
-
|
184 |
-
if ( isset( $columns['comments'] ) )
|
185 |
-
$offset ++;
|
186 |
-
|
187 |
-
if ( $offset > 0 ) {
|
188 |
-
$date = array_slice( $columns, -$offset, $offset, true );
|
189 |
-
|
190 |
-
foreach ( $date as $column => $name ) {
|
191 |
-
unset( $columns[$column] );
|
192 |
-
}
|
193 |
-
|
194 |
-
$columns['post_views'] = '<span class="dash-icon dashicons dashicons-chart-bar" title="' . __( 'Post Views', 'post-views-counter' ) . '"></span><span class="dash-title">' . __( 'Post Views', 'post-views-counter' ) . '</span>';
|
195 |
-
|
196 |
-
foreach ( $date as $column => $name ) {
|
197 |
-
$columns[$column] = $name;
|
198 |
-
}
|
199 |
-
} else
|
200 |
-
$columns['post_views'] = '<span class="dash-icon dashicons dashicons-chart-bar" title="' . __( 'Post Views', 'post-views-counter' ) . '"></span><span class="dash-title">' . __( 'Post Views', 'post-views-counter' ) . '</span>';
|
201 |
-
|
202 |
-
return $columns;
|
203 |
-
}
|
204 |
-
|
205 |
-
/**
|
206 |
-
* Add post views column content.
|
207 |
-
*
|
208 |
-
* @global object $wpdb
|
209 |
-
* @param string $column_name
|
210 |
-
* @param int $id
|
211 |
-
* @return muxed
|
212 |
-
*/
|
213 |
-
public function add_new_column_content( $column_name, $id ) {
|
214 |
-
|
215 |
-
if ( $column_name === 'post_views' ) {
|
216 |
-
|
217 |
-
global $wpdb;
|
218 |
-
|
219 |
-
// get total post views
|
220 |
-
$count = $wpdb->get_var(
|
221 |
-
$wpdb->prepare( "
|
222 |
-
SELECT count
|
223 |
-
FROM " . $wpdb->prefix . "post_views
|
224 |
-
WHERE id = %d AND type = 4", $id
|
225 |
-
)
|
226 |
-
);
|
227 |
-
|
228 |
-
echo (int) $count;
|
229 |
-
}
|
230 |
-
}
|
231 |
-
|
232 |
-
/**
|
233 |
-
* Handle quick edit.
|
234 |
-
*
|
235 |
-
* @global string $pagenow
|
236 |
-
* @global object $wpdb
|
237 |
-
* @param string $column_name
|
238 |
-
* @return mixed
|
239 |
-
*/
|
240 |
-
function quick_edit_custom_box( $column_name, $post_type ) {
|
241 |
-
global $pagenow, $post;
|
242 |
-
|
243 |
-
if ( $pagenow !== 'edit.php' )
|
244 |
-
return;
|
245 |
-
|
246 |
-
if ( ! Post_Views_Counter()->options['general']['post_views_column'] || ! in_array( $post_type, Post_Views_Counter()->options['general']['post_types_count'] ) )
|
247 |
-
return;
|
248 |
-
|
249 |
-
// break if views editing is restricted
|
250 |
-
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
251 |
-
|
252 |
-
if ( $restrict === true && ! current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) )
|
253 |
-
return;
|
254 |
-
|
255 |
-
if ( $column_name != 'post_views' )
|
256 |
-
return;
|
257 |
-
|
258 |
-
global $wpdb;
|
259 |
-
|
260 |
-
// get total post views
|
261 |
-
$count = $wpdb->get_var(
|
262 |
-
$wpdb->prepare( "
|
263 |
-
SELECT count
|
264 |
-
FROM " . $wpdb->prefix . "post_views
|
265 |
-
WHERE id = %d AND type = 4", $post->ID
|
266 |
-
)
|
267 |
-
);
|
268 |
-
?>
|
269 |
-
<fieldset class="inline-edit-col-left">
|
270 |
-
<div id="inline-edit-post_views" class="inline-edit-col">
|
271 |
-
<label class="inline-edit-group">
|
272 |
-
<span class="title"><?php _e( 'Post Views', 'post-views-counter' ); ?></span>
|
273 |
-
<span class="input-text-wrap"><input type="text" name="post_views" class="title text" value="<?php echo absint( $count ); ?>"></span>
|
274 |
-
<?php wp_nonce_field( 'post_views_count', 'pvc_nonce' ); ?>
|
275 |
-
</label>
|
276 |
-
</div>
|
277 |
-
</fieldset>
|
278 |
-
<?php
|
279 |
-
}
|
280 |
-
|
281 |
-
/**
|
282 |
-
* Bulk save post views.
|
283 |
-
*
|
284 |
-
* @global object $wpdb;
|
285 |
-
* @return type
|
286 |
-
*/
|
287 |
-
function save_bulk_post_views() {
|
288 |
-
|
289 |
-
$post_ids = ( ! empty( $_POST[ 'post_ids' ] ) && is_array( $post_ids ) ) ? array_map( 'absint', $_POST[ 'post_ids' ] ) : array();
|
290 |
-
$count = ( ! empty( $_POST[ 'post_views' ] ) ) ? absint( $_POST[ 'post_views' ] ) : null;
|
291 |
-
|
292 |
-
// break if views editing is restricted
|
293 |
-
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
294 |
-
|
295 |
-
if ( $restrict === true && ! current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) )
|
296 |
-
die();
|
297 |
-
|
298 |
-
if ( ! empty( $post_ids ) ) {
|
299 |
-
foreach ( $post_ids as $post_id ) {
|
300 |
-
|
301 |
-
// break if current user can't edit this post
|
302 |
-
if ( ! current_user_can( 'edit_post', $post_id ) )
|
303 |
-
continue;
|
304 |
-
|
305 |
-
global $wpdb;
|
306 |
-
|
307 |
-
// insert or update db post views count
|
308 |
-
$wpdb->query(
|
309 |
-
$wpdb->prepare( "
|
310 |
-
INSERT INTO " . $wpdb->prefix . "post_views (id, type, period, count)
|
311 |
-
VALUES (%d, %d, %s, %d)
|
312 |
-
ON DUPLICATE KEY UPDATE count = %d", $post_id, 4, 'total', $count, $count
|
313 |
-
)
|
314 |
-
);
|
315 |
-
}
|
316 |
-
}
|
317 |
-
die();
|
318 |
-
}
|
319 |
-
|
320 |
-
}
|
1 |
+
<?php
|
2 |
+
// exit if accessed directly
|
3 |
+
if ( ! defined( 'ABSPATH' ) )
|
4 |
+
exit;
|
5 |
+
|
6 |
+
/**
|
7 |
+
* Post_Views_Counter_Columns class.
|
8 |
+
*/
|
9 |
+
class Post_Views_Counter_Columns {
|
10 |
+
|
11 |
+
public function __construct() {
|
12 |
+
// actions
|
13 |
+
add_action( 'admin_init', array( $this, 'register_new_column' ) );
|
14 |
+
add_action( 'post_submitbox_misc_actions', array( $this, 'submitbox_views' ) );
|
15 |
+
add_action( 'save_post', array( $this, 'save_post' ), 10, 2 );
|
16 |
+
add_action( 'bulk_edit_custom_box', array( $this, 'quick_edit_custom_box' ), 10, 2 );
|
17 |
+
add_action( 'quick_edit_custom_box', array( $this, 'quick_edit_custom_box') , 10, 2 );
|
18 |
+
add_action( 'wp_ajax_save_bulk_post_views', array( $this, 'save_bulk_post_views' ) );
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Output post views for single post.
|
23 |
+
*
|
24 |
+
* @global object $post
|
25 |
+
* @global object $wpbd
|
26 |
+
*
|
27 |
+
* @return mixed
|
28 |
+
*/
|
29 |
+
public function submitbox_views() {
|
30 |
+
global $post;
|
31 |
+
|
32 |
+
$post_types = Post_Views_Counter()->options['general']['post_types_count'];
|
33 |
+
|
34 |
+
if ( ! in_array( $post->post_type, (array) $post_types ) )
|
35 |
+
return;
|
36 |
+
|
37 |
+
// break if current user can't edit this post
|
38 |
+
if ( ! current_user_can( 'edit_post', $post->ID ) )
|
39 |
+
return;
|
40 |
+
|
41 |
+
global $wpdb;
|
42 |
+
|
43 |
+
// get total post views
|
44 |
+
$count = $wpdb->get_var(
|
45 |
+
$wpdb->prepare( "
|
46 |
+
SELECT count
|
47 |
+
FROM " . $wpdb->prefix . "post_views
|
48 |
+
WHERE id = %d AND type = 4", absint( $post->ID )
|
49 |
+
)
|
50 |
+
);
|
51 |
+
?>
|
52 |
+
|
53 |
+
<div class="misc-pub-section" id="post-views">
|
54 |
+
|
55 |
+
<?php wp_nonce_field( 'post_views_count', 'pvc_nonce' ); ?>
|
56 |
+
|
57 |
+
<span id="post-views-display">
|
58 |
+
|
59 |
+
<?php echo __( 'Post Views', 'post-views-counter' ) . ': <b>' . number_format_i18n( (int) $count ) . '</b>'; ?>
|
60 |
+
|
61 |
+
</span>
|
62 |
+
|
63 |
+
<?php // restrict editing
|
64 |
+
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
65 |
+
|
66 |
+
if ( $restrict === false || ( $restrict === true && current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) ) ) {
|
67 |
+
?>
|
68 |
+
<a href="#post-views" class="edit-post-views hide-if-no-js"><?php _e( 'Edit', 'post-views-counter' ); ?></a>
|
69 |
+
|
70 |
+
<div id="post-views-input-container" class="hide-if-js">
|
71 |
+
|
72 |
+
<p><?php _e( 'Adjust the views count for this post.', 'post-views-counter' ); ?></p>
|
73 |
+
<input type="hidden" name="current_post_views" id="post-views-current" value="<?php echo (int) $count; ?>" />
|
74 |
+
<input type="text" name="post_views" id="post-views-input" value="<?php echo (int) $count; ?>"/><br />
|
75 |
+
<p>
|
76 |
+
<a href="#post-views" class="save-post-views hide-if-no-js button"><?php _e( 'OK', 'post-views-counter' ); ?></a>
|
77 |
+
<a href="#post-views" class="cancel-post-views hide-if-no-js"><?php _e( 'Cancel', 'post-views-counter' ); ?></a>
|
78 |
+
</p>
|
79 |
+
|
80 |
+
</div>
|
81 |
+
<?php
|
82 |
+
}
|
83 |
+
?>
|
84 |
+
|
85 |
+
</div>
|
86 |
+
<?php
|
87 |
+
}
|
88 |
+
|
89 |
+
/**
|
90 |
+
* Save post views data.
|
91 |
+
*
|
92 |
+
* @param int $post_id
|
93 |
+
* @param object $post
|
94 |
+
*/
|
95 |
+
public function save_post( $post_id, $post ) {
|
96 |
+
|
97 |
+
// break if doing autosave
|
98 |
+
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
|
99 |
+
return $post_id;
|
100 |
+
|
101 |
+
// break if current user can't edit this post
|
102 |
+
if ( ! current_user_can( 'edit_post', $post_id ) )
|
103 |
+
return $post_id;
|
104 |
+
|
105 |
+
// is post views set
|
106 |
+
if ( ! isset( $_POST['post_views'] ) )
|
107 |
+
return $post_id;
|
108 |
+
|
109 |
+
// break if post views in not one of the selected
|
110 |
+
$post_types = Post_Views_Counter()->options['general']['post_types_count'];
|
111 |
+
|
112 |
+
if ( ! in_array( $post->post_type, (array) $post_types ) )
|
113 |
+
return $post_id;
|
114 |
+
|
115 |
+
// break if views editing is restricted
|
116 |
+
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
117 |
+
|
118 |
+
if ( $restrict === true && ! current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) )
|
119 |
+
return $post_id;
|
120 |
+
|
121 |
+
// validate data
|
122 |
+
if ( ! isset( $_POST['pvc_nonce'] ) || ! wp_verify_nonce( $_POST['pvc_nonce'], 'post_views_count' ) )
|
123 |
+
return $post_id;
|
124 |
+
|
125 |
+
global $wpdb;
|
126 |
+
|
127 |
+
$count = apply_filters( 'pvc_update_post_views_count', absint( $_POST['post_views'] ), $post_id );
|
128 |
+
|
129 |
+
// insert or update db post views count
|
130 |
+
$wpdb->query(
|
131 |
+
$wpdb->prepare( "
|
132 |
+
INSERT INTO " . $wpdb->prefix . "post_views (id, type, period, count)
|
133 |
+
VALUES (%d, %d, %s, %d)
|
134 |
+
ON DUPLICATE KEY UPDATE count = %d", $post_id, 4, 'total', $count, $count
|
135 |
+
)
|
136 |
+
);
|
137 |
+
|
138 |
+
do_action( 'pvc_after_update_post_views_count', $post_id );
|
139 |
+
}
|
140 |
+
|
141 |
+
/**
|
142 |
+
* Register post views column for specific post types
|
143 |
+
*/
|
144 |
+
public function register_new_column() {
|
145 |
+
$post_types = Post_Views_Counter()->options['general']['post_types_count'];
|
146 |
+
|
147 |
+
if ( ! empty( $post_types ) ) {
|
148 |
+
foreach ( $post_types as $post_type ) {
|
149 |
+
// actions
|
150 |
+
add_action( 'manage_' . $post_type . '_posts_custom_column', array( $this, 'add_new_column_content' ), 10, 2 );
|
151 |
+
|
152 |
+
// filters
|
153 |
+
add_filter( 'manage_' . $post_type . '_posts_columns', array( $this, 'add_new_column' ) );
|
154 |
+
add_filter( 'manage_edit-' . $post_type . '_sortable_columns', array( $this, 'register_sortable_custom_column' ) );
|
155 |
+
}
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* Register sortable post views column.
|
161 |
+
*
|
162 |
+
* @param array $columns
|
163 |
+
* @return array
|
164 |
+
*/
|
165 |
+
public function register_sortable_custom_column( $columns ) {
|
166 |
+
// add new sortable column
|
167 |
+
$columns['post_views'] = 'post_views';
|
168 |
+
|
169 |
+
return $columns;
|
170 |
+
}
|
171 |
+
|
172 |
+
/**
|
173 |
+
* Add post views column.
|
174 |
+
*
|
175 |
+
* @param array $columns
|
176 |
+
* @return array
|
177 |
+
*/
|
178 |
+
public function add_new_column( $columns ) {
|
179 |
+
$offset = 0;
|
180 |
+
|
181 |
+
if ( isset( $columns['date'] ) )
|
182 |
+
$offset ++;
|
183 |
+
|
184 |
+
if ( isset( $columns['comments'] ) )
|
185 |
+
$offset ++;
|
186 |
+
|
187 |
+
if ( $offset > 0 ) {
|
188 |
+
$date = array_slice( $columns, -$offset, $offset, true );
|
189 |
+
|
190 |
+
foreach ( $date as $column => $name ) {
|
191 |
+
unset( $columns[$column] );
|
192 |
+
}
|
193 |
+
|
194 |
+
$columns['post_views'] = '<span class="dash-icon dashicons dashicons-chart-bar" title="' . __( 'Post Views', 'post-views-counter' ) . '"></span><span class="dash-title">' . __( 'Post Views', 'post-views-counter' ) . '</span>';
|
195 |
+
|
196 |
+
foreach ( $date as $column => $name ) {
|
197 |
+
$columns[$column] = $name;
|
198 |
+
}
|
199 |
+
} else
|
200 |
+
$columns['post_views'] = '<span class="dash-icon dashicons dashicons-chart-bar" title="' . __( 'Post Views', 'post-views-counter' ) . '"></span><span class="dash-title">' . __( 'Post Views', 'post-views-counter' ) . '</span>';
|
201 |
+
|
202 |
+
return $columns;
|
203 |
+
}
|
204 |
+
|
205 |
+
/**
|
206 |
+
* Add post views column content.
|
207 |
+
*
|
208 |
+
* @global object $wpdb
|
209 |
+
* @param string $column_name
|
210 |
+
* @param int $id
|
211 |
+
* @return muxed
|
212 |
+
*/
|
213 |
+
public function add_new_column_content( $column_name, $id ) {
|
214 |
+
|
215 |
+
if ( $column_name === 'post_views' ) {
|
216 |
+
|
217 |
+
global $wpdb;
|
218 |
+
|
219 |
+
// get total post views
|
220 |
+
$count = $wpdb->get_var(
|
221 |
+
$wpdb->prepare( "
|
222 |
+
SELECT count
|
223 |
+
FROM " . $wpdb->prefix . "post_views
|
224 |
+
WHERE id = %d AND type = 4", $id
|
225 |
+
)
|
226 |
+
);
|
227 |
+
|
228 |
+
echo (int) $count;
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
/**
|
233 |
+
* Handle quick edit.
|
234 |
+
*
|
235 |
+
* @global string $pagenow
|
236 |
+
* @global object $wpdb
|
237 |
+
* @param string $column_name
|
238 |
+
* @return mixed
|
239 |
+
*/
|
240 |
+
function quick_edit_custom_box( $column_name, $post_type ) {
|
241 |
+
global $pagenow, $post;
|
242 |
+
|
243 |
+
if ( $pagenow !== 'edit.php' )
|
244 |
+
return;
|
245 |
+
|
246 |
+
if ( ! Post_Views_Counter()->options['general']['post_views_column'] || ! in_array( $post_type, Post_Views_Counter()->options['general']['post_types_count'] ) )
|
247 |
+
return;
|
248 |
+
|
249 |
+
// break if views editing is restricted
|
250 |
+
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
251 |
+
|
252 |
+
if ( $restrict === true && ! current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) )
|
253 |
+
return;
|
254 |
+
|
255 |
+
if ( $column_name != 'post_views' )
|
256 |
+
return;
|
257 |
+
|
258 |
+
global $wpdb;
|
259 |
+
|
260 |
+
// get total post views
|
261 |
+
$count = $wpdb->get_var(
|
262 |
+
$wpdb->prepare( "
|
263 |
+
SELECT count
|
264 |
+
FROM " . $wpdb->prefix . "post_views
|
265 |
+
WHERE id = %d AND type = 4", $post->ID
|
266 |
+
)
|
267 |
+
);
|
268 |
+
?>
|
269 |
+
<fieldset class="inline-edit-col-left">
|
270 |
+
<div id="inline-edit-post_views" class="inline-edit-col">
|
271 |
+
<label class="inline-edit-group">
|
272 |
+
<span class="title"><?php _e( 'Post Views', 'post-views-counter' ); ?></span>
|
273 |
+
<span class="input-text-wrap"><input type="text" name="post_views" class="title text" value="<?php echo absint( $count ); ?>"></span>
|
274 |
+
<?php wp_nonce_field( 'post_views_count', 'pvc_nonce' ); ?>
|
275 |
+
</label>
|
276 |
+
</div>
|
277 |
+
</fieldset>
|
278 |
+
<?php
|
279 |
+
}
|
280 |
+
|
281 |
+
/**
|
282 |
+
* Bulk save post views.
|
283 |
+
*
|
284 |
+
* @global object $wpdb;
|
285 |
+
* @return type
|
286 |
+
*/
|
287 |
+
function save_bulk_post_views() {
|
288 |
+
|
289 |
+
$post_ids = ( ! empty( $_POST[ 'post_ids' ] ) && is_array( $_POST['post_ids'] ) ) ? array_map( 'absint', $_POST[ 'post_ids' ] ) : array();
|
290 |
+
$count = ( ! empty( $_POST[ 'post_views' ] ) ) ? absint( $_POST[ 'post_views' ] ) : null;
|
291 |
+
|
292 |
+
// break if views editing is restricted
|
293 |
+
$restrict = (bool) Post_Views_Counter()->options['general']['restrict_edit_views'];
|
294 |
+
|
295 |
+
if ( $restrict === true && ! current_user_can( apply_filters( 'pvc_restrict_edit_capability', 'manage_options' ) ) )
|
296 |
+
die();
|
297 |
+
|
298 |
+
if ( ! empty( $post_ids ) ) {
|
299 |
+
foreach ( $post_ids as $post_id ) {
|
300 |
+
|
301 |
+
// break if current user can't edit this post
|
302 |
+
if ( ! current_user_can( 'edit_post', $post_id ) )
|
303 |
+
continue;
|
304 |
+
|
305 |
+
global $wpdb;
|
306 |
+
|
307 |
+
// insert or update db post views count
|
308 |
+
$wpdb->query(
|
309 |
+
$wpdb->prepare( "
|
310 |
+
INSERT INTO " . $wpdb->prefix . "post_views (id, type, period, count)
|
311 |
+
VALUES (%d, %d, %s, %d)
|
312 |
+
ON DUPLICATE KEY UPDATE count = %d", $post_id, 4, 'total', $count, $count
|
313 |
+
)
|
314 |
+
);
|
315 |
+
}
|
316 |
+
}
|
317 |
+
die();
|
318 |
+
}
|
319 |
+
|
320 |
+
}
|
languages/post-views-counter-es_ES.mo
DELETED
Binary file
|
languages/post-views-counter-es_ES.po
DELETED
@@ -1,486 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Post Views Counter\n"
|
4 |
-
"POT-Creation-Date: 2015-05-04 16:15-0500\n"
|
5 |
-
"PO-Revision-Date: 2015-05-04 17:23-0500\n"
|
6 |
-
"Last-Translator: Dto2y3d <masyoututoriales@gmail.com>\n"
|
7 |
-
"Language-Team: Dto2y3d <masyoututoriales@gmail.com>\n"
|
8 |
-
"Language: es_ES\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.5\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
-
|
22 |
-
#: includes/columns.php:45 includes/columns.php:175 includes/columns.php:181
|
23 |
-
msgid "Post Views"
|
24 |
-
msgstr "Entradas vistas"
|
25 |
-
|
26 |
-
#: includes/columns.php:49
|
27 |
-
msgid "Edit"
|
28 |
-
msgstr "Editar"
|
29 |
-
|
30 |
-
#: includes/columns.php:53
|
31 |
-
msgid "Adjust the views count for this post."
|
32 |
-
msgstr "Ajustar el conteo de vistas para este post."
|
33 |
-
|
34 |
-
#: includes/columns.php:57
|
35 |
-
msgid "OK"
|
36 |
-
msgstr "OK"
|
37 |
-
|
38 |
-
#: includes/columns.php:58
|
39 |
-
msgid "Cancel"
|
40 |
-
msgstr "Cancelar"
|
41 |
-
|
42 |
-
#: includes/cron.php:49
|
43 |
-
msgid "Post Views Counter reset daily counts interval"
|
44 |
-
msgstr "Restablece intervalo conteo diario de las vistas"
|
45 |
-
|
46 |
-
#: includes/cron.php:54
|
47 |
-
msgid "Post Views Counter cache flush interval"
|
48 |
-
msgstr "Intervalo de conteo de vistas volcado en cache"
|
49 |
-
|
50 |
-
#: includes/functions.php:127
|
51 |
-
msgid "No Posts"
|
52 |
-
msgstr "No hay entradas"
|
53 |
-
|
54 |
-
#: includes/settings.php:35
|
55 |
-
msgid "Enable"
|
56 |
-
msgstr "Activar"
|
57 |
-
|
58 |
-
#: includes/settings.php:36
|
59 |
-
msgid "Disable"
|
60 |
-
msgstr "Desactivar"
|
61 |
-
|
62 |
-
#: includes/settings.php:40
|
63 |
-
msgid "PHP"
|
64 |
-
msgstr "PHP"
|
65 |
-
|
66 |
-
#: includes/settings.php:41
|
67 |
-
msgid "JavaScript"
|
68 |
-
msgstr "JavaScript"
|
69 |
-
|
70 |
-
#: includes/settings.php:45
|
71 |
-
msgid "minutes"
|
72 |
-
msgstr "minutos"
|
73 |
-
|
74 |
-
#: includes/settings.php:46
|
75 |
-
msgid "hours"
|
76 |
-
msgstr "horas"
|
77 |
-
|
78 |
-
#: includes/settings.php:47
|
79 |
-
msgid "days"
|
80 |
-
msgstr "días"
|
81 |
-
|
82 |
-
#: includes/settings.php:48
|
83 |
-
msgid "weeks"
|
84 |
-
msgstr "semanas"
|
85 |
-
|
86 |
-
#: includes/settings.php:49
|
87 |
-
msgid "months"
|
88 |
-
msgstr "meses"
|
89 |
-
|
90 |
-
#: includes/settings.php:50
|
91 |
-
msgid "years"
|
92 |
-
msgstr "años"
|
93 |
-
|
94 |
-
#: includes/settings.php:54
|
95 |
-
msgid "robots"
|
96 |
-
msgstr "robots"
|
97 |
-
|
98 |
-
#: includes/settings.php:55
|
99 |
-
msgid "logged in users"
|
100 |
-
msgstr "Usuarios Logueados"
|
101 |
-
|
102 |
-
#: includes/settings.php:56
|
103 |
-
msgid "guests"
|
104 |
-
msgstr "Personas"
|
105 |
-
|
106 |
-
#: includes/settings.php:57
|
107 |
-
msgid "selected user roles"
|
108 |
-
msgstr "roles de usuario seleccionado"
|
109 |
-
|
110 |
-
#: includes/settings.php:61
|
111 |
-
msgid "before the content"
|
112 |
-
msgstr "Antes del Contenido"
|
113 |
-
|
114 |
-
#: includes/settings.php:62
|
115 |
-
msgid "after the content"
|
116 |
-
msgstr "Después del Contenido"
|
117 |
-
|
118 |
-
#: includes/settings.php:63
|
119 |
-
msgid "manual"
|
120 |
-
msgstr "Manual"
|
121 |
-
|
122 |
-
#: includes/settings.php:67
|
123 |
-
msgid "icon"
|
124 |
-
msgstr "icono"
|
125 |
-
|
126 |
-
#: includes/settings.php:68
|
127 |
-
msgid "label"
|
128 |
-
msgstr "Etiqueta"
|
129 |
-
|
130 |
-
#: includes/settings.php:73
|
131 |
-
msgid "General"
|
132 |
-
msgstr "General"
|
133 |
-
|
134 |
-
#: includes/settings.php:79
|
135 |
-
msgid "Display"
|
136 |
-
msgstr "Mostar"
|
137 |
-
|
138 |
-
#: includes/settings.php:134 includes/settings.php:146
|
139 |
-
#: includes/settings.php:158
|
140 |
-
msgid "Post Views Counter"
|
141 |
-
msgstr "Post Views Counter"
|
142 |
-
|
143 |
-
#: includes/settings.php:160
|
144 |
-
msgid "Need support?"
|
145 |
-
msgstr " ¿Necesita soporte?"
|
146 |
-
|
147 |
-
#: includes/settings.php:161
|
148 |
-
msgid ""
|
149 |
-
"If you are having problems with this plugin, please talk about them in the"
|
150 |
-
msgstr ""
|
151 |
-
"Si tiene problemas con este plugin, por favor hable acerca de ello en el"
|
152 |
-
|
153 |
-
#: includes/settings.php:161
|
154 |
-
msgid "Support forum"
|
155 |
-
msgstr "Foro de soporte"
|
156 |
-
|
157 |
-
#: includes/settings.php:163
|
158 |
-
msgid "Do you like this plugin?"
|
159 |
-
msgstr "¿Le gusta este plugin?"
|
160 |
-
|
161 |
-
#: includes/settings.php:164
|
162 |
-
msgid "Rate it 5"
|
163 |
-
msgstr "Ponle 5"
|
164 |
-
|
165 |
-
#: includes/settings.php:164
|
166 |
-
msgid "on WordPress.org"
|
167 |
-
msgstr "en WordPress.org"
|
168 |
-
|
169 |
-
#: includes/settings.php:165
|
170 |
-
msgid "Blog about it & link to the"
|
171 |
-
msgstr "Blog sobre él & enlace a la"
|
172 |
-
|
173 |
-
#: includes/settings.php:165
|
174 |
-
msgid "plugin page"
|
175 |
-
msgstr "página del plugin"
|
176 |
-
|
177 |
-
#: includes/settings.php:166
|
178 |
-
msgid "Check out our other"
|
179 |
-
msgstr "Echa un vistazo a nuestro otro"
|
180 |
-
|
181 |
-
#: includes/settings.php:166
|
182 |
-
msgid "WordPress plugins"
|
183 |
-
msgstr "Plugins de WordPress"
|
184 |
-
|
185 |
-
#: includes/settings.php:169
|
186 |
-
msgid "Created by"
|
187 |
-
msgstr "Creado por"
|
188 |
-
|
189 |
-
#: includes/settings.php:185
|
190 |
-
msgid "Reset to defaults"
|
191 |
-
msgstr "Restablecer valores predeterminados"
|
192 |
-
|
193 |
-
#: includes/settings.php:201
|
194 |
-
msgid "General settings"
|
195 |
-
msgstr "Configuracion General"
|
196 |
-
|
197 |
-
#: includes/settings.php:202
|
198 |
-
msgid "Post Types Count"
|
199 |
-
msgstr " Tipos de conteo de entradas"
|
200 |
-
|
201 |
-
#: includes/settings.php:203
|
202 |
-
msgid "Counter Mode"
|
203 |
-
msgstr "Modo de contador"
|
204 |
-
|
205 |
-
#: includes/settings.php:204
|
206 |
-
msgid "Post Views Column"
|
207 |
-
msgstr "Columna de las entradas vistas"
|
208 |
-
|
209 |
-
#: includes/settings.php:205
|
210 |
-
msgid "Time Between Counts"
|
211 |
-
msgstr "Tiempo entre Conteos"
|
212 |
-
|
213 |
-
#: includes/settings.php:206
|
214 |
-
msgid "Reset Data Interval"
|
215 |
-
msgstr "Restablecer intervalos de datos"
|
216 |
-
|
217 |
-
#: includes/settings.php:207
|
218 |
-
msgid "Flush Object Cache Interval"
|
219 |
-
msgstr "Eliminar objeto Cache intervalo"
|
220 |
-
|
221 |
-
#: includes/settings.php:208
|
222 |
-
msgid "Exclude Visitors"
|
223 |
-
msgstr "Excluir a los visitantes"
|
224 |
-
|
225 |
-
#: includes/settings.php:209
|
226 |
-
msgid "Exclude IPs"
|
227 |
-
msgstr "Excluir IPs"
|
228 |
-
|
229 |
-
#: includes/settings.php:210
|
230 |
-
msgid "WP-PostViews"
|
231 |
-
msgstr "WP-PostViews"
|
232 |
-
|
233 |
-
#: includes/settings.php:211
|
234 |
-
msgid "Deactivation"
|
235 |
-
msgstr "Desactivación"
|
236 |
-
|
237 |
-
#: includes/settings.php:215
|
238 |
-
msgid "Display settings"
|
239 |
-
msgstr "Ajustes de visualización"
|
240 |
-
|
241 |
-
#: includes/settings.php:216
|
242 |
-
msgid "Post Views Label"
|
243 |
-
msgstr "Etiqueta de vistas de entradas"
|
244 |
-
|
245 |
-
#: includes/settings.php:217
|
246 |
-
msgid "Post Types Display"
|
247 |
-
msgstr "Tipos de visualizacíon de entradas"
|
248 |
-
|
249 |
-
#: includes/settings.php:218
|
250 |
-
msgid "Restrict Display"
|
251 |
-
msgstr "Restringir visualización"
|
252 |
-
|
253 |
-
#: includes/settings.php:219
|
254 |
-
msgid "Position"
|
255 |
-
msgstr "Posicion"
|
256 |
-
|
257 |
-
#: includes/settings.php:220
|
258 |
-
msgid "Display Style"
|
259 |
-
msgstr "Estilo de visualización"
|
260 |
-
|
261 |
-
#: includes/settings.php:221
|
262 |
-
msgid "Icon Class"
|
263 |
-
msgstr " Clase de icono"
|
264 |
-
|
265 |
-
#: includes/settings.php:233
|
266 |
-
msgid "Enter the label for the post views counter field."
|
267 |
-
msgstr "Introduzca la etiqueta para el campo contador vistas."
|
268 |
-
|
269 |
-
#: includes/settings.php:245
|
270 |
-
msgid "Select post types"
|
271 |
-
msgstr "Seleccionar tipos de entradas"
|
272 |
-
|
273 |
-
#: includes/settings.php:255
|
274 |
-
msgid "Select post types for which post views will be counted."
|
275 |
-
msgstr "Seleccione tipos de entradas que la entrada se contará en las vistas."
|
276 |
-
|
277 |
-
#: includes/settings.php:267 includes/settings.php:402
|
278 |
-
#: includes/settings.php:558
|
279 |
-
msgid "Select groups"
|
280 |
-
msgstr "Seleccionar grupos"
|
281 |
-
|
282 |
-
#: includes/settings.php:277
|
283 |
-
msgid "Select post types for which post views will be displayed."
|
284 |
-
msgstr "Seleccione tipos de entradas para la entradas que mostrarán vistas."
|
285 |
-
|
286 |
-
#: includes/settings.php:299
|
287 |
-
msgid ""
|
288 |
-
"Select the method of collecting post views data. If you are using any of the "
|
289 |
-
"caching plugins select Javascript."
|
290 |
-
msgstr ""
|
291 |
-
"Seleccione el método de recolección de datos de entradas vistas. Si usted "
|
292 |
-
"está usando cualquiera de los plugins de cacheo seleccione Javascript."
|
293 |
-
|
294 |
-
#: includes/settings.php:321
|
295 |
-
msgid ""
|
296 |
-
"Enable to display post views count column for each of the selected post "
|
297 |
-
"types."
|
298 |
-
msgstr ""
|
299 |
-
"Activa mostrar una lista de todas las etiquetas para el tipo de publicación "
|
300 |
-
"de etiquetas seleccionadas"
|
301 |
-
|
302 |
-
#: includes/settings.php:344
|
303 |
-
msgid "Enter the time between single user visit count."
|
304 |
-
msgstr "Introduzca el tiempo de conteo entre vistas de un usuario."
|
305 |
-
|
306 |
-
#: includes/settings.php:367
|
307 |
-
msgid ""
|
308 |
-
"Delete single day post views data older than specified above. Enter 0 "
|
309 |
-
"(number zero) if you want to preserve your data regardless of its age."
|
310 |
-
msgstr ""
|
311 |
-
"Borra un dia de entradas antiguas especificando antes. Escriba 0 (número "
|
312 |
-
"cero) si quiere conservar sus datos independientemente de su edad."
|
313 |
-
|
314 |
-
#: includes/settings.php:390
|
315 |
-
msgid ""
|
316 |
-
"How often to flush cached view counts from the object cache into the "
|
317 |
-
"database. This feature is used only if a persistent object cache is detected "
|
318 |
-
"and the interval is greater than 0 (number zero)). When used, view counts "
|
319 |
-
"will be collected and stored in the object cache instead of the database and "
|
320 |
-
"will then be asynchronously flushed to the database according to the "
|
321 |
-
"specified interval.<br /><strong>Notice:</strong> Potential data loss may "
|
322 |
-
"occur if the object cache is cleared/unavailable for the duration of the "
|
323 |
-
"interval."
|
324 |
-
msgstr ""
|
325 |
-
"¿Con qué frecuencia elimina el caché de los conteos de vista de la memoria "
|
326 |
-
"caché de objetos en la base de datos. Esta función se utiliza sólo si se "
|
327 |
-
"detecta una memoria caché de objetos persistentes y el intervalo es mayor "
|
328 |
-
"que 0 (numero cero).Cuando se utiliza, número de reproducciones serán "
|
329 |
-
"recogidos y almacenados en la memoria caché de objetos de la base de datos y "
|
330 |
-
"será entonces de forma asíncrona volcado a la base de datos de acuerdo con "
|
331 |
-
"el intervalo especificado.<br /><strong>Noticia:</strong>Potencial pérdida "
|
332 |
-
"de datos puede producirse si la memoria caché de objetos se borra/no esta "
|
333 |
-
"disponible para la duración del intervalo."
|
334 |
-
|
335 |
-
#: includes/settings.php:413 includes/settings.php:573
|
336 |
-
msgid "Select user roles"
|
337 |
-
msgstr "Seleccionar los roles de usuario"
|
338 |
-
|
339 |
-
#: includes/settings.php:424
|
340 |
-
msgid "Select the type of visitors to be excluded from post views count."
|
341 |
-
msgstr "Seleccione el tipo de visitantes serán excluidos de recuento vistas."
|
342 |
-
|
343 |
-
#: includes/settings.php:440 includes/settings.php:449
|
344 |
-
msgid "Remove"
|
345 |
-
msgstr "Eliminar"
|
346 |
-
|
347 |
-
#: includes/settings.php:449
|
348 |
-
msgid "Add new"
|
349 |
-
msgstr "Añadir nuevo"
|
350 |
-
|
351 |
-
#: includes/settings.php:449
|
352 |
-
msgid "Add my current IP"
|
353 |
-
msgstr "Agregar mi IP actual"
|
354 |
-
|
355 |
-
#: includes/settings.php:451
|
356 |
-
msgid "Enter the IP addresses to be excluded from post views count."
|
357 |
-
msgstr "Introduzca las direcciones IP para excluirse del recuento de vistas."
|
358 |
-
|
359 |
-
#: includes/settings.php:463
|
360 |
-
msgid "Import"
|
361 |
-
msgstr "Importar"
|
362 |
-
|
363 |
-
#: includes/settings.php:465
|
364 |
-
msgid "Import post views data from WP-PostViews plugin."
|
365 |
-
msgstr "Importación de datos de vistas de entradas desde WP-PostViews plugin."
|
366 |
-
|
367 |
-
#: includes/settings.php:466
|
368 |
-
msgid "Override existing Post Views Counter data."
|
369 |
-
msgstr "¿Sobreescribir los conteos de vistas existentes?"
|
370 |
-
|
371 |
-
#: includes/settings.php:488
|
372 |
-
msgid "Enable to delete all plugin data on deactivation."
|
373 |
-
msgstr ""
|
374 |
-
"Activar si quiere que la informacion del plugin sea borrada en la "
|
375 |
-
"desactivacion"
|
376 |
-
|
377 |
-
#: includes/settings.php:510
|
378 |
-
msgid ""
|
379 |
-
"Select where would you like to display the post views counter. Use [post-"
|
380 |
-
"views] shortcode for manual display."
|
381 |
-
msgstr ""
|
382 |
-
"Seleccione dónde te gustaría mostrar el contador de entras vistas Utilice "
|
383 |
-
"shortcode [post-views] para la Visualización manual."
|
384 |
-
|
385 |
-
#: includes/settings.php:532
|
386 |
-
msgid "Choose how to display the post views counter."
|
387 |
-
msgstr "Elija cómo mostrar el post views counter."
|
388 |
-
|
389 |
-
#: includes/settings.php:546
|
390 |
-
#, php-format
|
391 |
-
msgid ""
|
392 |
-
"Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank"
|
393 |
-
"\">Dashicons</a> classes are available."
|
394 |
-
msgstr ""
|
395 |
-
"Activa que clase de icono quieres para las vistas. Cualquiera de los <a "
|
396 |
-
"href=\"%s\" target=\"_blank\">Dashicons</a> clases que están disponibles."
|
397 |
-
|
398 |
-
#: includes/settings.php:584
|
399 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
400 |
-
msgstr ""
|
401 |
-
"Se usa para esconder el contador de entrads vistas, para algún tipo "
|
402 |
-
"seleccionado visitante."
|
403 |
-
|
404 |
-
#: includes/settings.php:612
|
405 |
-
msgid "WP-PostViews data imported succesfully."
|
406 |
-
msgstr "Datos de WP-PostViews importados con éxito."
|
407 |
-
|
408 |
-
#: includes/settings.php:614
|
409 |
-
msgid "There was no data to import."
|
410 |
-
msgstr "No hubo datos para importar."
|
411 |
-
|
412 |
-
#: includes/settings.php:767
|
413 |
-
msgid "General settings restored to defaults."
|
414 |
-
msgstr "Configuración general restablecido valores predeterminados."
|
415 |
-
|
416 |
-
#: includes/settings.php:771
|
417 |
-
msgid "Display settings restored to defaults."
|
418 |
-
msgstr "Restablece valores predeterminados de visualización."
|
419 |
-
|
420 |
-
#: includes/widgets.php:33 includes/widgets.php:43
|
421 |
-
msgid "Most Viewed Posts"
|
422 |
-
msgstr "Entradas más vistas"
|
423 |
-
|
424 |
-
#: includes/widgets.php:34
|
425 |
-
msgid "Displays a list of the most viewed posts"
|
426 |
-
msgstr "Muestra una lista de las entradas más vistas"
|
427 |
-
|
428 |
-
#: includes/widgets.php:51
|
429 |
-
msgid "No Posts found"
|
430 |
-
msgstr "Entradas no Encontradas"
|
431 |
-
|
432 |
-
#: includes/widgets.php:55
|
433 |
-
msgid "Ascending"
|
434 |
-
msgstr "Ascendente"
|
435 |
-
|
436 |
-
#: includes/widgets.php:56
|
437 |
-
msgid "Descending"
|
438 |
-
msgstr "Descendente"
|
439 |
-
|
440 |
-
#: includes/widgets.php:93
|
441 |
-
msgid "Title"
|
442 |
-
msgstr "Título"
|
443 |
-
|
444 |
-
#: includes/widgets.php:97
|
445 |
-
msgid "Post Types"
|
446 |
-
msgstr "Tipos de entrada"
|
447 |
-
|
448 |
-
#: includes/widgets.php:110
|
449 |
-
msgid "Number of posts to show"
|
450 |
-
msgstr "Numero de entradas a mostrar"
|
451 |
-
|
452 |
-
#: includes/widgets.php:114
|
453 |
-
msgid "No posts message"
|
454 |
-
msgstr "Ningún mensaje de entradas"
|
455 |
-
|
456 |
-
#: includes/widgets.php:118
|
457 |
-
msgid "Order"
|
458 |
-
msgstr "Orden"
|
459 |
-
|
460 |
-
#: includes/widgets.php:130
|
461 |
-
msgid "Display post views?"
|
462 |
-
msgstr "¿Mostar vistas en las entradas?"
|
463 |
-
|
464 |
-
#: includes/widgets.php:132
|
465 |
-
msgid "Display post excerpt?"
|
466 |
-
msgstr "¿Mostrar extracto de entrada"
|
467 |
-
|
468 |
-
#: includes/widgets.php:134
|
469 |
-
msgid "Display post thumbnail?"
|
470 |
-
msgstr "¿Mostrar miniatura de la entrada?"
|
471 |
-
|
472 |
-
#: includes/widgets.php:137
|
473 |
-
msgid "Thumbnail size"
|
474 |
-
msgstr "Tamaño de la miniatura"
|
475 |
-
|
476 |
-
#: post-views-counter.php:280
|
477 |
-
msgid "Are you sure you want to reset these settings to defaults?"
|
478 |
-
msgstr "Esta seguro que quiere resetear la configuracion a lo predeterminado?"
|
479 |
-
|
480 |
-
#: post-views-counter.php:312
|
481 |
-
msgid "Support"
|
482 |
-
msgstr "Soporte"
|
483 |
-
|
484 |
-
#: post-views-counter.php:331
|
485 |
-
msgid "Settings"
|
486 |
-
msgstr "Configuracion"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/post-views-counter-fr_FR.mo
DELETED
Binary file
|
languages/post-views-counter-fr_FR.po
DELETED
@@ -1,487 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Post Views Counter\n"
|
4 |
-
"POT-Creation-Date: 2015-05-27 14:35+0100\n"
|
5 |
-
"PO-Revision-Date: 2015-06-06 14:30+0100\n"
|
6 |
-
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
7 |
-
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.7\n"
|
13 |
-
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;"
|
14 |
-
"esc_html__;esc_html_e\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../includes/columns.php:49 ../includes/columns.php:193
|
21 |
-
#: ../includes/columns.php:199
|
22 |
-
msgid "Post Views"
|
23 |
-
msgstr "Nombre de vues"
|
24 |
-
|
25 |
-
#: ../includes/columns.php:58
|
26 |
-
msgid "Edit"
|
27 |
-
msgstr "Editer"
|
28 |
-
|
29 |
-
#: ../includes/columns.php:62
|
30 |
-
msgid "Adjust the views count for this post."
|
31 |
-
msgstr "Ajuster le comptages de vus pour cet article"
|
32 |
-
|
33 |
-
#: ../includes/columns.php:66
|
34 |
-
msgid "OK"
|
35 |
-
msgstr "OK"
|
36 |
-
|
37 |
-
#: ../includes/columns.php:67
|
38 |
-
msgid "Cancel"
|
39 |
-
msgstr "Annuler"
|
40 |
-
|
41 |
-
#: ../includes/cron.php:49
|
42 |
-
msgid "Post Views Counter reset daily counts interval"
|
43 |
-
msgstr ""
|
44 |
-
"Intervalle de temps pour la remise à zéro du comptage par Post Views counter"
|
45 |
-
|
46 |
-
#: ../includes/cron.php:54
|
47 |
-
msgid "Post Views Counter cache flush interval"
|
48 |
-
msgstr "Intervalle de temps pour le nettoyage du cache Post Views Counter"
|
49 |
-
|
50 |
-
#: ../includes/functions.php:127
|
51 |
-
msgid "No Posts"
|
52 |
-
msgstr "Pas d'article"
|
53 |
-
|
54 |
-
#: ../includes/settings.php:36
|
55 |
-
msgid "PHP"
|
56 |
-
msgstr "PHP"
|
57 |
-
|
58 |
-
#: ../includes/settings.php:37
|
59 |
-
msgid "JavaScript"
|
60 |
-
msgstr "Javascript"
|
61 |
-
|
62 |
-
#: ../includes/settings.php:41
|
63 |
-
msgid "minutes"
|
64 |
-
msgstr "minutes"
|
65 |
-
|
66 |
-
#: ../includes/settings.php:42
|
67 |
-
msgid "hours"
|
68 |
-
msgstr "heures"
|
69 |
-
|
70 |
-
#: ../includes/settings.php:43
|
71 |
-
msgid "days"
|
72 |
-
msgstr "jours"
|
73 |
-
|
74 |
-
#: ../includes/settings.php:44
|
75 |
-
msgid "weeks"
|
76 |
-
msgstr "semaines"
|
77 |
-
|
78 |
-
#: ../includes/settings.php:45
|
79 |
-
msgid "months"
|
80 |
-
msgstr "mois"
|
81 |
-
|
82 |
-
#: ../includes/settings.php:46
|
83 |
-
msgid "years"
|
84 |
-
msgstr "années"
|
85 |
-
|
86 |
-
#: ../includes/settings.php:50
|
87 |
-
msgid "robots"
|
88 |
-
msgstr "robots"
|
89 |
-
|
90 |
-
#: ../includes/settings.php:51
|
91 |
-
msgid "logged in users"
|
92 |
-
msgstr "utilisateurs enregistrés"
|
93 |
-
|
94 |
-
#: ../includes/settings.php:52
|
95 |
-
msgid "guests"
|
96 |
-
msgstr "invités"
|
97 |
-
|
98 |
-
#: ../includes/settings.php:53
|
99 |
-
msgid "selected user roles"
|
100 |
-
msgstr "rôles utilisateurs sélectionnés"
|
101 |
-
|
102 |
-
#: ../includes/settings.php:57
|
103 |
-
msgid "before the content"
|
104 |
-
msgstr "Avant le contenu"
|
105 |
-
|
106 |
-
#: ../includes/settings.php:58
|
107 |
-
msgid "after the content"
|
108 |
-
msgstr "Après le contenu"
|
109 |
-
|
110 |
-
#: ../includes/settings.php:59
|
111 |
-
msgid "manual"
|
112 |
-
msgstr "manuel"
|
113 |
-
|
114 |
-
#: ../includes/settings.php:63
|
115 |
-
msgid "icon"
|
116 |
-
msgstr "icône"
|
117 |
-
|
118 |
-
#: ../includes/settings.php:64
|
119 |
-
msgid "label"
|
120 |
-
msgstr "label"
|
121 |
-
|
122 |
-
#: ../includes/settings.php:69
|
123 |
-
msgid "General"
|
124 |
-
msgstr "Général"
|
125 |
-
|
126 |
-
#: ../includes/settings.php:75
|
127 |
-
msgid "Display"
|
128 |
-
msgstr "Affichage"
|
129 |
-
|
130 |
-
#: ../includes/settings.php:130 ../includes/settings.php:142
|
131 |
-
#: ../includes/settings.php:154
|
132 |
-
msgid "Post Views Counter"
|
133 |
-
msgstr "Post Views Counter"
|
134 |
-
|
135 |
-
#: ../includes/settings.php:156
|
136 |
-
msgid "Need support?"
|
137 |
-
msgstr "Besoin du support ?"
|
138 |
-
|
139 |
-
#: ../includes/settings.php:157
|
140 |
-
msgid ""
|
141 |
-
"If you are having problems with this plugin, please talk about them in the"
|
142 |
-
msgstr "Si vous avez des problèmes avec ce plugin, svp, parlez-en dans le"
|
143 |
-
|
144 |
-
#: ../includes/settings.php:157
|
145 |
-
msgid "Support forum"
|
146 |
-
msgstr "forum du Support"
|
147 |
-
|
148 |
-
#: ../includes/settings.php:159
|
149 |
-
msgid "Do you like this plugin?"
|
150 |
-
msgstr "Aimez-vous ce plugin ?"
|
151 |
-
|
152 |
-
#: ../includes/settings.php:160
|
153 |
-
msgid "Rate it 5"
|
154 |
-
msgstr "Notez-le à 5"
|
155 |
-
|
156 |
-
#: ../includes/settings.php:160
|
157 |
-
msgid "on WordPress.org"
|
158 |
-
msgstr "sur WordPress.org"
|
159 |
-
|
160 |
-
#: ../includes/settings.php:161
|
161 |
-
msgid "Blog about it & link to the"
|
162 |
-
msgstr "Mentionnez-le dans votre blog en plaçant un lien vers"
|
163 |
-
|
164 |
-
#: ../includes/settings.php:161
|
165 |
-
msgid "plugin page"
|
166 |
-
msgstr "la page du plugin"
|
167 |
-
|
168 |
-
#: ../includes/settings.php:162
|
169 |
-
msgid "Check out our other"
|
170 |
-
msgstr "Découvrez nos autres"
|
171 |
-
|
172 |
-
#: ../includes/settings.php:162
|
173 |
-
msgid "WordPress plugins"
|
174 |
-
msgstr "plugins Wordpress"
|
175 |
-
|
176 |
-
#: ../includes/settings.php:165
|
177 |
-
msgid "Created by"
|
178 |
-
msgstr "Créé par"
|
179 |
-
|
180 |
-
#: ../includes/settings.php:181
|
181 |
-
msgid "Reset to defaults"
|
182 |
-
msgstr "Restaurer les paramètres par défaut"
|
183 |
-
|
184 |
-
#: ../includes/settings.php:197
|
185 |
-
msgid "General settings"
|
186 |
-
msgstr "Réglages générals"
|
187 |
-
|
188 |
-
#: ../includes/settings.php:198
|
189 |
-
msgid "Post Types Count"
|
190 |
-
msgstr "Comptage des posts"
|
191 |
-
|
192 |
-
#: ../includes/settings.php:199
|
193 |
-
msgid "Counter Mode"
|
194 |
-
msgstr "Mode de comptage"
|
195 |
-
|
196 |
-
#: ../includes/settings.php:200
|
197 |
-
msgid "Post Views Column"
|
198 |
-
msgstr "Colonne Vues d'Article"
|
199 |
-
|
200 |
-
#: ../includes/settings.php:201
|
201 |
-
msgid "Restrict Edit"
|
202 |
-
msgstr "Restreindre l'édition"
|
203 |
-
|
204 |
-
#: ../includes/settings.php:202
|
205 |
-
msgid "Time Between Counts"
|
206 |
-
msgstr "Temps entre deux comptages"
|
207 |
-
|
208 |
-
#: ../includes/settings.php:203
|
209 |
-
msgid "Reset Data Interval"
|
210 |
-
msgstr "Restaurer l'intervalle de temps des données"
|
211 |
-
|
212 |
-
#: ../includes/settings.php:204
|
213 |
-
msgid "Flush Object Cache Interval"
|
214 |
-
msgstr "Intervalle de temps pour le nettoyage du Cache Objets"
|
215 |
-
|
216 |
-
#: ../includes/settings.php:205
|
217 |
-
msgid "Exclude Visitors"
|
218 |
-
msgstr "Exclure les visiteurs"
|
219 |
-
|
220 |
-
#: ../includes/settings.php:206
|
221 |
-
msgid "Exclude IPs"
|
222 |
-
msgstr "Exclure les adresses IP"
|
223 |
-
|
224 |
-
#: ../includes/settings.php:207
|
225 |
-
msgid "WP-PostViews"
|
226 |
-
msgstr "WP-PostViews"
|
227 |
-
|
228 |
-
#: ../includes/settings.php:208
|
229 |
-
msgid "Deactivation"
|
230 |
-
msgstr "Désactivation"
|
231 |
-
|
232 |
-
#: ../includes/settings.php:212
|
233 |
-
msgid "Display settings"
|
234 |
-
msgstr "Afficher les réglages"
|
235 |
-
|
236 |
-
#: ../includes/settings.php:213
|
237 |
-
msgid "Post Views Label"
|
238 |
-
msgstr "Afficher le Texte"
|
239 |
-
|
240 |
-
#: ../includes/settings.php:214
|
241 |
-
msgid "Post Types Display"
|
242 |
-
msgstr "Afficher les types d'articles"
|
243 |
-
|
244 |
-
#: ../includes/settings.php:215
|
245 |
-
msgid "Restrict Display"
|
246 |
-
msgstr "Restreindre l'affichage"
|
247 |
-
|
248 |
-
#: ../includes/settings.php:216
|
249 |
-
msgid "Position"
|
250 |
-
msgstr "Position"
|
251 |
-
|
252 |
-
#: ../includes/settings.php:217
|
253 |
-
msgid "Display Style"
|
254 |
-
msgstr "Style d'affichage"
|
255 |
-
|
256 |
-
#: ../includes/settings.php:218
|
257 |
-
msgid "Icon Class"
|
258 |
-
msgstr "Classe d'icônes"
|
259 |
-
|
260 |
-
#: ../includes/settings.php:230
|
261 |
-
msgid "Enter the label for the post views counter field."
|
262 |
-
msgstr "Saisir le texte pour l'affichage du nombre de vues"
|
263 |
-
|
264 |
-
#: ../includes/settings.php:242
|
265 |
-
msgid "Select post types"
|
266 |
-
msgstr "Sélectionner les types d'articles, pages,..."
|
267 |
-
|
268 |
-
#: ../includes/settings.php:252
|
269 |
-
msgid "Select post types for which post views will be counted."
|
270 |
-
msgstr "Sélectionner les types d'articles dont les vues seront comptées"
|
271 |
-
|
272 |
-
#: ../includes/settings.php:264 ../includes/settings.php:387
|
273 |
-
#: ../includes/settings.php:541
|
274 |
-
msgid "Select groups"
|
275 |
-
msgstr "Sélectionner les groupes"
|
276 |
-
|
277 |
-
#: ../includes/settings.php:274
|
278 |
-
msgid "Select post types for which post views will be displayed."
|
279 |
-
msgstr ""
|
280 |
-
"Sélectionner les types d'articles, pages,...pour lesquels le nombre de vue "
|
281 |
-
"doit s'afficher"
|
282 |
-
|
283 |
-
#: ../includes/settings.php:296
|
284 |
-
msgid ""
|
285 |
-
"Select the method of collecting post views data. If you are using any of the "
|
286 |
-
"caching plugins select Javascript."
|
287 |
-
msgstr ""
|
288 |
-
"Choisir la méthode de collecte des données des vues. Si vous utilisez un "
|
289 |
-
"plugin de cache, sélectionner javascript."
|
290 |
-
|
291 |
-
#: ../includes/settings.php:307
|
292 |
-
msgid ""
|
293 |
-
"Enable to display post views count column for each of the selected post "
|
294 |
-
"types."
|
295 |
-
msgstr ""
|
296 |
-
"Sélectionner pour afficher une colonne \"nombre de vues\" pour chacun des "
|
297 |
-
"articles sélectionnés."
|
298 |
-
|
299 |
-
#: ../includes/settings.php:329
|
300 |
-
msgid "Enter the time between single user visit count."
|
301 |
-
msgstr "Définir le temps entre deux comptage pour un même visiteur."
|
302 |
-
|
303 |
-
#: ../includes/settings.php:352
|
304 |
-
msgid ""
|
305 |
-
"Delete single day post views data older than specified above. Enter 0 "
|
306 |
-
"(number zero) if you want to preserve your data regardless of its age."
|
307 |
-
msgstr ""
|
308 |
-
"Efface le comptage des vues d'un article après le nombre de jour spécifié. "
|
309 |
-
"Entrer 0 (nombre zéro) si vous souhaitez les conserver indéfiniment."
|
310 |
-
|
311 |
-
#: ../includes/settings.php:375
|
312 |
-
msgid ""
|
313 |
-
"How often to flush cached view counts from the object cache into the "
|
314 |
-
"database. This feature is used only if a persistent object cache is detected "
|
315 |
-
"and the interval is greater than 0 (number zero)). When used, view counts "
|
316 |
-
"will be collected and stored in the object cache instead of the database and "
|
317 |
-
"will then be asynchronously flushed to the database according to the "
|
318 |
-
"specified interval.<br /><strong>Notice:</strong> Potential data loss may "
|
319 |
-
"occur if the object cache is cleared/unavailable for the duration of the "
|
320 |
-
"interval."
|
321 |
-
msgstr ""
|
322 |
-
"Fréquence de nettoyage du cache de comptage des vues dans la base de "
|
323 |
-
"données. Cette fonction n'est utilisée que si un objet persistent est "
|
324 |
-
"détecté dans le cache et si l'intervalle de temps est supérieur à 0. "
|
325 |
-
"Lorsqu'utilisée, le nombre de vue sera collecté et stocké dans le cache au "
|
326 |
-
"lieu de la base de données et sera enregistré dans la base après "
|
327 |
-
"l'intervalle de temps spécifié.<br/> <strong>Nota :</strong> Une perte de "
|
328 |
-
"données est possible si le cache est nettoyé ou indisponible dans la durée "
|
329 |
-
"de l'intervalle."
|
330 |
-
|
331 |
-
#: ../includes/settings.php:398 ../includes/settings.php:556
|
332 |
-
msgid "Select user roles"
|
333 |
-
msgstr "Choisir les rôles utilisateurs"
|
334 |
-
|
335 |
-
#: ../includes/settings.php:409
|
336 |
-
msgid "Select the type of visitors to be excluded from post views count."
|
337 |
-
msgstr "Choisir les types de visiteurs à exclure du comptage des vues."
|
338 |
-
|
339 |
-
#: ../includes/settings.php:425 ../includes/settings.php:434
|
340 |
-
msgid "Remove"
|
341 |
-
msgstr "Retirer"
|
342 |
-
|
343 |
-
#: ../includes/settings.php:434
|
344 |
-
msgid "Add new"
|
345 |
-
msgstr "Ajouter"
|
346 |
-
|
347 |
-
#: ../includes/settings.php:434
|
348 |
-
msgid "Add my current IP"
|
349 |
-
msgstr "Ajouter mon adresse IP actuelle"
|
350 |
-
|
351 |
-
#: ../includes/settings.php:436
|
352 |
-
msgid "Enter the IP addresses to be excluded from post views count."
|
353 |
-
msgstr "Entrer les adresses IP à exclure du compage des vues."
|
354 |
-
|
355 |
-
#: ../includes/settings.php:448
|
356 |
-
msgid "Import"
|
357 |
-
msgstr "Importer"
|
358 |
-
|
359 |
-
#: ../includes/settings.php:450
|
360 |
-
msgid "Import post views data from WP-PostViews plugin."
|
361 |
-
msgstr "Importer des données de comptage de vue du plugin WP-PostViews. "
|
362 |
-
|
363 |
-
#: ../includes/settings.php:451
|
364 |
-
msgid "Override existing Post Views Counter data."
|
365 |
-
msgstr "Ecraser les données de Post Views Counter existantes "
|
366 |
-
|
367 |
-
#: ../includes/settings.php:462
|
368 |
-
msgid "Enable to restrict post views editing to admins only."
|
369 |
-
msgstr ""
|
370 |
-
"Active la restriction d'édition des vues d'articles aux seuls Administrateurs"
|
371 |
-
|
372 |
-
#: ../includes/settings.php:472
|
373 |
-
msgid "Enable to delete all plugin data on deactivation."
|
374 |
-
msgstr ""
|
375 |
-
"Active l'effacement de toutes les données du plugin lors de la désactivation."
|
376 |
-
|
377 |
-
#: ../includes/settings.php:493
|
378 |
-
msgid ""
|
379 |
-
"Select where would you like to display the post views counter. Use [post-"
|
380 |
-
"views] shortcode for manual display."
|
381 |
-
msgstr ""
|
382 |
-
"Choisir l'endroit d'affichage du compteur de vues. Utilisez le shortcode "
|
383 |
-
"[post-views] pour l'affichage manuel."
|
384 |
-
|
385 |
-
#: ../includes/settings.php:515
|
386 |
-
msgid "Choose how to display the post views counter."
|
387 |
-
msgstr "Choisir le mode d'affichage du compteur de vues."
|
388 |
-
|
389 |
-
#: ../includes/settings.php:529
|
390 |
-
#, php-format
|
391 |
-
msgid ""
|
392 |
-
"Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank"
|
393 |
-
"\">Dashicons</a> classes are available."
|
394 |
-
msgstr ""
|
395 |
-
"Choisir la classe d'icônes pour les vues. Post Views Counter, parmi les "
|
396 |
-
"classes disponibles suivantes : <a href=\"%s\" target=\"_blank\">Dashicons</"
|
397 |
-
"a>."
|
398 |
-
|
399 |
-
#: ../includes/settings.php:567
|
400 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
401 |
-
msgstr ""
|
402 |
-
"Utiliser cela pour masquer le compteur de vues aux types de visiteurs "
|
403 |
-
"sélectionnés."
|
404 |
-
|
405 |
-
#: ../includes/settings.php:595
|
406 |
-
msgid "WP-PostViews data imported succesfully."
|
407 |
-
msgstr "Les données de WP-PostViews ont été correctement importées."
|
408 |
-
|
409 |
-
#: ../includes/settings.php:597
|
410 |
-
msgid "There was no data to import."
|
411 |
-
msgstr "Aucune donnée à importer."
|
412 |
-
|
413 |
-
#: ../includes/settings.php:753
|
414 |
-
msgid "General settings restored to defaults."
|
415 |
-
msgstr "Réglages généraux par défaut restaurés."
|
416 |
-
|
417 |
-
#: ../includes/settings.php:757
|
418 |
-
msgid "Display settings restored to defaults."
|
419 |
-
msgstr "Réglages d'affichage par défaut restaurés."
|
420 |
-
|
421 |
-
#: ../includes/widgets.php:33 ../includes/widgets.php:43
|
422 |
-
msgid "Most Viewed Posts"
|
423 |
-
msgstr "Articles les plus vus"
|
424 |
-
|
425 |
-
#: ../includes/widgets.php:34
|
426 |
-
msgid "Displays a list of the most viewed posts"
|
427 |
-
msgstr "Affiche une liste des articles les plus vus"
|
428 |
-
|
429 |
-
#: ../includes/widgets.php:51
|
430 |
-
msgid "No Posts found"
|
431 |
-
msgstr "Aucun article trouvé"
|
432 |
-
|
433 |
-
#: ../includes/widgets.php:55
|
434 |
-
msgid "Ascending"
|
435 |
-
msgstr "Ascendant"
|
436 |
-
|
437 |
-
#: ../includes/widgets.php:56
|
438 |
-
msgid "Descending"
|
439 |
-
msgstr "Descendant"
|
440 |
-
|
441 |
-
#: ../includes/widgets.php:93
|
442 |
-
msgid "Title"
|
443 |
-
msgstr "Titre"
|
444 |
-
|
445 |
-
#: ../includes/widgets.php:97
|
446 |
-
msgid "Post Types"
|
447 |
-
msgstr "Types d'articles"
|
448 |
-
|
449 |
-
#: ../includes/widgets.php:110
|
450 |
-
msgid "Number of posts to show"
|
451 |
-
msgstr "Nombre d'articles à afficher"
|
452 |
-
|
453 |
-
#: ../includes/widgets.php:114
|
454 |
-
msgid "No posts message"
|
455 |
-
msgstr "Message Aucun article"
|
456 |
-
|
457 |
-
#: ../includes/widgets.php:118
|
458 |
-
msgid "Order"
|
459 |
-
msgstr "Ordre"
|
460 |
-
|
461 |
-
#: ../includes/widgets.php:130
|
462 |
-
msgid "Display post views?"
|
463 |
-
msgstr "Afficher le nombre de vues ?"
|
464 |
-
|
465 |
-
#: ../includes/widgets.php:132
|
466 |
-
msgid "Display post excerpt?"
|
467 |
-
msgstr "Afficher l'extrait des articles ?"
|
468 |
-
|
469 |
-
#: ../includes/widgets.php:134
|
470 |
-
msgid "Display post thumbnail?"
|
471 |
-
msgstr "Afficher la vignette des articles ?"
|
472 |
-
|
473 |
-
#: ../includes/widgets.php:137
|
474 |
-
msgid "Thumbnail size"
|
475 |
-
msgstr "Taille des vignettes"
|
476 |
-
|
477 |
-
#: ../post-views-counter.php:281
|
478 |
-
msgid "Are you sure you want to reset these settings to defaults?"
|
479 |
-
msgstr "Etes-vous certain de vouloir restaurer les réglages par défaut ?"
|
480 |
-
|
481 |
-
#: ../post-views-counter.php:313
|
482 |
-
msgid "Support"
|
483 |
-
msgstr "Support"
|
484 |
-
|
485 |
-
#: ../post-views-counter.php:332
|
486 |
-
msgid "Settings"
|
487 |
-
msgstr "Réglages"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/post-views-counter-he_IL.mo
DELETED
Binary file
|
languages/post-views-counter-he_IL.po
DELETED
@@ -1,703 +0,0 @@
|
|
1 |
-
# This file was generated by WPML
|
2 |
-
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
|
3 |
-
# http://wpml.org
|
4 |
-
msgid ""
|
5 |
-
msgstr ""
|
6 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
-
"Content-Transfer-Encoding: 8bit\n"
|
8 |
-
"Project-Id-Version: post-views-counter\n"
|
9 |
-
"POT-Creation-Date: \n"
|
10 |
-
"PO-Revision-Date: \n"
|
11 |
-
"Last-Translator: Ahrale <contact@atar4u.com>\n"
|
12 |
-
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
13 |
-
"MIME-Version: 1.0\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"Language: he\n"
|
16 |
-
"X-Generator: Poedit 1.7.4\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
|
19 |
-
# else
|
20 |
-
# $columns['post_views'] = __('Post Views', 'post-views-counter');
|
21 |
-
#
|
22 |
-
# wpml-name: 2b6878c42c03e731668a0a8c2cc8bf3c
|
23 |
-
msgid "Post Views"
|
24 |
-
msgstr "צפיות בפוסט"
|
25 |
-
|
26 |
-
# </div>
|
27 |
-
# <span class="description">'.esc_html__('Use it to hide the post views counter from selected type of visitors.', 'post-views-counter').'</span>
|
28 |
-
# </fieldset>
|
29 |
-
# wpml-name: e134543051875cd191a9bfb3c5db64db
|
30 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
31 |
-
msgstr "השתמש בזה כדי להסתיר את מונה הצפיות מסוג מסוים של מבקרים."
|
32 |
-
|
33 |
-
# <br/>
|
34 |
-
# <span class="description">'.esc_html__('Choose how to display the post views counter.', 'post-views-counter').'</span>
|
35 |
-
# </fieldset>
|
36 |
-
# wpml-name: 828bb1097dfb85166bb5c3cc85a4ba13
|
37 |
-
msgid "Choose how to display the post views counter."
|
38 |
-
msgstr "בחר כיצד להציג את מונה הצפיות בפוסט."
|
39 |
-
|
40 |
-
# <br/>
|
41 |
-
# <span class="description">'.esc_html__('Select where would you like to display the post views counter. Use [post-views] shortcode for manual display.', 'post-views-counter').'</span>
|
42 |
-
# </fieldset>
|
43 |
-
# wpml-name: 494fa9ed65214ea4e4f2d7f970f37de2
|
44 |
-
msgid "Select where would you like to display the post views counter. Use [post-views] shortcode for manual display."
|
45 |
-
msgstr "בחר היכן להציג את מונה הצפיות. השתמש ב קיצור הקוד [post-views] להצגה ידנית."
|
46 |
-
|
47 |
-
# <br/>
|
48 |
-
# <span class="description">'.esc_html__('Enable to delete all plugin data on deactivation.', 'post-views-counter').'</span>
|
49 |
-
# </fieldset>
|
50 |
-
# wpml-name: 44994fd8973f0fc0914ecb643862133e
|
51 |
-
msgid "Enable to delete all plugin data on deactivation."
|
52 |
-
msgstr "הפעל כדי למחוק את כל נתוני התוסף עם כיבויו."
|
53 |
-
|
54 |
-
# <p class="description">'.esc_html__('Import post views data from WP-PostViews plugin.', 'post-views-counter').'</p>
|
55 |
-
# <input id="pvc-wp-postviews" type="checkbox" name="post_views_counter_import_wp_postviews_override"/><label for="pvc-wp-postviews">'.esc_html__('Override existing Post Views Counter data.', 'post-views-counter').'</label>
|
56 |
-
# </fieldset>
|
57 |
-
# wpml-name: d6c1aff79a1db97816fae722d2eeafe8
|
58 |
-
msgid "Override existing Post Views Counter data."
|
59 |
-
msgstr "דורס את הנתונים הקיימים של מספר הצפיות."
|
60 |
-
|
61 |
-
# <br/>
|
62 |
-
# <p class="description">'.esc_html__('Import post views data from WP-PostViews plugin.', 'post-views-counter').'</p>
|
63 |
-
# <input id="pvc-wp-postviews" type="checkbox" name="post_views_counter_import_wp_postviews_override"/><label for="pvc-wp-postviews">'.esc_html__('Override existing Post Views Counter data.', 'post-views-counter').'</label>
|
64 |
-
# wpml-name: e9dd64b2d3139d4439393bf867d7fa3d
|
65 |
-
msgid "Import post views data from WP-PostViews plugin."
|
66 |
-
msgstr "יבוא נתוני צפיה מתוסף WP-PostViews"
|
67 |
-
|
68 |
-
# </div>
|
69 |
-
# <span class="description">'.esc_html__('Enter the IP addresses to be excluded from post views count.', 'post-views-counter').'</span>
|
70 |
-
# </fieldset>
|
71 |
-
# wpml-name: 23c93f02d9e3869862860ef5e8fc17c1
|
72 |
-
msgid "Enter the IP addresses to be excluded from post views count."
|
73 |
-
msgstr "הזן כתובת IP שלא תיכלל בספירת הצפיות."
|
74 |
-
|
75 |
-
# </div>
|
76 |
-
# <span class="description">'.esc_html__('Select the type of visitors to be excluded from post views count.', 'post-views-counter').'</span>
|
77 |
-
# </fieldset>
|
78 |
-
# wpml-name: c1679cb7d80e659e49d9885da6721990
|
79 |
-
msgid "Select the type of visitors to be excluded from post views count."
|
80 |
-
msgstr "בחר את סוג המבקרים שלא ייכללו בספירת הצפיות."
|
81 |
-
|
82 |
-
# <br/>
|
83 |
-
# <span class="description">'.esc_html__('Delete single day post views data older than specified above. Enter 0 (number zero) if you want to preserve your data regardless of its age.', 'post-views-counter').'</span>
|
84 |
-
# </fieldset>
|
85 |
-
# wpml-name: d84f512e9cc007df5f01e00098438331
|
86 |
-
msgid "Delete single day post views data older than specified above. Enter 0 (number zero) if you want to preserve your data regardless of its age."
|
87 |
-
msgstr "מחק נתוני צפיה ישנים מ. הזן 0 (מספר אפס) אם אתה רוצה לשמור את הנתונים שלך ללא קשר לגיל שלהם."
|
88 |
-
|
89 |
-
# <br/>
|
90 |
-
# <span class="description">'.esc_html__('Enter the time between single user visit count.', 'post-views-counter').'</span>
|
91 |
-
# </fieldset>
|
92 |
-
# wpml-name: 9f171231826c3b4225f0c4f299a948a2
|
93 |
-
msgid "Enter the time between single user visit count."
|
94 |
-
msgstr "הזן את הזמן שבין צפיות של ביקורי משתמש יחיד."
|
95 |
-
|
96 |
-
# <br/>
|
97 |
-
# <span class="description">'.esc_html__('Enable to display post views count column for each of the selected post types.', 'post-views-counter').'</span>
|
98 |
-
# </fieldset>
|
99 |
-
# wpml-name: a5499ed05290eeed883e694d8533883a
|
100 |
-
msgid "Enable to display post views count column for each of the selected post types."
|
101 |
-
msgstr "הפעל הצגת עמודת מונה צפיות עבור כל סוגי הפוסט הנבחרים."
|
102 |
-
|
103 |
-
# <br/>
|
104 |
-
# <span class="description">'.esc_html__('Select the method of collecting post views data. If you are using any of the caching plugins select Javascript.', 'post-views-counter').'</span>
|
105 |
-
# </fieldset>
|
106 |
-
# wpml-name: e6268e04c188295373cb30eac4191949
|
107 |
-
msgid "Select the method of collecting post views data. If you are using any of the caching plugins select Javascript."
|
108 |
-
msgstr "בחירת השיטה לאיסוף נתוני הצפיה בפוסט. אם אתה משתמש בסוג כלשהו של תוסף מטמון בחר Javascript."
|
109 |
-
|
110 |
-
# <br/>
|
111 |
-
# <span class="description">'.esc_html__('Select post types for which post views will be displayed.', 'post-views-counter').'</span>
|
112 |
-
# </fieldset>
|
113 |
-
# wpml-name: 7eeb807af1c2e460d37dc3d9ad705e4e
|
114 |
-
msgid "Select post types for which post views will be displayed."
|
115 |
-
msgstr "בחירת סוגי פוסט בהם יוצג מונה הצפיות."
|
116 |
-
|
117 |
-
# <br/>
|
118 |
-
# <span class="description">'.esc_html__('Select post types for which post views will be counted.', 'post-views-counter').'</span>
|
119 |
-
# </fieldset>
|
120 |
-
# wpml-name: 7da415ac443cf55627617c0fb706415c
|
121 |
-
msgid "Select post types for which post views will be counted."
|
122 |
-
msgstr "בחירת סוגי פוסט בהן יימנו הצפיות."
|
123 |
-
|
124 |
-
# <br/>
|
125 |
-
# <span class="description">'.esc_html__('Enter the label for the post views counter field.', 'post-views-counter').'</span>
|
126 |
-
# </fieldset>
|
127 |
-
# wpml-name: a02f387f8aa11eb418b3fdc4182ad4a2
|
128 |
-
msgid "Enter the label for the post views counter field."
|
129 |
-
msgstr "הזן את התווית עבור שדה מונה הצפיות בפוסט."
|
130 |
-
|
131 |
-
# <div class="ip-box">
|
132 |
-
# <input type="text" name="post_views_counter_settings_general[exclude_ips][]" value="" /> <input type="button" class="button button-secondary remove-exclude-ip" value="'.esc_attr__('Remove', 'post-views-counter').'"'.(empty($ips) ? ' style="display: none;"' : '').' /> <input type="button" class="button button-secondary add-exclude-ip" value="'.esc_attr__('Add new', 'post-views-counter').'" /> <input type="button" class="button button-secondary add-current-ip" value="'.esc_attr__('Add my current IP', 'post-views-counter').'" data-rel="'.esc_attr($_SERVER['REMOTE_ADDR']).'" />
|
133 |
-
# </div>
|
134 |
-
# wpml-name: 732f60ecf863c8ec5e4e385fa97974cf
|
135 |
-
msgid "Add my current IP"
|
136 |
-
msgstr "הוסף את כתובת ה IP הנוכחית שלי"
|
137 |
-
|
138 |
-
# <div class="ip-box">
|
139 |
-
# <input type="text" name="post_views_counter_settings_general[exclude_ips][]" value="" /> <input type="button" class="button button-secondary remove-exclude-ip" value="'.esc_attr__('Remove', 'post-views-counter').'"'.(empty($ips) ? ' style="display: none;"' : '').' /> <input type="button" class="button button-secondary add-exclude-ip" value="'.esc_attr__('Add new', 'post-views-counter').'" /> <input type="button" class="button button-secondary add-current-ip" value="'.esc_attr__('Add my current IP', 'post-views-counter').'" data-rel="'.esc_attr($_SERVER['REMOTE_ADDR']).'" />
|
140 |
-
# </div>
|
141 |
-
# wpml-name: ef61fb324d729c341ea8ab9901e23566
|
142 |
-
msgid "Add new"
|
143 |
-
msgstr "הוספה"
|
144 |
-
|
145 |
-
# <div class="ip-box">
|
146 |
-
# <input type="text" name="post_views_counter_settings_general[exclude_ips][]" value="" /> <input type="button" class="button button-secondary remove-exclude-ip" value="'.esc_attr__('Remove', 'post-views-counter').'"'.(empty($ips) ? ' style="display: none;"' : '').' /> <input type="button" class="button button-secondary add-exclude-ip" value="'.esc_attr__('Add new', 'post-views-counter').'" /> <input type="button" class="button button-secondary add-current-ip" value="'.esc_attr__('Add my current IP', 'post-views-counter').'" data-rel="'.esc_attr($_SERVER['REMOTE_ADDR']).'" />
|
147 |
-
# </div>
|
148 |
-
# wpml-name: 1063e38cb53d94d386f21227fcd84717
|
149 |
-
msgid "Remove"
|
150 |
-
msgstr "הסרה"
|
151 |
-
|
152 |
-
# <div class="pvc_user_roles"'.(in_array('roles', Post_Views_Counter()->get_attribute('options', 'display', 'restrict_display', 'groups'), true) ? '' : ' style="display: none;"').'>
|
153 |
-
# <select class="pvc-chosen" data-placeholder="'.esc_attr__('Select user roles', 'post-views-counter').'" name="post_views_counter_settings_display[restrict_display][roles][]" multiple="multiple">';
|
154 |
-
#
|
155 |
-
# wpml-name: 1f9b43f781151210d10ce5a0c3f320c7
|
156 |
-
msgid "Select user roles"
|
157 |
-
msgstr "בחירת תפקידי משתמש"
|
158 |
-
|
159 |
-
# <fieldset>
|
160 |
-
# <select class="pvc-chosen" data-placeholder="'.esc_attr__('Select groups', 'post-views-counter').'" name="post_views_counter_settings_display[restrict_display][groups][]" multiple="multiple">';
|
161 |
-
#
|
162 |
-
# wpml-name: bbd0c249ee2dc65d91a569a39c4a486c
|
163 |
-
msgid "Select groups"
|
164 |
-
msgstr "בחירת קבוצות"
|
165 |
-
|
166 |
-
# <fieldset>
|
167 |
-
# <select class="pvc-chosen" data-placeholder="'.esc_attr__('Select post types', 'post-views-counter').'" name="post_views_counter_settings_general[post_types_count][]" multiple="multiple">';
|
168 |
-
#
|
169 |
-
# wpml-name: ac707beaaf56ab21015d9a5dfc3dfdf5
|
170 |
-
msgid "Select post types"
|
171 |
-
msgstr "בחירת סוגי פוסט"
|
172 |
-
|
173 |
-
# $links,
|
174 |
-
# array(sprintf('<a href="http://www.dfactory.eu/support/forum/post-views-counter/" target="_blank">%s</a>', __('Support', 'post-views-counter')))
|
175 |
-
# );
|
176 |
-
# wpml-name: db5eb84117d06047c97c9a0191b5fffe
|
177 |
-
msgid "Support"
|
178 |
-
msgstr "תמיכה"
|
179 |
-
|
180 |
-
#
|
181 |
-
# add_settings_error('reset_general_settings', 'settings_reset', __('Display settings restored to defaults.', 'post-views-counter'), 'updated');
|
182 |
-
# }
|
183 |
-
# wpml-name: 0a7ee2a5083333b447560afabe8d44e2
|
184 |
-
msgid "Display settings restored to defaults."
|
185 |
-
msgstr "הגדרות התצוגה שוחזרו לברירת המחדל."
|
186 |
-
|
187 |
-
#
|
188 |
-
# add_settings_error('reset_general_settings', 'settings_reset', __('General settings restored to defaults.', 'post-views-counter'), 'updated');
|
189 |
-
# }
|
190 |
-
# wpml-name: ccce0bd36389d2b3f2f9b2921686bf48
|
191 |
-
msgid "General settings restored to defaults."
|
192 |
-
msgstr "ההגדרות הכלליות שוחזרו לברירת המחדל."
|
193 |
-
|
194 |
-
# {
|
195 |
-
# add_settings_error('wp_postviews_import', 'wp_postviews_import', __('There was no data to import.', 'post-views-counter'), 'updated');
|
196 |
-
# }
|
197 |
-
# wpml-name: bc9eb397f21a6553daeffa63c9000343
|
198 |
-
msgid "There was no data to import."
|
199 |
-
msgstr "לא היו נתונים ליבוא."
|
200 |
-
|
201 |
-
#
|
202 |
-
# add_settings_error('wp_postviews_import', 'wp_postviews_import', __('WP-PostViews data imported succesfully.', 'post-views-counter'), 'updated');
|
203 |
-
# }
|
204 |
-
# wpml-name: 38781501cd41a58f7b25220d4126faee
|
205 |
-
msgid "WP-PostViews data imported succesfully."
|
206 |
-
msgstr "נתוני WP-PostViews יובאו בהצלחה."
|
207 |
-
|
208 |
-
# <br/>
|
209 |
-
# <span class="description">'.sprintf(__('Enter the post views icon class. Any of the <a href="%s" target="_blank">Dashicons</a> classes are available.', 'post-views-counter'), 'http://melchoyce.github.io/dashicons/').'</span>
|
210 |
-
# </fieldset>
|
211 |
-
# wpml-name: 3392aa71f4cbce0990d55248c82ba7a1
|
212 |
-
msgid "Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank\">Dashicons</a> classes are available."
|
213 |
-
msgstr "הזן את מחלקת צלמית הצפיות בפוסט. כל אחת ממחלקות ה <a href=\"%s\" target=\"_blank\">Dashicons</a> זמינה."
|
214 |
-
|
215 |
-
# <fieldset>
|
216 |
-
# <input type="submit" class="button button-secondary" name="post_views_counter_import_wp_postviews" value="'.__('Import', 'post-views-counter').'"/>
|
217 |
-
# <br/>
|
218 |
-
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
219 |
-
msgid "Import"
|
220 |
-
msgstr "יבוא"
|
221 |
-
|
222 |
-
# add_settings_field('pvc_display_style', __('Display Style', 'post-views-counter'), array(&$this, 'display_style'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
223 |
-
# add_settings_field('pvc_icon_class', __('Icon Class', 'post-views-counter'), array(&$this, 'icon_class'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
224 |
-
# }
|
225 |
-
# wpml-name: 9aa857ff4d8501f17b950717ebbcc24b
|
226 |
-
msgid "Icon Class"
|
227 |
-
msgstr "מחלקת צחמית"
|
228 |
-
|
229 |
-
# add_settings_field('pvc_position', __('Position', 'post-views-counter'), array(&$this, 'position'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
230 |
-
# add_settings_field('pvc_display_style', __('Display Style', 'post-views-counter'), array(&$this, 'display_style'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
231 |
-
# add_settings_field('pvc_icon_class', __('Icon Class', 'post-views-counter'), array(&$this, 'icon_class'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
232 |
-
# wpml-name: 449bd71d9342884cbca84bdbbec5012b
|
233 |
-
msgid "Display Style"
|
234 |
-
msgstr "עיצוב תצוגה"
|
235 |
-
|
236 |
-
# add_settings_field('pvc_restrict_display', __('Restrict Display', 'post-views-counter'), array(&$this, 'restrict_display'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
237 |
-
# add_settings_field('pvc_position', __('Position', 'post-views-counter'), array(&$this, 'position'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
238 |
-
# add_settings_field('pvc_display_style', __('Display Style', 'post-views-counter'), array(&$this, 'display_style'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
239 |
-
# wpml-name: 52f5e0bc3859bc5f5e25130b6c7e8881
|
240 |
-
msgid "Position"
|
241 |
-
msgstr "מיקום"
|
242 |
-
|
243 |
-
# add_settings_field('pvc_post_types_display', __('Post Types Display', 'post-views-counter'), array(&$this, 'post_types_display'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
244 |
-
# add_settings_field('pvc_restrict_display', __('Restrict Display', 'post-views-counter'), array(&$this, 'restrict_display'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
245 |
-
# add_settings_field('pvc_position', __('Position', 'post-views-counter'), array(&$this, 'position'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
246 |
-
# wpml-name: bf2b654eddbcab98f6d988f11c933b7c
|
247 |
-
msgid "Restrict Display"
|
248 |
-
msgstr "הגבלת תצוגה"
|
249 |
-
|
250 |
-
# add_settings_field('pvc_post_views_label', __('Post Views Label', 'post-views-counter'), array(&$this, 'post_views_label'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
251 |
-
# add_settings_field('pvc_post_types_display', __('Post Types Display', 'post-views-counter'), array(&$this, 'post_types_display'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
252 |
-
# add_settings_field('pvc_restrict_display', __('Restrict Display', 'post-views-counter'), array(&$this, 'restrict_display'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
253 |
-
# wpml-name: 399b2524574ff7ec701478749a9919a1
|
254 |
-
msgid "Post Types Display"
|
255 |
-
msgstr "תצוגת סוגי פוסט"
|
256 |
-
|
257 |
-
# add_settings_section('post_views_counter_settings_display', __('Display settings', 'post-views-counter'), '', 'post_views_counter_settings_display');
|
258 |
-
# add_settings_field('pvc_post_views_label', __('Post Views Label', 'post-views-counter'), array(&$this, 'post_views_label'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
259 |
-
# add_settings_field('pvc_post_types_display', __('Post Types Display', 'post-views-counter'), array(&$this, 'post_types_display'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
260 |
-
# wpml-name: 5b08eda1f261d38497f24bbdb1888e42
|
261 |
-
msgid "Post Views Label"
|
262 |
-
msgstr "תווית מונה הצפיות"
|
263 |
-
|
264 |
-
# register_setting('post_views_counter_settings_display', 'post_views_counter_settings_display', array(&$this, 'validate_settings'));
|
265 |
-
# add_settings_section('post_views_counter_settings_display', __('Display settings', 'post-views-counter'), '', 'post_views_counter_settings_display');
|
266 |
-
# add_settings_field('pvc_post_views_label', __('Post Views Label', 'post-views-counter'), array(&$this, 'post_views_label'), 'post_views_counter_settings_display', 'post_views_counter_settings_display');
|
267 |
-
# wpml-name: 9dc0b7bdd32d5e30f4d71eb5abb6b8d4
|
268 |
-
msgid "Display settings"
|
269 |
-
msgstr "הגדרות התצוגה"
|
270 |
-
|
271 |
-
# add_settings_field('pvc_wp_postviews', __('WP-PostViews', 'post-views-counter'), array(&$this, 'wp_postviews'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
272 |
-
# add_settings_field('pvc_deactivation_delete', __('Deactivation', 'post-views-counter'), array(&$this, 'deactivation_delete'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
273 |
-
#
|
274 |
-
# wpml-name: 142b518220d1a501f6ebc72daf0c218d
|
275 |
-
msgid "Deactivation"
|
276 |
-
msgstr "כיבוי"
|
277 |
-
|
278 |
-
# add_settings_field('pvc_exclude_ips', __('Exclude IPs', 'post-views-counter'), array(&$this, 'exclude_ips'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
279 |
-
# add_settings_field('pvc_wp_postviews', __('WP-PostViews', 'post-views-counter'), array(&$this, 'wp_postviews'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
280 |
-
# add_settings_field('pvc_deactivation_delete', __('Deactivation', 'post-views-counter'), array(&$this, 'deactivation_delete'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
281 |
-
# wpml-name: 37fa3e87ca4867433be0441263f56bc7
|
282 |
-
msgid "WP-PostViews"
|
283 |
-
msgstr "WP-PostViews"
|
284 |
-
|
285 |
-
# add_settings_field('pvc_exclude', __('Exclude Visitors', 'post-views-counter'), array(&$this, 'exclude'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
286 |
-
# add_settings_field('pvc_exclude_ips', __('Exclude IPs', 'post-views-counter'), array(&$this, 'exclude_ips'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
287 |
-
# add_settings_field('pvc_wp_postviews', __('WP-PostViews', 'post-views-counter'), array(&$this, 'wp_postviews'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
288 |
-
# wpml-name: 50e03fbc1b209b9efad9d5a40f26ef53
|
289 |
-
msgid "Exclude IPs"
|
290 |
-
msgstr "אל תכלול כתובות IP"
|
291 |
-
|
292 |
-
# add_settings_field('pvc_reset_counts', __('Reset Data', 'post-views-counter'), array(&$this, 'reset_counts'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
293 |
-
# add_settings_field('pvc_exclude', __('Exclude Visitors', 'post-views-counter'), array(&$this, 'exclude'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
294 |
-
# add_settings_field('pvc_exclude_ips', __('Exclude IPs', 'post-views-counter'), array(&$this, 'exclude_ips'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
295 |
-
# wpml-name: 893f67c38741dcbb510673bbea43df02
|
296 |
-
msgid "Exclude Visitors"
|
297 |
-
msgstr "אל תכלול מבקרים"
|
298 |
-
|
299 |
-
# add_settings_field('pvc_time_between_counts', __('Time Between Counts', 'post-views-counter'), array(&$this, 'time_between_counts'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
300 |
-
# add_settings_field('pvc_reset_counts', __('Reset Data', 'post-views-counter'), array(&$this, 'reset_counts'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
301 |
-
# add_settings_field('pvc_exclude', __('Exclude Visitors', 'post-views-counter'), array(&$this, 'exclude'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
302 |
-
# wpml-name: b8fafd4d55f19ac7d8e0df60849def54
|
303 |
-
msgid "Reset Data"
|
304 |
-
msgstr "איפוס נתונים"
|
305 |
-
|
306 |
-
# add_settings_field('pvc_post_views_column', __('Post Views Column', 'post-views-counter'), array(&$this, 'post_views_column'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
307 |
-
# add_settings_field('pvc_time_between_counts', __('Time Between Counts', 'post-views-counter'), array(&$this, 'time_between_counts'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
308 |
-
# add_settings_field('pvc_reset_counts', __('Reset Data', 'post-views-counter'), array(&$this, 'reset_counts'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
309 |
-
# wpml-name: 68cc8321958192ab646d438dac2a0e01
|
310 |
-
msgid "Time Between Counts"
|
311 |
-
msgstr "הזמן שבין הספירות"
|
312 |
-
|
313 |
-
# add_settings_field('pvc_counter_mode', __('Counter Mode', 'post-views-counter'), array(&$this, 'counter_mode'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
314 |
-
# add_settings_field('pvc_post_views_column', __('Post Views Column', 'post-views-counter'), array(&$this, 'post_views_column'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
315 |
-
# add_settings_field('pvc_time_between_counts', __('Time Between Counts', 'post-views-counter'), array(&$this, 'time_between_counts'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
316 |
-
# wpml-name: f45b80816475ecbf9fcbd07627f18f31
|
317 |
-
msgid "Post Views Column"
|
318 |
-
msgstr "עמודת מונה צפיות"
|
319 |
-
|
320 |
-
# add_settings_field('pvc_post_types_count', __('Post Types Count', 'post-views-counter'), array(&$this, 'post_types_count'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
321 |
-
# add_settings_field('pvc_counter_mode', __('Counter Mode', 'post-views-counter'), array(&$this, 'counter_mode'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
322 |
-
# add_settings_field('pvc_post_views_column', __('Post Views Column', 'post-views-counter'), array(&$this, 'post_views_column'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
323 |
-
# wpml-name: 2e0e0814e94100bd17e4805612f30062
|
324 |
-
msgid "Counter Mode"
|
325 |
-
msgstr "מצב מונה"
|
326 |
-
|
327 |
-
# add_settings_section('post_views_counter_settings_general', __('General settings', 'post-views-counter'), '', 'post_views_counter_settings_general');
|
328 |
-
# add_settings_field('pvc_post_types_count', __('Post Types Count', 'post-views-counter'), array(&$this, 'post_types_count'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
329 |
-
# add_settings_field('pvc_counter_mode', __('Counter Mode', 'post-views-counter'), array(&$this, 'counter_mode'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
330 |
-
# wpml-name: 5df1e366edb804b67e7ce03316d7a59f
|
331 |
-
msgid "Post Types Count"
|
332 |
-
msgstr "מונה סוג פוסט"
|
333 |
-
|
334 |
-
# register_setting('post_views_counter_settings_general', 'post_views_counter_settings_general', array(&$this, 'validate_settings'));
|
335 |
-
# add_settings_section('post_views_counter_settings_general', __('General settings', 'post-views-counter'), '', 'post_views_counter_settings_general');
|
336 |
-
# add_settings_field('pvc_post_types_count', __('Post Types Count', 'post-views-counter'), array(&$this, 'post_types_count'), 'post_views_counter_settings_general', 'post_views_counter_settings_general');
|
337 |
-
# wpml-name: de62775a71fc2bf7a13d7530ae24a7ed
|
338 |
-
msgid "General settings"
|
339 |
-
msgstr "הגדרות כלליות"
|
340 |
-
|
341 |
-
#
|
342 |
-
# submit_button(__('Reset to defaults', 'post-views-counter'), 'secondary reset_pvc_settings', $this->tabs[$tab_key]['reset'], FALSE);
|
343 |
-
#
|
344 |
-
# wpml-name: 21e2bb42873eddcb9b476b8eafbe0c18
|
345 |
-
msgid "Reset to defaults"
|
346 |
-
msgstr "איפוס לברירות המחדל"
|
347 |
-
|
348 |
-
# <hr />
|
349 |
-
# <p class="df-link inner">'.__('Created by', 'post-views-counter').' <a href="http://www.dfactory.eu/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=created-by" target="_blank" title="dFactory - Quality plugins for WordPress"><img src="'.POST_VIEWS_COUNTER_URL.'/images/logo-dfactory.png'.'" title="dFactory - Quality plugins for WordPress" alt="dFactory - Quality plugins for WordPress" /></a></p>
|
350 |
-
# </div>
|
351 |
-
# wpml-name: c8e6a7ed1489c036564b6bc24c92cca4
|
352 |
-
msgid "Created by"
|
353 |
-
msgstr "נוצר על-ידי"
|
354 |
-
|
355 |
-
# __('Blog about it & link to the', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/post-views-counter/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=blog-about" target="_blank" title="'.__('plugin page', 'post-views-counter').'">'.__('plugin page', 'post-views-counter').'</a><br/>'.
|
356 |
-
# __('Check out our other', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=other-plugins" target="_blank" title="'.__('WordPress plugins', 'post-views-counter').'">'.__('WordPress plugins', 'post-views-counter').'</a>
|
357 |
-
# </p>
|
358 |
-
# wpml-name: b5f7ccb06aac73d562f608432419984f
|
359 |
-
msgid "WordPress plugins"
|
360 |
-
msgstr "תוספי וורדפרס"
|
361 |
-
|
362 |
-
# __('Blog about it & link to the', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/post-views-counter/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=blog-about" target="_blank" title="'.__('plugin page', 'post-views-counter').'">'.__('plugin page', 'post-views-counter').'</a><br/>'.
|
363 |
-
# __('Check out our other', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=other-plugins" target="_blank" title="'.__('WordPress plugins', 'post-views-counter').'">'.__('WordPress plugins', 'post-views-counter').'</a>
|
364 |
-
# </p>
|
365 |
-
# wpml-name: d441f42d18b3436b5dced81f65942cb3
|
366 |
-
msgid "Check out our other"
|
367 |
-
msgstr "בדקו את יתר"
|
368 |
-
|
369 |
-
# <p class="inner"><a href="http://wordpress.org/support/view/plugin-reviews/post-views-counter" target="_blank" title="'.__('Rate it 5', 'events-maker').'">'.__('Rate it 5', 'post-views-counter').'</a> '.__('on WordPress.org', 'post-views-counter').'<br />'.
|
370 |
-
# __('Blog about it & link to the', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/post-views-counter/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=blog-about" target="_blank" title="'.__('plugin page', 'post-views-counter').'">'.__('plugin page', 'post-views-counter').'</a><br/>'.
|
371 |
-
# __('Check out our other', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=other-plugins" target="_blank" title="'.__('WordPress plugins', 'post-views-counter').'">'.__('WordPress plugins', 'post-views-counter').'</a>
|
372 |
-
# wpml-name: aea33adedbe687186a07d5eeb8f7532d
|
373 |
-
msgid "plugin page"
|
374 |
-
msgstr "עמוד תוסף"
|
375 |
-
|
376 |
-
# <p class="inner"><a href="http://wordpress.org/support/view/plugin-reviews/post-views-counter" target="_blank" title="'.__('Rate it 5', 'events-maker').'">'.__('Rate it 5', 'post-views-counter').'</a> '.__('on WordPress.org', 'post-views-counter').'<br />'.
|
377 |
-
# __('Blog about it & link to the', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/post-views-counter/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=blog-about" target="_blank" title="'.__('plugin page', 'post-views-counter').'">'.__('plugin page', 'post-views-counter').'</a><br/>'.
|
378 |
-
# __('Check out our other', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=other-plugins" target="_blank" title="'.__('WordPress plugins', 'post-views-counter').'">'.__('WordPress plugins', 'post-views-counter').'</a>
|
379 |
-
# wpml-name: 12c59d2144988f54887561fd5d07bd15
|
380 |
-
msgid "Blog about it & link to the"
|
381 |
-
msgstr "פרסם וקשר ל"
|
382 |
-
|
383 |
-
# <h4 class="inner">'.__('Do you like this plugin?', 'post-views-counter').'</h4>
|
384 |
-
# <p class="inner"><a href="http://wordpress.org/support/view/plugin-reviews/post-views-counter" target="_blank" title="'.__('Rate it 5', 'events-maker').'">'.__('Rate it 5', 'post-views-counter').'</a> '.__('on WordPress.org', 'post-views-counter').'<br />'.
|
385 |
-
# __('Blog about it & link to the', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/post-views-counter/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=blog-about" target="_blank" title="'.__('plugin page', 'post-views-counter').'">'.__('plugin page', 'post-views-counter').'</a><br/>'.
|
386 |
-
# wpml-name: a56dc830655cfe3ea6ec18bed27290b2
|
387 |
-
msgid "on WordPress.org"
|
388 |
-
msgstr "ב WordPress.org"
|
389 |
-
|
390 |
-
# <h4 class="inner">'.__('Do you like this plugin?', 'post-views-counter').'</h4>
|
391 |
-
# <p class="inner"><a href="http://wordpress.org/support/view/plugin-reviews/post-views-counter" target="_blank" title="'.__('Rate it 5', 'events-maker').'">'.__('Rate it 5', 'post-views-counter').'</a> '.__('on WordPress.org', 'post-views-counter').'<br />'.
|
392 |
-
# __('Blog about it & link to the', 'post-views-counter').' <a href="http://www.dfactory.eu/plugins/post-views-counter/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=blog-about" target="_blank" title="'.__('plugin page', 'post-views-counter').'">'.__('plugin page', 'post-views-counter').'</a><br/>'.
|
393 |
-
# wpml-name: b9933f69a39bb5385a7533195b9ddb1c
|
394 |
-
msgid "Rate it 5"
|
395 |
-
msgstr "תן לזה דירוג 5"
|
396 |
-
|
397 |
-
# <hr />
|
398 |
-
# <h4 class="inner">'.__('Do you like this plugin?', 'post-views-counter').'</h4>
|
399 |
-
# <p class="inner"><a href="http://wordpress.org/support/view/plugin-reviews/post-views-counter" target="_blank" title="'.__('Rate it 5', 'events-maker').'">'.__('Rate it 5', 'post-views-counter').'</a> '.__('on WordPress.org', 'post-views-counter').'<br />'.
|
400 |
-
# wpml-name: acee3a6f37049e783fd1a4f32d91ecf2
|
401 |
-
msgid "Do you like this plugin?"
|
402 |
-
msgstr "אוהב את התוסף הזה?"
|
403 |
-
|
404 |
-
# <h4 class="inner">'.__('Need support?', 'post-views-counter').'</h4>
|
405 |
-
# <p class="inner">'.__('If you are having problems with this plugin, please talk about them in the', 'post-views-counter').' <a href="http://www.dfactory.eu/support/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=support" target="_blank" title="'.__('Support forum', 'post-views-counter').'">'.__('Support forum', 'post-views-counter').'</a></p>
|
406 |
-
# <hr />
|
407 |
-
# wpml-name: cc1f1c9c830fc864d17ca868906b9888
|
408 |
-
msgid "Support forum"
|
409 |
-
msgstr "פורום תמיכה"
|
410 |
-
|
411 |
-
# <h4 class="inner">'.__('Need support?', 'post-views-counter').'</h4>
|
412 |
-
# <p class="inner">'.__('If you are having problems with this plugin, please talk about them in the', 'post-views-counter').' <a href="http://www.dfactory.eu/support/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=support" target="_blank" title="'.__('Support forum', 'post-views-counter').'">'.__('Support forum', 'post-views-counter').'</a></p>
|
413 |
-
# <hr />
|
414 |
-
# wpml-name: 59f672d449c7bf54a3bc0a52a15bb1ef
|
415 |
-
msgid "If you are having problems with this plugin, please talk about them in the"
|
416 |
-
msgstr "אם יש לך בעיות עם התוסף, אנא דבר עליהם ב"
|
417 |
-
|
418 |
-
# <div class="inside">
|
419 |
-
# <h4 class="inner">'.__('Need support?', 'post-views-counter').'</h4>
|
420 |
-
# <p class="inner">'.__('If you are having problems with this plugin, please talk about them in the', 'post-views-counter').' <a href="http://www.dfactory.eu/support/?utm_source=post-views-counter-settings&utm_medium=link&utm_campaign=support" target="_blank" title="'.__('Support forum', 'post-views-counter').'">'.__('Support forum', 'post-views-counter').'</a></p>
|
421 |
-
# wpml-name: 1ce6a536b250322c39855d2bc9196576
|
422 |
-
msgid "Need support?"
|
423 |
-
msgstr "זקוק לתמיכה?"
|
424 |
-
|
425 |
-
# <div class="df-credits">
|
426 |
-
# <h3 class="hndle">'.__('Post Views Counter', 'post-views-counter').' '.Post_Views_Counter()->get_attribute('defaults', 'version').'</h3>
|
427 |
-
# <div class="inside">
|
428 |
-
# wpml-name: cd8ba40c9423078b48cc0f2d81a21c15
|
429 |
-
msgid "Post Views Counter"
|
430 |
-
msgstr "מונה הצפיות בפוסט Post Views Counter"
|
431 |
-
|
432 |
-
# 'display' => array(
|
433 |
-
# 'name' => __('Display', 'post-views-counter'),
|
434 |
-
# 'key' => 'post_views_counter_settings_display',
|
435 |
-
# wpml-name: b9987a246a537f4fe86f1f2e3d10dbdb
|
436 |
-
msgid "Display"
|
437 |
-
msgstr "הצג"
|
438 |
-
|
439 |
-
# 'general' => array(
|
440 |
-
# 'name' => __('General', 'post-views-counter'),
|
441 |
-
# 'key' => 'post_views_counter_settings_general',
|
442 |
-
# wpml-name: 0db377921f4ce762c62526131097968f
|
443 |
-
msgid "General"
|
444 |
-
msgstr "כללי"
|
445 |
-
|
446 |
-
# 'icon' => __('icon', 'post-views-counter'),
|
447 |
-
# 'text' => __('label', 'post-views-counter')
|
448 |
-
# );
|
449 |
-
# wpml-name: d304ba20e96d87411588eeabac850e34
|
450 |
-
msgid "label"
|
451 |
-
msgstr "תווית"
|
452 |
-
|
453 |
-
# $this->display_styles = array(
|
454 |
-
# 'icon' => __('icon', 'post-views-counter'),
|
455 |
-
# 'text' => __('label', 'post-views-counter')
|
456 |
-
# wpml-name: baec6461b0d69dde1b861aefbe375d8a
|
457 |
-
msgid "icon"
|
458 |
-
msgstr "צלמית"
|
459 |
-
|
460 |
-
# 'after' => __('after the content', 'post-views-counter'),
|
461 |
-
# 'manual' => __('manual', 'post-views-counter')
|
462 |
-
# );
|
463 |
-
# wpml-name: 3c78b35502b2693fefdfc51cba3a53a5
|
464 |
-
msgid "manual"
|
465 |
-
msgstr "הדרכה"
|
466 |
-
|
467 |
-
# 'before' => __('before the content', 'post-views-counter'),
|
468 |
-
# 'after' => __('after the content', 'post-views-counter'),
|
469 |
-
# 'manual' => __('manual', 'post-views-counter')
|
470 |
-
# wpml-name: 09baf53047da18c7d39ab35549cdd031
|
471 |
-
msgid "after the content"
|
472 |
-
msgstr "אחרי התוכן"
|
473 |
-
|
474 |
-
# $this->positions = array(
|
475 |
-
# 'before' => __('before the content', 'post-views-counter'),
|
476 |
-
# 'after' => __('after the content', 'post-views-counter'),
|
477 |
-
# wpml-name: fe2f7b4fd22be7dc41b8a3f38f0123bd
|
478 |
-
msgid "before the content"
|
479 |
-
msgstr "לפני התוכן"
|
480 |
-
|
481 |
-
# 'guests' => __('guests', 'post-views-counter'),
|
482 |
-
# 'roles' => __('selected user roles', 'post-views-counter')
|
483 |
-
# );
|
484 |
-
# wpml-name: 038c5d67b28d574ea23ff5eae263e202
|
485 |
-
msgid "selected user roles"
|
486 |
-
msgstr "תפקידי משתמש נבחרים"
|
487 |
-
|
488 |
-
# 'users' => __('logged in users', 'post-views-counter'),
|
489 |
-
# 'guests' => __('guests', 'post-views-counter'),
|
490 |
-
# 'roles' => __('selected user roles', 'post-views-counter')
|
491 |
-
# wpml-name: 9366a2751ef2a1c1d4d98cc377d61e8c
|
492 |
-
msgid "guests"
|
493 |
-
msgstr "אורחים"
|
494 |
-
|
495 |
-
# 'robots' => __('robots', 'post-views-counter'),
|
496 |
-
# 'users' => __('logged in users', 'post-views-counter'),
|
497 |
-
# 'guests' => __('guests', 'post-views-counter'),
|
498 |
-
# wpml-name: 8cbfac015c4118d010a7e718935aa921
|
499 |
-
msgid "logged in users"
|
500 |
-
msgstr "משתמשים מחוברים"
|
501 |
-
|
502 |
-
# $this->groups = array(
|
503 |
-
# 'robots' => __('robots', 'post-views-counter'),
|
504 |
-
# 'users' => __('logged in users', 'post-views-counter'),
|
505 |
-
# wpml-name: 27f5e15b6af3223f1176293cd015771d
|
506 |
-
msgid "robots"
|
507 |
-
msgstr "רובוטים"
|
508 |
-
|
509 |
-
# 'months' => __('months', 'post-views-counter'),
|
510 |
-
# 'years' => __('years', 'post-views-counter')
|
511 |
-
# );
|
512 |
-
# wpml-name: 75aeb98e5241592ad6a6c2c4c78a16ef
|
513 |
-
msgid "years"
|
514 |
-
msgstr "שנים"
|
515 |
-
|
516 |
-
# 'weeks' => __('weeks', 'post-views-counter'),
|
517 |
-
# 'months' => __('months', 'post-views-counter'),
|
518 |
-
# 'years' => __('years', 'post-views-counter')
|
519 |
-
# wpml-name: da36cfaf48b9e19896e23e1207040d1e
|
520 |
-
msgid "months"
|
521 |
-
msgstr "חודשים"
|
522 |
-
|
523 |
-
# 'days' => __('days', 'post-views-counter'),
|
524 |
-
# 'weeks' => __('weeks', 'post-views-counter'),
|
525 |
-
# 'months' => __('months', 'post-views-counter'),
|
526 |
-
# wpml-name: ae60f11ab51860bdb22794a943335a34
|
527 |
-
msgid "weeks"
|
528 |
-
msgstr "שבועות"
|
529 |
-
|
530 |
-
# 'hours' => __('hours', 'post-views-counter'),
|
531 |
-
# 'days' => __('days', 'post-views-counter'),
|
532 |
-
# 'weeks' => __('weeks', 'post-views-counter'),
|
533 |
-
# wpml-name: 44fdec47036f482b68b748f9d786801b
|
534 |
-
msgid "days"
|
535 |
-
msgstr "ימים"
|
536 |
-
|
537 |
-
# 'minutes' => __('minutes', 'post-views-counter'),
|
538 |
-
# 'hours' => __('hours', 'post-views-counter'),
|
539 |
-
# 'days' => __('days', 'post-views-counter'),
|
540 |
-
# wpml-name: 73cdddd7730abfc13a55efb9f5685a3b
|
541 |
-
msgid "hours"
|
542 |
-
msgstr "שעות"
|
543 |
-
|
544 |
-
# $this->time_types = array(
|
545 |
-
# 'minutes' => __('minutes', 'post-views-counter'),
|
546 |
-
# 'hours' => __('hours', 'post-views-counter'),
|
547 |
-
# wpml-name: 640fd0cc0ffa0316ae087652871f4486
|
548 |
-
msgid "minutes"
|
549 |
-
msgstr "דקות"
|
550 |
-
|
551 |
-
# 'php' => __('PHP', 'post-views-counter'),
|
552 |
-
# 'js' => __('JavaScript', 'post-views-counter')
|
553 |
-
# );
|
554 |
-
# wpml-name: 686155af75a60a0f6e9d80c1f7edd3e9
|
555 |
-
msgid "JavaScript"
|
556 |
-
msgstr "JavaScript"
|
557 |
-
|
558 |
-
# $this->modes = array(
|
559 |
-
# 'php' => __('PHP', 'post-views-counter'),
|
560 |
-
# 'js' => __('JavaScript', 'post-views-counter')
|
561 |
-
# wpml-name: 2fec392304a5c23ac138da22847f9b7c
|
562 |
-
msgid "PHP"
|
563 |
-
msgstr "PHP"
|
564 |
-
|
565 |
-
# 'yes' => __('Enable', 'post-views-counter'),
|
566 |
-
# 'no' => __('Disable', 'post-views-counter')
|
567 |
-
# );
|
568 |
-
# wpml-name: bcfaccebf745acfd5e75351095a5394a
|
569 |
-
msgid "Disable"
|
570 |
-
msgstr "כיבוי"
|
571 |
-
|
572 |
-
# $this->choices = array(
|
573 |
-
# 'yes' => __('Enable', 'post-views-counter'),
|
574 |
-
# 'no' => __('Disable', 'post-views-counter')
|
575 |
-
# wpml-name: 2faec1f9f8cc7f8f40d521c4dd574f49
|
576 |
-
msgid "Enable"
|
577 |
-
msgstr "הפעלה"
|
578 |
-
|
579 |
-
# 'interval' => Post_Views_Counter()->get_instance('counter')->get_timestamp(Post_Views_Counter()->get_attribute('options', 'general', 'reset_counts', 'type'), Post_Views_Counter()->get_attribute('options', 'general', 'reset_counts', 'number'), false),
|
580 |
-
# 'display' => __('Post Views Counter reset daily counts interval', 'post-views-counter')
|
581 |
-
# );
|
582 |
-
# wpml-name: 7dbe86da6c183d44027ee8966f6ebe51
|
583 |
-
msgid "Post Views Counter reset daily counts interval"
|
584 |
-
msgstr "מרווח ספירה יומי של מונה צפיות הפוסט"
|
585 |
-
|
586 |
-
# <p class="em-event-thumbnail-size"'.($show_post_thumbnail ? '' : ' style="display: none;"').'>
|
587 |
-
# <label for="'.$this->get_field_id('thumbnail_size').'">'.__('Thumbnail size', 'post-views-counter').':</label>
|
588 |
-
# <select id="'.$this->get_field_id('thumbnail_size').'" name="'.$this->get_field_name('thumbnail_size').'">';
|
589 |
-
# wpml-name: e64e8bc8063f61b3ea70ba74d3266806
|
590 |
-
msgid "Thumbnail size"
|
591 |
-
msgstr "גודל התמונה הממוזערת"
|
592 |
-
|
593 |
-
# <br />
|
594 |
-
# <input id="'.$this->get_field_id('show_post_thumbnail').'" class="em-show-event-thumbnail" type="checkbox" name="'.$this->get_field_name('show_post_thumbnail').'" '.checked(true, $show_post_thumbnail, false).' /> <label for="'.$this->get_field_id('show_post_thumbnail').'">'.__('Display post thumbnail?', 'post-views-counter').'</label>
|
595 |
-
# </p>
|
596 |
-
# wpml-name: 7d8813e3d270bec3f6825684e8677703
|
597 |
-
msgid "Display post thumbnail?"
|
598 |
-
msgstr "להציג תמונה ממוזערת של הפוסט?"
|
599 |
-
|
600 |
-
# <br />
|
601 |
-
# <input id="'.$this->get_field_id('show_post_excerpt').'" type="checkbox" name="'.$this->get_field_name('show_post_excerpt').'" '.checked(true, (isset($instance['show_post_excerpt']) ? $instance['show_post_excerpt'] : $this->pvc_defaults['show_post_excerpt']), false).' /> <label for="'.$this->get_field_id('show_post_excerpt').'">'.__('Display post excerpt?', 'post-views-counter').'</label>
|
602 |
-
# <br />
|
603 |
-
# wpml-name: 85d12d6c482d10e4e3ebf2967591cb69
|
604 |
-
msgid "Display post excerpt?"
|
605 |
-
msgstr "להציג את מובאת הפוסט?"
|
606 |
-
|
607 |
-
# <p>
|
608 |
-
# <input id="'.$this->get_field_id('show_post_views').'" type="checkbox" name="'.$this->get_field_name('show_post_views').'" '.checked(true, (isset($instance['show_post_views']) ? $instance['show_post_views'] : $this->pvc_defaults['show_post_views']), false).' /> <label for="'.$this->get_field_id('show_post_views').'">'.__('Display post views?', 'post-views-counter').'</label>
|
609 |
-
# <br />
|
610 |
-
# wpml-name: 916183b7aa3c702ad6dbe98339af6862
|
611 |
-
msgid "Display post views?"
|
612 |
-
msgstr "להציג את הצפיות בפוסט?"
|
613 |
-
|
614 |
-
# <p>
|
615 |
-
# <label for="'.$this->get_field_id('order').'">'.__('Order', 'post-views-counter').':</label>
|
616 |
-
# <select id="'.$this->get_field_id('order').'" name="'.$this->get_field_name('order').'">';
|
617 |
-
# wpml-name: a240fa27925a635b08dc28c9e4f9216d
|
618 |
-
msgid "Order"
|
619 |
-
msgstr "סדר"
|
620 |
-
|
621 |
-
# <p>
|
622 |
-
# <label for="'.$this->get_field_id('no_posts_message').'">'.__('No posts message', 'post-views-counter').':</label>
|
623 |
-
# <input id="'.$this->get_field_id('no_posts_message').'" class="widefat" type="text" name="'.$this->get_field_name('no_posts_message').'" value="'.esc_attr(isset($instance['no_posts_message']) ? $instance['no_posts_message'] : $this->pvc_defaults['no_posts_message']).'" />
|
624 |
-
# wpml-name: 8ca6d1ea2781e2a1cc55a2b04a7daa49
|
625 |
-
msgid "No posts message"
|
626 |
-
msgstr "אין הודעת פוסטים"
|
627 |
-
|
628 |
-
# <p>
|
629 |
-
# <label for="'.$this->get_field_id('number_of_posts').'">'.__('Number of posts to show', 'post-views-counter').':</label>
|
630 |
-
# <input id="'.$this->get_field_id('number_of_posts').'" name="'.$this->get_field_name('number_of_posts').'" type="text" size="3" value="'.esc_attr(isset($instance['number_of_posts']) ? $instance['number_of_posts'] : $this->pvc_defaults['number_of_posts']).'" />
|
631 |
-
# wpml-name: 6f433f4a921abe8f10e10bec25edc819
|
632 |
-
msgid "Number of posts to show"
|
633 |
-
msgstr "מספר הפוסטים להצגה"
|
634 |
-
|
635 |
-
# <p>
|
636 |
-
# <label>'.__('Post types', 'post-views-counter').':</label><br />';
|
637 |
-
#
|
638 |
-
# wpml-name: b9489ecd53ee4a441377840fa418060f
|
639 |
-
msgid "Post types"
|
640 |
-
msgstr "סוגי פוסט"
|
641 |
-
|
642 |
-
# <p>
|
643 |
-
# <label for="'.$this->get_field_id('title').'">'.__('Title', 'post-views-counter').':</label>
|
644 |
-
# <input id="'.$this->get_field_id('title').'" class="widefat" name="'.$this->get_field_name('title').'" type="text" value="'.esc_attr(isset($instance['title']) ? $instance['title'] : $this->pvc_defaults['title']).'" />
|
645 |
-
# wpml-name: b78a3223503896721cca1303f776159b
|
646 |
-
msgid "Title"
|
647 |
-
msgstr "כותרת"
|
648 |
-
|
649 |
-
# 'asc' => __('Ascending', 'post-views-counter'),
|
650 |
-
# 'desc' => __('Descending', 'post-views-counter')
|
651 |
-
# );
|
652 |
-
# wpml-name: e3cf5ac19407b1a62c6fccaff675a53b
|
653 |
-
msgid "Descending"
|
654 |
-
msgstr "סדר יורד"
|
655 |
-
|
656 |
-
# $this->pvc_order_types = array(
|
657 |
-
# 'asc' => __('Ascending', 'post-views-counter'),
|
658 |
-
# 'desc' => __('Descending', 'post-views-counter')
|
659 |
-
# wpml-name: cf3fb1ff52ea1eed3347ac5401ee7f0c
|
660 |
-
msgid "Ascending"
|
661 |
-
msgstr "סדר עולה"
|
662 |
-
|
663 |
-
# 'show_post_excerpt' => false,
|
664 |
-
# 'no_posts_message' => __('No Posts found', 'post-views-counter')
|
665 |
-
# );
|
666 |
-
# wpml-name: 429af42ddf1f1137c83acdfa4c026a8f
|
667 |
-
msgid "No Posts found"
|
668 |
-
msgstr "לא נמצאו פוסטים"
|
669 |
-
|
670 |
-
# array(
|
671 |
-
# 'description' => __('Displays a list of the most viewed posts', 'post-views-counter')
|
672 |
-
# )
|
673 |
-
# wpml-name: f9259d2718724e98e5532a3e63729744
|
674 |
-
msgid "Displays a list of the most viewed posts"
|
675 |
-
msgstr "מציג רשימה של הפוסטים הנצפים ביותר"
|
676 |
-
|
677 |
-
# $this->pvc_defaults = array(
|
678 |
-
# 'title' => __('Most Viewed Posts', 'post-views-counter'),
|
679 |
-
# 'number_of_posts' => 5,
|
680 |
-
# wpml-name: c595cf11c65cd5109ed5207dcb57a2a7
|
681 |
-
msgid "Most Viewed Posts"
|
682 |
-
msgstr "הכי נצפים"
|
683 |
-
|
684 |
-
# 'show_post_excerpt' => false,
|
685 |
-
# 'no_posts_message' => __('No Posts', 'post-views-counter')
|
686 |
-
# );
|
687 |
-
# wpml-name: ff721db755ed02dec43cdf42b9b6d32f
|
688 |
-
msgid "No Posts"
|
689 |
-
msgstr "אין פוסטים"
|
690 |
-
|
691 |
-
# {
|
692 |
-
# $settings_link = sprintf('<a href="%s">%s</a>', admin_url('options-general.php').'?page=post-views-counter', __('Settings', 'post-views-counter'));
|
693 |
-
#
|
694 |
-
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
695 |
-
msgid "Settings"
|
696 |
-
msgstr "הגדרות"
|
697 |
-
|
698 |
-
# array(
|
699 |
-
# 'resetToDefaults' => __('Are you sure you want to reset these settings to defaults?', 'post-views-counter')
|
700 |
-
# )
|
701 |
-
# wpml-name: 52aeab346895416e7ababa964b135420
|
702 |
-
msgid "Are you sure you want to reset these settings to defaults?"
|
703 |
-
msgstr "בטוח שרוצה לאפס את ההגדרות האלו לברירת המחדל?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/post-views-counter-hr.mo
DELETED
Binary file
|
languages/post-views-counter-hr.po
DELETED
@@ -1,579 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Post Views Counter v1.0.7\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2015-04-09 17:59+0100\n"
|
7 |
-
"Last-Translator: zytzagoo\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=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
|
13 |
-
"X-Generator: Poedit 1.7.5\n"
|
14 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
-
"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"
|
16 |
-
"X-Poedit-Basepath: ../\n"
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
-
"Language: hr_HR\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
|
21 |
-
# @ post-views-counter
|
22 |
-
#: includes/columns.php:45 includes/columns.php:183 includes/columns.php:190
|
23 |
-
msgid "Post Views"
|
24 |
-
msgstr "Pregledi"
|
25 |
-
|
26 |
-
# @ post-views-counter
|
27 |
-
#: includes/cron.php:51
|
28 |
-
msgid "Post Views Counter reset daily counts interval"
|
29 |
-
msgstr "Interval resetiranja dnevnih podataka o pregledima"
|
30 |
-
|
31 |
-
# @ post-views-counter
|
32 |
-
#: includes/cron.php:56
|
33 |
-
msgid "Post Views Counter cache flush interval"
|
34 |
-
msgstr "Interval spremanja broja pregleda iz privremene memorije u WordPress bazu"
|
35 |
-
|
36 |
-
# @ post-views-counter
|
37 |
-
#: includes/functions.php:125
|
38 |
-
msgid "No Posts"
|
39 |
-
msgstr "Nema rezultata"
|
40 |
-
|
41 |
-
# @ post-views-counter
|
42 |
-
#: includes/settings.php:36
|
43 |
-
msgid "Enable"
|
44 |
-
msgstr "Uključeno"
|
45 |
-
|
46 |
-
# @ post-views-counter
|
47 |
-
#: includes/settings.php:37
|
48 |
-
msgid "Disable"
|
49 |
-
msgstr "Isključeno"
|
50 |
-
|
51 |
-
# @ post-views-counter
|
52 |
-
#: includes/settings.php:41
|
53 |
-
msgid "PHP"
|
54 |
-
msgstr "PHP"
|
55 |
-
|
56 |
-
# @ post-views-counter
|
57 |
-
#: includes/settings.php:42
|
58 |
-
msgid "JavaScript"
|
59 |
-
msgstr "JavaScript"
|
60 |
-
|
61 |
-
# @ post-views-counter
|
62 |
-
#: includes/settings.php:46
|
63 |
-
msgid "minutes"
|
64 |
-
msgstr "minuta/minute"
|
65 |
-
|
66 |
-
# @ post-views-counter
|
67 |
-
#: includes/settings.php:47
|
68 |
-
msgid "hours"
|
69 |
-
msgstr "sat/sata/sati"
|
70 |
-
|
71 |
-
# @ post-views-counter
|
72 |
-
#: includes/settings.php:48
|
73 |
-
msgid "days"
|
74 |
-
msgstr "dan/dana"
|
75 |
-
|
76 |
-
# @ post-views-counter
|
77 |
-
#: includes/settings.php:49
|
78 |
-
msgid "weeks"
|
79 |
-
msgstr "tjedan/tjedana/tjedna"
|
80 |
-
|
81 |
-
# @ post-views-counter
|
82 |
-
#: includes/settings.php:50
|
83 |
-
msgid "months"
|
84 |
-
msgstr "mjesec/mjeseca/mjeseci"
|
85 |
-
|
86 |
-
# @ post-views-counter
|
87 |
-
#: includes/settings.php:51
|
88 |
-
msgid "years"
|
89 |
-
msgstr "godinu/godine/godina"
|
90 |
-
|
91 |
-
# @ post-views-counter
|
92 |
-
#: includes/settings.php:55
|
93 |
-
msgid "robots"
|
94 |
-
msgstr "roboti"
|
95 |
-
|
96 |
-
# @ post-views-counter
|
97 |
-
#: includes/settings.php:56
|
98 |
-
msgid "logged in users"
|
99 |
-
msgstr "prijavljeni korisnici"
|
100 |
-
|
101 |
-
# @ post-views-counter
|
102 |
-
#: includes/settings.php:57
|
103 |
-
msgid "guests"
|
104 |
-
msgstr "gosti"
|
105 |
-
|
106 |
-
# @ post-views-counter
|
107 |
-
#: includes/settings.php:58
|
108 |
-
msgid "selected user roles"
|
109 |
-
msgstr "odabrane korisničke role"
|
110 |
-
|
111 |
-
# @ post-views-counter
|
112 |
-
#: includes/settings.php:62
|
113 |
-
msgid "before the content"
|
114 |
-
msgstr "prije sadržaja"
|
115 |
-
|
116 |
-
# @ post-views-counter
|
117 |
-
#: includes/settings.php:63
|
118 |
-
msgid "after the content"
|
119 |
-
msgstr "nakon sadržaja"
|
120 |
-
|
121 |
-
# @ post-views-counter
|
122 |
-
#: includes/settings.php:64
|
123 |
-
msgid "manual"
|
124 |
-
msgstr "ručno"
|
125 |
-
|
126 |
-
# @ post-views-counter
|
127 |
-
#: includes/settings.php:68
|
128 |
-
msgid "icon"
|
129 |
-
msgstr "ikona"
|
130 |
-
|
131 |
-
# @ post-views-counter
|
132 |
-
#: includes/settings.php:69
|
133 |
-
msgid "label"
|
134 |
-
msgstr "oznaka"
|
135 |
-
|
136 |
-
# @ post-views-counter
|
137 |
-
#: includes/settings.php:74
|
138 |
-
msgid "General"
|
139 |
-
msgstr "Općenito"
|
140 |
-
|
141 |
-
# @ post-views-counter
|
142 |
-
#: includes/settings.php:80
|
143 |
-
msgid "Display"
|
144 |
-
msgstr "Prikaz"
|
145 |
-
|
146 |
-
# @ post-views-counter
|
147 |
-
#. translators: plugin header field 'Name'
|
148 |
-
#: includes/settings.php:135 includes/settings.php:136
|
149 |
-
#: includes/settings.php:151 includes/settings.php:163
|
150 |
-
#: post-views-counter.php:0
|
151 |
-
msgid "Post Views Counter"
|
152 |
-
msgstr "Brojač pregleda"
|
153 |
-
|
154 |
-
# @ post-views-counter
|
155 |
-
#: includes/settings.php:165
|
156 |
-
msgid "Need support?"
|
157 |
-
msgstr "Trebate pomoć?"
|
158 |
-
|
159 |
-
# @ post-views-counter
|
160 |
-
#: includes/settings.php:166
|
161 |
-
msgid "If you are having problems with this plugin, please talk about them in the"
|
162 |
-
msgstr "Ako imate poteškoća s korištenjem ovog dodatka uključite se u raspravu na"
|
163 |
-
|
164 |
-
# @ post-views-counter
|
165 |
-
#: includes/settings.php:166
|
166 |
-
msgid "Support forum"
|
167 |
-
msgstr "forumima podrške"
|
168 |
-
|
169 |
-
# @ post-views-counter
|
170 |
-
#: includes/settings.php:168
|
171 |
-
msgid "Do you like this plugin?"
|
172 |
-
msgstr "Zadovoljni ste s ovim dodatkom?"
|
173 |
-
|
174 |
-
# @ post-views-counter
|
175 |
-
#: includes/settings.php:169
|
176 |
-
msgid "Rate it 5"
|
177 |
-
msgstr "Ocjenite ga 5-icom"
|
178 |
-
|
179 |
-
# @ post-views-counter
|
180 |
-
#: includes/settings.php:169
|
181 |
-
msgid "on WordPress.org"
|
182 |
-
msgstr "na WordPress.org"
|
183 |
-
|
184 |
-
# @ post-views-counter
|
185 |
-
#: includes/settings.php:170
|
186 |
-
msgid "Blog about it & link to the"
|
187 |
-
msgstr "Pišite o njemu i linkajte ga na"
|
188 |
-
|
189 |
-
# @ post-views-counter
|
190 |
-
#: includes/settings.php:170
|
191 |
-
msgid "plugin page"
|
192 |
-
msgstr "stranicu dodatka"
|
193 |
-
|
194 |
-
# @ post-views-counter
|
195 |
-
#: includes/settings.php:171
|
196 |
-
msgid "Check out our other"
|
197 |
-
msgstr "Provjerite naše ostale"
|
198 |
-
|
199 |
-
# @ post-views-counter
|
200 |
-
#: includes/settings.php:171
|
201 |
-
msgid "WordPress plugins"
|
202 |
-
msgstr "WordPress dodatke"
|
203 |
-
|
204 |
-
# @ post-views-counter
|
205 |
-
#: includes/settings.php:174
|
206 |
-
msgid "Created by"
|
207 |
-
msgstr "Autor"
|
208 |
-
|
209 |
-
# @ post-views-counter
|
210 |
-
#: includes/settings.php:190
|
211 |
-
msgid "Reset to defaults"
|
212 |
-
msgstr "Vrati na zadane postavke"
|
213 |
-
|
214 |
-
# @ post-views-counter
|
215 |
-
#: includes/settings.php:207
|
216 |
-
msgid "General settings"
|
217 |
-
msgstr "Općenite postavke"
|
218 |
-
|
219 |
-
# @ post-views-counter
|
220 |
-
#: includes/settings.php:208
|
221 |
-
msgid "Post Types Count"
|
222 |
-
msgstr "Vrste objava koje se broje"
|
223 |
-
|
224 |
-
# @ post-views-counter
|
225 |
-
#: includes/settings.php:209
|
226 |
-
msgid "Counter Mode"
|
227 |
-
msgstr "Način rada brojača"
|
228 |
-
|
229 |
-
# @ post-views-counter
|
230 |
-
#: includes/settings.php:210
|
231 |
-
msgid "Post Views Column"
|
232 |
-
msgstr "Pregledi stupac"
|
233 |
-
|
234 |
-
# @ post-views-counter
|
235 |
-
#: includes/settings.php:211
|
236 |
-
msgid "Time Between Counts"
|
237 |
-
msgstr "Vrijeme između posjeta"
|
238 |
-
|
239 |
-
# @ post-views-counter
|
240 |
-
#: includes/settings.php:214
|
241 |
-
msgid "Exclude Visitors"
|
242 |
-
msgstr "Isključi posjete"
|
243 |
-
|
244 |
-
# @ post-views-counter
|
245 |
-
#: includes/settings.php:215
|
246 |
-
msgid "Exclude IPs"
|
247 |
-
msgstr "Isključi IP adrese"
|
248 |
-
|
249 |
-
# @ post-views-counter
|
250 |
-
#: includes/settings.php:216
|
251 |
-
msgid "WP-PostViews"
|
252 |
-
msgstr "WP-PostViews"
|
253 |
-
|
254 |
-
# @ post-views-counter
|
255 |
-
#: includes/settings.php:217
|
256 |
-
msgid "Deactivation"
|
257 |
-
msgstr "Deaktivacija"
|
258 |
-
|
259 |
-
# @ post-views-counter
|
260 |
-
#: includes/settings.php:221
|
261 |
-
msgid "Display settings"
|
262 |
-
msgstr "Postavke prikaza"
|
263 |
-
|
264 |
-
# @ post-views-counter
|
265 |
-
#: includes/settings.php:222
|
266 |
-
msgid "Post Views Label"
|
267 |
-
msgstr "Oznaka brojača"
|
268 |
-
|
269 |
-
# @ post-views-counter
|
270 |
-
#: includes/settings.php:223
|
271 |
-
msgid "Post Types Display"
|
272 |
-
msgstr "Vrste objava uz koje se prikazuje brojač"
|
273 |
-
|
274 |
-
# @ post-views-counter
|
275 |
-
#: includes/settings.php:224
|
276 |
-
msgid "Restrict Display"
|
277 |
-
msgstr "Ograničenje prikaza"
|
278 |
-
|
279 |
-
# @ post-views-counter
|
280 |
-
#: includes/settings.php:225
|
281 |
-
msgid "Position"
|
282 |
-
msgstr "Pozicija brojača"
|
283 |
-
|
284 |
-
# @ post-views-counter
|
285 |
-
#: includes/settings.php:226
|
286 |
-
msgid "Display Style"
|
287 |
-
msgstr "Stil prikaza"
|
288 |
-
|
289 |
-
# @ post-views-counter
|
290 |
-
#: includes/settings.php:227
|
291 |
-
msgid "Icon Class"
|
292 |
-
msgstr "CSS klasa ikone"
|
293 |
-
|
294 |
-
# @ post-views-counter
|
295 |
-
#: includes/settings.php:240
|
296 |
-
msgid "Enter the label for the post views counter field."
|
297 |
-
msgstr "Upišite naziv/oznaku koja će se prikazivati prije vrijednosti brojača"
|
298 |
-
|
299 |
-
# @ post-views-counter
|
300 |
-
#: includes/settings.php:253
|
301 |
-
msgid "Select post types"
|
302 |
-
msgstr "Odaberite vrste objava"
|
303 |
-
|
304 |
-
# @ post-views-counter
|
305 |
-
#: includes/settings.php:263
|
306 |
-
msgid "Select post types for which post views will be counted."
|
307 |
-
msgstr "Odaberite vrste objava za koje će se brojati posjete."
|
308 |
-
|
309 |
-
# @ post-views-counter
|
310 |
-
#: includes/settings.php:276 includes/settings.php:412
|
311 |
-
#: includes/settings.php:569
|
312 |
-
msgid "Select groups"
|
313 |
-
msgstr "Odaberite grupe"
|
314 |
-
|
315 |
-
# @ post-views-counter
|
316 |
-
#: includes/settings.php:286
|
317 |
-
msgid "Select post types for which post views will be displayed."
|
318 |
-
msgstr "Odaberite vrste objava na kojima će se prikazivati brojač posjeta."
|
319 |
-
|
320 |
-
# @ post-views-counter
|
321 |
-
#: includes/settings.php:308
|
322 |
-
msgid "Select the method of collecting post views data. If you are using any of the caching plugins select Javascript."
|
323 |
-
msgstr "Odaberite način rada brojača. Koristite li neki od dodataka za poboljšanje performansi putem spremanja podataka u privremenu memoriju (ili slično), odaberite JavaScript."
|
324 |
-
|
325 |
-
# @ post-views-counter
|
326 |
-
#: includes/settings.php:330
|
327 |
-
msgid "Enable to display post views count column for each of the selected post types."
|
328 |
-
msgstr "Uključite ako želite prikaz stupca s vrijednostima brojača za odabrane vrste objava u administraciji."
|
329 |
-
|
330 |
-
# @ post-views-counter
|
331 |
-
#: includes/settings.php:353
|
332 |
-
msgid "Enter the time between single user visit count."
|
333 |
-
msgstr "Upišite vrijeme koje mora proći između dvije posjete istog korisnika kako bi se brojač povećao."
|
334 |
-
|
335 |
-
# @ post-views-counter
|
336 |
-
#: includes/settings.php:377
|
337 |
-
msgid "Delete single day post views data older than specified above. Enter 0 (number zero) if you want to preserve your data regardless of its age."
|
338 |
-
msgstr "Automatsko brisanje podataka o dnevnim pregledima starijim od navedenog vremena. Upišite 0 (brojka nula) ako želite čuvati sve dnevne podatke bez obzira na starost."
|
339 |
-
|
340 |
-
# @ post-views-counter
|
341 |
-
#: includes/settings.php:423 includes/settings.php:584
|
342 |
-
msgid "Select user roles"
|
343 |
-
msgstr "Odaberite korisničke uloge"
|
344 |
-
|
345 |
-
# @ post-views-counter
|
346 |
-
#: includes/settings.php:434
|
347 |
-
msgid "Select the type of visitors to be excluded from post views count."
|
348 |
-
msgstr "Odaberite vrste posjeta koje ne želite brojati."
|
349 |
-
|
350 |
-
# @ post-views-counter
|
351 |
-
#: includes/settings.php:450 includes/settings.php:459
|
352 |
-
msgid "Remove"
|
353 |
-
msgstr "Ukloni"
|
354 |
-
|
355 |
-
# @ post-views-counter
|
356 |
-
#: includes/settings.php:459
|
357 |
-
msgid "Add new"
|
358 |
-
msgstr "Dodaj"
|
359 |
-
|
360 |
-
# @ post-views-counter
|
361 |
-
#: includes/settings.php:459
|
362 |
-
msgid "Add my current IP"
|
363 |
-
msgstr "Dodaj moju trenutnu IP adresu"
|
364 |
-
|
365 |
-
# @ post-views-counter
|
366 |
-
#: includes/settings.php:461
|
367 |
-
msgid "Enter the IP addresses to be excluded from post views count."
|
368 |
-
msgstr "Upišite IP adrese s kojih se posjete neće brojati."
|
369 |
-
|
370 |
-
# @ post-views-counter
|
371 |
-
#: includes/settings.php:473
|
372 |
-
msgid "Import"
|
373 |
-
msgstr "Uvoz"
|
374 |
-
|
375 |
-
# @ post-views-counter
|
376 |
-
#: includes/settings.php:475
|
377 |
-
msgid "Import post views data from WP-PostViews plugin."
|
378 |
-
msgstr "Uvezi podatke o brojačima iz WP-PostViews dodatka."
|
379 |
-
|
380 |
-
# @ post-views-counter
|
381 |
-
#: includes/settings.php:476
|
382 |
-
msgid "Override existing Post Views Counter data."
|
383 |
-
msgstr "Uredi postojeće podatke prilikom unosa."
|
384 |
-
|
385 |
-
# @ post-views-counter
|
386 |
-
#: includes/settings.php:498
|
387 |
-
msgid "Enable to delete all plugin data on deactivation."
|
388 |
-
msgstr "\"Uključeno\" znači da će se prilikom deaktivacije dodatka svi podaci nepovratno obrisati."
|
389 |
-
|
390 |
-
# @ post-views-counter
|
391 |
-
#: includes/settings.php:520
|
392 |
-
msgid "Select where would you like to display the post views counter. Use [post-views] shortcode for manual display."
|
393 |
-
msgstr "Odaberite gdje želite prikazati brojač. Možete koristiti [post-views] shortcode za ručno prikazivanje negdje u temi."
|
394 |
-
|
395 |
-
# @ post-views-counter
|
396 |
-
#: includes/settings.php:542
|
397 |
-
msgid "Choose how to display the post views counter."
|
398 |
-
msgstr "Odaberite kako želite prikazati brojač."
|
399 |
-
|
400 |
-
# @ post-views-counter
|
401 |
-
#: includes/settings.php:556
|
402 |
-
#, php-format
|
403 |
-
msgid "Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank\">Dashicons</a> classes are available."
|
404 |
-
msgstr "Upišite CSS klasu ikone brojača (bilo koju od standardnih <a href=\"%s\" target=\"_blank\">Dashicons</a> klasa)."
|
405 |
-
|
406 |
-
# @ post-views-counter
|
407 |
-
#: includes/settings.php:595
|
408 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
409 |
-
msgstr "Brojač pregleda neće se prikazivati ovim vrstama posjetitelja (biti će skriven)."
|
410 |
-
|
411 |
-
# @ post-views-counter
|
412 |
-
#: includes/settings.php:626
|
413 |
-
msgid "WP-PostViews data imported succesfully."
|
414 |
-
msgstr "WP-PostViews podaci uspješno uvezeni."
|
415 |
-
|
416 |
-
# @ post-views-counter
|
417 |
-
#: includes/settings.php:628
|
418 |
-
msgid "There was no data to import."
|
419 |
-
msgstr "Nisu pronađeni podaci za uvoz."
|
420 |
-
|
421 |
-
# @ post-views-counter
|
422 |
-
#: includes/settings.php:786
|
423 |
-
msgid "General settings restored to defaults."
|
424 |
-
msgstr "Općenite postavke vraćene su na zadane vrijednosti."
|
425 |
-
|
426 |
-
# @ post-views-counter
|
427 |
-
#: includes/settings.php:790
|
428 |
-
msgid "Display settings restored to defaults."
|
429 |
-
msgstr "Postavke prikaza vraćene su na zadane vrijednosti."
|
430 |
-
|
431 |
-
# @ post-views-counter
|
432 |
-
#: includes/settings.php:810
|
433 |
-
msgid "Support"
|
434 |
-
msgstr "Podrška"
|
435 |
-
|
436 |
-
# @ post-views-counter
|
437 |
-
#: includes/widgets.php:32 includes/widgets.php:43
|
438 |
-
msgid "Most Viewed Posts"
|
439 |
-
msgstr "Najčitanije objave"
|
440 |
-
|
441 |
-
# @ post-views-counter
|
442 |
-
#: includes/widgets.php:34
|
443 |
-
msgid "Displays a list of the most viewed posts"
|
444 |
-
msgstr "Prikazuje listu najčitanijih objava"
|
445 |
-
|
446 |
-
# @ post-views-counter
|
447 |
-
#: includes/widgets.php:51
|
448 |
-
msgid "No Posts found"
|
449 |
-
msgstr "Nema rezultata"
|
450 |
-
|
451 |
-
# @ post-views-counter
|
452 |
-
#: includes/widgets.php:55
|
453 |
-
msgid "Ascending"
|
454 |
-
msgstr "Rastući (A-Z)"
|
455 |
-
|
456 |
-
# @ post-views-counter
|
457 |
-
#: includes/widgets.php:56
|
458 |
-
msgid "Descending"
|
459 |
-
msgstr "Padajući (Z-A)"
|
460 |
-
|
461 |
-
# @ post-views-counter
|
462 |
-
#: includes/widgets.php:93
|
463 |
-
msgid "Title"
|
464 |
-
msgstr "Naslov"
|
465 |
-
|
466 |
-
# @ post-views-counter
|
467 |
-
#: includes/widgets.php:110
|
468 |
-
msgid "Number of posts to show"
|
469 |
-
msgstr "Broj objava koje želite prikazati"
|
470 |
-
|
471 |
-
# @ post-views-counter
|
472 |
-
#: includes/widgets.php:114
|
473 |
-
msgid "No posts message"
|
474 |
-
msgstr "Nema objava"
|
475 |
-
|
476 |
-
# @ post-views-counter
|
477 |
-
#: includes/widgets.php:118
|
478 |
-
msgid "Order"
|
479 |
-
msgstr "Poredak"
|
480 |
-
|
481 |
-
# @ post-views-counter
|
482 |
-
#: includes/widgets.php:130
|
483 |
-
msgid "Display post views?"
|
484 |
-
msgstr "Prikaži brojač?"
|
485 |
-
|
486 |
-
# @ post-views-counter
|
487 |
-
#: includes/widgets.php:132
|
488 |
-
msgid "Display post excerpt?"
|
489 |
-
msgstr "Prikaži sažetak objave?"
|
490 |
-
|
491 |
-
# @ post-views-counter
|
492 |
-
#: includes/widgets.php:134
|
493 |
-
msgid "Display post thumbnail?"
|
494 |
-
msgstr "Prikaži thumbnail objave?"
|
495 |
-
|
496 |
-
# @ post-views-counter
|
497 |
-
#: includes/widgets.php:137
|
498 |
-
msgid "Thumbnail size"
|
499 |
-
msgstr "Dimenzije thumbnaila"
|
500 |
-
|
501 |
-
# @ post-views-counter
|
502 |
-
#. translators: plugin header field 'PluginURI'
|
503 |
-
#: post-views-counter.php:0
|
504 |
-
msgid "http://www.dfactory.eu/plugins/post-views-counter/"
|
505 |
-
msgstr "http://www.dfactory.eu/plugins/post-views-counter/"
|
506 |
-
|
507 |
-
# @ post-views-counter
|
508 |
-
#. translators: plugin header field 'Description'
|
509 |
-
#: post-views-counter.php:0
|
510 |
-
msgid "Forget WP-PostViews. Display how many times a post, page or custom post type had been viewed in a simple, fast and reliable way."
|
511 |
-
msgstr "Zaboravite WP-PostViews. Prikažite broj pregleda pojedine objave, stranice ili bilo kojih drugih vrsta objava na jednostavan, brz i pouzdan način."
|
512 |
-
|
513 |
-
# @ post-views-counter
|
514 |
-
#. translators: plugin header field 'Author'
|
515 |
-
#: post-views-counter.php:0
|
516 |
-
msgid "dFactory"
|
517 |
-
msgstr "dFactory"
|
518 |
-
|
519 |
-
# @ post-views-counter
|
520 |
-
#. translators: plugin header field 'AuthorURI'
|
521 |
-
#: post-views-counter.php:0
|
522 |
-
msgid "http://www.dfactory.eu/"
|
523 |
-
msgstr "http://www.dfactory.eu/"
|
524 |
-
|
525 |
-
# @ post-views-counter
|
526 |
-
#: post-views-counter.php:297
|
527 |
-
msgid "Are you sure you want to reset these settings to defaults?"
|
528 |
-
msgstr "Jeste li sigurni da želite vratiti postavke na njihove zadane vrijednosti?"
|
529 |
-
|
530 |
-
# @ post-views-counter
|
531 |
-
#: post-views-counter.php:330
|
532 |
-
msgid "Settings"
|
533 |
-
msgstr "Postavke"
|
534 |
-
|
535 |
-
# @ post-views-counter
|
536 |
-
#: includes/columns.php:49
|
537 |
-
msgid "Edit"
|
538 |
-
msgstr "Uredi"
|
539 |
-
|
540 |
-
# @ post-views-counter
|
541 |
-
#: includes/columns.php:53
|
542 |
-
msgid "Adjust the views count for this post."
|
543 |
-
msgstr "Promijeni vrijednost broja pregleda ove objave"
|
544 |
-
|
545 |
-
# @ post-views-counter
|
546 |
-
#: includes/columns.php:57
|
547 |
-
msgid "OK"
|
548 |
-
msgstr "OK"
|
549 |
-
|
550 |
-
# @ post-views-counter
|
551 |
-
#: includes/columns.php:58
|
552 |
-
msgid "Cancel"
|
553 |
-
msgstr "Odustani"
|
554 |
-
|
555 |
-
# @ post-views-counter
|
556 |
-
#: includes/settings.php:212
|
557 |
-
msgid "Reset Data Interval"
|
558 |
-
msgstr "Interval resetiranja podataka brojača"
|
559 |
-
|
560 |
-
# @ post-views-counter
|
561 |
-
#: includes/settings.php:213
|
562 |
-
msgid "Flush Object Cache Interval"
|
563 |
-
msgstr "Interval spremanja privremene memorije"
|
564 |
-
|
565 |
-
# @ post-views-counter
|
566 |
-
#: includes/settings.php:400
|
567 |
-
msgid "How often to flush cached view counts from the object cache into the database. This feature is used only if a persistent object cache is detected and the interval is greater than 0 (number zero)). When used, view counts will be collected and stored in the object cache instead of the database and will then be asynchronously flushed to the database according to the specified interval.<br /><strong>Notice:</strong> Potential data loss may occur if the object cache is cleared/unavailable for the duration of the interval."
|
568 |
-
msgstr "Koliko često se podaci iz privremene memorije trajno pohranjuju u bazu. Ova mogućnost biti će upotrebljena samo ako je podržana i ako je vrijednost intervala veća od 0 (brojka nula). Tada će se podaci o posjetama spremati u privremenu memoriju umjesto direktno u bazu (čime se dobija na performansama) i tek periodički trajno pohranjivati u bazu. <br><strong>Napomena:</strong> Ako se privremena memorija iznenada očisti i/ili je nedostupna, podaci iz privremene memorije mogu biti bespovratno izgubljeni."
|
569 |
-
|
570 |
-
# @ post-views-counter
|
571 |
-
#: includes/widgets.php:97
|
572 |
-
msgid "Post Types"
|
573 |
-
msgstr "Vrste objava"
|
574 |
-
|
575 |
-
# @ post-views-counter
|
576 |
-
#. translators: plugin header field 'Version'
|
577 |
-
#: post-views-counter.php:0
|
578 |
-
msgid "1.0.7"
|
579 |
-
msgstr "1.0.7"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/post-views-counter-it_IT.mo
DELETED
Binary file
|
languages/post-views-counter-it_IT.po
DELETED
@@ -1,492 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Post Views Counter\n"
|
4 |
-
"POT-Creation-Date: 2015-05-27 14:35+0100\n"
|
5 |
-
"PO-Revision-Date: 2015-06-15 16:26+0100\n"
|
6 |
-
"Last-Translator: René <querin.rene@gmail.com>\n"
|
7 |
-
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
-
"Language: it_IT\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.4\n"
|
13 |
-
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;"
|
14 |
-
"esc_html__;esc_html_e\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../includes/columns.php:49 ../includes/columns.php:193
|
21 |
-
#: ../includes/columns.php:199
|
22 |
-
msgid "Post Views"
|
23 |
-
msgstr "Visualizzazioni Articolo"
|
24 |
-
|
25 |
-
#: ../includes/columns.php:58
|
26 |
-
msgid "Edit"
|
27 |
-
msgstr "Modifica"
|
28 |
-
|
29 |
-
#: ../includes/columns.php:62
|
30 |
-
msgid "Adjust the views count for this post."
|
31 |
-
msgstr "Aggiusta il numero di visualizzazioni per questo articolo."
|
32 |
-
|
33 |
-
#: ../includes/columns.php:66
|
34 |
-
msgid "OK"
|
35 |
-
msgstr "OK"
|
36 |
-
|
37 |
-
#: ../includes/columns.php:67
|
38 |
-
msgid "Cancel"
|
39 |
-
msgstr "Cancella"
|
40 |
-
|
41 |
-
#: ../includes/cron.php:49
|
42 |
-
msgid "Post Views Counter reset daily counts interval"
|
43 |
-
msgstr "Intervallo di tempo per l'azzeramento del contatore"
|
44 |
-
|
45 |
-
#: ../includes/cron.php:54
|
46 |
-
msgid "Post Views Counter cache flush interval"
|
47 |
-
msgstr "Intervallo di tempo per la pulizia della cache di Post Views Counter"
|
48 |
-
|
49 |
-
#: ../includes/functions.php:127
|
50 |
-
msgid "No Posts"
|
51 |
-
msgstr "Nessun Articolo"
|
52 |
-
|
53 |
-
#: ../includes/settings.php:36
|
54 |
-
msgid "PHP"
|
55 |
-
msgstr "PHP"
|
56 |
-
|
57 |
-
#: ../includes/settings.php:37
|
58 |
-
msgid "JavaScript"
|
59 |
-
msgstr "JavaScript"
|
60 |
-
|
61 |
-
#: ../includes/settings.php:41
|
62 |
-
msgid "minutes"
|
63 |
-
msgstr "minuti"
|
64 |
-
|
65 |
-
#: ../includes/settings.php:42
|
66 |
-
msgid "hours"
|
67 |
-
msgstr "ore"
|
68 |
-
|
69 |
-
#: ../includes/settings.php:43
|
70 |
-
msgid "days"
|
71 |
-
msgstr "giorni"
|
72 |
-
|
73 |
-
#: ../includes/settings.php:44
|
74 |
-
msgid "weeks"
|
75 |
-
msgstr "settimane"
|
76 |
-
|
77 |
-
#: ../includes/settings.php:45
|
78 |
-
msgid "months"
|
79 |
-
msgstr "mesi"
|
80 |
-
|
81 |
-
#: ../includes/settings.php:46
|
82 |
-
msgid "years"
|
83 |
-
msgstr "anni"
|
84 |
-
|
85 |
-
#: ../includes/settings.php:50
|
86 |
-
msgid "robots"
|
87 |
-
msgstr "robot"
|
88 |
-
|
89 |
-
#: ../includes/settings.php:51
|
90 |
-
msgid "logged in users"
|
91 |
-
msgstr "utenti registrati"
|
92 |
-
|
93 |
-
#: ../includes/settings.php:52
|
94 |
-
msgid "guests"
|
95 |
-
msgstr "ospiti"
|
96 |
-
|
97 |
-
#: ../includes/settings.php:53
|
98 |
-
msgid "selected user roles"
|
99 |
-
msgstr "seleziona i ruoli dell'utente"
|
100 |
-
|
101 |
-
#: ../includes/settings.php:57
|
102 |
-
msgid "before the content"
|
103 |
-
msgstr "prima del contenuto"
|
104 |
-
|
105 |
-
#: ../includes/settings.php:58
|
106 |
-
msgid "after the content"
|
107 |
-
msgstr "dopo il contenuto"
|
108 |
-
|
109 |
-
#: ../includes/settings.php:59
|
110 |
-
msgid "manual"
|
111 |
-
msgstr "manuale"
|
112 |
-
|
113 |
-
#: ../includes/settings.php:63
|
114 |
-
msgid "icon"
|
115 |
-
msgstr "icona"
|
116 |
-
|
117 |
-
#: ../includes/settings.php:64
|
118 |
-
msgid "label"
|
119 |
-
msgstr "etichetta"
|
120 |
-
|
121 |
-
#: ../includes/settings.php:69
|
122 |
-
msgid "General"
|
123 |
-
msgstr "Generale"
|
124 |
-
|
125 |
-
#: ../includes/settings.php:75
|
126 |
-
msgid "Display"
|
127 |
-
msgstr "Visualizzare"
|
128 |
-
|
129 |
-
#: ../includes/settings.php:130 ../includes/settings.php:142
|
130 |
-
#: ../includes/settings.php:154
|
131 |
-
msgid "Post Views Counter"
|
132 |
-
msgstr "Post Views Counter"
|
133 |
-
|
134 |
-
#: ../includes/settings.php:156
|
135 |
-
msgid "Need support?"
|
136 |
-
msgstr "Hai bisogno di aiuto?"
|
137 |
-
|
138 |
-
#: ../includes/settings.php:157
|
139 |
-
msgid ""
|
140 |
-
"If you are having problems with this plugin, please talk about them in the"
|
141 |
-
msgstr "Se hai problemi con questo plugin, per favore scrivi sul"
|
142 |
-
|
143 |
-
#: ../includes/settings.php:157
|
144 |
-
msgid "Support forum"
|
145 |
-
msgstr "Forum di Supporto"
|
146 |
-
|
147 |
-
#: ../includes/settings.php:159
|
148 |
-
msgid "Do you like this plugin?"
|
149 |
-
msgstr "Ti piace questo plugin?"
|
150 |
-
|
151 |
-
#: ../includes/settings.php:160
|
152 |
-
msgid "Rate it 5"
|
153 |
-
msgstr "Valutalo 5"
|
154 |
-
|
155 |
-
#: ../includes/settings.php:160
|
156 |
-
msgid "on WordPress.org"
|
157 |
-
msgstr "su WordPress.org"
|
158 |
-
|
159 |
-
#: ../includes/settings.php:161
|
160 |
-
msgid "Blog about it & link to the"
|
161 |
-
msgstr "Scrivi e metti il link alla"
|
162 |
-
|
163 |
-
#: ../includes/settings.php:161
|
164 |
-
msgid "plugin page"
|
165 |
-
msgstr "pagina del plugin"
|
166 |
-
|
167 |
-
#: ../includes/settings.php:162
|
168 |
-
msgid "Check out our other"
|
169 |
-
msgstr "Guarda gli altri nostri"
|
170 |
-
|
171 |
-
#: ../includes/settings.php:162
|
172 |
-
msgid "WordPress plugins"
|
173 |
-
msgstr "plugin di WordPress"
|
174 |
-
|
175 |
-
#: ../includes/settings.php:165
|
176 |
-
msgid "Created by"
|
177 |
-
msgstr "Creato da"
|
178 |
-
|
179 |
-
#: ../includes/settings.php:181
|
180 |
-
msgid "Reset to defaults"
|
181 |
-
msgstr "Ripristina impostazioni predefinite"
|
182 |
-
|
183 |
-
#: ../includes/settings.php:197
|
184 |
-
msgid "General settings"
|
185 |
-
msgstr "Impostazioni generali"
|
186 |
-
|
187 |
-
#: ../includes/settings.php:198
|
188 |
-
msgid "Post Types Count"
|
189 |
-
msgstr "Tipo di contenuto"
|
190 |
-
|
191 |
-
#: ../includes/settings.php:199
|
192 |
-
msgid "Counter Mode"
|
193 |
-
msgstr "Modalità del conteggio"
|
194 |
-
|
195 |
-
#: ../includes/settings.php:200
|
196 |
-
msgid "Post Views Column"
|
197 |
-
msgstr "Colonna Visualizzazione Articolo"
|
198 |
-
|
199 |
-
#: ../includes/settings.php:201
|
200 |
-
msgid "Restrict Edit"
|
201 |
-
msgstr "Limita le modifiche"
|
202 |
-
|
203 |
-
#: ../includes/settings.php:202
|
204 |
-
msgid "Time Between Counts"
|
205 |
-
msgstr "Tempo tra i conteggi"
|
206 |
-
|
207 |
-
#: ../includes/settings.php:203
|
208 |
-
msgid "Reset Data Interval"
|
209 |
-
msgstr "Ripristina Intervallo Dati"
|
210 |
-
|
211 |
-
#: ../includes/settings.php:204
|
212 |
-
msgid "Flush Object Cache Interval"
|
213 |
-
msgstr "Intervallo di tempo per la pulizia degli Oggetti in Cache"
|
214 |
-
|
215 |
-
#: ../includes/settings.php:205
|
216 |
-
msgid "Exclude Visitors"
|
217 |
-
msgstr "Escludi i visitatori"
|
218 |
-
|
219 |
-
#: ../includes/settings.php:206
|
220 |
-
msgid "Exclude IPs"
|
221 |
-
msgstr "Escludi gli indirizzi IP"
|
222 |
-
|
223 |
-
#: ../includes/settings.php:207
|
224 |
-
msgid "WP-PostViews"
|
225 |
-
msgstr "WP-PostViews"
|
226 |
-
|
227 |
-
#: ../includes/settings.php:208
|
228 |
-
msgid "Deactivation"
|
229 |
-
msgstr "Disattivazione"
|
230 |
-
|
231 |
-
#: ../includes/settings.php:212
|
232 |
-
msgid "Display settings"
|
233 |
-
msgstr "Impostazioni di visualizzazione"
|
234 |
-
|
235 |
-
#: ../includes/settings.php:213
|
236 |
-
msgid "Post Views Label"
|
237 |
-
msgstr "Etichetta di testo"
|
238 |
-
|
239 |
-
#: ../includes/settings.php:214
|
240 |
-
msgid "Post Types Display"
|
241 |
-
msgstr "Tipologia di articolo"
|
242 |
-
|
243 |
-
#: ../includes/settings.php:215
|
244 |
-
msgid "Restrict Display"
|
245 |
-
msgstr "Limita la visualizzazione"
|
246 |
-
|
247 |
-
#: ../includes/settings.php:216
|
248 |
-
msgid "Position"
|
249 |
-
msgstr "Posizione"
|
250 |
-
|
251 |
-
#: ../includes/settings.php:217
|
252 |
-
msgid "Display Style"
|
253 |
-
msgstr "Stile visualizzazione"
|
254 |
-
|
255 |
-
#: ../includes/settings.php:218
|
256 |
-
msgid "Icon Class"
|
257 |
-
msgstr "Classe dell'icona"
|
258 |
-
|
259 |
-
#: ../includes/settings.php:230
|
260 |
-
msgid "Enter the label for the post views counter field."
|
261 |
-
msgstr "Scrivi il testo dell'etichetta del campo del contatore."
|
262 |
-
|
263 |
-
#: ../includes/settings.php:242
|
264 |
-
msgid "Select post types"
|
265 |
-
msgstr "Seleziona il tipo di articoli"
|
266 |
-
|
267 |
-
#: ../includes/settings.php:252
|
268 |
-
msgid "Select post types for which post views will be counted."
|
269 |
-
msgstr ""
|
270 |
-
"Seleziona il tipo di articoli per i quali saranno contate le visualizzazioni."
|
271 |
-
|
272 |
-
#: ../includes/settings.php:264 ../includes/settings.php:387
|
273 |
-
#: ../includes/settings.php:541
|
274 |
-
msgid "Select groups"
|
275 |
-
msgstr "Seleziona gruppi"
|
276 |
-
|
277 |
-
#: ../includes/settings.php:274
|
278 |
-
msgid "Select post types for which post views will be displayed."
|
279 |
-
msgstr ""
|
280 |
-
"Seleziona il tipo di articoli per i quali saranno mostrate le "
|
281 |
-
"visualizzazioni."
|
282 |
-
|
283 |
-
#: ../includes/settings.php:296
|
284 |
-
msgid ""
|
285 |
-
"Select the method of collecting post views data. If you are using any of the "
|
286 |
-
"caching plugins select Javascript."
|
287 |
-
msgstr ""
|
288 |
-
"Seleziona il metodo di raccolta dei dati. Se utilizzi un plugin di cache dei "
|
289 |
-
"contenuti, seleziona JavaScript."
|
290 |
-
|
291 |
-
#: ../includes/settings.php:307
|
292 |
-
msgid ""
|
293 |
-
"Enable to display post views count column for each of the selected post "
|
294 |
-
"types."
|
295 |
-
msgstr ""
|
296 |
-
"Attiva per visualizzare la colonna con le visite per ciascuno dei tipi di "
|
297 |
-
"messaggi selezionati."
|
298 |
-
|
299 |
-
#: ../includes/settings.php:329
|
300 |
-
msgid "Enter the time between single user visit count."
|
301 |
-
msgstr ""
|
302 |
-
"Inserisci il tempo che deve trascorrere per il conteggio dello stesso utente."
|
303 |
-
|
304 |
-
#: ../includes/settings.php:352
|
305 |
-
msgid ""
|
306 |
-
"Delete single day post views data older than specified above. Enter 0 "
|
307 |
-
"(number zero) if you want to preserve your data regardless of its age."
|
308 |
-
msgstr ""
|
309 |
-
"Elimina i dati giornalieri per ogni articolo più vecchio di quanto "
|
310 |
-
"specificato. Inserisci 0 (il numero zero) per mantenere i dati "
|
311 |
-
"indipendentemente dall'età."
|
312 |
-
|
313 |
-
#: ../includes/settings.php:375
|
314 |
-
msgid ""
|
315 |
-
"How often to flush cached view counts from the object cache into the "
|
316 |
-
"database. This feature is used only if a persistent object cache is detected "
|
317 |
-
"and the interval is greater than 0 (number zero)). When used, view counts "
|
318 |
-
"will be collected and stored in the object cache instead of the database and "
|
319 |
-
"will then be asynchronously flushed to the database according to the "
|
320 |
-
"specified interval.<br /><strong>Notice:</strong> Potential data loss may "
|
321 |
-
"occur if the object cache is cleared/unavailable for the duration of the "
|
322 |
-
"interval."
|
323 |
-
msgstr ""
|
324 |
-
"Frequenza di pulizia della cache dei conteggi nel database. Questa funzione "
|
325 |
-
"viene utilizzata solo se viene rilevata una cache persistente e l'intervallo "
|
326 |
-
"è maggiore di 0 (il numero zero). Quando viene utilizzata, il numero "
|
327 |
-
"di visualizzazioni sono raccolte e memorizzate nella cache dell'oggetto "
|
328 |
-
"anziché nel database e saranno quindi inviate in modo asincrono al "
|
329 |
-
"database, in base all'intervallo specificato.<br /><strong>Avviso:</strong> "
|
330 |
-
"potenzialmente si potrebbe verificare una perdita di dati se la cache "
|
331 |
-
"dell'oggetto viene azzerata o resa non disposibile per la durata "
|
332 |
-
"dell'intervallo."
|
333 |
-
|
334 |
-
#: ../includes/settings.php:398 ../includes/settings.php:556
|
335 |
-
msgid "Select user roles"
|
336 |
-
msgstr "Seleziona il ruolo degli utenti"
|
337 |
-
|
338 |
-
#: ../includes/settings.php:409
|
339 |
-
msgid "Select the type of visitors to be excluded from post views count."
|
340 |
-
msgstr ""
|
341 |
-
"Seleziona il tipo di visitatori da escludere dal conteggio delle "
|
342 |
-
"visualizzazioni."
|
343 |
-
|
344 |
-
#: ../includes/settings.php:425 ../includes/settings.php:434
|
345 |
-
msgid "Remove"
|
346 |
-
msgstr "Rimuovi"
|
347 |
-
|
348 |
-
#: ../includes/settings.php:434
|
349 |
-
msgid "Add new"
|
350 |
-
msgstr "Aggiungi nuovo"
|
351 |
-
|
352 |
-
#: ../includes/settings.php:434
|
353 |
-
msgid "Add my current IP"
|
354 |
-
msgstr "Aggiungi il mio attuale IP"
|
355 |
-
|
356 |
-
#: ../includes/settings.php:436
|
357 |
-
msgid "Enter the IP addresses to be excluded from post views count."
|
358 |
-
msgstr ""
|
359 |
-
"Inserisci gli indirizzi IP da escludere dal conteggio delle visualizzazioni."
|
360 |
-
|
361 |
-
#: ../includes/settings.php:448
|
362 |
-
msgid "Import"
|
363 |
-
msgstr "Importa"
|
364 |
-
|
365 |
-
#: ../includes/settings.php:450
|
366 |
-
msgid "Import post views data from WP-PostViews plugin."
|
367 |
-
msgstr "Importa i dati delle visualizzazioni dal plugin WP-PostViews."
|
368 |
-
|
369 |
-
#: ../includes/settings.php:451
|
370 |
-
msgid "Override existing Post Views Counter data."
|
371 |
-
msgstr "Sovrascrivi i dati di Post Views Counter."
|
372 |
-
|
373 |
-
#: ../includes/settings.php:462
|
374 |
-
msgid "Enable to restrict post views editing to admins only."
|
375 |
-
msgstr ""
|
376 |
-
"Attiva per restringere la modifica delle visualizzazioni degli articoli solo "
|
377 |
-
"agli amministratori."
|
378 |
-
|
379 |
-
#: ../includes/settings.php:472
|
380 |
-
msgid "Enable to delete all plugin data on deactivation."
|
381 |
-
msgstr "Attiva per eliminare tutti i dati del plugin alla sua disattivazione."
|
382 |
-
|
383 |
-
#: ../includes/settings.php:493
|
384 |
-
msgid ""
|
385 |
-
"Select where would you like to display the post views counter. Use [post-"
|
386 |
-
"views] shortcode for manual display."
|
387 |
-
msgstr ""
|
388 |
-
"Seleziona dove mostrare le visualizzazioni. Utilizza lo <em>shortcode</em> "
|
389 |
-
"[post-views] per la visualizzazione manuale."
|
390 |
-
|
391 |
-
#: ../includes/settings.php:515
|
392 |
-
msgid "Choose how to display the post views counter."
|
393 |
-
msgstr "Scegli come mostrare il contatore delle visualizzazioni."
|
394 |
-
|
395 |
-
#: ../includes/settings.php:529
|
396 |
-
#, php-format
|
397 |
-
msgid ""
|
398 |
-
"Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank"
|
399 |
-
"\">Dashicons</a> classes are available."
|
400 |
-
msgstr ""
|
401 |
-
"Inserisci la classe dell'icona. Puoi utlizzare qualsiasi delle classi di <a "
|
402 |
-
"href=\"%s\" target=\"_blank\">Dashicons</a>."
|
403 |
-
|
404 |
-
#: ../includes/settings.php:567
|
405 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
406 |
-
msgstr ""
|
407 |
-
"Utilizzalo per nascondere il contatore delle visualizzazioni ad un "
|
408 |
-
"determinato tipo di visitatori."
|
409 |
-
|
410 |
-
#: ../includes/settings.php:595
|
411 |
-
msgid "WP-PostViews data imported succesfully."
|
412 |
-
msgstr "Dati da WP-PostViews importati con successo."
|
413 |
-
|
414 |
-
#: ../includes/settings.php:597
|
415 |
-
msgid "There was no data to import."
|
416 |
-
msgstr "Non ci sono dati da importare."
|
417 |
-
|
418 |
-
#: ../includes/settings.php:753
|
419 |
-
msgid "General settings restored to defaults."
|
420 |
-
msgstr "Ripristinate le impostazioni generali predefinite."
|
421 |
-
|
422 |
-
#: ../includes/settings.php:757
|
423 |
-
msgid "Display settings restored to defaults."
|
424 |
-
msgstr "Ripristinate le impostazioni predefinite di visualizzazione."
|
425 |
-
|
426 |
-
#: ../includes/widgets.php:33 ../includes/widgets.php:43
|
427 |
-
msgid "Most Viewed Posts"
|
428 |
-
msgstr "Articoli Più Visualizzati"
|
429 |
-
|
430 |
-
#: ../includes/widgets.php:34
|
431 |
-
msgid "Displays a list of the most viewed posts"
|
432 |
-
msgstr "Mostra un elenco degli articoli più visualizzati"
|
433 |
-
|
434 |
-
#: ../includes/widgets.php:51
|
435 |
-
msgid "No Posts found"
|
436 |
-
msgstr "Nessun Articolo trovato"
|
437 |
-
|
438 |
-
#: ../includes/widgets.php:55
|
439 |
-
msgid "Ascending"
|
440 |
-
msgstr "Ascendente"
|
441 |
-
|
442 |
-
#: ../includes/widgets.php:56
|
443 |
-
msgid "Descending"
|
444 |
-
msgstr "Discendente"
|
445 |
-
|
446 |
-
#: ../includes/widgets.php:93
|
447 |
-
msgid "Title"
|
448 |
-
msgstr "Titolo"
|
449 |
-
|
450 |
-
#: ../includes/widgets.php:97
|
451 |
-
msgid "Post Types"
|
452 |
-
msgstr "Tipo di Articoli"
|
453 |
-
|
454 |
-
#: ../includes/widgets.php:110
|
455 |
-
msgid "Number of posts to show"
|
456 |
-
msgstr "Numero di articoli da mostrare"
|
457 |
-
|
458 |
-
#: ../includes/widgets.php:114
|
459 |
-
msgid "No posts message"
|
460 |
-
msgstr "Messaggio per mancanza di articoli"
|
461 |
-
|
462 |
-
#: ../includes/widgets.php:118
|
463 |
-
msgid "Order"
|
464 |
-
msgstr "Ordine"
|
465 |
-
|
466 |
-
#: ../includes/widgets.php:130
|
467 |
-
msgid "Display post views?"
|
468 |
-
msgstr "Mostrare il numero di visualizzazioni?"
|
469 |
-
|
470 |
-
#: ../includes/widgets.php:132
|
471 |
-
msgid "Display post excerpt?"
|
472 |
-
msgstr "Mostrare il riassunto dell'articolo?"
|
473 |
-
|
474 |
-
#: ../includes/widgets.php:134
|
475 |
-
msgid "Display post thumbnail?"
|
476 |
-
msgstr "Mostrare la miniatura dell'articolo?"
|
477 |
-
|
478 |
-
#: ../includes/widgets.php:137
|
479 |
-
msgid "Thumbnail size"
|
480 |
-
msgstr "Dimensione miniatura"
|
481 |
-
|
482 |
-
#: ../post-views-counter.php:281
|
483 |
-
msgid "Are you sure you want to reset these settings to defaults?"
|
484 |
-
msgstr "Vuoi davvero ripristinare le impostazioni predefinite?"
|
485 |
-
|
486 |
-
#: ../post-views-counter.php:313
|
487 |
-
msgid "Support"
|
488 |
-
msgstr "Supporto"
|
489 |
-
|
490 |
-
#: ../post-views-counter.php:332
|
491 |
-
msgid "Settings"
|
492 |
-
msgstr "Impostazioni"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/post-views-counter-pl_PL.mo
CHANGED
Binary file
|
languages/post-views-counter-pl_PL.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Post Views Counter\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
7 |
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;"
|
14 |
"esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
@@ -17,289 +17,246 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
-
#: ../includes/columns.php:
|
21 |
-
#: ../includes/columns.php:200 ../includes/columns.php:272
|
22 |
-
#: ../includes/dashboard.php:28 ../includes/dashboard.php:89
|
23 |
-
#: ../includes/dashboard.php:99 ../includes/dashboard.php:109
|
24 |
msgid "Post Views"
|
25 |
msgstr "Odwiedziny"
|
26 |
|
27 |
-
#: ../includes/
|
28 |
-
msgid "Edit"
|
29 |
-
msgstr "Edytuj"
|
30 |
-
|
31 |
-
#: ../includes/columns.php:72
|
32 |
-
msgid "Adjust the views count for this post."
|
33 |
-
msgstr "Zmodyfikuj liczbę odsłon tego wpisu."
|
34 |
-
|
35 |
-
#: ../includes/columns.php:76
|
36 |
-
msgid "OK"
|
37 |
-
msgstr "OK"
|
38 |
-
|
39 |
-
#: ../includes/columns.php:77
|
40 |
-
msgid "Cancel"
|
41 |
-
msgstr "Anuluj"
|
42 |
-
|
43 |
-
#: ../includes/cron.php:52
|
44 |
msgid "Post Views Counter reset daily counts interval"
|
45 |
msgstr ""
|
46 |
-
"Odstęp czasu po jakim resetowane będą dzienne dane o liczbie odwiedzin."
|
47 |
-
|
48 |
-
#: ../includes/cron.php:57
|
49 |
-
msgid "Post Views Counter cache flush interval"
|
50 |
-
msgstr "Czas czyszczenia danych o odsłonach z cache"
|
51 |
-
|
52 |
-
#: ../includes/dashboard.php:60 ../includes/dashboard.php:63
|
53 |
-
msgid "You do not have permission to access this page."
|
54 |
-
msgstr "Nie masz uprawnień dostępu do tej strony."
|
55 |
|
56 |
-
#: ../includes/
|
57 |
-
msgid "Total Views"
|
58 |
-
msgstr "Odwiedzin ogółem"
|
59 |
-
|
60 |
-
#: ../includes/functions.php:133
|
61 |
msgid "No Posts"
|
62 |
msgstr "Brak wpisów"
|
63 |
|
64 |
-
#: ../includes/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "PHP"
|
66 |
msgstr "PHP"
|
67 |
|
68 |
-
#: ../includes/settings.php:
|
69 |
msgid "JavaScript"
|
70 |
msgstr "JavaScript"
|
71 |
|
72 |
-
#: ../includes/settings.php:
|
73 |
msgid "minutes"
|
74 |
msgstr "minuty"
|
75 |
|
76 |
-
#: ../includes/settings.php:
|
77 |
msgid "hours"
|
78 |
msgstr "godziny"
|
79 |
|
80 |
-
#: ../includes/settings.php:
|
81 |
msgid "days"
|
82 |
msgstr "dni"
|
83 |
|
84 |
-
#: ../includes/settings.php:
|
85 |
msgid "weeks"
|
86 |
msgstr "tygodnie"
|
87 |
|
88 |
-
#: ../includes/settings.php:
|
89 |
msgid "months"
|
90 |
msgstr "miesiące"
|
91 |
|
92 |
-
#: ../includes/settings.php:
|
93 |
msgid "years"
|
94 |
msgstr "lata"
|
95 |
|
96 |
-
#: ../includes/settings.php:
|
97 |
msgid "robots"
|
98 |
msgstr "roboty"
|
99 |
|
100 |
-
#: ../includes/settings.php:
|
101 |
msgid "logged in users"
|
102 |
msgstr "zalogowani użytkownicy"
|
103 |
|
104 |
-
#: ../includes/settings.php:
|
105 |
msgid "guests"
|
106 |
msgstr "goście"
|
107 |
|
108 |
-
#: ../includes/settings.php:
|
109 |
msgid "selected user roles"
|
110 |
msgstr "wybrane role użytkowników"
|
111 |
|
112 |
-
#: ../includes/settings.php:
|
113 |
msgid "before the content"
|
114 |
msgstr "przed treścią"
|
115 |
|
116 |
-
#: ../includes/settings.php:
|
117 |
msgid "after the content"
|
118 |
msgstr "po treści"
|
119 |
|
120 |
-
#: ../includes/settings.php:
|
121 |
msgid "manual"
|
122 |
msgstr "ręcznie"
|
123 |
|
124 |
-
#: ../includes/settings.php:
|
125 |
msgid "icon"
|
126 |
msgstr "ikona"
|
127 |
|
128 |
-
#: ../includes/settings.php:
|
129 |
msgid "label"
|
130 |
msgstr "etykieta"
|
131 |
|
132 |
-
#: ../includes/settings.php:
|
133 |
msgid "General"
|
134 |
msgstr "Ogólne"
|
135 |
|
136 |
-
#: ../includes/settings.php:
|
137 |
msgid "Display"
|
138 |
msgstr "Wyświetlanie"
|
139 |
|
140 |
-
#: ../includes/settings.php:
|
141 |
-
|
142 |
-
msgstr "Strona główna"
|
143 |
-
|
144 |
-
#: ../includes/settings.php:86
|
145 |
-
msgid "Archives"
|
146 |
-
msgstr "Archiwa"
|
147 |
-
|
148 |
-
#: ../includes/settings.php:87
|
149 |
-
msgid "Single pages"
|
150 |
-
msgstr "Pojedyncze strony"
|
151 |
-
|
152 |
-
#: ../includes/settings.php:88
|
153 |
-
msgid "Search results"
|
154 |
-
msgstr "Wyniki wyszukiwania"
|
155 |
-
|
156 |
-
#: ../includes/settings.php:137 ../includes/settings.php:149
|
157 |
-
#: ../includes/settings.php:161
|
158 |
msgid "Post Views Counter"
|
159 |
msgstr "Licznik odwiedzin"
|
160 |
|
161 |
-
#: ../includes/settings.php:
|
162 |
msgid "Need support?"
|
163 |
msgstr "Potrzebujesz pomocy?"
|
164 |
|
165 |
-
#: ../includes/settings.php:
|
166 |
msgid ""
|
167 |
"If you are having problems with this plugin, please talk about them in the"
|
168 |
msgstr "Jeśli masz jakieś problemy z tą wtyczką, powiedz o nich"
|
169 |
|
170 |
-
#: ../includes/settings.php:
|
171 |
msgid "Support forum"
|
172 |
msgstr "Forum pomocy"
|
173 |
|
174 |
-
#: ../includes/settings.php:
|
175 |
msgid "Do you like this plugin?"
|
176 |
msgstr "Lubisz tę wtyczkę?"
|
177 |
|
178 |
-
#: ../includes/settings.php:
|
179 |
msgid "Rate it 5"
|
180 |
msgstr "Oceń ją na 5"
|
181 |
|
182 |
-
#: ../includes/settings.php:
|
183 |
msgid "on WordPress.org"
|
184 |
msgstr "na WordPress.org"
|
185 |
|
186 |
-
#: ../includes/settings.php:
|
187 |
msgid "Blog about it & link to the"
|
188 |
msgstr "Napisz o niej i dodaj link"
|
189 |
|
190 |
-
#: ../includes/settings.php:
|
191 |
msgid "plugin page"
|
192 |
msgstr "do strony wtyczki"
|
193 |
|
194 |
-
#: ../includes/settings.php:
|
195 |
msgid "Check out our other"
|
196 |
msgstr "Sprawdż nasze inne"
|
197 |
|
198 |
-
#: ../includes/settings.php:
|
199 |
msgid "WordPress plugins"
|
200 |
msgstr "wtyczki do WordPressa"
|
201 |
|
202 |
-
#: ../includes/settings.php:
|
203 |
msgid "Created by"
|
204 |
msgstr "Stworzone przez"
|
205 |
|
206 |
-
#: ../includes/settings.php:
|
207 |
msgid "Reset to defaults"
|
208 |
msgstr "Resetuj do domyślnych"
|
209 |
|
210 |
-
#: ../includes/settings.php:
|
211 |
msgid "General settings"
|
212 |
msgstr "Ustawienia ogólne"
|
213 |
|
214 |
-
#: ../includes/settings.php:
|
215 |
msgid "Post Types Count"
|
216 |
msgstr "Własne typy wpisów"
|
217 |
|
218 |
-
#: ../includes/settings.php:
|
219 |
msgid "Counter Mode"
|
220 |
msgstr "Tryb pracy licznika"
|
221 |
|
222 |
-
#: ../includes/settings.php:
|
223 |
msgid "Post Views Column"
|
224 |
msgstr "Kolumna z liczbą odwiedzin"
|
225 |
|
226 |
-
#: ../includes/settings.php:
|
227 |
-
msgid "Restrict Edit"
|
228 |
-
msgstr "Ograniczenie edycji"
|
229 |
-
|
230 |
-
#: ../includes/settings.php:209
|
231 |
msgid "Time Between Counts"
|
232 |
msgstr "Czas między zliczaniem"
|
233 |
|
234 |
-
#: ../includes/settings.php:
|
235 |
-
msgid "Reset Data
|
236 |
-
msgstr "
|
237 |
-
|
238 |
-
#: ../includes/settings.php:211
|
239 |
-
msgid "Flush Object Cache Interval"
|
240 |
-
msgstr "Czas czyszczenia cache"
|
241 |
|
242 |
-
#: ../includes/settings.php:
|
243 |
msgid "Exclude Visitors"
|
244 |
msgstr "Wykluczanie odwiedzających"
|
245 |
|
246 |
-
#: ../includes/settings.php:
|
247 |
msgid "Exclude IPs"
|
248 |
msgstr "Wykluczanie IP"
|
249 |
|
250 |
-
#: ../includes/settings.php:
|
251 |
msgid "WP-PostViews"
|
252 |
msgstr "WP-PostViews"
|
253 |
|
254 |
-
#: ../includes/settings.php:
|
255 |
msgid "Deactivation"
|
256 |
msgstr "Deaktywacja wtyczki"
|
257 |
|
258 |
-
#: ../includes/settings.php:
|
259 |
msgid "Display settings"
|
260 |
msgstr "Ustawienia wyświetlania"
|
261 |
|
262 |
-
#: ../includes/settings.php:
|
263 |
msgid "Post Views Label"
|
264 |
msgstr "Etykieta licznika"
|
265 |
|
266 |
-
#: ../includes/settings.php:
|
267 |
-
msgid "Post
|
268 |
-
msgstr "
|
269 |
|
270 |
-
#: ../includes/settings.php:
|
271 |
-
msgid "
|
272 |
-
msgstr "
|
273 |
|
274 |
-
#: ../includes/settings.php:
|
275 |
-
msgid "User Type"
|
276 |
-
msgstr "Typ użytkownika"
|
277 |
-
|
278 |
-
#: ../includes/settings.php:224
|
279 |
msgid "Position"
|
280 |
msgstr "Pozycja"
|
281 |
|
282 |
-
#: ../includes/settings.php:
|
283 |
msgid "Display Style"
|
284 |
msgstr "Styl wyświetlania"
|
285 |
|
286 |
-
#: ../includes/settings.php:
|
287 |
msgid "Icon Class"
|
288 |
msgstr "Klasa ikony"
|
289 |
|
290 |
-
#: ../includes/settings.php:
|
291 |
msgid "Enter the label for the post views counter field."
|
292 |
msgstr "Wpisz etykietę jaka będzie wyświetlana w liczniku odwiedzin wpisu."
|
293 |
|
294 |
-
#: ../includes/settings.php:
|
|
|
|
|
|
|
|
|
295 |
msgid "Select post types for which post views will be counted."
|
296 |
msgstr "Wybierz typy wpisów dla których będzie włączone zliczanie."
|
297 |
|
298 |
-
#: ../includes/settings.php:
|
299 |
-
|
300 |
-
|
|
|
|
|
|
|
|
|
|
|
301 |
|
302 |
-
#: ../includes/settings.php:
|
303 |
msgid ""
|
304 |
"Select the method of collecting post views data. If you are using any of the "
|
305 |
"caching plugins select Javascript."
|
@@ -307,17 +264,17 @@ msgstr ""
|
|
307 |
"Wybierz metodę gromadzenia danych. Jeśli używaż jakiejkolwiek wtyczki do "
|
308 |
"cachowania wybierz Javascript."
|
309 |
|
310 |
-
#: ../includes/settings.php:
|
311 |
msgid ""
|
312 |
"Enable to display post views count column for each of the selected post "
|
313 |
"types."
|
314 |
msgstr "Włącz aby wyświetlić kolumnę z liczbą odsłon."
|
315 |
|
316 |
-
#: ../includes/settings.php:
|
317 |
msgid "Enter the time between single user visit count."
|
318 |
msgstr "Określ czas pomiędzy zliczaniem wizyt poszczególnego użytkownika."
|
319 |
|
320 |
-
#: ../includes/settings.php:
|
321 |
msgid ""
|
322 |
"Delete single day post views data older than specified above. Enter 0 "
|
323 |
"(number zero) if you want to preserve your data regardless of its age."
|
@@ -325,79 +282,48 @@ msgstr ""
|
|
325 |
"Usuwanie dziennych danych o liczbie wpisów po określonym powyżej czasie. "
|
326 |
"Wpisz 0 jeśli chcesz przetrzymywać te dane bez ograniczeń."
|
327 |
|
328 |
-
#: ../includes/settings.php:
|
329 |
-
msgid ""
|
330 |
-
"
|
331 |
-
"database. This feature is used only if a persistent object cache is detected "
|
332 |
-
"and the interval is greater than 0 (number zero)). When used, view counts "
|
333 |
-
"will be collected and stored in the object cache instead of the database and "
|
334 |
-
"will then be asynchronously flushed to the database according to the "
|
335 |
-
"specified interval.<br /><strong>Notice:</strong> Potential data loss may "
|
336 |
-
"occur if the object cache is cleared/unavailable for the duration of the "
|
337 |
-
"interval."
|
338 |
-
msgstr ""
|
339 |
-
"Jak często powinno odbywać się przenoszenie danych z cache do bazy danych. "
|
340 |
-
"Ta funkcja jest używana tylko gdy włączone jest cachowanie obiektowe a "
|
341 |
-
"przedział jest większy niż 0. Jeśli jest włączona, zebrane dane będą "
|
342 |
-
"przechowywane w cache i przenoszone do bazy danych w określonych odstę[ach "
|
343 |
-
"czasu.<br /><strong>Uwaga:</strong> Może nastąpić ustrata części danych "
|
344 |
-
"jeśli cachowanie obiektowe nie będzie dostępne lub cache zostanie "
|
345 |
-
"wyczyszczony w trakcie trwania wybranego okresu."
|
346 |
-
|
347 |
-
#: ../includes/settings.php:378 ../includes/settings.php:538
|
348 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
349 |
-
msgstr ""
|
350 |
-
"Użyj tego aby ograniczyć wyświetlanie licznika do określonych typów "
|
351 |
-
"użytkowników."
|
352 |
|
353 |
-
#: ../includes/settings.php:
|
354 |
-
msgid "
|
355 |
-
msgstr ""
|
356 |
-
"Użyj tego aby ograniczyć wyświetlanie licznika do określonych tról "
|
357 |
-
"użytkowników."
|
358 |
|
359 |
-
#: ../includes/settings.php:
|
360 |
msgid "Remove"
|
361 |
msgstr "Usuń"
|
362 |
|
363 |
-
#: ../includes/settings.php:
|
364 |
msgid "Add new"
|
365 |
msgstr "Dodaj nowy"
|
366 |
|
367 |
-
#: ../includes/settings.php:
|
368 |
msgid "Add my current IP"
|
369 |
msgstr "Dodaj mój aktualny IP"
|
370 |
|
371 |
-
#: ../includes/settings.php:
|
372 |
msgid "Enter the IP addresses to be excluded from post views count."
|
373 |
msgstr "Wpisz adresy IP, któe mają być wyłączone z działania licznika."
|
374 |
|
375 |
-
#: ../includes/settings.php:
|
376 |
msgid "Import"
|
377 |
msgstr "Importuj"
|
378 |
|
379 |
-
#: ../includes/settings.php:
|
380 |
msgid "Import post views data from WP-PostViews plugin."
|
381 |
-
msgstr "
|
382 |
|
383 |
-
#: ../includes/settings.php:
|
|
|
384 |
msgid "Override existing Post Views Counter data."
|
385 |
-
msgstr "
|
386 |
-
|
387 |
-
#: ../includes/settings.php:441
|
388 |
-
msgid "Enable to restrict post views editing to admins only."
|
389 |
-
msgstr ""
|
390 |
-
"Włącz aby ograniczyć możliwość edycji liczby wpisów do administratorów."
|
391 |
|
392 |
-
#: ../includes/settings.php:
|
393 |
msgid "Enable to delete all plugin data on deactivation."
|
394 |
msgstr "Włącz aby usunąć wszystkie dane wtyczki podczas deaktywacji"
|
395 |
|
396 |
-
#: ../includes/settings.php:
|
397 |
-
msgid "Select page types where the views count will be displayed."
|
398 |
-
msgstr "Wybierz rodzaje stron na których chcesz wyświetlać liczbę odwiedzin."
|
399 |
-
|
400 |
-
#: ../includes/settings.php:487
|
401 |
msgid ""
|
402 |
"Select where would you like to display the post views counter. Use [post-"
|
403 |
"views] shortcode for manual display."
|
@@ -405,142 +331,107 @@ msgstr ""
|
|
405 |
"Wybierz w którym miejscu chcesz wyświetlać licznik odwiedzin. Użyj skrótu "
|
406 |
"[post-views] aby wyświetlić licznik ręcznie."
|
407 |
|
408 |
-
#: ../includes/settings.php:
|
409 |
msgid "Choose how to display the post views counter."
|
410 |
msgstr "Wybierz w jaki sposób chcesz wyświetlać licznik."
|
411 |
|
412 |
-
#: ../includes/settings.php:
|
413 |
#, php-format
|
414 |
msgid ""
|
415 |
"Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank"
|
416 |
"\">Dashicons</a> classes are available."
|
417 |
msgstr ""
|
418 |
-
"Wpisz klasę CSS ikony. Każda z ikond typu <a href=\"%s\" target=\"_blank"
|
419 |
-
"\">Dashicons</a> może być tutaj zastosowana."
|
420 |
|
421 |
-
#: ../includes/settings.php:
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
|
|
|
|
424 |
|
425 |
-
#: ../includes/settings.php:
|
426 |
-
msgid "
|
427 |
-
msgstr "
|
428 |
|
429 |
-
#: ../includes/settings.php:
|
|
|
|
|
|
|
|
|
430 |
msgid "General settings restored to defaults."
|
431 |
msgstr "Ustawienia zostały przywrócone do domyślnych."
|
432 |
|
433 |
-
#: ../includes/settings.php:
|
434 |
msgid "Display settings restored to defaults."
|
435 |
msgstr "Ustawienia wyświetlania została przywrócone do domyślnych."
|
436 |
|
437 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
438 |
msgid "Most Viewed Posts"
|
439 |
msgstr "Najczęściej oglądane wpisy"
|
440 |
|
441 |
-
#: ../includes/widgets.php:
|
442 |
msgid "Displays a list of the most viewed posts"
|
443 |
msgstr "Wyświetla listę najczęściej oglądanych wpisów"
|
444 |
|
445 |
-
#: ../includes/widgets.php:
|
446 |
msgid "No Posts found"
|
447 |
msgstr "Brak wpisów"
|
448 |
|
449 |
-
#: ../includes/widgets.php:
|
450 |
msgid "Ascending"
|
451 |
msgstr "Rosnąco"
|
452 |
|
453 |
-
#: ../includes/widgets.php:
|
454 |
msgid "Descending"
|
455 |
msgstr "Malejąco"
|
456 |
|
457 |
-
#: ../includes/widgets.php:
|
458 |
msgid "Title"
|
459 |
msgstr "Tytuł"
|
460 |
|
461 |
-
#: ../includes/widgets.php:
|
462 |
-
msgid "Post
|
463 |
msgstr "Typy wpisów"
|
464 |
|
465 |
-
#: ../includes/widgets.php:
|
466 |
msgid "Number of posts to show"
|
467 |
msgstr "Liczba wpisów do wyświetlenia"
|
468 |
|
469 |
-
#: ../includes/widgets.php:
|
470 |
msgid "No posts message"
|
471 |
msgstr "Treść braku wpisów"
|
472 |
|
473 |
-
#: ../includes/widgets.php:
|
474 |
msgid "Order"
|
475 |
msgstr "Kolejność"
|
476 |
|
477 |
-
#: ../includes/widgets.php:
|
478 |
msgid "Display post views?"
|
479 |
msgstr "Wyświetlanie liczby odsłon?"
|
480 |
|
481 |
-
#: ../includes/widgets.php:
|
482 |
msgid "Display post excerpt?"
|
483 |
msgstr "Wyświetlanie wypisu?"
|
484 |
|
485 |
-
#: ../includes/widgets.php:
|
486 |
msgid "Display post thumbnail?"
|
487 |
msgstr "WYświetlanie miniatury?"
|
488 |
|
489 |
-
#: ../includes/widgets.php:
|
490 |
msgid "Thumbnail size"
|
491 |
msgstr "WIelkość miniatury"
|
492 |
|
493 |
-
#: ../post-views-counter.php:
|
494 |
msgid "Are you sure you want to reset these settings to defaults?"
|
495 |
msgstr "Czy jesteś pewny, że chcesz zresetować ustawienia do domyślnych?"
|
496 |
|
497 |
-
#: ../post-views-counter.php:
|
498 |
-
msgid "Support"
|
499 |
-
msgstr "Forum pomocy"
|
500 |
-
|
501 |
-
#: ../post-views-counter.php:343
|
502 |
msgid "Settings"
|
503 |
msgstr "Ustawienia"
|
504 |
|
505 |
-
#~ msgid "Post Types Display"
|
506 |
-
#~ msgstr "Wyświetlanie licznika"
|
507 |
-
|
508 |
-
#~ msgid "Restrict Display"
|
509 |
-
#~ msgstr "Ograniczenia wyświetlania"
|
510 |
-
|
511 |
-
#~ msgid "Select post types for which post views will be displayed."
|
512 |
-
#~ msgstr "Wybierz typy wpisów dla których licznik będzie wyświetlony."
|
513 |
-
|
514 |
-
#~ msgid "WP-PostViews data imported succesfully."
|
515 |
-
#~ msgstr "Dane z wtyczki WP-PostViews zostały zaimportowane pomyślnie."
|
516 |
-
|
517 |
-
#~ msgid "There was no data to import."
|
518 |
-
#~ msgstr "Niestety, nie znaleziono danych do zaimportowania."
|
519 |
-
|
520 |
-
#~ msgid "Select post types"
|
521 |
-
#~ msgstr "Wybierz typy wpisów"
|
522 |
-
|
523 |
-
#~ msgid "Select groups"
|
524 |
-
#~ msgstr "Wybierz grupy"
|
525 |
-
|
526 |
-
#~ msgid "Select user roles"
|
527 |
-
#~ msgstr "Wybierz role użytkowników"
|
528 |
-
|
529 |
-
#~ msgid "Select the type of visitors to be excluded from post views count."
|
530 |
-
#~ msgstr "Wybierz typy użytkowników wyłączonych z działania licznika."
|
531 |
-
|
532 |
-
#~ msgid "Enable"
|
533 |
-
#~ msgstr "Włącz"
|
534 |
-
|
535 |
-
#~ msgid "Disable"
|
536 |
-
#~ msgstr "Wyłącz"
|
537 |
-
|
538 |
-
#~ msgid "Reset Data"
|
539 |
-
#~ msgstr "Resetowanie danych"
|
540 |
-
|
541 |
-
#~ msgid "Post types"
|
542 |
-
#~ msgstr "Typy wpisów"
|
543 |
-
|
544 |
#~ msgid "text"
|
545 |
#~ msgstr "tekst"
|
546 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Post Views Counter\n"
|
4 |
+
"POT-Creation-Date: 2014-07-03 01:06+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-07-03 01:07+0100\n"
|
6 |
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
7 |
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.5\n"
|
13 |
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;"
|
14 |
"esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
+
#: ../includes/columns.php:113 ../includes/columns.php:121
|
|
|
|
|
|
|
21 |
msgid "Post Views"
|
22 |
msgstr "Odwiedziny"
|
23 |
|
24 |
+
#: ../includes/cron.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Post Views Counter reset daily counts interval"
|
26 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
+
#: ../includes/functions.php:114
|
|
|
|
|
|
|
|
|
29 |
msgid "No Posts"
|
30 |
msgstr "Brak wpisów"
|
31 |
|
32 |
+
#: ../includes/settings.php:41
|
33 |
+
msgid "Enable"
|
34 |
+
msgstr "Włącz"
|
35 |
+
|
36 |
+
#: ../includes/settings.php:42
|
37 |
+
msgid "Disable"
|
38 |
+
msgstr "Wyłącz"
|
39 |
+
|
40 |
+
#: ../includes/settings.php:46
|
41 |
msgid "PHP"
|
42 |
msgstr "PHP"
|
43 |
|
44 |
+
#: ../includes/settings.php:47
|
45 |
msgid "JavaScript"
|
46 |
msgstr "JavaScript"
|
47 |
|
48 |
+
#: ../includes/settings.php:51
|
49 |
msgid "minutes"
|
50 |
msgstr "minuty"
|
51 |
|
52 |
+
#: ../includes/settings.php:52
|
53 |
msgid "hours"
|
54 |
msgstr "godziny"
|
55 |
|
56 |
+
#: ../includes/settings.php:53
|
57 |
msgid "days"
|
58 |
msgstr "dni"
|
59 |
|
60 |
+
#: ../includes/settings.php:54
|
61 |
msgid "weeks"
|
62 |
msgstr "tygodnie"
|
63 |
|
64 |
+
#: ../includes/settings.php:55
|
65 |
msgid "months"
|
66 |
msgstr "miesiące"
|
67 |
|
68 |
+
#: ../includes/settings.php:56
|
69 |
msgid "years"
|
70 |
msgstr "lata"
|
71 |
|
72 |
+
#: ../includes/settings.php:60
|
73 |
msgid "robots"
|
74 |
msgstr "roboty"
|
75 |
|
76 |
+
#: ../includes/settings.php:61
|
77 |
msgid "logged in users"
|
78 |
msgstr "zalogowani użytkownicy"
|
79 |
|
80 |
+
#: ../includes/settings.php:62
|
81 |
msgid "guests"
|
82 |
msgstr "goście"
|
83 |
|
84 |
+
#: ../includes/settings.php:63
|
85 |
msgid "selected user roles"
|
86 |
msgstr "wybrane role użytkowników"
|
87 |
|
88 |
+
#: ../includes/settings.php:67
|
89 |
msgid "before the content"
|
90 |
msgstr "przed treścią"
|
91 |
|
92 |
+
#: ../includes/settings.php:68
|
93 |
msgid "after the content"
|
94 |
msgstr "po treści"
|
95 |
|
96 |
+
#: ../includes/settings.php:69
|
97 |
msgid "manual"
|
98 |
msgstr "ręcznie"
|
99 |
|
100 |
+
#: ../includes/settings.php:73
|
101 |
msgid "icon"
|
102 |
msgstr "ikona"
|
103 |
|
104 |
+
#: ../includes/settings.php:74
|
105 |
msgid "label"
|
106 |
msgstr "etykieta"
|
107 |
|
108 |
+
#: ../includes/settings.php:79
|
109 |
msgid "General"
|
110 |
msgstr "Ogólne"
|
111 |
|
112 |
+
#: ../includes/settings.php:85
|
113 |
msgid "Display"
|
114 |
msgstr "Wyświetlanie"
|
115 |
|
116 |
+
#: ../includes/settings.php:149 ../includes/settings.php:150
|
117 |
+
#: ../includes/settings.php:167 ../includes/settings.php:180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Post Views Counter"
|
119 |
msgstr "Licznik odwiedzin"
|
120 |
|
121 |
+
#: ../includes/settings.php:182
|
122 |
msgid "Need support?"
|
123 |
msgstr "Potrzebujesz pomocy?"
|
124 |
|
125 |
+
#: ../includes/settings.php:183
|
126 |
msgid ""
|
127 |
"If you are having problems with this plugin, please talk about them in the"
|
128 |
msgstr "Jeśli masz jakieś problemy z tą wtyczką, powiedz o nich"
|
129 |
|
130 |
+
#: ../includes/settings.php:183
|
131 |
msgid "Support forum"
|
132 |
msgstr "Forum pomocy"
|
133 |
|
134 |
+
#: ../includes/settings.php:185
|
135 |
msgid "Do you like this plugin?"
|
136 |
msgstr "Lubisz tę wtyczkę?"
|
137 |
|
138 |
+
#: ../includes/settings.php:186
|
139 |
msgid "Rate it 5"
|
140 |
msgstr "Oceń ją na 5"
|
141 |
|
142 |
+
#: ../includes/settings.php:186
|
143 |
msgid "on WordPress.org"
|
144 |
msgstr "na WordPress.org"
|
145 |
|
146 |
+
#: ../includes/settings.php:187
|
147 |
msgid "Blog about it & link to the"
|
148 |
msgstr "Napisz o niej i dodaj link"
|
149 |
|
150 |
+
#: ../includes/settings.php:187
|
151 |
msgid "plugin page"
|
152 |
msgstr "do strony wtyczki"
|
153 |
|
154 |
+
#: ../includes/settings.php:188
|
155 |
msgid "Check out our other"
|
156 |
msgstr "Sprawdż nasze inne"
|
157 |
|
158 |
+
#: ../includes/settings.php:188
|
159 |
msgid "WordPress plugins"
|
160 |
msgstr "wtyczki do WordPressa"
|
161 |
|
162 |
+
#: ../includes/settings.php:191
|
163 |
msgid "Created by"
|
164 |
msgstr "Stworzone przez"
|
165 |
|
166 |
+
#: ../includes/settings.php:207
|
167 |
msgid "Reset to defaults"
|
168 |
msgstr "Resetuj do domyślnych"
|
169 |
|
170 |
+
#: ../includes/settings.php:225
|
171 |
msgid "General settings"
|
172 |
msgstr "Ustawienia ogólne"
|
173 |
|
174 |
+
#: ../includes/settings.php:226
|
175 |
msgid "Post Types Count"
|
176 |
msgstr "Własne typy wpisów"
|
177 |
|
178 |
+
#: ../includes/settings.php:227
|
179 |
msgid "Counter Mode"
|
180 |
msgstr "Tryb pracy licznika"
|
181 |
|
182 |
+
#: ../includes/settings.php:228
|
183 |
msgid "Post Views Column"
|
184 |
msgstr "Kolumna z liczbą odwiedzin"
|
185 |
|
186 |
+
#: ../includes/settings.php:229
|
|
|
|
|
|
|
|
|
187 |
msgid "Time Between Counts"
|
188 |
msgstr "Czas między zliczaniem"
|
189 |
|
190 |
+
#: ../includes/settings.php:230
|
191 |
+
msgid "Reset Data"
|
192 |
+
msgstr "Resetowanie danych"
|
|
|
|
|
|
|
|
|
193 |
|
194 |
+
#: ../includes/settings.php:231
|
195 |
msgid "Exclude Visitors"
|
196 |
msgstr "Wykluczanie odwiedzających"
|
197 |
|
198 |
+
#: ../includes/settings.php:232
|
199 |
msgid "Exclude IPs"
|
200 |
msgstr "Wykluczanie IP"
|
201 |
|
202 |
+
#: ../includes/settings.php:233
|
203 |
msgid "WP-PostViews"
|
204 |
msgstr "WP-PostViews"
|
205 |
|
206 |
+
#: ../includes/settings.php:234
|
207 |
msgid "Deactivation"
|
208 |
msgstr "Deaktywacja wtyczki"
|
209 |
|
210 |
+
#: ../includes/settings.php:238
|
211 |
msgid "Display settings"
|
212 |
msgstr "Ustawienia wyświetlania"
|
213 |
|
214 |
+
#: ../includes/settings.php:239
|
215 |
msgid "Post Views Label"
|
216 |
msgstr "Etykieta licznika"
|
217 |
|
218 |
+
#: ../includes/settings.php:240
|
219 |
+
msgid "Post Types Display"
|
220 |
+
msgstr "Wyświetlanie licznika"
|
221 |
|
222 |
+
#: ../includes/settings.php:241
|
223 |
+
msgid "Restrict Display"
|
224 |
+
msgstr "Ograniczenia wyświetlania"
|
225 |
|
226 |
+
#: ../includes/settings.php:242
|
|
|
|
|
|
|
|
|
227 |
msgid "Position"
|
228 |
msgstr "Pozycja"
|
229 |
|
230 |
+
#: ../includes/settings.php:243
|
231 |
msgid "Display Style"
|
232 |
msgstr "Styl wyświetlania"
|
233 |
|
234 |
+
#: ../includes/settings.php:244
|
235 |
msgid "Icon Class"
|
236 |
msgstr "Klasa ikony"
|
237 |
|
238 |
+
#: ../includes/settings.php:258
|
239 |
msgid "Enter the label for the post views counter field."
|
240 |
msgstr "Wpisz etykietę jaka będzie wyświetlana w liczniku odwiedzin wpisu."
|
241 |
|
242 |
+
#: ../includes/settings.php:272
|
243 |
+
msgid "Select post types"
|
244 |
+
msgstr "Wybierz typy wpisów"
|
245 |
+
|
246 |
+
#: ../includes/settings.php:283
|
247 |
msgid "Select post types for which post views will be counted."
|
248 |
msgstr "Wybierz typy wpisów dla których będzie włączone zliczanie."
|
249 |
|
250 |
+
#: ../includes/settings.php:297 ../includes/settings.php:423
|
251 |
+
#: ../includes/settings.php:599
|
252 |
+
msgid "Select groups"
|
253 |
+
msgstr "Wybierz grupy"
|
254 |
+
|
255 |
+
#: ../includes/settings.php:308
|
256 |
+
msgid "Select post types for which post views will be displayed."
|
257 |
+
msgstr "Wybierz typy wpisów dla których licznik będzie wyświetlony."
|
258 |
|
259 |
+
#: ../includes/settings.php:332
|
260 |
msgid ""
|
261 |
"Select the method of collecting post views data. If you are using any of the "
|
262 |
"caching plugins select Javascript."
|
264 |
"Wybierz metodę gromadzenia danych. Jeśli używaż jakiejkolwiek wtyczki do "
|
265 |
"cachowania wybierz Javascript."
|
266 |
|
267 |
+
#: ../includes/settings.php:357
|
268 |
msgid ""
|
269 |
"Enable to display post views count column for each of the selected post "
|
270 |
"types."
|
271 |
msgstr "Włącz aby wyświetlić kolumnę z liczbą odsłon."
|
272 |
|
273 |
+
#: ../includes/settings.php:383
|
274 |
msgid "Enter the time between single user visit count."
|
275 |
msgstr "Określ czas pomiędzy zliczaniem wizyt poszczególnego użytkownika."
|
276 |
|
277 |
+
#: ../includes/settings.php:409
|
278 |
msgid ""
|
279 |
"Delete single day post views data older than specified above. Enter 0 "
|
280 |
"(number zero) if you want to preserve your data regardless of its age."
|
282 |
"Usuwanie dziennych danych o liczbie wpisów po określonym powyżej czasie. "
|
283 |
"Wpisz 0 jeśli chcesz przetrzymywać te dane bez ograniczeń."
|
284 |
|
285 |
+
#: ../includes/settings.php:435 ../includes/settings.php:614
|
286 |
+
msgid "Select user roles"
|
287 |
+
msgstr "Wybierz role użytkowników"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
|
289 |
+
#: ../includes/settings.php:447
|
290 |
+
msgid "Select the type of visitors to be excluded from post views count."
|
291 |
+
msgstr "Wybierz typy użytkowników wyłączonych z działania licznika."
|
|
|
|
|
292 |
|
293 |
+
#: ../includes/settings.php:466 ../includes/settings.php:475
|
294 |
msgid "Remove"
|
295 |
msgstr "Usuń"
|
296 |
|
297 |
+
#: ../includes/settings.php:475
|
298 |
msgid "Add new"
|
299 |
msgstr "Dodaj nowy"
|
300 |
|
301 |
+
#: ../includes/settings.php:475
|
302 |
msgid "Add my current IP"
|
303 |
msgstr "Dodaj mój aktualny IP"
|
304 |
|
305 |
+
#: ../includes/settings.php:477
|
306 |
msgid "Enter the IP addresses to be excluded from post views count."
|
307 |
msgstr "Wpisz adresy IP, któe mają być wyłączone z działania licznika."
|
308 |
|
309 |
+
#: ../includes/settings.php:491
|
310 |
msgid "Import"
|
311 |
msgstr "Importuj"
|
312 |
|
313 |
+
#: ../includes/settings.php:493
|
314 |
msgid "Import post views data from WP-PostViews plugin."
|
315 |
+
msgstr ""
|
316 |
|
317 |
+
#: ../includes/settings.php:494
|
318 |
+
#, fuzzy
|
319 |
msgid "Override existing Post Views Counter data."
|
320 |
+
msgstr "Licznik odwiedzin"
|
|
|
|
|
|
|
|
|
|
|
321 |
|
322 |
+
#: ../includes/settings.php:519
|
323 |
msgid "Enable to delete all plugin data on deactivation."
|
324 |
msgstr "Włącz aby usunąć wszystkie dane wtyczki podczas deaktywacji"
|
325 |
|
326 |
+
#: ../includes/settings.php:544
|
|
|
|
|
|
|
|
|
327 |
msgid ""
|
328 |
"Select where would you like to display the post views counter. Use [post-"
|
329 |
"views] shortcode for manual display."
|
331 |
"Wybierz w którym miejscu chcesz wyświetlać licznik odwiedzin. Użyj skrótu "
|
332 |
"[post-views] aby wyświetlić licznik ręcznie."
|
333 |
|
334 |
+
#: ../includes/settings.php:569
|
335 |
msgid "Choose how to display the post views counter."
|
336 |
msgstr "Wybierz w jaki sposób chcesz wyświetlać licznik."
|
337 |
|
338 |
+
#: ../includes/settings.php:585
|
339 |
#, php-format
|
340 |
msgid ""
|
341 |
"Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank"
|
342 |
"\">Dashicons</a> classes are available."
|
343 |
msgstr ""
|
|
|
|
|
344 |
|
345 |
+
#: ../includes/settings.php:626
|
346 |
+
msgid "Use it to hide the post views counter from selected type of visitors."
|
347 |
+
msgstr ""
|
348 |
+
"Użyj tego aby ograniczyć wyświetlanie licznika do określonych typów "
|
349 |
+
"użytkowników."
|
350 |
|
351 |
+
#: ../includes/settings.php:661
|
352 |
+
msgid "WP-PostViews data imported succesfully."
|
353 |
+
msgstr ""
|
354 |
|
355 |
+
#: ../includes/settings.php:665
|
356 |
+
msgid "There was no data to import."
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: ../includes/settings.php:827
|
360 |
msgid "General settings restored to defaults."
|
361 |
msgstr "Ustawienia zostały przywrócone do domyślnych."
|
362 |
|
363 |
+
#: ../includes/settings.php:833
|
364 |
msgid "Display settings restored to defaults."
|
365 |
msgstr "Ustawienia wyświetlania została przywrócone do domyślnych."
|
366 |
|
367 |
+
#: ../includes/settings.php:854
|
368 |
+
msgid "Support"
|
369 |
+
msgstr "Forum pomocy"
|
370 |
+
|
371 |
+
#: ../includes/widgets.php:38 ../includes/widgets.php:49
|
372 |
msgid "Most Viewed Posts"
|
373 |
msgstr "Najczęściej oglądane wpisy"
|
374 |
|
375 |
+
#: ../includes/widgets.php:40
|
376 |
msgid "Displays a list of the most viewed posts"
|
377 |
msgstr "Wyświetla listę najczęściej oglądanych wpisów"
|
378 |
|
379 |
+
#: ../includes/widgets.php:57
|
380 |
msgid "No Posts found"
|
381 |
msgstr "Brak wpisów"
|
382 |
|
383 |
+
#: ../includes/widgets.php:61
|
384 |
msgid "Ascending"
|
385 |
msgstr "Rosnąco"
|
386 |
|
387 |
+
#: ../includes/widgets.php:62
|
388 |
msgid "Descending"
|
389 |
msgstr "Malejąco"
|
390 |
|
391 |
+
#: ../includes/widgets.php:105
|
392 |
msgid "Title"
|
393 |
msgstr "Tytuł"
|
394 |
|
395 |
+
#: ../includes/widgets.php:109
|
396 |
+
msgid "Post types"
|
397 |
msgstr "Typy wpisów"
|
398 |
|
399 |
+
#: ../includes/widgets.php:123
|
400 |
msgid "Number of posts to show"
|
401 |
msgstr "Liczba wpisów do wyświetlenia"
|
402 |
|
403 |
+
#: ../includes/widgets.php:127
|
404 |
msgid "No posts message"
|
405 |
msgstr "Treść braku wpisów"
|
406 |
|
407 |
+
#: ../includes/widgets.php:131
|
408 |
msgid "Order"
|
409 |
msgstr "Kolejność"
|
410 |
|
411 |
+
#: ../includes/widgets.php:144
|
412 |
msgid "Display post views?"
|
413 |
msgstr "Wyświetlanie liczby odsłon?"
|
414 |
|
415 |
+
#: ../includes/widgets.php:146
|
416 |
msgid "Display post excerpt?"
|
417 |
msgstr "Wyświetlanie wypisu?"
|
418 |
|
419 |
+
#: ../includes/widgets.php:148
|
420 |
msgid "Display post thumbnail?"
|
421 |
msgstr "WYświetlanie miniatury?"
|
422 |
|
423 |
+
#: ../includes/widgets.php:151
|
424 |
msgid "Thumbnail size"
|
425 |
msgstr "WIelkość miniatury"
|
426 |
|
427 |
+
#: ../post-views-counter.php:251
|
428 |
msgid "Are you sure you want to reset these settings to defaults?"
|
429 |
msgstr "Czy jesteś pewny, że chcesz zresetować ustawienia do domyślnych?"
|
430 |
|
431 |
+
#: ../post-views-counter.php:285
|
|
|
|
|
|
|
|
|
432 |
msgid "Settings"
|
433 |
msgstr "Ustawienia"
|
434 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
#~ msgid "text"
|
436 |
#~ msgstr "tekst"
|
437 |
|
languages/post-views-counter-ru_RU.mo
DELETED
Binary file
|
languages/post-views-counter-ru_RU.po
DELETED
@@ -1,438 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Post Views Counter\n"
|
4 |
-
"POT-Creation-Date: 2014-07-03 01:05+0100\n"
|
5 |
-
"PO-Revision-Date: 2014-07-10 19:47+0200\n"
|
6 |
-
"Last-Translator: 4ukanov@gmail.com <4ukanov@gmail.com>\n"
|
7 |
-
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
-
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
-
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.6.5\n"
|
12 |
-
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;"
|
13 |
-
"esc_html__;esc_html_e\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
17 |
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
18 |
-
"Language: ru_RU\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
|
21 |
-
#: ../includes/columns.php:113 ../includes/columns.php:121
|
22 |
-
msgid "Post Views"
|
23 |
-
msgstr "Просмотров"
|
24 |
-
|
25 |
-
#: ../includes/cron.php:40
|
26 |
-
msgid "Post Views Counter reset daily counts interval"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../includes/functions.php:114
|
30 |
-
msgid "No Posts"
|
31 |
-
msgstr "Нет записей"
|
32 |
-
|
33 |
-
#: ../includes/settings.php:41
|
34 |
-
msgid "Enable"
|
35 |
-
msgstr "Включить"
|
36 |
-
|
37 |
-
#: ../includes/settings.php:42
|
38 |
-
msgid "Disable"
|
39 |
-
msgstr "Выключить"
|
40 |
-
|
41 |
-
#: ../includes/settings.php:46
|
42 |
-
msgid "PHP"
|
43 |
-
msgstr "PHP"
|
44 |
-
|
45 |
-
#: ../includes/settings.php:47
|
46 |
-
msgid "JavaScript"
|
47 |
-
msgstr "JavaScript"
|
48 |
-
|
49 |
-
#: ../includes/settings.php:51
|
50 |
-
msgid "minutes"
|
51 |
-
msgstr "минуты"
|
52 |
-
|
53 |
-
#: ../includes/settings.php:52
|
54 |
-
msgid "hours"
|
55 |
-
msgstr "час(ов)"
|
56 |
-
|
57 |
-
#: ../includes/settings.php:53
|
58 |
-
msgid "days"
|
59 |
-
msgstr "дней"
|
60 |
-
|
61 |
-
#: ../includes/settings.php:54
|
62 |
-
msgid "weeks"
|
63 |
-
msgstr "недель"
|
64 |
-
|
65 |
-
#: ../includes/settings.php:55
|
66 |
-
msgid "months"
|
67 |
-
msgstr "месяцев"
|
68 |
-
|
69 |
-
#: ../includes/settings.php:56
|
70 |
-
msgid "years"
|
71 |
-
msgstr "лет"
|
72 |
-
|
73 |
-
#: ../includes/settings.php:60
|
74 |
-
msgid "robots"
|
75 |
-
msgstr "роботы"
|
76 |
-
|
77 |
-
#: ../includes/settings.php:61
|
78 |
-
msgid "logged in users"
|
79 |
-
msgstr "Авторизованые пользователи"
|
80 |
-
|
81 |
-
#: ../includes/settings.php:62
|
82 |
-
msgid "guests"
|
83 |
-
msgstr "Гости"
|
84 |
-
|
85 |
-
#: ../includes/settings.php:63
|
86 |
-
msgid "selected user roles"
|
87 |
-
msgstr "Выберите роли пользователя"
|
88 |
-
|
89 |
-
#: ../includes/settings.php:67
|
90 |
-
msgid "before the content"
|
91 |
-
msgstr "ДО контента"
|
92 |
-
|
93 |
-
#: ../includes/settings.php:68
|
94 |
-
msgid "after the content"
|
95 |
-
msgstr "ПОСЛЕ контета"
|
96 |
-
|
97 |
-
#: ../includes/settings.php:69
|
98 |
-
msgid "manual"
|
99 |
-
msgstr "В ручную"
|
100 |
-
|
101 |
-
#: ../includes/settings.php:73
|
102 |
-
msgid "icon"
|
103 |
-
msgstr "Иконка"
|
104 |
-
|
105 |
-
#: ../includes/settings.php:74
|
106 |
-
msgid "label"
|
107 |
-
msgstr "Текст"
|
108 |
-
|
109 |
-
#: ../includes/settings.php:79
|
110 |
-
msgid "General"
|
111 |
-
msgstr "Основное"
|
112 |
-
|
113 |
-
#: ../includes/settings.php:85
|
114 |
-
msgid "Display"
|
115 |
-
msgstr "Отображение"
|
116 |
-
|
117 |
-
#: ../includes/settings.php:149 ../includes/settings.php:150
|
118 |
-
#: ../includes/settings.php:167 ../includes/settings.php:180
|
119 |
-
msgid "Post Views Counter"
|
120 |
-
msgstr "Post Views Counter"
|
121 |
-
|
122 |
-
#: ../includes/settings.php:182
|
123 |
-
msgid "Need support?"
|
124 |
-
msgstr "Необходима помощь?"
|
125 |
-
|
126 |
-
#: ../includes/settings.php:183
|
127 |
-
msgid ""
|
128 |
-
"If you are having problems with this plugin, please talk about them in the"
|
129 |
-
msgstr "Если у вас есть проблемы с этим плагином, пожалуйста сообщите о них "
|
130 |
-
|
131 |
-
#: ../includes/settings.php:183
|
132 |
-
msgid "Support forum"
|
133 |
-
msgstr "Форум поддержки"
|
134 |
-
|
135 |
-
#: ../includes/settings.php:185
|
136 |
-
msgid "Do you like this plugin?"
|
137 |
-
msgstr "Вам нравится этот плагин?"
|
138 |
-
|
139 |
-
#: ../includes/settings.php:186
|
140 |
-
msgid "Rate it 5"
|
141 |
-
msgstr "Поставьте 5 звезд!"
|
142 |
-
|
143 |
-
#: ../includes/settings.php:186
|
144 |
-
msgid "on WordPress.org"
|
145 |
-
msgstr "на WordPress.org"
|
146 |
-
|
147 |
-
#: ../includes/settings.php:187
|
148 |
-
msgid "Blog about it & link to the"
|
149 |
-
msgstr "Информация и помощь"
|
150 |
-
|
151 |
-
#: ../includes/settings.php:187
|
152 |
-
msgid "plugin page"
|
153 |
-
msgstr "страница плагина"
|
154 |
-
|
155 |
-
#: ../includes/settings.php:188
|
156 |
-
msgid "Check out our other"
|
157 |
-
msgstr "Посмотрите наши другие "
|
158 |
-
|
159 |
-
#: ../includes/settings.php:188
|
160 |
-
msgid "WordPress plugins"
|
161 |
-
msgstr "WordPress плагины"
|
162 |
-
|
163 |
-
#: ../includes/settings.php:191
|
164 |
-
msgid "Created by"
|
165 |
-
msgstr "Создано"
|
166 |
-
|
167 |
-
#: ../includes/settings.php:207
|
168 |
-
msgid "Reset to defaults"
|
169 |
-
msgstr "Сбросить настройки"
|
170 |
-
|
171 |
-
#: ../includes/settings.php:225
|
172 |
-
msgid "General settings"
|
173 |
-
msgstr "Основные настройки"
|
174 |
-
|
175 |
-
#: ../includes/settings.php:226
|
176 |
-
msgid "Post Types Count"
|
177 |
-
msgstr "Считать контент:"
|
178 |
-
|
179 |
-
#: ../includes/settings.php:227
|
180 |
-
msgid "Counter Mode"
|
181 |
-
msgstr "Тип счетчика:"
|
182 |
-
|
183 |
-
#: ../includes/settings.php:228
|
184 |
-
msgid "Post Views Column"
|
185 |
-
msgstr "Post Views Column"
|
186 |
-
|
187 |
-
#: ../includes/settings.php:229
|
188 |
-
msgid "Time Between Counts"
|
189 |
-
msgstr "Период между счетом"
|
190 |
-
|
191 |
-
#: ../includes/settings.php:230
|
192 |
-
msgid "Reset Data"
|
193 |
-
msgstr "Сохранение просмотров за период:"
|
194 |
-
|
195 |
-
#: ../includes/settings.php:231
|
196 |
-
msgid "Exclude Visitors"
|
197 |
-
msgstr "Исключить посетителей"
|
198 |
-
|
199 |
-
#: ../includes/settings.php:232
|
200 |
-
msgid "Exclude IPs"
|
201 |
-
msgstr "Исключить IP"
|
202 |
-
|
203 |
-
#: ../includes/settings.php:233
|
204 |
-
msgid "WP-PostViews"
|
205 |
-
msgstr "WP-PostViews"
|
206 |
-
|
207 |
-
#: ../includes/settings.php:234
|
208 |
-
msgid "Deactivation"
|
209 |
-
msgstr "Деактивация"
|
210 |
-
|
211 |
-
#: ../includes/settings.php:238
|
212 |
-
msgid "Display settings"
|
213 |
-
msgstr "Настройки отображения"
|
214 |
-
|
215 |
-
#: ../includes/settings.php:239
|
216 |
-
msgid "Post Views Label"
|
217 |
-
msgstr "Текст перед счетчиком"
|
218 |
-
|
219 |
-
#: ../includes/settings.php:240
|
220 |
-
msgid "Post Types Display"
|
221 |
-
msgstr "Отображение счетчика на:"
|
222 |
-
|
223 |
-
#: ../includes/settings.php:241
|
224 |
-
msgid "Restrict Display"
|
225 |
-
msgstr "НЕ показывать для"
|
226 |
-
|
227 |
-
#: ../includes/settings.php:242
|
228 |
-
msgid "Position"
|
229 |
-
msgstr "Расположение"
|
230 |
-
|
231 |
-
#: ../includes/settings.php:243
|
232 |
-
msgid "Display Style"
|
233 |
-
msgstr "Отображать:"
|
234 |
-
|
235 |
-
#: ../includes/settings.php:244
|
236 |
-
msgid "Icon Class"
|
237 |
-
msgstr "Вид иконки"
|
238 |
-
|
239 |
-
#: ../includes/settings.php:258
|
240 |
-
msgid "Enter the label for the post views counter field."
|
241 |
-
msgstr "Введите метку для встречного поля Просмотров сообщение."
|
242 |
-
|
243 |
-
#: ../includes/settings.php:272
|
244 |
-
msgid "Select post types"
|
245 |
-
msgstr "Выберите типы записей"
|
246 |
-
|
247 |
-
#: ../includes/settings.php:283
|
248 |
-
msgid "Select post types for which post views will be counted."
|
249 |
-
msgstr "Выберите контент, на котором будет размещен счетчик просмоторов."
|
250 |
-
|
251 |
-
#: ../includes/settings.php:297 ../includes/settings.php:423
|
252 |
-
#: ../includes/settings.php:599
|
253 |
-
msgid "Select groups"
|
254 |
-
msgstr "Выберите тип посетителей"
|
255 |
-
|
256 |
-
#: ../includes/settings.php:308
|
257 |
-
msgid "Select post types for which post views will be displayed."
|
258 |
-
msgstr "Выберите типы контента на которых будет отображен счетчик"
|
259 |
-
|
260 |
-
#: ../includes/settings.php:332
|
261 |
-
msgid ""
|
262 |
-
"Select the method of collecting post views data. If you are using any of the "
|
263 |
-
"caching plugins select Javascript."
|
264 |
-
msgstr ""
|
265 |
-
"Выберите метод сбора данных кол-ва просмотров. Если вы используете плагины "
|
266 |
-
"для кеширования - выберите Javascript."
|
267 |
-
|
268 |
-
#: ../includes/settings.php:357
|
269 |
-
msgid ""
|
270 |
-
"Enable to display post views count column for each of the selected post "
|
271 |
-
"types."
|
272 |
-
msgstr ""
|
273 |
-
"Включить для отображения счетчика колонки рассчитывать для каждого из "
|
274 |
-
"выбранных типов контета."
|
275 |
-
|
276 |
-
#: ../includes/settings.php:383
|
277 |
-
msgid "Enter the time between single user visit count."
|
278 |
-
msgstr ""
|
279 |
-
"Задайте период времени между которами будет считаться просмотр одного "
|
280 |
-
"посетителя"
|
281 |
-
|
282 |
-
#: ../includes/settings.php:409
|
283 |
-
msgid ""
|
284 |
-
"Delete single day post views data older than specified above. Enter 0 "
|
285 |
-
"(number zero) if you want to preserve your data regardless of its age."
|
286 |
-
msgstr ""
|
287 |
-
"Сохранять данные о просмотрах за выбранный период. Введите 0 (ноль) если вы "
|
288 |
-
"хотите сохранять кол-во просмотров за все время."
|
289 |
-
|
290 |
-
#: ../includes/settings.php:435 ../includes/settings.php:614
|
291 |
-
msgid "Select user roles"
|
292 |
-
msgstr "Выберите роли пользователей"
|
293 |
-
|
294 |
-
#: ../includes/settings.php:447
|
295 |
-
msgid "Select the type of visitors to be excluded from post views count."
|
296 |
-
msgstr "Выберите посетителей, которые будут исключены из исчетчика"
|
297 |
-
|
298 |
-
#: ../includes/settings.php:466 ../includes/settings.php:475
|
299 |
-
msgid "Remove"
|
300 |
-
msgstr "Удалить"
|
301 |
-
|
302 |
-
#: ../includes/settings.php:475
|
303 |
-
msgid "Add new"
|
304 |
-
msgstr "Добавить новый"
|
305 |
-
|
306 |
-
#: ../includes/settings.php:475
|
307 |
-
msgid "Add my current IP"
|
308 |
-
msgstr "Добавить мой текущий IP"
|
309 |
-
|
310 |
-
#: ../includes/settings.php:477
|
311 |
-
msgid "Enter the IP addresses to be excluded from post views count."
|
312 |
-
msgstr "Введите IP-адреса которые должны быть исключены из счетчика просмотров"
|
313 |
-
|
314 |
-
#: ../includes/settings.php:491
|
315 |
-
msgid "Import"
|
316 |
-
msgstr "Импорт"
|
317 |
-
|
318 |
-
#: ../includes/settings.php:493
|
319 |
-
msgid "Import post views data from WP-PostViews plugin."
|
320 |
-
msgstr "Импорт данных из WP-PostViews плагина"
|
321 |
-
|
322 |
-
#: ../includes/settings.php:494
|
323 |
-
msgid "Override existing Post Views Counter data."
|
324 |
-
msgstr "Перезаписать текущие данные счетчика."
|
325 |
-
|
326 |
-
#: ../includes/settings.php:519
|
327 |
-
msgid "Enable to delete all plugin data on deactivation."
|
328 |
-
msgstr "Включите что бы удалить все данные при деактивации плагина"
|
329 |
-
|
330 |
-
#: ../includes/settings.php:544
|
331 |
-
msgid ""
|
332 |
-
"Select where would you like to display the post views counter. Use [post-"
|
333 |
-
"views] shortcode for manual display."
|
334 |
-
msgstr ""
|
335 |
-
"Выберите где вы хотите отобразить счетчик просмотров. Используйте [post-"
|
336 |
-
"views] шорткод для ручного отображения счечика"
|
337 |
-
|
338 |
-
#: ../includes/settings.php:569
|
339 |
-
msgid "Choose how to display the post views counter."
|
340 |
-
msgstr "Выберите как будет отображаться счетчик"
|
341 |
-
|
342 |
-
#: ../includes/settings.php:585
|
343 |
-
#, php-format
|
344 |
-
msgid ""
|
345 |
-
"Enter the post views icon class. Any of the <a href=\"%s\" target=\"_blank"
|
346 |
-
"\">Dashicons</a> classes are available."
|
347 |
-
msgstr ""
|
348 |
-
"Введите название иконки для отображения. Выберите любую из <a href=\"%s\" "
|
349 |
-
"target=\"_blank\"> Dashicons </ a>"
|
350 |
-
|
351 |
-
#: ../includes/settings.php:626
|
352 |
-
msgid "Use it to hide the post views counter from selected type of visitors."
|
353 |
-
msgstr "Используйте для скрытия счетчика от выбраных типов пользователей."
|
354 |
-
|
355 |
-
#: ../includes/settings.php:661
|
356 |
-
msgid "WP-PostViews data imported succesfully."
|
357 |
-
msgstr "Данные из WP-PostViews импортированы успешно."
|
358 |
-
|
359 |
-
#: ../includes/settings.php:665
|
360 |
-
msgid "There was no data to import."
|
361 |
-
msgstr "Отсутсвуют данные для импорта"
|
362 |
-
|
363 |
-
#: ../includes/settings.php:827
|
364 |
-
msgid "General settings restored to defaults."
|
365 |
-
msgstr "Основные настройки восстановлены по умолчанию."
|
366 |
-
|
367 |
-
#: ../includes/settings.php:833
|
368 |
-
msgid "Display settings restored to defaults."
|
369 |
-
msgstr "Настройки дисплея восстанавливается по умолчанию."
|
370 |
-
|
371 |
-
#: ../includes/settings.php:854
|
372 |
-
msgid "Support"
|
373 |
-
msgstr "Поддержка"
|
374 |
-
|
375 |
-
#: ../includes/widgets.php:38 ../includes/widgets.php:49
|
376 |
-
msgid "Most Viewed Posts"
|
377 |
-
msgstr "Самые популярные Сообщений"
|
378 |
-
|
379 |
-
#: ../includes/widgets.php:40
|
380 |
-
msgid "Displays a list of the most viewed posts"
|
381 |
-
msgstr "Отображает список самых просматриваемых сообщений"
|
382 |
-
|
383 |
-
#: ../includes/widgets.php:57
|
384 |
-
msgid "No Posts found"
|
385 |
-
msgstr "No Posts found"
|
386 |
-
|
387 |
-
#: ../includes/widgets.php:61
|
388 |
-
msgid "Ascending"
|
389 |
-
msgstr "По возрастанию"
|
390 |
-
|
391 |
-
#: ../includes/widgets.php:62
|
392 |
-
msgid "Descending"
|
393 |
-
msgstr "По убыванию"
|
394 |
-
|
395 |
-
#: ../includes/widgets.php:105
|
396 |
-
msgid "Title"
|
397 |
-
msgstr "Заголовок"
|
398 |
-
|
399 |
-
#: ../includes/widgets.php:109
|
400 |
-
msgid "Post types"
|
401 |
-
msgstr "Тип записей"
|
402 |
-
|
403 |
-
#: ../includes/widgets.php:123
|
404 |
-
msgid "Number of posts to show"
|
405 |
-
msgstr "Количество сообщений, чтобы показать"
|
406 |
-
|
407 |
-
#: ../includes/widgets.php:127
|
408 |
-
msgid "No posts message"
|
409 |
-
msgstr "Нет сообщений сообщение"
|
410 |
-
|
411 |
-
#: ../includes/widgets.php:131
|
412 |
-
msgid "Order"
|
413 |
-
msgstr "Order"
|
414 |
-
|
415 |
-
#: ../includes/widgets.php:144
|
416 |
-
msgid "Display post views?"
|
417 |
-
msgstr "Показать разместить просмотров?"
|
418 |
-
|
419 |
-
#: ../includes/widgets.php:146
|
420 |
-
msgid "Display post excerpt?"
|
421 |
-
msgstr "Показать сообщение отрывок?"
|
422 |
-
|
423 |
-
#: ../includes/widgets.php:148
|
424 |
-
msgid "Display post thumbnail?"
|
425 |
-
msgstr "Показать сообщение миниатюрами?"
|
426 |
-
|
427 |
-
#: ../includes/widgets.php:151
|
428 |
-
msgid "Thumbnail size"
|
429 |
-
msgstr "Размер миниатюры"
|
430 |
-
|
431 |
-
#: ../post-views-counter.php:251
|
432 |
-
msgid "Are you sure you want to reset these settings to defaults?"
|
433 |
-
msgstr ""
|
434 |
-
"Вы уверены, что хотите сбросить эти настройки на значения по умолчанию?"
|
435 |
-
|
436 |
-
#: ../post-views-counter.php:285
|
437 |
-
msgid "Settings"
|
438 |
-
msgstr "Настройки"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
post-views-counter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Post Views Counter
|
4 |
Description: Forget WP-PostViews. Display how many times a post, page or custom post type had been viewed in a simple, fast and reliable way.
|
5 |
-
Version: 1.2.
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/post-views-counter/
|
@@ -31,7 +31,7 @@ if ( ! class_exists( 'Post_Views_Counter' ) ) :
|
|
31 |
* Post Views Counter final class.
|
32 |
*
|
33 |
* @class Post_Views_Counter
|
34 |
-
* @version 1.2.
|
35 |
*/
|
36 |
final class Post_Views_Counter {
|
37 |
|
@@ -80,7 +80,7 @@ final class Post_Views_Counter {
|
|
80 |
'link_to_post' => true,
|
81 |
'icon_class' => 'dashicons-chart-bar'
|
82 |
),
|
83 |
-
'version' => '1.2.
|
84 |
);
|
85 |
|
86 |
/**
|
2 |
/*
|
3 |
Plugin Name: Post Views Counter
|
4 |
Description: Forget WP-PostViews. Display how many times a post, page or custom post type had been viewed in a simple, fast and reliable way.
|
5 |
+
Version: 1.2.2
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/post-views-counter/
|
31 |
* Post Views Counter final class.
|
32 |
*
|
33 |
* @class Post_Views_Counter
|
34 |
+
* @version 1.2.2
|
35 |
*/
|
36 |
final class Post_Views_Counter {
|
37 |
|
80 |
'link_to_post' => true,
|
81 |
'icon_class' => 'dashicons-chart-bar'
|
82 |
),
|
83 |
+
'version' => '1.2.2'
|
84 |
);
|
85 |
|
86 |
/**
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dfactory
|
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
Tags: counter, hits, postviews, post views, views, count
|
5 |
Requires at least: 4.0.0
|
6 |
-
Tested up to: 4.5
|
7 |
-
Stable tag: 1.2.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -36,16 +36,6 @@ For more information, check out plugin page at [dFactory](http://www.dfactory.eu
|
|
36 |
* WPML and Polylang compatible
|
37 |
* .pot file for translations included
|
38 |
|
39 |
-
= Translations: =
|
40 |
-
|
41 |
-
* Croation - by [Tomas Trkulja](http://zytzagoo.net/blog/)
|
42 |
-
* French - by[Theophil Bethel](http://reseau-chretien-gironde.fr/)
|
43 |
-
* Hebrew - by [Ahrale Shrem](http://atar4u.com/)
|
44 |
-
* Italian - by [Rene Querin](http://www.q-design.it)
|
45 |
-
* Polish - by Bartosz Arendt
|
46 |
-
* Russian - by moonkir
|
47 |
-
* Spanish - by [Carlos Rodriguez](http://cglevel.com/)
|
48 |
-
|
49 |
= Get involved =
|
50 |
|
51 |
Feel free to contribute to the source code on the [dFactory GitHub Repository](https://github.com/dfactoryplugins).
|
@@ -68,6 +58,10 @@ No questions yet.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
71 |
= 1.2.1 =
|
72 |
* New: Option to display post views on select page types
|
73 |
* Tweak: Dashboard widget query optimization
|
@@ -138,6 +132,6 @@ Initial release
|
|
138 |
|
139 |
== Upgrade Notice ==
|
140 |
|
141 |
-
= 1.2.
|
142 |
-
*
|
143 |
-
* Tweak:
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
Tags: counter, hits, postviews, post views, views, count
|
5 |
Requires at least: 4.0.0
|
6 |
+
Tested up to: 4.5.2
|
7 |
+
Stable tag: 1.2.2
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
36 |
* WPML and Polylang compatible
|
37 |
* .pot file for translations included
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
= Get involved =
|
40 |
|
41 |
Feel free to contribute to the source code on the [dFactory GitHub Repository](https://github.com/dfactoryplugins).
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 1.2.2 =
|
62 |
+
* Fix: Notice undefined variable: post_ids, thanks to [zytzagoo](https://github.com/zytzagoo)
|
63 |
+
* Tweak: Switched translation files storage, from local to WP repository
|
64 |
+
|
65 |
= 1.2.1 =
|
66 |
* New: Option to display post views on select page types
|
67 |
* Tweak: Dashboard widget query optimization
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
135 |
+
= 1.2.2 =
|
136 |
+
* Fix: Notice undefined variable: post_ids
|
137 |
+
* Tweak: Switched translation files storage, from local to WP repository
|