Version Description
(2014-02-06) = * Improvements on the "Manage Carousels" page * Logo and URL columns are added in the Logos overview * Bugfix: Ticker mode is glitching after hover
Download this release
Release Info
Developer | ysdbjorn |
Plugin | Logo Carousel |
Version | 1.5.0 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.5.0
- kiwi_logo_carousel.php +5 -4
- kiwi_logo_carousel_admin.php +68 -76
- kiwi_logo_carousel_order.php +1 -0
- languages/kiwi_logo_carousel-nl_NL.mo +0 -0
- languages/kiwi_logo_carousel-nl_NL.po +132 -79
- readme.txt +12 -9
kiwi_logo_carousel.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/* Plugin Name: Kiwi Logo Carousel
|
3 |
-
Plugin URL: http://
|
4 |
Description: Highlight your clients, partners and sponsors on your website in a Logo Carousel
|
5 |
-
Author: Kiwi
|
6 |
-
Version: 1.
|
7 |
-
Author URI: http://www.
|
8 |
License: GPLv2
|
9 |
*/
|
10 |
|
@@ -80,6 +80,7 @@ class kiwi_logo_carousel {
|
|
80 |
unset($parameters['klco_style']);
|
81 |
unset($parameters['klco_orderby']);
|
82 |
unset($parameters['klco_clickablelogos']);
|
|
|
83 |
$parameters['useCSS'] = 'false';
|
84 |
$lastkey = key( array_slice( $parameters, -1, 1, TRUE ) );
|
85 |
foreach ($parameters as $func => $var){
|
1 |
<?php
|
2 |
/* Plugin Name: Kiwi Logo Carousel
|
3 |
+
Plugin URL: http://getkiwi.org/plugins/logo-carousel/
|
4 |
Description: Highlight your clients, partners and sponsors on your website in a Logo Carousel
|
5 |
+
Author: Kiwi by Yourstyledesign
|
6 |
+
Version: 1.5.0
|
7 |
+
Author URI: http://www.getkiwi.org/
|
8 |
License: GPLv2
|
9 |
*/
|
10 |
|
80 |
unset($parameters['klco_style']);
|
81 |
unset($parameters['klco_orderby']);
|
82 |
unset($parameters['klco_clickablelogos']);
|
83 |
+
if ($parameters['ticker']==true){ $parameters['auto'] = false; }
|
84 |
$parameters['useCSS'] = 'false';
|
85 |
$lastkey = key( array_slice( $parameters, -1, 1, TRUE ) );
|
86 |
foreach ($parameters as $func => $var){
|
kiwi_logo_carousel_admin.php
CHANGED
@@ -13,6 +13,9 @@ class kiwi_logo_carousel_admin {
|
|
13 |
// Save Custom Data From Meta Boxes
|
14 |
add_action('save_post', array( &$this, "metabox_savedata" ));
|
15 |
|
|
|
|
|
|
|
16 |
}
|
17 |
|
18 |
// Returns the default specified when the input is empty
|
@@ -159,51 +162,35 @@ class kiwi_logo_carousel_admin {
|
|
159 |
// Save the custom metabox data
|
160 |
function metabox_savedata(){
|
161 |
|
162 |
-
$post_type
|
163 |
-
$post_id = null;
|
164 |
-
$link_field = null;
|
165 |
-
|
166 |
-
if( isset($_GET['post_type']) ) {
|
167 |
-
$post_type = $_GET['post_type'];
|
168 |
-
}
|
169 |
-
else if( isset($_POST['post_type']) ) {
|
170 |
-
$post_type = $_POST['post_type'];
|
171 |
-
}
|
172 |
-
if( isset($_GET['post_id']) ) {
|
173 |
-
$post_id = $_GET['post_id'];
|
174 |
-
}
|
175 |
-
else if( isset($_POST['post_id']) ) {
|
176 |
-
$post_id = $_POST['post_id'];
|
177 |
-
}
|
178 |
-
|
179 |
-
if( isset($_GET['kwlogos_link']) ) {
|
180 |
-
$link_field = $_GET['kwlogos_link'];
|
181 |
-
}
|
182 |
-
else if( isset($_POST['kwlogos_link']) ) {
|
183 |
-
$link_field = $_POST['kwlogos_link'];
|
184 |
-
}
|
185 |
-
|
186 |
-
if ( 'kwlogos' == $post_type ) {
|
187 |
-
if ( ! current_user_can( 'edit_posts') ){return;}
|
188 |
-
}
|
189 |
-
else {return;}
|
190 |
-
|
191 |
-
if (( !$post_type == null )&& ('kwlogos' == $post_type)) {
|
192 |
if ( ! current_user_can( 'edit_page', $post_id ) ){return;}
|
193 |
}
|
194 |
else {return;}
|
195 |
-
|
196 |
-
|
197 |
-
// At this point we have established that we are on a specific post type page and maybe have a specific post id
|
198 |
-
// and that the user is allowed to save it.
|
199 |
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ){ return $post_id; }
|
|
|
|
|
|
|
|
|
|
|
200 |
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
}
|
206 |
-
add_post_meta($post_id, '_kwlogos_link', $link_field, true) or update_post_meta($post_id, '_kwlogos_link', $link_field);
|
207 |
}
|
208 |
|
209 |
// Admin Page
|
@@ -268,29 +255,6 @@ class kiwi_logo_carousel_admin {
|
|
268 |
<div class="wrap">
|
269 |
<form method="POST">
|
270 |
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
271 |
-
<div class="inner-sidebar">
|
272 |
-
<div id="side-sortables" class="ui-sortable meta-box-sortable">
|
273 |
-
<div class="postbox">
|
274 |
-
<h3><span><?php _e('Carousel','kiwi_logo_carousel'); ?></span></h3>
|
275 |
-
<div class="inside">
|
276 |
-
<?php submit_button(); ?>
|
277 |
-
<p><?php _e('Shortcode','kiwi_logo_carousel'); ?>:<br/> <code>[logo-carousel id=<?php echo $carousel; ?>]</code></p>
|
278 |
-
<p><?php _e('PHP Function (No echo required)','kiwi_logo_carousel'); ?>:<br/> <code>kw_sc_logo_carousel(<?php echo $carousel; ?>);</code></p>
|
279 |
-
</div>
|
280 |
-
</div>
|
281 |
-
<div class="postbox">
|
282 |
-
<h3><span><?php _e('Donate','kiwi_logo_carousel'); ?></span></h3>
|
283 |
-
<div class="inside">
|
284 |
-
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
285 |
-
<input type="hidden" name="cmd" value="_s-xclick">
|
286 |
-
<input type="hidden" name="hosted_button_id" value="K5Z5PN2ZSBE2G">
|
287 |
-
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
288 |
-
<img alt="" border="0" src="https://www.paypalobjects.com/nl_NL/i/scr/pixel.gif" width="1" height="1">
|
289 |
-
</form>
|
290 |
-
</div>
|
291 |
-
</div>
|
292 |
-
</div>
|
293 |
-
</div>
|
294 |
<div id="post-body">
|
295 |
<div id="post-body-content">
|
296 |
<div id="normal-sortables" class="meta-box-sortables ui-sortable">
|
@@ -344,7 +308,7 @@ class kiwi_logo_carousel_admin {
|
|
344 |
<option value="rand" <?php if (isset($p['klco_orderby']) && $p['klco_orderby']=='rand'){echo 'selected';} ?>><?php _e('Random Order','kiwi_logo_carousel'); ?></option>
|
345 |
<option value="title" <?php if (isset($p['klco_orderby']) && $p['klco_orderby']=='title'){echo 'selected';} ?>><?php _e('Title','kiwi_logo_carousel'); ?></option>
|
346 |
<option value="date" <?php if (isset($p['klco_orderby']) && $p['klco_orderby']=='date'){echo 'selected';} ?>><?php _e('Date','kiwi_logo_carousel'); ?></option>
|
347 |
-
</select></td>
|
348 |
</tr>
|
349 |
<tr valign="top">
|
350 |
<th scope="row"><?php _e('Clickable logos','kiwi_logo_carousel'); ?></th>
|
@@ -352,7 +316,7 @@ class kiwi_logo_carousel_admin {
|
|
352 |
<option value="newtab" <?php if (isset($p['klco_clickablelogos']) && $p['klco_clickablelogos']=='newtab'){echo 'selected';} ?>><?php _e('Open in new tab','kiwi_logo_carousel'); ?></option>
|
353 |
<option value="samewindow" <?php if (isset($p['klco_clickablelogos']) && $p['klco_clickablelogos']=='samewindow'){echo 'selected';} ?>><?php _e('Open in the same window','kiwi_logo_carousel'); ?></option>
|
354 |
<option value="off" <?php if (isset($p['klco_clickablelogos']) && $p['klco_clickablelogos']=='off'){echo 'selected';} ?>><?php _e('Turn off','kiwi_logo_carousel'); ?></option>
|
355 |
-
</select></td>
|
356 |
</tr>
|
357 |
</table>
|
358 |
</div>
|
@@ -361,19 +325,19 @@ class kiwi_logo_carousel_admin {
|
|
361 |
<h3><span><?php _e('Controls','kiwi_logo_carousel'); ?></span></h3>
|
362 |
<div class="inside">
|
363 |
<table class="form-table">
|
364 |
-
<tr valign="top">
|
365 |
-
<th scope="row"><?php _e('Hide next button on last slide','kiwi_logo_carousel'); ?></th>
|
366 |
-
<td><select name="klc_hidecontrolonend">
|
367 |
-
<option value="false" <?php if (isset($p['hideControlOnEnd']) && $p['hideControlOnEnd']=='false'){echo 'selected';} ?>><?php _e('False','kiwi_logo_carousel'); ?></option>
|
368 |
-
<option value="true" <?php if (isset($p['hideControlOnEnd']) && $p['hideControlOnEnd']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
369 |
-
</select></td>
|
370 |
-
</tr>
|
371 |
<tr valign="top">
|
372 |
<th scope="row"><?php _e('Show Controls','kiwi_logo_carousel'); ?></th>
|
373 |
<td><select name="klc_controls">
|
374 |
<option value="true" <?php if (isset($p['controls']) && $p['controls']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
375 |
<option value="false" <?php if (isset($p['controls']) && $p['controls']=='false'){echo 'selected';} ?>><?php _e('False','kiwi_logo_carousel'); ?></option>
|
376 |
-
</select></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
</tr>
|
378 |
<tr valign="top">
|
379 |
<th scope="row"><?php _e('Show Pager','kiwi_logo_carousel'); ?></th>
|
@@ -382,13 +346,13 @@ class kiwi_logo_carousel_admin {
|
|
382 |
<option value="true" <?php if (isset($p['pager']) && $p['pager']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
383 |
</select></td>
|
384 |
</tr>
|
385 |
-
|
386 |
<th scope="row"><?php _e('Show Start and Stop Controls','kiwi_logo_carousel'); ?></th>
|
387 |
<td><select name="klc_autocontrols">
|
388 |
<option value="false" <?php if (isset($p['autoControls']) && $p['autoControls']=='false'){echo 'selected';} ?>><?php _e('False','kiwi_logo_carousel'); ?></option>
|
389 |
<option value="true" <?php if (isset($p['autoControls']) && $p['autoControls']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
390 |
</select></td>
|
391 |
-
</tr
|
392 |
</table>
|
393 |
</div>
|
394 |
</div>
|
@@ -406,7 +370,7 @@ class kiwi_logo_carousel_admin {
|
|
406 |
<option value="default" <?php if (isset($p['klco_style']) && $p['klco_style']=='default'){echo 'selected';} ?>><?php _e('Default','kiwi_logo_carousel'); ?></option>
|
407 |
<option value="gray" <?php if (isset($p['klco_style']) && $p['klco_style']=='gray'){echo 'selected';} ?>><?php _e('Grayscale Images','kiwi_logo_carousel'); ?></option>
|
408 |
<option value="grayhovercolor" <?php if (isset($p['klco_style']) && $p['klco_style']=='grayhovercolor'){echo 'selected';} ?>><?php _e('Grayscale Images, Default Color on Hover','kiwi_logo_carousel'); ?></option>
|
409 |
-
</select></td>
|
410 |
</tr>
|
411 |
<tr valign="top">
|
412 |
<th scope="row"><?php _e('Show captions','kiwi_logo_carousel'); ?></th>
|
@@ -451,8 +415,36 @@ class kiwi_logo_carousel_admin {
|
|
451 |
</div>
|
452 |
</div>
|
453 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
454 |
</div>
|
455 |
-
</form>
|
456 |
</div>
|
457 |
<?php
|
458 |
}
|
13 |
// Save Custom Data From Meta Boxes
|
14 |
add_action('save_post', array( &$this, "metabox_savedata" ));
|
15 |
|
16 |
+
add_filter('manage_kwlogos_posts_columns', array( &$this, 'overview_columns' ), 10);
|
17 |
+
add_action('manage_kwlogos_posts_custom_column', array( &$this, 'overview_columns_values' ), 10, 2);
|
18 |
+
|
19 |
}
|
20 |
|
21 |
// Returns the default specified when the input is empty
|
162 |
// Save the custom metabox data
|
163 |
function metabox_savedata(){
|
164 |
|
165 |
+
if ( 'kwlogos' == $_POST['post_type'] ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
if ( ! current_user_can( 'edit_page', $post_id ) ){return;}
|
167 |
}
|
168 |
else {return;}
|
|
|
|
|
|
|
|
|
169 |
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ){ return $post_id; }
|
170 |
+
$post_ID = $_POST['post_ID'];
|
171 |
+
$kwlogos_link = sanitize_text_field( $_POST['kwlogos_link'] );
|
172 |
+
add_post_meta($post_ID, '_kwlogos_link', $kwlogos_link, true) or update_post_meta($post_ID, '_kwlogos_link', $kwlogos_link);
|
173 |
+
|
174 |
+
}
|
175 |
|
176 |
+
// Custom columns in logo overview
|
177 |
+
function overview_columns($cols) {
|
178 |
+
$cols['url'] = __('URL','kiwi_logo_carousel');
|
179 |
+
$cols['logo'] = __('Logo Preview','kiwi_logo_carousel');
|
180 |
+
return $cols;
|
181 |
+
}
|
182 |
+
|
183 |
+
function overview_columns_values($column_name, $post_ID) {
|
184 |
+
if ($column_name == 'logo') {
|
185 |
+
$img_url = wp_get_attachment_url( get_post_thumbnail_id($post_ID) );
|
186 |
+
//$img_url = 'placeholder';
|
187 |
+
if ($img_url) { echo '<img height="50" src="'.$img_url.'" />'; }
|
188 |
+
else { _e('No logo set', 'kiwi_logo_carousel'); }
|
189 |
+
}
|
190 |
+
else if ($column_name == 'url') {
|
191 |
+
$value = get_post_meta( $post_ID, '_kwlogos_link', true );
|
192 |
+
if ($value) { echo $value; }
|
193 |
}
|
|
|
194 |
}
|
195 |
|
196 |
// Admin Page
|
255 |
<div class="wrap">
|
256 |
<form method="POST">
|
257 |
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
<div id="post-body">
|
259 |
<div id="post-body-content">
|
260 |
<div id="normal-sortables" class="meta-box-sortables ui-sortable">
|
308 |
<option value="rand" <?php if (isset($p['klco_orderby']) && $p['klco_orderby']=='rand'){echo 'selected';} ?>><?php _e('Random Order','kiwi_logo_carousel'); ?></option>
|
309 |
<option value="title" <?php if (isset($p['klco_orderby']) && $p['klco_orderby']=='title'){echo 'selected';} ?>><?php _e('Title','kiwi_logo_carousel'); ?></option>
|
310 |
<option value="date" <?php if (isset($p['klco_orderby']) && $p['klco_orderby']=='date'){echo 'selected';} ?>><?php _e('Date','kiwi_logo_carousel'); ?></option>
|
311 |
+
</select> <span class="description"></span></td>
|
312 |
</tr>
|
313 |
<tr valign="top">
|
314 |
<th scope="row"><?php _e('Clickable logos','kiwi_logo_carousel'); ?></th>
|
316 |
<option value="newtab" <?php if (isset($p['klco_clickablelogos']) && $p['klco_clickablelogos']=='newtab'){echo 'selected';} ?>><?php _e('Open in new tab','kiwi_logo_carousel'); ?></option>
|
317 |
<option value="samewindow" <?php if (isset($p['klco_clickablelogos']) && $p['klco_clickablelogos']=='samewindow'){echo 'selected';} ?>><?php _e('Open in the same window','kiwi_logo_carousel'); ?></option>
|
318 |
<option value="off" <?php if (isset($p['klco_clickablelogos']) && $p['klco_clickablelogos']=='off'){echo 'selected';} ?>><?php _e('Turn off','kiwi_logo_carousel'); ?></option>
|
319 |
+
</select> <span class="description"></span></td>
|
320 |
</tr>
|
321 |
</table>
|
322 |
</div>
|
325 |
<h3><span><?php _e('Controls','kiwi_logo_carousel'); ?></span></h3>
|
326 |
<div class="inside">
|
327 |
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
<tr valign="top">
|
329 |
<th scope="row"><?php _e('Show Controls','kiwi_logo_carousel'); ?></th>
|
330 |
<td><select name="klc_controls">
|
331 |
<option value="true" <?php if (isset($p['controls']) && $p['controls']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
332 |
<option value="false" <?php if (isset($p['controls']) && $p['controls']=='false'){echo 'selected';} ?>><?php _e('False','kiwi_logo_carousel'); ?></option>
|
333 |
+
</select> <span class="description"><?php _e('Controls are not available when Ticker Mode is enabled','kiwi_logo_carousel'); ?></span></td>
|
334 |
+
</tr>
|
335 |
+
<tr valign="top">
|
336 |
+
<th scope="row"><?php _e('Hide next button on last slide','kiwi_logo_carousel'); ?></th>
|
337 |
+
<td><select name="klc_hidecontrolonend">
|
338 |
+
<option value="false" <?php if (isset($p['hideControlOnEnd']) && $p['hideControlOnEnd']=='false'){echo 'selected';} ?>><?php _e('False','kiwi_logo_carousel'); ?></option>
|
339 |
+
<option value="true" <?php if (isset($p['hideControlOnEnd']) && $p['hideControlOnEnd']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
340 |
+
</select> <span class="description"><?php _e("Doesn't work when Infinite Loop is enabled",'kiwi_logo_carousel'); ?></span></td>
|
341 |
</tr>
|
342 |
<tr valign="top">
|
343 |
<th scope="row"><?php _e('Show Pager','kiwi_logo_carousel'); ?></th>
|
346 |
<option value="true" <?php if (isset($p['pager']) && $p['pager']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
347 |
</select></td>
|
348 |
</tr>
|
349 |
+
<!--<tr valign="top">
|
350 |
<th scope="row"><?php _e('Show Start and Stop Controls','kiwi_logo_carousel'); ?></th>
|
351 |
<td><select name="klc_autocontrols">
|
352 |
<option value="false" <?php if (isset($p['autoControls']) && $p['autoControls']=='false'){echo 'selected';} ?>><?php _e('False','kiwi_logo_carousel'); ?></option>
|
353 |
<option value="true" <?php if (isset($p['autoControls']) && $p['autoControls']=='true'){echo 'selected';} ?>><?php _e('True','kiwi_logo_carousel'); ?></option>
|
354 |
</select></td>
|
355 |
+
</tr>-->
|
356 |
</table>
|
357 |
</div>
|
358 |
</div>
|
370 |
<option value="default" <?php if (isset($p['klco_style']) && $p['klco_style']=='default'){echo 'selected';} ?>><?php _e('Default','kiwi_logo_carousel'); ?></option>
|
371 |
<option value="gray" <?php if (isset($p['klco_style']) && $p['klco_style']=='gray'){echo 'selected';} ?>><?php _e('Grayscale Images','kiwi_logo_carousel'); ?></option>
|
372 |
<option value="grayhovercolor" <?php if (isset($p['klco_style']) && $p['klco_style']=='grayhovercolor'){echo 'selected';} ?>><?php _e('Grayscale Images, Default Color on Hover','kiwi_logo_carousel'); ?></option>
|
373 |
+
</select> <span class="description"><?php _e("The grayscale feature is only available in modern browsers like Chrome, Firefox and Safari",'kiwi_logo_carousel'); ?></span></td>
|
374 |
</tr>
|
375 |
<tr valign="top">
|
376 |
<th scope="row"><?php _e('Show captions','kiwi_logo_carousel'); ?></th>
|
415 |
</div>
|
416 |
</div>
|
417 |
</div>
|
418 |
+
<div class="inner-sidebar">
|
419 |
+
<div id="side-sortables" class="ui-sortable meta-box-sortable">
|
420 |
+
<div class="postbox">
|
421 |
+
<h3><span><?php _e('Form actions','kiwi_logo_carousel'); ?></span></h3>
|
422 |
+
<div class="inside">
|
423 |
+
<?php submit_button(); ?>
|
424 |
+
</div>
|
425 |
+
</div>
|
426 |
+
<div class="postbox">
|
427 |
+
<h3><span><?php _e('Insert Carousel','kiwi_logo_carousel'); ?></span></h3>
|
428 |
+
<div class="inside">
|
429 |
+
<p><?php _e('Insert with shortcode','kiwi_logo_carousel'); ?>:<br/> <code>[logo-carousel id=<?php echo $carousel; ?>]</code></p>
|
430 |
+
<p><?php _e('Insert with PHP','kiwi_logo_carousel'); ?>:<br/> <code>kw_sc_logo_carousel('<?php echo $carousel; ?>');</code></p>
|
431 |
+
</div>
|
432 |
+
</div></form>
|
433 |
+
<div class="postbox">
|
434 |
+
<h3><span><?php _e('Do you like this plugin?','kiwi_logo_carousel', 'kiwi_logo_carousel'); ?></span></h3>
|
435 |
+
<div class="inside">
|
436 |
+
<p><?php echo _e('Please donate so this plugin can remain free!', 'kiwi_logo_carousel'); ?></p>
|
437 |
+
<form style="text-align:center; width:100%;" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
|
438 |
+
<input type="hidden" name="cmd" value="_s-xclick">
|
439 |
+
<input type="hidden" name="hosted_button_id" value="K5Z5PN2ZSBE2G">
|
440 |
+
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
441 |
+
<img alt="" border="0" src="https://www.paypalobjects.com/nl_NL/i/scr/pixel.gif" width="1" height="1">
|
442 |
+
</form>
|
443 |
+
</div>
|
444 |
+
</div>
|
445 |
+
</div>
|
446 |
+
</div>
|
447 |
</div>
|
|
|
448 |
</div>
|
449 |
<?php
|
450 |
}
|
kiwi_logo_carousel_order.php
CHANGED
@@ -192,6 +192,7 @@ class kiwi_logo_carousel_order {
|
|
192 |
|
193 |
public function sort_by_order_link( $views ) {
|
194 |
$class = ( get_query_var('orderby') == 'menu_order title' ) ? 'current' : '';
|
|
|
195 |
$query_string = remove_query_arg(array( 'orderby', 'order' ));
|
196 |
$query_string = add_query_arg( 'orderby', urlencode('menu_order title'), $query_string );
|
197 |
$views['byorder'] = '<a href="'. $query_string . '" class="' . $class . '">'.__('Custom Order','kiwi_logo_carousel').'</a>';
|
192 |
|
193 |
public function sort_by_order_link( $views ) {
|
194 |
$class = ( get_query_var('orderby') == 'menu_order title' ) ? 'current' : '';
|
195 |
+
if ($class == 'current') { echo '<div id="setting-error-settings_updated" class="updated settings-error below-h2"><p><strong>'.__('Drag and drop items to change the custom order','kiwi_logo_carousel').'</strong></p></div>'; }
|
196 |
$query_string = remove_query_arg(array( 'orderby', 'order' ));
|
197 |
$query_string = add_query_arg( 'orderby', urlencode('menu_order title'), $query_string );
|
198 |
$views['byorder'] = '<a href="'. $query_string . '" class="' . $class . '">'.__('Custom Order','kiwi_logo_carousel').'</a>';
|
languages/kiwi_logo_carousel-nl_NL.mo
CHANGED
Binary file
|
languages/kiwi_logo_carousel-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kiwi Logo Carousel\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Bjorn Manintveld <bjorn@yourstyledesign.nl>\n"
|
7 |
"Language-Team: Bjorn Manintveld <bjorn@yourstyledesign.nl>\n"
|
8 |
"Language: nl\n"
|
@@ -16,244 +16,297 @@ msgstr ""
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
-
#: ../kiwi_logo_carousel.php:
|
20 |
msgid "This carousel is empty, please add some logos."
|
21 |
msgstr "Deze carrousel is leeg, voeg eerst logo's toe."
|
22 |
|
23 |
-
#: ../kiwi_logo_carousel_admin.php:
|
24 |
msgid "Logos"
|
25 |
msgstr "Logo's"
|
26 |
|
27 |
-
#: ../kiwi_logo_carousel_admin.php:
|
28 |
msgid "Logo"
|
29 |
msgstr "Logo"
|
30 |
|
31 |
-
#: ../kiwi_logo_carousel_admin.php:
|
32 |
msgid "Add New Logo"
|
33 |
msgstr "Nieuw Logo"
|
34 |
|
35 |
-
#: ../kiwi_logo_carousel_admin.php:
|
36 |
msgid "Edit Logo"
|
37 |
msgstr "Logo Bewerken"
|
38 |
|
39 |
-
#: ../kiwi_logo_carousel_admin.php:
|
40 |
msgid "New Logo"
|
41 |
msgstr "Nieuw Logo"
|
42 |
|
43 |
-
#: ../kiwi_logo_carousel_admin.php:
|
44 |
msgid "View Logo"
|
45 |
msgstr "Bekijk Logo"
|
46 |
|
47 |
-
#: ../kiwi_logo_carousel_admin.php:
|
48 |
msgid "Search Logos"
|
49 |
msgstr "Zoeken in Logo's"
|
50 |
|
51 |
-
#: ../kiwi_logo_carousel_admin.php:
|
52 |
msgid "No Logos found"
|
53 |
msgstr "Geen logo's gevonden"
|
54 |
|
55 |
-
#: ../kiwi_logo_carousel_admin.php:
|
56 |
msgid "No Logos found in Trash"
|
57 |
msgstr "Geen logo's gevonden in de prullenbak"
|
58 |
|
59 |
-
#: ../kiwi_logo_carousel_admin.php:
|
60 |
msgid "Parent Logo:"
|
61 |
msgstr "Hoofd Logo:"
|
62 |
|
63 |
-
#: ../kiwi_logo_carousel_admin.php:
|
64 |
msgid "Carousels"
|
65 |
msgstr "Carrousels"
|
66 |
|
67 |
-
#: ../kiwi_logo_carousel_admin.php:
|
68 |
msgid "Default"
|
69 |
msgstr "Standaard"
|
70 |
|
71 |
-
#: ../kiwi_logo_carousel_admin.php:
|
72 |
msgid "URL attachment (optional)"
|
73 |
msgstr "Voeg een URL toe (optioneel)"
|
74 |
|
75 |
-
#: ../kiwi_logo_carousel_admin.php:
|
76 |
msgid "Add an URL to make this logo clickable"
|
77 |
msgstr "Voeg een URL toe om dit logo klikbaar te maken"
|
78 |
|
79 |
-
#: ../kiwi_logo_carousel_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
msgid "Manage Carousels"
|
81 |
msgstr "Beheer Carrousels"
|
82 |
|
83 |
-
#: ../kiwi_logo_carousel_admin.php:
|
84 |
msgid "Settings saved."
|
85 |
msgstr "Instellingen opgeslagen."
|
86 |
|
87 |
-
#: ../kiwi_logo_carousel_admin.php:
|
88 |
-
msgid "Carousel"
|
89 |
-
msgstr "Carrousel"
|
90 |
-
|
91 |
-
#: ../kiwi_logo_carousel_admin.php:239
|
92 |
-
msgid "Shortcode"
|
93 |
-
msgstr "Shortcode"
|
94 |
-
|
95 |
-
#: ../kiwi_logo_carousel_admin.php:240
|
96 |
-
msgid "PHP Function (No echo required)"
|
97 |
-
msgstr "PHP Functie (Geen echo vereist)"
|
98 |
-
|
99 |
-
#: ../kiwi_logo_carousel_admin.php:249
|
100 |
msgid "General"
|
101 |
msgstr "Algemeen"
|
102 |
|
103 |
-
#: ../kiwi_logo_carousel_admin.php:
|
104 |
msgid "Mode"
|
105 |
msgstr "Modus"
|
106 |
|
107 |
-
#: ../kiwi_logo_carousel_admin.php:
|
108 |
msgid "Horizontal"
|
109 |
msgstr "Horizontaal"
|
110 |
|
111 |
-
#: ../kiwi_logo_carousel_admin.php:
|
112 |
msgid "Vertical"
|
113 |
msgstr "Verticaal"
|
114 |
|
115 |
-
#: ../kiwi_logo_carousel_admin.php:
|
116 |
msgid "Speed (ms)"
|
117 |
msgstr "Snelheid (milliseconden)"
|
118 |
|
119 |
-
#: ../kiwi_logo_carousel_admin.php:
|
120 |
msgid "Infinite Loop"
|
121 |
msgstr "Oneindig"
|
122 |
|
123 |
-
#: ../kiwi_logo_carousel_admin.php:
|
124 |
-
#: ../kiwi_logo_carousel_admin.php:
|
125 |
-
#: ../kiwi_logo_carousel_admin.php:
|
126 |
-
#: ../kiwi_logo_carousel_admin.php:
|
127 |
-
#: ../kiwi_logo_carousel_admin.php:
|
128 |
-
#: ../kiwi_logo_carousel_admin.php:
|
129 |
msgid "True"
|
130 |
msgstr "Ja"
|
131 |
|
132 |
-
#: ../kiwi_logo_carousel_admin.php:267 ../kiwi_logo_carousel_admin.php:274
|
133 |
#: ../kiwi_logo_carousel_admin.php:280 ../kiwi_logo_carousel_admin.php:287
|
134 |
-
#: ../kiwi_logo_carousel_admin.php:
|
135 |
-
#: ../kiwi_logo_carousel_admin.php:332 ../kiwi_logo_carousel_admin.php:
|
136 |
-
#: ../kiwi_logo_carousel_admin.php:
|
137 |
-
#: ../kiwi_logo_carousel_admin.php:
|
|
|
138 |
msgid "False"
|
139 |
msgstr "Nee"
|
140 |
|
141 |
-
#: ../kiwi_logo_carousel_admin.php:
|
142 |
msgid "Autoplay"
|
143 |
msgstr "Automatisch afspelen"
|
144 |
|
145 |
-
#: ../kiwi_logo_carousel_admin.php:
|
146 |
msgid "Use Ticker Mode"
|
147 |
msgstr "Gebruik de Ticker Modus"
|
148 |
|
149 |
-
#: ../kiwi_logo_carousel_admin.php:
|
150 |
msgid "Pause Ticker on Hover"
|
151 |
msgstr "Pauzeer Ticker als de muis erop staat"
|
152 |
|
153 |
-
#: ../kiwi_logo_carousel_admin.php:
|
154 |
msgid "Order by"
|
155 |
msgstr "Volgorde"
|
156 |
|
157 |
-
#: ../kiwi_logo_carousel_admin.php:
|
158 |
msgid "Custom Order"
|
159 |
msgstr "Aangepaste Volgorde"
|
160 |
|
161 |
-
#: ../kiwi_logo_carousel_admin.php:
|
162 |
msgid "Random Order"
|
163 |
msgstr "Willekeurig"
|
164 |
|
165 |
-
#: ../kiwi_logo_carousel_admin.php:
|
166 |
msgid "Title"
|
167 |
msgstr "Titel"
|
168 |
|
169 |
-
#: ../kiwi_logo_carousel_admin.php:
|
170 |
msgid "Date"
|
171 |
msgstr "Datum"
|
172 |
|
173 |
-
#: ../kiwi_logo_carousel_admin.php:
|
174 |
msgid "Clickable logos"
|
175 |
msgstr "Klikbare logos"
|
176 |
|
177 |
-
#: ../kiwi_logo_carousel_admin.php:
|
178 |
msgid "Open in new tab"
|
179 |
msgstr "Openen in een nieuw tabblad"
|
180 |
|
181 |
-
#: ../kiwi_logo_carousel_admin.php:
|
182 |
msgid "Open in the same window"
|
183 |
msgstr "Openen in hetzelfde scherm"
|
184 |
|
185 |
-
#: ../kiwi_logo_carousel_admin.php:
|
186 |
msgid "Turn off"
|
187 |
msgstr "Uitschakelen"
|
188 |
|
189 |
-
#: ../kiwi_logo_carousel_admin.php:
|
190 |
msgid "Controls"
|
191 |
msgstr "Knoppen"
|
192 |
|
193 |
-
#: ../kiwi_logo_carousel_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
msgid "Hide next button on last slide"
|
195 |
msgstr "Verberg de \"Volgende\" knop op de laatste dia"
|
196 |
|
197 |
-
#: ../kiwi_logo_carousel_admin.php:
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
|
201 |
-
#: ../kiwi_logo_carousel_admin.php:
|
202 |
msgid "Show Pager"
|
203 |
msgstr "Laat pagina's zien"
|
204 |
|
205 |
-
#: ../kiwi_logo_carousel_admin.php:
|
206 |
msgid "Show Start and Stop Controls"
|
207 |
msgstr "Laat \"Start\" en \"Stop\" knoppen zien"
|
208 |
|
209 |
-
#: ../kiwi_logo_carousel_admin.php:
|
210 |
msgid "Styling"
|
211 |
msgstr "Stijl"
|
212 |
|
213 |
-
#: ../kiwi_logo_carousel_admin.php:
|
214 |
msgid "Logo Margin"
|
215 |
msgstr "Logo marges"
|
216 |
|
217 |
-
#: ../kiwi_logo_carousel_admin.php:
|
218 |
msgid "Logo Style"
|
219 |
msgstr "Logo stijl"
|
220 |
|
221 |
-
#: ../kiwi_logo_carousel_admin.php:
|
222 |
msgid "Grayscale Images"
|
223 |
msgstr "Afbeeldingen met grijstinten"
|
224 |
|
225 |
-
#: ../kiwi_logo_carousel_admin.php:
|
226 |
msgid "Grayscale Images, Default Color on Hover"
|
227 |
msgstr "Afbeeldingen met grijstinten, standaard kleuren als de muis erop staat"
|
228 |
|
229 |
-
#: ../kiwi_logo_carousel_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
msgid "Show captions"
|
231 |
msgstr "Laat titels zien"
|
232 |
|
233 |
-
#: ../kiwi_logo_carousel_admin.php:
|
234 |
msgid "Adaptive Height"
|
235 |
msgstr "Flexibele hoogte"
|
236 |
|
237 |
-
#: ../kiwi_logo_carousel_admin.php:
|
238 |
msgid "Responsive"
|
239 |
msgstr "Schaalbaar / Responsive"
|
240 |
|
241 |
-
#: ../kiwi_logo_carousel_admin.php:
|
242 |
msgid "Minimal slides"
|
243 |
msgstr "Minimaal aantal dia's"
|
244 |
|
245 |
-
#: ../kiwi_logo_carousel_admin.php:
|
246 |
msgid "Maximum slides"
|
247 |
msgstr "Maximum aantal dia's"
|
248 |
|
249 |
-
#: ../kiwi_logo_carousel_admin.php:
|
250 |
msgid "Move slides"
|
251 |
msgstr "Aantal dia's verplaatsen"
|
252 |
|
253 |
-
#: ../kiwi_logo_carousel_admin.php:
|
254 |
msgid "Slide Width"
|
255 |
msgstr "Dia breedte"
|
256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
#~ msgid "Use CSS animations"
|
258 |
#~ msgstr "Gebruik CSS animaties"
|
259 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kiwi Logo Carousel\n"
|
4 |
+
"POT-Creation-Date: 2014-02-06 13:43+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-06 13:44+0100\n"
|
6 |
"Last-Translator: Bjorn Manintveld <bjorn@yourstyledesign.nl>\n"
|
7 |
"Language-Team: Bjorn Manintveld <bjorn@yourstyledesign.nl>\n"
|
8 |
"Language: nl\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
+
#: ../kiwi_logo_carousel.php:124
|
20 |
msgid "This carousel is empty, please add some logos."
|
21 |
msgstr "Deze carrousel is leeg, voeg eerst logo's toe."
|
22 |
|
23 |
+
#: ../kiwi_logo_carousel_admin.php:40 ../kiwi_logo_carousel_admin.php:51
|
24 |
msgid "Logos"
|
25 |
msgstr "Logo's"
|
26 |
|
27 |
+
#: ../kiwi_logo_carousel_admin.php:41 ../kiwi_logo_carousel_admin.php:143
|
28 |
msgid "Logo"
|
29 |
msgstr "Logo"
|
30 |
|
31 |
+
#: ../kiwi_logo_carousel_admin.php:42 ../kiwi_logo_carousel_admin.php:43
|
32 |
msgid "Add New Logo"
|
33 |
msgstr "Nieuw Logo"
|
34 |
|
35 |
+
#: ../kiwi_logo_carousel_admin.php:44
|
36 |
msgid "Edit Logo"
|
37 |
msgstr "Logo Bewerken"
|
38 |
|
39 |
+
#: ../kiwi_logo_carousel_admin.php:45
|
40 |
msgid "New Logo"
|
41 |
msgstr "Nieuw Logo"
|
42 |
|
43 |
+
#: ../kiwi_logo_carousel_admin.php:46
|
44 |
msgid "View Logo"
|
45 |
msgstr "Bekijk Logo"
|
46 |
|
47 |
+
#: ../kiwi_logo_carousel_admin.php:47
|
48 |
msgid "Search Logos"
|
49 |
msgstr "Zoeken in Logo's"
|
50 |
|
51 |
+
#: ../kiwi_logo_carousel_admin.php:48
|
52 |
msgid "No Logos found"
|
53 |
msgstr "Geen logo's gevonden"
|
54 |
|
55 |
+
#: ../kiwi_logo_carousel_admin.php:49
|
56 |
msgid "No Logos found in Trash"
|
57 |
msgstr "Geen logo's gevonden in de prullenbak"
|
58 |
|
59 |
+
#: ../kiwi_logo_carousel_admin.php:50
|
60 |
msgid "Parent Logo:"
|
61 |
msgstr "Hoofd Logo:"
|
62 |
|
63 |
+
#: ../kiwi_logo_carousel_admin.php:105
|
64 |
msgid "Carousels"
|
65 |
msgstr "Carrousels"
|
66 |
|
67 |
+
#: ../kiwi_logo_carousel_admin.php:133 ../kiwi_logo_carousel_admin.php:370
|
68 |
msgid "Default"
|
69 |
msgstr "Standaard"
|
70 |
|
71 |
+
#: ../kiwi_logo_carousel_admin.php:149
|
72 |
msgid "URL attachment (optional)"
|
73 |
msgstr "Voeg een URL toe (optioneel)"
|
74 |
|
75 |
+
#: ../kiwi_logo_carousel_admin.php:156
|
76 |
msgid "Add an URL to make this logo clickable"
|
77 |
msgstr "Voeg een URL toe om dit logo klikbaar te maken"
|
78 |
|
79 |
+
#: ../kiwi_logo_carousel_admin.php:178
|
80 |
+
msgid "URL"
|
81 |
+
msgstr "URL"
|
82 |
+
|
83 |
+
#: ../kiwi_logo_carousel_admin.php:179
|
84 |
+
msgid "Logo Preview"
|
85 |
+
msgstr "Logo voorbeeld"
|
86 |
+
|
87 |
+
#: ../kiwi_logo_carousel_admin.php:188
|
88 |
+
msgid "No logo set"
|
89 |
+
msgstr "Geen logo ingesteld"
|
90 |
+
|
91 |
+
#: ../kiwi_logo_carousel_admin.php:200 ../kiwi_logo_carousel_admin.php:201
|
92 |
msgid "Manage Carousels"
|
93 |
msgstr "Beheer Carrousels"
|
94 |
|
95 |
+
#: ../kiwi_logo_carousel_admin.php:244
|
96 |
msgid "Settings saved."
|
97 |
msgstr "Instellingen opgeslagen."
|
98 |
|
99 |
+
#: ../kiwi_logo_carousel_admin.php:262
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
msgid "General"
|
101 |
msgstr "Algemeen"
|
102 |
|
103 |
+
#: ../kiwi_logo_carousel_admin.php:266
|
104 |
msgid "Mode"
|
105 |
msgstr "Modus"
|
106 |
|
107 |
+
#: ../kiwi_logo_carousel_admin.php:268
|
108 |
msgid "Horizontal"
|
109 |
msgstr "Horizontaal"
|
110 |
|
111 |
+
#: ../kiwi_logo_carousel_admin.php:269
|
112 |
msgid "Vertical"
|
113 |
msgstr "Verticaal"
|
114 |
|
115 |
+
#: ../kiwi_logo_carousel_admin.php:273
|
116 |
msgid "Speed (ms)"
|
117 |
msgstr "Snelheid (milliseconden)"
|
118 |
|
119 |
+
#: ../kiwi_logo_carousel_admin.php:277
|
120 |
msgid "Infinite Loop"
|
121 |
msgstr "Oneindig"
|
122 |
|
123 |
+
#: ../kiwi_logo_carousel_admin.php:279 ../kiwi_logo_carousel_admin.php:286
|
124 |
+
#: ../kiwi_logo_carousel_admin.php:294 ../kiwi_logo_carousel_admin.php:301
|
125 |
+
#: ../kiwi_logo_carousel_admin.php:331 ../kiwi_logo_carousel_admin.php:339
|
126 |
+
#: ../kiwi_logo_carousel_admin.php:346 ../kiwi_logo_carousel_admin.php:353
|
127 |
+
#: ../kiwi_logo_carousel_admin.php:379 ../kiwi_logo_carousel_admin.php:386
|
128 |
+
#: ../kiwi_logo_carousel_admin.php:392
|
129 |
msgid "True"
|
130 |
msgstr "Ja"
|
131 |
|
|
|
132 |
#: ../kiwi_logo_carousel_admin.php:280 ../kiwi_logo_carousel_admin.php:287
|
133 |
+
#: ../kiwi_logo_carousel_admin.php:293 ../kiwi_logo_carousel_admin.php:300
|
134 |
+
#: ../kiwi_logo_carousel_admin.php:332 ../kiwi_logo_carousel_admin.php:338
|
135 |
+
#: ../kiwi_logo_carousel_admin.php:345 ../kiwi_logo_carousel_admin.php:352
|
136 |
+
#: ../kiwi_logo_carousel_admin.php:378 ../kiwi_logo_carousel_admin.php:385
|
137 |
+
#: ../kiwi_logo_carousel_admin.php:393
|
138 |
msgid "False"
|
139 |
msgstr "Nee"
|
140 |
|
141 |
+
#: ../kiwi_logo_carousel_admin.php:284
|
142 |
msgid "Autoplay"
|
143 |
msgstr "Automatisch afspelen"
|
144 |
|
145 |
+
#: ../kiwi_logo_carousel_admin.php:291
|
146 |
msgid "Use Ticker Mode"
|
147 |
msgstr "Gebruik de Ticker Modus"
|
148 |
|
149 |
+
#: ../kiwi_logo_carousel_admin.php:298
|
150 |
msgid "Pause Ticker on Hover"
|
151 |
msgstr "Pauzeer Ticker als de muis erop staat"
|
152 |
|
153 |
+
#: ../kiwi_logo_carousel_admin.php:305
|
154 |
msgid "Order by"
|
155 |
msgstr "Volgorde"
|
156 |
|
157 |
+
#: ../kiwi_logo_carousel_admin.php:307 ../kiwi_logo_carousel_order.php:198
|
158 |
msgid "Custom Order"
|
159 |
msgstr "Aangepaste Volgorde"
|
160 |
|
161 |
+
#: ../kiwi_logo_carousel_admin.php:308
|
162 |
msgid "Random Order"
|
163 |
msgstr "Willekeurig"
|
164 |
|
165 |
+
#: ../kiwi_logo_carousel_admin.php:309
|
166 |
msgid "Title"
|
167 |
msgstr "Titel"
|
168 |
|
169 |
+
#: ../kiwi_logo_carousel_admin.php:310
|
170 |
msgid "Date"
|
171 |
msgstr "Datum"
|
172 |
|
173 |
+
#: ../kiwi_logo_carousel_admin.php:314
|
174 |
msgid "Clickable logos"
|
175 |
msgstr "Klikbare logos"
|
176 |
|
177 |
+
#: ../kiwi_logo_carousel_admin.php:316
|
178 |
msgid "Open in new tab"
|
179 |
msgstr "Openen in een nieuw tabblad"
|
180 |
|
181 |
+
#: ../kiwi_logo_carousel_admin.php:317
|
182 |
msgid "Open in the same window"
|
183 |
msgstr "Openen in hetzelfde scherm"
|
184 |
|
185 |
+
#: ../kiwi_logo_carousel_admin.php:318
|
186 |
msgid "Turn off"
|
187 |
msgstr "Uitschakelen"
|
188 |
|
189 |
+
#: ../kiwi_logo_carousel_admin.php:325
|
190 |
msgid "Controls"
|
191 |
msgstr "Knoppen"
|
192 |
|
193 |
+
#: ../kiwi_logo_carousel_admin.php:329
|
194 |
+
msgid "Show Controls"
|
195 |
+
msgstr "Laat \"Vorige\" en \"Volgende\" knoppen zien"
|
196 |
+
|
197 |
+
#: ../kiwi_logo_carousel_admin.php:333
|
198 |
+
msgid "Controls are not available when Ticker Mode is enabled"
|
199 |
+
msgstr "De knoppen worden niet weergeven in de Ticker Modus"
|
200 |
+
|
201 |
+
#: ../kiwi_logo_carousel_admin.php:336
|
202 |
msgid "Hide next button on last slide"
|
203 |
msgstr "Verberg de \"Volgende\" knop op de laatste dia"
|
204 |
|
205 |
+
#: ../kiwi_logo_carousel_admin.php:340
|
206 |
+
msgid "Doesn't work when Infinite Loop is enabled"
|
207 |
+
msgstr "Werkt niet wanneer de carrousel oneindig is"
|
208 |
|
209 |
+
#: ../kiwi_logo_carousel_admin.php:343
|
210 |
msgid "Show Pager"
|
211 |
msgstr "Laat pagina's zien"
|
212 |
|
213 |
+
#: ../kiwi_logo_carousel_admin.php:350
|
214 |
msgid "Show Start and Stop Controls"
|
215 |
msgstr "Laat \"Start\" en \"Stop\" knoppen zien"
|
216 |
|
217 |
+
#: ../kiwi_logo_carousel_admin.php:360
|
218 |
msgid "Styling"
|
219 |
msgstr "Stijl"
|
220 |
|
221 |
+
#: ../kiwi_logo_carousel_admin.php:364
|
222 |
msgid "Logo Margin"
|
223 |
msgstr "Logo marges"
|
224 |
|
225 |
+
#: ../kiwi_logo_carousel_admin.php:368
|
226 |
msgid "Logo Style"
|
227 |
msgstr "Logo stijl"
|
228 |
|
229 |
+
#: ../kiwi_logo_carousel_admin.php:371
|
230 |
msgid "Grayscale Images"
|
231 |
msgstr "Afbeeldingen met grijstinten"
|
232 |
|
233 |
+
#: ../kiwi_logo_carousel_admin.php:372
|
234 |
msgid "Grayscale Images, Default Color on Hover"
|
235 |
msgstr "Afbeeldingen met grijstinten, standaard kleuren als de muis erop staat"
|
236 |
|
237 |
+
#: ../kiwi_logo_carousel_admin.php:373
|
238 |
+
msgid ""
|
239 |
+
"The grayscale feature is only available in modern browsers like Chrome, "
|
240 |
+
"Firefox and Safari"
|
241 |
+
msgstr ""
|
242 |
+
"De grijstinten optie werkt alleen in moderne browsers zoals Chrome, Firefox "
|
243 |
+
"en Safari"
|
244 |
+
|
245 |
+
#: ../kiwi_logo_carousel_admin.php:376
|
246 |
msgid "Show captions"
|
247 |
msgstr "Laat titels zien"
|
248 |
|
249 |
+
#: ../kiwi_logo_carousel_admin.php:383
|
250 |
msgid "Adaptive Height"
|
251 |
msgstr "Flexibele hoogte"
|
252 |
|
253 |
+
#: ../kiwi_logo_carousel_admin.php:390
|
254 |
msgid "Responsive"
|
255 |
msgstr "Schaalbaar / Responsive"
|
256 |
|
257 |
+
#: ../kiwi_logo_carousel_admin.php:397
|
258 |
msgid "Minimal slides"
|
259 |
msgstr "Minimaal aantal dia's"
|
260 |
|
261 |
+
#: ../kiwi_logo_carousel_admin.php:401
|
262 |
msgid "Maximum slides"
|
263 |
msgstr "Maximum aantal dia's"
|
264 |
|
265 |
+
#: ../kiwi_logo_carousel_admin.php:405
|
266 |
msgid "Move slides"
|
267 |
msgstr "Aantal dia's verplaatsen"
|
268 |
|
269 |
+
#: ../kiwi_logo_carousel_admin.php:409
|
270 |
msgid "Slide Width"
|
271 |
msgstr "Dia breedte"
|
272 |
|
273 |
+
#: ../kiwi_logo_carousel_admin.php:421
|
274 |
+
msgid "Form actions"
|
275 |
+
msgstr "Acties"
|
276 |
+
|
277 |
+
#: ../kiwi_logo_carousel_admin.php:427
|
278 |
+
msgid "Insert Carousel"
|
279 |
+
msgstr "Carrousel invoegen"
|
280 |
+
|
281 |
+
#: ../kiwi_logo_carousel_admin.php:429
|
282 |
+
msgid "Insert with shortcode"
|
283 |
+
msgstr "Invoegen met een shortcode"
|
284 |
+
|
285 |
+
#: ../kiwi_logo_carousel_admin.php:430
|
286 |
+
msgid "Insert with PHP"
|
287 |
+
msgstr "Invoegen met PHP"
|
288 |
+
|
289 |
+
#: ../kiwi_logo_carousel_admin.php:434
|
290 |
+
msgid "Do you like this plugin?"
|
291 |
+
msgstr "Bent u tevreden met deze plugin?"
|
292 |
+
|
293 |
+
#: ../kiwi_logo_carousel_admin.php:436
|
294 |
+
msgid "Please donate so this plugin can remain free!"
|
295 |
+
msgstr "Dankzij uw donaties kan deze plugin gratis blijven."
|
296 |
+
|
297 |
+
#: ../kiwi_logo_carousel_order.php:195
|
298 |
+
msgid "Drag and drop items to change the custom order"
|
299 |
+
msgstr "Je kunt items verslepen om de aangepaste volgorde te wijzigen"
|
300 |
+
|
301 |
+
#~ msgid "Carousel"
|
302 |
+
#~ msgstr "Carrousel"
|
303 |
+
|
304 |
+
#~ msgid "Shortcode"
|
305 |
+
#~ msgstr "Shortcode"
|
306 |
+
|
307 |
+
#~ msgid "PHP Function (No echo required)"
|
308 |
+
#~ msgstr "PHP Functie (Geen echo vereist)"
|
309 |
+
|
310 |
#~ msgid "Use CSS animations"
|
311 |
#~ msgstr "Gebruik CSS animaties"
|
312 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: ysdbjorn
|
3 |
Donate link: http://getkiwi.org/donate/
|
4 |
-
Tags: logo, slider, carousel
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 3.8.1
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -48,13 +48,8 @@ Because the slug 'default' is already used for displaying all the logos.
|
|
48 |
We tested this plugin with: Internet Explorer 8, 9, 10; Chrome; Safari; Firefox; Opera;
|
49 |
|
50 |
= What are the server requirements? =
|
51 |
-
|
52 |
You need a server running PHP version 5.4 or newer. Older versions are not supported and may cause problems.
|
53 |
|
54 |
-
= The slider is not displayed well =
|
55 |
-
|
56 |
-
Some CSS styles in themes may cause problems. Debug your CSS if you have any problems. The developer tools in Chrome or Firefox are a good tool for that. You can also try the Firebug extension for Firefox.
|
57 |
-
|
58 |
== Screenshots ==
|
59 |
|
60 |
1. The Logo Carousel in action
|
@@ -65,8 +60,16 @@ Some CSS styles in themes may cause problems. Debug your CSS if you have any pro
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
= 1.4.3 (2014-01-27) =
|
69 |
-
*
|
70 |
|
71 |
= 1.4.2 (2014-01-23) =
|
72 |
* Some little improvements
|
@@ -75,7 +78,7 @@ Some CSS styles in themes may cause problems. Debug your CSS if you have any pro
|
|
75 |
* Some changes in the Dutch translation file
|
76 |
|
77 |
= 1.4.0 (2014-01-10) =
|
78 |
-
* Bugfix: Ticker Mode glitch when the loop
|
79 |
* Bugfix: Pause on hover in Ticker Mode does not work
|
80 |
* Improvement: Next & Previous controls are now suitable for retina displays.
|
81 |
* Added Autoplay option. Turned on by default.
|
1 |
=== Plugin Name ===
|
2 |
Contributors: ysdbjorn
|
3 |
Donate link: http://getkiwi.org/donate/
|
4 |
+
Tags: logo, slider, carousel, ticker
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 3.8.1
|
7 |
+
Stable tag: 1.5.0
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
48 |
We tested this plugin with: Internet Explorer 8, 9, 10; Chrome; Safari; Firefox; Opera;
|
49 |
|
50 |
= What are the server requirements? =
|
|
|
51 |
You need a server running PHP version 5.4 or newer. Older versions are not supported and may cause problems.
|
52 |
|
|
|
|
|
|
|
|
|
53 |
== Screenshots ==
|
54 |
|
55 |
1. The Logo Carousel in action
|
60 |
|
61 |
== Changelog ==
|
62 |
|
63 |
+
= 1.5.0 (2014-02-06) =
|
64 |
+
* Improvements on the "Manage Carousels" page
|
65 |
+
* Logo and URL columns are added in the Logos overview
|
66 |
+
* Bugfix: Ticker mode is glitching after hover
|
67 |
+
|
68 |
+
= 1.4.4 (2014-01-30) =
|
69 |
+
* Reversed some changes from last update, because of a bug
|
70 |
+
|
71 |
= 1.4.3 (2014-01-27) =
|
72 |
+
* Some little improvements
|
73 |
|
74 |
= 1.4.2 (2014-01-23) =
|
75 |
* Some little improvements
|
78 |
* Some changes in the Dutch translation file
|
79 |
|
80 |
= 1.4.0 (2014-01-10) =
|
81 |
+
* Bugfix: Ticker Mode glitch when the loop start over
|
82 |
* Bugfix: Pause on hover in Ticker Mode does not work
|
83 |
* Improvement: Next & Previous controls are now suitable for retina displays.
|
84 |
* Added Autoplay option. Turned on by default.
|