Version Description
- 04/05/2016 =
- Feature - Added widget area shortcode
Download this release
Release Info
Developer | magictheme |
Plugin | Magee Shortcodes |
Version | 1.5.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.2
- Magee.php +3 -4
- assets/css/admin.css +5 -2
- assets/css/shortcode.css +1 -1
- assets/js/admin.js +3 -3
- inc/core.php +22 -8
- inc/options.php +47 -11
- languages/magee-shortcodes.mo +0 -0
- languages/magee-shortcodes.pot +1046 -1211
- readme.txt +6 -0
- shortcodes/class-heading.php +12 -1
- shortcodes/class-section.php +12 -2
- shortcodes/class-widget-area.php +58 -0
Magee.php
CHANGED
@@ -3,22 +3,21 @@
|
|
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
|
10 |
Domain Path: /languages
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
-
|
14 |
if ( ! defined( 'ABSPATH' ) ) return;
|
15 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
16 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
17 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
18 |
-
define( 'MAGEE_SHORTCODES_VER', '1.5.
|
19 |
|
20 |
require_once 'inc/core.php';
|
21 |
-
require_once 'inc/options.php';
|
22 |
require_once 'inc/magee-slider.php';
|
23 |
new Magee_Core;
|
24 |
|
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.2
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
10 |
Domain Path: /languages
|
11 |
License: GPLv2 or later
|
12 |
*/
|
|
|
13 |
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.2' );
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
+
//require_once 'inc/options.php';
|
21 |
require_once 'inc/magee-slider.php';
|
22 |
new Magee_Core;
|
23 |
|
assets/css/admin.css
CHANGED
@@ -460,11 +460,11 @@ a#TB_closeWindowButton .tb-close-icon:before {
|
|
460 |
position: relative;
|
461 |
}
|
462 |
|
463 |
-
.wp-picker-container input[type=text].wp-color-picker {
|
464 |
width: 696px;
|
465 |
display:block!important;
|
466 |
}
|
467 |
-
.wp-color-result{
|
468 |
display:none;
|
469 |
}
|
470 |
.wp-picker-holder {
|
@@ -494,3 +494,6 @@ a#TB_closeWindowButton .tb-close-icon:before {
|
|
494 |
.example-link {
|
495 |
text-decoration: none;
|
496 |
}
|
|
|
|
|
|
460 |
position: relative;
|
461 |
}
|
462 |
|
463 |
+
.magee_shortcodes_container .wp-picker-container input[type=text].wp-color-picker {
|
464 |
width: 696px;
|
465 |
display:block!important;
|
466 |
}
|
467 |
+
.magee_shortcodes_container .wp-color-result{
|
468 |
display:none;
|
469 |
}
|
470 |
.wp-picker-holder {
|
494 |
.example-link {
|
495 |
text-decoration: none;
|
496 |
}
|
497 |
+
.container{
|
498 |
+
max-width:100%;
|
499 |
+
}
|
assets/css/shortcode.css
CHANGED
@@ -2153,7 +2153,7 @@ h3.counter-title {
|
|
2153 |
-webkit-transform: translateX(-50%) rotate(45deg);
|
2154 |
transform: translateX(-50%) rotate(45deg);
|
2155 |
background-color: inherit;
|
2156 |
-
|
2157 |
}
|
2158 |
|
2159 |
.ss-triangle-up::before {
|
2153 |
-webkit-transform: translateX(-50%) rotate(45deg);
|
2154 |
transform: translateX(-50%) rotate(45deg);
|
2155 |
background-color: inherit;
|
2156 |
+
|
2157 |
}
|
2158 |
|
2159 |
.ss-triangle-up::before {
|
assets/js/admin.js
CHANGED
@@ -42,7 +42,7 @@ $(document).on("click",'a.magee_shortcode_item',function(){
|
|
42 |
form.find("#magee-shortcodes-settings-inner").html(data);
|
43 |
var myOptions = {
|
44 |
change: function(event, ui){
|
45 |
-
$('.wp-color-picker-field').each(function(){
|
46 |
var color = $(this).parents('.wp-picker-container').find('.wp-color-result').css("background-color")
|
47 |
$(this).css("background-color",color);
|
48 |
var top = parseInt($(this).parents('.wp-picker-container').find('a.iris-square-value').css("top").replace('px',''));
|
@@ -56,7 +56,7 @@ $(document).on("click",'a.magee_shortcode_item',function(){
|
|
56 |
},
|
57 |
};
|
58 |
|
59 |
-
$('.wp-color-picker-field').wpColorPicker(myOptions);
|
60 |
$.ajax({
|
61 |
type: "POST",
|
62 |
url: ajaxurl,
|
@@ -68,7 +68,7 @@ $(document).on("click",'a.magee_shortcode_item',function(){
|
|
68 |
var footer_height = $('#TB_footer').outerHeight();
|
69 |
$('#TB_ajaxContent').css({'height':content_height-title_height-footer_height-15});
|
70 |
//colorpicker controls
|
71 |
-
$('.wp-color-picker-field').each(function(){
|
72 |
var color = $(this).attr('value');
|
73 |
$(this).css("background-color",color);
|
74 |
var since = 0 ;
|
42 |
form.find("#magee-shortcodes-settings-inner").html(data);
|
43 |
var myOptions = {
|
44 |
change: function(event, ui){
|
45 |
+
$('.magee_shortcodes_container .wp-color-picker-field').each(function(){
|
46 |
var color = $(this).parents('.wp-picker-container').find('.wp-color-result').css("background-color")
|
47 |
$(this).css("background-color",color);
|
48 |
var top = parseInt($(this).parents('.wp-picker-container').find('a.iris-square-value').css("top").replace('px',''));
|
56 |
},
|
57 |
};
|
58 |
|
59 |
+
$('.magee_shortcodes_container .wp-color-picker-field').wpColorPicker(myOptions);
|
60 |
$.ajax({
|
61 |
type: "POST",
|
62 |
url: ajaxurl,
|
68 |
var footer_height = $('#TB_footer').outerHeight();
|
69 |
$('#TB_ajaxContent').css({'height':content_height-title_height-footer_height-15});
|
70 |
//colorpicker controls
|
71 |
+
$('.magee_shortcodes_container .wp-color-picker-field').each(function(){
|
72 |
var color = $(this).attr('value');
|
73 |
$(this).css("background-color",color);
|
74 |
var since = 0 ;
|
inc/core.php
CHANGED
@@ -17,6 +17,7 @@ class Magee_Core{
|
|
17 |
//add a button to the content editor, next to the media button
|
18 |
//this button will show a popup that contains inline content
|
19 |
add_action('media_buttons_context', array($this,'add_shortcodes_button'));
|
|
|
20 |
if(is_admin()){
|
21 |
add_action( 'admin_enqueue_scripts', array($this,'admin_scripts' ));
|
22 |
add_action('wp_ajax_magee_shortcodes_popup', array(&$this, 'popup') );
|
@@ -46,8 +47,9 @@ class Magee_Core{
|
|
46 |
if( file_exists( dirname(__FILE__) . '/options.php' ) )
|
47 |
{
|
48 |
$this->conf = dirname(__FILE__) . '/options.php';
|
49 |
-
|
50 |
-
|
|
|
51 |
}
|
52 |
$this->magee_shortcodes = $magee_shortcodes;
|
53 |
$this->magee_sliders = $this->sliders_meta();
|
@@ -58,7 +60,7 @@ public static function init() {
|
|
58 |
load_plugin_textdomain( 'magee-shortcodes', false, dirname( plugin_basename( MAGEE_SHORTCODES_PATH ) ). '/languages/' );
|
59 |
|
60 |
}
|
61 |
-
|
62 |
function admin_scripts() {
|
63 |
wp_enqueue_script('thickbox');
|
64 |
wp_enqueue_style('thickbox');
|
@@ -277,7 +279,16 @@ function init_shortcodes() {
|
|
277 |
return trim( $out );
|
278 |
|
279 |
}
|
280 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
|
282 |
function get_control_button(){
|
283 |
//path to preview icon
|
@@ -391,16 +402,19 @@ function init_shortcodes() {
|
|
391 |
}
|
392 |
|
393 |
function formate_shortcode()
|
394 |
-
{
|
395 |
-
|
|
|
396 |
|
397 |
// get config file
|
398 |
-
|
|
|
|
|
399 |
$output = '';
|
400 |
unset($magee_shortcodes['shortcode-generator']['params']['select_shortcode']);
|
401 |
|
402 |
|
403 |
-
if( isset( $magee_shortcodes ) && is_array( $magee_shortcodes ) )
|
404 |
{
|
405 |
// get shortcode config stuff
|
406 |
|
17 |
//add a button to the content editor, next to the media button
|
18 |
//this button will show a popup that contains inline content
|
19 |
add_action('media_buttons_context', array($this,'add_shortcodes_button'));
|
20 |
+
add_action('init',array($this,'get_sidebars'),10) ;
|
21 |
if(is_admin()){
|
22 |
add_action( 'admin_enqueue_scripts', array($this,'admin_scripts' ));
|
23 |
add_action('wp_ajax_magee_shortcodes_popup', array(&$this, 'popup') );
|
47 |
if( file_exists( dirname(__FILE__) . '/options.php' ) )
|
48 |
{
|
49 |
$this->conf = dirname(__FILE__) . '/options.php';
|
50 |
+
|
51 |
+
//$this->formate_shortcode();
|
52 |
+
add_action( 'init',array($this,'formate_shortcode'),20) ;
|
53 |
}
|
54 |
$this->magee_shortcodes = $magee_shortcodes;
|
55 |
$this->magee_sliders = $this->sliders_meta();
|
60 |
load_plugin_textdomain( 'magee-shortcodes', false, dirname( plugin_basename( MAGEE_SHORTCODES_PATH ) ). '/languages/' );
|
61 |
|
62 |
}
|
63 |
+
|
64 |
function admin_scripts() {
|
65 |
wp_enqueue_script('thickbox');
|
66 |
wp_enqueue_style('thickbox');
|
279 |
return trim( $out );
|
280 |
|
281 |
}
|
282 |
+
//widget load
|
283 |
+
function get_sidebars() {
|
284 |
+
global $wp_registered_sidebars;
|
285 |
+
$sidebars = array();
|
286 |
+
$sidebars[''] = 'Default';
|
287 |
+
foreach( $wp_registered_sidebars as $sidebar_id => $sidebar ) {
|
288 |
+
$sidebars[$sidebar_id] = $sidebar['name'];
|
289 |
+
}
|
290 |
+
return $sidebars;
|
291 |
+
}
|
292 |
|
293 |
function get_control_button(){
|
294 |
//path to preview icon
|
402 |
}
|
403 |
|
404 |
function formate_shortcode()
|
405 |
+
{
|
406 |
+
global $magee_shortcodes,$magee_widget;
|
407 |
+
$magee_widget = self::get_sidebars();
|
408 |
|
409 |
// get config file
|
410 |
+
include_once( $this->conf );
|
411 |
+
$this->magee_shortcodes = $magee_shortcodes;
|
412 |
+
|
413 |
$output = '';
|
414 |
unset($magee_shortcodes['shortcode-generator']['params']['select_shortcode']);
|
415 |
|
416 |
|
417 |
+
if( isset( $magee_shortcodes ) && is_array( $magee_shortcodes ) && isset( $magee_shortcodes[$this->popup]['params']))
|
418 |
{
|
419 |
// get shortcode config stuff
|
420 |
|
inc/options.php
CHANGED
@@ -22,8 +22,9 @@ function magee_shortcode_menus($name){
|
|
22 |
|
23 |
}
|
24 |
|
25 |
-
|
26 |
-
$magee_sliders
|
|
|
27 |
|
28 |
$choices = array( 'yes' => 'Yes', 'no' => 'No' );
|
29 |
$reverse_choices = array( 'no' => 'No', 'yes' => 'Yes' );
|
@@ -3663,14 +3664,49 @@ $magee_shortcodes['youtube'] = array(
|
|
3663 |
'name' => __('youtube-shortcode/','magee-shortocdes'),
|
3664 |
);
|
3665 |
|
|
|
|
|
|
|
3666 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3667 |
|
3668 |
-
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
3673 |
-
|
3674 |
-
|
3675 |
-
|
3676 |
-
|
22 |
|
23 |
}
|
24 |
|
25 |
+
|
26 |
+
global $magee_shortcodes,$magee_sliders,$magee_widget;
|
27 |
+
$magee_sliders = Magee_Core::sliders_meta();
|
28 |
|
29 |
$choices = array( 'yes' => 'Yes', 'no' => 'No' );
|
30 |
$reverse_choices = array( 'no' => 'No', 'yes' => 'Yes' );
|
3664 |
'name' => __('youtube-shortcode/','magee-shortocdes'),
|
3665 |
);
|
3666 |
|
3667 |
+
/*-----------------------------------------------------------------------------------*/
|
3668 |
+
/* Widget Area
|
3669 |
+
/*-----------------------------------------------------------------------------------*/
|
3670 |
|
3671 |
+
$magee_shortcodes['widget_area'] = array(
|
3672 |
+
'no_preview' => true,
|
3673 |
+
'icon' => 'fa-cog',
|
3674 |
+
'params' => array(
|
3675 |
+
'name' => array(
|
3676 |
+
'std' => '',
|
3677 |
+
'type' => 'select',
|
3678 |
+
'label' => __('Name','magee-shortcodes'),
|
3679 |
+
'desc' => __('Choose widget name to show','magee-shortcodes'),
|
3680 |
+
'options' => $magee_widget,
|
3681 |
+
),
|
3682 |
+
'background_color' => array(
|
3683 |
+
'std' => '',
|
3684 |
+
'type' => 'colorpicker',
|
3685 |
+
'label' => __('Background Color','magee-shortcodes'),
|
3686 |
+
'desc' => __('Set background color for widget area','magee-shortcodes'),
|
3687 |
+
),
|
3688 |
+
'padding' => array(
|
3689 |
+
'std' => '0',
|
3690 |
+
'max' => '200',
|
3691 |
+
'min' => '0',
|
3692 |
+
'type' => 'number',
|
3693 |
+
'label' => __('Padding','magee-shortcodes'),
|
3694 |
+
'desc' => __( 'Content Padding. eg:30', 'magee-shortcodes')
|
3695 |
+
),
|
3696 |
+
'class' =>array(
|
3697 |
+
'std' => '',
|
3698 |
+
'type' => 'text',
|
3699 |
+
'label' => __('CSS Class','magee-shortcodes'),
|
3700 |
+
'desc' => __('Add a class to the wrapping HTML element.','magee-shortcodes')
|
3701 |
+
),
|
3702 |
+
'id' => array(
|
3703 |
+
'std' => '',
|
3704 |
+
'type' => 'text',
|
3705 |
+
'label' => __( 'CSS ID', 'magee-shortcodes' ),
|
3706 |
+
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
3707 |
+
),
|
3708 |
+
),
|
3709 |
+
'shortcode' => '[ms_widget_area name="{{name}}" background_color="{{background_color}}" padding="{{padding}}" class="{{class}}" id="{{id}}"][/ms_widget_area]',
|
3710 |
+
'popup_title' => __( 'Widget Area Shortcode', 'magee-shortcodes' ),
|
3711 |
|
3712 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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,9 @@ 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:
|
107 |
msgid "Title"
|
108 |
msgstr ""
|
109 |
|
@@ -115,2046 +115,1993 @@ 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 |
-
|
248 |
-
#: inc/options.php:123 inc/options.php:764 inc/options.php:817
|
249 |
-
#: inc/options.php:1168 inc/options.php:1603 inc/options.php:1787
|
250 |
-
#: inc/options.php:3062
|
251 |
msgid "Icon"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/options.php:
|
255 |
-
#: inc/options.php:
|
256 |
-
#: inc/options.php:
|
257 |
-
#: inc/options.php:
|
258 |
-
#: inc/options.php:
|
259 |
msgid "Click an icon to select, click again to deselect."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/options.php:
|
263 |
msgid "Warning! Better check yourself, you're not looking too good."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/options.php:
|
267 |
msgid "Alert Content"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/options.php:
|
271 |
msgid "Insert the content for the alert."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/options.php:
|
275 |
-
#: inc/options.php:1769 inc/options.php:
|
276 |
msgid "Background Color"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/options.php:
|
280 |
msgid "Set background color for alert box."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/options.php:
|
284 |
msgid "Text Color"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/options.php:
|
288 |
msgid "Set content color & border color for alert box."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/options.php:
|
292 |
-
#: inc/options.php:
|
293 |
msgid "Border Width"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/options.php:
|
297 |
-
#: inc/options.php:
|
298 |
-
#: inc/options.php:
|
299 |
-
#: inc/options.php:
|
300 |
-
#: inc/options.php:
|
301 |
msgid "In pixels (px), eg: 1px."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/options.php:
|
305 |
-
#: inc/options.php:
|
306 |
msgid "Border Radius"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/options.php:
|
310 |
msgid "Box Shadow"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/options.php:
|
314 |
msgid "Display a box shadow for alert."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/options.php:
|
318 |
msgid "Dismissable"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/options.php:
|
322 |
msgid "The alert box is dismissable."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/options.php:
|
326 |
msgid "Alert Shortcode"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/options.php:
|
330 |
-
msgid "alert-shortcode/"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: inc/options.php:210
|
334 |
msgid "Mp3 URL"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/options.php:
|
338 |
msgid "Add the URL of audio in MP3 format."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/options.php:
|
342 |
msgid "Ogg URL"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/options.php:
|
346 |
msgid "Add the URL of audio in OGG format."
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/options.php:
|
350 |
msgid "Wav URL"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/options.php:
|
354 |
msgid "Add the URL of audio in WAV format."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: inc/options.php:
|
358 |
msgid "Mute Audio"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: inc/options.php:
|
362 |
msgid "Choose to mute the audio."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: inc/options.php:
|
366 |
msgid "Autoplay Audio"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/options.php:
|
370 |
msgid "Choose to autoplay the audio."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/options.php:
|
374 |
msgid "Loop Audio"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/options.php:
|
378 |
msgid "Choose to loop the audio."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/options.php:
|
382 |
msgid "Controls Audio"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/options.php:
|
386 |
msgid "Choose to display controls of the audio."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: inc/options.php:
|
390 |
msgid "Audio Shortcode"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/options.php:
|
394 |
-
msgid "audio-shortcode/"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: inc/options.php:277 inc/options.php:3144
|
398 |
msgid "Button Style"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/options.php:
|
402 |
msgid "Select the button's default style."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: inc/options.php:
|
406 |
-
#: inc/options.php:
|
407 |
msgid "Normal"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: inc/options.php:
|
411 |
msgid "Dark"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: inc/options.php:
|
415 |
msgid "Light"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: inc/options.php:
|
419 |
msgid "2d"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: inc/options.php:
|
423 |
msgid "3d"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: inc/options.php:
|
427 |
msgid "Line"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: inc/options.php:
|
431 |
msgid "Line Dark"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: inc/options.php:
|
435 |
msgid "Line Light"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: inc/options.php:
|
439 |
msgid "Button URL"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: inc/options.php:
|
443 |
msgid "Add the button's url eg: http://example.com."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: inc/options.php:
|
447 |
msgid "Button Size"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: inc/options.php:
|
451 |
msgid "Select the button's size."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: inc/options.php:
|
455 |
msgid "Small"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc/options.php:
|
459 |
msgid "Medium"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: inc/options.php:
|
463 |
msgid "Large"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: inc/options.php:
|
467 |
msgid "XLarge"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: inc/options.php:
|
471 |
msgid "In pixels (px), default: 2px."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: inc/options.php:
|
475 |
msgid "Button Shape"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: inc/options.php:
|
479 |
msgid "Select the button's shape. Choose default for theme option selection."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: inc/options.php:
|
483 |
msgid "Default"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: inc/options.php:
|
487 |
msgid "Square"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: inc/options.php:
|
491 |
msgid "Rounded"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: inc/options.php:
|
495 |
msgid "Full Rounded"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: inc/options.php:
|
499 |
msgid "Text Shadow"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: inc/options.php:
|
503 |
msgid "Display shadow for button text."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/options.php:
|
507 |
msgid "Gradient"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: inc/options.php:
|
511 |
msgid "Display gradient for button."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: inc/options.php:
|
515 |
msgid "Block Button"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: inc/options.php:
|
519 |
msgid "Display in full width."
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: inc/options.php:
|
523 |
msgid "Button Target"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: inc/options.php:
|
527 |
msgid "_self = open in same window <br />_blank = open in new window."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: inc/options.php:
|
531 |
msgid "Button Text"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: inc/options.php:
|
535 |
msgid "Button's Text"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/options.php:
|
539 |
msgid "Add the text that will display in the button."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/options.php:
|
543 |
msgid "Set background color for button."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/options.php:
|
547 |
msgid "Button Color"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/options.php:
|
551 |
msgid "Set content color & border color for button."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/options.php:
|
555 |
msgid "Button Icon"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/options.php:
|
559 |
msgid "Icon Animation Type"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/options.php:
|
563 |
msgid "Select the type of animation to use on the button icon."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/options.php:
|
567 |
msgid "Button Shortcode"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/options.php:
|
571 |
-
msgid "buttons-shortcode/"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: inc/options.php:424
|
575 |
msgid "Column Shortcode"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/options.php:
|
579 |
-
msgid "columns-shortcode/"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: inc/options.php:430
|
583 |
msgid "Column Style"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/options.php:
|
587 |
msgid "Select the size of column."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/options.php:
|
591 |
msgid "1/1"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/options.php:
|
595 |
msgid "1/2"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/options.php:
|
599 |
msgid "1/3"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/options.php:
|
603 |
msgid "1/4"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/options.php:
|
607 |
msgid "1/5"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/options.php:
|
611 |
msgid "1/6"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/options.php:
|
615 |
msgid "2/3"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/options.php:
|
619 |
msgid "2/5"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/options.php:
|
623 |
msgid "3/4"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/options.php:
|
627 |
msgid "3/5"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/options.php:
|
631 |
msgid "4/5"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/options.php:
|
635 |
msgid "5/6"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/options.php:
|
639 |
msgid "Column Content"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/options.php:
|
643 |
msgid " Column Content"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/options.php:
|
647 |
msgid "Insert the column's content"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
msgid "Set end time for countdown."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/options.php:
|
655 |
msgid "Font Color"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/options.php:
|
659 |
msgid "Set font color for countdown."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/options.php:
|
663 |
msgid "Set background color for countdown."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/options.php:
|
667 |
msgid "Countdowns Shortcode"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/options.php:
|
671 |
-
msgid "countdowns-shortcode/"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: inc/options.php:538
|
675 |
msgid "Top Icon"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/options.php:
|
679 |
msgid "Top Icon Color"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/options.php:
|
683 |
msgid "Set color for top icon."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: inc/options.php:
|
687 |
msgid "Left Icon"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: inc/options.php:
|
691 |
msgid "Insert text before the number."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: inc/options.php:
|
695 |
msgid "Left Text"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc/options.php:
|
699 |
msgid "Left text of counter num"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/options.php:
|
703 |
msgid "Counter Num"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/options.php:
|
707 |
msgid "The animated counter number."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: inc/options.php:
|
711 |
msgid "Right Text"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/options.php:
|
715 |
msgid "Insert text after the number."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/options.php:
|
719 |
msgid "Insert Title for counter."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/options.php:
|
723 |
msgid "Display Border"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/options.php:
|
727 |
msgid "Choose to display border for counter."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/options.php:
|
731 |
-
#: inc/options.php:
|
732 |
-
#: inc/options.php:
|
733 |
-
#: inc/options.php:
|
734 |
-
#: inc/options.php:
|
735 |
-
#: inc/options.php:
|
736 |
msgid "No"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: inc/options.php:
|
740 |
-
#: inc/options.php:
|
741 |
-
#: inc/options.php:
|
742 |
-
#: inc/options.php:
|
743 |
-
#: inc/options.php:
|
744 |
-
#: inc/options.php:
|
745 |
msgid "Yes"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: inc/options.php:612
|
749 |
-
msgid "Counter Shortcode"
|
750 |
-
msgstr ""
|
751 |
-
|
752 |
-
#: inc/options.php:613
|
753 |
-
msgid "counter-box-shortcode/"
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: inc/options.php:624
|
757 |
-
msgid "Custom Box Content"
|
758 |
-
msgstr ""
|
759 |
-
|
760 |
-
#: inc/options.php:626 inc/options.php:1099 inc/options.php:2539
|
761 |
-
#: inc/options.php:2580 inc/options.php:2614 inc/options.php:2682
|
762 |
-
#: inc/options.php:2798 inc/options.php:3205 inc/options.php:3377
|
763 |
-
msgid "Content"
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: inc/options.php:627
|
767 |
-
msgid "Insert content for custom box."
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: inc/options.php:631 inc/options.php:2826
|
771 |
-
msgid "Background Image"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: inc/options.php:632
|
775 |
-
msgid "Upload an image to display in background of custom box."
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: inc/options.php:639
|
779 |
-
msgid "Padding"
|
780 |
-
msgstr ""
|
781 |
-
|
782 |
#: inc/options.php:640
|
783 |
-
msgid "
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
-
#: inc/options.php:656
|
787 |
-
msgid " Custom Box Shortcode"
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: inc/options.php:657
|
791 |
-
msgid "custom-box-shortcode/"
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: inc/options.php:672
|
795 |
-
msgid "Dailymotion URL"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: inc/options.php:673 inc/options.php:3516 inc/options.php:3597
|
799 |
-
msgid "Add the URL the video will link to, ex: http://example.com."
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
#: inc/options.php:679 inc/options.php:685 inc/options.php:3522
|
803 |
-
#: inc/options.php:3528 inc/options.php:3603 inc/options.php:3609
|
804 |
-
msgid "In pixels (px), eg:1px."
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: inc/options.php:690 inc/options.php:3451 inc/options.php:3533
|
808 |
-
#: inc/options.php:3614
|
809 |
-
msgid "Mute Video"
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: inc/options.php:691 inc/options.php:3452 inc/options.php:3534
|
813 |
-
#: inc/options.php:3615
|
814 |
-
msgid "Choose to mute the video."
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: inc/options.php:697 inc/options.php:3458 inc/options.php:3540
|
818 |
-
#: inc/options.php:3621
|
819 |
-
msgid "Autoplay Video"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: inc/options.php:698 inc/options.php:3459 inc/options.php:3541
|
823 |
-
#: inc/options.php:3622
|
824 |
-
msgid "Choose to autoplay the video."
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: inc/options.php:707 inc/options.php:3468 inc/options.php:3550
|
828 |
-
#: inc/options.php:3631
|
829 |
-
msgid "Loop Video"
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: inc/options.php:708 inc/options.php:3469 inc/options.php:3551
|
833 |
-
#: inc/options.php:3632
|
834 |
-
msgid "Choose to loop the video."
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
#: inc/options.php:717 inc/options.php:3478 inc/options.php:3560
|
838 |
-
#: inc/options.php:3641
|
839 |
-
msgid "Show Controls"
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: inc/options.php:718 inc/options.php:3479 inc/options.php:3561
|
843 |
-
#: inc/options.php:3642
|
844 |
-
msgid "Choose to display controls for the video player."
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: inc/options.php:738
|
848 |
-
msgid "Dailymotion Shortcode"
|
849 |
-
msgstr ""
|
850 |
-
|
851 |
-
#: inc/options.php:739
|
852 |
-
msgid "dailymotion-shortcode/"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: inc/options.php:
|
856 |
msgid "Divider Style"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: inc/options.php:
|
860 |
msgid "Select the Divider's Style."
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: inc/options.php:
|
864 |
msgid "Shadow"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: inc/options.php:
|
868 |
msgid "Dashed"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: inc/options.php:
|
872 |
msgid "Dotted"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: inc/options.php:
|
876 |
msgid "Double Line"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: inc/options.php:
|
880 |
msgid "Double Dashed"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: inc/options.php:
|
884 |
msgid "Double Dotted"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: inc/options.php:
|
888 |
msgid "Image"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: inc/options.php:
|
892 |
msgid "Back to Top"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: inc/options.php:
|
896 |
msgid "In pixels. Default: 100%"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: inc/options.php:
|
900 |
msgid "Align"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: inc/options.php:
|
904 |
msgid "When the width is not 100%."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: inc/options.php:
|
908 |
msgid "Margin Top"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: inc/options.php:
|
912 |
msgid "Spacing above the separator. In pixels."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: inc/options.php:
|
916 |
msgid "Margin Bottom"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/options.php:
|
920 |
msgid "Spacing under the separator. In pixels."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/options.php:
|
924 |
msgid "Border Size"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/options.php:
|
928 |
msgid "In pixels (px), eg: 1px. "
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: inc/options.php:
|
932 |
-
#: inc/options.php:
|
933 |
msgid "Border Color"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: inc/options.php:
|
937 |
msgid "Set the border color."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: inc/options.php:
|
941 |
msgid "Divider Shortcode"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/options.php:
|
945 |
-
msgid "
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
msgid "Doc URL"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/options.php:
|
953 |
msgid "Upload document to display. Supported formats: doc, xls, pdf etc."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/options.php:
|
957 |
msgid "Set width for doc."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/options.php:
|
961 |
msgid "Set height for doc."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: inc/options.php:
|
965 |
msgid "Responsive"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/options.php:
|
969 |
msgid "Choose to responsive or not"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/options.php:
|
973 |
msgid "Viewer"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/options.php:
|
977 |
msgid "Choose viewer for document."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/options.php:
|
981 |
msgid "Google"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: inc/options.php:
|
985 |
msgid "Microsoft"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: inc/options.php:
|
989 |
msgid "Document Shortcode"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: inc/options.php:
|
993 |
-
msgid "
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
#: inc/options.php:914
|
997 |
-
msgid "Dropcap Letter"
|
998 |
-
msgstr ""
|
999 |
-
|
1000 |
-
#: inc/options.php:915
|
1001 |
-
msgid "Add the letter to be used as dropcap"
|
1002 |
-
msgstr ""
|
1003 |
-
|
1004 |
-
#: inc/options.php:919 inc/options.php:2411
|
1005 |
-
msgid "Color"
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#: inc/options.php:920
|
1009 |
-
msgid ""
|
1010 |
-
"Controls the color of the dropcap letter. Leave blank for theme option "
|
1011 |
-
"selection."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/options.php:
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/options.php:
|
1019 |
-
msgid "
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: inc/options.php:
|
1023 |
-
msgid "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: inc/options.php:
|
1027 |
-
msgid "
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: inc/options.php:
|
1031 |
-
msgid "
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: inc/options.php:
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: inc/options.php:
|
1039 |
msgid "Select style for dummy image"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: inc/options.php:
|
1043 |
msgid "Any"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: inc/options.php:
|
1047 |
msgid "Transport"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: inc/options.php:
|
1051 |
msgid "Technics"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: inc/options.php:
|
1055 |
msgid "People"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: inc/options.php:
|
1059 |
msgid "Sports"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: inc/options.php:
|
1063 |
msgid "Cats"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: inc/options.php:
|
1067 |
msgid "City"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: inc/options.php:
|
1071 |
msgid "Food"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: inc/options.php:
|
1075 |
msgid "Night life"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: inc/options.php:
|
1079 |
msgid "Fashion"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: inc/options.php:
|
1083 |
msgid "Animals"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: inc/options.php:
|
1087 |
msgid "Business"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: inc/options.php:
|
1091 |
msgid "Nature"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: inc/options.php:
|
1095 |
msgid "Abstract"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: inc/options.php:
|
1099 |
msgid "Set width for image."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: inc/options.php:
|
1103 |
msgid "Set height for image."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: inc/options.php:
|
1107 |
msgid "Dummy Image Shortcode"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: inc/options.php:
|
1111 |
-
msgid "
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: inc/options.php:
|
1115 |
-
msgid "
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: inc/options.php:
|
1119 |
-
|
|
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: inc/options.php:
|
1123 |
-
|
|
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: inc/options.php:
|
1127 |
-
|
|
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: inc/options.php:
|
1131 |
-
|
|
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: inc/options.php:
|
1135 |
-
|
|
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: inc/options.php:
|
1139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: inc/options.php:
|
1143 |
-
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: inc/options.php:
|
1147 |
msgid "More Icon"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: inc/options.php:
|
1151 |
msgid ""
|
1152 |
"Set icon for expand title. Click an icon to select, click again to deselect."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: inc/options.php:
|
1156 |
msgid "More Text"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: inc/options.php:
|
1160 |
msgid "Set text for expand title."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: inc/options.php:
|
1164 |
msgid "Less Icon"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: inc/options.php:
|
1168 |
msgid ""
|
1169 |
"Set icon for fold title. Click an icon to select, click again to deselect."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: inc/options.php:
|
1173 |
msgid "Less Text"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: inc/options.php:
|
1177 |
msgid "Set text for fold title. "
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: inc/options.php:
|
1181 |
msgid "This text block can be expanded."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: inc/options.php:
|
1185 |
msgid "Expand Shortcode"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: inc/options.php:
|
1189 |
-
msgid "expand-shortcode/"
|
1190 |
-
msgstr ""
|
1191 |
-
|
1192 |
-
#: inc/options.php:1130
|
1193 |
msgid "Feature Box Style"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: inc/options.php:
|
1197 |
msgid "Select the Feature Box's Style."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: inc/options.php:
|
1201 |
msgid "Icon on Top of Title"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: inc/options.php:
|
1205 |
msgid "Icon Beside Title and Content"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: inc/options.php:
|
1209 |
msgid "Icon Beside Title"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: inc/options.php:
|
1213 |
msgid "Boxed"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: inc/options.php:
|
1217 |
msgid "Insert title for feature box."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: inc/options.php:
|
1221 |
msgid "Title Font Size"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: inc/options.php:
|
1225 |
msgid "Set font size for title of feature box."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: inc/options.php:
|
1229 |
msgid "Title Color"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: inc/options.php:
|
1233 |
msgid "Set color for title of feature box."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: inc/options.php:
|
1237 |
msgid "Icon Hover Animation"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: inc/options.php:
|
1241 |
msgid "Select the Icon's Animation."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: inc/options.php:
|
1245 |
msgid "Icon Size"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: inc/options.php:
|
1249 |
msgid "Set size for icon of feature box."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: inc/options.php:
|
1253 |
-
#: inc/options.php:
|
1254 |
msgid "Icon Color"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: inc/options.php:
|
1258 |
msgid "Set color for icon of feature box."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: inc/options.php:
|
1262 |
msgid "Icon Border Color"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: inc/options.php:
|
1266 |
msgid "Set border color for icon of feature box."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: inc/options.php:
|
1270 |
msgid "Icon Border Width"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: inc/options.php:
|
1274 |
msgid "Set border width for icon of feature box."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: inc/options.php:
|
1278 |
msgid "Flip Icon"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: inc/options.php:
|
1282 |
msgid "Choose to flip the icon of feature box."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: inc/options.php:
|
1286 |
-
#: inc/options.php:2977 inc/options.php:3262
|
1287 |
msgid "None"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: inc/options.php:
|
1291 |
msgid "Horizontal"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: inc/options.php:
|
1295 |
msgid "Vertical"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/options.php:
|
1299 |
msgid "Spinning Icon"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: inc/options.php:
|
1303 |
msgid "Choose to spin the icon of feature box."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: inc/options.php:
|
1307 |
-
#: inc/options.php:
|
1308 |
msgid "Icon Circle Background Color"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: inc/options.php:
|
1312 |
msgid "Set background for icon circle of feature box."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: inc/options.php:
|
1316 |
msgid "Icon Alignment"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: inc/options.php:
|
1320 |
msgid "Set alignment for style2/style3 of feature box."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: inc/options.php:
|
1324 |
msgid "Icon Circle"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: inc/options.php:
|
1328 |
msgid "Choose to display icon of feature box in circle."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: inc/options.php:
|
1332 |
msgid "Icon Image"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: inc/options.php:
|
1336 |
msgid "To upload your own icon image, remember to deselect icon above."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: inc/options.php:
|
1340 |
msgid "Icon Image Width"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: inc/options.php:
|
1344 |
msgid ""
|
1345 |
"If using custom icon image, set icon image width. In percentage of pixels "
|
1346 |
"(px), eg: 1px."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: inc/options.php:
|
1350 |
msgid "Icon Image Height"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: inc/options.php:
|
1354 |
msgid ""
|
1355 |
"If using custom icon image, set icon image height. In percentage of pixels "
|
1356 |
"(px), eg: 1px."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: inc/options.php:
|
1360 |
msgid "Link URL"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: inc/options.php:
|
1364 |
msgid "Set link for feature box, eg: http://example.com."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: inc/options.php:
|
1368 |
msgid "Link Target"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: inc/options.php:
|
1372 |
msgid "_self = open in same window _blank = open in new window."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: inc/options.php:
|
1376 |
msgid "_blank"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: inc/options.php:
|
1380 |
msgid "_self"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: inc/options.php:
|
1384 |
msgid "Link Text"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: inc/options.php:
|
1388 |
msgid ""
|
1389 |
"Insert link text for feature box. It would not display if you leave it as "
|
1390 |
"blank."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: inc/options.php:
|
1394 |
msgid "Link Color"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: inc/options.php:
|
1398 |
msgid "Set color for link of feature box."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: inc/options.php:
|
1402 |
msgid "Content Color"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: inc/options.php:
|
1406 |
msgid "Set color for content of feature box."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: inc/options.php:
|
1410 |
msgid "Set box background color for Boxed Style."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: inc/options.php:
|
1414 |
msgid "For Boxed Style"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: inc/options.php:
|
1418 |
msgid "Your Content Goes Here"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: inc/options.php:
|
1422 |
msgid "Feature Box Content"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: inc/options.php:
|
1426 |
msgid "Feature Box Shortcode"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: inc/options.php:
|
1430 |
-
msgid "feature-box-shortcode/"
|
1431 |
-
msgstr ""
|
1432 |
-
|
1433 |
-
#: inc/options.php:1342
|
1434 |
msgid "Direction"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: inc/options.php:
|
1438 |
msgid "Select flip directioon."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1442 |
msgid "Front Container Paddings"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: inc/options.php:
|
1446 |
msgid "Set paddings for front container of flip box."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: inc/options.php:
|
1450 |
msgid "Front Background Color"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: inc/options.php:
|
1454 |
msgid "Set background color for front container of flip box."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: inc/options.php:
|
1458 |
msgid "Front Content"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: inc/options.php:
|
1462 |
msgid "Front content."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: inc/options.php:
|
1466 |
msgid "Insert content for front container of flip box."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: inc/options.php:
|
1470 |
msgid "Back Container Paddings"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: inc/options.php:
|
1474 |
msgid "Set paddings for back container of flip box."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: inc/options.php:
|
1478 |
msgid "Set background color for back container of flip box."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: inc/options.php:
|
1482 |
msgid "Back Content"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: inc/options.php:
|
1486 |
msgid "Back Content."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: inc/options.php:
|
1490 |
msgid "Insert content for back container of flip box."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: inc/options.php:
|
1494 |
msgid "Flip Box Shortcode"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: inc/options.php:
|
1498 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: inc/options.php:
|
1502 |
msgid "Insert heading text"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/options.php:
|
1506 |
msgid "Choose a heading style. Leave blank as default."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: inc/options.php:
|
1510 |
msgid "Set color for heading text."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: inc/options.php:
|
1514 |
msgid "Set border color for heading."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: inc/options.php:
|
1518 |
msgid "Text Align"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: inc/options.php:
|
1522 |
msgid "Set text align for this heading."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: inc/options.php:
|
1526 |
msgid "Font Weight"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: inc/options.php:
|
1530 |
msgid "Set font weight for heading text."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: inc/options.php:
|
1534 |
msgid "Font Size"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: inc/options.php:
|
1538 |
msgid "Set font size for heading text. In pixels (px), eg: 1px."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: inc/options.php:
|
1542 |
msgid "Responsive Text"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: inc/options.php:
|
1546 |
msgid "Choose to display responsive text."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: inc/options.php:
|
1550 |
msgid "Heading Shortcode"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: inc/options.php:
|
1554 |
-
msgid "heading-shortcode/"
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
-
#: inc/options.php:1555
|
1558 |
-
msgid "Set background color for highlight item."
|
1559 |
-
msgstr ""
|
1560 |
-
|
1561 |
-
#: inc/options.php:1569
|
1562 |
-
msgid "Content to Higlight"
|
1563 |
-
msgstr ""
|
1564 |
-
|
1565 |
-
#: inc/options.php:1570
|
1566 |
-
msgid "Insert content to highlight."
|
1567 |
-
msgstr ""
|
1568 |
-
|
1569 |
-
#: inc/options.php:1587
|
1570 |
-
msgid "Highlight Shortcode"
|
1571 |
-
msgstr ""
|
1572 |
-
|
1573 |
-
#: inc/options.php:1588
|
1574 |
-
msgid "highlight-shortcode/"
|
1575 |
-
msgstr ""
|
1576 |
-
|
1577 |
-
#: inc/options.php:1613
|
1578 |
msgid "Set text size for item."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: inc/options.php:
|
1582 |
msgid "Set color for icon."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: inc/options.php:
|
1586 |
msgid "Icon Box"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: inc/options.php:
|
1590 |
msgid "Choose to display boxed icon."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: inc/options.php:
|
1594 |
msgid "Icon Shortcode"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: inc/options.php:
|
1598 |
-
msgid "icon-shortcode/"
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#: inc/options.php:1658
|
1602 |
-
msgid "Image Left"
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#: inc/options.php:1659
|
1606 |
-
msgid "Insert the image displayed in the left."
|
1607 |
-
msgstr ""
|
1608 |
-
|
1609 |
-
#: inc/options.php:1664
|
1610 |
-
msgid "Image Right"
|
1611 |
-
msgstr ""
|
1612 |
-
|
1613 |
-
#: inc/options.php:1665
|
1614 |
-
msgid "Insert the image displayed in the right."
|
1615 |
-
msgstr ""
|
1616 |
-
|
1617 |
-
#: inc/options.php:1681
|
1618 |
-
msgid "Image Compare Shortcode"
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: inc/options.php:1682
|
1622 |
-
msgid "image-compare-shortcode/"
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: inc/options.php:1697 inc/options.php:2083
|
1626 |
msgid "Upload an image to display."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: inc/options.php:
|
1630 |
msgid "Image Link URL"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: inc/options.php:
|
1634 |
msgid "Add the URL the picture will link to, ex: http://example.com."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: inc/options.php:
|
1638 |
msgid ""
|
1639 |
"Choose the border radius of the image frame. In pixels (px), ex: 1px, or "
|
1640 |
"\"round\". Leave blank for theme option selection."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: inc/options.php:
|
1644 |
msgid "Light Box"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: inc/options.php:
|
1648 |
msgid "Choose to display light box once click."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: inc/options.php:
|
1652 |
msgid "Image Frame Shortcode"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: inc/options.php:
|
1656 |
-
msgid "
|
1657 |
-
msgstr ""
|
1658 |
-
|
1659 |
-
#: inc/options.php:1763 inc/options.php:2394
|
1660 |
-
msgid "Text"
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: inc/options.php:1764
|
1664 |
-
msgid "Insert text to be displayed in label."
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: inc/options.php:
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: inc/options.php:
|
1672 |
-
msgid "
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: inc/options.php:
|
1676 |
-
msgid "
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: inc/options.php:
|
1680 |
msgid "Set color fo list icon."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: inc/options.php:
|
1684 |
msgid "Icon Boxed"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: inc/options.php:
|
1688 |
msgid "Choose to set icon boxed."
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: inc/options.php:
|
1692 |
msgid "Set background color for list icon."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: inc/options.php:
|
1696 |
msgid "Boxed Shape"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: inc/options.php:
|
1700 |
msgid "Choose boxed shape for list icon."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: inc/options.php:
|
1704 |
msgid "Circle"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: inc/options.php:
|
1708 |
msgid "Item Border"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: inc/options.php:
|
1712 |
msgid "Choose to display item border for list."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: inc/options.php:
|
1716 |
msgid "Item Size"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: inc/options.php:
|
1720 |
msgid "Set text font size for item."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: inc/options.php:
|
1724 |
msgid "List items"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: inc/options.php:
|
1728 |
msgid "List Shortcode"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: inc/options.php:
|
1732 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: inc/options.php:
|
1736 |
msgid "Modal Anchor Text"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: inc/options.php:
|
1740 |
msgid "Insert anchor text for the modal."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: inc/options.php:
|
1744 |
msgid "Modal Heading"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: inc/options.php:
|
1748 |
msgid "Insert heading text for the modal."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: inc/options.php:
|
1752 |
msgid "Size Of Modal"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: inc/options.php:
|
1756 |
msgid "Select the modal window size."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: inc/options.php:
|
1760 |
msgid "Middle"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: inc/options.php:
|
1764 |
msgid "Show Footer"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: inc/options.php:
|
1768 |
msgid "Choose to show the modal footer with close button."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1772 |
msgid "Contents of Modal"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: inc/options.php:
|
1776 |
msgid "Add your content to be displayed in modal."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: inc/options.php:
|
1780 |
msgid "Modal Shortcode"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: inc/options.php:
|
1784 |
-
msgid "modal-shortcode/"
|
1785 |
-
msgstr ""
|
1786 |
-
|
1787 |
-
#: inc/options.php:1932
|
1788 |
msgid "Select a menu"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: inc/options.php:
|
1792 |
msgid "Menu Shortcode"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: inc/options.php:
|
1796 |
-
msgid "
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: inc/options.php:
|
1800 |
-
msgid "
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: inc/options.php:
|
1804 |
-
msgid "
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: inc/options.php:
|
1808 |
-
msgid "
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: inc/options.php:
|
1812 |
-
msgid "
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: inc/options.php:
|
1816 |
-
msgid "
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: inc/options.php:
|
1820 |
-
msgid "
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: inc/options.php:
|
1824 |
-
msgid "
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: inc/options.php:
|
1828 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: inc/options.php:
|
1832 |
-
msgid "
|
|
|
|
|
|
|
|
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: inc/options.php:
|
1836 |
msgid "Choose to display info below or beside the image."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: inc/options.php:
|
1840 |
-
msgid "
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: inc/options.php:
|
1844 |
-
msgid "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: inc/options.php:
|
1848 |
msgid "Name"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: inc/options.php:
|
1852 |
msgid "Insert the name of the person."
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: inc/options.php:
|
1856 |
msgid "Insert the title of the person"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: inc/options.php:
|
1860 |
msgid "Image Overlay Color"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: inc/options.php:
|
1864 |
msgid "Select a hover color to show over the image as an overlay."
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: inc/options.php:
|
1868 |
msgid "Image Overlay Opacity"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: inc/options.php:
|
1872 |
msgid "Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: inc/options.php:
|
1876 |
msgid "Profile Description"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: inc/options.php:
|
1880 |
msgid "Insert profile description."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: inc/options.php:
|
1884 |
msgid "Picture"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: inc/options.php:
|
1888 |
msgid "Picture Link URL"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: inc/options.php:
|
1892 |
msgid "Picture Border Size"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: inc/options.php:
|
1896 |
msgid "In pixels (px), ex: 1px. Leave blank for theme option selection."
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: inc/options.php:
|
1900 |
msgid "Picture Border Color"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: inc/options.php:
|
1904 |
msgid ""
|
1905 |
"Controls the picture's border color. Leave blank for theme option selection."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: inc/options.php:
|
1909 |
msgid "Picture Border Radius"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: inc/options.php:
|
1913 |
msgid ""
|
1914 |
"Choose the border radius of the person image. In pixels (px), ex: 1px, or "
|
1915 |
"\"round\". Leave blank for theme option selection."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: inc/options.php:
|
1919 |
msgid "Social Icon Box Radius"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: inc/options.php:
|
1923 |
msgid ""
|
1924 |
"Choose the border radius of the boxed icons. In pixels (px), ex: 1px, or "
|
1925 |
"\"round\". Leave blank for theme option selection."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: inc/options.php:
|
1929 |
msgid "Social Icon Custom Colors"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: inc/options.php:
|
1933 |
msgid ""
|
1934 |
"Controls the Icon's border color. Leave blank for theme option selection."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: inc/options.php:
|
1938 |
msgid "Icon1"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/options.php:
|
1942 |
msgid "Link1 "
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: inc/options.php:
|
1946 |
msgid "The Icon1 Link "
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: inc/options.php:
|
1950 |
msgid "Icon2"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: inc/options.php:
|
1954 |
msgid "Link2 "
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: inc/options.php:
|
1958 |
msgid "The Icon2 Link "
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: inc/options.php:
|
1962 |
msgid "Icon3"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: inc/options.php:
|
1966 |
msgid "Link3 "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: inc/options.php:
|
1970 |
msgid "The Icon3 Link "
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: inc/options.php:
|
1974 |
msgid "Icon4"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: inc/options.php:
|
1978 |
msgid "Link4"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: inc/options.php:
|
1982 |
msgid "The Icon4 Link "
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: inc/options.php:
|
1986 |
msgid "Icon5"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: inc/options.php:
|
1990 |
msgid "Link5"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: inc/options.php:
|
1994 |
msgid "The Icon5 Link "
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: inc/options.php:
|
1998 |
msgid "Person Shortcode"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: inc/options.php:
|
2002 |
-
msgid "
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: inc/options.php:
|
2006 |
-
msgid "
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: inc/options.php:
|
2010 |
-
msgid "
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: inc/options.php:
|
2014 |
-
msgid "
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: inc/options.php:
|
2018 |
-
msgid "
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: inc/options.php:
|
2022 |
-
msgid "
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: inc/options.php:
|
2026 |
-
msgid "
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: inc/options.php:
|
2030 |
-
msgid "
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: inc/options.php:
|
2034 |
-
msgid "
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: inc/options.php:
|
2038 |
-
msgid "
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: inc/options.php:
|
2042 |
-
msgid "
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: inc/options.php:
|
2046 |
-
msgid "
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: inc/options.php:
|
2050 |
-
msgid "
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: inc/options.php:
|
2054 |
-
msgid "
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: inc/options.php:
|
2058 |
-
msgid "
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: inc/options.php:
|
2062 |
-
msgid "
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: inc/options.php:
|
2066 |
-
msgid "
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: inc/options.php:
|
2070 |
-
msgid "
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: inc/options.php:
|
2074 |
-
msgid "
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: inc/options.php:
|
2078 |
-
msgid "
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: inc/options.php:
|
2082 |
-
msgid "
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: inc/options.php:
|
2086 |
-
msgid "
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: inc/options.php:
|
2090 |
-
msgid "
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: inc/options.php:
|
2094 |
-
msgid "
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: inc/options.php:
|
2098 |
-
msgid "
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: inc/options.php:
|
2102 |
-
msgid "
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: inc/options.php:
|
2106 |
-
msgid "
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: inc/options.php:
|
2110 |
-
msgid "
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: inc/options.php:
|
2114 |
-
msgid "
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: inc/options.php:
|
2118 |
-
msgid "
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: inc/options.php:
|
2122 |
-
msgid "
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: inc/options.php:
|
2126 |
-
msgid "
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: inc/options.php:
|
2130 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2134 |
msgid "Choose to set the progress bar as rounded."
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: inc/options.php:
|
2138 |
msgid "On"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: inc/options.php:
|
2142 |
msgid "Off"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: inc/options.php:
|
2146 |
msgid "Display Number"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: inc/options.php:
|
2150 |
msgid "Choose to diplay number for progress bar."
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: inc/options.php:
|
2154 |
msgid "Set percentage for progress bar. 0~100."
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: inc/options.php:
|
2158 |
msgid "Insert text for progress bar."
|
2159 |
msgstr ""
|
2160 |
|
@@ -2190,834 +2137,722 @@ msgstr ""
|
|
2190 |
msgid "Progress Shortcode"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: inc/options.php:
|
2194 |
-
msgid "progress-bar-shortcode/"
|
2195 |
-
msgstr ""
|
2196 |
-
|
2197 |
-
#: inc/options.php:2468
|
2198 |
-
msgid "Select style for promo box."
|
2199 |
-
msgstr ""
|
2200 |
-
|
2201 |
-
#: inc/options.php:2478
|
2202 |
-
msgid "Set color for highlight border of promo box."
|
2203 |
-
msgstr ""
|
2204 |
-
|
2205 |
-
#: inc/options.php:2486
|
2206 |
-
msgid "Set width for highlight border of promo box."
|
2207 |
-
msgstr ""
|
2208 |
-
|
2209 |
-
#: inc/options.php:2491
|
2210 |
-
msgid "Border Position"
|
2211 |
-
msgstr ""
|
2212 |
-
|
2213 |
-
#: inc/options.php:2492
|
2214 |
-
msgid "Choose position for highlight border of promo box."
|
2215 |
-
msgstr ""
|
2216 |
-
|
2217 |
-
#: inc/options.php:2505
|
2218 |
-
msgid "Set background color for promo box."
|
2219 |
-
msgstr ""
|
2220 |
-
|
2221 |
-
#: inc/options.php:2517
|
2222 |
-
msgid "Inser text for button of promo box."
|
2223 |
-
msgstr ""
|
2224 |
-
|
2225 |
-
#: inc/options.php:2522
|
2226 |
-
msgid "Button Text Color"
|
2227 |
-
msgstr ""
|
2228 |
-
|
2229 |
-
#: inc/options.php:2527
|
2230 |
-
msgid "Button Link URL"
|
2231 |
-
msgstr ""
|
2232 |
-
|
2233 |
-
#: inc/options.php:2528
|
2234 |
-
msgid "Inser link for button of promo box, eg: http://example.com."
|
2235 |
-
msgstr ""
|
2236 |
-
|
2237 |
-
#: inc/options.php:2540
|
2238 |
-
msgid "Insert content for promo box."
|
2239 |
-
msgstr ""
|
2240 |
-
|
2241 |
-
#: inc/options.php:2556
|
2242 |
-
msgid "Promo Box Shortcode"
|
2243 |
-
msgstr ""
|
2244 |
-
|
2245 |
-
#: inc/options.php:2557
|
2246 |
-
msgid "promo-box-shortcode/"
|
2247 |
-
msgstr ""
|
2248 |
-
|
2249 |
-
#: inc/options.php:2571
|
2250 |
msgid "Set alignment for pullquote."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: inc/options.php:
|
2254 |
msgid "Insert content for pullquote."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: inc/options.php:
|
2258 |
msgid "Pullquote Shortcode"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: inc/options.php:
|
2262 |
-
msgid "pullquote-shortcode/"
|
2263 |
-
msgstr ""
|
2264 |
-
|
2265 |
-
#: inc/options.php:2615
|
2266 |
msgid "The text to store within the QR code. Any text or URL is available."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: inc/options.php:
|
2270 |
msgid "Alternative text"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: inc/options.php:
|
2274 |
msgid "Set image alt for QR code."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: inc/options.php:
|
2278 |
msgid "Size in pixel"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: inc/options.php:
|
2282 |
msgid "Image width and height."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: inc/options.php:
|
2286 |
msgid "QRCode clickable?"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: inc/options.php:
|
2290 |
msgid "Choose to make this QR code clickable."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: inc/options.php:
|
2294 |
msgid "Foreground Color"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: inc/options.php:
|
2298 |
msgid "Set foreground Color for QR code."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: inc/options.php:
|
2302 |
msgid "Set background Color for QR code."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: inc/options.php:
|
2306 |
msgid "QR Code Shortcode"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: inc/options.php:
|
2310 |
-
msgid "qr-code-shortcode/"
|
2311 |
-
msgstr ""
|
2312 |
-
|
2313 |
-
#: inc/options.php:2670
|
2314 |
msgid "Cite"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: inc/options.php:
|
2318 |
msgid "Author name for quote."
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: inc/options.php:
|
2322 |
msgid "Cite Link"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: inc/options.php:
|
2326 |
msgid "Insert Url for the quote author. Leave empty to disable hyperlink."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: inc/options.php:
|
2330 |
msgid "Insert content for the quote."
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: inc/options.php:
|
2334 |
msgid "Quote Shortcode"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: inc/options.php:
|
2338 |
-
msgid "
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: inc/options.php:
|
2342 |
msgid "Feed URL"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: inc/options.php:
|
2346 |
msgid "Url of RSS Feed."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: inc/options.php:
|
2350 |
msgid "Number to Display"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: inc/options.php:
|
2354 |
msgid "Number of items to show."
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: inc/options.php:
|
2358 |
msgid "RSS Feed Shortcode"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: inc/options.php:
|
2362 |
-
msgid "
|
2363 |
-
msgstr ""
|
2364 |
-
|
2365 |
-
#: inc/options.php:2756
|
2366 |
-
msgid "Time"
|
2367 |
-
msgstr ""
|
2368 |
-
|
2369 |
-
#: inc/options.php:2757
|
2370 |
-
msgid ""
|
2371 |
-
"Select an random time in one day to show content.</br>Example: 6-12,13-16 "
|
2372 |
-
"show content from 6:00 to 12:00 and from 13:00 to 16:00"
|
2373 |
-
msgstr ""
|
2374 |
-
|
2375 |
-
#: inc/options.php:2762
|
2376 |
-
msgid "Days of Week"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: inc/options.php:
|
2380 |
-
msgid ""
|
2381 |
-
"Select days from one week to show content.</br>1 => Monday </br>2 => "
|
2382 |
-
"Tuesday </br> 3 => Wednesday</br> 4 => Thursday </br> 5 => Friday </br> 6 "
|
2383 |
-
"=> Saturday </br> 7 => Sunday </br>Examples:1-5,7 =>show content at Sunday "
|
2384 |
-
"and from Monday to Friday"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: inc/options.php:
|
2388 |
-
msgid "
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: inc/options.php:
|
2392 |
-
msgid ""
|
2393 |
-
"Select days from one month to show content.</br>Examples:</br>1 => show "
|
2394 |
-
"content only at first day of month </br> 10-25 => show content from 10th to "
|
2395 |
-
"25th </br> 10-15,20-25 => show content from 10th to 15th and from 20th to "
|
2396 |
-
"25th"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: inc/options.php:
|
2400 |
-
msgid "
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: inc/options.php:
|
2404 |
-
msgid ""
|
2405 |
-
"Select months from a year to show content.</br>Examples:</br>1 => show "
|
2406 |
-
"content in January </br> 3-6 => show content from March to June </br> "
|
2407 |
-
"1,5,8-9 => show content in January,May and from August to September"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: inc/options.php:
|
2411 |
-
msgid "
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: inc/options.php:
|
2415 |
-
msgid ""
|
2416 |
-
"Select years to show content.</br>Examples:</br> 2016 => show content in "
|
2417 |
-
"2016 </br>2014-2016 => show content from 2014 to 2016 </br> "
|
2418 |
-
"2016,2017,2345-2666 => show content in 2016,2017 and from 2345 to 2666"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: inc/options.php:
|
2422 |
-
msgid "
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: inc/options.php:
|
2426 |
-
msgid "
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: inc/options.php:
|
2430 |
-
msgid "
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: inc/options.php:
|
2434 |
msgid "Set background for section. Leave blank for transparent."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: inc/options.php:
|
2438 |
msgid "Upload an image to display in the background."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: inc/options.php:
|
2442 |
msgid "Background Repeat"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: inc/options.php:
|
2446 |
msgid "Choose repeat style for the background image."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: inc/options.php:
|
2450 |
-
msgid "
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: inc/options.php:
|
2454 |
-
msgid "
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: inc/options.php:
|
2458 |
-
msgid "
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: inc/options.php:
|
2462 |
-
msgid "
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: inc/options.php:
|
2466 |
-
msgid "
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: inc/options.php:
|
2470 |
msgid "Background Position"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: inc/options.php:
|
2474 |
msgid "Choose the postion of the background image."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: inc/options.php:
|
2478 |
-
msgid "
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: inc/options.php:
|
2482 |
-
msgid "
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: inc/options.php:
|
2486 |
-
msgid "
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: inc/options.php:
|
2490 |
-
msgid "
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: inc/options.php:
|
2494 |
-
msgid "
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: inc/options.php:
|
2498 |
-
msgid "
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: inc/options.php:
|
2502 |
-
msgid "
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: inc/options.php:
|
2506 |
-
msgid "
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: inc/options.php:
|
2510 |
-
msgid "
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: inc/options.php:
|
2514 |
msgid "Background Parallax"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: inc/options.php:
|
2518 |
msgid "Choose how the background image scrolls and responds."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: inc/options.php:
|
2522 |
msgid "Set border color for section."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: inc/options.php:
|
2526 |
msgid "Select border style for section"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: inc/options.php:
|
2530 |
msgid "Hidden"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: inc/options.php:
|
2534 |
msgid "Solid"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: inc/options.php:
|
2538 |
msgid "Double"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: inc/options.php:
|
2542 |
msgid "Groove"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: inc/options.php:
|
2546 |
msgid "Ridge"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: inc/options.php:
|
2550 |
msgid "Inset"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: inc/options.php:
|
2554 |
msgid "Outset"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: inc/options.php:
|
2558 |
msgid "Initial"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2562 |
msgid "Padding Top"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: inc/options.php:
|
2566 |
msgid "Padding Bottom"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: inc/options.php:
|
2570 |
msgid "Padding Left"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: inc/options.php:
|
2574 |
msgid "Padding Right"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: inc/options.php:
|
2578 |
msgid "Contents in Container ?"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: inc/options.php:
|
2582 |
msgid "Put the content in container."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: inc/options.php:
|
2586 |
msgid "Section content."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: inc/options.php:
|
2590 |
msgid "Section Content"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: inc/options.php:
|
2594 |
msgid "Insert content for section."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: inc/options.php:
|
2598 |
msgid "Top Separator"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: inc/options.php:
|
2602 |
-
msgid "
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: inc/options.php:
|
2606 |
-
msgid "
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: inc/options.php:
|
2610 |
-
msgid "
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: inc/options.php:
|
2614 |
-
msgid "
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: inc/options.php:
|
2618 |
-
msgid "
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: inc/options.php:
|
2622 |
-
msgid "
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#: inc/options.php:
|
2626 |
-
msgid "
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: inc/options.php:
|
2630 |
-
msgid "
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: inc/options.php:
|
2634 |
-
msgid "
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: inc/options.php:
|
2638 |
-
msgid "
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: inc/options.php:
|
2642 |
-
msgid "
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2646 |
msgid "Bottom Separator"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: inc/options.php:
|
2650 |
-
msgid "
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: inc/options.php:
|
2654 |
-
msgid "
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: inc/options.php:
|
2658 |
-
msgid "
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: inc/options.php:
|
2662 |
msgid "Full Height"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: inc/options.php:
|
2666 |
msgid "Choose to set the section height same as browser window."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: inc/options.php:
|
2670 |
msgid "Section Shortcode"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: inc/options.php:
|
2674 |
-
msgid "
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: inc/options.php:
|
2678 |
-
msgid "
|
|
|
|
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: inc/options.php:
|
2682 |
-
msgid "
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: inc/options.php:
|
2686 |
-
msgid "
|
|
|
|
|
|
|
|
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: inc/options.php:
|
2690 |
-
msgid "
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: inc/options.php:
|
2694 |
-
msgid "
|
|
|
|
|
|
|
|
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#: inc/options.php:
|
2698 |
-
msgid "
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: inc/options.php:
|
2702 |
-
msgid "
|
|
|
|
|
|
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: inc/options.php:
|
2706 |
-
msgid "
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: inc/options.php:
|
2710 |
-
msgid "
|
|
|
|
|
|
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: inc/options.php:
|
2714 |
-
msgid "
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: inc/options.php:
|
2718 |
-
msgid "
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: inc/options.php:
|
2722 |
-
msgid "
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: inc/options.php:
|
2726 |
-
msgid "
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: inc/options.php:
|
2730 |
-
msgid "
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2734 |
msgid "Select tabs' style."
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: inc/options.php:
|
2738 |
msgid "Simple Style Justified"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: inc/options.php:
|
2742 |
msgid "Button Style Justified"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: inc/options.php:
|
2746 |
msgid "Normal Style"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: inc/options.php:
|
2750 |
msgid "Normal Style Justified"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#: inc/options.php:
|
2754 |
msgid "Vertical Style"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#: inc/options.php:
|
2758 |
msgid "Vertical Style Right"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: inc/options.php:
|
2762 |
msgid "Set color for tab item's title."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: inc/options.php:
|
2766 |
msgid "Tab Items"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: inc/options.php:
|
2770 |
msgid "Insert tab items."
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: inc/options.php:
|
2774 |
msgid "Tab Shortcode"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: inc/options.php:
|
2778 |
-
msgid "tabs-shortcode/"
|
2779 |
-
msgstr ""
|
2780 |
-
|
2781 |
-
#: inc/options.php:3195
|
2782 |
-
msgid ""
|
2783 |
-
"Select visible permissions.Private for author only. Members for logged-in "
|
2784 |
-
"users. Guests for users not logged in."
|
2785 |
-
msgstr ""
|
2786 |
-
|
2787 |
-
#: inc/options.php:3197
|
2788 |
-
msgid "Private"
|
2789 |
-
msgstr ""
|
2790 |
-
|
2791 |
-
#: inc/options.php:3198
|
2792 |
-
msgid "Members"
|
2793 |
-
msgstr ""
|
2794 |
-
|
2795 |
-
#: inc/options.php:3199
|
2796 |
-
msgid "Guests"
|
2797 |
-
msgstr ""
|
2798 |
-
|
2799 |
-
#: inc/options.php:3206
|
2800 |
-
msgid "Set content for targeted users."
|
2801 |
-
msgstr ""
|
2802 |
-
|
2803 |
-
#: inc/options.php:3211
|
2804 |
-
msgid "Alternative Content"
|
2805 |
-
msgstr ""
|
2806 |
-
|
2807 |
-
#: inc/options.php:3212
|
2808 |
-
msgid "Set content for other users."
|
2809 |
-
msgstr ""
|
2810 |
-
|
2811 |
-
#: inc/options.php:3216
|
2812 |
-
msgid "Targeted Shortcode"
|
2813 |
-
msgstr ""
|
2814 |
-
|
2815 |
-
#: inc/options.php:3217
|
2816 |
-
msgid "targeted-shortcode/"
|
2817 |
-
msgstr ""
|
2818 |
-
|
2819 |
-
#: inc/options.php:3231
|
2820 |
msgid "Style "
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: inc/options.php:
|
2824 |
msgid "Select testimonial's style"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: inc/options.php:
|
2828 |
msgid "Box"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: inc/options.php:
|
2832 |
msgid "Name of testimonial's author."
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: inc/options.php:
|
2836 |
msgid "Byline"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: inc/options.php:
|
2840 |
msgid "Byline of testimonial's author."
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: inc/options.php:
|
2844 |
msgid "Avatar"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: inc/options.php:
|
2848 |
msgid "Avatar of testimonial's author."
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: inc/options.php:
|
2852 |
msgid "Alignment"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: inc/options.php:
|
2856 |
msgid "Select the content's alignment."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: inc/options.php:
|
2860 |
msgid "Testimonial Content"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: inc/options.php:
|
2864 |
msgid "Insert content for testimonial."
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: inc/options.php:
|
2868 |
msgid "Testimonial Shortcode"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: inc/options.php:
|
2872 |
-
msgid "testimonial-shortcode/"
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#: inc/options.php:3302
|
2876 |
msgid "Columns"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: inc/options.php:
|
2880 |
msgid "Number of items."
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: inc/options.php:
|
2884 |
msgid "2 columns"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: inc/options.php:
|
2888 |
msgid "3 columns"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: inc/options.php:
|
2892 |
msgid "4 columns"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: inc/options.php:
|
2896 |
msgid "5 columns"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: inc/options.php:
|
2900 |
msgid "Timeline Items"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: inc/options.php:
|
2904 |
msgid "Insert timeline items."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: inc/options.php:
|
2908 |
msgid "Timeline Shortcode"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: inc/options.php:
|
2912 |
-
msgid "
|
2913 |
-
|
2914 |
-
|
2915 |
-
#: inc/options.php:3351
|
2916 |
-
msgid "Tooltip Text"
|
2917 |
-
msgstr ""
|
2918 |
-
|
2919 |
-
#: inc/options.php:3352
|
2920 |
-
msgid "Insert the text that displays in the tooltip"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: inc/options.php:
|
2924 |
-
msgid "
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: inc/options.php:
|
2928 |
-
msgid "
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: inc/options.php:
|
2932 |
-
msgid "
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: inc/options.php:
|
2936 |
-
msgid "
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: inc/options.php:
|
2940 |
-
msgid "
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: inc/options.php:
|
2944 |
-
msgid "
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: inc/options.php:
|
2948 |
-
msgid "
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: inc/options.php:
|
2952 |
msgid "Mp4 Video Url"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: inc/options.php:
|
2956 |
msgid ""
|
2957 |
"Add the URL of video in MPEG4 format. WebM and MP4 format must be included "
|
2958 |
"to render your video with cross browser compatibility. OGV is optional."
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: inc/options.php:
|
2962 |
msgid "Ogv Video Url"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: inc/options.php:
|
2966 |
msgid ""
|
2967 |
"Add the URL of video in OGV format. WebM and MP4 format must be included to "
|
2968 |
"render your video with cross browser compatibility. OGV is optional."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: inc/options.php:
|
2972 |
msgid "Webm Video Url"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: inc/options.php:
|
2976 |
msgid ""
|
2977 |
"Add the URL of video in webm format. WebM and MP4 format must be included to "
|
2978 |
"render your video with cross browser compatibility. OGV is optional."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: inc/options.php:
|
2982 |
msgid "Poster"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: inc/options.php:
|
2986 |
msgid "Display a image when browser does not support HTML5 format."
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: inc/options.php:
|
2990 |
msgid "Video Shortcode"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: inc/options.php:
|
2994 |
-
msgid "
|
2995 |
-
msgstr ""
|
2996 |
-
|
2997 |
-
#: inc/options.php:3515
|
2998 |
-
msgid "Vimeo URL"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: inc/options.php:
|
3002 |
msgid "Vimeo Shortcode"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: inc/options.php:
|
3006 |
-
msgid "vimeo-shortcode/"
|
3007 |
-
msgstr ""
|
3008 |
-
|
3009 |
-
#: inc/options.php:3596
|
3010 |
msgid "Youtube URL"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: inc/options.php:
|
3014 |
msgid "Youtube Shortcode"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: inc/options.php:3663
|
3018 |
-
msgid "youtube-shortcode/"
|
3019 |
-
msgstr ""
|
3020 |
-
|
3021 |
#: shortcodes/class-countdowns.php:59
|
3022 |
msgid "Days"
|
3023 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-03-07 09:10+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-03-07 09:10+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:97 inc/core.php:100
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: inc/core.php:251
|
25 |
+
msgid "Shortcodes List"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: inc/core.php:251
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: inc/core.php:514
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: inc/core.php:531
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: inc/core.php:595 inc/options.php:672 inc/options.php:799
|
41 |
+
#: inc/options.php:913 inc/options.php:958 inc/options.php:3306
|
42 |
+
#: inc/options.php:3389 inc/options.php:3469
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/core.php:599 inc/options.php:805 inc/options.php:919
|
47 |
+
#: inc/options.php:964 inc/options.php:2403 inc/options.php:3312
|
48 |
+
#: inc/options.php:3395 inc/options.php:3475
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: inc/core.php:837
|
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:609 inc/options.php:1099
|
105 |
+
#: inc/options.php:1419 inc/options.php:1967 inc/options.php:2235
|
106 |
+
#: inc/options.php:2290
|
107 |
msgid "Title"
|
108 |
msgstr ""
|
109 |
|
115 |
msgid "Date"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/options.php:31 inc/options.php:680 inc/options.php:1181
|
119 |
+
#: inc/options.php:1917 inc/options.php:2153 inc/options.php:2420
|
120 |
+
#: inc/options.php:2468 inc/options.php:3022
|
121 |
msgid "Left"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/options.php:31 inc/options.php:681 inc/options.php:3156
|
125 |
msgid "Center"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/options.php:31 inc/options.php:1182 inc/options.php:1918
|
129 |
+
#: inc/options.php:2154 inc/options.php:2421 inc/options.php:2469
|
130 |
+
#: inc/options.php:3023
|
131 |
msgid "Right"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: inc/options.php:67 inc/options.php:179 inc/options.php:245
|
135 |
+
#: inc/options.php:387 inc/options.php:445 inc/options.php:488
|
136 |
+
#: inc/options.php:538 inc/options.php:627 inc/options.php:719
|
137 |
+
#: inc/options.php:768 inc/options.php:826 inc/options.php:867
|
138 |
+
#: inc/options.php:925 inc/options.php:1007 inc/options.php:1062
|
139 |
+
#: inc/options.php:1256 inc/options.php:1348 inc/options.php:1392
|
140 |
+
#: inc/options.php:1506 inc/options.php:1561 inc/options.php:1623
|
141 |
+
#: inc/options.php:1661 inc/options.php:1731 inc/options.php:1827
|
142 |
+
#: inc/options.php:1858 inc/options.php:1925 inc/options.php:2102
|
143 |
+
#: inc/options.php:2200 inc/options.php:2269 inc/options.php:2333
|
144 |
+
#: inc/options.php:2439 inc/options.php:2481 inc/options.php:2579
|
145 |
+
#: inc/options.php:2613 inc/options.php:2646 inc/options.php:2727
|
146 |
+
#: inc/options.php:2925 inc/options.php:2980 inc/options.php:3044
|
147 |
+
#: inc/options.php:3089 inc/options.php:3168 inc/options.php:3208
|
148 |
+
#: inc/options.php:3355 inc/options.php:3438 inc/options.php:3518
|
149 |
msgid "CSS Class"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/options.php:68 inc/options.php:180 inc/options.php:246
|
153 |
+
#: inc/options.php:388 inc/options.php:446 inc/options.php:489
|
154 |
+
#: inc/options.php:539 inc/options.php:628 inc/options.php:720
|
155 |
+
#: inc/options.php:769 inc/options.php:827 inc/options.php:868
|
156 |
+
#: inc/options.php:926 inc/options.php:1008 inc/options.php:1063
|
157 |
+
#: inc/options.php:1257 inc/options.php:1349 inc/options.php:1393
|
158 |
+
#: inc/options.php:1507 inc/options.php:1562 inc/options.php:1624
|
159 |
+
#: inc/options.php:1662 inc/options.php:1732 inc/options.php:1828
|
160 |
+
#: inc/options.php:1859 inc/options.php:1926 inc/options.php:2103
|
161 |
+
#: inc/options.php:2201 inc/options.php:2270 inc/options.php:2334
|
162 |
+
#: inc/options.php:2440 inc/options.php:2482 inc/options.php:2580
|
163 |
+
#: inc/options.php:2614 inc/options.php:2647 inc/options.php:2728
|
164 |
+
#: inc/options.php:2926 inc/options.php:2981 inc/options.php:3045
|
165 |
+
#: inc/options.php:3090 inc/options.php:3169 inc/options.php:3209
|
166 |
+
#: inc/options.php:3356 inc/options.php:3439 inc/options.php:3519
|
167 |
msgid "Add a class to the wrapping HTML element."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/options.php:73 inc/options.php:185 inc/options.php:251
|
171 |
+
#: inc/options.php:393 inc/options.php:451 inc/options.php:494
|
172 |
+
#: inc/options.php:544 inc/options.php:633 inc/options.php:725
|
173 |
+
#: inc/options.php:774 inc/options.php:832 inc/options.php:873
|
174 |
+
#: inc/options.php:931 inc/options.php:1013 inc/options.php:1068
|
175 |
+
#: inc/options.php:1262 inc/options.php:1354 inc/options.php:1398
|
176 |
+
#: inc/options.php:1512 inc/options.php:1567 inc/options.php:1629
|
177 |
+
#: inc/options.php:1667 inc/options.php:1737 inc/options.php:1833
|
178 |
+
#: inc/options.php:1864 inc/options.php:1931 inc/options.php:2108
|
179 |
+
#: inc/options.php:2206 inc/options.php:2339 inc/options.php:2445
|
180 |
+
#: inc/options.php:2487 inc/options.php:2585 inc/options.php:2652
|
181 |
+
#: inc/options.php:2733 inc/options.php:2931 inc/options.php:2986
|
182 |
+
#: inc/options.php:3050 inc/options.php:3095 inc/options.php:3174
|
183 |
+
#: inc/options.php:3214 inc/options.php:3361 inc/options.php:3444
|
184 |
+
#: inc/options.php:3524
|
185 |
msgid "CSS ID"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/options.php:74 inc/options.php:186 inc/options.php:252
|
189 |
+
#: inc/options.php:394 inc/options.php:452 inc/options.php:495
|
190 |
+
#: inc/options.php:545 inc/options.php:634 inc/options.php:726
|
191 |
+
#: inc/options.php:775 inc/options.php:833 inc/options.php:874
|
192 |
+
#: inc/options.php:932 inc/options.php:1014 inc/options.php:1069
|
193 |
+
#: inc/options.php:1263 inc/options.php:1355 inc/options.php:1399
|
194 |
+
#: inc/options.php:1513 inc/options.php:1568 inc/options.php:1630
|
195 |
+
#: inc/options.php:1668 inc/options.php:1738 inc/options.php:1834
|
196 |
+
#: inc/options.php:1865 inc/options.php:1932 inc/options.php:2109
|
197 |
+
#: inc/options.php:2207 inc/options.php:2340 inc/options.php:2446
|
198 |
+
#: inc/options.php:2488 inc/options.php:2586 inc/options.php:2653
|
199 |
+
#: inc/options.php:2734 inc/options.php:2932 inc/options.php:2987
|
200 |
+
#: inc/options.php:3051 inc/options.php:3096 inc/options.php:3175
|
201 |
+
#: inc/options.php:3215 inc/options.php:3362 inc/options.php:3445
|
202 |
+
#: inc/options.php:3525
|
203 |
msgid "Add an ID to the wrapping HTML element."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/options.php:79 inc/options.php:850 inc/options.php:891
|
207 |
+
#: inc/options.php:1425 inc/options.php:1951 inc/options.php:2127
|
208 |
+
#: inc/options.php:3068
|
209 |
msgid "Style"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/options.php:82 inc/options.php:3071
|
213 |
msgid "Simple Style"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/options.php:83
|
217 |
msgid "Boxed Style"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/options.php:88 inc/options.php:3241
|
221 |
msgid "Type"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: inc/options.php:92
|
225 |
msgid "Type 1"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/options.php:93
|
229 |
msgid "Type 2"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/options.php:99
|
233 |
msgid "Accordion Items"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/options.php:100
|
237 |
msgid "Insert accordion items shortcode."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/options.php:105
|
241 |
msgid "Accordion Shortcode"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/options.php:121 inc/options.php:665 inc/options.php:711
|
245 |
+
#: inc/options.php:1122 inc/options.php:1535 inc/options.php:1684
|
246 |
+
#: inc/options.php:2677
|
|
|
|
|
|
|
|
|
247 |
msgid "Icon"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/options.php:122 inc/options.php:373 inc/options.php:569
|
251 |
+
#: inc/options.php:712 inc/options.php:1123 inc/options.php:1536
|
252 |
+
#: inc/options.php:1685 inc/options.php:2042 inc/options.php:2054
|
253 |
+
#: inc/options.php:2066 inc/options.php:2078 inc/options.php:2090
|
254 |
+
#: inc/options.php:2188 inc/options.php:2678
|
255 |
msgid "Click an icon to select, click again to deselect."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/options.php:127
|
259 |
msgid "Warning! Better check yourself, you're not looking too good."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/options.php:129
|
263 |
msgid "Alert Content"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/options.php:130
|
267 |
msgid "Insert the content for the alert."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/options.php:136 inc/options.php:531 inc/options.php:1373
|
271 |
+
#: inc/options.php:1769 inc/options.php:2542 inc/options.php:2753
|
272 |
msgid "Background Color"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc/options.php:137
|
276 |
msgid "Set background color for alert box."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/options.php:142 inc/options.php:366
|
280 |
msgid "Text Color"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/options.php:143
|
284 |
msgid "Set content color & border color for alert box."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc/options.php:150 inc/options.php:305 inc/options.php:1493
|
288 |
+
#: inc/options.php:2143
|
289 |
msgid "Border Width"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/options.php:151 inc/options.php:158 inc/options.php:1380
|
293 |
+
#: inc/options.php:1482 inc/options.php:1488 inc/options.php:1494
|
294 |
+
#: inc/options.php:2326 inc/options.php:2805 inc/options.php:2840
|
295 |
+
#: inc/options.php:2846 inc/options.php:2852 inc/options.php:2858
|
296 |
+
#: inc/options.php:3307 inc/options.php:3313
|
297 |
msgid "In pixels (px), eg: 1px."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/options.php:157 inc/options.php:1379 inc/options.php:1610
|
301 |
+
#: inc/options.php:2325
|
302 |
msgid "Border Radius"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/options.php:164
|
306 |
msgid "Box Shadow"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/options.php:165
|
310 |
msgid "Display a box shadow for alert."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/options.php:171
|
314 |
msgid "Dismissable"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/options.php:172
|
318 |
msgid "The alert box is dismissable."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/options.php:190
|
322 |
msgid "Alert Shortcode"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/options.php:203
|
|
|
|
|
|
|
|
|
326 |
msgid "Mp3 URL"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/options.php:204
|
330 |
msgid "Add the URL of audio in MP3 format."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/options.php:209
|
334 |
msgid "Ogg URL"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: inc/options.php:210
|
338 |
msgid "Add the URL of audio in OGG format."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: inc/options.php:215
|
342 |
msgid "Wav URL"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/options.php:216
|
346 |
msgid "Add the URL of audio in WAV format."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/options.php:220
|
350 |
msgid "Mute Audio"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/options.php:221
|
354 |
msgid "Choose to mute the audio."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc/options.php:226
|
358 |
msgid "Autoplay Audio"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc/options.php:227
|
362 |
msgid "Choose to autoplay the audio."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: inc/options.php:232
|
366 |
msgid "Loop Audio"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: inc/options.php:233
|
370 |
msgid "Choose to loop the audio."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: inc/options.php:238
|
374 |
msgid "Controls Audio"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: inc/options.php:239
|
378 |
msgid "Choose to display controls of the audio."
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: inc/options.php:256
|
382 |
msgid "Audio Shortcode"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: inc/options.php:269 inc/options.php:3073
|
|
|
|
|
|
|
|
|
386 |
msgid "Button Style"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: inc/options.php:270
|
390 |
msgid "Select the button's default style."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: inc/options.php:272 inc/options.php:657 inc/options.php:2712
|
394 |
+
#: inc/options.php:3127
|
395 |
msgid "Normal"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: inc/options.php:273
|
399 |
msgid "Dark"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/options.php:274
|
403 |
msgid "Light"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: inc/options.php:275
|
407 |
msgid "2d"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/options.php:276
|
411 |
msgid "3d"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/options.php:277
|
415 |
msgid "Line"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/options.php:278
|
419 |
msgid "Line Dark"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/options.php:279
|
423 |
msgid "Line Light"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/options.php:286
|
427 |
msgid "Button URL"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/options.php:287
|
431 |
msgid "Add the button's url eg: http://example.com."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/options.php:292
|
435 |
msgid "Button Size"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/options.php:293
|
439 |
msgid "Select the button's size."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/options.php:295 inc/options.php:1803
|
443 |
msgid "Small"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/options.php:296
|
447 |
msgid "Medium"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/options.php:297 inc/options.php:1805
|
451 |
msgid "Large"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/options.php:298
|
455 |
msgid "XLarge"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/options.php:306
|
459 |
msgid "In pixels (px), default: 2px."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/options.php:311
|
463 |
msgid "Button Shape"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/options.php:312
|
467 |
msgid "Select the button's shape. Choose default for theme option selection."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/options.php:314
|
471 |
msgid "Default"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/options.php:315 inc/options.php:1711
|
475 |
msgid "Square"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/options.php:316 inc/options.php:2370 inc/options.php:2714
|
479 |
msgid "Rounded"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/options.php:317
|
483 |
msgid "Full Rounded"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/options.php:322
|
487 |
msgid "Text Shadow"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/options.php:323
|
491 |
msgid "Display shadow for button text."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/options.php:328
|
495 |
msgid "Gradient"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/options.php:329
|
499 |
msgid "Display gradient for button."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/options.php:334
|
503 |
msgid "Block Button"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/options.php:335
|
507 |
msgid "Display in full width."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/options.php:341
|
511 |
msgid "Button Target"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc/options.php:342
|
515 |
msgid "_self = open in same window <br />_blank = open in new window."
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: inc/options.php:350 inc/options.php:2176
|
519 |
msgid "Button Text"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: inc/options.php:352
|
523 |
msgid "Button's Text"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: inc/options.php:353
|
527 |
msgid "Add the text that will display in the button."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: inc/options.php:358
|
531 |
msgid "Set background color for button."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: inc/options.php:359 inc/options.php:2169
|
535 |
msgid "Button Color"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/options.php:367
|
539 |
msgid "Set content color & border color for button."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/options.php:372 inc/options.php:2187
|
543 |
msgid "Button Icon"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/options.php:379
|
547 |
msgid "Icon Animation Type"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/options.php:380
|
551 |
msgid "Select the type of animation to use on the button icon."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/options.php:398
|
555 |
msgid "Button Shortcode"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: inc/options.php:413
|
|
|
|
|
|
|
|
|
559 |
msgid "Column Shortcode"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: inc/options.php:418
|
|
|
|
|
|
|
|
|
563 |
msgid "Column Style"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/options.php:419
|
567 |
msgid "Select the size of column."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: inc/options.php:421
|
571 |
msgid "1/1"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: inc/options.php:422
|
575 |
msgid "1/2"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/options.php:423
|
579 |
msgid "1/3"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/options.php:424
|
583 |
msgid "1/4"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: inc/options.php:425
|
587 |
msgid "1/5"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: inc/options.php:426
|
591 |
msgid "1/6"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: inc/options.php:427
|
595 |
msgid "2/3"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/options.php:428
|
599 |
msgid "2/5"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/options.php:429
|
603 |
msgid "3/4"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/options.php:430
|
607 |
msgid "3/5"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/options.php:431
|
611 |
msgid "4/5"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: inc/options.php:432
|
615 |
msgid "5/6"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: inc/options.php:437
|
619 |
msgid "Column Content"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/options.php:439
|
623 |
msgid " Column Content"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/options.php:440
|
627 |
msgid "Insert the column's content"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/options.php:469
|
631 |
+
msgid "Custom Box Content"
|
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:477
|
649 |
+
msgid "Upload an image to display in background of custom box."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: inc/options.php:482
|
653 |
+
msgid "Padding"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: inc/options.php:483
|
657 |
+
msgid "Content Padding. eg:30px"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: inc/options.php:499
|
661 |
+
msgid " Custom Box Shortcode"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: inc/options.php:517
|
665 |
msgid "Set end time for countdown."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: inc/options.php:524 inc/options.php:1439
|
669 |
msgid "Font Color"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: inc/options.php:525
|
673 |
msgid "Set font color for countdown."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: inc/options.php:532
|
677 |
msgid "Set background color for countdown."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: inc/options.php:551
|
681 |
msgid "Countdowns Shortcode"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: inc/options.php:568
|
|
|
|
|
|
|
|
|
685 |
msgid "Top Icon"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: inc/options.php:575
|
689 |
msgid "Top Icon Color"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: inc/options.php:576
|
693 |
msgid "Set color for top icon."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: inc/options.php:581
|
697 |
msgid "Left Icon"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/options.php:582
|
701 |
msgid "Insert text before the number."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/options.php:589
|
705 |
msgid "Left Text"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/options.php:590
|
709 |
msgid "Left text of counter num"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/options.php:596
|
713 |
msgid "Counter Num"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: inc/options.php:597
|
717 |
msgid "The animated counter number."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: inc/options.php:602
|
721 |
msgid "Right Text"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: inc/options.php:603
|
725 |
msgid "Insert text after the number."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: inc/options.php:610
|
729 |
msgid "Insert Title for counter."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: inc/options.php:615
|
733 |
msgid "Display Border"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: inc/options.php:616
|
737 |
msgid "Choose to display border for counter."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: inc/options.php:618 inc/options.php:981 inc/options.php:991
|
741 |
+
#: inc/options.php:1001 inc/options.php:1698 inc/options.php:1719
|
742 |
+
#: inc/options.php:2529 inc/options.php:2704 inc/options.php:3329
|
743 |
+
#: inc/options.php:3339 inc/options.php:3349 inc/options.php:3412
|
744 |
+
#: inc/options.php:3422 inc/options.php:3432 inc/options.php:3492
|
745 |
+
#: inc/options.php:3502 inc/options.php:3512
|
746 |
msgid "No"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: inc/options.php:619 inc/options.php:980 inc/options.php:990
|
750 |
+
#: inc/options.php:1000 inc/options.php:1699 inc/options.php:1720
|
751 |
+
#: inc/options.php:2530 inc/options.php:2703 inc/options.php:3328
|
752 |
+
#: inc/options.php:3338 inc/options.php:3348 inc/options.php:3411
|
753 |
+
#: inc/options.php:3421 inc/options.php:3431 inc/options.php:3491
|
754 |
+
#: inc/options.php:3501 inc/options.php:3511
|
755 |
msgid "Yes"
|
756 |
msgstr ""
|
757 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
758 |
#: inc/options.php:640
|
759 |
+
msgid "Counter Shortcode"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/options.php:654
|
763 |
msgid "Divider Style"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/options.php:655
|
767 |
msgid "Select the Divider's Style."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/options.php:658
|
771 |
msgid "Shadow"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: inc/options.php:659 inc/options.php:2823
|
775 |
msgid "Dashed"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: inc/options.php:660 inc/options.php:2822
|
779 |
msgid "Dotted"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/options.php:661
|
783 |
msgid "Double Line"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: inc/options.php:662
|
787 |
msgid "Double Dashed"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: inc/options.php:663
|
791 |
msgid "Double Dotted"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: inc/options.php:664 inc/options.php:1587
|
795 |
msgid "Image"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: inc/options.php:666
|
799 |
msgid "Back to Top"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: inc/options.php:673
|
803 |
msgid "In pixels. Default: 100%"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: inc/options.php:677 inc/options.php:2465
|
807 |
msgid "Align"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: inc/options.php:678
|
811 |
msgid "When the width is not 100%."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: inc/options.php:687 inc/options.php:1481
|
815 |
msgid "Margin Top"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: inc/options.php:688
|
819 |
msgid "Spacing above the separator. In pixels."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: inc/options.php:693 inc/options.php:1487
|
823 |
msgid "Margin Bottom"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: inc/options.php:694
|
827 |
msgid "Spacing under the separator. In pixels."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/options.php:700 inc/options.php:2804
|
831 |
msgid "Border Size"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: inc/options.php:701
|
835 |
msgid "In pixels (px), eg: 1px. "
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: inc/options.php:705 inc/options.php:1444 inc/options.php:2137
|
839 |
+
#: inc/options.php:2310 inc/options.php:2811
|
840 |
msgid "Border Color"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: inc/options.php:706
|
844 |
msgid "Set the border color."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: inc/options.php:730
|
848 |
msgid "Divider Shortcode"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: inc/options.php:745
|
852 |
+
msgid "Dropcap Letter"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: inc/options.php:746
|
856 |
+
msgid "Add the letter to be used as dropcap"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: inc/options.php:750 inc/options.php:2411
|
860 |
+
msgid "Color"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: inc/options.php:751
|
864 |
+
msgid ""
|
865 |
+
"Controls the color of the dropcap letter. Leave blank for theme option "
|
866 |
+
"selection."
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: inc/options.php:755
|
870 |
+
msgid "Boxed Dropcap"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: inc/options.php:756
|
874 |
+
msgid "Choose to get a boxed dropcap."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: inc/options.php:762
|
878 |
+
msgid "Box Radius"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: inc/options.php:763
|
882 |
+
msgid "Choose the radius of the boxed dropcap. In pixels (px), eg: 1px"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: inc/options.php:779
|
886 |
+
msgid "Dropcap Shortcode"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: inc/options.php:793
|
890 |
msgid "Doc URL"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: inc/options.php:794
|
894 |
msgid "Upload document to display. Supported formats: doc, xls, pdf etc."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: inc/options.php:800
|
898 |
msgid "Set width for doc."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: inc/options.php:806
|
902 |
msgid "Set height for doc."
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/options.php:810
|
906 |
msgid "Responsive"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: inc/options.php:811
|
910 |
msgid "Choose to responsive or not"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: inc/options.php:816
|
914 |
msgid "Viewer"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/options.php:817
|
918 |
msgid "Choose viewer for document."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc/options.php:819
|
922 |
msgid "Google"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: inc/options.php:820
|
926 |
msgid "Microsoft"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: inc/options.php:837
|
930 |
msgid "Document Shortcode"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: inc/options.php:851
|
934 |
+
msgid "Select text type."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: inc/options.php:853
|
938 |
+
msgid "Paragraphs"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: inc/options.php:854
|
942 |
+
msgid "Words"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: inc/options.php:855
|
946 |
+
msgid "Bytes"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: inc/options.php:861
|
950 |
+
msgid "Amount"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: inc/options.php:862
|
954 |
+
msgid "Choose how many paragraphs or words to show"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: inc/options.php:878
|
958 |
+
msgid "Dummy Text Shortcode"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: inc/options.php:892
|
962 |
msgid "Select style for dummy image"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: inc/options.php:894
|
966 |
msgid "Any"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: inc/options.php:895
|
970 |
msgid "Transport"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: inc/options.php:896
|
974 |
msgid "Technics"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: inc/options.php:897
|
978 |
msgid "People"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: inc/options.php:898
|
982 |
msgid "Sports"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: inc/options.php:899
|
986 |
msgid "Cats"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: inc/options.php:900
|
990 |
msgid "City"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: inc/options.php:901
|
994 |
msgid "Food"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: inc/options.php:902
|
998 |
msgid "Night life"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: inc/options.php:903
|
1002 |
msgid "Fashion"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/options.php:904
|
1006 |
msgid "Animals"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: inc/options.php:905
|
1010 |
msgid "Business"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: inc/options.php:906
|
1014 |
msgid "Nature"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: inc/options.php:907
|
1018 |
msgid "Abstract"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: inc/options.php:914
|
1022 |
msgid "Set width for image."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: inc/options.php:920
|
1026 |
msgid "Set height for image."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: inc/options.php:937
|
1030 |
msgid "Dummy Image Shortcode"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: inc/options.php:952
|
1034 |
+
msgid "Dailymotion URL"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: inc/options.php:953 inc/options.php:3384 inc/options.php:3464
|
1038 |
+
msgid "Add the URL the video will link to, ex: http://example.com."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: inc/options.php:959 inc/options.php:965 inc/options.php:3390
|
1042 |
+
#: inc/options.php:3396 inc/options.php:3470 inc/options.php:3476
|
1043 |
+
msgid "In pixels (px), eg:1px."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: inc/options.php:970 inc/options.php:3318 inc/options.php:3401
|
1047 |
+
#: inc/options.php:3481
|
1048 |
+
msgid "Mute Video"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: inc/options.php:971 inc/options.php:3319 inc/options.php:3402
|
1052 |
+
#: inc/options.php:3482
|
1053 |
+
msgid "Choose to mute the video."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: inc/options.php:977 inc/options.php:3325 inc/options.php:3408
|
1057 |
+
#: inc/options.php:3488
|
1058 |
+
msgid "Autoplay Video"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: inc/options.php:978 inc/options.php:3326 inc/options.php:3409
|
1062 |
+
#: inc/options.php:3489
|
1063 |
+
msgid "Choose to autoplay the video."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: inc/options.php:987 inc/options.php:3335 inc/options.php:3418
|
1067 |
+
#: inc/options.php:3498
|
1068 |
+
msgid "Loop Video"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: inc/options.php:988 inc/options.php:3336 inc/options.php:3419
|
1072 |
+
#: inc/options.php:3499
|
1073 |
+
msgid "Choose to loop the video."
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: inc/options.php:997 inc/options.php:3345 inc/options.php:3428
|
1077 |
+
#: inc/options.php:3508
|
1078 |
+
msgid "Show Controls"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: inc/options.php:998 inc/options.php:3346 inc/options.php:3429
|
1082 |
+
#: inc/options.php:3509
|
1083 |
+
msgid "Choose to display controls for the video player."
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: inc/options.php:1018
|
1087 |
+
msgid "Dailymotion Shortcode"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: inc/options.php:1031
|
1091 |
msgid "More Icon"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: inc/options.php:1032
|
1095 |
msgid ""
|
1096 |
"Set icon for expand title. Click an icon to select, click again to deselect."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: inc/options.php:1038
|
1100 |
msgid "More Text"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: inc/options.php:1039
|
1104 |
msgid "Set text for expand title."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: inc/options.php:1043
|
1108 |
msgid "Less Icon"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: inc/options.php:1044
|
1112 |
msgid ""
|
1113 |
"Set icon for fold title. Click an icon to select, click again to deselect."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: inc/options.php:1050
|
1117 |
msgid "Less Text"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: inc/options.php:1051
|
1121 |
msgid "Set text for fold title. "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: inc/options.php:1057
|
1125 |
msgid "This text block can be expanded."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: inc/options.php:1073
|
1129 |
msgid "Expand Shortcode"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: inc/options.php:1086
|
|
|
|
|
|
|
|
|
1133 |
msgid "Feature Box Style"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: inc/options.php:1087
|
1137 |
msgid "Select the Feature Box's Style."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: inc/options.php:1089
|
1141 |
msgid "Icon on Top of Title"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: inc/options.php:1090
|
1145 |
msgid "Icon Beside Title and Content"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: inc/options.php:1091
|
1149 |
msgid "Icon Beside Title"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: inc/options.php:1092 inc/options.php:2713
|
1153 |
msgid "Boxed"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: inc/options.php:1100
|
1157 |
msgid "Insert title for feature box."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: inc/options.php:1106
|
1161 |
msgid "Title Font Size"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: inc/options.php:1107
|
1165 |
msgid "Set font size for title of feature box."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: inc/options.php:1111 inc/options.php:2304 inc/options.php:3083
|
1169 |
msgid "Title Color"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: inc/options.php:1112
|
1173 |
msgid "Set color for title of feature box."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: inc/options.php:1116
|
1177 |
msgid "Icon Hover Animation"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: inc/options.php:1117
|
1181 |
msgid "Select the Icon's Animation."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: inc/options.php:1129 inc/options.php:1542 inc/options.php:2684
|
1185 |
msgid "Icon Size"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: inc/options.php:1130
|
1189 |
msgid "Set size for icon of feature box."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: inc/options.php:1134 inc/options.php:1548 inc/options.php:1690
|
1193 |
+
#: inc/options.php:2689
|
1194 |
msgid "Icon Color"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: inc/options.php:1135
|
1198 |
msgid "Set color for icon of feature box."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: inc/options.php:1139
|
1202 |
msgid "Icon Border Color"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: inc/options.php:1140
|
1206 |
msgid "Set border color for icon of feature box."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: inc/options.php:1145
|
1210 |
msgid "Icon Border Width"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: inc/options.php:1146
|
1214 |
msgid "Set border width for icon of feature box."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: inc/options.php:1152
|
1218 |
msgid "Flip Icon"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: inc/options.php:1153
|
1222 |
msgid "Choose to flip the icon of feature box."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: inc/options.php:1155 inc/options.php:2820 inc/options.php:3155
|
|
|
1226 |
msgid "None"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: inc/options.php:1156
|
1230 |
msgid "Horizontal"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: inc/options.php:1157
|
1234 |
msgid "Vertical"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: inc/options.php:1164
|
1238 |
msgid "Spinning Icon"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/options.php:1165
|
1242 |
msgid "Choose to spin the icon of feature box."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: inc/options.php:1171 inc/options.php:1703 inc/options.php:2163
|
1246 |
+
#: inc/options.php:2694
|
1247 |
msgid "Icon Circle Background Color"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: inc/options.php:1172
|
1251 |
msgid "Set background for icon circle of feature box."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: inc/options.php:1178
|
1255 |
msgid "Icon Alignment"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: inc/options.php:1179
|
1259 |
msgid "Set alignment for style2/style3 of feature box."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: inc/options.php:1189
|
1263 |
msgid "Icon Circle"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: inc/options.php:1190
|
1267 |
msgid "Choose to display icon of feature box in circle."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: inc/options.php:1197
|
1271 |
msgid "Icon Image"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: inc/options.php:1198
|
1275 |
msgid "To upload your own icon image, remember to deselect icon above."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: inc/options.php:1203
|
1279 |
msgid "Icon Image Width"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: inc/options.php:1204
|
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:1209
|
1289 |
msgid "Icon Image Height"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: inc/options.php:1210
|
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:1217
|
1299 |
msgid "Link URL"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: inc/options.php:1218
|
1303 |
msgid "Set link for feature box, eg: http://example.com."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: inc/options.php:1223 inc/options.php:1599 inc/options.php:1973
|
1307 |
msgid "Link Target"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: inc/options.php:1224 inc/options.php:1600 inc/options.php:1974
|
1311 |
msgid "_self = open in same window _blank = open in new window."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: inc/options.php:1226 inc/options.php:1602 inc/options.php:1976
|
1315 |
msgid "_blank"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: inc/options.php:1227 inc/options.php:1603 inc/options.php:1977
|
1319 |
msgid "_self"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: inc/options.php:1234
|
1323 |
msgid "Link Text"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: inc/options.php:1235
|
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:1239
|
1333 |
msgid "Link Color"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: inc/options.php:1240
|
1337 |
msgid "Set color for link of feature box."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: inc/options.php:1244
|
1341 |
msgid "Content Color"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: inc/options.php:1245
|
1345 |
msgid "Set color for content of feature box."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: inc/options.php:1249
|
1349 |
msgid "Set box background color for Boxed Style."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: inc/options.php:1250
|
1353 |
msgid "For Boxed Style"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: inc/options.php:1266 inc/options.php:1384 inc/options.php:1819
|
1357 |
msgid "Your Content Goes Here"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: inc/options.php:1268
|
1361 |
msgid "Feature Box Content"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: inc/options.php:1273
|
1365 |
msgid "Feature Box Shortcode"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: inc/options.php:1290
|
|
|
|
|
|
|
|
|
1369 |
msgid "Direction"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: inc/options.php:1291
|
1373 |
msgid "Select flip directioon."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: inc/options.php:1293
|
1377 |
+
msgid "horizontal"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: inc/options.php:1294
|
1381 |
+
msgid "vertical"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: inc/options.php:1300
|
1385 |
msgid "Front Container Paddings"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: inc/options.php:1301
|
1389 |
msgid "Set paddings for front container of flip box."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: inc/options.php:1306 inc/options.php:1329
|
1393 |
msgid "Front Background Color"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: inc/options.php:1307
|
1397 |
msgid "Set background color for front container of flip box."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: inc/options.php:1315
|
1401 |
msgid "Front Content"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: inc/options.php:1317
|
1405 |
msgid "Front content."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: inc/options.php:1318
|
1409 |
msgid "Insert content for front container of flip box."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: inc/options.php:1323
|
1413 |
msgid "Back Container Paddings"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: inc/options.php:1324
|
1417 |
msgid "Set paddings for back container of flip box."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: inc/options.php:1330
|
1421 |
msgid "Set background color for back container of flip box."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: inc/options.php:1339
|
1425 |
msgid "Back Content"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: inc/options.php:1341
|
1429 |
msgid "Back Content."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: inc/options.php:1342
|
1433 |
msgid "Insert content for back container of flip box."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: inc/options.php:1359
|
1437 |
msgid "Flip Box Shortcode"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: inc/options.php:1374
|
1441 |
+
msgid "Set background color for highlight item."
|
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:1420
|
1457 |
msgid "Insert heading text"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: inc/options.php:1427
|
1461 |
msgid "Choose a heading style. Leave blank as default."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: inc/options.php:1440
|
1465 |
msgid "Set color for heading text."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: inc/options.php:1445
|
1469 |
msgid "Set border color for heading."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: inc/options.php:1450 inc/options.php:2417
|
1473 |
msgid "Text Align"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: inc/options.php:1451
|
1477 |
msgid "Set text align for this heading."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: inc/options.php:1457
|
1481 |
msgid "Font Weight"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: inc/options.php:1458
|
1485 |
msgid "Set font weight for heading text."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: inc/options.php:1475 inc/options.php:2249
|
1489 |
msgid "Font Size"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: inc/options.php:1476
|
1493 |
msgid "Set font size for heading text. In pixels (px), eg: 1px."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: inc/options.php:1499
|
1497 |
msgid "Responsive Text"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: inc/options.php:1500
|
1501 |
msgid "Choose to display responsive text."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: inc/options.php:1519
|
1505 |
msgid "Heading Shortcode"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: inc/options.php:1543
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
msgid "Set text size for item."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: inc/options.php:1549 inc/options.php:2690
|
1513 |
msgid "Set color for icon."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: inc/options.php:1554
|
1517 |
msgid "Icon Box"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: inc/options.php:1555
|
1521 |
msgid "Choose to display boxed icon."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: inc/options.php:1573
|
1525 |
msgid "Icon Shortcode"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: inc/options.php:1588 inc/options.php:2002
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1529 |
msgid "Upload an image to display."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: inc/options.php:1593
|
1533 |
msgid "Image Link URL"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: inc/options.php:1594 inc/options.php:2008
|
1537 |
msgid "Add the URL the picture will link to, ex: http://example.com."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: inc/options.php:1611
|
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:1616
|
1547 |
msgid "Light Box"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: inc/options.php:1617
|
1551 |
msgid "Choose to display light box once click."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: inc/options.php:1635
|
1555 |
msgid "Image Frame Shortcode"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: inc/options.php:1649
|
1559 |
+
msgid "Image Left"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: inc/options.php:1650 inc/options.php:1656
|
1563 |
+
msgid "."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: inc/options.php:1655
|
1567 |
+
msgid "Image Right"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: inc/options.php:1672
|
1571 |
+
msgid "Image Compare Shortcode"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: inc/options.php:1691
|
1575 |
msgid "Set color fo list icon."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: inc/options.php:1695
|
1579 |
msgid "Icon Boxed"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: inc/options.php:1696
|
1583 |
msgid "Choose to set icon boxed."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: inc/options.php:1704
|
1587 |
msgid "Set background color for list icon."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: inc/options.php:1708
|
1591 |
msgid "Boxed Shape"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: inc/options.php:1709
|
1595 |
msgid "Choose boxed shape for list icon."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: inc/options.php:1712
|
1599 |
msgid "Circle"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: inc/options.php:1716
|
1603 |
msgid "Item Border"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: inc/options.php:1717
|
1607 |
msgid "Choose to display item border for list."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: inc/options.php:1725
|
1611 |
msgid "Item Size"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: inc/options.php:1726
|
1615 |
msgid "Set text font size for item."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: inc/options.php:1743
|
1619 |
msgid "List items"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: inc/options.php:1748
|
1623 |
msgid "List Shortcode"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: inc/options.php:1763 inc/options.php:2396
|
1627 |
+
msgid "Text"
|
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:1789
|
1643 |
msgid "Modal Anchor Text"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: inc/options.php:1790
|
1647 |
msgid "Insert anchor text for the modal."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: inc/options.php:1795
|
1651 |
msgid "Modal Heading"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: inc/options.php:1796
|
1655 |
msgid "Insert heading text for the modal."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: inc/options.php:1800
|
1659 |
msgid "Size Of Modal"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: inc/options.php:1801
|
1663 |
msgid "Select the modal window size."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: inc/options.php:1804
|
1667 |
msgid "Middle"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: inc/options.php:1811
|
1671 |
msgid "Show Footer"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: inc/options.php:1812
|
1675 |
msgid "Choose to show the modal footer with close button."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: inc/options.php:1814
|
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:1822
|
1691 |
msgid "Add your content to be displayed in modal."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: inc/options.php:1838
|
1695 |
msgid "Modal Shortcode"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: inc/options.php:1852
|
|
|
|
|
|
|
|
|
1699 |
msgid "Select a menu"
|
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:1890
|
1719 |
+
msgid "Content that will trigger the popover."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: inc/options.php:1897
|
1723 |
+
msgid "Contents Inside Popover"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: inc/options.php:1898
|
1727 |
+
msgid "Text to be displayed inside the popover."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: inc/options.php:1903
|
1731 |
+
msgid "Popover Trigger Method"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: inc/options.php:1904
|
1735 |
+
msgid "Choose mouse action to trigger popover."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: inc/options.php:1906 inc/options.php:3032
|
1739 |
+
msgid "Click"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: inc/options.php:1907 inc/options.php:3031
|
1743 |
+
msgid "Hover"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: inc/options.php:1912
|
1747 |
+
msgid "Popover Position"
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: inc/options.php:1913
|
1751 |
+
msgid "Choose the display position of the popover."
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: inc/options.php:1915 inc/options.php:2155 inc/options.php:3020
|
1755 |
+
msgid "Top"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: inc/options.php:1916 inc/options.php:2156 inc/options.php:3021
|
1759 |
+
msgid "Bottom"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: inc/options.php:1936
|
1763 |
+
msgid "Popover Shortcode"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: inc/options.php:1952
|
1767 |
msgid "Choose to display info below or beside the image."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: inc/options.php:1954
|
1771 |
+
msgid "below"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: inc/options.php:1955
|
1775 |
+
msgid "beside"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: inc/options.php:1961 inc/options.php:3134
|
1779 |
msgid "Name"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: inc/options.php:1962
|
1783 |
msgid "Insert the name of the person."
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: inc/options.php:1968
|
1787 |
msgid "Insert the title of the person"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: inc/options.php:1984
|
1791 |
msgid "Image Overlay Color"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: inc/options.php:1985
|
1795 |
msgid "Select a hover color to show over the image as an overlay."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: inc/options.php:1990
|
1799 |
msgid "Image Overlay Opacity"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: inc/options.php:1991
|
1803 |
msgid "Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: inc/options.php:1996
|
1807 |
msgid "Profile Description"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: inc/options.php:1997
|
1811 |
msgid "Insert profile description."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: inc/options.php:2001
|
1815 |
msgid "Picture"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: inc/options.php:2007
|
1819 |
msgid "Picture Link URL"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: inc/options.php:2013
|
1823 |
msgid "Picture Border Size"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: inc/options.php:2014
|
1827 |
msgid "In pixels (px), ex: 1px. Leave blank for theme option selection."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: inc/options.php:2018
|
1831 |
msgid "Picture Border Color"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: inc/options.php:2019
|
1835 |
msgid ""
|
1836 |
"Controls the picture's border color. Leave blank for theme option selection."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: inc/options.php:2024
|
1840 |
msgid "Picture Border Radius"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: inc/options.php:2025
|
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:2030
|
1850 |
msgid "Social Icon Box Radius"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: inc/options.php:2031
|
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:2036
|
1860 |
msgid "Social Icon Custom Colors"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: inc/options.php:2037
|
1864 |
msgid ""
|
1865 |
"Controls the Icon's border color. Leave blank for theme option selection."
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: inc/options.php:2041
|
1869 |
msgid "Icon1"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: inc/options.php:2048
|
1873 |
msgid "Link1 "
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: inc/options.php:2049
|
1877 |
msgid "The Icon1 Link "
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: inc/options.php:2053
|
1881 |
msgid "Icon2"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: inc/options.php:2060
|
1885 |
msgid "Link2 "
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: inc/options.php:2061
|
1889 |
msgid "The Icon2 Link "
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: inc/options.php:2065
|
1893 |
msgid "Icon3"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: inc/options.php:2072
|
1897 |
msgid "Link3 "
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: inc/options.php:2073
|
1901 |
msgid "The Icon3 Link "
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: inc/options.php:2077
|
1905 |
msgid "Icon4"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: inc/options.php:2084
|
1909 |
msgid "Link4"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: inc/options.php:2085
|
1913 |
msgid "The Icon4 Link "
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: inc/options.php:2089
|
1917 |
msgid "Icon5"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: inc/options.php:2096
|
1921 |
msgid "Link5"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: inc/options.php:2097
|
1925 |
msgid "The Icon5 Link "
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: inc/options.php:2113
|
1929 |
msgid "Person Shortcode"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: inc/options.php:2128
|
1933 |
+
msgid "Select style for promo box."
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: inc/options.php:2130
|
1937 |
+
msgid "normal"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: inc/options.php:2131
|
1941 |
+
msgid "boxed"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: inc/options.php:2138
|
1945 |
+
msgid "Set color for highlight border of promo box."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: inc/options.php:2144
|
1949 |
+
msgid "Set width for highlight border of promo box."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: inc/options.php:2149
|
1953 |
+
msgid "Border Position"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: inc/options.php:2151
|
1957 |
+
msgid "Choose position for highlight border of promo box."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: inc/options.php:2164
|
1961 |
+
msgid "Set background color for promo box."
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: inc/options.php:2177
|
1965 |
+
msgid "Inser text for button of promo box."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: inc/options.php:2182
|
1969 |
+
msgid "Button Link URL"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: inc/options.php:2183
|
1973 |
+
msgid "Inser link for button of promo box, eg: http://example.com."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: inc/options.php:2195
|
1977 |
+
msgid "Insert content for promo box."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: inc/options.php:2211
|
1981 |
+
msgid "Promo Box Shortcode"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: inc/options.php:2227 inc/options.php:2389
|
1985 |
+
msgid "Percent"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: inc/options.php:2228
|
1989 |
+
msgid "From 1 to 100."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: inc/options.php:2236
|
1993 |
+
msgid "Insert title for piechart. It need to be short."
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: inc/options.php:2242
|
1997 |
+
msgid "Size"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: inc/options.php:2243
|
2001 |
+
msgid "Set size for piechart."
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: inc/options.php:2250
|
2005 |
+
msgid "Set font size for piechart title."
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: inc/options.php:2255
|
2009 |
+
msgid "Filled Color"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: inc/options.php:2256
|
2013 |
+
msgid "Set color for filled area in piechart."
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: inc/options.php:2261
|
2017 |
+
msgid "Unfilled Color"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: inc/options.php:2262
|
2021 |
+
msgid "Set color for unfilled area in piechart."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: inc/options.php:2275
|
2025 |
+
msgid "Piechart Shortcode"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: inc/options.php:2291
|
2029 |
+
msgid "Insert title for panel."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: inc/options.php:2294
|
2033 |
+
msgid "Panel content."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: inc/options.php:2296
|
2037 |
+
msgid "Panel Content"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: inc/options.php:2297
|
2041 |
+
msgid "Insert content for panel."
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: inc/options.php:2305
|
2045 |
+
msgid "Set color for panel title."
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: inc/options.php:2311
|
2049 |
+
msgid "Set color for panel border."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: inc/options.php:2317
|
2053 |
+
msgid "Title Background Color"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: inc/options.php:2318
|
2057 |
+
msgid "Set background color for panel title."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: inc/options.php:2344
|
2061 |
+
msgid "Panel Shortcode"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: inc/options.php:2359 inc/options.php:2363
|
2065 |
+
msgid "Striped"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: inc/options.php:2360
|
2069 |
+
msgid "Choose to get the filled area striped."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: inc/options.php:2362
|
2073 |
+
msgid "None Striped"
|
2074 |
+
msgstr ""
|
2075 |
+
|
2076 |
+
#: inc/options.php:2364
|
2077 |
+
msgid "Striped Animated"
|
2078 |
+
msgstr ""
|
2079 |
+
|
2080 |
+
#: inc/options.php:2371
|
2081 |
msgid "Choose to set the progress bar as rounded."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: inc/options.php:2373
|
2085 |
msgid "On"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: inc/options.php:2374
|
2089 |
msgid "Off"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: inc/options.php:2380
|
2093 |
msgid "Display Number"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: inc/options.php:2381
|
2097 |
msgid "Choose to diplay number for progress bar."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: inc/options.php:2390
|
2101 |
msgid "Set percentage for progress bar. 0~100."
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: inc/options.php:2397
|
2105 |
msgid "Insert text for progress bar."
|
2106 |
msgstr ""
|
2107 |
|
2137 |
msgid "Progress Shortcode"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: inc/options.php:2466
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2141 |
msgid "Set alignment for pullquote."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: inc/options.php:2476
|
2145 |
msgid "Insert content for pullquote."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: inc/options.php:2493
|
2149 |
msgid "Pullquote Shortcode"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: inc/options.php:2509
|
|
|
|
|
|
|
|
|
2153 |
msgid "The text to store within the QR code. Any text or URL is available."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: inc/options.php:2514
|
2157 |
msgid "Alternative text"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: inc/options.php:2515
|
2161 |
msgid "Set image alt for QR code."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: inc/options.php:2520
|
2165 |
msgid "Size in pixel"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: inc/options.php:2521
|
2169 |
msgid "Image width and height."
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: inc/options.php:2526
|
2173 |
msgid "QRCode clickable?"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: inc/options.php:2527
|
2177 |
msgid "Choose to make this QR code clickable."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: inc/options.php:2536
|
2181 |
msgid "Foreground Color"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: inc/options.php:2537
|
2185 |
msgid "Set foreground Color for QR code."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: inc/options.php:2543
|
2189 |
msgid "Set background Color for QR code."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: inc/options.php:2547
|
2193 |
msgid "QR Code Shortcode"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: inc/options.php:2561
|
|
|
|
|
|
|
|
|
2197 |
msgid "Cite"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: inc/options.php:2562
|
2201 |
msgid "Author name for quote."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: inc/options.php:2567
|
2205 |
msgid "Cite Link"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: inc/options.php:2568
|
2209 |
msgid "Insert Url for the quote author. Leave empty to disable hyperlink."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: inc/options.php:2574
|
2213 |
msgid "Insert content for the quote."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: inc/options.php:2590
|
2217 |
msgid "Quote Shortcode"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: inc/options.php:2605 inc/options.php:2618
|
2221 |
+
msgid "Slider"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: inc/options.php:2634
|
2225 |
msgid "Feed URL"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: inc/options.php:2635
|
2229 |
msgid "Url of RSS Feed."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: inc/options.php:2640
|
2233 |
msgid "Number to Display"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: inc/options.php:2641
|
2237 |
msgid "Number of items to show."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: inc/options.php:2657
|
2241 |
msgid "RSS Feed Shortcode"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: inc/options.php:2672
|
2245 |
+
msgid "Title "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:2721
|
2277 |
+
msgid "Icon Link URL"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: inc/options.php:2722
|
2281 |
+
msgid "Add the icon's url eg: http://example.com."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: inc/options.php:2738
|
2285 |
+
msgid "Social Shortcode"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: inc/options.php:2754
|
2289 |
msgid "Set background for section. Leave blank for transparent."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: inc/options.php:2761
|
2293 |
msgid "Upload an image to display in the background."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: inc/options.php:2765
|
2297 |
msgid "Background Repeat"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: inc/options.php:2766
|
2301 |
msgid "Choose repeat style for the background image."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: inc/options.php:2769
|
2305 |
+
msgid "repeat"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: inc/options.php:2770
|
2309 |
+
msgid "repeat-x"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: inc/options.php:2771
|
2313 |
+
msgid "repeat-y"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: inc/options.php:2772
|
2317 |
+
msgid "no-repeat"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: inc/options.php:2773
|
2321 |
+
msgid "inherit"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: inc/options.php:2779 inc/options.php:2816
|
2325 |
msgid "Background Position"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: inc/options.php:2780
|
2329 |
msgid "Choose the postion of the background image."
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: inc/options.php:2783
|
2333 |
+
msgid "top left"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: inc/options.php:2784
|
2337 |
+
msgid "top center"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: inc/options.php:2785
|
2341 |
+
msgid "top right"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: inc/options.php:2786
|
2345 |
+
msgid "center left"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: inc/options.php:2787
|
2349 |
+
msgid "center center"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: inc/options.php:2788
|
2353 |
+
msgid "center right"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: inc/options.php:2789
|
2357 |
+
msgid "bottom left"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: inc/options.php:2790
|
2361 |
+
msgid "bottom center"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: inc/options.php:2791
|
2365 |
+
msgid "bottom right"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: inc/options.php:2796
|
2369 |
msgid "Background Parallax"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: inc/options.php:2797
|
2373 |
msgid "Choose how the background image scrolls and responds."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: inc/options.php:2812
|
2377 |
msgid "Set border color for section."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: inc/options.php:2817
|
2381 |
msgid "Select border style for section"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: inc/options.php:2821
|
2385 |
msgid "Hidden"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: inc/options.php:2824
|
2389 |
msgid "Solid"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: inc/options.php:2825
|
2393 |
msgid "Double"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: inc/options.php:2826
|
2397 |
msgid "Groove"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: inc/options.php:2827
|
2401 |
msgid "Ridge"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: inc/options.php:2828
|
2405 |
msgid "Inset"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: inc/options.php:2829
|
2409 |
msgid "Outset"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: inc/options.php:2830
|
2413 |
msgid "Initial"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: inc/options.php:2831
|
2417 |
+
msgid "Inherit"
|
2418 |
+
msgstr ""
|
2419 |
+
|
2420 |
+
#: inc/options.php:2839
|
2421 |
msgid "Padding Top"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: inc/options.php:2845
|
2425 |
msgid "Padding Bottom"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: inc/options.php:2851
|
2429 |
msgid "Padding Left"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: inc/options.php:2857
|
2433 |
msgid "Padding Right"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: inc/options.php:2862
|
2437 |
msgid "Contents in Container ?"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: inc/options.php:2863
|
2441 |
msgid "Put the content in container."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: inc/options.php:2869
|
2445 |
msgid "Section content."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: inc/options.php:2871
|
2449 |
msgid "Section Content"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: inc/options.php:2872
|
2453 |
msgid "Insert content for section."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: inc/options.php:2878
|
2457 |
msgid "Top Separator"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: inc/options.php:2881 inc/options.php:2901
|
2461 |
+
msgid "none"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: inc/options.php:2882 inc/options.php:2902
|
2465 |
+
msgid "triangle"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: inc/options.php:2883
|
2469 |
+
msgid "doublediagonal"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: inc/options.php:2884 inc/options.php:2903
|
2473 |
+
msgid "halfcircle"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: inc/options.php:2885 inc/options.php:2904
|
2477 |
+
msgid "bigtriangle"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: inc/options.php:2886 inc/options.php:2905
|
2481 |
+
msgid "bighalfcircle"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: inc/options.php:2887 inc/options.php:2906
|
2485 |
+
msgid "curl"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: inc/options.php:2888 inc/options.php:2907
|
2489 |
+
msgid "multitriangles"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: inc/options.php:2889
|
2493 |
+
msgid "roundedsplit"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: inc/options.php:2890 inc/options.php:2910
|
2497 |
+
msgid "boxes"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: inc/options.php:2891 inc/options.php:2911
|
2501 |
+
msgid "zigzag"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: inc/options.php:2892
|
2505 |
+
msgid "clouds"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: inc/options.php:2898
|
2509 |
msgid "Bottom Separator"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: inc/options.php:2908
|
2513 |
+
msgid "roundedcorners"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: inc/options.php:2909
|
2517 |
+
msgid "foldedcorner"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: inc/options.php:2912
|
2521 |
+
msgid "stamp"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: inc/options.php:2918
|
2525 |
msgid "Full Height"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: inc/options.php:2919
|
2529 |
msgid "Choose to set the section height same as browser window."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: inc/options.php:2936
|
2533 |
msgid "Section Shortcode"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: inc/options.php:2950
|
2537 |
+
msgid "Time"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: inc/options.php:2951
|
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:2956
|
2547 |
+
msgid "Days of Week"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: inc/options.php:2957
|
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:2962
|
2559 |
+
msgid "Days of Month"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: inc/options.php:2963
|
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:2968
|
2571 |
+
msgid "Months"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: inc/options.php:2969
|
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:2974
|
2582 |
+
msgid "Years"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: inc/options.php:2975
|
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:2993
|
2593 |
+
msgid "Insert scheduled content."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: inc/options.php:2997
|
2597 |
+
msgid "Scheduled Shortcode"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: inc/options.php:3012
|
2601 |
+
msgid "Tooltip Text"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: inc/options.php:3013
|
2605 |
+
msgid "Insert the text that displays in the tooltip"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: inc/options.php:3017
|
2609 |
+
msgid "Tooltip Position"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: inc/options.php:3018
|
2613 |
+
msgid "Choose the display position."
|
2614 |
+
msgstr ""
|
2615 |
+
|
2616 |
+
#: inc/options.php:3028
|
2617 |
+
msgid "Tooltip Trigger"
|
2618 |
+
msgstr ""
|
2619 |
+
|
2620 |
+
#: inc/options.php:3029
|
2621 |
+
msgid "Choose action to trigger the tooltip."
|
2622 |
+
msgstr ""
|
2623 |
+
|
2624 |
+
#: inc/options.php:3039
|
2625 |
+
msgid "Insert the text that will activate the tooltip hover"
|
2626 |
+
msgstr ""
|
2627 |
+
|
2628 |
+
#: inc/options.php:3055
|
2629 |
+
msgid "Tooltip Shortcode"
|
2630 |
+
msgstr ""
|
2631 |
+
|
2632 |
+
#: inc/options.php:3069
|
2633 |
msgid "Select tabs' style."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: inc/options.php:3072
|
2637 |
msgid "Simple Style Justified"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: inc/options.php:3074
|
2641 |
msgid "Button Style Justified"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: inc/options.php:3075
|
2645 |
msgid "Normal Style"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: inc/options.php:3076
|
2649 |
msgid "Normal Style Justified"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: inc/options.php:3077
|
2653 |
msgid "Vertical Style"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: inc/options.php:3078
|
2657 |
msgid "Vertical Style Right"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: inc/options.php:3084
|
2661 |
msgid "Set color for tab item's title."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: inc/options.php:3101
|
2665 |
msgid "Tab Items"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: inc/options.php:3102
|
2669 |
msgid "Insert tab items."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: inc/options.php:3108
|
2673 |
msgid "Tab Shortcode"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: inc/options.php:3124
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2677 |
msgid "Style "
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: inc/options.php:3125
|
2681 |
msgid "Select testimonial's style"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: inc/options.php:3128
|
2685 |
msgid "Box"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: inc/options.php:3135
|
2689 |
msgid "Name of testimonial's author."
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: inc/options.php:3140
|
2693 |
msgid "Byline"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: inc/options.php:3141
|
2697 |
msgid "Byline of testimonial's author."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: inc/options.php:3145
|
2701 |
msgid "Avatar"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: inc/options.php:3146
|
2705 |
msgid "Avatar of testimonial's author."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: inc/options.php:3152
|
2709 |
msgid "Alignment"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: inc/options.php:3153
|
2713 |
msgid "Select the content's alignment."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: inc/options.php:3160 inc/options.php:3162
|
2717 |
msgid "Testimonial Content"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: inc/options.php:3163
|
2721 |
msgid "Insert content for testimonial."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: inc/options.php:3179
|
2725 |
msgid "Testimonial Shortcode"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: inc/options.php:3194
|
|
|
|
|
|
|
|
|
2729 |
msgid "Columns"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: inc/options.php:3195
|
2733 |
msgid "Number of items."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: inc/options.php:3198
|
2737 |
msgid "2 columns"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: inc/options.php:3199
|
2741 |
msgid "3 columns"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: inc/options.php:3200
|
2745 |
msgid "4 columns"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: inc/options.php:3201
|
2749 |
msgid "5 columns"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: inc/options.php:3220
|
2753 |
msgid "Timeline Items"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: inc/options.php:3221
|
2757 |
msgid "Insert timeline items."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: inc/options.php:3226
|
2761 |
msgid "Timeline Shortcode"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: inc/options.php:3242
|
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:3244
|
2771 |
+
msgid "Private"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: inc/options.php:3245
|
2775 |
+
msgid "Members"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: inc/options.php:3246
|
2779 |
+
msgid "Guests"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: inc/options.php:3253
|
2783 |
+
msgid "Set content for targeted users."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: inc/options.php:3258
|
2787 |
+
msgid "Alternative Content"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: inc/options.php:3259
|
2791 |
+
msgid "Set content for other users."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: inc/options.php:3263
|
2795 |
+
msgid "Targeted Shortcode"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: inc/options.php:3278
|
2799 |
msgid "Mp4 Video Url"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: inc/options.php:3279
|
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:3285
|
2809 |
msgid "Ogv Video Url"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: inc/options.php:3286
|
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:3292
|
2819 |
msgid "Webm Video Url"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: inc/options.php:3293
|
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:3299
|
2829 |
msgid "Poster"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: inc/options.php:3300
|
2833 |
msgid "Display a image when browser does not support HTML5 format."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: inc/options.php:3366
|
2837 |
msgid "Video Shortcode"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: inc/options.php:3383
|
2841 |
+
msgid "Video URL"
|
|
|
|
|
|
|
|
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: inc/options.php:3449
|
2845 |
msgid "Vimeo Shortcode"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: inc/options.php:3463
|
|
|
|
|
|
|
|
|
2849 |
msgid "Youtube URL"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: inc/options.php:3529
|
2853 |
msgid "Youtube Shortcode"
|
2854 |
msgstr ""
|
2855 |
|
|
|
|
|
|
|
|
|
2856 |
#: shortcodes/class-countdowns.php:59
|
2857 |
msgid "Days"
|
2858 |
msgstr ""
|
readme.txt
CHANGED
@@ -68,6 +68,12 @@ Activate plugin at "Plugins" administration page.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
= 1.5.0 - 21/04/2016 =
|
72 |
* Feature - Improved shortcode generator appearance
|
73 |
* Feature - Added shortcode preview function
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.5.2 - 04/05/2016 =
|
72 |
+
* Feature - Added widget area shortcode
|
73 |
+
|
74 |
+
= 1.5.1 - 27/04/2016 =
|
75 |
+
* Fixed color picker issues
|
76 |
+
|
77 |
= 1.5.0 - 21/04/2016 =
|
78 |
* Feature - Improved shortcode generator appearance
|
79 |
* Feature - Added shortcode preview function
|
shortcodes/class-heading.php
CHANGED
@@ -41,9 +41,20 @@ class Magee_Title {
|
|
41 |
extract( $defaults );
|
42 |
self::$args = $defaults;
|
43 |
|
|
|
44 |
$uniqid = uniqid('heading-');
|
45 |
$class .=' '.$uniqid;
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
$html = '<style type="text/css">
|
48 |
|
49 |
.'.$uniqid.'.magee-heading{
|
41 |
extract( $defaults );
|
42 |
self::$args = $defaults;
|
43 |
|
44 |
+
|
45 |
$uniqid = uniqid('heading-');
|
46 |
$class .=' '.$uniqid;
|
47 |
+
if(is_numeric($font_size))
|
48 |
+
$font_size = $font_size.'px';
|
49 |
+
if(is_numeric($font_weight))
|
50 |
+
$font_weight = $font_weight.'px';
|
51 |
+
if(is_numeric($margin_top))
|
52 |
+
$margin_top = $margin_top.'px';
|
53 |
+
if(is_numeric($margin_bottom))
|
54 |
+
$margin_bottom = $margin_bottom.'px';
|
55 |
+
if(is_numeric($border_width))
|
56 |
+
$border_width = $border_width.'px';
|
57 |
+
|
58 |
$html = '<style type="text/css">
|
59 |
|
60 |
.'.$uniqid.'.magee-heading{
|
shortcodes/class-section.php
CHANGED
@@ -361,12 +361,22 @@ class Magee_Section {
|
|
361 |
$styles = sprintf( '<style type="text/css" scoped="scoped">%s </style>',$css_style);
|
362 |
$content = do_shortcode( Magee_Core::fix_shortcodes($content));
|
363 |
$html = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
if ( $full_height == 'yes'):
|
365 |
-
$html .= sprintf('%s<section class="section magee-section %s fullheight verticalmiddle" id="%s"><div class="section-content"><div class="%s">%s</div></div
|
366 |
else:
|
367 |
-
$html .= sprintf('%s<section class="section magee-section %s" id="%s"
|
368 |
|
369 |
endif;
|
|
|
370 |
return $html;
|
371 |
}
|
372 |
|
361 |
$styles = sprintf( '<style type="text/css" scoped="scoped">%s </style>',$css_style);
|
362 |
$content = do_shortcode( Magee_Core::fix_shortcodes($content));
|
363 |
$html = '';
|
364 |
+
|
365 |
+
if( $top_separator == 'triangle' ){
|
366 |
+
if ( $full_height == 'yes'):
|
367 |
+
$html .= sprintf('%s<section class="section magee-section %s fullheight verticalmiddle" id="%s">%s<div class="section-content"><div class="%s">%s</div></div> %s</section>',$styles,esc_attr($class),esc_attr($id),$top_separator_html,$container,$content,$bottom_separator_html);
|
368 |
+
else:
|
369 |
+
$html .= sprintf('%s<section class="section magee-section %s" id="%s">%s <div class="section-content"><div class="%s">%s</div></div> %s</section>',$styles,esc_attr($class),esc_attr($id),$top_separator_html,$container,$content,$bottom_separator_html);
|
370 |
+
endif;
|
371 |
+
|
372 |
+
}else{
|
373 |
if ( $full_height == 'yes'):
|
374 |
+
$html .= sprintf('%s<section class="section magee-section %s fullheight verticalmiddle" id="%s"><div class="section-content"><div class="%s">%s</div></div> %s %s</section>',$styles,esc_attr($class),esc_attr($id),$container,$content,$top_separator_html,$bottom_separator_html);
|
375 |
else:
|
376 |
+
$html .= sprintf('%s<section class="section magee-section %s" id="%s"> <div class="section-content"><div class="%s">%s</div></div>%s %s</section>',$styles,esc_attr($class),esc_attr($id),$container,$content,$top_separator_html,$bottom_separator_html);
|
377 |
|
378 |
endif;
|
379 |
+
}
|
380 |
return $html;
|
381 |
}
|
382 |
|
shortcodes/class-widget-area.php
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Magee_Widget_Area {
|
3 |
+
|
4 |
+
|
5 |
+
public static $args;
|
6 |
+
private $id;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Initiate the shortcode
|
10 |
+
*/
|
11 |
+
public function __construct() {
|
12 |
+
|
13 |
+
add_shortcode( 'ms_widget_area', array( $this,'render' ) );
|
14 |
+
|
15 |
+
}
|
16 |
+
/**
|
17 |
+
* Render the shortcode
|
18 |
+
* @param array $args Shortcode paramters
|
19 |
+
* @param string $content Content between shortcode
|
20 |
+
* @return string HTML output
|
21 |
+
*/
|
22 |
+
function render( $args, $content = '') {
|
23 |
+
|
24 |
+
$defaults = Magee_Core::set_shortcode_defaults(
|
25 |
+
|
26 |
+
array(
|
27 |
+
'class' => '',
|
28 |
+
'id' => '',
|
29 |
+
'background_color' => '',
|
30 |
+
'name' => '',
|
31 |
+
'padding' => ''
|
32 |
+
),$args
|
33 |
+
);
|
34 |
+
extract( $defaults );
|
35 |
+
self::$args = $defaults;
|
36 |
+
if(is_numeric($padding)){
|
37 |
+
$padding = $padding.'px';
|
38 |
+
}
|
39 |
+
$html = '';
|
40 |
+
$uniqid = uniqid('widget');
|
41 |
+
if(isset($background_color) || isset($padding))
|
42 |
+
$html .= '<style type="text/css" scoped="scoped">.'.$uniqid.'{background-color:'.esc_attr($background_color).';padding:'.esc_attr($padding).';}</style>' ;
|
43 |
+
|
44 |
+
$html .= '<div class="'.esc_attr($class).' '.$uniqid.'" id="'.esc_attr($id).'">';
|
45 |
+
ob_start();
|
46 |
+
if ( function_exists( 'dynamic_sidebar' ) &&
|
47 |
+
dynamic_sidebar( $name )
|
48 |
+
) {
|
49 |
+
// All is good, dynamic_sidebar() already called the rendering
|
50 |
+
}
|
51 |
+
$html .= ob_get_clean();
|
52 |
+
$html .= '<div class="magee-widget-area">'.do_shortcode( $content ).'</div></div>';
|
53 |
+
return $html;
|
54 |
+
}
|
55 |
+
|
56 |
+
}
|
57 |
+
|
58 |
+
new Magee_Widget_Area();
|