Version Description
- 21/06/2016 = Added: new option for List Added: new option for Flip Box ( Diretion:flip top/left/bottom/right; slide top/left/bottom/right ) Added: new option for Custom Box ( Fixed Background ,Background Position ) Added: new option for Accordion Item ( icon, status ) Added: new option for Icon ( data-open/data-close ) Added: new option for Highlight ( font color ) Added: new option for Image Compare ( style, percent ) Added: new option for Piechart ( line cap ) Added: new option for Progress ( style ) Added: new option for Column ( align ) Improved shortcode Counter
Download this release
Release Info
Developer | magictheme |
Plugin | Magee Shortcodes |
Version | 1.5.7 |
Comparing to | |
See all releases |
Code changes from version 1.5.6 to 1.5.7
- Magee.php +2 -2
- assets/css/admin.css +7 -0
- assets/css/shortcode.css +168 -2
- assets/js/admin.js +5 -24
- inc/core.php +25 -2
- inc/options.php +256 -177
- languages/magee-shortcodes.mo +0 -0
- languages/magee-shortcodes.pot +1461 -1090
- readme.txt +13 -0
- shortcodes/class-accordion.php +4 -8
- shortcodes/class-column.php +2 -1
- shortcodes/class-counter.php +57 -16
- shortcodes/class-custom-box.php +8 -2
- shortcodes/class-flip-box.php +3 -1
- shortcodes/class-highlight.php +3 -2
- shortcodes/class-image-compare.php +3 -1
- shortcodes/class-piechart.php +3 -2
- shortcodes/class-progress.php +13 -6
- shortcodes/class-vimeo.php +2 -5
- shortcodes/class-youtube.php +4 -5
Magee.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: http://www.mageewp.com/magee-shortcode.html
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
-
Version: 1.5.
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) return;
|
|
14 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
15 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
16 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
17 |
-
define( 'MAGEE_SHORTCODES_VER', '1.5.
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
//require_once 'inc/options.php';
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: http://www.mageewp.com/magee-shortcode.html
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
+
Version: 1.5.7
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
14 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
15 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
16 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
17 |
+
define( 'MAGEE_SHORTCODES_VER', '1.5.7' );
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
//require_once 'inc/options.php';
|
assets/css/admin.css
CHANGED
@@ -569,3 +569,10 @@ max-width:100%;
|
|
569 |
top: 0;
|
570 |
right: 230px;
|
571 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
top: 0;
|
570 |
right: 230px;
|
571 |
}
|
572 |
+
.magee-add-point{
|
573 |
+
background-color: #FFFBE5;
|
574 |
+
color: #B5A96C;
|
575 |
+
padding: 10px;
|
576 |
+
border-left: 3px solid #A59649;
|
577 |
+
margin-bottom:10px;
|
578 |
+
}
|
assets/css/shortcode.css
CHANGED
@@ -1110,7 +1110,6 @@ a.magee-btn-normal:hover {
|
|
1110 |
.magee-panel {
|
1111 |
border-radius: 0;
|
1112 |
box-shadow: none;
|
1113 |
-
overflow:hidden;
|
1114 |
}
|
1115 |
|
1116 |
.panel-primary {
|
@@ -1622,7 +1621,7 @@ button.close:active {
|
|
1622 |
}
|
1623 |
|
1624 |
.progress.rounded {
|
1625 |
-
border-radius: 5px
|
1626 |
}
|
1627 |
|
1628 |
.progress.rounded .progress-bar {
|
@@ -3406,6 +3405,173 @@ ol.multi-carousel-indicators {
|
|
3406 |
padding: 15px;
|
3407 |
}
|
3408 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3409 |
/*
|
3410 |
* 27.0 Font Awesome Icons
|
3411 |
*/
|
1110 |
.magee-panel {
|
1111 |
border-radius: 0;
|
1112 |
box-shadow: none;
|
|
|
1113 |
}
|
1114 |
|
1115 |
.panel-primary {
|
1621 |
}
|
1622 |
|
1623 |
.progress.rounded {
|
1624 |
+
border-radius: 5px;
|
1625 |
}
|
1626 |
|
1627 |
.progress.rounded .progress-bar {
|
3405 |
padding: 15px;
|
3406 |
}
|
3407 |
|
3408 |
+
.magee-flipbox-wrap.slide-left:hover .flipbox-front{
|
3409 |
+
-webkit-transform: translateX(0);
|
3410 |
+
transform: translateX(0);
|
3411 |
+
opacity:0;
|
3412 |
+
}
|
3413 |
+
|
3414 |
+
.magee-flipbox-wrap.slide-left .flipbox-back {
|
3415 |
+
-webkit-transform: translateX(-50%);
|
3416 |
+
transform: translateX(-50%);
|
3417 |
+
opacity: 0;
|
3418 |
+
}
|
3419 |
+
|
3420 |
+
.magee-flipbox-wrap.slide-left:hover .flipbox-back{
|
3421 |
+
-webkit-transform: translateX(0);
|
3422 |
+
transform: translateX(0);
|
3423 |
+
opacity: 1;
|
3424 |
+
}
|
3425 |
+
|
3426 |
+
.magee-flipbox-wrap.slide-right:hover .flipbox-front{
|
3427 |
+
-webkit-transform: translateX(0);
|
3428 |
+
transform: translateX(0);
|
3429 |
+
opacity:0;
|
3430 |
+
}
|
3431 |
+
|
3432 |
+
.magee-flipbox-wrap.slide-right .flipbox-back {
|
3433 |
+
-webkit-transform: translateX(50%);
|
3434 |
+
transform: translateX(50%);
|
3435 |
+
opacity: 0;
|
3436 |
+
}
|
3437 |
+
|
3438 |
+
.magee-flipbox-wrap.slide-right:hover .flipbox-back{
|
3439 |
+
-webkit-transform: translateX(0);
|
3440 |
+
transform: translateX(0);
|
3441 |
+
opacity: 1;
|
3442 |
+
}
|
3443 |
+
|
3444 |
+
.magee-flipbox-wrap.slide-top:hover .flipbox-front{
|
3445 |
+
-webkit-transform: translateY(0);
|
3446 |
+
transform: translateY(0);
|
3447 |
+
opacity:0;
|
3448 |
+
}
|
3449 |
+
|
3450 |
+
.magee-flipbox-wrap.slide-top .flipbox-back {
|
3451 |
+
-webkit-transform: translateY(-50%);
|
3452 |
+
transform: translateY(-50%);
|
3453 |
+
opacity: 0;
|
3454 |
+
}
|
3455 |
+
|
3456 |
+
.magee-flipbox-wrap.slide-top:hover .flipbox-back{
|
3457 |
+
-webkit-transform: translateY(0);
|
3458 |
+
transform: translateY(0);
|
3459 |
+
opacity: 1;
|
3460 |
+
}
|
3461 |
+
|
3462 |
+
.magee-flipbox-wrap.slide-bottom:hover .flipbox-front{
|
3463 |
+
-webkit-transform: translateY(0);
|
3464 |
+
transform: translateY(0);
|
3465 |
+
opacity:0;
|
3466 |
+
}
|
3467 |
+
|
3468 |
+
.magee-flipbox-wrap.slide-bottom .flipbox-back {
|
3469 |
+
-webkit-transform: translateY(50%);
|
3470 |
+
transform: translateY(50%);
|
3471 |
+
opacity: 0;
|
3472 |
+
}
|
3473 |
+
|
3474 |
+
.magee-flipbox-wrap.slide-bottom:hover .flipbox-back{
|
3475 |
+
-webkit-transform: translateY(0);
|
3476 |
+
transform: translateY(0);
|
3477 |
+
opacity: 1;
|
3478 |
+
}
|
3479 |
+
|
3480 |
+
.magee-flipbox-wrap.flip-bottom .flipbox-back {
|
3481 |
+
-webkit-transform-origin: 0% 100%;
|
3482 |
+
-moz-transform-origin: 0% 100%;
|
3483 |
+
-ms-transform-origin: 0% 100%;
|
3484 |
+
-o-transform-origin: 0% 100%;
|
3485 |
+
transform-origin: 0% 100%;
|
3486 |
+
-webkit-transform: rotateX(-270deg);
|
3487 |
+
-moz-transform: rotateX(-270deg);
|
3488 |
+
-ms-transform: rotateX(-270deg);
|
3489 |
+
-o-transform: rotateX(-270deg);
|
3490 |
+
transform: rotateX(-270deg);
|
3491 |
+
-webkit-backface-visibility: visible;
|
3492 |
+
-moz-backface-visibility: visible;
|
3493 |
+
-o-backface-visibility: visible;
|
3494 |
+
backface-visibility: visible;
|
3495 |
+
}
|
3496 |
+
.magee-flipbox-wrap.flip-bottom:hover .flipbox-back{
|
3497 |
+
-webkit-transform: rotateX(0deg);
|
3498 |
+
-moz-transform: rotateX(0deg);
|
3499 |
+
-ms-transform: rotateX(0deg);
|
3500 |
+
-o-transform: rotateX(0deg);
|
3501 |
+
transform: rotateX(0deg);
|
3502 |
+
}
|
3503 |
+
|
3504 |
+
.magee-flipbox-wrap.flip-top .flipbox-back {
|
3505 |
+
-webkit-transform-origin: 0% 0%;
|
3506 |
+
-moz-transform-origin: 0% 0%;
|
3507 |
+
-ms-transform-origin: 0% 0%;
|
3508 |
+
-o-transform-origin: 0% 0%;
|
3509 |
+
transform-origin: 0% 0%;
|
3510 |
+
-webkit-transform: rotateX(270deg);
|
3511 |
+
-moz-transform: rotateX(270deg) ;
|
3512 |
+
-ms-transform: rotateX(270deg) ;
|
3513 |
+
-o-transform: rotateX(270deg) ;
|
3514 |
+
transform: rotateX(270deg) ;
|
3515 |
+
-webkit-backface-visibility: visible;
|
3516 |
+
-moz-backface-visibility: visible;
|
3517 |
+
-o-backface-visibility: visible;
|
3518 |
+
backface-visibility: visible;
|
3519 |
+
}
|
3520 |
+
.magee-flipbox-wrap.flip-top:hover .flipbox-back{
|
3521 |
+
-webkit-transform: rotateX(0deg) ;
|
3522 |
+
-moz-transform: rotateX(0deg) ;
|
3523 |
+
-ms-transform: rotateX(0deg) ;
|
3524 |
+
-o-transform: rotateX(0deg) ;
|
3525 |
+
transform: rotateX(0deg) ;
|
3526 |
+
}
|
3527 |
+
|
3528 |
+
.magee-flipbox-wrap.flip-left .flipbox-back {
|
3529 |
+
-moz-transform-origin: 0%;
|
3530 |
+
-ms-transform-origin: 0%;
|
3531 |
+
-o-transform-origin: 0%;
|
3532 |
+
-webkit-transform-origin: 0%;
|
3533 |
+
transform-origin: 0%;
|
3534 |
+
-webkit-transform: rotateY(-270deg);
|
3535 |
+
-moz-transform: rotateY(-270deg);
|
3536 |
+
-ms-transform: rotateY(-270deg);
|
3537 |
+
-o-transform: rotateY(-270deg);
|
3538 |
+
transform: rotateY(-270deg);
|
3539 |
+
-webkit-backface-visibility: visible;
|
3540 |
+
-moz-backface-visibility: visible;
|
3541 |
+
-o-backface-visibility: visible;
|
3542 |
+
backface-visibility: visible;
|
3543 |
+
}
|
3544 |
+
.magee-flipbox-wrap.flip-left:hover .flipbox-back{
|
3545 |
+
-webkit-transform: rotateY(0deg);
|
3546 |
+
-moz-transform: rotateY(0deg);
|
3547 |
+
-ms-transform: rotateY(0deg);
|
3548 |
+
-o-transform: rotateY(0deg);
|
3549 |
+
transform: rotateY(0deg);
|
3550 |
+
}
|
3551 |
+
|
3552 |
+
.magee-flipbox-wrap.flip-right .flipbox-back {
|
3553 |
+
-moz-transform-origin: 100%;
|
3554 |
+
-ms-transform-origin: 100%;
|
3555 |
+
-o-transform-origin: 100%;
|
3556 |
+
-webkit-transform-origin: 100%;
|
3557 |
+
transform-origin: 100%;
|
3558 |
+
-webkit-transform: rotateY(270deg);
|
3559 |
+
-moz-transform: rotateY(270deg);
|
3560 |
+
-ms-transform: rotateY(270deg);
|
3561 |
+
-o-transform: rotateY(270deg);
|
3562 |
+
transform: rotateY(270deg);
|
3563 |
+
-webkit-backface-visibility: visible;
|
3564 |
+
-moz-backface-visibility: visible;
|
3565 |
+
-o-backface-visibility: visible;
|
3566 |
+
backface-visibility: visible;
|
3567 |
+
}
|
3568 |
+
.magee-flipbox-wrap.flip-right:hover .flipbox-back{
|
3569 |
+
-webkit-transform: rotateY(0deg);
|
3570 |
+
-moz-transform: rotateY(0deg);
|
3571 |
+
-ms-transform: rotateY(0deg);
|
3572 |
+
-o-transform: rotateY(0deg);
|
3573 |
+
transform: rotateY(0deg);
|
3574 |
+
}
|
3575 |
/*
|
3576 |
* 27.0 Font Awesome Icons
|
3577 |
*/
|
assets/js/admin.js
CHANGED
@@ -40,18 +40,8 @@ $(document).on("click",'a.magee_shortcode_item',function(){
|
|
40 |
form.find("#magee-shortcodes-settings .current_shortcode").text(shortcode);
|
41 |
form.find("#magee-shortcodes-settings #magee-shortcode").val(shortcode);
|
42 |
form.find("#magee-shortcodes-settings-inner").html(data);
|
43 |
-
//
|
44 |
$(".magee-shortcodes-settings-inner-clone").html(form.find(".column-shortcode-inner").html());
|
45 |
-
if($(".magee-shortcodes-settings-inner-clone").find('.magee-upload-button').length>0){
|
46 |
-
var number = $(".magee-shortcodes-settings-inner-clone").find('.magee-upload-button').length;
|
47 |
-
var k = 9;
|
48 |
-
for(var i=0;i<number;i++){
|
49 |
-
var value =$(".magee-shortcodes-settings-inner-clone").find('.magee-upload-button').eq(i).attr('data-upid');
|
50 |
-
$(".magee-shortcodes-settings-inner-clone").find('.magee-upload-button').eq(i).attr('data-upid',value+k);
|
51 |
-
}
|
52 |
-
|
53 |
-
}
|
54 |
-
// colorpicker load
|
55 |
var myOptions = {
|
56 |
change: function(event, ui){
|
57 |
$('.magee_shortcodes_container .wp-color-picker-field').each(function(){
|
@@ -407,24 +397,15 @@ tb_remove();
|
|
407 |
|
408 |
});
|
409 |
// ADD control
|
410 |
-
|
411 |
-
$(document).on('click',"a.child-shortcode-add",function(){
|
412 |
var html = '<div class="param-item"><a id="child-shortcode-remove" href="#" class="child-clone-row-remove magee-shortcodes-button ">Remove</a></div>';
|
413 |
$clone = $(this).parents("#magee_shortcodes_container").find(".magee-shortcodes-settings-inner-clone").html();
|
|
|
|
|
|
|
414 |
var count = $('.column-shortcode-inner').length;
|
415 |
var wraptext = '<div class="column-shortcode-inner">'+$clone+html+'</div>';
|
416 |
$(".shortcode-add").before(wraptext);
|
417 |
-
//add iconpicker data-unqid
|
418 |
-
$source = $('.column-shortcode-inner').eq(count);
|
419 |
-
if($source.find('.magee-upload-button').length>0){
|
420 |
-
var number = $source.find('.magee-upload-button').length;
|
421 |
-
|
422 |
-
for(var i=0;i<number;i++){
|
423 |
-
var value = $source.find('.magee-upload-button').eq(i).attr('data-upid');
|
424 |
-
$source.find('.magee-upload-button').eq(i).attr('data-upid',value+k);
|
425 |
-
}
|
426 |
-
};
|
427 |
-
k++;
|
428 |
var myclone_Options = {
|
429 |
change: function(event, ui){
|
430 |
$('.magee_shortcodes_container .column-shortcode-inner').eq(count).find('.wp-color-picker-field').each(function(){
|
40 |
form.find("#magee-shortcodes-settings .current_shortcode").text(shortcode);
|
41 |
form.find("#magee-shortcodes-settings #magee-shortcode").val(shortcode);
|
42 |
form.find("#magee-shortcodes-settings-inner").html(data);
|
43 |
+
//ADD clone source
|
44 |
$(".magee-shortcodes-settings-inner-clone").html(form.find(".column-shortcode-inner").html());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
var myOptions = {
|
46 |
change: function(event, ui){
|
47 |
$('.magee_shortcodes_container .wp-color-picker-field').each(function(){
|
397 |
|
398 |
});
|
399 |
// ADD control
|
400 |
+
$(document).on('click',"a.child-shortcode-add",function(){
|
|
|
401 |
var html = '<div class="param-item"><a id="child-shortcode-remove" href="#" class="child-clone-row-remove magee-shortcodes-button ">Remove</a></div>';
|
402 |
$clone = $(this).parents("#magee_shortcodes_container").find(".magee-shortcodes-settings-inner-clone").html();
|
403 |
+
//$clone.find('.wp-color-picker-field').wpColorPicker();
|
404 |
+
//$clone.removeClass("magee-shortcodes-settings-inner-clone hidden");
|
405 |
+
//$clone.addClass("column-shortcode-inner");
|
406 |
var count = $('.column-shortcode-inner').length;
|
407 |
var wraptext = '<div class="column-shortcode-inner">'+$clone+html+'</div>';
|
408 |
$(".shortcode-add").before(wraptext);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
var myclone_Options = {
|
410 |
change: function(event, ui){
|
411 |
$('.magee_shortcodes_container .column-shortcode-inner').eq(count).find('.wp-color-picker-field').each(function(){
|
inc/core.php
CHANGED
@@ -137,6 +137,7 @@ function add_shortcodes_button($context) {
|
|
137 |
}
|
138 |
$this->popup = $_POST['shortcode'];
|
139 |
echo self::formate_shortcode();
|
|
|
140 |
echo '<div class="column-shortcode-inner">'.self::formate_children_shortcode().'</div>';
|
141 |
echo '<div class="shortcode-add"><a href="#" class="child-shortcode-add">add</a></div>' ;
|
142 |
|
@@ -922,14 +923,36 @@ function get_sidebars() {
|
|
922 |
$this->append_output($output);
|
923 |
|
924 |
break;
|
925 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
926 |
case 'iconpicker' :
|
927 |
|
928 |
// prepare
|
929 |
$output_child = $row_start;
|
930 |
$output_child .= '<div class="icon-val"><input type="text" class="magee-form-text magee-input" style="display:block" name="' . $cpkey . '" id="' . $cpkey . '" value="' . $cparam['std'] . '" />';
|
931 |
$output_child .= '<button type="button" id="custom_icon" class="button custom_icon">Icon Picker</button>'. "\n";
|
932 |
-
$output_child .= '<button type="button" id="insert-media-button" class="button magee-upload-button" data-editor="content" data-upid="' . $cpkey . '"><span class="wp-media-buttons-icon">'.__('Upload','magee-shortcodes
|
933 |
$output_child .= "</div>\n";
|
934 |
|
935 |
$output_child .= '<div class="iconpicker">';
|
137 |
}
|
138 |
$this->popup = $_POST['shortcode'];
|
139 |
echo self::formate_shortcode();
|
140 |
+
echo '<div class="magee-add-point">Values for the following section can be added multiple times with ADD button</div>';
|
141 |
echo '<div class="column-shortcode-inner">'.self::formate_children_shortcode().'</div>';
|
142 |
echo '<div class="shortcode-add"><a href="#" class="child-shortcode-add">add</a></div>' ;
|
143 |
|
923 |
$this->append_output($output);
|
924 |
|
925 |
break;
|
926 |
+
|
927 |
+
case 'choose' :
|
928 |
+
|
929 |
+
// prepare
|
930 |
+
$output_child = $row_start;;
|
931 |
+
$output_child .= '<div class="choose-show">' . "\n";
|
932 |
+
if( $cparam['options'] && is_array($cparam['options']) ) {
|
933 |
+
foreach( $cparam['options'] as $value => $option )
|
934 |
+
{
|
935 |
+
$selected = (isset($cparam['std']) && $cparam['std'] == $value) ? 'style="display:block"' : '';
|
936 |
+
$output_child .= '<span class="choose-show-param" name="'.$value.'" '.$selected.'>' .$option. '</span>' . "\n";
|
937 |
+
}
|
938 |
+
}
|
939 |
+
$output_child .= '</div>' . "\n";
|
940 |
+
$output_child .= '<input type="hidden" class="magee-form-choose" value="" name="'.$cpkey.'" id="'.$cpkey.'"/>'. "\n";
|
941 |
+
|
942 |
+
$output_child .= $row_end;
|
943 |
+
// append
|
944 |
+
$output .= $output_child;
|
945 |
+
$this->append_output( $output );
|
946 |
+
|
947 |
+
break;
|
948 |
+
|
949 |
case 'iconpicker' :
|
950 |
|
951 |
// prepare
|
952 |
$output_child = $row_start;
|
953 |
$output_child .= '<div class="icon-val"><input type="text" class="magee-form-text magee-input" style="display:block" name="' . $cpkey . '" id="' . $cpkey . '" value="' . $cparam['std'] . '" />';
|
954 |
$output_child .= '<button type="button" id="custom_icon" class="button custom_icon">Icon Picker</button>'. "\n";
|
955 |
+
$output_child .= '<button type="button" id="insert-media-button" class="button magee-upload-button" data-editor="content" data-upid="' . $cpkey . '"><span class="wp-media-buttons-icon">'.__('Upload','magee-shortcodes').'</span></button>' . "\n";
|
956 |
$output_child .= "</div>\n";
|
957 |
|
958 |
$output_child .= '<div class="iconpicker">';
|
inc/options.php
CHANGED
@@ -95,44 +95,18 @@ $magee_shortcodes['accordion'] = array(
|
|
95 |
'1' => __( 'Type 1', 'magee-shortcodes' ),
|
96 |
'2' => __( 'Type 2', 'magee-shortcodes' ),
|
97 |
)
|
98 |
-
)
|
99 |
-
),
|
100 |
-
'shortcode' => "[ms_accordion style=\"{{style}}\" type=\"{{type}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{child_shortcode}}[/ms_accordion]",
|
101 |
-
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
102 |
-
'child_shortcode' => array(
|
103 |
-
'params' => array(
|
104 |
-
|
105 |
-
'title' => array(
|
106 |
-
'std' => 'Title',
|
107 |
-
'type' => 'text',
|
108 |
-
'label' => __( 'Title', 'magee-shortcodes'),
|
109 |
-
'desc' => __( 'Insert the title for the accordion item.', 'magee-shortcodes'),
|
110 |
-
),
|
111 |
-
'icon' => array(
|
112 |
-
'type' => 'iconpicker',
|
113 |
-
'label' => __( 'Select Icon', 'magee-shortcodes'),
|
114 |
-
'desc' => __( 'Click an icon to select, click again to deselect', 'magee-shortcodes'),
|
115 |
-
'options' => $icons
|
116 |
),
|
117 |
'content' => array(
|
118 |
-
'std' => '
|
119 |
'type' => 'textarea',
|
120 |
-
'label' => __( '
|
121 |
-
'desc' => __( 'Insert
|
122 |
),
|
123 |
-
'status' => array(
|
124 |
-
'std' => 'close',
|
125 |
-
'type' => 'select',
|
126 |
-
'label' => __( 'Status', 'magee-shortcodes'),
|
127 |
-
'desc' => __( 'Choose to have the accordion open or close when page loads.', 'magee-shortcodes'),
|
128 |
-
'options' => array("close"=>"Close","open"=>"Open")
|
129 |
-
),
|
130 |
-
|
131 |
|
132 |
-
|
133 |
-
'shortcode' => "[
|
134 |
-
|
135 |
-
'name' => __('accordions-shortcode','magee-shortocdes'),
|
136 |
|
137 |
);
|
138 |
|
@@ -449,7 +423,7 @@ $magee_shortcodes['chart_bar'] = array(
|
|
449 |
'type' => 'number',
|
450 |
'max' => '1000',
|
451 |
'min' => '0',
|
452 |
-
'label' => __( 'Canvas Width','magee-shortcodes
|
453 |
'desc' => '',
|
454 |
),
|
455 |
'height' => array(
|
@@ -457,61 +431,61 @@ $magee_shortcodes['chart_bar'] = array(
|
|
457 |
'type' => 'number',
|
458 |
'max' => '1000',
|
459 |
'min' => '0',
|
460 |
-
'label' => __( 'Canvas Height','magee-shortcodes
|
461 |
'desc' => '',
|
462 |
),
|
463 |
'class' => array(
|
464 |
'std' => '',
|
465 |
'type' => 'text',
|
466 |
-
'label' => __( 'CSS Class', 'magee-shortcodes
|
467 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes
|
468 |
),
|
469 |
'id' => array(
|
470 |
'std' => '',
|
471 |
'type' => 'text',
|
472 |
-
'label' => __( 'CSS ID', 'magee-shortcodes
|
473 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes
|
474 |
),
|
475 |
'label' => array(
|
476 |
'std' => "'January','February','March','April','May','June'",
|
477 |
'type' => 'text',
|
478 |
-
'label' => __('Label For Line','magee-shortcodes
|
479 |
-
'desc' => __( 'separate multiple tags added to chart line with commas','magee-shortcodes
|
480 |
),
|
481 |
),
|
482 |
'shortcode' => "[ms_chart_bar width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\" label=\"{{label}}\"]\r\n{{child_shortcode}}[/ms_chart_bar]",
|
483 |
-
'popup_title' => __( 'Chart Bar Shortcode', 'magee-shortcodes
|
484 |
'child_shortcode' => array(
|
485 |
'params' => array(
|
486 |
'data' => array(
|
487 |
'std' => '456,479,324,569,702,600',
|
488 |
'type' => 'text',
|
489 |
-
'label' => __( 'Data','magee-shortcodes
|
490 |
-
'desc' => __( 'separate values for each set of data with commas','magee-shortcodes
|
491 |
),
|
492 |
'fillcolor' => array(
|
493 |
'std' => '#ACC284',
|
494 |
'type' => 'colorpicker',
|
495 |
-
'label' => __( 'Fill Color','magee-shortcodes
|
496 |
'desc' => '',
|
497 |
),
|
498 |
'fillopacity' => array(
|
499 |
'std' => '0.4',
|
500 |
'type' => 'select',
|
501 |
-
'label' => __( 'Fill Opacity','magee-shortcodes
|
502 |
'desc' => '',
|
503 |
'options' => $opacity
|
504 |
),
|
505 |
'strokecolor' => array(
|
506 |
'std' => '#ACC26D',
|
507 |
'type' => 'colorpicker',
|
508 |
-
'label' => __( 'Stroke Color','magee-shortcodes
|
509 |
'desc' => '',
|
510 |
),
|
511 |
'strokeopacity' => array(
|
512 |
'std' => '0.4',
|
513 |
'type' => 'select',
|
514 |
-
'label' => __( 'Stroke Opacity','magee-shortcodes
|
515 |
'desc' => '',
|
516 |
'options' => $opacity
|
517 |
),
|
@@ -526,14 +500,14 @@ $magee_shortcodes['chart_bar'] = array(
|
|
526 |
|
527 |
$magee_shortcodes['chart_doughnut'] = array(
|
528 |
'no_preview' => true,
|
529 |
-
'icon' => 'fa-
|
530 |
'params' => array(
|
531 |
'width' => array(
|
532 |
'std' => '600',
|
533 |
'type' => 'number',
|
534 |
'max' => '1000',
|
535 |
'min' => '0',
|
536 |
-
'label' => __( 'Canvas Width','magee-shortcodes
|
537 |
'desc' => '',
|
538 |
),
|
539 |
'height' => array(
|
@@ -541,30 +515,30 @@ $magee_shortcodes['chart_doughnut'] = array(
|
|
541 |
'type' => 'number',
|
542 |
'max' => '1000',
|
543 |
'min' => '0',
|
544 |
-
'label' => __( 'Canvas Height','magee-shortcodes
|
545 |
'desc' => '',
|
546 |
),
|
547 |
'class' => array(
|
548 |
'std' => '',
|
549 |
'type' => 'text',
|
550 |
-
'label' => __( 'CSS Class', 'magee-shortcodes
|
551 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes
|
552 |
),
|
553 |
'id' => array(
|
554 |
'std' => '',
|
555 |
'type' => 'text',
|
556 |
-
'label' => __( 'CSS ID', 'magee-shortcodes
|
557 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes
|
558 |
),
|
559 |
'content' => array(
|
560 |
'std' => "[ms_doughnut value=\"20\" color=\"#878BB6\"]\r\n[ms_doughnut value=\"40\" color=\"#4ACAB4\"]\r\n[ms_doughnut value=\"10\" color=\"#FF8153\"]\r\n[ms_doughnut value=\"30\" color=\"#FFEA88\"]\r\n",
|
561 |
'type' => 'textarea',
|
562 |
-
'label' => __( 'Content', 'magee-shortcodes
|
563 |
-
'desc' =>
|
564 |
),
|
565 |
),
|
566 |
'shortcode' => "[ms_chart_doughnut width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_chart_doughnut]",
|
567 |
-
'popup_title' => __( 'Chart Doughnut Shortcode', 'magee-shortcodes
|
568 |
);
|
569 |
|
570 |
/*-----------------------------------------------------------------------------------*/
|
@@ -573,14 +547,14 @@ $magee_shortcodes['chart_doughnut'] = array(
|
|
573 |
|
574 |
$magee_shortcodes['chart_line'] = array(
|
575 |
'no_preview' => true,
|
576 |
-
'icon' => 'fa-
|
577 |
'params' => array(
|
578 |
'width' => array(
|
579 |
'std' => '600',
|
580 |
'type' => 'number',
|
581 |
'max' => '1000',
|
582 |
'min' => '0',
|
583 |
-
'label' => __( 'Canvas Width','magee-shortcodes
|
584 |
'desc' => '',
|
585 |
),
|
586 |
'height' => array(
|
@@ -588,67 +562,67 @@ $magee_shortcodes['chart_line'] = array(
|
|
588 |
'type' => 'number',
|
589 |
'max' => '1000',
|
590 |
'min' => '0',
|
591 |
-
'label' => __( 'Canvas Height','magee-shortcodes
|
592 |
'desc' => '',
|
593 |
),
|
594 |
'class' => array(
|
595 |
'std' => '',
|
596 |
'type' => 'text',
|
597 |
-
'label' => __( 'CSS Class', 'magee-shortcodes
|
598 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes
|
599 |
),
|
600 |
'id' => array(
|
601 |
'std' => '',
|
602 |
'type' => 'text',
|
603 |
-
'label' => __( 'CSS ID', 'magee-shortcodes
|
604 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes
|
605 |
),
|
606 |
'label' => array(
|
607 |
'std' => "'January','February','March','April','May','June'",
|
608 |
'type' => 'text',
|
609 |
-
'label' => __('Label For Line','magee-shortcodes
|
610 |
'desc' => ''
|
611 |
),
|
612 |
),
|
613 |
'shortcode' => "[ms_chart_line width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\" label=\"{{label}}\"]\r\n{{child_shortcode}}[/ms_chart_line]",
|
614 |
-
'popup_title' => __( 'Chart Line Shortcode', 'magee-shortcodes
|
615 |
'child_shortcode' => array(
|
616 |
'params' => array(
|
617 |
'data' => array(
|
618 |
'std' => '203,156,99,251,305,247',
|
619 |
'type' => 'text',
|
620 |
-
'label' => __( 'Data','magee-shortcodes
|
621 |
-
'desc' => __( 'separate values for each set of data with commas','magee-shortcodes
|
622 |
),
|
623 |
'fillcolor' => array(
|
624 |
'std' => '#ACC284',
|
625 |
'type' => 'colorpicker',
|
626 |
-
'label' => __( 'Fill Color','magee-shortcodes
|
627 |
'desc' => '',
|
628 |
),
|
629 |
'fillopacity' => array(
|
630 |
'std' => '0.4',
|
631 |
'type' => 'select',
|
632 |
-
'label' => __( 'Fill Opacity','magee-shortcodes
|
633 |
'desc' => '',
|
634 |
'options' => $opacity
|
635 |
),
|
636 |
'strokecolor' => array(
|
637 |
'std' => '#ACC26D',
|
638 |
'type' => 'colorpicker',
|
639 |
-
'label' => __( 'Stroke Color','magee-shortcodes
|
640 |
'desc' => '',
|
641 |
),
|
642 |
'pointcolor' => array(
|
643 |
'std' => '#ffffff',
|
644 |
'type' => 'colorpicker',
|
645 |
-
'label' => __( 'Point Color','magee-shortcodes
|
646 |
'desc' => '',
|
647 |
),
|
648 |
'pointstrokecolor' => array(
|
649 |
'std' => '#9DB86D',
|
650 |
'type' => 'colorpicker',
|
651 |
-
'label' => __( 'Point Stroke Color','magee-shortcodes
|
652 |
'desc' => '',
|
653 |
),
|
654 |
),
|
@@ -662,14 +636,14 @@ $magee_shortcodes['chart_line'] = array(
|
|
662 |
|
663 |
$magee_shortcodes['chart_pie'] = array(
|
664 |
'no_preview' => true,
|
665 |
-
'icon' => 'fa-
|
666 |
'params' => array(
|
667 |
'width' => array(
|
668 |
'std' => '600',
|
669 |
'type' => 'number',
|
670 |
'max' => '1000',
|
671 |
'min' => '0',
|
672 |
-
'label' => __( 'Canvas Width','magee-shortcodes
|
673 |
'desc' => ''
|
674 |
),
|
675 |
'height' => array(
|
@@ -678,30 +652,30 @@ $magee_shortcodes['chart_pie'] = array(
|
|
678 |
'type' => 'number',
|
679 |
'max' => '1000',
|
680 |
'min' => '0',
|
681 |
-
'label' => __( 'Canvas Height','magee-shortcodes
|
682 |
'desc' => ''
|
683 |
),
|
684 |
'class' => array(
|
685 |
'std' => '',
|
686 |
'type' => 'text',
|
687 |
-
'label' => __( 'CSS Class', 'magee-shortcodes
|
688 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes
|
689 |
),
|
690 |
'id' => array(
|
691 |
'std' => '',
|
692 |
'type' => 'text',
|
693 |
-
'label' => __( 'CSS ID', 'magee-shortcodes
|
694 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes
|
695 |
),
|
696 |
'content' => array(
|
697 |
'std' => "[ms_pie value=\"20\" color=\"#878BB6\"]\r\n[ms_pie value=\"40\" color=\"#4ACAB4\"]\r\n[ms_pie value=\"10\" color=\"#FF8153\"]\r\n[ms_pie value=\"30\" color=\"#FFEA88\"]\r\n",
|
698 |
'type' => 'textarea',
|
699 |
-
'label' => __( 'Content', 'magee-shortcodes
|
700 |
-
'desc' =>
|
701 |
),
|
702 |
),
|
703 |
'shortcode' => "[ms_chart_pie width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_chart_pie]",
|
704 |
-
'popup_title' => __( 'Chart Pie Shortcode', 'magee-shortcodes
|
705 |
);
|
706 |
|
707 |
/*******************************************************
|
@@ -738,13 +712,23 @@ $magee_shortcodes['column'] = array(
|
|
738 |
'5/6' => __('5/6', 'magee-shortcodes'),
|
739 |
)
|
740 |
),
|
741 |
-
|
742 |
'content' => array(
|
743 |
'std' => __('Column Content', 'magee-shortcodes'),
|
744 |
'type' => 'textarea',
|
745 |
'label' => __( ' Column Content', 'magee-shortcodes'),
|
746 |
'desc' => __( 'Insert the column\'s content', 'magee-shortcodes'),
|
747 |
-
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
748 |
'class' => array(
|
749 |
'std' => '',
|
750 |
'type' => 'text',
|
@@ -758,7 +742,7 @@ $magee_shortcodes['column'] = array(
|
|
758 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
759 |
),
|
760 |
),
|
761 |
-
'shortcode' => "[ms_column style=\"{{style}}\" class=\"{{class}}\" id=\"{{id}}\"]{{content}}[/ms_column]\r\n",
|
762 |
)
|
763 |
|
764 |
);
|
@@ -826,87 +810,109 @@ $magee_shortcodes['counter'] = array(
|
|
826 |
'icon' => 'fa-calculator',
|
827 |
'params' => array(
|
828 |
|
829 |
-
|
830 |
-
'top_icon' => array(
|
831 |
-
'type' => 'iconpicker',
|
832 |
-
'label' => __( 'Top Icon', 'magee-shortcodes' ),
|
833 |
-
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
834 |
-
'options' => $icons
|
835 |
-
),
|
836 |
-
'top_icon_color' => array(
|
837 |
-
'std' => '',
|
838 |
-
'type' => 'colorpicker',
|
839 |
-
'label' => __( 'Top Icon Color', 'magee-shortcodes'),
|
840 |
-
'desc' => __( 'Set color for top icon.','magee-shortcodes')
|
841 |
-
|
842 |
-
),
|
843 |
-
'left_icon' => array(
|
844 |
-
'type' => 'iconpicker',
|
845 |
-
'label' => __( 'Left Icon', 'magee-shortcodes' ),
|
846 |
-
'desc' => __( 'Insert text before the number.', 'magee-shortcodes' ),
|
847 |
-
'options' => $icons
|
848 |
-
),
|
849 |
-
|
850 |
-
'left_text' => array(
|
851 |
-
'std' => '',
|
852 |
-
'type' => 'text',
|
853 |
-
'label' => __( 'Left Text', 'magee-shortcodes' ),
|
854 |
-
'desc' => __( 'Left text of counter num', 'magee-shortcodes' ),
|
855 |
-
),
|
856 |
-
|
857 |
-
'counter_num' => array(
|
858 |
-
'std' => '100',
|
859 |
-
'type' => 'number',
|
860 |
-
'max' => '200',
|
861 |
-
'min' => '0',
|
862 |
-
'label' => __( 'Counter Num', 'magee-shortcodes' ),
|
863 |
-
'desc' => __( 'The animated counter number.', 'magee-shortcodes' ),
|
864 |
-
),
|
865 |
-
'right_text' => array(
|
866 |
-
'std' => '',
|
867 |
-
'type' => 'text',
|
868 |
-
'label' => __( 'Right Text', 'magee-shortcodes' ),
|
869 |
-
'desc' => __( 'Insert text after the number.', 'magee-shortcodes' ),
|
870 |
-
),
|
871 |
-
|
872 |
-
'title' => array(
|
873 |
-
'std' => '',
|
874 |
-
'type' => 'text',
|
875 |
-
'label' => __( 'Title', 'magee-shortcodes' ),
|
876 |
-
'desc' => __( 'Insert Title for counter.', 'magee-shortcodes' ),
|
877 |
-
),
|
878 |
-
|
879 |
-
'border' => array(
|
880 |
-
'type' => 'choose',
|
881 |
-
'label' => __( 'Display Border', 'magee-shortcodes' ),
|
882 |
-
'desc' => __( 'Choose to display border for counter.', 'magee-shortcodes' ),
|
883 |
-
'options' => array(
|
884 |
-
'0' => __('No', 'magee-shortcodes' ),
|
885 |
-
'1' => __('Yes', 'magee-shortcodes' ),
|
886 |
-
)
|
887 |
-
|
888 |
-
),
|
889 |
-
|
890 |
-
'class' => array(
|
891 |
-
'std' => '',
|
892 |
-
'type' => 'text',
|
893 |
-
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
894 |
-
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
895 |
-
),
|
896 |
-
'id' => array(
|
897 |
-
'std' => '',
|
898 |
-
'type' => 'text',
|
899 |
-
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
900 |
-
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
901 |
-
)
|
902 |
-
|
903 |
-
|
904 |
),
|
905 |
-
'shortcode' =>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
906 |
'popup_title' => __( 'Counter Shortcode', 'magee-shortcodes' ),
|
907 |
'name' => __('counter-box-shortcode/','magee-shortocdes'),
|
908 |
);
|
909 |
|
|
|
910 |
/*******************************************************
|
911 |
* Custom Box Config
|
912 |
********************************************************/
|
@@ -925,6 +931,30 @@ $magee_shortcodes['custom_box'] = array(
|
|
925 |
'label' => __( 'Background Image', 'magee-shortcodes' ),
|
926 |
'desc' => __( 'Upload an image to display in background of custom box.', 'magee-shortcodes' ),
|
927 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
'padding' => array(
|
929 |
'std' => '30',
|
930 |
'type' => 'number',
|
@@ -946,7 +976,7 @@ $magee_shortcodes['custom_box'] = array(
|
|
946 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
947 |
),
|
948 |
),
|
949 |
-
'shortcode' => '[ms_custom_box backgroundimage="{{backgroundimage}}" padding="{{padding}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_custom_box]',
|
950 |
'popup_title' => __( ' Custom Box Shortcode', 'magee-shortcodes'),
|
951 |
'name' => __('custom-box-shortcode/','magee-shortocdes'),
|
952 |
);
|
@@ -1638,6 +1668,14 @@ $magee_shortcodes['flip_box'] = array(
|
|
1638 |
'options' => array(
|
1639 |
'horizontal' => __('Horizontal', 'magee-shortcodes'),
|
1640 |
'vertical' => __('Vertical', 'magee-shortcodes'),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1641 |
)
|
1642 |
),
|
1643 |
'front_paddings' => array(
|
@@ -1654,11 +1692,12 @@ $magee_shortcodes['flip_box'] = array(
|
|
1654 |
'label' => __( 'Front Background Color', 'magee-shortcodes' ),
|
1655 |
'desc' => __( 'Set background color for front container of flip box.', 'magee-shortcodes')
|
1656 |
),
|
1657 |
-
|
1658 |
'type' => 'colorpicker',
|
|
|
1659 |
'label' => __( 'Front Font Color', 'magee-shortcodes' ),
|
1660 |
'desc' => __( 'Custom setting only. Set the background color for custom alert boxes.', 'magee-shortcodes')
|
1661 |
-
)
|
1662 |
'front_content' => array(
|
1663 |
'std' => __('Front Content', 'magee-shortcodes'),
|
1664 |
'type' => 'textarea',
|
@@ -1676,15 +1715,15 @@ $magee_shortcodes['flip_box'] = array(
|
|
1676 |
'back_background' => array(
|
1677 |
'std'=>'',
|
1678 |
'type' => 'colorpicker',
|
1679 |
-
'label' => __( '
|
1680 |
'desc' => __( 'Set background color for back container of flip box.', 'magee-shortcodes')
|
1681 |
),
|
1682 |
-
|
1683 |
'std' =>'#ffffff',
|
1684 |
'type' => 'colorpicker',
|
1685 |
'label' => __( 'Back Font Color', 'magee-shortcodes' ),
|
1686 |
'desc' => __( 'Custom setting only. Set the background color for custom alert boxes.', 'magee-shortcodes')
|
1687 |
-
)
|
1688 |
'back_content' => array(
|
1689 |
'std' => __('Back Content', 'magee-shortcodes'),
|
1690 |
'type' => 'textarea',
|
@@ -1705,7 +1744,7 @@ $magee_shortcodes['flip_box'] = array(
|
|
1705 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1706 |
),
|
1707 |
),
|
1708 |
-
'shortcode' => '[ms_flip_box direction="{{direction}}" front_paddings="{{front_paddings}}" front_background="{{front_background}}" back_paddings="{{back_paddings}}" back_background="{{back_background}}" class="{{class}}" id="{{id}}"]{{front_content}}|||{{back_content}}[/ms_flip_box]',
|
1709 |
'popup_title' => __( 'Flip Box Shortcode', 'magee-shortcodes'),
|
1710 |
'name' => __('flip-box-shortcode/','magee-shortocdes'),
|
1711 |
);
|
@@ -1856,7 +1895,11 @@ $magee_shortcodes['highlight'] = array(
|
|
1856 |
'label' => __( 'Border Radius', 'magee-shortcodes' ),
|
1857 |
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
1858 |
),
|
1859 |
-
|
|
|
|
|
|
|
|
|
1860 |
'content' => array(
|
1861 |
'std' => __('Your Content Goes Here', 'magee-shortcodes'),
|
1862 |
'type' => 'textarea',
|
@@ -1877,7 +1920,7 @@ $magee_shortcodes['highlight'] = array(
|
|
1877 |
),
|
1878 |
|
1879 |
),
|
1880 |
-
'shortcode' => '[ms_highlight background_color="{{background_color}}" border_radius="{{border_radius}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_highlight]',
|
1881 |
'popup_title' => __( 'Highlight Shortcode', 'magee-shortcodes' ),
|
1882 |
'name' => __('highlight-shortcode/','magee-shortocdes'),
|
1883 |
);
|
@@ -1946,6 +1989,23 @@ $magee_shortcodes['image_compare'] = array(
|
|
1946 |
'icon' => 'fa-file-image-o',
|
1947 |
'no_preview' => true,
|
1948 |
'params' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1949 |
'image_left' => array(
|
1950 |
'std' => '',
|
1951 |
'type' => 'uploader',
|
@@ -1971,7 +2031,7 @@ $magee_shortcodes['image_compare'] = array(
|
|
1971 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1972 |
),
|
1973 |
),
|
1974 |
-
'shortcode' => '[ms_image_compare image_left="{{image_left}}" image_right="{{image_right}}" class="{{class}}" id="{{id}}"]',
|
1975 |
'popup_title' => __( 'Image Compare Shortcode', 'magee-shortcodes' ),
|
1976 |
'name' => __('image-compare-shortcode/','magee-shortocdes'),
|
1977 |
);
|
@@ -2504,7 +2564,17 @@ $magee_shortcodes['piechart'] = array(
|
|
2504 |
'no_preview' => true,
|
2505 |
'icon' => 'fa-circle-o-notch',
|
2506 |
'params' => array(
|
2507 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2508 |
'percent' => array(
|
2509 |
'std' => '80',
|
2510 |
'type' => 'number',
|
@@ -2561,7 +2631,7 @@ $magee_shortcodes['piechart'] = array(
|
|
2561 |
),
|
2562 |
|
2563 |
),
|
2564 |
-
'shortcode' => '[ms_piechart percent="{{percent}}" filledcolor="{{filledcolor}}" size="{{size}}" font_size="{{font_size}}" unfilledcolor="{{unfilledcolor}}" class="{{class}}" ]{{content}}[/ms_piechart]',
|
2565 |
'popup_title' => __( 'Piechart Shortcode', 'magee-shortcodes' ),
|
2566 |
'name' => __('piechart-shortcode/','magee-shortcodes'),
|
2567 |
);
|
@@ -2643,7 +2713,16 @@ $magee_shortcodes['progress'] = array(
|
|
2643 |
'no_preview' => true,
|
2644 |
'icon' => 'fa-tasks',
|
2645 |
'params' => array(
|
2646 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2647 |
'striped' => array(
|
2648 |
'type' => 'select',
|
2649 |
'label' => __( 'Striped', 'magee-shortcodes' ),
|
@@ -2742,7 +2821,7 @@ $magee_shortcodes['progress'] = array(
|
|
2742 |
|
2743 |
|
2744 |
),
|
2745 |
-
'shortcode' => '[ms_progress striped="{{striped}}" rounded="{{rounded}}" number="{{number}}" percent="{{percent}}" text="{{text}}" height="{{height}}" color="{{color}}" textalign="{{textalign}}" textposition="{{textposition}}" class="{{class}}" id="{{id}}"]',
|
2746 |
'popup_title' => __( 'Progress Shortcode', 'magee-shortcodes' ),
|
2747 |
'name' => __('progress-bar-shortcode/','magee-shortcodes'),
|
2748 |
);
|
95 |
'1' => __( 'Type 1', 'magee-shortcodes' ),
|
96 |
'2' => __( 'Type 2', 'magee-shortcodes' ),
|
97 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
),
|
99 |
'content' => array(
|
100 |
+
'std' => "[ms_accordion_item title='Accordion Item 1' icon='fa-flag' status='open']Accordion Item Content 1[/ms_accordion_item]\r\n[ms_accordion_item title='Accordion Item 2' icon='fa-star' status='close']Accordion Item Content 2[/ms_accordion_item]\r\n[ms_accordion_item title='Accordion Item 3' icon='fa-music' status='close']Accordion Item Content 3[/ms_accordion_item]\r\n",
|
101 |
'type' => 'textarea',
|
102 |
+
'label' => __( 'Accordion Items', 'magee-shortcodes' ),
|
103 |
+
'desc' => __( 'Insert accordion items shortcode.', 'magee-shortcodes' ),
|
104 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
+
),
|
107 |
+
'shortcode' => "[ms_accordion style=\"{{style}}\" type=\"{{type}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_accordion]",
|
108 |
+
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
109 |
+
'name' => __('accordions-shortcode/','magee-shortocdes'),
|
110 |
|
111 |
);
|
112 |
|
423 |
'type' => 'number',
|
424 |
'max' => '1000',
|
425 |
'min' => '0',
|
426 |
+
'label' => __( 'Canvas Width','magee-shortcodes'),
|
427 |
'desc' => '',
|
428 |
),
|
429 |
'height' => array(
|
431 |
'type' => 'number',
|
432 |
'max' => '1000',
|
433 |
'min' => '0',
|
434 |
+
'label' => __( 'Canvas Height','magee-shortcodes'),
|
435 |
'desc' => '',
|
436 |
),
|
437 |
'class' => array(
|
438 |
'std' => '',
|
439 |
'type' => 'text',
|
440 |
+
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
441 |
+
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
442 |
),
|
443 |
'id' => array(
|
444 |
'std' => '',
|
445 |
'type' => 'text',
|
446 |
+
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
447 |
+
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
448 |
),
|
449 |
'label' => array(
|
450 |
'std' => "'January','February','March','April','May','June'",
|
451 |
'type' => 'text',
|
452 |
+
'label' => __('Label For Line','magee-shortcodes') ,
|
453 |
+
'desc' => __( 'separate multiple tags added to chart line with commas','magee-shortcodes')
|
454 |
),
|
455 |
),
|
456 |
'shortcode' => "[ms_chart_bar width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\" label=\"{{label}}\"]\r\n{{child_shortcode}}[/ms_chart_bar]",
|
457 |
+
'popup_title' => __( 'Chart Bar Shortcode', 'magee-shortcodes'),
|
458 |
'child_shortcode' => array(
|
459 |
'params' => array(
|
460 |
'data' => array(
|
461 |
'std' => '456,479,324,569,702,600',
|
462 |
'type' => 'text',
|
463 |
+
'label' => __( 'Data','magee-shortcodes'),
|
464 |
+
'desc' => __( 'separate values for each set of data with commas','magee-shortcodes')
|
465 |
),
|
466 |
'fillcolor' => array(
|
467 |
'std' => '#ACC284',
|
468 |
'type' => 'colorpicker',
|
469 |
+
'label' => __( 'Fill Color','magee-shortcodes'),
|
470 |
'desc' => '',
|
471 |
),
|
472 |
'fillopacity' => array(
|
473 |
'std' => '0.4',
|
474 |
'type' => 'select',
|
475 |
+
'label' => __( 'Fill Opacity','magee-shortcodes') ,
|
476 |
'desc' => '',
|
477 |
'options' => $opacity
|
478 |
),
|
479 |
'strokecolor' => array(
|
480 |
'std' => '#ACC26D',
|
481 |
'type' => 'colorpicker',
|
482 |
+
'label' => __( 'Stroke Color','magee-shortcodes'),
|
483 |
'desc' => '',
|
484 |
),
|
485 |
'strokeopacity' => array(
|
486 |
'std' => '0.4',
|
487 |
'type' => 'select',
|
488 |
+
'label' => __( 'Stroke Opacity','magee-shortcodes') ,
|
489 |
'desc' => '',
|
490 |
'options' => $opacity
|
491 |
),
|
500 |
|
501 |
$magee_shortcodes['chart_doughnut'] = array(
|
502 |
'no_preview' => true,
|
503 |
+
'icon' => 'fa-circle-o-notch',
|
504 |
'params' => array(
|
505 |
'width' => array(
|
506 |
'std' => '600',
|
507 |
'type' => 'number',
|
508 |
'max' => '1000',
|
509 |
'min' => '0',
|
510 |
+
'label' => __( 'Canvas Width','magee-shortcodes'),
|
511 |
'desc' => '',
|
512 |
),
|
513 |
'height' => array(
|
515 |
'type' => 'number',
|
516 |
'max' => '1000',
|
517 |
'min' => '0',
|
518 |
+
'label' => __( 'Canvas Height','magee-shortcodes'),
|
519 |
'desc' => '',
|
520 |
),
|
521 |
'class' => array(
|
522 |
'std' => '',
|
523 |
'type' => 'text',
|
524 |
+
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
525 |
+
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
526 |
),
|
527 |
'id' => array(
|
528 |
'std' => '',
|
529 |
'type' => 'text',
|
530 |
+
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
531 |
+
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
532 |
),
|
533 |
'content' => array(
|
534 |
'std' => "[ms_doughnut value=\"20\" color=\"#878BB6\"]\r\n[ms_doughnut value=\"40\" color=\"#4ACAB4\"]\r\n[ms_doughnut value=\"10\" color=\"#FF8153\"]\r\n[ms_doughnut value=\"30\" color=\"#FFEA88\"]\r\n",
|
535 |
'type' => 'textarea',
|
536 |
+
'label' => __( 'Content', 'magee-shortcodes'),
|
537 |
+
'desc' => '',
|
538 |
),
|
539 |
),
|
540 |
'shortcode' => "[ms_chart_doughnut width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_chart_doughnut]",
|
541 |
+
'popup_title' => __( 'Chart Doughnut Shortcode', 'magee-shortcodes'),
|
542 |
);
|
543 |
|
544 |
/*-----------------------------------------------------------------------------------*/
|
547 |
|
548 |
$magee_shortcodes['chart_line'] = array(
|
549 |
'no_preview' => true,
|
550 |
+
'icon' => 'fa-line-chart',
|
551 |
'params' => array(
|
552 |
'width' => array(
|
553 |
'std' => '600',
|
554 |
'type' => 'number',
|
555 |
'max' => '1000',
|
556 |
'min' => '0',
|
557 |
+
'label' => __( 'Canvas Width','magee-shortcodes'),
|
558 |
'desc' => '',
|
559 |
),
|
560 |
'height' => array(
|
562 |
'type' => 'number',
|
563 |
'max' => '1000',
|
564 |
'min' => '0',
|
565 |
+
'label' => __( 'Canvas Height','magee-shortcodes'),
|
566 |
'desc' => '',
|
567 |
),
|
568 |
'class' => array(
|
569 |
'std' => '',
|
570 |
'type' => 'text',
|
571 |
+
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
572 |
+
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
573 |
),
|
574 |
'id' => array(
|
575 |
'std' => '',
|
576 |
'type' => 'text',
|
577 |
+
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
578 |
+
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
579 |
),
|
580 |
'label' => array(
|
581 |
'std' => "'January','February','March','April','May','June'",
|
582 |
'type' => 'text',
|
583 |
+
'label' => __('Label For Line','magee-shortcodes') ,
|
584 |
'desc' => ''
|
585 |
),
|
586 |
),
|
587 |
'shortcode' => "[ms_chart_line width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\" label=\"{{label}}\"]\r\n{{child_shortcode}}[/ms_chart_line]",
|
588 |
+
'popup_title' => __( 'Chart Line Shortcode', 'magee-shortcodes'),
|
589 |
'child_shortcode' => array(
|
590 |
'params' => array(
|
591 |
'data' => array(
|
592 |
'std' => '203,156,99,251,305,247',
|
593 |
'type' => 'text',
|
594 |
+
'label' => __( 'Data','magee-shortcodes'),
|
595 |
+
'desc' => __( 'separate values for each set of data with commas','magee-shortcodes')
|
596 |
),
|
597 |
'fillcolor' => array(
|
598 |
'std' => '#ACC284',
|
599 |
'type' => 'colorpicker',
|
600 |
+
'label' => __( 'Fill Color','magee-shortcodes'),
|
601 |
'desc' => '',
|
602 |
),
|
603 |
'fillopacity' => array(
|
604 |
'std' => '0.4',
|
605 |
'type' => 'select',
|
606 |
+
'label' => __( 'Fill Opacity','magee-shortcodes') ,
|
607 |
'desc' => '',
|
608 |
'options' => $opacity
|
609 |
),
|
610 |
'strokecolor' => array(
|
611 |
'std' => '#ACC26D',
|
612 |
'type' => 'colorpicker',
|
613 |
+
'label' => __( 'Stroke Color','magee-shortcodes'),
|
614 |
'desc' => '',
|
615 |
),
|
616 |
'pointcolor' => array(
|
617 |
'std' => '#ffffff',
|
618 |
'type' => 'colorpicker',
|
619 |
+
'label' => __( 'Point Color','magee-shortcodes'),
|
620 |
'desc' => '',
|
621 |
),
|
622 |
'pointstrokecolor' => array(
|
623 |
'std' => '#9DB86D',
|
624 |
'type' => 'colorpicker',
|
625 |
+
'label' => __( 'Point Stroke Color','magee-shortcodes'),
|
626 |
'desc' => '',
|
627 |
),
|
628 |
),
|
636 |
|
637 |
$magee_shortcodes['chart_pie'] = array(
|
638 |
'no_preview' => true,
|
639 |
+
'icon' => 'fa-pie-chart',
|
640 |
'params' => array(
|
641 |
'width' => array(
|
642 |
'std' => '600',
|
643 |
'type' => 'number',
|
644 |
'max' => '1000',
|
645 |
'min' => '0',
|
646 |
+
'label' => __( 'Canvas Width','magee-shortcodes'),
|
647 |
'desc' => ''
|
648 |
),
|
649 |
'height' => array(
|
652 |
'type' => 'number',
|
653 |
'max' => '1000',
|
654 |
'min' => '0',
|
655 |
+
'label' => __( 'Canvas Height','magee-shortcodes'),
|
656 |
'desc' => ''
|
657 |
),
|
658 |
'class' => array(
|
659 |
'std' => '',
|
660 |
'type' => 'text',
|
661 |
+
'label' => __( 'CSS Class', 'magee-shortcodes'),
|
662 |
+
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes')
|
663 |
),
|
664 |
'id' => array(
|
665 |
'std' => '',
|
666 |
'type' => 'text',
|
667 |
+
'label' => __( 'CSS ID', 'magee-shortcodes'),
|
668 |
+
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
669 |
),
|
670 |
'content' => array(
|
671 |
'std' => "[ms_pie value=\"20\" color=\"#878BB6\"]\r\n[ms_pie value=\"40\" color=\"#4ACAB4\"]\r\n[ms_pie value=\"10\" color=\"#FF8153\"]\r\n[ms_pie value=\"30\" color=\"#FFEA88\"]\r\n",
|
672 |
'type' => 'textarea',
|
673 |
+
'label' => __( 'Content', 'magee-shortcodes'),
|
674 |
+
'desc' => '',
|
675 |
),
|
676 |
),
|
677 |
'shortcode' => "[ms_chart_pie width=\"{{width}}\" height=\"{{height}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{content}}[/ms_chart_pie]",
|
678 |
+
'popup_title' => __( 'Chart Pie Shortcode', 'magee-shortcodes')
|
679 |
);
|
680 |
|
681 |
/*******************************************************
|
712 |
'5/6' => __('5/6', 'magee-shortcodes'),
|
713 |
)
|
714 |
),
|
|
|
715 |
'content' => array(
|
716 |
'std' => __('Column Content', 'magee-shortcodes'),
|
717 |
'type' => 'textarea',
|
718 |
'label' => __( ' Column Content', 'magee-shortcodes'),
|
719 |
'desc' => __( 'Insert the column\'s content', 'magee-shortcodes'),
|
720 |
+
),
|
721 |
+
'align' => array(
|
722 |
+
'std' => __('left', 'magee-shortcodes'),
|
723 |
+
'type' => 'select',
|
724 |
+
'label' => __( 'Content Align', 'magee-shortcodes'),
|
725 |
+
'desc' => '',
|
726 |
+
'options' => array(
|
727 |
+
'left' => __( 'Left', 'magee-shortcodes'),
|
728 |
+
'center' => __( 'Center', 'magee-shortcodes'),
|
729 |
+
'right' => __( 'Right', 'magee-shortcodes'),
|
730 |
+
),
|
731 |
+
),
|
732 |
'class' => array(
|
733 |
'std' => '',
|
734 |
'type' => 'text',
|
742 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
743 |
),
|
744 |
),
|
745 |
+
'shortcode' => "[ms_column style=\"{{style}}\" align=\"{{align}}\" class=\"{{class}}\" id=\"{{id}}\"]{{content}}[/ms_column]\r\n",
|
746 |
)
|
747 |
|
748 |
);
|
810 |
'icon' => 'fa-calculator',
|
811 |
'params' => array(
|
812 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
813 |
),
|
814 |
+
'shortcode' => "[ms_row]\r\n{{child_shortcode}}[/ms_row]",
|
815 |
+
'child_shortcode' => array(
|
816 |
+
'params' => array(
|
817 |
+
'box_width' => array(
|
818 |
+
'std' => '1/4',
|
819 |
+
'type' => 'select',
|
820 |
+
'label' => __( 'Box Width', 'magee-shortcodes' ),
|
821 |
+
'desc' => __( 'Select size of counter box', 'magee-shortcodes' ),
|
822 |
+
'options' => array(
|
823 |
+
'1/1' => __('1/1', 'magee-shortcodes'),
|
824 |
+
'1/2' => __('1/2', 'magee-shortcodes'),
|
825 |
+
'1/3' => __('1/3', 'magee-shortcodes'),
|
826 |
+
'1/4' => __('1/4', 'magee-shortcodes'),
|
827 |
+
'1/5' => __('1/5', 'magee-shortcodes'),
|
828 |
+
'1/6' => __('1/6', 'magee-shortcodes'),
|
829 |
+
'2/3' => __('2/3', 'magee-shortcodes'),
|
830 |
+
'2/5' => __('2/5', 'magee-shortcodes'),
|
831 |
+
'3/4' => __('3/4', 'magee-shortcodes'),
|
832 |
+
'3/5' => __('3/5', 'magee-shortcodes'),
|
833 |
+
'4/5' => __('4/5', 'magee-shortcodes'),
|
834 |
+
'5/6' => __('5/6', 'magee-shortcodes'),
|
835 |
+
)
|
836 |
+
),
|
837 |
+
'top_icon' => array(
|
838 |
+
'type' => 'iconpicker',
|
839 |
+
'label' => __( 'Top Icon', 'magee-shortcodes' ),
|
840 |
+
'desc' => __( 'Click an icon to select, click again to deselect.', 'magee-shortcodes' ),
|
841 |
+
'options' => $icons
|
842 |
+
),
|
843 |
+
'top_icon_color' => array(
|
844 |
+
'std' => '',
|
845 |
+
'type' => 'colorpicker',
|
846 |
+
'label' => __( 'Top Icon Color', 'magee-shortcodes'),
|
847 |
+
'desc' => __( 'Set color for top icon.','magee-shortcodes')
|
848 |
+
|
849 |
+
),
|
850 |
+
'middle_left_icon' => array(
|
851 |
+
'type' => 'iconpicker',
|
852 |
+
'label' => __( 'Middle Left Icon', 'magee-shortcodes' ),
|
853 |
+
'desc' => __( 'Insert text before the number.', 'magee-shortcodes' ),
|
854 |
+
'options' => $icons
|
855 |
+
),
|
856 |
+
|
857 |
+
'middle_left_text' => array(
|
858 |
+
'std' => '',
|
859 |
+
'type' => 'text',
|
860 |
+
'label' => __( 'Middle Left Text', 'magee-shortcodes' ),
|
861 |
+
'desc' => __( 'Left text of counter num', 'magee-shortcodes' ),
|
862 |
+
),
|
863 |
+
|
864 |
+
'counter_num' => array(
|
865 |
+
'std' => '100',
|
866 |
+
'type' => 'number',
|
867 |
+
'max' => '200',
|
868 |
+
'min' => '0',
|
869 |
+
'label' => __( 'Counter Num', 'magee-shortcodes' ),
|
870 |
+
'desc' => __( 'The animated counter number.', 'magee-shortcodes' ),
|
871 |
+
),
|
872 |
+
'middle_right_text' => array(
|
873 |
+
'std' => '',
|
874 |
+
'type' => 'text',
|
875 |
+
'label' => __( 'Middle Right Text', 'magee-shortcodes' ),
|
876 |
+
'desc' => __( 'Insert text after the number.', 'magee-shortcodes' ),
|
877 |
+
),
|
878 |
+
|
879 |
+
'bottom_title' => array(
|
880 |
+
'std' => '',
|
881 |
+
'type' => 'text',
|
882 |
+
'label' => __( 'Bottom Title', 'magee-shortcodes' ),
|
883 |
+
'desc' => __( 'Insert Title for counter.', 'magee-shortcodes' ),
|
884 |
+
),
|
885 |
+
|
886 |
+
'border' => array(
|
887 |
+
'type' => 'choose',
|
888 |
+
'label' => __( 'Display Border', 'magee-shortcodes' ),
|
889 |
+
'desc' => __( 'Choose to display border for counter.', 'magee-shortcodes' ),
|
890 |
+
'options' => array(
|
891 |
+
'0' => __('No', 'magee-shortcodes' ),
|
892 |
+
'1' => __('Yes', 'magee-shortcodes' ),
|
893 |
+
)
|
894 |
+
|
895 |
+
),
|
896 |
+
'class' => array(
|
897 |
+
'std' => '',
|
898 |
+
'type' => 'text',
|
899 |
+
'label' => __( 'CSS Class', 'magee-shortcodes' ),
|
900 |
+
'desc' => __( 'Add a class to the wrapping HTML element.', 'magee-shortcodes' )
|
901 |
+
),
|
902 |
+
'id' => array(
|
903 |
+
'std' => '',
|
904 |
+
'type' => 'text',
|
905 |
+
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
906 |
+
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
907 |
+
)
|
908 |
+
),
|
909 |
+
'shortcode' => "[ms_counter box_width=\"{{box_width}}\" top_icon=\"{{top_icon}}\" top_icon_color=\"{{top_icon_color}}\" middle_left_icon=\"{{middle_left_icon}}\" counter_num=\"{{counter_num}}\" middle_left_text=\"{{middle_left_text}}\" middle_right_text=\"{{middle_right_text}}\" bottom_title=\"{{bottom_title}}\" border=\"{{border}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n",
|
910 |
+
),
|
911 |
'popup_title' => __( 'Counter Shortcode', 'magee-shortcodes' ),
|
912 |
'name' => __('counter-box-shortcode/','magee-shortocdes'),
|
913 |
);
|
914 |
|
915 |
+
|
916 |
/*******************************************************
|
917 |
* Custom Box Config
|
918 |
********************************************************/
|
931 |
'label' => __( 'Background Image', 'magee-shortcodes' ),
|
932 |
'desc' => __( 'Upload an image to display in background of custom box.', 'magee-shortcodes' ),
|
933 |
),
|
934 |
+
'fixed_background' => array(
|
935 |
+
'type' => 'choose',
|
936 |
+
'std' => 'yes',
|
937 |
+
'label' => __( 'Fixed Background', 'magee-shortcodes' ),
|
938 |
+
'desc' => __( 'Choose to fixed Background Image', 'magee-shortcodes' ),
|
939 |
+
'options' => $choices,
|
940 |
+
),
|
941 |
+
'background_position' => array(
|
942 |
+
'type' => 'select',
|
943 |
+
'std' => 'top left',
|
944 |
+
'label' => __( 'Background Position' , 'magee-shortcodes'),
|
945 |
+
'desc' => __( 'Choose the postion of the background image' , 'magee-shortcodes'),
|
946 |
+
'options' => array(
|
947 |
+
'top left' => __( 'Top Left', 'magee-shortcodes' ),
|
948 |
+
'top center' => __( 'Top Center', 'magee-shortcodes' ),
|
949 |
+
'top right' => __( 'Top Right', 'magee-shortcodes' ),
|
950 |
+
'center left' => __( 'Center Left', 'magee-shortcodes' ),
|
951 |
+
'center center' => __( 'Center Center', 'magee-shortcodes' ),
|
952 |
+
'center right' => __( 'Center Right', 'magee-shortcodes' ),
|
953 |
+
'bottom left' => __( 'Bottom Left', 'magee-shortcodes' ),
|
954 |
+
'bottom center' => __( 'Bottom Center', 'magee-shortcodes' ),
|
955 |
+
'bottom right' => __( 'Bottom Right', 'magee-shortcodes' )
|
956 |
+
)
|
957 |
+
),
|
958 |
'padding' => array(
|
959 |
'std' => '30',
|
960 |
'type' => 'number',
|
976 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
977 |
),
|
978 |
),
|
979 |
+
'shortcode' => '[ms_custom_box backgroundimage="{{backgroundimage}}" fixed_background="{{fixed_background}}" background_position="{{background_position}}" padding="{{padding}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_custom_box]',
|
980 |
'popup_title' => __( ' Custom Box Shortcode', 'magee-shortcodes'),
|
981 |
'name' => __('custom-box-shortcode/','magee-shortocdes'),
|
982 |
);
|
1668 |
'options' => array(
|
1669 |
'horizontal' => __('Horizontal', 'magee-shortcodes'),
|
1670 |
'vertical' => __('Vertical', 'magee-shortcodes'),
|
1671 |
+
'flip-left' => __('Flip Left', 'magee-shortcodes'),
|
1672 |
+
'flip-right' => __('Flip Right', 'magee-shortcodes'),
|
1673 |
+
'flip-top' => __('Flip Top', 'magee-shortcodes'),
|
1674 |
+
'flip-bottom' => __('Flip Bottom', 'magee-shortcodes'),
|
1675 |
+
'slide-left' => __('Slide Left', 'magee-shortcodes'),
|
1676 |
+
'slide-right' => __('Slide Right', 'magee-shortcodes'),
|
1677 |
+
'slide-top' => __('Slide Top', 'magee-shortcodes'),
|
1678 |
+
'slide-bottom' => __('Slide Bottom', 'magee-shortcodes'),
|
1679 |
)
|
1680 |
),
|
1681 |
'front_paddings' => array(
|
1692 |
'label' => __( 'Front Background Color', 'magee-shortcodes' ),
|
1693 |
'desc' => __( 'Set background color for front container of flip box.', 'magee-shortcodes')
|
1694 |
),
|
1695 |
+
'front_color' => array(
|
1696 |
'type' => 'colorpicker',
|
1697 |
+
'std' =>'#ffffff',
|
1698 |
'label' => __( 'Front Font Color', 'magee-shortcodes' ),
|
1699 |
'desc' => __( 'Custom setting only. Set the background color for custom alert boxes.', 'magee-shortcodes')
|
1700 |
+
),
|
1701 |
'front_content' => array(
|
1702 |
'std' => __('Front Content', 'magee-shortcodes'),
|
1703 |
'type' => 'textarea',
|
1715 |
'back_background' => array(
|
1716 |
'std'=>'',
|
1717 |
'type' => 'colorpicker',
|
1718 |
+
'label' => __( 'Back Background Color', 'magee-shortcodes' ),
|
1719 |
'desc' => __( 'Set background color for back container of flip box.', 'magee-shortcodes')
|
1720 |
),
|
1721 |
+
'back_color' => array(
|
1722 |
'std' =>'#ffffff',
|
1723 |
'type' => 'colorpicker',
|
1724 |
'label' => __( 'Back Font Color', 'magee-shortcodes' ),
|
1725 |
'desc' => __( 'Custom setting only. Set the background color for custom alert boxes.', 'magee-shortcodes')
|
1726 |
+
),
|
1727 |
'back_content' => array(
|
1728 |
'std' => __('Back Content', 'magee-shortcodes'),
|
1729 |
'type' => 'textarea',
|
1744 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
1745 |
),
|
1746 |
),
|
1747 |
+
'shortcode' => '[ms_flip_box direction="{{direction}}" front_paddings="{{front_paddings}}" front_background="{{front_background}}" front_color="{{front_color}}" back_paddings="{{back_paddings}}" back_background="{{back_background}}" back_color="{{back_color}}" class="{{class}}" id="{{id}}"]{{front_content}}|||{{back_content}}[/ms_flip_box]',
|
1748 |
'popup_title' => __( 'Flip Box Shortcode', 'magee-shortcodes'),
|
1749 |
'name' => __('flip-box-shortcode/','magee-shortocdes'),
|
1750 |
);
|
1895 |
'label' => __( 'Border Radius', 'magee-shortcodes' ),
|
1896 |
'desc' => __( 'In pixels (px), eg: 1px.', 'magee-shortcodes' ),
|
1897 |
),
|
1898 |
+
'color' => array(
|
1899 |
+
'type' => 'colorpicker',
|
1900 |
+
'label' => __( 'Font Color', 'magee-shortcodes' ),
|
1901 |
+
'desc' => __( 'Set font color for highlight item.', 'magee-shortcodes')
|
1902 |
+
),
|
1903 |
'content' => array(
|
1904 |
'std' => __('Your Content Goes Here', 'magee-shortcodes'),
|
1905 |
'type' => 'textarea',
|
1920 |
),
|
1921 |
|
1922 |
),
|
1923 |
+
'shortcode' => '[ms_highlight background_color="{{background_color}}" border_radius="{{border_radius}}" color="{{color}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_highlight]',
|
1924 |
'popup_title' => __( 'Highlight Shortcode', 'magee-shortcodes' ),
|
1925 |
'name' => __('highlight-shortcode/','magee-shortocdes'),
|
1926 |
);
|
1989 |
'icon' => 'fa-file-image-o',
|
1990 |
'no_preview' => true,
|
1991 |
'params' => array(
|
1992 |
+
'style' => array(
|
1993 |
+
'type' => 'select',
|
1994 |
+
'std' => 'horizontal',
|
1995 |
+
'label' => __( 'Style', 'magee-shortcodes'),
|
1996 |
+
'desc' => __( 'Select how the image compare display.', 'magee-shortcodes'),
|
1997 |
+
'options' => array(
|
1998 |
+
'horizontal' => 'Horizontal',
|
1999 |
+
'vertical' => 'Vertical',
|
2000 |
+
)
|
2001 |
+
),
|
2002 |
+
'percent' => array(
|
2003 |
+
'type' => 'select',
|
2004 |
+
'std' => '0.5',
|
2005 |
+
'label' => __( 'Percent', 'magee-shortcodes'),
|
2006 |
+
'desc' => __( 'Choose default offset pct', 'magee-shortcodes'),
|
2007 |
+
'options' => $opacity
|
2008 |
+
),
|
2009 |
'image_left' => array(
|
2010 |
'std' => '',
|
2011 |
'type' => 'uploader',
|
2031 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
2032 |
),
|
2033 |
),
|
2034 |
+
'shortcode' => '[ms_image_compare style="{{style}}" percent="{{percent}}" image_left="{{image_left}}" image_right="{{image_right}}" class="{{class}}" id="{{id}}"]',
|
2035 |
'popup_title' => __( 'Image Compare Shortcode', 'magee-shortcodes' ),
|
2036 |
'name' => __('image-compare-shortcode/','magee-shortocdes'),
|
2037 |
);
|
2564 |
'no_preview' => true,
|
2565 |
'icon' => 'fa-circle-o-notch',
|
2566 |
'params' => array(
|
2567 |
+
'line_cap' => array(
|
2568 |
+
'std' => 'round',
|
2569 |
+
'type' => 'select',
|
2570 |
+
'label' => __( 'Line Cap', 'magee-shortcodes' ),
|
2571 |
+
'desc' => __( 'Select how the ending of the bar line looks like.', 'magee-shortcodes' ),
|
2572 |
+
'options' => array(
|
2573 |
+
'round' => __( 'Round','magee-shortcodes') ,
|
2574 |
+
'butt' => __( 'Butt','magee-shortcodes') ,
|
2575 |
+
'square' => __( 'Square','magee-shortcodes') ,
|
2576 |
+
),
|
2577 |
+
),
|
2578 |
'percent' => array(
|
2579 |
'std' => '80',
|
2580 |
'type' => 'number',
|
2631 |
),
|
2632 |
|
2633 |
),
|
2634 |
+
'shortcode' => '[ms_piechart line_cap="{{line_cap}}" percent="{{percent}}" filledcolor="{{filledcolor}}" size="{{size}}" font_size="{{font_size}}" unfilledcolor="{{unfilledcolor}}" class="{{class}}" ]{{content}}[/ms_piechart]',
|
2635 |
'popup_title' => __( 'Piechart Shortcode', 'magee-shortcodes' ),
|
2636 |
'name' => __('piechart-shortcode/','magee-shortcodes'),
|
2637 |
);
|
2713 |
'no_preview' => true,
|
2714 |
'icon' => 'fa-tasks',
|
2715 |
'params' => array(
|
2716 |
+
'style' => array(
|
2717 |
+
'type' => 'select',
|
2718 |
+
'label' => __( 'Style', 'magee-shortcodes' ),
|
2719 |
+
'desc' => __( 'Choose the show of progress bar.', 'magee-shortcodes' ),
|
2720 |
+
'options' => array(
|
2721 |
+
'normal' => __( 'Normal Style', 'magee-shortcodes' ),
|
2722 |
+
'circle' => __( 'Circle Style', 'magee-shortcodes' ),
|
2723 |
+
)
|
2724 |
+
|
2725 |
+
),
|
2726 |
'striped' => array(
|
2727 |
'type' => 'select',
|
2728 |
'label' => __( 'Striped', 'magee-shortcodes' ),
|
2821 |
|
2822 |
|
2823 |
),
|
2824 |
+
'shortcode' => '[ms_progress style="{{style}}" striped="{{striped}}" rounded="{{rounded}}" number="{{number}}" percent="{{percent}}" text="{{text}}" height="{{height}}" color="{{color}}" textalign="{{textalign}}" textposition="{{textposition}}" class="{{class}}" id="{{id}}"]',
|
2825 |
'popup_title' => __( 'Progress Shortcode', 'magee-shortcodes' ),
|
2826 |
'name' => __('progress-bar-shortcode/','magee-shortcodes'),
|
2827 |
);
|
languages/magee-shortcodes.mo
CHANGED
Binary file
|
languages/magee-shortcodes.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: shijun quan <support@mageewp.com>\n"
|
8 |
"Language-Team: MageeWP\n"
|
9 |
"Language: en_US\n"
|
@@ -17,39 +17,39 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: inc/core.php:
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: inc/core.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: inc/core.php:
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/core.php:
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: inc/core.php:
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: inc/core.php:
|
41 |
-
#: inc/options.php:
|
42 |
-
#: inc/options.php:
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/core.php:
|
47 |
-
#: inc/options.php:
|
48 |
-
#: inc/options.php:
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: inc/core.php:
|
53 |
msgid "Select a slider"
|
54 |
msgstr ""
|
55 |
|
@@ -101,9 +101,8 @@ msgstr ""
|
|
101 |
msgid "Use the button above to add Slides !"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/magee-slider.php:158 inc/options.php:
|
105 |
-
#: inc/options.php:
|
106 |
-
#: inc/options.php:2290
|
107 |
msgid "Title"
|
108 |
msgstr ""
|
109 |
|
@@ -115,2744 +114,3116 @@ msgstr ""
|
|
115 |
msgid "Date"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/options.php:
|
119 |
-
#: inc/options.php:
|
120 |
-
#: inc/options.php:
|
121 |
msgid "Left"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/options.php:
|
|
|
125 |
msgid "Center"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/options.php:
|
129 |
-
#: inc/options.php:
|
130 |
-
#: inc/options.php:
|
131 |
msgid "Right"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/options.php:
|
135 |
-
#: inc/options.php:
|
136 |
-
#: inc/options.php:
|
137 |
-
#: inc/options.php:
|
138 |
-
#: inc/options.php:
|
139 |
-
#: inc/options.php:
|
140 |
-
#: inc/options.php:
|
141 |
-
#: inc/options.php:
|
142 |
-
#: inc/options.php:
|
143 |
-
#: inc/options.php:
|
144 |
-
#: inc/options.php:
|
145 |
-
#: inc/options.php:
|
146 |
-
#: inc/options.php:
|
147 |
-
#: inc/options.php:
|
148 |
-
#: inc/options.php:
|
|
|
|
|
149 |
msgid "CSS Class"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/options.php:
|
153 |
-
#: inc/options.php:
|
154 |
-
#: inc/options.php:
|
155 |
-
#: inc/options.php:
|
156 |
-
#: inc/options.php:
|
157 |
-
#: inc/options.php:
|
158 |
-
#: inc/options.php:
|
159 |
-
#: inc/options.php:
|
160 |
-
#: inc/options.php:
|
161 |
-
#: inc/options.php:
|
162 |
-
#: inc/options.php:
|
163 |
-
#: inc/options.php:
|
164 |
-
#: inc/options.php:
|
165 |
-
#: inc/options.php:
|
166 |
-
#: inc/options.php:
|
|
|
|
|
167 |
msgid "Add a class to the wrapping HTML element."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: inc/options.php:
|
171 |
-
#: inc/options.php:
|
172 |
-
#: inc/options.php:
|
173 |
-
#: inc/options.php:
|
174 |
-
#: inc/options.php:
|
175 |
-
#: inc/options.php:
|
176 |
-
#: inc/options.php:
|
177 |
-
#: inc/options.php:
|
178 |
-
#: inc/options.php:
|
179 |
-
#: inc/options.php:
|
180 |
-
#: inc/options.php:
|
181 |
-
#: inc/options.php:
|
182 |
-
#: inc/options.php:
|
183 |
-
#: inc/options.php:
|
184 |
-
#: inc/options.php:
|
|
|
185 |
msgid "CSS ID"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/options.php:
|
189 |
-
#: inc/options.php:
|
190 |
-
#: inc/options.php:
|
191 |
-
#: inc/options.php:
|
192 |
-
#: inc/options.php:
|
193 |
-
#: inc/options.php:
|
194 |
-
#: inc/options.php:
|
195 |
-
#: inc/options.php:
|
196 |
-
#: inc/options.php:
|
197 |
-
#: inc/options.php:
|
198 |
-
#: inc/options.php:
|
199 |
-
#: inc/options.php:
|
200 |
-
#: inc/options.php:
|
201 |
-
#: inc/options.php:
|
202 |
-
#: inc/options.php:
|
|
|
203 |
msgid "Add an ID to the wrapping HTML element."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: inc/options.php:
|
207 |
-
#: inc/options.php:
|
208 |
-
#: inc/options.php:
|
209 |
msgid "Style"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/options.php:
|
213 |
msgid "Simple Style"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/options.php:
|
217 |
msgid "Boxed Style"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/options.php:
|
221 |
msgid "Type"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/options.php:
|
225 |
msgid "Type 1"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/options.php:
|
229 |
msgid "Type 2"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/options.php:
|
233 |
msgid "Accordion Items"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/options.php:
|
237 |
msgid "Insert accordion items shortcode."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/options.php:
|
241 |
msgid "Accordion Shortcode"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/options.php:
|
245 |
-
|
246 |
-
|
|
|
|
|
|
|
|
|
247 |
msgid "Icon"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/options.php:
|
251 |
-
#: inc/options.php:
|
252 |
-
#: inc/options.php:
|
253 |
-
#: inc/options.php:
|
254 |
-
#: inc/options.php:
|
255 |
msgid "Click an icon to select, click again to deselect."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/options.php:
|
259 |
msgid "Warning! Better check yourself, you're not looking too good."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/options.php:
|
263 |
msgid "Alert Content"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/options.php:
|
267 |
msgid "Insert the content for the alert."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/options.php:
|
271 |
-
#: inc/options.php:
|
|
|
272 |
msgid "Background Color"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/options.php:
|
276 |
msgid "Set background color for alert box."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/options.php:
|
280 |
msgid "Text Color"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/options.php:
|
284 |
msgid "Set content color & border color for alert box."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/options.php:
|
288 |
-
#: inc/options.php:
|
289 |
msgid "Border Width"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/options.php:
|
293 |
-
#: inc/options.php:
|
294 |
-
#: inc/options.php:
|
295 |
-
#: inc/options.php:
|
296 |
-
#: inc/options.php:
|
297 |
msgid "In pixels (px), eg: 1px."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/options.php:
|
301 |
-
#: inc/options.php:
|
302 |
msgid "Border Radius"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/options.php:
|
306 |
msgid "Box Shadow"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/options.php:
|
310 |
msgid "Display a box shadow for alert."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/options.php:
|
314 |
msgid "Dismissable"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/options.php:
|
318 |
msgid "The alert box is dismissable."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/options.php:
|
322 |
msgid "Alert Shortcode"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
326 |
msgid "Mp3 URL"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/options.php:
|
330 |
msgid "Add the URL of audio in MP3 format."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/options.php:
|
334 |
msgid "Ogg URL"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/options.php:
|
338 |
msgid "Add the URL of audio in OGG format."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/options.php:
|
342 |
msgid "Wav URL"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/options.php:
|
346 |
msgid "Add the URL of audio in WAV format."
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/options.php:
|
350 |
msgid "Mute Audio"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/options.php:
|
354 |
msgid "Choose to mute the audio."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: inc/options.php:
|
358 |
msgid "Autoplay Audio"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: inc/options.php:
|
362 |
msgid "Choose to autoplay the audio."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: inc/options.php:
|
366 |
msgid "Loop Audio"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/options.php:
|
370 |
msgid "Choose to loop the audio."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/options.php:
|
374 |
msgid "Controls Audio"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/options.php:
|
378 |
msgid "Choose to display controls of the audio."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/options.php:
|
382 |
msgid "Audio Shortcode"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
386 |
msgid "Button Style"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: inc/options.php:
|
390 |
msgid "Select the button's default style."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/options.php:
|
394 |
-
#: inc/options.php:
|
395 |
msgid "Normal"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: inc/options.php:
|
399 |
msgid "Dark"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: inc/options.php:
|
403 |
msgid "Light"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: inc/options.php:
|
407 |
msgid "2d"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: inc/options.php:
|
411 |
msgid "3d"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: inc/options.php:
|
415 |
msgid "Line"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: inc/options.php:
|
419 |
msgid "Line Dark"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: inc/options.php:
|
423 |
msgid "Line Light"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: inc/options.php:
|
427 |
msgid "Button URL"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: inc/options.php:
|
431 |
msgid "Add the button's url eg: http://example.com."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: inc/options.php:
|
435 |
msgid "Button Size"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: inc/options.php:
|
439 |
msgid "Select the button's size."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: inc/options.php:
|
443 |
msgid "Small"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: inc/options.php:
|
447 |
msgid "Medium"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: inc/options.php:
|
451 |
msgid "Large"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: inc/options.php:
|
455 |
msgid "XLarge"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc/options.php:
|
459 |
msgid "In pixels (px), default: 2px."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: inc/options.php:
|
463 |
msgid "Button Shape"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: inc/options.php:
|
467 |
msgid "Select the button's shape. Choose default for theme option selection."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: inc/options.php:
|
471 |
msgid "Default"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: inc/options.php:
|
475 |
msgid "Square"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: inc/options.php:
|
479 |
msgid "Rounded"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: inc/options.php:
|
483 |
msgid "Full Rounded"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: inc/options.php:
|
487 |
msgid "Text Shadow"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: inc/options.php:
|
491 |
msgid "Display shadow for button text."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: inc/options.php:
|
495 |
msgid "Gradient"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: inc/options.php:
|
499 |
msgid "Display gradient for button."
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: inc/options.php:
|
503 |
msgid "Block Button"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/options.php:
|
507 |
msgid "Display in full width."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: inc/options.php:
|
511 |
msgid "Button Target"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: inc/options.php:
|
515 |
msgid "_self = open in same window <br />_blank = open in new window."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: inc/options.php:
|
519 |
msgid "Button Text"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: inc/options.php:
|
523 |
msgid "Button's Text"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: inc/options.php:
|
527 |
msgid "Add the text that will display in the button."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: inc/options.php:
|
531 |
msgid "Set background color for button."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: inc/options.php:
|
535 |
msgid "Button Color"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/options.php:
|
539 |
msgid "Set content color & border color for button."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/options.php:
|
543 |
msgid "Button Icon"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/options.php:
|
547 |
msgid "Icon Animation Type"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/options.php:
|
551 |
msgid "Select the type of animation to use on the button icon."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/options.php:
|
555 |
msgid "Button Shortcode"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
msgid "Column Shortcode"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
563 |
msgid "Column Style"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/options.php:
|
567 |
msgid "Select the size of column."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/options.php:
|
571 |
msgid "1/1"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/options.php:
|
575 |
msgid "1/2"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/options.php:
|
579 |
msgid "1/3"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/options.php:
|
583 |
msgid "1/4"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/options.php:
|
587 |
msgid "1/5"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/options.php:
|
591 |
msgid "1/6"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/options.php:
|
595 |
msgid "2/3"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/options.php:
|
599 |
msgid "2/5"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/options.php:
|
603 |
msgid "3/4"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/options.php:
|
607 |
msgid "3/5"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/options.php:
|
611 |
msgid "4/5"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/options.php:
|
615 |
msgid "5/6"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/options.php:
|
619 |
msgid "Column Content"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/options.php:
|
623 |
msgid " Column Content"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/options.php:
|
627 |
msgid "Insert the column's content"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/options.php:
|
631 |
-
msgid "
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: inc/options.php:471 inc/options.php:1056 inc/options.php:2194
|
635 |
-
#: inc/options.php:2475 inc/options.php:2508 inc/options.php:2573
|
636 |
-
#: inc/options.php:2992 inc/options.php:3038 inc/options.php:3252
|
637 |
-
msgid "Content"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: inc/options.php:472
|
641 |
-
msgid "Insert content for custom box."
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: inc/options.php:476 inc/options.php:2760
|
645 |
-
msgid "Background Image"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/options.php:
|
649 |
-
msgid "
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: inc/options.php:
|
653 |
-
msgid "
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: inc/options.php:
|
657 |
-
msgid "
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc/options.php:
|
661 |
-
msgid "
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: inc/options.php:
|
665 |
-
msgid "Set
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/options.php:
|
669 |
-
msgid "
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/options.php:
|
673 |
-
msgid "
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: inc/options.php:
|
677 |
-
msgid "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: inc/options.php:
|
681 |
-
msgid "
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: inc/options.php:
|
685 |
msgid "Top Icon"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: inc/options.php:
|
689 |
msgid "Top Icon Color"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: inc/options.php:
|
693 |
msgid "Set color for top icon."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: inc/options.php:
|
697 |
-
msgid "Left Icon"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: inc/options.php:
|
701 |
msgid "Insert text before the number."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: inc/options.php:
|
705 |
-
msgid "Left Text"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: inc/options.php:
|
709 |
msgid "Left text of counter num"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: inc/options.php:
|
713 |
msgid "Counter Num"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: inc/options.php:
|
717 |
msgid "The animated counter number."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: inc/options.php:
|
721 |
-
msgid "Right Text"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: inc/options.php:
|
725 |
msgid "Insert text after the number."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
729 |
msgid "Insert Title for counter."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: inc/options.php:
|
733 |
msgid "Display Border"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: inc/options.php:
|
737 |
msgid "Choose to display border for counter."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: inc/options.php:
|
741 |
-
#: inc/options.php:
|
742 |
-
#: inc/options.php:
|
743 |
-
#: inc/options.php:
|
744 |
-
#: inc/options.php:
|
745 |
-
#: inc/options.php:
|
746 |
msgid "No"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: inc/options.php:
|
750 |
-
#: inc/options.php:
|
751 |
-
#: inc/options.php:
|
752 |
-
#: inc/options.php:
|
753 |
-
#: inc/options.php:
|
754 |
-
#: inc/options.php:
|
755 |
msgid "Yes"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/options.php:
|
759 |
msgid "Counter Shortcode"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: inc/options.php:
|
763 |
-
msgid "
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: inc/options.php:655
|
767 |
-
msgid "Select the Divider's Style."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/options.php:
|
771 |
-
msgid "
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/options.php:
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: inc/options.php:
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/options.php:
|
783 |
-
msgid "
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: inc/options.php:
|
787 |
-
msgid "
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: inc/options.php:
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: inc/options.php:
|
795 |
-
msgid "
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: inc/options.php:
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: inc/options.php:
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: inc/options.php:
|
807 |
-
msgid "
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: inc/options.php:
|
811 |
-
msgid "
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: inc/options.php:
|
815 |
-
msgid "
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: inc/options.php:
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: inc/options.php:
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: inc/options.php:
|
827 |
-
msgid "
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: inc/options.php:
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: inc/options.php:
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: inc/options.php:
|
839 |
-
|
840 |
-
msgid "Border Color"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: inc/options.php:
|
844 |
-
msgid "
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: inc/options.php:
|
848 |
-
msgid "
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: inc/options.php:
|
852 |
-
msgid "
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: inc/options.php:
|
856 |
-
msgid "
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: inc/options.php:
|
860 |
-
msgid "
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: inc/options.php:
|
864 |
-
|
865 |
-
"
|
866 |
-
"selection."
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: inc/options.php:
|
870 |
-
|
|
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: inc/options.php:
|
874 |
-
|
|
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: inc/options.php:
|
878 |
-
|
|
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: inc/options.php:
|
882 |
-
|
|
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: inc/options.php:
|
886 |
-
|
|
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: inc/options.php:
|
890 |
-
|
|
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: inc/options.php:
|
894 |
-
|
|
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: inc/options.php:
|
898 |
-
|
|
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: inc/options.php:
|
902 |
-
msgid "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: inc/options.php:
|
906 |
-
msgid "
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: inc/options.php:
|
910 |
-
msgid "
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: inc/options.php:
|
914 |
-
msgid "
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: inc/options.php:
|
918 |
-
msgid "
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: inc/options.php:
|
922 |
-
msgid "
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: inc/options.php:
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: inc/options.php:
|
930 |
-
msgid "
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: inc/options.php:
|
934 |
-
msgid "
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: inc/options.php:
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: inc/options.php:
|
942 |
-
msgid "
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: inc/options.php:
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: inc/options.php:
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: inc/options.php:
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: inc/options.php:
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: inc/options.php:
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: inc/options.php:
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: inc/options.php:
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: inc/options.php:
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: inc/options.php:
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/options.php:
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: inc/options.php:
|
986 |
-
|
|
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: inc/options.php:
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: inc/options.php:
|
994 |
-
msgid "
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: inc/options.php:
|
998 |
-
msgid "
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: inc/options.php:
|
1002 |
-
msgid "
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: inc/options.php:
|
1006 |
-
msgid "
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: inc/options.php:
|
1010 |
-
msgid "
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: inc/options.php:
|
1014 |
-
msgid "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: inc/options.php:
|
1018 |
-
msgid "
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: inc/options.php:
|
1022 |
-
msgid "
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: inc/options.php:
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: inc/options.php:
|
1030 |
-
msgid "
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: inc/options.php:
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: inc/options.php:
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: inc/options.php:
|
1042 |
-
|
1043 |
-
msgid "In pixels (px), eg:1px."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: inc/options.php:
|
1047 |
-
|
1048 |
-
msgid "Mute Video"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: inc/options.php:
|
1052 |
-
|
1053 |
-
msgid "Choose to mute the video."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: inc/options.php:
|
1057 |
-
|
1058 |
-
msgid "Autoplay Video"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: inc/options.php:
|
1062 |
-
|
1063 |
-
msgid "Choose to autoplay the video."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: inc/options.php:
|
1067 |
-
|
1068 |
-
|
|
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: inc/options.php:
|
1072 |
-
|
1073 |
-
msgid "Choose to loop the video."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: inc/options.php:
|
1077 |
-
|
1078 |
-
msgid "Show Controls"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: inc/options.php:
|
1082 |
-
|
1083 |
-
msgid "Choose to display controls for the video player."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: inc/options.php:
|
1087 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
1091 |
msgid "More Icon"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: inc/options.php:
|
1095 |
msgid ""
|
1096 |
"Set icon for expand title. Click an icon to select, click again to deselect."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: inc/options.php:
|
1100 |
msgid "More Text"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: inc/options.php:
|
1104 |
msgid "Set text for expand title."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: inc/options.php:
|
1108 |
msgid "Less Icon"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: inc/options.php:
|
1112 |
msgid ""
|
1113 |
"Set icon for fold title. Click an icon to select, click again to deselect."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: inc/options.php:
|
1117 |
msgid "Less Text"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: inc/options.php:
|
1121 |
msgid "Set text for fold title. "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: inc/options.php:
|
1125 |
msgid "This text block can be expanded."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: inc/options.php:
|
1129 |
msgid "Expand Shortcode"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
1133 |
msgid "Feature Box Style"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: inc/options.php:
|
1137 |
msgid "Select the Feature Box's Style."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: inc/options.php:
|
1141 |
msgid "Icon on Top of Title"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: inc/options.php:
|
1145 |
msgid "Icon Beside Title and Content"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: inc/options.php:
|
1149 |
msgid "Icon Beside Title"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: inc/options.php:
|
1153 |
msgid "Boxed"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: inc/options.php:
|
1157 |
msgid "Insert title for feature box."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: inc/options.php:
|
1161 |
msgid "Title Font Size"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: inc/options.php:
|
1165 |
msgid "Set font size for title of feature box."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: inc/options.php:
|
1169 |
msgid "Title Color"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: inc/options.php:
|
1173 |
msgid "Set color for title of feature box."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: inc/options.php:
|
1177 |
msgid "Icon Hover Animation"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: inc/options.php:
|
1181 |
msgid "Select the Icon's Animation."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: inc/options.php:
|
1185 |
msgid "Icon Size"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: inc/options.php:
|
1189 |
msgid "Set size for icon of feature box."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: inc/options.php:
|
1193 |
-
#: inc/options.php:
|
1194 |
msgid "Icon Color"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: inc/options.php:
|
1198 |
msgid "Set color for icon of feature box."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: inc/options.php:
|
1202 |
msgid "Icon Border Color"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: inc/options.php:
|
1206 |
msgid "Set border color for icon of feature box."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: inc/options.php:
|
1210 |
msgid "Icon Border Width"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: inc/options.php:
|
1214 |
msgid "Set border width for icon of feature box."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: inc/options.php:
|
1218 |
msgid "Flip Icon"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: inc/options.php:
|
1222 |
msgid "Choose to flip the icon of feature box."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: inc/options.php:
|
|
|
1226 |
msgid "None"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: inc/options.php:
|
1230 |
msgid "Horizontal"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: inc/options.php:
|
1234 |
msgid "Vertical"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: inc/options.php:
|
1238 |
msgid "Spinning Icon"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: inc/options.php:
|
1242 |
msgid "Choose to spin the icon of feature box."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: inc/options.php:
|
1246 |
-
#: inc/options.php:
|
1247 |
msgid "Icon Circle Background Color"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: inc/options.php:
|
1251 |
msgid "Set background for icon circle of feature box."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: inc/options.php:
|
1255 |
msgid "Icon Alignment"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: inc/options.php:
|
1259 |
msgid "Set alignment for style2/style3 of feature box."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: inc/options.php:
|
1263 |
msgid "Icon Circle"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: inc/options.php:
|
1267 |
msgid "Choose to display icon of feature box in circle."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: inc/options.php:
|
1271 |
msgid "Icon Image"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: inc/options.php:
|
1275 |
msgid "To upload your own icon image, remember to deselect icon above."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: inc/options.php:
|
1279 |
msgid "Icon Image Width"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: inc/options.php:
|
1283 |
msgid ""
|
1284 |
"If using custom icon image, set icon image width. In percentage of pixels "
|
1285 |
"(px), eg: 1px."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: inc/options.php:
|
1289 |
msgid "Icon Image Height"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: inc/options.php:
|
1293 |
msgid ""
|
1294 |
"If using custom icon image, set icon image height. In percentage of pixels "
|
1295 |
"(px), eg: 1px."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/options.php:
|
1299 |
msgid "Link URL"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: inc/options.php:
|
1303 |
msgid "Set link for feature box, eg: http://example.com."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: inc/options.php:
|
1307 |
msgid "Link Target"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: inc/options.php:
|
1311 |
msgid "_self = open in same window _blank = open in new window."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: inc/options.php:
|
1315 |
msgid "_blank"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: inc/options.php:
|
1319 |
msgid "_self"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: inc/options.php:
|
1323 |
msgid "Link Text"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: inc/options.php:
|
1327 |
msgid ""
|
1328 |
"Insert link text for feature box. It would not display if you leave it as "
|
1329 |
"blank."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: inc/options.php:
|
1333 |
msgid "Link Color"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: inc/options.php:
|
1337 |
msgid "Set color for link of feature box."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: inc/options.php:
|
1341 |
msgid "Content Color"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: inc/options.php:
|
1345 |
msgid "Set color for content of feature box."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: inc/options.php:
|
1349 |
msgid "Set box background color for Boxed Style."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: inc/options.php:
|
1353 |
msgid "For Boxed Style"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: inc/options.php:
|
1357 |
msgid "Your Content Goes Here"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: inc/options.php:
|
1361 |
msgid "Feature Box Content"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: inc/options.php:
|
1365 |
msgid "Feature Box Shortcode"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
1369 |
msgid "Direction"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: inc/options.php:
|
1373 |
msgid "Select flip directioon."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: inc/options.php:
|
1377 |
-
msgid "
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: inc/options.php:
|
1381 |
-
msgid "
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1385 |
msgid "Front Container Paddings"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: inc/options.php:
|
1389 |
msgid "Set paddings for front container of flip box."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: inc/options.php:
|
1393 |
msgid "Front Background Color"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: inc/options.php:
|
1397 |
msgid "Set background color for front container of flip box."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1401 |
msgid "Front Content"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: inc/options.php:
|
1405 |
msgid "Front content."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: inc/options.php:
|
1409 |
msgid "Insert content for front container of flip box."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: inc/options.php:
|
1413 |
msgid "Back Container Paddings"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: inc/options.php:
|
1417 |
msgid "Set paddings for back container of flip box."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
1421 |
msgid "Set background color for back container of flip box."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
1425 |
msgid "Back Content"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: inc/options.php:
|
1429 |
msgid "Back Content."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: inc/options.php:
|
1433 |
msgid "Insert content for back container of flip box."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: inc/options.php:
|
1437 |
msgid "Flip Box Shortcode"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: inc/options.php:
|
1441 |
-
msgid "
|
1442 |
-
msgstr ""
|
1443 |
-
|
1444 |
-
#: inc/options.php:1386
|
1445 |
-
msgid "Content to Higlight"
|
1446 |
-
msgstr ""
|
1447 |
-
|
1448 |
-
#: inc/options.php:1387
|
1449 |
-
msgid "Insert content to highlight."
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
-
#: inc/options.php:1404
|
1453 |
-
msgid "Highlight Shortcode"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: inc/options.php:
|
1457 |
msgid "Insert heading text"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: inc/options.php:
|
1461 |
msgid "Choose a heading style. Leave blank as default."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: inc/options.php:
|
1465 |
msgid "Set color for heading text."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: inc/options.php:
|
1469 |
msgid "Set border color for heading."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: inc/options.php:
|
1473 |
msgid "Text Align"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: inc/options.php:
|
1477 |
msgid "Set text align for this heading."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: inc/options.php:
|
1481 |
msgid "Font Weight"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: inc/options.php:
|
1485 |
msgid "Set font weight for heading text."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: inc/options.php:
|
1489 |
msgid "Font Size"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: inc/options.php:
|
1493 |
msgid "Set font size for heading text. In pixels (px), eg: 1px."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: inc/options.php:
|
1497 |
msgid "Responsive Text"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: inc/options.php:
|
1501 |
msgid "Choose to display responsive text."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: inc/options.php:
|
1505 |
msgid "Heading Shortcode"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
msgid "Set text size for item."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: inc/options.php:
|
1513 |
msgid "Set color for icon."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: inc/options.php:
|
1517 |
msgid "Icon Box"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: inc/options.php:
|
1521 |
msgid "Choose to display boxed icon."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: inc/options.php:
|
1525 |
msgid "Icon Shortcode"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1529 |
msgid "Upload an image to display."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: inc/options.php:
|
1533 |
msgid "Image Link URL"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: inc/options.php:
|
1537 |
msgid "Add the URL the picture will link to, ex: http://example.com."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: inc/options.php:
|
1541 |
msgid ""
|
1542 |
"Choose the border radius of the image frame. In pixels (px), ex: 1px, or "
|
1543 |
"\"round\". Leave blank for theme option selection."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: inc/options.php:
|
1547 |
msgid "Light Box"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: inc/options.php:
|
1551 |
msgid "Choose to display light box once click."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: inc/options.php:
|
1555 |
msgid "Image Frame Shortcode"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: inc/options.php:
|
1559 |
-
msgid "
|
|
|
|
|
|
|
|
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: inc/options.php:
|
1563 |
-
msgid "."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: inc/options.php:
|
1567 |
-
msgid "
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: inc/options.php:
|
1571 |
-
msgid "
|
|
|
|
|
|
|
|
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: inc/options.php:
|
1575 |
msgid "Set color fo list icon."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: inc/options.php:
|
1579 |
msgid "Icon Boxed"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: inc/options.php:
|
1583 |
msgid "Choose to set icon boxed."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: inc/options.php:
|
1587 |
msgid "Set background color for list icon."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: inc/options.php:
|
1591 |
msgid "Boxed Shape"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: inc/options.php:
|
1595 |
msgid "Choose boxed shape for list icon."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: inc/options.php:
|
1599 |
msgid "Circle"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: inc/options.php:
|
1603 |
msgid "Item Border"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: inc/options.php:
|
1607 |
msgid "Choose to display item border for list."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: inc/options.php:
|
1611 |
msgid "Item Size"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: inc/options.php:
|
1615 |
msgid "Set text font size for item."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: inc/options.php:
|
1619 |
msgid "List items"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: inc/options.php:
|
1623 |
msgid "List Shortcode"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: inc/options.php:
|
1627 |
-
msgid "
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: inc/options.php:1764
|
1631 |
-
msgid "Insert text to be displayed in label."
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: inc/options.php:1770
|
1635 |
-
msgid "Set background color for label."
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: inc/options.php:1774
|
1639 |
-
msgid "Label Shortcode"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: inc/options.php:
|
1643 |
msgid "Modal Anchor Text"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: inc/options.php:
|
1647 |
msgid "Insert anchor text for the modal."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: inc/options.php:
|
1651 |
msgid "Modal Heading"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: inc/options.php:
|
1655 |
msgid "Insert heading text for the modal."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: inc/options.php:
|
1659 |
msgid "Size Of Modal"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: inc/options.php:
|
1663 |
msgid "Select the modal window size."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: inc/options.php:
|
1667 |
msgid "Middle"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: inc/options.php:
|
1671 |
msgid "Show Footer"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: inc/options.php:
|
1675 |
msgid "Choose to show the modal footer with close button."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: inc/options.php:
|
1679 |
-
msgid "yes"
|
1680 |
-
msgstr ""
|
1681 |
-
|
1682 |
-
#: inc/options.php:1815
|
1683 |
-
msgid "no"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
-
#: inc/options.php:1821
|
1687 |
msgid "Contents of Modal"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: inc/options.php:
|
1691 |
msgid "Add your content to be displayed in modal."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: inc/options.php:
|
1695 |
msgid "Modal Shortcode"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: inc/options.php:
|
1699 |
-
msgid "
|
1700 |
-
msgstr ""
|
1701 |
-
|
1702 |
-
#: inc/options.php:1869
|
1703 |
-
msgid "Menu Shortcode"
|
1704 |
-
msgstr ""
|
1705 |
-
|
1706 |
-
#: inc/options.php:1883
|
1707 |
-
msgid "Popover Heading"
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: inc/options.php:1884
|
1711 |
-
msgid "Insert heading text of the popover."
|
1712 |
-
msgstr ""
|
1713 |
-
|
1714 |
-
#: inc/options.php:1889
|
1715 |
-
msgid "Triggering Text"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: inc/options.php:
|
1719 |
-
msgid "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: inc/options.php:
|
1723 |
-
msgid "
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: inc/options.php:
|
1727 |
-
msgid "
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: inc/options.php:
|
1731 |
-
msgid "
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: inc/options.php:
|
1735 |
-
msgid "
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: inc/options.php:
|
1739 |
-
msgid "
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: inc/options.php:
|
1743 |
-
msgid "
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: inc/options.php:
|
1747 |
-
msgid "
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: inc/options.php:
|
1751 |
-
msgid "
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: inc/options.php:
|
1755 |
-
msgid "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: inc/options.php:
|
1759 |
-
msgid "
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: inc/options.php:
|
1763 |
-
msgid "
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: inc/options.php:
|
1767 |
msgid "Choose to display info below or beside the image."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: inc/options.php:
|
1771 |
-
msgid "
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: inc/options.php:
|
1775 |
-
msgid "
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: inc/options.php:
|
1779 |
msgid "Name"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: inc/options.php:
|
1783 |
msgid "Insert the name of the person."
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: inc/options.php:
|
1787 |
msgid "Insert the title of the person"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: inc/options.php:
|
1791 |
msgid "Image Overlay Color"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: inc/options.php:
|
1795 |
msgid "Select a hover color to show over the image as an overlay."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: inc/options.php:
|
1799 |
msgid "Image Overlay Opacity"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: inc/options.php:
|
1803 |
msgid "Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: inc/options.php:
|
1807 |
msgid "Profile Description"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: inc/options.php:
|
1811 |
msgid "Insert profile description."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: inc/options.php:
|
1815 |
msgid "Picture"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: inc/options.php:
|
1819 |
msgid "Picture Link URL"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: inc/options.php:
|
1823 |
msgid "Picture Border Size"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: inc/options.php:
|
1827 |
msgid "In pixels (px), ex: 1px. Leave blank for theme option selection."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: inc/options.php:
|
1831 |
msgid "Picture Border Color"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: inc/options.php:
|
1835 |
msgid ""
|
1836 |
"Controls the picture's border color. Leave blank for theme option selection."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: inc/options.php:
|
1840 |
msgid "Picture Border Radius"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: inc/options.php:
|
1844 |
msgid ""
|
1845 |
"Choose the border radius of the person image. In pixels (px), ex: 1px, or "
|
1846 |
"\"round\". Leave blank for theme option selection."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: inc/options.php:
|
1850 |
msgid "Social Icon Box Radius"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: inc/options.php:
|
1854 |
msgid ""
|
1855 |
"Choose the border radius of the boxed icons. In pixels (px), ex: 1px, or "
|
1856 |
"\"round\". Leave blank for theme option selection."
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: inc/options.php:
|
1860 |
msgid "Social Icon Custom Colors"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: inc/options.php:
|
1864 |
msgid ""
|
1865 |
"Controls the Icon's border color. Leave blank for theme option selection."
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: inc/options.php:
|
1869 |
msgid "Icon1"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: inc/options.php:
|
1873 |
msgid "Link1 "
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: inc/options.php:
|
1877 |
msgid "The Icon1 Link "
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: inc/options.php:
|
1881 |
msgid "Icon2"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: inc/options.php:
|
1885 |
msgid "Link2 "
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: inc/options.php:
|
1889 |
msgid "The Icon2 Link "
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: inc/options.php:
|
1893 |
msgid "Icon3"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: inc/options.php:
|
1897 |
msgid "Link3 "
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: inc/options.php:
|
1901 |
msgid "The Icon3 Link "
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: inc/options.php:
|
1905 |
msgid "Icon4"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: inc/options.php:
|
1909 |
msgid "Link4"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: inc/options.php:
|
1913 |
msgid "The Icon4 Link "
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: inc/options.php:
|
1917 |
msgid "Icon5"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: inc/options.php:
|
1921 |
msgid "Link5"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: inc/options.php:
|
1925 |
msgid "The Icon5 Link "
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: inc/options.php:
|
1929 |
msgid "Person Shortcode"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: inc/options.php:
|
1933 |
-
msgid "
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: inc/options.php:
|
1937 |
-
msgid "
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: inc/options.php:
|
1941 |
-
msgid "
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: inc/options.php:
|
1945 |
-
msgid "
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: inc/options.php:
|
1949 |
-
msgid "
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: inc/options.php:
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: inc/options.php:
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: inc/options.php:
|
1961 |
-
msgid "
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: inc/options.php:
|
1965 |
-
msgid "
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: inc/options.php:
|
1969 |
-
msgid "
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: inc/options.php:
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: inc/options.php:
|
1977 |
-
msgid "
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: inc/options.php:
|
1981 |
-
msgid "
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: inc/options.php:
|
1985 |
-
msgid "
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: inc/options.php:
|
1989 |
-
msgid "
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: inc/options.php:
|
1993 |
-
msgid "
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: inc/options.php:
|
1997 |
-
msgid "
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: inc/options.php:
|
2001 |
-
msgid "
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: inc/options.php:
|
2005 |
-
msgid "
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: inc/options.php:
|
2009 |
-
msgid "
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: inc/options.php:
|
2013 |
-
msgid "
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: inc/options.php:
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: inc/options.php:
|
2021 |
-
msgid "
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: inc/options.php:
|
2025 |
-
msgid "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: inc/options.php:
|
2029 |
-
msgid "
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: inc/options.php:
|
2033 |
-
msgid "
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: inc/options.php:
|
2037 |
-
msgid "
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: inc/options.php:
|
2041 |
-
msgid "
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: inc/options.php:
|
2045 |
-
msgid "
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: inc/options.php:
|
2049 |
-
msgid "
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: inc/options.php:
|
2053 |
-
msgid "
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: inc/options.php:
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/options.php:
|
2061 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: inc/options.php:
|
2065 |
msgid "Striped"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: inc/options.php:
|
2069 |
msgid "Choose to get the filled area striped."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: inc/options.php:
|
2073 |
msgid "None Striped"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: inc/options.php:
|
2077 |
msgid "Striped Animated"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: inc/options.php:
|
2081 |
msgid "Choose to set the progress bar as rounded."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: inc/options.php:
|
2085 |
msgid "On"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: inc/options.php:
|
2089 |
msgid "Off"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/options.php:
|
2093 |
msgid "Display Number"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: inc/options.php:
|
2097 |
msgid "Choose to diplay number for progress bar."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: inc/options.php:
|
2101 |
msgid "Set percentage for progress bar. 0~100."
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: inc/options.php:
|
2105 |
msgid "Insert text for progress bar."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: inc/options.php:
|
2109 |
msgid "Set height for progress bar."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: inc/options.php:
|
2113 |
msgid "Set background color for filled area in progress bar."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: inc/options.php:
|
2117 |
msgid "Set align for progress bar."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: inc/options.php:
|
2121 |
msgid "Text Position"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: inc/options.php:
|
2125 |
msgid "Choose text position for progress bar."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: inc/options.php:
|
2129 |
msgid "Text on Progress bars"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: inc/options.php:
|
2133 |
msgid "Text above progress bars"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: inc/options.php:
|
2137 |
msgid "Progress Shortcode"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2141 |
msgid "Set alignment for pullquote."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: inc/options.php:
|
2145 |
msgid "Insert content for pullquote."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: inc/options.php:
|
2149 |
msgid "Pullquote Shortcode"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2153 |
msgid "The text to store within the QR code. Any text or URL is available."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: inc/options.php:
|
2157 |
msgid "Alternative text"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: inc/options.php:
|
2161 |
msgid "Set image alt for QR code."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: inc/options.php:
|
2165 |
msgid "Size in pixel"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: inc/options.php:
|
2169 |
msgid "Image width and height."
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: inc/options.php:
|
2173 |
msgid "QRCode clickable?"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: inc/options.php:
|
2177 |
msgid "Choose to make this QR code clickable."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: inc/options.php:
|
2181 |
msgid "Foreground Color"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: inc/options.php:
|
2185 |
msgid "Set foreground Color for QR code."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: inc/options.php:
|
2189 |
msgid "Set background Color for QR code."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: inc/options.php:
|
2193 |
msgid "QR Code Shortcode"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2197 |
msgid "Cite"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: inc/options.php:
|
2201 |
msgid "Author name for quote."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: inc/options.php:
|
2205 |
msgid "Cite Link"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: inc/options.php:
|
2209 |
msgid "Insert Url for the quote author. Leave empty to disable hyperlink."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: inc/options.php:
|
2213 |
msgid "Insert content for the quote."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: inc/options.php:
|
2217 |
msgid "Quote Shortcode"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: inc/options.php:
|
2221 |
-
msgid "
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: inc/options.php:
|
2225 |
msgid "Feed URL"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: inc/options.php:
|
2229 |
msgid "Url of RSS Feed."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: inc/options.php:
|
2233 |
msgid "Number to Display"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: inc/options.php:
|
2237 |
msgid "Number of items to show."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: inc/options.php:
|
2241 |
msgid "RSS Feed Shortcode"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: inc/options.php:
|
2245 |
-
msgid "
|
2246 |
-
msgstr ""
|
2247 |
-
|
2248 |
-
#: inc/options.php:2673
|
2249 |
-
msgid "Insert the title for the social icon."
|
2250 |
-
msgstr ""
|
2251 |
-
|
2252 |
-
#: inc/options.php:2685
|
2253 |
-
msgid "In pixels (px), eg: 13px."
|
2254 |
-
msgstr ""
|
2255 |
-
|
2256 |
-
#: inc/options.php:2695
|
2257 |
-
msgid "Set background color for icon."
|
2258 |
-
msgstr ""
|
2259 |
-
|
2260 |
-
#: inc/options.php:2700
|
2261 |
-
msgid "Icon 3D effect"
|
2262 |
-
msgstr ""
|
2263 |
-
|
2264 |
-
#: inc/options.php:2701
|
2265 |
-
msgid "Display box shadow for icon."
|
2266 |
-
msgstr ""
|
2267 |
-
|
2268 |
-
#: inc/options.php:2709
|
2269 |
-
msgid "Icon Box Radius Style"
|
2270 |
-
msgstr ""
|
2271 |
-
|
2272 |
-
#: inc/options.php:2715
|
2273 |
-
msgid "Circle "
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: inc/options.php:
|
2277 |
-
msgid "
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: inc/options.php:
|
2281 |
-
msgid "
|
|
|
|
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: inc/options.php:
|
2285 |
-
msgid "
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: inc/options.php:
|
2289 |
-
msgid "
|
|
|
|
|
|
|
|
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: inc/options.php:
|
2293 |
-
msgid "
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: inc/options.php:
|
2297 |
-
msgid "
|
|
|
|
|
|
|
|
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: inc/options.php:
|
2301 |
-
msgid "
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: inc/options.php:
|
2305 |
-
msgid "
|
|
|
|
|
|
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: inc/options.php:
|
2309 |
-
msgid "
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: inc/options.php:
|
2313 |
-
msgid "
|
|
|
|
|
|
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: inc/options.php:
|
2317 |
-
msgid "
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: inc/options.php:
|
2321 |
-
msgid "
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: inc/options.php:
|
2325 |
-
msgid "
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: inc/options.php:
|
2329 |
-
msgid "
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: inc/options.php:
|
2333 |
-
msgid "
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: inc/options.php:
|
2337 |
-
msgid "
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: inc/options.php:
|
2341 |
-
msgid "
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: inc/options.php:
|
2345 |
-
msgid "
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: inc/options.php:
|
2349 |
-
msgid "
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: inc/options.php:
|
2353 |
-
msgid "
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: inc/options.php:
|
2357 |
-
msgid "
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: inc/options.php:
|
2361 |
-
msgid "
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: inc/options.php:
|
2365 |
-
msgid "
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: inc/options.php:
|
2369 |
msgid "Background Parallax"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: inc/options.php:
|
2373 |
msgid "Choose how the background image scrolls and responds."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: inc/options.php:
|
2377 |
msgid "Set border color for section."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: inc/options.php:
|
2381 |
msgid "Select border style for section"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: inc/options.php:
|
2385 |
msgid "Hidden"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: inc/options.php:
|
2389 |
msgid "Solid"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: inc/options.php:
|
2393 |
msgid "Double"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: inc/options.php:
|
2397 |
msgid "Groove"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: inc/options.php:
|
2401 |
msgid "Ridge"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: inc/options.php:
|
2405 |
msgid "Inset"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: inc/options.php:
|
2409 |
msgid "Outset"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: inc/options.php:
|
2413 |
msgid "Initial"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: inc/options.php:
|
2417 |
-
msgid "Inherit"
|
2418 |
-
msgstr ""
|
2419 |
-
|
2420 |
-
#: inc/options.php:2839
|
2421 |
msgid "Padding Top"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: inc/options.php:
|
2425 |
msgid "Padding Bottom"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: inc/options.php:
|
2429 |
msgid "Padding Left"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: inc/options.php:
|
2433 |
msgid "Padding Right"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: inc/options.php:
|
2437 |
msgid "Contents in Container ?"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: inc/options.php:
|
2441 |
msgid "Put the content in container."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: inc/options.php:
|
2445 |
msgid "Section content."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: inc/options.php:
|
2449 |
msgid "Section Content"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: inc/options.php:
|
2453 |
msgid "Insert content for section."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: inc/options.php:
|
2457 |
msgid "Top Separator"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: inc/options.php:
|
2461 |
-
msgid "
|
2462 |
-
msgstr ""
|
2463 |
-
|
2464 |
-
#: inc/options.php:2882 inc/options.php:2902
|
2465 |
-
msgid "triangle"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: inc/options.php:
|
2469 |
-
msgid "
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: inc/options.php:
|
2473 |
-
msgid "
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: inc/options.php:
|
2477 |
-
msgid "
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: inc/options.php:
|
2481 |
-
msgid "
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: inc/options.php:
|
2485 |
-
msgid "
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: inc/options.php:
|
2489 |
-
msgid "
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: inc/options.php:
|
2493 |
-
msgid "
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: inc/options.php:
|
2497 |
-
msgid "
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: inc/options.php:
|
2501 |
-
msgid "
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: inc/options.php:
|
2505 |
-
msgid "
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: inc/options.php:
|
2509 |
msgid "Bottom Separator"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: inc/options.php:
|
2513 |
-
msgid "
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: inc/options.php:
|
2517 |
-
msgid "
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: inc/options.php:
|
2521 |
-
msgid "
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: inc/options.php:
|
2525 |
msgid "Full Height"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: inc/options.php:
|
2529 |
msgid "Choose to set the section height same as browser window."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: inc/options.php:
|
2533 |
msgid "Section Shortcode"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: inc/options.php:
|
2537 |
-
msgid "
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: inc/options.php:
|
2541 |
-
msgid ""
|
2542 |
-
"Select an random time in one day to show content.</br>Example: 6-12,13-16 "
|
2543 |
-
"show content from 6:00 to 12:00 and from 13:00 to 16:00"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: inc/options.php:
|
2547 |
-
msgid "
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: inc/options.php:
|
2551 |
-
msgid ""
|
2552 |
-
"Select days from one week to show content.</br>1 => Monday </br>2 => "
|
2553 |
-
"Tuesday </br> 3 => Wednesday</br> 4 => Thursday </br> 5 => Friday </br> 6 "
|
2554 |
-
"=> Saturday </br> 7 => Sunday </br>Examples:1-5,7 =>show content at Sunday "
|
2555 |
-
"and from Monday to Friday"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: inc/options.php:
|
2559 |
-
msgid "
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: inc/options.php:
|
2563 |
-
msgid ""
|
2564 |
-
"Select days from one month to show content.</br>Examples:</br>1 => show "
|
2565 |
-
"content only at first day of month </br> 10-25 => show content from 10th to "
|
2566 |
-
"25th </br> 10-15,20-25 => show content from 10th to 15th and from 20th to "
|
2567 |
-
"25th"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: inc/options.php:
|
2571 |
-
msgid "
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: inc/options.php:
|
2575 |
-
msgid ""
|
2576 |
-
"Select months from a year to show content.</br>Examples:</br>1 => show "
|
2577 |
-
"content in January </br> 3-6 => show content from March to June </br> "
|
2578 |
-
"1,5,8-9 => show content in January,May and from August to September"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: inc/options.php:
|
2582 |
-
msgid "
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: inc/options.php:
|
2586 |
-
msgid ""
|
2587 |
-
"Select years to show content.</br>Examples:</br> 2016 => show content in "
|
2588 |
-
"2016 </br>2014-2016 => show content from 2014 to 2016 </br> "
|
2589 |
-
"2016,2017,2345-2666 => show content in 2016,2017 and from 2345 to 2666"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: inc/options.php:
|
2593 |
-
msgid "
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: inc/options.php:
|
2597 |
-
msgid "
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: inc/options.php:
|
2601 |
-
msgid "
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: inc/options.php:
|
2605 |
-
msgid "
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: inc/options.php:
|
2609 |
-
msgid "
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: inc/options.php:
|
2613 |
-
msgid "
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: inc/options.php:
|
2617 |
-
msgid "
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: inc/options.php:
|
2621 |
-
msgid "
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: inc/options.php:
|
2625 |
-
msgid "
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: inc/options.php:
|
2629 |
-
msgid "
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: inc/options.php:
|
2633 |
-
msgid "
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: inc/options.php:
|
2637 |
-
msgid "
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: inc/options.php:
|
2641 |
-
msgid "
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: inc/options.php:
|
2645 |
-
msgid "
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: inc/options.php:
|
2649 |
-
msgid "
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: inc/options.php:
|
2653 |
-
msgid "
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: inc/options.php:
|
2657 |
-
msgid "
|
|
|
|
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: inc/options.php:
|
2661 |
-
msgid "
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: inc/options.php:
|
2665 |
-
msgid "
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: inc/options.php:
|
2669 |
-
msgid "
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: inc/options.php:
|
2673 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2677 |
msgid "Style "
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: inc/options.php:
|
2681 |
msgid "Select testimonial's style"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: inc/options.php:
|
2685 |
msgid "Box"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: inc/options.php:
|
2689 |
msgid "Name of testimonial's author."
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: inc/options.php:
|
2693 |
msgid "Byline"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: inc/options.php:
|
2697 |
msgid "Byline of testimonial's author."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: inc/options.php:
|
2701 |
msgid "Avatar"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: inc/options.php:
|
2705 |
msgid "Avatar of testimonial's author."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: inc/options.php:
|
2709 |
msgid "Alignment"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: inc/options.php:
|
2713 |
msgid "Select the content's alignment."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: inc/options.php:
|
2717 |
msgid "Testimonial Content"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: inc/options.php:
|
2721 |
msgid "Insert content for testimonial."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: inc/options.php:
|
2725 |
msgid "Testimonial Shortcode"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2729 |
msgid "Columns"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: inc/options.php:
|
2733 |
msgid "Number of items."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: inc/options.php:
|
2737 |
msgid "2 columns"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: inc/options.php:
|
2741 |
msgid "3 columns"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: inc/options.php:
|
2745 |
msgid "4 columns"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: inc/options.php:
|
2749 |
msgid "5 columns"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: inc/options.php:
|
2753 |
msgid "Timeline Items"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: inc/options.php:
|
2757 |
msgid "Insert timeline items."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: inc/options.php:
|
2761 |
msgid "Timeline Shortcode"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: inc/options.php:
|
2765 |
-
msgid ""
|
2766 |
-
"Select visible permissions.Private for author only. Members for logged-in "
|
2767 |
-
"users. Guests for users not logged in."
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: inc/options.php:
|
2771 |
-
msgid "
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: inc/options.php:
|
2775 |
-
msgid "
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: inc/options.php:
|
2779 |
-
msgid "
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: inc/options.php:
|
2783 |
-
msgid "
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: inc/options.php:
|
2787 |
-
msgid "
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: inc/options.php:
|
2791 |
-
msgid "
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: inc/options.php:
|
2795 |
-
msgid "
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2799 |
msgid "Mp4 Video Url"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: inc/options.php:
|
2803 |
msgid ""
|
2804 |
"Add the URL of video in MPEG4 format. WebM and MP4 format must be included "
|
2805 |
"to render your video with cross browser compatibility. OGV is optional."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: inc/options.php:
|
2809 |
msgid "Ogv Video Url"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: inc/options.php:
|
2813 |
msgid ""
|
2814 |
"Add the URL of video in OGV format. WebM and MP4 format must be included to "
|
2815 |
"render your video with cross browser compatibility. OGV is optional."
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: inc/options.php:
|
2819 |
msgid "Webm Video Url"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: inc/options.php:
|
2823 |
msgid ""
|
2824 |
"Add the URL of video in webm format. WebM and MP4 format must be included to "
|
2825 |
"render your video with cross browser compatibility. OGV is optional."
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: inc/options.php:
|
2829 |
msgid "Poster"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: inc/options.php:
|
2833 |
msgid "Display a image when browser does not support HTML5 format."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: inc/options.php:
|
2837 |
msgid "Video Shortcode"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: inc/options.php:
|
2841 |
-
msgid "
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2845 |
msgid "Vimeo Shortcode"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2849 |
msgid "Youtube URL"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: inc/options.php:
|
2853 |
msgid "Youtube Shortcode"
|
2854 |
msgstr ""
|
2855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2856 |
#: shortcodes/class-countdowns.php:59
|
2857 |
msgid "Days"
|
2858 |
msgstr ""
|
@@ -2869,10 +3240,10 @@ msgstr ""
|
|
2869 |
msgid "Seconds"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: shortcodes/class-rss-feed.php:
|
2873 |
msgid "No items"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: shortcodes/class-rss-feed.php:
|
2877 |
msgid "Posted "
|
2878 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-21 14:13+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-06-21 14:13+0800\n"
|
7 |
"Last-Translator: shijun quan <support@mageewp.com>\n"
|
8 |
"Language-Team: MageeWP\n"
|
9 |
"Language: en_US\n"
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: inc/core.php:111 inc/core.php:115
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: inc/core.php:304
|
25 |
+
msgid "Live Preview"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: inc/core.php:304
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: inc/core.php:553 inc/core.php:584 inc/core.php:735 inc/core.php:955
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: inc/core.php:570
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: inc/core.php:672 inc/options.php:1002 inc/options.php:1095
|
41 |
+
#: inc/options.php:1183 inc/options.php:1312 inc/options.php:3812
|
42 |
+
#: inc/options.php:3894 inc/options.php:3975
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/core.php:676 inc/options.php:1008 inc/options.php:1191
|
47 |
+
#: inc/options.php:1320 inc/options.php:2776 inc/options.php:3818
|
48 |
+
#: inc/options.php:3900 inc/options.php:3981
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: inc/core.php:1035
|
53 |
msgid "Select a slider"
|
54 |
msgstr ""
|
55 |
|
101 |
msgid "Use the button above to add Slides !"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: inc/magee-slider.php:158 inc/options.php:1467 inc/options.php:1764
|
105 |
+
#: inc/options.php:2318 inc/options.php:2401 inc/options.php:2591
|
|
|
106 |
msgid "Title"
|
107 |
msgstr ""
|
108 |
|
114 |
msgid "Date"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: inc/options.php:34 inc/options.php:727 inc/options.php:1103
|
118 |
+
#: inc/options.php:1555 inc/options.php:2684 inc/options.php:2793
|
119 |
+
#: inc/options.php:2867 inc/options.php:2946 inc/options.php:3734
|
120 |
msgid "Left"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/options.php:34 inc/options.php:728 inc/options.php:1104
|
124 |
+
#: inc/options.php:3636
|
125 |
msgid "Center"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/options.php:34 inc/options.php:729 inc/options.php:1556
|
129 |
+
#: inc/options.php:2685 inc/options.php:2794 inc/options.php:2868
|
130 |
+
#: inc/options.php:2947 inc/options.php:3735
|
131 |
msgid "Right"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: inc/options.php:70 inc/options.php:186 inc/options.php:253
|
135 |
+
#: inc/options.php:398 inc/options.php:440 inc/options.php:524
|
136 |
+
#: inc/options.php:571 inc/options.php:661 inc/options.php:735
|
137 |
+
#: inc/options.php:785 inc/options.php:899 inc/options.php:969
|
138 |
+
#: inc/options.php:1051 inc/options.php:1149 inc/options.php:1212
|
139 |
+
#: inc/options.php:1263 inc/options.php:1326 inc/options.php:1372
|
140 |
+
#: inc/options.php:1429 inc/options.php:1634 inc/options.php:1737
|
141 |
+
#: inc/options.php:1859 inc/options.php:1912 inc/options.php:1968
|
142 |
+
#: inc/options.php:2024 inc/options.php:2088 inc/options.php:2190
|
143 |
+
#: inc/options.php:2260 inc/options.php:2292 inc/options.php:2359
|
144 |
+
#: inc/options.php:2543 inc/options.php:2629 inc/options.php:2692
|
145 |
+
#: inc/options.php:2812 inc/options.php:2918 inc/options.php:2959
|
146 |
+
#: inc/options.php:3061 inc/options.php:3102 inc/options.php:3159
|
147 |
+
#: inc/options.php:3374 inc/options.php:3409 inc/options.php:3487
|
148 |
+
#: inc/options.php:3533 inc/options.php:3648 inc/options.php:3689
|
149 |
+
#: inc/options.php:3756 inc/options.php:3861 inc/options.php:3943
|
150 |
+
#: inc/options.php:4024 inc/options.php:4071
|
151 |
msgid "CSS Class"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/options.php:71 inc/options.php:187 inc/options.php:254
|
155 |
+
#: inc/options.php:399 inc/options.php:441 inc/options.php:525
|
156 |
+
#: inc/options.php:572 inc/options.php:662 inc/options.php:736
|
157 |
+
#: inc/options.php:786 inc/options.php:900 inc/options.php:970
|
158 |
+
#: inc/options.php:1052 inc/options.php:1150 inc/options.php:1213
|
159 |
+
#: inc/options.php:1264 inc/options.php:1327 inc/options.php:1373
|
160 |
+
#: inc/options.php:1430 inc/options.php:1635 inc/options.php:1738
|
161 |
+
#: inc/options.php:1860 inc/options.php:1913 inc/options.php:1969
|
162 |
+
#: inc/options.php:2025 inc/options.php:2089 inc/options.php:2191
|
163 |
+
#: inc/options.php:2261 inc/options.php:2293 inc/options.php:2360
|
164 |
+
#: inc/options.php:2544 inc/options.php:2630 inc/options.php:2693
|
165 |
+
#: inc/options.php:2813 inc/options.php:2919 inc/options.php:2960
|
166 |
+
#: inc/options.php:3062 inc/options.php:3103 inc/options.php:3160
|
167 |
+
#: inc/options.php:3375 inc/options.php:3410 inc/options.php:3488
|
168 |
+
#: inc/options.php:3534 inc/options.php:3649 inc/options.php:3690
|
169 |
+
#: inc/options.php:3757 inc/options.php:3862 inc/options.php:3944
|
170 |
+
#: inc/options.php:4025 inc/options.php:4072
|
171 |
msgid "Add a class to the wrapping HTML element."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/options.php:76 inc/options.php:192 inc/options.php:259
|
175 |
+
#: inc/options.php:404 inc/options.php:446 inc/options.php:530
|
176 |
+
#: inc/options.php:577 inc/options.php:667 inc/options.php:741
|
177 |
+
#: inc/options.php:791 inc/options.php:905 inc/options.php:975
|
178 |
+
#: inc/options.php:1057 inc/options.php:1155 inc/options.php:1218
|
179 |
+
#: inc/options.php:1269 inc/options.php:1332 inc/options.php:1378
|
180 |
+
#: inc/options.php:1435 inc/options.php:1640 inc/options.php:1743
|
181 |
+
#: inc/options.php:1865 inc/options.php:1918 inc/options.php:1974
|
182 |
+
#: inc/options.php:2030 inc/options.php:2094 inc/options.php:2196
|
183 |
+
#: inc/options.php:2266 inc/options.php:2298 inc/options.php:2365
|
184 |
+
#: inc/options.php:2549 inc/options.php:2698 inc/options.php:2818
|
185 |
+
#: inc/options.php:2924 inc/options.php:2965 inc/options.php:3067
|
186 |
+
#: inc/options.php:3108 inc/options.php:3165 inc/options.php:3380
|
187 |
+
#: inc/options.php:3493 inc/options.php:3539 inc/options.php:3654
|
188 |
+
#: inc/options.php:3695 inc/options.php:3762 inc/options.php:3867
|
189 |
+
#: inc/options.php:3949 inc/options.php:4030 inc/options.php:4077
|
190 |
msgid "CSS ID"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/options.php:77 inc/options.php:193 inc/options.php:260
|
194 |
+
#: inc/options.php:405 inc/options.php:447 inc/options.php:531
|
195 |
+
#: inc/options.php:578 inc/options.php:668 inc/options.php:742
|
196 |
+
#: inc/options.php:792 inc/options.php:906 inc/options.php:976
|
197 |
+
#: inc/options.php:1058 inc/options.php:1156 inc/options.php:1219
|
198 |
+
#: inc/options.php:1270 inc/options.php:1333 inc/options.php:1379
|
199 |
+
#: inc/options.php:1436 inc/options.php:1641 inc/options.php:1744
|
200 |
+
#: inc/options.php:1866 inc/options.php:1919 inc/options.php:1975
|
201 |
+
#: inc/options.php:2031 inc/options.php:2095 inc/options.php:2197
|
202 |
+
#: inc/options.php:2267 inc/options.php:2299 inc/options.php:2366
|
203 |
+
#: inc/options.php:2550 inc/options.php:2699 inc/options.php:2819
|
204 |
+
#: inc/options.php:2925 inc/options.php:2966 inc/options.php:3068
|
205 |
+
#: inc/options.php:3109 inc/options.php:3166 inc/options.php:3381
|
206 |
+
#: inc/options.php:3494 inc/options.php:3540 inc/options.php:3655
|
207 |
+
#: inc/options.php:3696 inc/options.php:3763 inc/options.php:3868
|
208 |
+
#: inc/options.php:3950 inc/options.php:4031 inc/options.php:4078
|
209 |
msgid "Add an ID to the wrapping HTML element."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/options.php:82 inc/options.php:1288 inc/options.php:1353
|
213 |
+
#: inc/options.php:1770 inc/options.php:1995 inc/options.php:2385
|
214 |
+
#: inc/options.php:2718 inc/options.php:2840 inc/options.php:3512
|
215 |
msgid "Style"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: inc/options.php:85 inc/options.php:3515
|
219 |
msgid "Simple Style"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/options.php:86
|
223 |
msgid "Boxed Style"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/options.php:91 inc/options.php:3567
|
227 |
msgid "Type"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/options.php:95
|
231 |
msgid "Type 1"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/options.php:96
|
235 |
msgid "Type 2"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/options.php:102
|
239 |
msgid "Accordion Items"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/options.php:103
|
243 |
msgid "Insert accordion items shortcode."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/options.php:108
|
247 |
msgid "Accordion Shortcode"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/options.php:109
|
251 |
+
msgid "accordions-shortcode/"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: inc/options.php:124 inc/options.php:1088 inc/options.php:1141
|
255 |
+
#: inc/options.php:1492 inc/options.php:1940 inc/options.php:2141
|
256 |
+
#: inc/options.php:3435
|
257 |
msgid "Icon"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: inc/options.php:125 inc/options.php:384 inc/options.php:840
|
261 |
+
#: inc/options.php:1142 inc/options.php:1493 inc/options.php:1941
|
262 |
+
#: inc/options.php:2142 inc/options.php:2483 inc/options.php:2495
|
263 |
+
#: inc/options.php:2507 inc/options.php:2519 inc/options.php:2531
|
264 |
+
#: inc/options.php:2906 inc/options.php:3436
|
265 |
msgid "Click an icon to select, click again to deselect."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: inc/options.php:130
|
269 |
msgid "Warning! Better check yourself, you're not looking too good."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: inc/options.php:132
|
273 |
msgid "Alert Content"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: inc/options.php:133
|
277 |
msgid "Insert the content for the alert."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: inc/options.php:139 inc/options.php:778 inc/options.php:1887
|
281 |
+
#: inc/options.php:2123 inc/options.php:3023 inc/options.php:3192
|
282 |
+
#: inc/options.php:4057
|
283 |
msgid "Background Color"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/options.php:140
|
287 |
msgid "Set background color for alert box."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/options.php:145 inc/options.php:377
|
291 |
msgid "Text Color"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/options.php:146
|
295 |
msgid "Set content color & border color for alert box."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/options.php:155 inc/options.php:316 inc/options.php:1846
|
299 |
+
#: inc/options.php:2858
|
300 |
msgid "Border Width"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: inc/options.php:156 inc/options.php:165 inc/options.php:1831
|
304 |
+
#: inc/options.php:1839 inc/options.php:1847 inc/options.php:1896
|
305 |
+
#: inc/options.php:2354 inc/options.php:3246 inc/options.php:3283
|
306 |
+
#: inc/options.php:3291 inc/options.php:3299 inc/options.php:3307
|
307 |
+
#: inc/options.php:3813 inc/options.php:3819
|
308 |
msgid "In pixels (px), eg: 1px."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/options.php:164 inc/options.php:1895 inc/options.php:2075
|
312 |
+
#: inc/options.php:2353
|
313 |
msgid "Border Radius"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/options.php:171
|
317 |
msgid "Box Shadow"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/options.php:172
|
321 |
msgid "Display a box shadow for alert."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/options.php:178
|
325 |
msgid "Dismissable"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/options.php:179
|
329 |
msgid "The alert box is dismissable."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/options.php:197
|
333 |
msgid "Alert Shortcode"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/options.php:198
|
337 |
+
msgid "alert-shortcode/"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: inc/options.php:211
|
341 |
msgid "Mp3 URL"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/options.php:212
|
345 |
msgid "Add the URL of audio in MP3 format."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: inc/options.php:217
|
349 |
msgid "Ogg URL"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/options.php:218
|
353 |
msgid "Add the URL of audio in OGG format."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/options.php:223
|
357 |
msgid "Wav URL"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: inc/options.php:224
|
361 |
msgid "Add the URL of audio in WAV format."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/options.php:228
|
365 |
msgid "Mute Audio"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/options.php:229
|
369 |
msgid "Choose to mute the audio."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/options.php:234
|
373 |
msgid "Autoplay Audio"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/options.php:235
|
377 |
msgid "Choose to autoplay the audio."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/options.php:240
|
381 |
msgid "Loop Audio"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/options.php:241
|
385 |
msgid "Choose to loop the audio."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: inc/options.php:246
|
389 |
msgid "Controls Audio"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/options.php:247
|
393 |
msgid "Choose to display controls of the audio."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/options.php:264
|
397 |
msgid "Audio Shortcode"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: inc/options.php:265
|
401 |
+
msgid "audio-shortcode/"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/options.php:278 inc/options.php:3517
|
405 |
msgid "Button Style"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: inc/options.php:279
|
409 |
msgid "Select the button's default style."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/options.php:281 inc/options.php:1080 inc/options.php:2843
|
413 |
+
#: inc/options.php:3472 inc/options.php:3607
|
414 |
msgid "Normal"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: inc/options.php:282
|
418 |
msgid "Dark"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: inc/options.php:283
|
422 |
msgid "Light"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: inc/options.php:284
|
426 |
msgid "2d"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: inc/options.php:285
|
430 |
msgid "3d"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: inc/options.php:286
|
434 |
msgid "Line"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: inc/options.php:287
|
438 |
msgid "Line Dark"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: inc/options.php:288
|
442 |
msgid "Line Light"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: inc/options.php:295
|
446 |
msgid "Button URL"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: inc/options.php:296
|
450 |
msgid "Add the button's url eg: http://example.com."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: inc/options.php:301
|
454 |
msgid "Button Size"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: inc/options.php:302
|
458 |
msgid "Select the button's size."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: inc/options.php:304 inc/options.php:2236
|
462 |
msgid "Small"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: inc/options.php:305
|
466 |
msgid "Medium"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: inc/options.php:306 inc/options.php:2238
|
470 |
msgid "Large"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: inc/options.php:307
|
474 |
msgid "XLarge"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: inc/options.php:317
|
478 |
msgid "In pixels (px), default: 2px."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: inc/options.php:322
|
482 |
msgid "Button Shape"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: inc/options.php:323
|
486 |
msgid "Select the button's shape. Choose default for theme option selection."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: inc/options.php:325
|
490 |
msgid "Default"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: inc/options.php:326 inc/options.php:2168 inc/options.php:2575
|
494 |
msgid "Square"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: inc/options.php:327 inc/options.php:2739 inc/options.php:3474
|
498 |
msgid "Rounded"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: inc/options.php:328
|
502 |
msgid "Full Rounded"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: inc/options.php:333
|
506 |
msgid "Text Shadow"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: inc/options.php:334
|
510 |
msgid "Display shadow for button text."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: inc/options.php:339
|
514 |
msgid "Gradient"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: inc/options.php:340
|
518 |
msgid "Display gradient for button."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: inc/options.php:345
|
522 |
msgid "Block Button"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/options.php:346
|
526 |
msgid "Display in full width."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: inc/options.php:352
|
530 |
msgid "Button Target"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: inc/options.php:353
|
534 |
msgid "_self = open in same window <br />_blank = open in new window."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/options.php:361 inc/options.php:2889
|
538 |
msgid "Button Text"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/options.php:363
|
542 |
msgid "Button's Text"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/options.php:364
|
546 |
msgid "Add the text that will display in the button."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/options.php:369
|
550 |
msgid "Set background color for button."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: inc/options.php:370 inc/options.php:2883
|
554 |
msgid "Button Color"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/options.php:378
|
558 |
msgid "Set content color & border color for button."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/options.php:383 inc/options.php:2905
|
562 |
msgid "Button Icon"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/options.php:390
|
566 |
msgid "Icon Animation Type"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/options.php:391
|
570 |
msgid "Select the type of animation to use on the button icon."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/options.php:409
|
574 |
msgid "Button Shortcode"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/options.php:410
|
578 |
+
msgid "buttons-shortcode/"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: inc/options.php:426 inc/options.php:510 inc/options.php:557
|
582 |
+
#: inc/options.php:646
|
583 |
+
msgid "Canvas Width"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: inc/options.php:434 inc/options.php:518 inc/options.php:565
|
587 |
+
#: inc/options.php:655
|
588 |
+
msgid "Canvas Height"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: inc/options.php:452 inc/options.php:583
|
592 |
+
msgid "Label For Line"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: inc/options.php:453
|
596 |
+
msgid "separate multiple tags added to chart line with commas"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: inc/options.php:457
|
600 |
+
msgid "Chart Bar Shortcode"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: inc/options.php:463 inc/options.php:594
|
604 |
+
msgid "Data"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: inc/options.php:464 inc/options.php:595
|
608 |
+
msgid "separate values for each set of data with commas"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: inc/options.php:469 inc/options.php:600
|
612 |
+
msgid "Fill Color"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: inc/options.php:475 inc/options.php:606
|
616 |
+
msgid "Fill Opacity"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: inc/options.php:482 inc/options.php:613
|
620 |
+
msgid "Stroke Color"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: inc/options.php:488
|
624 |
+
msgid "Stroke Opacity"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: inc/options.php:536 inc/options.php:673 inc/options.php:926
|
628 |
+
#: inc/options.php:1423 inc/options.php:2912 inc/options.php:2953
|
629 |
+
#: inc/options.php:2987 inc/options.php:3055 inc/options.php:3171
|
630 |
+
#: inc/options.php:3578 inc/options.php:3750
|
631 |
+
msgid "Content"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: inc/options.php:541
|
635 |
+
msgid "Chart Doughnut Shortcode"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: inc/options.php:588
|
639 |
+
msgid "Chart Line Shortcode"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: inc/options.php:619
|
643 |
+
msgid "Point Color"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: inc/options.php:625
|
647 |
+
msgid "Point Stroke Color"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: inc/options.php:678
|
651 |
+
msgid "Chart Pie Shortcode"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: inc/options.php:692
|
655 |
msgid "Column Shortcode"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: inc/options.php:693
|
659 |
+
msgid "columns-shortcode/"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: inc/options.php:698
|
663 |
msgid "Column Style"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: inc/options.php:699
|
667 |
msgid "Select the size of column."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: inc/options.php:701 inc/options.php:823
|
671 |
msgid "1/1"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: inc/options.php:702 inc/options.php:824
|
675 |
msgid "1/2"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: inc/options.php:703 inc/options.php:825
|
679 |
msgid "1/3"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: inc/options.php:704 inc/options.php:826
|
683 |
msgid "1/4"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: inc/options.php:705 inc/options.php:827
|
687 |
msgid "1/5"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/options.php:706 inc/options.php:828
|
691 |
msgid "1/6"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: inc/options.php:707 inc/options.php:829
|
695 |
msgid "2/3"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: inc/options.php:708 inc/options.php:830
|
699 |
msgid "2/5"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: inc/options.php:709 inc/options.php:831
|
703 |
msgid "3/4"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: inc/options.php:710 inc/options.php:832
|
707 |
msgid "3/5"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: inc/options.php:711 inc/options.php:833
|
711 |
msgid "4/5"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: inc/options.php:712 inc/options.php:834
|
715 |
msgid "5/6"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/options.php:716
|
719 |
msgid "Column Content"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/options.php:718
|
723 |
msgid " Column Content"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: inc/options.php:719
|
727 |
msgid "Insert the column's content"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: inc/options.php:722
|
731 |
+
msgid "left"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/options.php:724
|
735 |
+
msgid "Content Align"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: inc/options.php:764
|
739 |
+
msgid "Set end time for countdown."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: inc/options.php:771 inc/options.php:1784 inc/options.php:1900
|
743 |
+
msgid "Font Color"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: inc/options.php:772
|
747 |
+
msgid "Set font color for countdown."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: inc/options.php:779
|
751 |
+
msgid "Set background color for countdown."
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: inc/options.php:798
|
755 |
+
msgid "Countdowns Shortcode"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: inc/options.php:799
|
759 |
+
msgid "countdowns-shortcode/"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/options.php:820
|
763 |
+
msgid "Box Width"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/options.php:821
|
767 |
+
msgid "Select size of counter box"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/options.php:839
|
771 |
msgid "Top Icon"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: inc/options.php:846
|
775 |
msgid "Top Icon Color"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: inc/options.php:847
|
779 |
msgid "Set color for top icon."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/options.php:852
|
783 |
+
msgid "Middle Left Icon"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: inc/options.php:853
|
787 |
msgid "Insert text before the number."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: inc/options.php:860
|
791 |
+
msgid "Middle Left Text"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: inc/options.php:861
|
795 |
msgid "Left text of counter num"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: inc/options.php:869
|
799 |
msgid "Counter Num"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: inc/options.php:870
|
803 |
msgid "The animated counter number."
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: inc/options.php:875
|
807 |
+
msgid "Middle Right Text"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: inc/options.php:876
|
811 |
msgid "Insert text after the number."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: inc/options.php:882
|
815 |
+
msgid "Bottom Title"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: inc/options.php:883
|
819 |
msgid "Insert Title for counter."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: inc/options.php:888
|
823 |
msgid "Display Border"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: inc/options.php:889
|
827 |
msgid "Choose to display border for counter."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/options.php:891 inc/options.php:1025 inc/options.php:1035
|
831 |
+
#: inc/options.php:1045 inc/options.php:2155 inc/options.php:2176
|
832 |
+
#: inc/options.php:2248 inc/options.php:3010 inc/options.php:3464
|
833 |
+
#: inc/options.php:3835 inc/options.php:3845 inc/options.php:3855
|
834 |
+
#: inc/options.php:3917 inc/options.php:3927 inc/options.php:3937
|
835 |
+
#: inc/options.php:3998 inc/options.php:4008 inc/options.php:4018
|
836 |
msgid "No"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: inc/options.php:892 inc/options.php:1024 inc/options.php:1034
|
840 |
+
#: inc/options.php:1044 inc/options.php:2156 inc/options.php:2177
|
841 |
+
#: inc/options.php:2247 inc/options.php:3011 inc/options.php:3463
|
842 |
+
#: inc/options.php:3834 inc/options.php:3844 inc/options.php:3854
|
843 |
+
#: inc/options.php:3916 inc/options.php:3926 inc/options.php:3936
|
844 |
+
#: inc/options.php:3997 inc/options.php:4007 inc/options.php:4017
|
845 |
msgid "Yes"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/options.php:911
|
849 |
msgid "Counter Shortcode"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/options.php:912
|
853 |
+
msgid "counter-box-shortcode/"
|
|
|
|
|
|
|
|
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: inc/options.php:924
|
857 |
+
msgid "Custom Box Content"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: inc/options.php:927
|
861 |
+
msgid "Insert content for custom box."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: inc/options.php:931 inc/options.php:3199
|
865 |
+
msgid "Background Image"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: inc/options.php:932
|
869 |
+
msgid "Upload an image to display in background of custom box."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: inc/options.php:937
|
873 |
+
msgid "Fixed Background"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: inc/options.php:938
|
877 |
+
msgid "Choose to fixed Background Image"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/options.php:944 inc/options.php:3218 inc/options.php:3257
|
881 |
+
msgid "Background Position"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/options.php:945
|
885 |
+
msgid "Choose the postion of the background image"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/options.php:947 inc/options.php:3222
|
889 |
+
msgid "Top Left"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/options.php:948 inc/options.php:3223
|
893 |
+
msgid "Top Center"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: inc/options.php:949 inc/options.php:3224
|
897 |
+
msgid "Top Right"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: inc/options.php:950 inc/options.php:3225
|
901 |
+
msgid "Center Left"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: inc/options.php:951 inc/options.php:3226
|
905 |
+
msgid "Center Center"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: inc/options.php:952 inc/options.php:3227
|
909 |
+
msgid "Center Right"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/options.php:953 inc/options.php:3228
|
913 |
+
msgid "Bottom Left"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: inc/options.php:954 inc/options.php:3229
|
917 |
+
msgid "Bottom Center"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: inc/options.php:955 inc/options.php:3230
|
921 |
+
msgid "Bottom Right"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/options.php:963 inc/options.php:4065
|
925 |
+
msgid "Padding"
|
|
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: inc/options.php:964
|
929 |
+
msgid "Content Padding. eg:30px"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/options.php:980
|
933 |
+
msgid " Custom Box Shortcode"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/options.php:981
|
937 |
+
msgid "custom-box-shortcode/"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/options.php:996
|
941 |
+
msgid "Dailymotion URL"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/options.php:997 inc/options.php:3889 inc/options.php:3970
|
945 |
+
msgid "Add the URL the video will link to, ex: http://example.com."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/options.php:1003 inc/options.php:1009 inc/options.php:3895
|
949 |
+
#: inc/options.php:3901 inc/options.php:3976 inc/options.php:3982
|
950 |
+
msgid "In pixels (px), eg:1px."
|
|
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: inc/options.php:1014 inc/options.php:3824 inc/options.php:3906
|
954 |
+
#: inc/options.php:3987
|
955 |
+
msgid "Mute Video"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/options.php:1015 inc/options.php:3825 inc/options.php:3907
|
959 |
+
#: inc/options.php:3988
|
960 |
+
msgid "Choose to mute the video."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: inc/options.php:1021 inc/options.php:3831 inc/options.php:3913
|
964 |
+
#: inc/options.php:3994
|
965 |
+
msgid "Autoplay Video"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: inc/options.php:1022 inc/options.php:3832 inc/options.php:3914
|
969 |
+
#: inc/options.php:3995
|
970 |
+
msgid "Choose to autoplay the video."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: inc/options.php:1031 inc/options.php:3841 inc/options.php:3923
|
974 |
+
#: inc/options.php:4004
|
975 |
+
msgid "Loop Video"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: inc/options.php:1032 inc/options.php:3842 inc/options.php:3924
|
979 |
+
#: inc/options.php:4005
|
980 |
+
msgid "Choose to loop the video."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: inc/options.php:1041 inc/options.php:3851 inc/options.php:3933
|
984 |
+
#: inc/options.php:4014
|
985 |
+
msgid "Show Controls"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: inc/options.php:1042 inc/options.php:3852 inc/options.php:3934
|
989 |
+
#: inc/options.php:4015
|
990 |
+
msgid "Choose to display controls for the video player."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: inc/options.php:1062
|
994 |
+
msgid "Dailymotion Shortcode"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: inc/options.php:1063
|
998 |
+
msgid "dailymotion-shortcode/"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: inc/options.php:1077
|
1002 |
+
msgid "Divider Style"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/options.php:1078
|
1006 |
+
msgid "Select the Divider's Style."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: inc/options.php:1081
|
1010 |
+
msgid "Shadow"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: inc/options.php:1082 inc/options.php:3264
|
1014 |
+
msgid "Dashed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: inc/options.php:1083 inc/options.php:3263
|
1018 |
+
msgid "Dotted"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: inc/options.php:1084
|
1022 |
+
msgid "Double Line"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: inc/options.php:1085
|
1026 |
+
msgid "Double Dashed"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: inc/options.php:1086
|
1030 |
+
msgid "Double Dotted"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: inc/options.php:1087 inc/options.php:2050
|
1034 |
+
msgid "Image"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: inc/options.php:1089
|
1038 |
+
msgid "Back to Top"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: inc/options.php:1096
|
1042 |
+
msgid "In pixels. Default: 100%"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: inc/options.php:1100 inc/options.php:2943
|
1046 |
+
msgid "Align"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: inc/options.php:1101
|
1050 |
+
msgid "When the width is not 100%."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: inc/options.php:1112 inc/options.php:1830
|
1054 |
+
msgid "Margin Top"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: inc/options.php:1113
|
1058 |
+
msgid "Spacing above the separator. In pixels."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: inc/options.php:1120 inc/options.php:1838
|
1062 |
+
msgid "Margin Bottom"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: inc/options.php:1121
|
1066 |
+
msgid "Spacing under the separator. In pixels."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: inc/options.php:1129 inc/options.php:3245
|
1070 |
+
msgid "Border Size"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: inc/options.php:1130
|
1074 |
+
msgid "In pixels (px), eg: 1px. "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: inc/options.php:1135 inc/options.php:1789 inc/options.php:2338
|
1078 |
+
#: inc/options.php:2850 inc/options.php:3252
|
1079 |
+
msgid "Border Color"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: inc/options.php:1136
|
1083 |
+
msgid "Set the border color."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: inc/options.php:1160
|
1087 |
+
msgid "Divider Shortcode"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: inc/options.php:1161
|
1091 |
+
msgid "divider-shortcode/"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: inc/options.php:1175
|
1095 |
+
msgid "Doc URL"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: inc/options.php:1176
|
1099 |
+
msgid "Upload document to display. Supported formats: doc, xls, pdf etc."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: inc/options.php:1184
|
1103 |
+
msgid "Set width for doc."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: inc/options.php:1192
|
1107 |
+
msgid "Set height for doc."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: inc/options.php:1196
|
1111 |
+
msgid "Responsive"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: inc/options.php:1197
|
1115 |
+
msgid "Choose to responsive or not"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: inc/options.php:1202
|
1119 |
+
msgid "Viewer"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: inc/options.php:1203
|
1123 |
+
msgid "Choose viewer for document."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: inc/options.php:1205
|
1127 |
+
msgid "Google"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: inc/options.php:1206
|
1131 |
+
msgid "Microsoft"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: inc/options.php:1223
|
1135 |
+
msgid "Document Shortcode"
|
|
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: inc/options.php:1224
|
1139 |
+
msgid "document-shortcode/"
|
|
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: inc/options.php:1238
|
1143 |
+
msgid "Dropcap Letter"
|
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: inc/options.php:1239
|
1147 |
+
msgid "Add the letter to be used as dropcap"
|
|
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: inc/options.php:1243 inc/options.php:2784
|
1151 |
+
msgid "Color"
|
|
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: inc/options.php:1244
|
1155 |
+
msgid ""
|
1156 |
+
"Controls the color of the dropcap letter. Leave blank for theme option "
|
1157 |
+
"selection."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: inc/options.php:1248
|
1161 |
+
msgid "Boxed Dropcap"
|
|
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: inc/options.php:1249
|
1165 |
+
msgid "Choose to get a boxed dropcap."
|
|
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: inc/options.php:1257
|
1169 |
+
msgid "Box Radius"
|
|
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: inc/options.php:1258
|
1173 |
+
msgid "Choose the radius of the boxed dropcap. In pixels (px), eg: 1px"
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: inc/options.php:1274
|
1177 |
+
msgid "Dropcap Shortcode"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: inc/options.php:1275
|
1181 |
+
msgid "dropcap-shortcode/"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: inc/options.php:1289
|
1185 |
+
msgid "Select style for dummy image"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: inc/options.php:1291
|
1189 |
+
msgid "Any"
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: inc/options.php:1292
|
1193 |
+
msgid "Transport"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: inc/options.php:1293
|
1197 |
+
msgid "Technics"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: inc/options.php:1294
|
1201 |
+
msgid "People"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: inc/options.php:1295
|
1205 |
+
msgid "Sports"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: inc/options.php:1296
|
1209 |
+
msgid "Cats"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: inc/options.php:1297
|
1213 |
+
msgid "City"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: inc/options.php:1298
|
1217 |
+
msgid "Food"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: inc/options.php:1299
|
1221 |
+
msgid "Night life"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: inc/options.php:1300
|
1225 |
+
msgid "Fashion"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: inc/options.php:1301
|
1229 |
+
msgid "Animals"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: inc/options.php:1302
|
1233 |
+
msgid "Business"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: inc/options.php:1303
|
1237 |
+
msgid "Nature"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: inc/options.php:1304
|
1241 |
+
msgid "Abstract"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: inc/options.php:1313
|
1245 |
+
msgid "Set width for image."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: inc/options.php:1321
|
1249 |
+
msgid "Set height for image."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: inc/options.php:1338
|
1253 |
+
msgid "Dummy Image Shortcode"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: inc/options.php:1339
|
1257 |
+
msgid "dummy-image-shortcode/"
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: inc/options.php:1354
|
1261 |
+
msgid "Select text type."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: inc/options.php:1356
|
1265 |
+
msgid "Paragraphs"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: inc/options.php:1357
|
1269 |
+
msgid "Words"
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: inc/options.php:1358
|
1273 |
+
msgid "Bytes"
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: inc/options.php:1366
|
1277 |
+
msgid "Amount"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: inc/options.php:1367
|
1281 |
+
msgid "Choose how many paragraphs or words to show"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: inc/options.php:1383
|
1285 |
+
msgid "Dummy Text Shortcode"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: inc/options.php:1384
|
1289 |
+
msgid "dummy-text-shortcode/"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: inc/options.php:1398
|
1293 |
msgid "More Icon"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: inc/options.php:1399
|
1297 |
msgid ""
|
1298 |
"Set icon for expand title. Click an icon to select, click again to deselect."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: inc/options.php:1405
|
1302 |
msgid "More Text"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: inc/options.php:1406
|
1306 |
msgid "Set text for expand title."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: inc/options.php:1410
|
1310 |
msgid "Less Icon"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: inc/options.php:1411
|
1314 |
msgid ""
|
1315 |
"Set icon for fold title. Click an icon to select, click again to deselect."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: inc/options.php:1417
|
1319 |
msgid "Less Text"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: inc/options.php:1418
|
1323 |
msgid "Set text for fold title. "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: inc/options.php:1424
|
1327 |
msgid "This text block can be expanded."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: inc/options.php:1440
|
1331 |
msgid "Expand Shortcode"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: inc/options.php:1441
|
1335 |
+
msgid "expand-shortcode/"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: inc/options.php:1454
|
1339 |
msgid "Feature Box Style"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: inc/options.php:1455
|
1343 |
msgid "Select the Feature Box's Style."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: inc/options.php:1457
|
1347 |
msgid "Icon on Top of Title"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: inc/options.php:1458
|
1351 |
msgid "Icon Beside Title and Content"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: inc/options.php:1459
|
1355 |
msgid "Icon Beside Title"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: inc/options.php:1460 inc/options.php:2844 inc/options.php:3473
|
1359 |
msgid "Boxed"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: inc/options.php:1468
|
1363 |
msgid "Insert title for feature box."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: inc/options.php:1476
|
1367 |
msgid "Title Font Size"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: inc/options.php:1477
|
1371 |
msgid "Set font size for title of feature box."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: inc/options.php:1481 inc/options.php:2332 inc/options.php:3527
|
1375 |
msgid "Title Color"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: inc/options.php:1482
|
1379 |
msgid "Set color for title of feature box."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: inc/options.php:1486
|
1383 |
msgid "Icon Hover Animation"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: inc/options.php:1487
|
1387 |
msgid "Select the Icon's Animation."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: inc/options.php:1501 inc/options.php:1949 inc/options.php:3444
|
1391 |
msgid "Icon Size"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: inc/options.php:1502
|
1395 |
msgid "Set size for icon of feature box."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: inc/options.php:1506 inc/options.php:1955 inc/options.php:2147
|
1399 |
+
#: inc/options.php:3449
|
1400 |
msgid "Icon Color"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: inc/options.php:1507
|
1404 |
msgid "Set color for icon of feature box."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: inc/options.php:1511
|
1408 |
msgid "Icon Border Color"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: inc/options.php:1512
|
1412 |
msgid "Set border color for icon of feature box."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: inc/options.php:1519
|
1416 |
msgid "Icon Border Width"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: inc/options.php:1520
|
1420 |
msgid "Set border width for icon of feature box."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: inc/options.php:1526
|
1424 |
msgid "Flip Icon"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: inc/options.php:1527
|
1428 |
msgid "Choose to flip the icon of feature box."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: inc/options.php:1529 inc/options.php:3261 inc/options.php:3330
|
1432 |
+
#: inc/options.php:3350 inc/options.php:3635
|
1433 |
msgid "None"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: inc/options.php:1530 inc/options.php:1669
|
1437 |
msgid "Horizontal"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: inc/options.php:1531 inc/options.php:1670
|
1441 |
msgid "Vertical"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: inc/options.php:1538
|
1445 |
msgid "Spinning Icon"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: inc/options.php:1539
|
1449 |
msgid "Choose to spin the icon of feature box."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: inc/options.php:1545 inc/options.php:2160 inc/options.php:2877
|
1453 |
+
#: inc/options.php:3454
|
1454 |
msgid "Icon Circle Background Color"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: inc/options.php:1546
|
1458 |
msgid "Set background for icon circle of feature box."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: inc/options.php:1552
|
1462 |
msgid "Icon Alignment"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: inc/options.php:1553
|
1466 |
msgid "Set alignment for style2/style3 of feature box."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: inc/options.php:1563
|
1470 |
msgid "Icon Circle"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: inc/options.php:1564
|
1474 |
msgid "Choose to display icon of feature box in circle."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: inc/options.php:1571
|
1478 |
msgid "Icon Image"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: inc/options.php:1572
|
1482 |
msgid "To upload your own icon image, remember to deselect icon above."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: inc/options.php:1579
|
1486 |
msgid "Icon Image Width"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: inc/options.php:1580
|
1490 |
msgid ""
|
1491 |
"If using custom icon image, set icon image width. In percentage of pixels "
|
1492 |
"(px), eg: 1px."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: inc/options.php:1587
|
1496 |
msgid "Icon Image Height"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: inc/options.php:1588
|
1500 |
msgid ""
|
1501 |
"If using custom icon image, set icon image height. In percentage of pixels "
|
1502 |
"(px), eg: 1px."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: inc/options.php:1595
|
1506 |
msgid "Link URL"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: inc/options.php:1596
|
1510 |
msgid "Set link for feature box, eg: http://example.com."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: inc/options.php:1601 inc/options.php:2062 inc/options.php:2407
|
1514 |
msgid "Link Target"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: inc/options.php:1602 inc/options.php:2063 inc/options.php:2408
|
1518 |
msgid "_self = open in same window _blank = open in new window."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: inc/options.php:1604 inc/options.php:2065 inc/options.php:2410
|
1522 |
msgid "_blank"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: inc/options.php:1605 inc/options.php:2066 inc/options.php:2411
|
1526 |
msgid "_self"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: inc/options.php:1612
|
1530 |
msgid "Link Text"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: inc/options.php:1613
|
1534 |
msgid ""
|
1535 |
"Insert link text for feature box. It would not display if you leave it as "
|
1536 |
"blank."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: inc/options.php:1617
|
1540 |
msgid "Link Color"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: inc/options.php:1618
|
1544 |
msgid "Set color for link of feature box."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: inc/options.php:1622
|
1548 |
msgid "Content Color"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: inc/options.php:1623
|
1552 |
msgid "Set color for content of feature box."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: inc/options.php:1627
|
1556 |
msgid "Set box background color for Boxed Style."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: inc/options.php:1628
|
1560 |
msgid "For Boxed Style"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: inc/options.php:1644 inc/options.php:1904 inc/options.php:2252
|
1564 |
msgid "Your Content Goes Here"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: inc/options.php:1646
|
1568 |
msgid "Feature Box Content"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: inc/options.php:1651
|
1572 |
msgid "Feature Box Shortcode"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: inc/options.php:1652
|
1576 |
+
msgid "feature-box-shortcode/"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: inc/options.php:1666
|
1580 |
msgid "Direction"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: inc/options.php:1667
|
1584 |
msgid "Select flip directioon."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: inc/options.php:1671
|
1588 |
+
msgid "Flip Left"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: inc/options.php:1672
|
1592 |
+
msgid "Flip Right"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: inc/options.php:1673
|
1596 |
+
msgid "Flip Top"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: inc/options.php:1674
|
1600 |
+
msgid "Flip Bottom"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: inc/options.php:1675
|
1604 |
+
msgid "Slide Left"
|
1605 |
+
msgstr ""
|
1606 |
+
|
1607 |
+
#: inc/options.php:1676
|
1608 |
+
msgid "Slide Right"
|
1609 |
+
msgstr ""
|
1610 |
+
|
1611 |
+
#: inc/options.php:1677
|
1612 |
+
msgid "Slide Top"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: inc/options.php:1678
|
1616 |
+
msgid "Slide Bottom"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: inc/options.php:1686
|
1620 |
msgid "Front Container Paddings"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: inc/options.php:1687
|
1624 |
msgid "Set paddings for front container of flip box."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: inc/options.php:1692
|
1628 |
msgid "Front Background Color"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: inc/options.php:1693
|
1632 |
msgid "Set background color for front container of flip box."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: inc/options.php:1698
|
1636 |
+
msgid "Front Font Color"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: inc/options.php:1699 inc/options.php:1725
|
1640 |
+
msgid "Custom setting only. Set the background color for custom alert boxes."
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: inc/options.php:1702
|
1644 |
msgid "Front Content"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: inc/options.php:1704
|
1648 |
msgid "Front content."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: inc/options.php:1705
|
1652 |
msgid "Insert content for front container of flip box."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: inc/options.php:1712
|
1656 |
msgid "Back Container Paddings"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: inc/options.php:1713
|
1660 |
msgid "Set paddings for back container of flip box."
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: inc/options.php:1718
|
1664 |
+
msgid "Back Background Color"
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: inc/options.php:1719
|
1668 |
msgid "Set background color for back container of flip box."
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: inc/options.php:1724
|
1672 |
+
msgid "Back Font Color"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: inc/options.php:1728
|
1676 |
msgid "Back Content"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: inc/options.php:1730
|
1680 |
msgid "Back Content."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: inc/options.php:1731
|
1684 |
msgid "Insert content for back container of flip box."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: inc/options.php:1748
|
1688 |
msgid "Flip Box Shortcode"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: inc/options.php:1749
|
1692 |
+
msgid "flip-box-shortcode/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: inc/options.php:1765
|
1696 |
msgid "Insert heading text"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: inc/options.php:1772
|
1700 |
msgid "Choose a heading style. Leave blank as default."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: inc/options.php:1785
|
1704 |
msgid "Set color for heading text."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: inc/options.php:1790
|
1708 |
msgid "Set border color for heading."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: inc/options.php:1795 inc/options.php:2790
|
1712 |
msgid "Text Align"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: inc/options.php:1796
|
1716 |
msgid "Set text align for this heading."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: inc/options.php:1802
|
1720 |
msgid "Font Weight"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: inc/options.php:1803
|
1724 |
msgid "Set font weight for heading text."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: inc/options.php:1822 inc/options.php:2609
|
1728 |
msgid "Font Size"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: inc/options.php:1823
|
1732 |
msgid "Set font size for heading text. In pixels (px), eg: 1px."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: inc/options.php:1852
|
1736 |
msgid "Responsive Text"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: inc/options.php:1853
|
1740 |
msgid "Choose to display responsive text."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: inc/options.php:1872
|
1744 |
msgid "Heading Shortcode"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: inc/options.php:1873
|
1748 |
+
msgid "heading-shortcode/"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: inc/options.php:1888
|
1752 |
+
msgid "Set background color for highlight item."
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: inc/options.php:1901
|
1756 |
+
msgid "Set font color for highlight item."
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: inc/options.php:1906
|
1760 |
+
msgid "Content to Higlight"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: inc/options.php:1907
|
1764 |
+
msgid "Insert content to highlight."
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: inc/options.php:1924
|
1768 |
+
msgid "Highlight Shortcode"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: inc/options.php:1925
|
1772 |
+
msgid "highlight-shortcode/"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: inc/options.php:1950
|
1776 |
msgid "Set text size for item."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: inc/options.php:1956 inc/options.php:3450
|
1780 |
msgid "Set color for icon."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: inc/options.php:1961
|
1784 |
msgid "Icon Box"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: inc/options.php:1962
|
1788 |
msgid "Choose to display boxed icon."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: inc/options.php:1980
|
1792 |
msgid "Icon Shortcode"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: inc/options.php:1981
|
1796 |
+
msgid "icon-shortcode/"
|
1797 |
+
msgstr ""
|
1798 |
+
|
1799 |
+
#: inc/options.php:1996
|
1800 |
+
msgid "Select how the image compare display."
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: inc/options.php:2005 inc/options.php:2583 inc/options.php:2760
|
1804 |
+
msgid "Percent"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: inc/options.php:2006
|
1808 |
+
msgid "Choose default offset pct"
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: inc/options.php:2012
|
1812 |
+
msgid "Image Left"
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: inc/options.php:2013
|
1816 |
+
msgid "Insert the image displayed in the left."
|
1817 |
+
msgstr ""
|
1818 |
+
|
1819 |
+
#: inc/options.php:2018
|
1820 |
+
msgid "Image Right"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: inc/options.php:2019
|
1824 |
+
msgid "Insert the image displayed in the right."
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: inc/options.php:2035
|
1828 |
+
msgid "Image Compare Shortcode"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: inc/options.php:2036
|
1832 |
+
msgid "image-compare-shortcode/"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: inc/options.php:2051 inc/options.php:2437
|
1836 |
msgid "Upload an image to display."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: inc/options.php:2056
|
1840 |
msgid "Image Link URL"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: inc/options.php:2057 inc/options.php:2443
|
1844 |
msgid "Add the URL the picture will link to, ex: http://example.com."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: inc/options.php:2076
|
1848 |
msgid ""
|
1849 |
"Choose the border radius of the image frame. In pixels (px), ex: 1px, or "
|
1850 |
"\"round\". Leave blank for theme option selection."
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: inc/options.php:2081
|
1854 |
msgid "Light Box"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: inc/options.php:2082
|
1858 |
msgid "Choose to display light box once click."
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: inc/options.php:2100
|
1862 |
msgid "Image Frame Shortcode"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: inc/options.php:2101
|
1866 |
+
msgid "image-frame-shortcode/"
|
1867 |
+
msgstr ""
|
1868 |
+
|
1869 |
+
#: inc/options.php:2117 inc/options.php:2767
|
1870 |
+
msgid "Text"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: inc/options.php:2118
|
1874 |
+
msgid "Insert text to be displayed in label."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: inc/options.php:2124
|
1878 |
+
msgid "Set background color for label."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: inc/options.php:2128
|
1882 |
+
msgid "Label Shortcode"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: inc/options.php:2129
|
1886 |
+
msgid "label-shortcode/"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: inc/options.php:2148
|
1890 |
msgid "Set color fo list icon."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: inc/options.php:2152
|
1894 |
msgid "Icon Boxed"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: inc/options.php:2153
|
1898 |
msgid "Choose to set icon boxed."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: inc/options.php:2161
|
1902 |
msgid "Set background color for list icon."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: inc/options.php:2165
|
1906 |
msgid "Boxed Shape"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: inc/options.php:2166
|
1910 |
msgid "Choose boxed shape for list icon."
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: inc/options.php:2169
|
1914 |
msgid "Circle"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: inc/options.php:2173
|
1918 |
msgid "Item Border"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: inc/options.php:2174
|
1922 |
msgid "Choose to display item border for list."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: inc/options.php:2184
|
1926 |
msgid "Item Size"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: inc/options.php:2185
|
1930 |
msgid "Set text font size for item."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: inc/options.php:2202
|
1934 |
msgid "List items"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: inc/options.php:2207
|
1938 |
msgid "List Shortcode"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: inc/options.php:2208
|
1942 |
+
msgid "list-shortcode/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: inc/options.php:2222
|
1946 |
msgid "Modal Anchor Text"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: inc/options.php:2223
|
1950 |
msgid "Insert anchor text for the modal."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: inc/options.php:2228
|
1954 |
msgid "Modal Heading"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: inc/options.php:2229
|
1958 |
msgid "Insert heading text for the modal."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: inc/options.php:2233
|
1962 |
msgid "Size Of Modal"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: inc/options.php:2234
|
1966 |
msgid "Select the modal window size."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: inc/options.php:2237
|
1970 |
msgid "Middle"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: inc/options.php:2244
|
1974 |
msgid "Show Footer"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: inc/options.php:2245
|
1978 |
msgid "Choose to show the modal footer with close button."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: inc/options.php:2254
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1982 |
msgid "Contents of Modal"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: inc/options.php:2255
|
1986 |
msgid "Add your content to be displayed in modal."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: inc/options.php:2271
|
1990 |
msgid "Modal Shortcode"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: inc/options.php:2272
|
1994 |
+
msgid "modal-shortcode/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: inc/options.php:2286
|
1998 |
+
msgid "Select a menu"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: inc/options.php:2303
|
2002 |
+
msgid "Menu Shortcode"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: inc/options.php:2319
|
2006 |
+
msgid "Insert title for panel."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: inc/options.php:2322
|
2010 |
+
msgid "Panel content."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: inc/options.php:2324
|
2014 |
+
msgid "Panel Content"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: inc/options.php:2325
|
2018 |
+
msgid "Insert content for panel."
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: inc/options.php:2333
|
2022 |
+
msgid "Set color for panel title."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: inc/options.php:2339
|
2026 |
+
msgid "Set color for panel border."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: inc/options.php:2345
|
2030 |
+
msgid "Title Background Color"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: inc/options.php:2346
|
2034 |
+
msgid "Set background color for panel title."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: inc/options.php:2370
|
2038 |
+
msgid "Panel Shortcode"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: inc/options.php:2371
|
2042 |
+
msgid "panel-shortcode/"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: inc/options.php:2386
|
2046 |
msgid "Choose to display info below or beside the image."
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: inc/options.php:2388
|
2050 |
+
msgid "Below"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: inc/options.php:2389
|
2054 |
+
msgid "Beside"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: inc/options.php:2395 inc/options.php:3614 inc/options.php:4050
|
2058 |
msgid "Name"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: inc/options.php:2396
|
2062 |
msgid "Insert the name of the person."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: inc/options.php:2402
|
2066 |
msgid "Insert the title of the person"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: inc/options.php:2418
|
2070 |
msgid "Image Overlay Color"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: inc/options.php:2419
|
2074 |
msgid "Select a hover color to show over the image as an overlay."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: inc/options.php:2424
|
2078 |
msgid "Image Overlay Opacity"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: inc/options.php:2425
|
2082 |
msgid "Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: inc/options.php:2431
|
2086 |
msgid "Profile Description"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: inc/options.php:2432
|
2090 |
msgid "Insert profile description."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: inc/options.php:2436
|
2094 |
msgid "Picture"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: inc/options.php:2442
|
2098 |
msgid "Picture Link URL"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: inc/options.php:2450
|
2102 |
msgid "Picture Border Size"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: inc/options.php:2451
|
2106 |
msgid "In pixels (px), ex: 1px. Leave blank for theme option selection."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: inc/options.php:2455
|
2110 |
msgid "Picture Border Color"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: inc/options.php:2456
|
2114 |
msgid ""
|
2115 |
"Controls the picture's border color. Leave blank for theme option selection."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: inc/options.php:2463
|
2119 |
msgid "Picture Border Radius"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: inc/options.php:2464
|
2123 |
msgid ""
|
2124 |
"Choose the border radius of the person image. In pixels (px), ex: 1px, or "
|
2125 |
"\"round\". Leave blank for theme option selection."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: inc/options.php:2471
|
2129 |
msgid "Social Icon Box Radius"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: inc/options.php:2472
|
2133 |
msgid ""
|
2134 |
"Choose the border radius of the boxed icons. In pixels (px), ex: 1px, or "
|
2135 |
"\"round\". Leave blank for theme option selection."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: inc/options.php:2477
|
2139 |
msgid "Social Icon Custom Colors"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: inc/options.php:2478
|
2143 |
msgid ""
|
2144 |
"Controls the Icon's border color. Leave blank for theme option selection."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: inc/options.php:2482
|
2148 |
msgid "Icon1"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: inc/options.php:2489
|
2152 |
msgid "Link1 "
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: inc/options.php:2490
|
2156 |
msgid "The Icon1 Link "
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: inc/options.php:2494
|
2160 |
msgid "Icon2"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: inc/options.php:2501
|
2164 |
msgid "Link2 "
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: inc/options.php:2502
|
2168 |
msgid "The Icon2 Link "
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: inc/options.php:2506
|
2172 |
msgid "Icon3"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: inc/options.php:2513
|
2176 |
msgid "Link3 "
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: inc/options.php:2514
|
2180 |
msgid "The Icon3 Link "
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: inc/options.php:2518
|
2184 |
msgid "Icon4"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: inc/options.php:2525
|
2188 |
msgid "Link4"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: inc/options.php:2526
|
2192 |
msgid "The Icon4 Link "
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: inc/options.php:2530
|
2196 |
msgid "Icon5"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: inc/options.php:2537
|
2200 |
msgid "Link5"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: inc/options.php:2538
|
2204 |
msgid "The Icon5 Link "
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: inc/options.php:2554
|
2208 |
msgid "Person Shortcode"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: inc/options.php:2555
|
2212 |
+
msgid "person-shortcode/"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: inc/options.php:2570
|
2216 |
+
msgid "Line Cap"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: inc/options.php:2571
|
2220 |
+
msgid "Select how the ending of the bar line looks like."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: inc/options.php:2573
|
2224 |
+
msgid "Round"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: inc/options.php:2574
|
2228 |
+
msgid "Butt"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: inc/options.php:2584
|
2232 |
+
msgid "From 1 to 100."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: inc/options.php:2592
|
2236 |
+
msgid "Insert title for piechart. It need to be short."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: inc/options.php:2600
|
2240 |
+
msgid "Size"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: inc/options.php:2601
|
2244 |
+
msgid "Set size for piechart."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: inc/options.php:2610
|
2248 |
+
msgid "Set font size for piechart title."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: inc/options.php:2615
|
2252 |
+
msgid "Filled Color"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: inc/options.php:2616
|
2256 |
+
msgid "Set color for filled area in piechart."
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: inc/options.php:2621
|
2260 |
+
msgid "Unfilled Color"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: inc/options.php:2622
|
2264 |
+
msgid "Set color for unfilled area in piechart."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: inc/options.php:2635
|
2268 |
+
msgid "Piechart Shortcode"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: inc/options.php:2636
|
2272 |
+
msgid "piechart-shortcode/"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: inc/options.php:2650
|
2276 |
+
msgid "Popover Heading"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: inc/options.php:2651
|
2280 |
+
msgid "Insert heading text of the popover."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: inc/options.php:2656
|
2284 |
+
msgid "Triggering Text"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: inc/options.php:2657
|
2288 |
+
msgid "Content that will trigger the popover."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: inc/options.php:2664
|
2292 |
+
msgid "Contents Inside Popover"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: inc/options.php:2665
|
2296 |
+
msgid "Text to be displayed inside the popover."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: inc/options.php:2670
|
2300 |
+
msgid "Popover Trigger Method"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: inc/options.php:2671
|
2304 |
+
msgid "Choose mouse action to trigger popover."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: inc/options.php:2673 inc/options.php:3744
|
2308 |
+
msgid "Click"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: inc/options.php:2674 inc/options.php:3743
|
2312 |
+
msgid "Hover"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: inc/options.php:2679
|
2316 |
+
msgid "Popover Position"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: inc/options.php:2680
|
2320 |
+
msgid "Choose the display position of the popover."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: inc/options.php:2682 inc/options.php:2869 inc/options.php:3732
|
2324 |
+
msgid "Top"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: inc/options.php:2683 inc/options.php:2870 inc/options.php:3733
|
2328 |
+
msgid "Bottom"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: inc/options.php:2703
|
2332 |
+
msgid "Popover Shortcode"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: inc/options.php:2704
|
2336 |
+
msgid "popover-shortcode/"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: inc/options.php:2719
|
2340 |
+
msgid "Choose the show of progress bar."
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: inc/options.php:2721 inc/options.php:3519
|
2344 |
+
msgid "Normal Style"
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: inc/options.php:2722
|
2348 |
+
msgid "Circle Style"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: inc/options.php:2728 inc/options.php:2732
|
2352 |
msgid "Striped"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: inc/options.php:2729
|
2356 |
msgid "Choose to get the filled area striped."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: inc/options.php:2731
|
2360 |
msgid "None Striped"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: inc/options.php:2733
|
2364 |
msgid "Striped Animated"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: inc/options.php:2740
|
2368 |
msgid "Choose to set the progress bar as rounded."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: inc/options.php:2742
|
2372 |
msgid "On"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: inc/options.php:2743
|
2376 |
msgid "Off"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: inc/options.php:2749
|
2380 |
msgid "Display Number"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: inc/options.php:2750
|
2384 |
msgid "Choose to diplay number for progress bar."
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: inc/options.php:2761
|
2388 |
msgid "Set percentage for progress bar. 0~100."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: inc/options.php:2768
|
2392 |
msgid "Insert text for progress bar."
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: inc/options.php:2777
|
2396 |
msgid "Set height for progress bar."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: inc/options.php:2785
|
2400 |
msgid "Set background color for filled area in progress bar."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: inc/options.php:2791
|
2404 |
msgid "Set align for progress bar."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: inc/options.php:2800
|
2408 |
msgid "Text Position"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: inc/options.php:2801
|
2412 |
msgid "Choose text position for progress bar."
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: inc/options.php:2803
|
2416 |
msgid "Text on Progress bars"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: inc/options.php:2804
|
2420 |
msgid "Text above progress bars"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: inc/options.php:2825
|
2424 |
msgid "Progress Shortcode"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: inc/options.php:2826
|
2428 |
+
msgid "progress-bar-shortcode/"
|
2429 |
+
msgstr ""
|
2430 |
+
|
2431 |
+
#: inc/options.php:2841
|
2432 |
+
msgid "Select style for promo box."
|
2433 |
+
msgstr ""
|
2434 |
+
|
2435 |
+
#: inc/options.php:2851
|
2436 |
+
msgid "Set color for highlight border of promo box."
|
2437 |
+
msgstr ""
|
2438 |
+
|
2439 |
+
#: inc/options.php:2859
|
2440 |
+
msgid "Set width for highlight border of promo box."
|
2441 |
+
msgstr ""
|
2442 |
+
|
2443 |
+
#: inc/options.php:2864
|
2444 |
+
msgid "Border Position"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: inc/options.php:2865
|
2448 |
+
msgid "Choose position for highlight border of promo box."
|
2449 |
+
msgstr ""
|
2450 |
+
|
2451 |
+
#: inc/options.php:2878
|
2452 |
+
msgid "Set background color for promo box."
|
2453 |
+
msgstr ""
|
2454 |
+
|
2455 |
+
#: inc/options.php:2890
|
2456 |
+
msgid "Inser text for button of promo box."
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: inc/options.php:2895
|
2460 |
+
msgid "Button Text Color"
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: inc/options.php:2900
|
2464 |
+
msgid "Button Link URL"
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: inc/options.php:2901
|
2468 |
+
msgid "Inser link for button of promo box, eg: http://example.com."
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: inc/options.php:2913
|
2472 |
+
msgid "Insert content for promo box."
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: inc/options.php:2929
|
2476 |
+
msgid "Promo Box Shortcode"
|
2477 |
+
msgstr ""
|
2478 |
+
|
2479 |
+
#: inc/options.php:2930
|
2480 |
+
msgid "promo-box-shortcode/"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: inc/options.php:2944
|
2484 |
msgid "Set alignment for pullquote."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: inc/options.php:2954
|
2488 |
msgid "Insert content for pullquote."
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: inc/options.php:2971
|
2492 |
msgid "Pullquote Shortcode"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: inc/options.php:2972
|
2496 |
+
msgid "pullquote-shortcode/"
|
2497 |
+
msgstr ""
|
2498 |
+
|
2499 |
+
#: inc/options.php:2988
|
2500 |
msgid "The text to store within the QR code. Any text or URL is available."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: inc/options.php:2993
|
2504 |
msgid "Alternative text"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: inc/options.php:2994
|
2508 |
msgid "Set image alt for QR code."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: inc/options.php:3001
|
2512 |
msgid "Size in pixel"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: inc/options.php:3002
|
2516 |
msgid "Image width and height."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: inc/options.php:3007
|
2520 |
msgid "QRCode clickable?"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: inc/options.php:3008
|
2524 |
msgid "Choose to make this QR code clickable."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: inc/options.php:3017
|
2528 |
msgid "Foreground Color"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: inc/options.php:3018
|
2532 |
msgid "Set foreground Color for QR code."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: inc/options.php:3024
|
2536 |
msgid "Set background Color for QR code."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: inc/options.php:3028
|
2540 |
msgid "QR Code Shortcode"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: inc/options.php:3029
|
2544 |
+
msgid "qr-code-shortcode/"
|
2545 |
+
msgstr ""
|
2546 |
+
|
2547 |
+
#: inc/options.php:3043
|
2548 |
msgid "Cite"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: inc/options.php:3044
|
2552 |
msgid "Author name for quote."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: inc/options.php:3049
|
2556 |
msgid "Cite Link"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: inc/options.php:3050
|
2560 |
msgid "Insert Url for the quote author. Leave empty to disable hyperlink."
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: inc/options.php:3056
|
2564 |
msgid "Insert content for the quote."
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: inc/options.php:3072
|
2568 |
msgid "Quote Shortcode"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: inc/options.php:3073
|
2572 |
+
msgid "quote-shortcode/"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: inc/options.php:3088
|
2576 |
msgid "Feed URL"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: inc/options.php:3089
|
2580 |
msgid "Url of RSS Feed."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: inc/options.php:3096
|
2584 |
msgid "Number to Display"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: inc/options.php:3097
|
2588 |
msgid "Number of items to show."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: inc/options.php:3113
|
2592 |
msgid "RSS Feed Shortcode"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: inc/options.php:3114
|
2596 |
+
msgid "rss-feed-shortcode/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: inc/options.php:3129
|
2600 |
+
msgid "Time"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: inc/options.php:3130
|
2604 |
+
msgid ""
|
2605 |
+
"Select an random time in one day to show content.</br>Example: 6-12,13-16 "
|
2606 |
+
"show content from 6:00 to 12:00 and from 13:00 to 16:00"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: inc/options.php:3135
|
2610 |
+
msgid "Days of Week"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: inc/options.php:3136
|
2614 |
+
msgid ""
|
2615 |
+
"Select days from one week to show content.</br>1 => Monday </br>2 => "
|
2616 |
+
"Tuesday </br> 3 => Wednesday</br> 4 => Thursday </br> 5 => Friday </br> 6 "
|
2617 |
+
"=> Saturday </br> 7 => Sunday </br>Examples:1-5,7 =>show content at Sunday "
|
2618 |
+
"and from Monday to Friday"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: inc/options.php:3141
|
2622 |
+
msgid "Days of Month"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: inc/options.php:3142
|
2626 |
+
msgid ""
|
2627 |
+
"Select days from one month to show content.</br>Examples:</br>1 => show "
|
2628 |
+
"content only at first day of month </br> 10-25 => show content from 10th to "
|
2629 |
+
"25th </br> 10-15,20-25 => show content from 10th to 15th and from 20th to "
|
2630 |
+
"25th"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: inc/options.php:3147
|
2634 |
+
msgid "Months"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: inc/options.php:3148
|
2638 |
+
msgid ""
|
2639 |
+
"Select months from a year to show content.</br>Examples:</br>1 => show "
|
2640 |
+
"content in January </br> 3-6 => show content from March to June </br> "
|
2641 |
+
"1,5,8-9 => show content in January,May and from August to September"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: inc/options.php:3153
|
2645 |
+
msgid "Years"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: inc/options.php:3154
|
2649 |
+
msgid ""
|
2650 |
+
"Select years to show content.</br>Examples:</br> 2016 => show content in "
|
2651 |
+
"2016 </br>2014-2016 => show content from 2014 to 2016 </br> "
|
2652 |
+
"2016,2017,2345-2666 => show content in 2016,2017 and from 2345 to 2666"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: inc/options.php:3172
|
2656 |
+
msgid "Insert scheduled content."
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: inc/options.php:3176
|
2660 |
+
msgid "Scheduled Shortcode"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: inc/options.php:3177
|
2664 |
+
msgid "scheduled-shortcode/"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: inc/options.php:3193
|
2668 |
+
msgid "Set background for section. Leave blank for transparent."
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: inc/options.php:3200
|
2672 |
+
msgid "Upload an image to display in the background."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: inc/options.php:3204
|
2676 |
+
msgid "Background Repeat"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: inc/options.php:3205
|
2680 |
+
msgid "Choose repeat style for the background image."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: inc/options.php:3208
|
2684 |
+
msgid "Repeat"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: inc/options.php:3209
|
2688 |
+
msgid "Repeat-x"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: inc/options.php:3210
|
2692 |
+
msgid "Repeat-y"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: inc/options.php:3211
|
2696 |
+
msgid "No-repeat"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: inc/options.php:3212 inc/options.php:3272
|
2700 |
+
msgid "Inherit"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: inc/options.php:3219
|
2704 |
+
msgid "Choose the postion of the background image."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: inc/options.php:3235
|
2708 |
msgid "Background Parallax"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: inc/options.php:3236
|
2712 |
msgid "Choose how the background image scrolls and responds."
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: inc/options.php:3253
|
2716 |
msgid "Set border color for section."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: inc/options.php:3258
|
2720 |
msgid "Select border style for section"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: inc/options.php:3262
|
2724 |
msgid "Hidden"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: inc/options.php:3265
|
2728 |
msgid "Solid"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: inc/options.php:3266
|
2732 |
msgid "Double"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: inc/options.php:3267
|
2736 |
msgid "Groove"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: inc/options.php:3268
|
2740 |
msgid "Ridge"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: inc/options.php:3269
|
2744 |
msgid "Inset"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: inc/options.php:3270
|
2748 |
msgid "Outset"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: inc/options.php:3271
|
2752 |
msgid "Initial"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: inc/options.php:3282
|
|
|
|
|
|
|
|
|
2756 |
msgid "Padding Top"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: inc/options.php:3290
|
2760 |
msgid "Padding Bottom"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: inc/options.php:3298
|
2764 |
msgid "Padding Left"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: inc/options.php:3306
|
2768 |
msgid "Padding Right"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: inc/options.php:3311
|
2772 |
msgid "Contents in Container ?"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: inc/options.php:3312
|
2776 |
msgid "Put the content in container."
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: inc/options.php:3318
|
2780 |
msgid "Section content."
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: inc/options.php:3320
|
2784 |
msgid "Section Content"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: inc/options.php:3321
|
2788 |
msgid "Insert content for section."
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: inc/options.php:3327
|
2792 |
msgid "Top Separator"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: inc/options.php:3331 inc/options.php:3351
|
2796 |
+
msgid "Triangle"
|
|
|
|
|
|
|
|
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: inc/options.php:3332
|
2800 |
+
msgid "Doublediagonal"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: inc/options.php:3333 inc/options.php:3352
|
2804 |
+
msgid "Halfcircle"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: inc/options.php:3334 inc/options.php:3353
|
2808 |
+
msgid "Bigtriangle"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: inc/options.php:3335 inc/options.php:3354
|
2812 |
+
msgid "Bighalfcircle"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: inc/options.php:3336 inc/options.php:3355
|
2816 |
+
msgid "Curl"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: inc/options.php:3337 inc/options.php:3356
|
2820 |
+
msgid "Multitriangles"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: inc/options.php:3338
|
2824 |
+
msgid "Roundedsplit"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: inc/options.php:3339 inc/options.php:3359
|
2828 |
+
msgid "Boxes"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: inc/options.php:3340 inc/options.php:3360
|
2832 |
+
msgid "Zigzag"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: inc/options.php:3341
|
2836 |
+
msgid "Clouds"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: inc/options.php:3347
|
2840 |
msgid "Bottom Separator"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: inc/options.php:3357
|
2844 |
+
msgid "Roundedcorners"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: inc/options.php:3358
|
2848 |
+
msgid "Foldedcorner"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: inc/options.php:3361
|
2852 |
+
msgid "Stamp"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: inc/options.php:3367
|
2856 |
msgid "Full Height"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: inc/options.php:3368
|
2860 |
msgid "Choose to set the section height same as browser window."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: inc/options.php:3385
|
2864 |
msgid "Section Shortcode"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: inc/options.php:3386
|
2868 |
+
msgid "section-shortcode/"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: inc/options.php:3401 inc/options.php:3414
|
2872 |
+
msgid "Slider"
|
|
|
|
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: inc/options.php:3415
|
2876 |
+
msgid "slider-shortcode/"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: inc/options.php:3430
|
2880 |
+
msgid "Title "
|
|
|
|
|
|
|
|
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: inc/options.php:3431
|
2884 |
+
msgid "Insert the title for the social icon."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: inc/options.php:3445
|
2888 |
+
msgid "In pixels (px), eg: 13px."
|
|
|
|
|
|
|
|
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: inc/options.php:3455
|
2892 |
+
msgid "Set background color for icon."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: inc/options.php:3460
|
2896 |
+
msgid "Icon 3D effect"
|
|
|
|
|
|
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: inc/options.php:3461
|
2900 |
+
msgid "Display box shadow for icon."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: inc/options.php:3469
|
2904 |
+
msgid "Icon Box Radius Style"
|
|
|
|
|
|
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: inc/options.php:3475
|
2908 |
+
msgid "Circle "
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: inc/options.php:3481
|
2912 |
+
msgid "Icon Link URL"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: inc/options.php:3482
|
2916 |
+
msgid "Add the icon's url eg: http://example.com."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: inc/options.php:3498
|
2920 |
+
msgid "Social Shortcode"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: inc/options.php:3499
|
2924 |
+
msgid "social-shortcode/"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: inc/options.php:3513
|
2928 |
+
msgid "Select tabs' style."
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: inc/options.php:3516
|
2932 |
+
msgid "Simple Style Justified"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: inc/options.php:3518
|
2936 |
+
msgid "Button Style Justified"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: inc/options.php:3520
|
2940 |
+
msgid "Normal Style Justified"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: inc/options.php:3521
|
2944 |
+
msgid "Vertical Style"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: inc/options.php:3522
|
2948 |
+
msgid "Vertical Style Right"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: inc/options.php:3528
|
2952 |
+
msgid "Set color for tab item's title."
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: inc/options.php:3545
|
2956 |
+
msgid "Tab Items"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: inc/options.php:3546
|
2960 |
+
msgid "Insert tab items."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: inc/options.php:3552
|
2964 |
+
msgid "Tab Shortcode"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: inc/options.php:3553
|
2968 |
+
msgid "tabs-shortcode/"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: inc/options.php:3568
|
2972 |
+
msgid ""
|
2973 |
+
"Select visible permissions.Private for author only. Members for logged-in "
|
2974 |
+
"users. Guests for users not logged in."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: inc/options.php:3570
|
2978 |
+
msgid "Private"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: inc/options.php:3571
|
2982 |
+
msgid "Members"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: inc/options.php:3572
|
2986 |
+
msgid "Guests"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: inc/options.php:3579
|
2990 |
+
msgid "Set content for targeted users."
|
2991 |
+
msgstr ""
|
2992 |
+
|
2993 |
+
#: inc/options.php:3584
|
2994 |
+
msgid "Alternative Content"
|
2995 |
+
msgstr ""
|
2996 |
+
|
2997 |
+
#: inc/options.php:3585
|
2998 |
+
msgid "Set content for other users."
|
2999 |
+
msgstr ""
|
3000 |
+
|
3001 |
+
#: inc/options.php:3589
|
3002 |
+
msgid "Targeted Shortcode"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: inc/options.php:3590
|
3006 |
+
msgid "targeted-shortcode/"
|
3007 |
+
msgstr ""
|
3008 |
+
|
3009 |
+
#: inc/options.php:3604
|
3010 |
msgid "Style "
|
3011 |
msgstr ""
|
3012 |
|
3013 |
+
#: inc/options.php:3605
|
3014 |
msgid "Select testimonial's style"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: inc/options.php:3608
|
3018 |
msgid "Box"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: inc/options.php:3615
|
3022 |
msgid "Name of testimonial's author."
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: inc/options.php:3620
|
3026 |
msgid "Byline"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: inc/options.php:3621
|
3030 |
msgid "Byline of testimonial's author."
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: inc/options.php:3625
|
3034 |
msgid "Avatar"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: inc/options.php:3626
|
3038 |
msgid "Avatar of testimonial's author."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: inc/options.php:3632
|
3042 |
msgid "Alignment"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: inc/options.php:3633
|
3046 |
msgid "Select the content's alignment."
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: inc/options.php:3640 inc/options.php:3642
|
3050 |
msgid "Testimonial Content"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: inc/options.php:3643
|
3054 |
msgid "Insert content for testimonial."
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: inc/options.php:3659
|
3058 |
msgid "Testimonial Shortcode"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: inc/options.php:3660
|
3062 |
+
msgid "testimonial-shortcode/"
|
3063 |
+
msgstr ""
|
3064 |
+
|
3065 |
+
#: inc/options.php:3675
|
3066 |
msgid "Columns"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
+
#: inc/options.php:3676
|
3070 |
msgid "Number of items."
|
3071 |
msgstr ""
|
3072 |
|
3073 |
+
#: inc/options.php:3679
|
3074 |
msgid "2 columns"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: inc/options.php:3680
|
3078 |
msgid "3 columns"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: inc/options.php:3681
|
3082 |
msgid "4 columns"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: inc/options.php:3682
|
3086 |
msgid "5 columns"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: inc/options.php:3701
|
3090 |
msgid "Timeline Items"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: inc/options.php:3702
|
3094 |
msgid "Insert timeline items."
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: inc/options.php:3707
|
3098 |
msgid "Timeline Shortcode"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: inc/options.php:3708
|
3102 |
+
msgid "timeline-shortcode/"
|
|
|
|
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: inc/options.php:3724
|
3106 |
+
msgid "Tooltip Text"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: inc/options.php:3725
|
3110 |
+
msgid "Insert the text that displays in the tooltip"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: inc/options.php:3729
|
3114 |
+
msgid "Tooltip Position"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: inc/options.php:3730
|
3118 |
+
msgid "Choose the display position."
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: inc/options.php:3740
|
3122 |
+
msgid "Tooltip Trigger"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: inc/options.php:3741
|
3126 |
+
msgid "Choose action to trigger the tooltip."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: inc/options.php:3751
|
3130 |
+
msgid "Insert the text that will activate the tooltip hover"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: inc/options.php:3767
|
3134 |
+
msgid "Tooltip Shortcode"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: inc/options.php:3768
|
3138 |
+
msgid "tooltip-shortcode/"
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: inc/options.php:3784
|
3142 |
msgid "Mp4 Video Url"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: inc/options.php:3785
|
3146 |
msgid ""
|
3147 |
"Add the URL of video in MPEG4 format. WebM and MP4 format must be included "
|
3148 |
"to render your video with cross browser compatibility. OGV is optional."
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: inc/options.php:3791
|
3152 |
msgid "Ogv Video Url"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
+
#: inc/options.php:3792
|
3156 |
msgid ""
|
3157 |
"Add the URL of video in OGV format. WebM and MP4 format must be included to "
|
3158 |
"render your video with cross browser compatibility. OGV is optional."
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: inc/options.php:3798
|
3162 |
msgid "Webm Video Url"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: inc/options.php:3799
|
3166 |
msgid ""
|
3167 |
"Add the URL of video in webm format. WebM and MP4 format must be included to "
|
3168 |
"render your video with cross browser compatibility. OGV is optional."
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: inc/options.php:3805
|
3172 |
msgid "Poster"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: inc/options.php:3806
|
3176 |
msgid "Display a image when browser does not support HTML5 format."
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: inc/options.php:3872
|
3180 |
msgid "Video Shortcode"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: inc/options.php:3873
|
3184 |
+
msgid "video-shortcode/"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
+
#: inc/options.php:3888
|
3188 |
+
msgid "Vimeo URL"
|
3189 |
+
msgstr ""
|
3190 |
+
|
3191 |
+
#: inc/options.php:3954
|
3192 |
msgid "Vimeo Shortcode"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: inc/options.php:3955
|
3196 |
+
msgid "vimeo-shortcode/"
|
3197 |
+
msgstr ""
|
3198 |
+
|
3199 |
+
#: inc/options.php:3969
|
3200 |
msgid "Youtube URL"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: inc/options.php:4035
|
3204 |
msgid "Youtube Shortcode"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: inc/options.php:4036
|
3208 |
+
msgid "youtube-shortcode/"
|
3209 |
+
msgstr ""
|
3210 |
+
|
3211 |
+
#: inc/options.php:4051
|
3212 |
+
msgid "Choose widget name to show"
|
3213 |
+
msgstr ""
|
3214 |
+
|
3215 |
+
#: inc/options.php:4058
|
3216 |
+
msgid "Set background color for widget area"
|
3217 |
+
msgstr ""
|
3218 |
+
|
3219 |
+
#: inc/options.php:4066
|
3220 |
+
msgid "Content Padding. eg:30"
|
3221 |
+
msgstr ""
|
3222 |
+
|
3223 |
+
#: inc/options.php:4082
|
3224 |
+
msgid "Widget Area Shortcode"
|
3225 |
+
msgstr ""
|
3226 |
+
|
3227 |
#: shortcodes/class-countdowns.php:59
|
3228 |
msgid "Days"
|
3229 |
msgstr ""
|
3240 |
msgid "Seconds"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: shortcodes/class-rss-feed.php:46
|
3244 |
msgid "No items"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: shortcodes/class-rss-feed.php:51
|
3248 |
msgid "Posted "
|
3249 |
msgstr ""
|
readme.txt
CHANGED
@@ -68,6 +68,19 @@ Activate plugin at "Plugins" administration page.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
= 1.5.6 - 06/06/2016 =
|
72 |
* Fix - Fixed image uploader issue
|
73 |
* Fix - Fixed vimeo/youtube shortcodes issue
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.5.7 - 21/06/2016 =
|
72 |
+
Added: new option for List
|
73 |
+
Added: new option for Flip Box ( Diretion:flip top/left/bottom/right; slide top/left/bottom/right )
|
74 |
+
Added: new option for Custom Box ( Fixed Background ,Background Position )
|
75 |
+
Added: new option for Accordion Item ( icon, status )
|
76 |
+
Added: new option for Icon ( data-open/data-close )
|
77 |
+
Added: new option for Highlight ( font color )
|
78 |
+
Added: new option for Image Compare ( style, percent )
|
79 |
+
Added: new option for Piechart ( line cap )
|
80 |
+
Added: new option for Progress ( style )
|
81 |
+
Added: new option for Column ( align )
|
82 |
+
Improved shortcode Counter
|
83 |
+
|
84 |
= 1.5.6 - 06/06/2016 =
|
85 |
* Fix - Fixed image uploader issue
|
86 |
* Fix - Fixed vimeo/youtube shortcodes issue
|
shortcodes/class-accordion.php
CHANGED
@@ -45,6 +45,7 @@ class Magee_Accordion {
|
|
45 |
$html .= '<script>
|
46 |
jQuery(function($) {
|
47 |
if($("#magee-sc-form-preview").length>0){
|
|
|
48 |
num = $("#magee-sc-form-preview").contents().find(".panel-heading").length ;
|
49 |
for($i=0;$i<num;$i++){
|
50 |
$("#magee-sc-form-preview").contents().find(".panel-heading").eq($i).on("click",function(e){
|
@@ -63,6 +64,7 @@ class Magee_Accordion {
|
|
63 |
}
|
64 |
});
|
65 |
};
|
|
|
66 |
}
|
67 |
});
|
68 |
</script>';
|
@@ -100,20 +102,14 @@ class Magee_Accordion {
|
|
100 |
$expanded = "false";
|
101 |
$collapse = "collapsed";
|
102 |
}
|
103 |
-
|
104 |
-
if( stristr($icon,'fa-')):
|
105 |
-
$icon_str = '<i class="fa '.esc_attr($icon).'"></i>';
|
106 |
-
else:
|
107 |
-
$icon_str = '<img class="image-instead" src="'.esc_attr($icon).'"/>';
|
108 |
-
endif;
|
109 |
-
|
110 |
$itemId = 'collapse'.$this->id."-".$this->num;
|
111 |
|
112 |
$html = '<div class="panel panel-default">
|
113 |
<div class="panel-heading" role="tab" id="heading'.$itemId.'">
|
114 |
<a class="accordion-toggle '.$collapse.'" data-toggle="collapse" data-parent="#'.$this->id.'" href="#'.$itemId.'" aria-expanded="'.$expanded.'" aria-controls="'.$itemId.'">
|
115 |
<h4 class="panel-title">
|
116 |
-
'.$
|
117 |
</h4>
|
118 |
</a>
|
119 |
</div>
|
45 |
$html .= '<script>
|
46 |
jQuery(function($) {
|
47 |
if($("#magee-sc-form-preview").length>0){
|
48 |
+
if($("#magee-sc-form-preview").contents().find(".panel-heading").length>1){
|
49 |
num = $("#magee-sc-form-preview").contents().find(".panel-heading").length ;
|
50 |
for($i=0;$i<num;$i++){
|
51 |
$("#magee-sc-form-preview").contents().find(".panel-heading").eq($i).on("click",function(e){
|
64 |
}
|
65 |
});
|
66 |
};
|
67 |
+
}
|
68 |
}
|
69 |
});
|
70 |
</script>';
|
102 |
$expanded = "false";
|
103 |
$collapse = "collapsed";
|
104 |
}
|
105 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
$itemId = 'collapse'.$this->id."-".$this->num;
|
107 |
|
108 |
$html = '<div class="panel panel-default">
|
109 |
<div class="panel-heading" role="tab" id="heading'.$itemId.'">
|
110 |
<a class="accordion-toggle '.$collapse.'" data-toggle="collapse" data-parent="#'.$this->id.'" href="#'.$itemId.'" aria-expanded="'.$expanded.'" aria-controls="'.$itemId.'">
|
111 |
<h4 class="panel-title">
|
112 |
+
<i class="fa '.$icon.'"></i> '.esc_attr($title).'
|
113 |
</h4>
|
114 |
</a>
|
115 |
</div>
|
shortcodes/class-column.php
CHANGED
@@ -24,6 +24,7 @@ class Magee_Column {
|
|
24 |
array(
|
25 |
'id' =>'',
|
26 |
'class' =>'',
|
|
|
27 |
'style' =>'1/1',
|
28 |
), $args
|
29 |
);
|
@@ -71,7 +72,7 @@ class Magee_Column {
|
|
71 |
break;
|
72 |
}
|
73 |
|
74 |
-
$html = sprintf('<div class="%s %s" id="%s">%s</div>',$class,$columnclass,$id,do_shortcode( Magee_Core::fix_shortcodes($content)));
|
75 |
|
76 |
|
77 |
return $html;
|
24 |
array(
|
25 |
'id' =>'',
|
26 |
'class' =>'',
|
27 |
+
'align' =>'',
|
28 |
'style' =>'1/1',
|
29 |
), $args
|
30 |
);
|
72 |
break;
|
73 |
}
|
74 |
|
75 |
+
$html = sprintf('<div class="%s %s" id="%s" style="text-align:%s;">%s</div>',$class,$columnclass,$id,esc_attr($align),do_shortcode( Magee_Core::fix_shortcodes($content)));
|
76 |
|
77 |
|
78 |
return $html;
|
shortcodes/class-counter.php
CHANGED
@@ -26,26 +26,68 @@ class Magee_Counter {
|
|
26 |
array(
|
27 |
'id' =>'',
|
28 |
'class' =>'',
|
|
|
29 |
'top_icon' => '',
|
30 |
'top_icon_color' =>'',
|
31 |
-
'
|
32 |
-
'
|
33 |
'counter_num' =>'',
|
34 |
-
'
|
35 |
-
'
|
36 |
'border' =>'0'
|
37 |
), $args
|
38 |
);
|
39 |
|
40 |
extract( $defaults );
|
41 |
self::$args = $defaults;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
$class .= ' box-border';
|
43 |
$addclass = uniqid('color');
|
44 |
$class .= ' '.$addclass;
|
45 |
$css_style = '';
|
|
|
46 |
if( $top_icon_color)
|
47 |
$css_style .= '.'.$addclass.' .counter-top-icon i{color:'.$top_icon_color.'}';
|
48 |
-
$html
|
49 |
|
50 |
if( $border == '1' ):
|
51 |
$html .= '<div class="magee-counter-box '.esc_attr($class).'" id="'.esc_attr($id).'">';
|
@@ -59,24 +101,23 @@ class Magee_Counter {
|
|
59 |
$html .= '<div class="counter-top-icon"><img class="image-instead" src="'.esc_attr($top_icon).'" /></div>';
|
60 |
endif;
|
61 |
$html .= '<div class="counter">';
|
62 |
-
if( $
|
63 |
-
if( stristr($
|
64 |
-
$html .= '<i class="fa '.esc_attr($
|
65 |
else:
|
66 |
-
$html .= '<img class="image-instead" src="'.esc_attr($
|
67 |
endif;
|
68 |
-
if( $
|
69 |
-
$html .= '<span class="unit">'.esc_attr($
|
70 |
if( $counter_num )
|
71 |
$html .= '<span class="counter-num">'.esc_attr($counter_num).'</span>';
|
72 |
-
if( $
|
73 |
-
$html .= '<span class="unit">'.esc_attr($
|
74 |
|
75 |
$html .= '</div>';
|
76 |
|
77 |
-
$html .= '<h3 class="counter-
|
78 |
-
$html .= '</div>';
|
79 |
-
|
80 |
return $html;
|
81 |
}
|
82 |
|
26 |
array(
|
27 |
'id' =>'',
|
28 |
'class' =>'',
|
29 |
+
'box_width' => '',
|
30 |
'top_icon' => '',
|
31 |
'top_icon_color' =>'',
|
32 |
+
'middle_left_icon' => '',
|
33 |
+
'middle_left_text' =>'',
|
34 |
'counter_num' =>'',
|
35 |
+
'middle_right_text' =>'',
|
36 |
+
'bottom_title' =>'',
|
37 |
'border' =>'0'
|
38 |
), $args
|
39 |
);
|
40 |
|
41 |
extract( $defaults );
|
42 |
self::$args = $defaults;
|
43 |
+
$columnclass='';
|
44 |
+
switch($box_width)
|
45 |
+
{
|
46 |
+
case '1/1':
|
47 |
+
$columnclass='col-md-12';
|
48 |
+
break;
|
49 |
+
case '1/2':
|
50 |
+
$columnclass='col-md-6';
|
51 |
+
break;
|
52 |
+
case '1/3':
|
53 |
+
$columnclass='col-md-4';
|
54 |
+
break;
|
55 |
+
case '1/4':
|
56 |
+
$columnclass='col-md-3';
|
57 |
+
break;
|
58 |
+
case '1/5':
|
59 |
+
$columnclass='col-md-1_5';
|
60 |
+
break;
|
61 |
+
case '1/6':
|
62 |
+
$columnclass='col-md-2';
|
63 |
+
break;
|
64 |
+
case '2/3':
|
65 |
+
$columnclass='col-md-8';
|
66 |
+
break;
|
67 |
+
case '2/5':
|
68 |
+
$columnclass='col-md-2_5';
|
69 |
+
break;
|
70 |
+
case '3/4':
|
71 |
+
$columnclass='col-md-9';
|
72 |
+
break;
|
73 |
+
case '3/5':
|
74 |
+
$columnclass='col-md-3_5';
|
75 |
+
break;
|
76 |
+
case '4/5':
|
77 |
+
$columnclass='col-md-4_5';
|
78 |
+
break;
|
79 |
+
case '5/6':
|
80 |
+
$columnclass='col-md-10';
|
81 |
+
break;
|
82 |
+
}
|
83 |
$class .= ' box-border';
|
84 |
$addclass = uniqid('color');
|
85 |
$class .= ' '.$addclass;
|
86 |
$css_style = '';
|
87 |
+
$html = '<div class="'.$columnclass.'">' ;
|
88 |
if( $top_icon_color)
|
89 |
$css_style .= '.'.$addclass.' .counter-top-icon i{color:'.$top_icon_color.'}';
|
90 |
+
$html .= '<style type="text/css">'.$css_style.'</style>';
|
91 |
|
92 |
if( $border == '1' ):
|
93 |
$html .= '<div class="magee-counter-box '.esc_attr($class).'" id="'.esc_attr($id).'">';
|
101 |
$html .= '<div class="counter-top-icon"><img class="image-instead" src="'.esc_attr($top_icon).'" /></div>';
|
102 |
endif;
|
103 |
$html .= '<div class="counter">';
|
104 |
+
if( $middle_left_icon )
|
105 |
+
if( stristr($middle_left_icon,'fa-')):
|
106 |
+
$html .= '<i class="fa '.esc_attr($middle_left_icon).'"></i> ';
|
107 |
else:
|
108 |
+
$html .= '<img class="image-instead" src="'.esc_attr($middle_left_icon).'" />';
|
109 |
endif;
|
110 |
+
if( $middle_left_text )
|
111 |
+
$html .= '<span class="unit">'.esc_attr($middle_left_text).'</span>';
|
112 |
if( $counter_num )
|
113 |
$html .= '<span class="counter-num">'.esc_attr($counter_num).'</span>';
|
114 |
+
if( $middle_right_text )
|
115 |
+
$html .= '<span class="unit">'.esc_attr($middle_right_text).'</span>';
|
116 |
|
117 |
$html .= '</div>';
|
118 |
|
119 |
+
$html .= '<h3 class="counter-bottom_title">'.esc_attr($bottom_title).'</h3>';
|
120 |
+
$html .= '</div></div>';
|
|
|
121 |
return $html;
|
122 |
}
|
123 |
|
shortcodes/class-custom-box.php
CHANGED
@@ -25,6 +25,8 @@ class Magee_Custom_Box {
|
|
25 |
array(
|
26 |
'id' =>'',
|
27 |
'class' =>'',
|
|
|
|
|
28 |
'padding' =>'',
|
29 |
'backgroundimage' =>'',
|
30 |
), $args
|
@@ -34,11 +36,15 @@ class Magee_Custom_Box {
|
|
34 |
self::$args = $defaults;
|
35 |
if(is_numeric($padding))
|
36 |
$padding = $padding.'px';
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
$uniqid = uniqid('custom_box-');
|
39 |
|
40 |
-
$textstyle = sprintf(' .custom-box-1 {padding: %s; background-image: url(%s); } ',$padding,$backgroundimage);
|
41 |
-
|
42 |
$styles = sprintf( '<style type="text/css" scoped="scoped">%s </style>', $textstyle);
|
43 |
$html = sprintf(' %s<div class="custom-box-1 %s" id="%s">%s </div>',$styles,$class,$id,do_shortcode( Magee_Core::fix_shortcodes($content)));
|
44 |
|
25 |
array(
|
26 |
'id' =>'',
|
27 |
'class' =>'',
|
28 |
+
'fixed_background' =>'',
|
29 |
+
'background_position' =>'',
|
30 |
'padding' =>'',
|
31 |
'backgroundimage' =>'',
|
32 |
), $args
|
36 |
self::$args = $defaults;
|
37 |
if(is_numeric($padding))
|
38 |
$padding = $padding.'px';
|
39 |
+
if($fixed_background == 'yes'):
|
40 |
+
$fixed_background = 'fixed';
|
41 |
+
else:
|
42 |
+
$fixed_background = '';
|
43 |
+
endif;
|
44 |
|
45 |
$uniqid = uniqid('custom_box-');
|
46 |
|
47 |
+
$textstyle = sprintf(' .custom-box-1 {padding: %s; background-image: url(%s);background-attachment: %s;background-position: %s;} ',$padding,$backgroundimage,$fixed_background,$background_position);
|
|
|
48 |
$styles = sprintf( '<style type="text/css" scoped="scoped">%s </style>', $textstyle);
|
49 |
$html = sprintf(' %s<div class="custom-box-1 %s" id="%s">%s </div>',$styles,$class,$id,do_shortcode( Magee_Core::fix_shortcodes($content)));
|
50 |
|
shortcodes/class-flip-box.php
CHANGED
@@ -27,9 +27,11 @@ class Magee_Flip_Box {
|
|
27 |
'class' =>'',
|
28 |
'direction' =>'horizontal',
|
29 |
'front_paddings' =>'',
|
|
|
30 |
'front_background' =>'',
|
31 |
'front_color' =>'',
|
32 |
'back_paddings' =>'',
|
|
|
33 |
'back_background' =>'',
|
34 |
'back_color' =>'',
|
35 |
), $args
|
@@ -53,7 +55,7 @@ class Magee_Flip_Box {
|
|
53 |
$front_content = isset($contentsplit[0])?$contentsplit[0]:'';
|
54 |
$back_content = isset($contentsplit[1])?$contentsplit[1]:'';
|
55 |
|
56 |
-
$html = '<style type="text/css" scoped="scoped">.'.$uniq_class.' .flipbox-front{background-color:'.$front_background.';}.'.$uniq_class.' .flipbox-front .flipbox-content{padding:'.$front_paddings.';}.'.$uniq_class.' .flipbox-back{background-color:'.$back_background.';}.'.$uniq_class.' .flipbox-back .flipbox-content{padding:'.$back_paddings.';}</style>';
|
57 |
$html .= '<div class="magee-flipbox-wrap '.$class.'" id="'.$id.'">
|
58 |
<div class="magee-flipbox">
|
59 |
<div class="flipbox-front">
|
27 |
'class' =>'',
|
28 |
'direction' =>'horizontal',
|
29 |
'front_paddings' =>'',
|
30 |
+
'front_color' =>'',
|
31 |
'front_background' =>'',
|
32 |
'front_color' =>'',
|
33 |
'back_paddings' =>'',
|
34 |
+
'back_color' =>'',
|
35 |
'back_background' =>'',
|
36 |
'back_color' =>'',
|
37 |
), $args
|
55 |
$front_content = isset($contentsplit[0])?$contentsplit[0]:'';
|
56 |
$back_content = isset($contentsplit[1])?$contentsplit[1]:'';
|
57 |
|
58 |
+
$html = '<style type="text/css" scoped="scoped">.'.$uniq_class.' .flipbox-front{background-color:'.$front_background.';}.'.$uniq_class.' .flipbox-front .flipbox-content{padding:'.$front_paddings.';color:'.$front_color.';}.'.$uniq_class.' .flipbox-back{background-color:'.$back_background.';}.'.$uniq_class.' .flipbox-back .flipbox-content{padding:'.$back_paddings.';color:'.$back_color.'}</style>';
|
59 |
$html .= '<div class="magee-flipbox-wrap '.$class.'" id="'.$id.'">
|
60 |
<div class="magee-flipbox">
|
61 |
<div class="flipbox-front">
|
shortcodes/class-highlight.php
CHANGED
@@ -26,7 +26,8 @@ class Magee_Highlight {
|
|
26 |
array(
|
27 |
'class' => '',
|
28 |
'id' => '',
|
29 |
-
'background_color' => '#007005',
|
|
|
30 |
'border_radius' => '0',
|
31 |
), $args
|
32 |
);
|
@@ -60,7 +61,7 @@ class Magee_Highlight {
|
|
60 |
|
61 |
$attr['style'] = sprintf( 'border-radius:%s;', self::$args['border_radius'] );
|
62 |
$attr['style'] .= sprintf( 'background-color:%s;', self::$args['background_color'] );
|
63 |
-
|
64 |
return $attr;
|
65 |
|
66 |
}
|
26 |
array(
|
27 |
'class' => '',
|
28 |
'id' => '',
|
29 |
+
'background_color' => '#007005',
|
30 |
+
'color' => '',
|
31 |
'border_radius' => '0',
|
32 |
), $args
|
33 |
);
|
61 |
|
62 |
$attr['style'] = sprintf( 'border-radius:%s;', self::$args['border_radius'] );
|
63 |
$attr['style'] .= sprintf( 'background-color:%s;', self::$args['background_color'] );
|
64 |
+
$attr['style'] .= sprintf( 'color:%s;', self::$args['color'] );
|
65 |
return $attr;
|
66 |
|
67 |
}
|
shortcodes/class-image-compare.php
CHANGED
@@ -25,6 +25,8 @@ class Magee_Image_Compare {
|
|
25 |
array(
|
26 |
'id' =>'',
|
27 |
'class' =>'',
|
|
|
|
|
28 |
'image_left' =>'',
|
29 |
'image_right' =>'',
|
30 |
), $args
|
@@ -41,7 +43,7 @@ class Magee_Image_Compare {
|
|
41 |
$html .= '<script>
|
42 |
jQuery(function($){
|
43 |
$(document).ready(function(){
|
44 |
-
$(".'.esc_attr($class).'").twentytwenty();
|
45 |
});
|
46 |
});
|
47 |
</script>';
|
25 |
array(
|
26 |
'id' =>'',
|
27 |
'class' =>'',
|
28 |
+
'style' => '',
|
29 |
+
'percent' => '',
|
30 |
'image_left' =>'',
|
31 |
'image_right' =>'',
|
32 |
), $args
|
43 |
$html .= '<script>
|
44 |
jQuery(function($){
|
45 |
$(document).ready(function(){
|
46 |
+
$(".'.esc_attr($class).'").twentytwenty({default_offset_pct: '.esc_attr($percent).', orientation: "'.esc_attr($style).'"});
|
47 |
});
|
48 |
});
|
49 |
</script>';
|
shortcodes/class-piechart.php
CHANGED
@@ -25,6 +25,7 @@ class Magee_Piechart {
|
|
25 |
array(
|
26 |
'class' =>'',
|
27 |
'percent' => '80',
|
|
|
28 |
'filledcolor'=>'#fdd200',
|
29 |
'unfilledcolor'=>'#f5f5f5',
|
30 |
'size' =>'200',
|
@@ -52,7 +53,7 @@ class Magee_Piechart {
|
|
52 |
lineWidth: 10,
|
53 |
trackWidth: 10,
|
54 |
size: ".absint($size).",
|
55 |
-
lineCap: '
|
56 |
});
|
57 |
}else{
|
58 |
jQuery(document).ready(function($){
|
@@ -64,7 +65,7 @@ class Magee_Piechart {
|
|
64 |
lineWidth: 10,
|
65 |
trackWidth: 10,
|
66 |
size: ".absint($size).",
|
67 |
-
lineCap: '
|
68 |
}); });}";
|
69 |
|
70 |
$html .= '</script>';
|
25 |
array(
|
26 |
'class' =>'',
|
27 |
'percent' => '80',
|
28 |
+
'line_cap' => '',
|
29 |
'filledcolor'=>'#fdd200',
|
30 |
'unfilledcolor'=>'#f5f5f5',
|
31 |
'size' =>'200',
|
53 |
lineWidth: 10,
|
54 |
trackWidth: 10,
|
55 |
size: ".absint($size).",
|
56 |
+
lineCap: '".esc_attr($line_cap)."'
|
57 |
});
|
58 |
}else{
|
59 |
jQuery(document).ready(function($){
|
65 |
lineWidth: 10,
|
66 |
trackWidth: 10,
|
67 |
size: ".absint($size).",
|
68 |
+
lineCap: '".esc_attr($line_cap)."'
|
69 |
}); });}";
|
70 |
|
71 |
$html .= '</script>';
|
shortcodes/class-progress.php
CHANGED
@@ -26,7 +26,7 @@ class Magee_Progress {
|
|
26 |
array(
|
27 |
'id' =>'',
|
28 |
'class' =>'',
|
29 |
-
|
30 |
'percent' => '50',
|
31 |
'text' =>'',
|
32 |
'height' => 30,
|
@@ -41,9 +41,19 @@ class Magee_Progress {
|
|
41 |
|
42 |
extract( $defaults );
|
43 |
self::$args = $defaults;
|
|
|
44 |
$percent = str_replace('%','',$percent);
|
45 |
$percent = esc_attr($percent).'%';
|
46 |
$css_style = 'width: '.esc_attr($percent).';';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
if(is_numeric($height))
|
48 |
$height = $height.'px';
|
49 |
$line_height = '';
|
@@ -81,18 +91,15 @@ class Magee_Progress {
|
|
81 |
if($striped == 'striped animated')
|
82 |
$progress_bar .= ' progress-bar-striped animated hinge infinite';
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
if( $color )
|
88 |
$css_style .= 'background-color:'.esc_attr($color).';';
|
89 |
|
90 |
-
$html
|
91 |
|
92 |
if( $textposition == '2' ){
|
93 |
$html .= '<div class="porgress-title text-'.$a.' clearfix">'.esc_textarea($text).' <div class="pull-'.$b.'">'.esc_attr($percent).'</div></div>';
|
94 |
}
|
95 |
-
$html .= '<div class="progress '.$progress.'" style="'.$bar_height.'">
|
96 |
<div class="progress-bar pull-'.$a.' '.esc_attr($progress_bar).'" role="progressbar" aria-valuenow="'.esc_textarea($text).'" aria-valuemin="0" aria-valuemax="100" style="'.$css_style.'">';
|
97 |
if( $textposition == '1' ){
|
98 |
$html .= '<div class="progress-title text-'.$a.' clearfix" style="'.$line_height.'">'.esc_textarea($text).' <div class="pull-'.$b.'">'.esc_attr($percent).'</div></div>';
|
26 |
array(
|
27 |
'id' =>'',
|
28 |
'class' =>'',
|
29 |
+
'style' =>'normal',
|
30 |
'percent' => '50',
|
31 |
'text' =>'',
|
32 |
'height' => 30,
|
41 |
|
42 |
extract( $defaults );
|
43 |
self::$args = $defaults;
|
44 |
+
$unqid = uniqid("circle-");
|
45 |
$percent = str_replace('%','',$percent);
|
46 |
$percent = esc_attr($percent).'%';
|
47 |
$css_style = 'width: '.esc_attr($percent).';';
|
48 |
+
$html = '';
|
49 |
+
if($style == 'circle'):
|
50 |
+
$html .= '<style type="text/css">
|
51 |
+
.'.$unqid.'{padding: 3px;border: 1px solid #e3e3e3;border-radius:'.($height+5).'px !important;background-color:#fcfcfc !important;}
|
52 |
+
.'.$unqid.' .progress-bar{border-radius:'.$height.'px !important;}
|
53 |
+
.'.$unqid.' .progress-title{line-height:'.($height-10).'px !important;}
|
54 |
+
</style>';
|
55 |
+
endif;
|
56 |
+
|
57 |
if(is_numeric($height))
|
58 |
$height = $height.'px';
|
59 |
$line_height = '';
|
91 |
if($striped == 'striped animated')
|
92 |
$progress_bar .= ' progress-bar-striped animated hinge infinite';
|
93 |
|
|
|
|
|
|
|
94 |
if( $color )
|
95 |
$css_style .= 'background-color:'.esc_attr($color).';';
|
96 |
|
97 |
+
$html .= '<div class="magee-progress-box '.esc_attr($class).'" id="'.esc_attr($id).'">';
|
98 |
|
99 |
if( $textposition == '2' ){
|
100 |
$html .= '<div class="porgress-title text-'.$a.' clearfix">'.esc_textarea($text).' <div class="pull-'.$b.'">'.esc_attr($percent).'</div></div>';
|
101 |
}
|
102 |
+
$html .= '<div class="progress '.$progress.' '.$unqid.'" style="'.$bar_height.'">
|
103 |
<div class="progress-bar pull-'.$a.' '.esc_attr($progress_bar).'" role="progressbar" aria-valuenow="'.esc_textarea($text).'" aria-valuemin="0" aria-valuemax="100" style="'.$css_style.'">';
|
104 |
if( $textposition == '1' ){
|
105 |
$html .= '<div class="progress-title text-'.$a.' clearfix" style="'.$line_height.'">'.esc_textarea($text).' <div class="pull-'.$b.'">'.esc_attr($percent).'</div></div>';
|
shortcodes/class-vimeo.php
CHANGED
@@ -66,12 +66,9 @@ class Magee_Vimeo {
|
|
66 |
else:
|
67 |
$mute = '0';
|
68 |
endif;
|
69 |
-
|
70 |
-
$sid = '';
|
71 |
if($link !== ''){
|
72 |
-
|
73 |
-
|
74 |
-
};
|
75 |
}
|
76 |
$out = "<div id=\"vimeo\" class=\"vimeo-video " .$position . "\">";
|
77 |
if ($mute == 1) {
|
66 |
else:
|
67 |
$mute = '0';
|
68 |
endif;
|
|
|
|
|
69 |
if($link !== ''){
|
70 |
+
preg_match( '/[0-9]+/',$link,$match);
|
71 |
+
$sid = $match[0];
|
|
|
72 |
}
|
73 |
$out = "<div id=\"vimeo\" class=\"vimeo-video " .$position . "\">";
|
74 |
if ($mute == 1) {
|
shortcodes/class-youtube.php
CHANGED
@@ -66,11 +66,10 @@ class Magee_Youtube {
|
|
66 |
$mute = '0';
|
67 |
endif;
|
68 |
$out = '';
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
if( $width == '100%' || $height == '100%' && $width == '' || $height == ''):
|
75 |
$out .= "<div id=\"youtube\" class=\"youtube-video " .$position . "\"><iframe id=\"player_".$sid."\" class=\"".$class."\" src=\"//www.youtube.com/embed/" . $sid . "?rel=0&controls=".$controls."&loop=".$loop."&playlist=".$sid."&autoplay=".$autoplay."&enablejsapi=".$mute."\" frameborder=\"0\" allowfullscreen></iframe>";
|
76 |
|
66 |
$mute = '0';
|
67 |
endif;
|
68 |
$out = '';
|
69 |
+
|
70 |
+
// $aaa = parse_url($link='https://vimeo.com/channels/staffpicks/153773597');
|
71 |
+
// print_r($aaa);
|
72 |
+
$sid = substr($link,32,11);
|
|
|
73 |
if( $width == '100%' || $height == '100%' && $width == '' || $height == ''):
|
74 |
$out .= "<div id=\"youtube\" class=\"youtube-video " .$position . "\"><iframe id=\"player_".$sid."\" class=\"".$class."\" src=\"//www.youtube.com/embed/" . $sid . "?rel=0&controls=".$controls."&loop=".$loop."&playlist=".$sid."&autoplay=".$autoplay."&enablejsapi=".$mute."\" frameborder=\"0\" allowfullscreen></iframe>";
|
75 |
|