WP Mobile Menu - Version 2.7.4.3

Version Description

  • New! - Autoclose opened submenus when opening a new one
  • New! - Include plugin version in the bottom of the admin options
  • Fix! - Color after left icon
  • Fix! - Replace padding-top by margin-top on mobmenu-content
  • Fix! - Fix menu panel positions when showing the admin bar
  • Fix! - Fix One page navigation and smooth scroll
  • Fix! - Removed outline focus
  • Fix! - Fix submenus JS issue Replace jQuery by $
  • Fix! - Fix CSS overlay issues
  • Fix! - Include version in the JS/CSS enqueue
  • Fix! - Added version to CSS and JS files
  • Fix! - Fixed bug in the admin menu options when using translations
  • Fix! - Include FAQS in readme.txt
Download this release

Release Info

Developer takanakui
Plugin Icon 128x128 WP Mobile Menu
Version 2.7.4.3
Comparing to
See all releases

Code changes from version 2.7.4.2 to 2.7.4.3

includes/class-wp-mobile-menu-core.php CHANGED
@@ -24,12 +24,23 @@ class WP_Mobile_Menu_Core
24
  {
25
  $titan = TitanFramework::getInstance( 'mobmenu' );
26
  $display_type = $titan->getOption( 'menu_display_type' );
 
 
 
 
 
 
 
 
 
 
27
  if ( '' === $display_type || !$display_type ) {
28
  $display_type = 'slideout-over';
29
  }
30
  if ( true === $display_type || '1' === $display_type ) {
31
  $display_type = 'slideout-push';
32
  }
 
33
  switch ( $display_type ) {
34
  case 'slideout-push':
35
  $menu_display_type = 'mob-menu-slideout';
@@ -66,8 +77,6 @@ class WP_Mobile_Menu_Core
66
  public function frontend_enqueue_scripts()
67
  {
68
  global $mm_fs ;
69
- // Filters.
70
- add_filter( 'wp_head', array( $this, 'load_dynamic_css_style' ) );
71
  // Enqueue the common free scripts.
72
  $this->frontend_free_enqueue_scripts();
73
  }
@@ -99,18 +108,6 @@ class WP_Mobile_Menu_Core
99
  );
100
  }
101
 
102
- /**
103
- * Load dynamic css.
104
- */
105
- public function load_dynamic_css_style()
106
- {
107
- $titan = TitanFramework::getInstance( 'mobmenu' );
108
- echo '<style id="dynamic-mobmenu-inline-css">' ;
109
- include_once 'dynamic-style.php';
110
- echo $titan->getOption( 'custom_css' ) ;
111
- echo '</style>' ;
112
- }
113
-
114
  /**
115
  * Dismiss the WP Mobile Menu Pro Banner.
116
  */
@@ -192,6 +189,7 @@ class WP_Mobile_Menu_Core
192
  $submenu_open_icon_font = $titan->getOption( 'submenu_open_icon_font' );
193
  $submenu_close_icon_font = $titan->getOption( 'submenu_close_icon_font' );
194
  $mm_open_cart_menu = '';
 
195
  $menu_display_type = 'mob-menu-slideout';
196
  $output = '';
197
  $output .= '<div class="mobmenu-overlay"></div>';
@@ -492,18 +490,17 @@ class WP_Mobile_Menu_Core
492
  $current_menu = '';
493
  }
494
 
495
- if ( '' === $current_menu && has_nav_menu( $menu . '-wp-mobile-menu' ) ) {
496
  $current_menu = $menu . '-wp-mobile-menu';
497
  $menu_param = 'theme_location';
 
 
498
  }
499
 
500
  $output = '';
501
  // Only build the menu it there is a menu assigned to it.
502
 
503
  if ( '' !== $current_menu ) {
504
- if ( $menu . '-wp-mobile-menu' !== $current_menu ) {
505
- $menu_param = 'menu';
506
- }
507
  // Display the menu.
508
  $output = wp_nav_menu( array(
509
  $menu_param => $current_menu,
@@ -530,23 +527,6 @@ class WP_Mobile_Menu_Core
530
  return $output;
531
  }
532
 
533
- /**
534
- * Register Strings for translation.
535
- */
536
- public function register_strings_for_translation()
537
- {
538
-
539
- if ( function_exists( 'pll_register_string' ) ) {
540
- $current_options = get_option( 'mobmenu_options' );
541
- $admin_options = unserialize( $current_options );
542
- pll_register_string( 'mobile-menu', $admin_options['mm_woo_cart_shop_link_text'] );
543
- pll_register_string( 'mobile-menu', $admin_options['mm_woo_cart_no_items_text'] );
544
- pll_register_string( 'mobile-menu', $admin_options['mm_woo_cart_header_text'] );
545
- pll_register_string( 'mobile-menu', $admin_options['mm_woo_filter_button_text'] );
546
- }
547
-
548
- }
549
-
550
  /**
551
  * Register the Mobile Menus.
552
  */
@@ -806,10 +786,10 @@ class WP_Mobile_Menu_Core
806
  'plus-1',
807
  'minus',
808
  'minus-1',
809
- 'icon-plus-2',
810
  'minus-2',
811
  'down-open',
812
- 'icon-up-open-big',
813
  'down-dir',
814
  'left-dir',
815
  'right-dir',
24
  {
25
  $titan = TitanFramework::getInstance( 'mobmenu' );
26
  $display_type = $titan->getOption( 'menu_display_type' );
27
+ $lpanel_elements = $titan->getOption( 'left_menu_content_position' );
28
+ $rpanel_elements = $titan->getOption( 'right_menu_content_position' );
29
+ // If the User profile is being used at the Top of the left panel.
30
+ if ( 'user-profile' === $lpanel_elements[0] ) {
31
+ $classes[] = 'left-mobmenu-user-profile';
32
+ }
33
+ // If the User profile is being used at the Top of the right panel.
34
+ if ( 'user-profile' === $rpanel_elements[0] ) {
35
+ $classes[] = 'right-mobmenu-user-profile';
36
+ }
37
  if ( '' === $display_type || !$display_type ) {
38
  $display_type = 'slideout-over';
39
  }
40
  if ( true === $display_type || '1' === $display_type ) {
41
  $display_type = 'slideout-push';
42
  }
43
+ // Add the class of the animation display type.
44
  switch ( $display_type ) {
45
  case 'slideout-push':
46
  $menu_display_type = 'mob-menu-slideout';
77
  public function frontend_enqueue_scripts()
78
  {
79
  global $mm_fs ;
 
 
80
  // Enqueue the common free scripts.
81
  $this->frontend_free_enqueue_scripts();
82
  }
108
  );
109
  }
110
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  /**
112
  * Dismiss the WP Mobile Menu Pro Banner.
113
  */
189
  $submenu_open_icon_font = $titan->getOption( 'submenu_open_icon_font' );
190
  $submenu_close_icon_font = $titan->getOption( 'submenu_close_icon_font' );
191
  $mm_open_cart_menu = '';
192
+ $logo_content = '';
193
  $menu_display_type = 'mob-menu-slideout';
194
  $output = '';
195
  $output .= '<div class="mobmenu-overlay"></div>';
490
  $current_menu = '';
491
  }
492
 
493
+ if ( has_nav_menu( $menu . '-wp-mobile-menu' ) ) {
494
  $current_menu = $menu . '-wp-mobile-menu';
495
  $menu_param = 'theme_location';
496
+ } else {
497
+ $menu_param = 'menu';
498
  }
499
 
500
  $output = '';
501
  // Only build the menu it there is a menu assigned to it.
502
 
503
  if ( '' !== $current_menu ) {
 
 
 
504
  // Display the menu.
505
  $output = wp_nav_menu( array(
506
  $menu_param => $current_menu,
527
  return $output;
528
  }
529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
  /**
531
  * Register the Mobile Menus.
532
  */
786
  'plus-1',
787
  'minus',
788
  'minus-1',
789
+ 'plus-2',
790
  'minus-2',
791
  'down-open',
792
+ 'up-open-big',
793
  'down-dir',
794
  'left-dir',
795
  'right-dir',
includes/class-wp-mobile-menu-options.php CHANGED
@@ -85,8 +85,9 @@ class WP_Mobile_Menu_Options
85
  $titan = TitanFramework::getInstance( 'mobmenu' );
86
  // Create my admin options panel.
87
  $panel = $titan->createAdminPanel( array(
88
- 'name' => __( 'Mobile Menu Options', 'mobile-menu' ),
89
- 'icon' => 'dashicons-smartphone',
 
90
  ) );
91
  // Only proceed if we are in the plugin page.
92
 
@@ -259,6 +260,16 @@ class WP_Mobile_Menu_Options
259
  'options' => $display_type,
260
  'default' => '',
261
  ) );
 
 
 
 
 
 
 
 
 
 
262
  // Menu Border Style.
263
  $general_tab->createOption( array(
264
  'name' => __( 'Menu Items Border Size', 'mobile-menu' ),
@@ -286,7 +297,7 @@ class WP_Mobile_Menu_Options
286
  'desc' => __( 'Enter the Close Icon Font Size', 'mobile-menu' ),
287
  'default' => '30',
288
  'max' => '100',
289
- 'min' => '0',
290
  'unit' => 'px',
291
  ) );
292
  // Submenu Open Icon Font.
@@ -489,6 +500,16 @@ class WP_Mobile_Menu_Options
489
  'name' => __( 'Header options', 'mobile-menu' ),
490
  'type' => 'heading',
491
  ) );
 
 
 
 
 
 
 
 
 
 
492
  // Header Height.
493
  $header_tab->createOption( array(
494
  'name' => __( 'Header Height', 'mobile-menu' ),
@@ -796,7 +817,7 @@ class WP_Mobile_Menu_Options
796
  'desc' => __( 'Enter the Left Menu Panel Width', 'mobile-menu' ),
797
  'default' => '270',
798
  'max' => '1000',
799
- 'min' => '0',
800
  'unit' => 'px',
801
  ) );
802
  // Left Menu Panel Width.
@@ -1058,7 +1079,7 @@ class WP_Mobile_Menu_Options
1058
  'desc' => __( 'Enter the Right Menu Panel Width', 'mobile-menu' ),
1059
  'default' => '270',
1060
  'max' => '450',
1061
- 'min' => '0',
1062
  'unit' => 'px',
1063
  ) );
1064
  // Right Menu Panel Width.
@@ -1210,7 +1231,7 @@ class WP_Mobile_Menu_Options
1210
  'type' => 'color',
1211
  'desc' => '',
1212
  'alpha' => true,
1213
- 'default' => '#fff',
1214
  ) );
1215
  // Left Panel Sub-menu Background Color.
1216
  $colors_tab->createOption( array(
@@ -1230,6 +1251,15 @@ class WP_Mobile_Menu_Options
1230
  'alpha' => true,
1231
  'default' => '#fff',
1232
  ) );
 
 
 
 
 
 
 
 
 
1233
  // Header Right Menu Section.
1234
  $colors_tab->createOption( array(
1235
  'name' => __( 'Right Menu Colors', 'mobile-menu' ),
@@ -1287,7 +1317,7 @@ class WP_Mobile_Menu_Options
1287
  'type' => 'color',
1288
  'desc' => '',
1289
  'alpha' => true,
1290
- 'default' => '#fff',
1291
  ) );
1292
  // Right Panel Sub-menu Background Color.
1293
  $colors_tab->createOption( array(
@@ -1307,6 +1337,15 @@ class WP_Mobile_Menu_Options
1307
  'alpha' => true,
1308
  'default' => '#fff',
1309
  ) );
 
 
 
 
 
 
 
 
 
1310
  // 3rd Level Right Menu Section.
1311
  $colors_tab->createOption( array(
1312
  'name' => __( '3rd Level Menu Colors', 'mobile-menu' ),
85
  $titan = TitanFramework::getInstance( 'mobmenu' );
86
  // Create my admin options panel.
87
  $panel = $titan->createAdminPanel( array(
88
+ 'name' => 'Mobile Menu Options',
89
+ 'title' => __( 'Mobile Menu Options', 'mobile-menu' ),
90
+ 'icon' => 'dashicons-smartphone',
91
  ) );
92
  // Only proceed if we are in the plugin page.
93
 
260
  'options' => $display_type,
261
  'default' => '',
262
  ) );
263
+ // Automatically Close Sub Menus.
264
+ $general_tab->createOption( array(
265
+ 'name' => __( 'Automatically Close Submenus', 'mobile-menu' ),
266
+ 'id' => 'autoclose_submenus',
267
+ 'type' => 'enable',
268
+ 'desc' => __( 'When you open a submenu it automatically closes the other submenus that are open.', 'mobile-menu' ),
269
+ 'default' => false,
270
+ 'enabled' => __( 'On', 'mobile-menu' ),
271
+ 'disabled' => __( 'Off', 'mobile-menu' ),
272
+ ) );
273
  // Menu Border Style.
274
  $general_tab->createOption( array(
275
  'name' => __( 'Menu Items Border Size', 'mobile-menu' ),
297
  'desc' => __( 'Enter the Close Icon Font Size', 'mobile-menu' ),
298
  'default' => '30',
299
  'max' => '100',
300
+ 'min' => '5',
301
  'unit' => 'px',
302
  ) );
303
  // Submenu Open Icon Font.
500
  'name' => __( 'Header options', 'mobile-menu' ),
501
  'type' => 'heading',
502
  ) );
503
+ // Header Shadow.
504
+ $header_tab->createOption( array(
505
+ 'name' => __( 'Header Shadow.', 'mobile-menu' ),
506
+ 'id' => 'header_shadow',
507
+ 'type' => 'enable',
508
+ 'default' => false,
509
+ 'desc' => __( 'Choose if you want to enable the header shadow at the bottom of the header.', 'mobile-menu' ),
510
+ 'enabled' => __( 'Yes', 'mobile-menu' ),
511
+ 'disabled' => __( 'No', 'mobile-menu' ),
512
+ ) );
513
  // Header Height.
514
  $header_tab->createOption( array(
515
  'name' => __( 'Header Height', 'mobile-menu' ),
817
  'desc' => __( 'Enter the Left Menu Panel Width', 'mobile-menu' ),
818
  'default' => '270',
819
  'max' => '1000',
820
+ 'min' => '50',
821
  'unit' => 'px',
822
  ) );
823
  // Left Menu Panel Width.
1079
  'desc' => __( 'Enter the Right Menu Panel Width', 'mobile-menu' ),
1080
  'default' => '270',
1081
  'max' => '450',
1082
+ 'min' => '50',
1083
  'unit' => 'px',
1084
  ) );
1085
  // Right Menu Panel Width.
1231
  'type' => 'color',
1232
  'desc' => '',
1233
  'alpha' => true,
1234
+ 'default' => '#444',
1235
  ) );
1236
  // Left Panel Sub-menu Background Color.
1237
  $colors_tab->createOption( array(
1251
  'alpha' => true,
1252
  'default' => '#fff',
1253
  ) );
1254
+ // Left Panel Cancel Button Color.
1255
+ $colors_tab->createOption( array(
1256
+ 'name' => __( 'Cancel Button Color', 'mobile-menu' ),
1257
+ 'id' => 'left_panel_cancel_button_color',
1258
+ 'type' => 'color',
1259
+ 'desc' => '',
1260
+ 'alpha' => true,
1261
+ 'default' => '#fff',
1262
+ ) );
1263
  // Header Right Menu Section.
1264
  $colors_tab->createOption( array(
1265
  'name' => __( 'Right Menu Colors', 'mobile-menu' ),
1317
  'type' => 'color',
1318
  'desc' => '',
1319
  'alpha' => true,
1320
+ 'default' => '#444',
1321
  ) );
1322
  // Right Panel Sub-menu Background Color.
1323
  $colors_tab->createOption( array(
1337
  'alpha' => true,
1338
  'default' => '#fff',
1339
  ) );
1340
+ // Right Panel Cancel Button Color.
1341
+ $colors_tab->createOption( array(
1342
+ 'name' => __( 'Cancel Button Color', 'mobile-menu' ),
1343
+ 'id' => 'right_panel_cancel_button_color',
1344
+ 'type' => 'color',
1345
+ 'desc' => '',
1346
+ 'alpha' => true,
1347
+ 'default' => '#fff',
1348
+ ) );
1349
  // 3rd Level Right Menu Section.
1350
  $colors_tab->createOption( array(
1351
  'name' => __( '3rd Level Menu Colors', 'mobile-menu' ),
includes/class-wp-mobile-menu-walker-nav-menu.php CHANGED
@@ -9,8 +9,8 @@ class WP_Mobile_Menu_Walker_Nav_Menu extends Walker_Nav_Menu
9
  public $footer_li_class ;
10
  public function __construct( $myarg, $aditional_footer_li_class )
11
  {
 
12
  $this->menu_position = $myarg;
13
- $this->footer_li_class = $aditional_footer_li_class;
14
  }
15
 
16
  public function start_el(
@@ -22,7 +22,6 @@ class WP_Mobile_Menu_Walker_Nav_Menu extends Walker_Nav_Menu
22
  )
23
  {
24
  global $mm_fs ;
25
- $titan = TitanFramework::getInstance( 'mobmenu' );
26
  $icon_class = '';
27
  $mobile_icon = '';
28
  $menu_position = '';
@@ -30,7 +29,6 @@ class WP_Mobile_Menu_Walker_Nav_Menu extends Walker_Nav_Menu
30
  $class_names = '';
31
  $value = '';
32
  $classes = ( empty($item->classes) ? array() : (array) $item->classes );
33
- array_push( $classes, $this->footer_li_class );
34
  $classes[] = 'menu-item-' . $item->ID;
35
  $class_names = join( ' ', apply_filters(
36
  'nav_menu_css_class',
@@ -85,15 +83,9 @@ class WP_Mobile_Menu_Walker_Nav_Menu extends Walker_Nav_Menu
85
 
86
  public function start_lvl( &$output, $depth = 0, $args = array() )
87
  {
88
- $titan = TitanFramework::getInstance( 'mobmenu' );
89
-
90
- if ( $titan->getOption( 'sliding_submenus' ) ) {
91
- $output .= "\n" . '<ul class="sub-menu" data-menu-level="' . ($depth + 1) . '"><li class="sliding-back-menu" role="button"><i class="mob-icon-left-open mob-back-button"></i>' . __( "Back", "mobile-menu" ) . '</li>' . "\n";
92
- } else {
93
- $indent = str_repeat( "\t", $depth );
94
- $output .= "\n{$indent}<ul class=\"sub-menu \">\n";
95
- }
96
-
97
  }
98
 
99
  }
9
  public $footer_li_class ;
10
  public function __construct( $myarg, $aditional_footer_li_class )
11
  {
12
+ global $mm_fs ;
13
  $this->menu_position = $myarg;
 
14
  }
15
 
16
  public function start_el(
22
  )
23
  {
24
  global $mm_fs ;
 
25
  $icon_class = '';
26
  $mobile_icon = '';
27
  $menu_position = '';
29
  $class_names = '';
30
  $value = '';
31
  $classes = ( empty($item->classes) ? array() : (array) $item->classes );
 
32
  $classes[] = 'menu-item-' . $item->ID;
33
  $class_names = join( ' ', apply_filters(
34
  'nav_menu_css_class',
83
 
84
  public function start_lvl( &$output, $depth = 0, $args = array() )
85
  {
86
+ global $mm_fs ;
87
+ $indent = str_repeat( "\t", $depth );
88
+ $output .= "\n{$indent}<ul class=\"sub-menu \">\n";
 
 
 
 
 
 
89
  }
90
 
91
  }
includes/css/mobmenu.css CHANGED
@@ -133,7 +133,7 @@
133
  -o-transform: translateX(100%);
134
  transform: translateX(100%);
135
  }
136
- body.admin-bar .mobmenu {
137
  top: 32px;
138
  }
139
  #wpadminbar {
@@ -165,6 +165,7 @@ body.admin-bar .mobmenu {
165
  #mobmenuleft li > ul {
166
  display:none;
167
  left: 15px;
 
168
  }
169
  .mob-expand-submenu {
170
  position: relative;
@@ -178,17 +179,12 @@ body.admin-bar .mobmenu {
178
  #mobmenuright li > ul {
179
  display:none;
180
  left: 15px;
 
181
  }
182
  .rightmbottom, .rightmtop {
183
  padding-left: 10px;
184
  padding-right: 10px;
185
  }
186
- .mobmenu-content {
187
- z-index: 1;
188
- height: 100%;
189
- overflow: auto;
190
- padding-top: 10px;
191
- }
192
  .mobmenu-panel {
193
  -webkit-transition: -webkit-transform .5s;
194
  -moz-transition: -moz-transform .5s;
@@ -228,7 +224,6 @@ body.admin-bar .mobmenu {
228
  right: 0;
229
  }
230
  .mob-menu-header-holder {
231
- width: 100%;
232
  font-weight:bold;
233
  position:fixed;
234
  top:0px;
@@ -252,8 +247,12 @@ body.admin-bar .mobmenu {
252
  font-size: 30px;
253
  }
254
  .mobmenu-content {
255
- padding-top: 40px;
256
  padding-bottom: 120px;
 
 
 
 
257
  }
258
  .mobmenu-parent-link .mob-expand-submenu {
259
  cursor: pointer;
@@ -273,8 +272,7 @@ body.admin-bar .mobmenu {
273
  }
274
  .mob-expand-submenu .mob-icon-up-open {
275
  display: none;
276
- }
277
-
278
  .show-nav-left .mobmenu-overlay, .show-nav-right .mobmenu-overlay {
279
  width: 100%;
280
  height: 100%;
133
  -o-transform: translateX(100%);
134
  transform: translateX(100%);
135
  }
136
+ body.admin-bar .mobmenu, body.admin-bar .mobmenu-panel {
137
  top: 32px;
138
  }
139
  #wpadminbar {
165
  #mobmenuleft li > ul {
166
  display:none;
167
  left: 15px;
168
+ padding-left: 0px;
169
  }
170
  .mob-expand-submenu {
171
  position: relative;
179
  #mobmenuright li > ul {
180
  display:none;
181
  left: 15px;
182
+ padding-left: 0px;
183
  }
184
  .rightmbottom, .rightmtop {
185
  padding-left: 10px;
186
  padding-right: 10px;
187
  }
 
 
 
 
 
 
188
  .mobmenu-panel {
189
  -webkit-transition: -webkit-transform .5s;
190
  -moz-transition: -moz-transform .5s;
224
  right: 0;
225
  }
226
  .mob-menu-header-holder {
 
227
  font-weight:bold;
228
  position:fixed;
229
  top:0px;
247
  font-size: 30px;
248
  }
249
  .mobmenu-content {
250
+ margin-top: 45px;
251
  padding-bottom: 120px;
252
+ z-index: 1;
253
+ height: 100%;
254
+ overflow: auto;
255
+ padding-top: 10px;
256
  }
257
  .mobmenu-parent-link .mob-expand-submenu {
258
  cursor: pointer;
272
  }
273
  .mob-expand-submenu .mob-icon-up-open {
274
  display: none;
275
+ }
 
276
  .show-nav-left .mobmenu-overlay, .show-nav-right .mobmenu-overlay {
277
  width: 100%;
278
  height: 100%;
includes/dynamic-style.php CHANGED
@@ -20,6 +20,7 @@ $right_menu_width_translate = '100%';
20
  $left_menu_width_translate = '100%';
21
  $left_menu_height_translate = '100%';
22
  $woo_menu_width_translate = '100%';
 
23
  if ( is_admin_bar_showing() ) {
24
  $mobmenu_admin_bar = 32;
25
  }
@@ -56,6 +57,10 @@ $default_elements .= '.hide';
56
  if ( $titan->getOption( 'enabled_naked_header' ) ) {
57
  $header_bg_color = 'transparent';
58
  $wrap_padding_top = '0';
 
 
 
 
59
  } else {
60
  $header_bg_color = $titan->getOption( 'header_bg_color' );
61
  $wrap_padding_top = $titan->getOption( 'header_height' );
@@ -91,9 +96,29 @@ $total_header_height = $header_height;
91
  $banner_height = 0;
92
  $header_margin_top = '0px';
93
  $header_banner_padding_top = 0;
 
94
  // Left Menu Background Image.
95
  $left_menu_bg_image = $titan->getOption( 'left_menu_bg_image' );
96
- $left_menu_bg_image_size = $titan->getOption( 'left_menu_bg_image_size' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  $header_margin_left = '0';
98
  $header_margin_right = '0';
99
  $header_text_position = 'absolute';
@@ -138,6 +163,79 @@ if ( $titan->getOption( 'logo_img_retina' ) ) {
138
  <?php
139
  }
140
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  @media only screen and (min-width:<?php
142
  echo $trigger_res + 1 ;
143
  ?>px){
@@ -164,102 +262,28 @@ if ( 0 < $border_menu_size ) {
164
 
165
  if ( '' !== $titan->getOption( 'hide_elements' ) ) {
166
  ?>
167
- /* Our css Custom Options values */
168
- @media only screen and (max-width:<?php
169
  echo $trigger_res ;
170
  ?>px){
171
- <?php
172
  echo $titan->getOption( 'hide_elements' ) ;
173
  ?> {
174
- display:none !important;
175
- }
176
  }
 
177
 
178
- <?php
179
  }
180
 
181
  ?>
182
-
183
- @media only screen and (max-width:<?php
184
  echo $trigger_res ;
185
  ?>px) {
186
  <?php
187
  ?>
188
- @media screen and ( min-width: 782px ){
189
- #mobmenu-footer li:hover {
190
- background-color: <?php
191
- echo $titan->getOption( 'footer_bg_color_hover' ) ;
192
- ?>;
193
- }
194
- #mobmenu-footer li:hover i {
195
- color: <?php
196
- echo $titan->getOption( 'footer_icon_color_hover' ) ;
197
- ?>;
198
- }
199
- }
200
- @media screen and ( min-width: 782px ){
201
- body.admin-bar .mobmenu {
202
- top: 32px!important;
203
- }
204
- <?php
205
- if ( is_admin_bar_showing() ) {
206
- $admin_bar_height = '32';
207
- }
208
- ?>
209
- .mobmenu-search-holder {
210
- top: <?php
211
- echo $total_header_height + $admin_bar_height ;
212
- ?>px!important;
213
- }
214
- }
215
- @media screen and ( max-width: 782px ){
216
- body.admin-bar .mobmenu {
217
- top: 46px!important;
218
- }
219
 
220
- body.admin-bar .mob-menu-header-banner {
221
- top: <?php
222
- echo $header_banner_padding_top ;
223
- ?>px!important;
224
- }
225
- <?php
226
-
227
- if ( is_admin_bar_showing() ) {
228
- $admin_bar_height = '46';
229
- ?>
230
- .mobmenu-search-holder {
231
- top: <?php
232
- echo $total_header_height + $admin_bar_height ;
233
- ?>px!important;
234
- }
235
- .mob-menu-slideout .mobmenu-search-holder {
236
- top: <?php
237
- echo $header_height ;
238
- ?>px!important;
239
- }
240
- <?php
241
- }
242
-
243
- ?>
244
- }
245
-
246
- .mobmenu-search img {
247
- width: <?php
248
- echo esc_attr( $titan->getOption( 'search_icon_font_size' ) ) ;
249
- ?>px;
250
- margin-top : <?php
251
- echo $titan->getOption( 'search_icon_top_margin' ) ;
252
- ?>px;
253
- }
254
- .mobmenu-cart img {
255
- width: <?php
256
- echo $titan->getOption( 'mm_woo_menu_icon_font_size' ) ;
257
- ?>px;
258
- margin-top : <?php
259
- echo $titan->getOption( 'cart_icon_top_margin' ) ;
260
- ?>px;
261
-
262
- }
263
  .mobmenur-container i {
264
  color: <?php
265
  echo $titan->getOption( 'right_menu_icon_color' ) ;
@@ -287,7 +311,7 @@ echo $titan->getOption( 'header_height' ) ;
287
  echo $titan->getOption( 'submenu_icon_font_size' ) ;
288
  ?>px;
289
  }
290
- #mobmenuleft li a , #mobmenuleft li a:visited, .mobmenu-left-panel .mob-cancel-button, .mobmenu-content h2, .mobmenu-content h3, .show-nav-left .mob-menu-copyright, .show-nav-left .mob-expand-submenu i {
291
  color: <?php
292
  echo $titan->getOption( 'left_panel_text_color' ) ;
293
  ?>;
@@ -298,49 +322,50 @@ echo $titan->getOption( 'left_panel_text_color' ) ;
298
  echo $titan->getOption( 'close_icon_font_size' ) ;
299
  ?>px!important;
300
  }
301
- <?php
302
-
303
- if ( 'enabled' === $titan->getOption( 'enable_over_effects' ) ) {
304
- ?>
305
  /* 3rd Level Left Menu Items Background color on Hover*/
306
  .mobmenu-content #mobmenuleft .sub-menu .sub-menu li a:hover {
307
  color: <?php
308
- echo $titan->getOption( 'left_panel_3rd_menu_text_color_hover' ) ;
309
- ?>;
310
  }
311
  /* 3rd Level Left Menu Items Background color on Hover*/
312
  .mobmenu-content #mobmenuleft .sub-menu .sub-menu li:hover {
313
  background-color: <?php
314
- echo $titan->getOption( 'left_panel_3rd_menu_bg_color_hover' ) ;
315
- ?>;
316
  }
317
  .mobmenu-content #mobmenuleft li:hover, .mobmenu-content #mobmenuright li:hover {
318
  background-color: <?php
319
- echo $titan->getOption( 'left_panel_hover_bgcolor' ) ;
320
- ?>;
321
  }
322
  .mobmenu-content #mobmenuright li:hover {
323
  background-color: <?php
324
- echo $titan->getOption( 'right_panel_hover_bgcolor' ) ;
325
- ?> ;
326
  }
327
  /* 3rd Level Right Menu Items Background color on Hover*/
328
  .mobmenu-content #mobmenuright .sub-menu .sub-menu li:hover {
329
  background-color: <?php
330
- echo $titan->getOption( 'right_panel_3rd_menu_bg_color_hover' ) ;
331
- ?>;
332
  }
333
  /* 3rd Level Right Menu Items Background color on Hover*/
334
  .mobmenu-content #mobmenuright .sub-menu .sub-menu li a:hover {
335
  color: <?php
336
- echo $titan->getOption( 'right_panel_3rd_menu_text_color_hover' ) ;
337
- ?>;
338
  }
339
-
340
 
341
  <?php
 
 
 
 
 
 
342
  }
343
-
344
  ?>
345
  .mobmenu-content #mobmenuleft .sub-menu {
346
  background-color: <?php
@@ -438,7 +463,7 @@ echo $titan->getOption( 'right_panel_submenu_text_color' ) ;
438
  echo $titan->getOption( 'left_panel_hover_text_color' ) ;
439
  ?>;
440
  }
441
- #mobmenuright li a , #mobmenuright li a:visited, .show-nav-right .mob-menu-copyright, .show-nav-right .mob-expand-submenu i, .mobmenu-right-panel .mob-cancel-button {
442
  color: <?php
443
  echo $titan->getOption( 'right_panel_text_color' ) ;
444
  ?> ;
@@ -505,12 +530,15 @@ echo $header_margin_right ;
505
  ?>;
506
  height: <?php
507
  echo $header_height ;
508
- ?>px ;
509
  <?php
510
  echo $header_logo_float ;
511
- ?>;
512
  }
513
  .mob-menu-header-holder {
 
 
 
514
  background-color: <?php
515
  echo $header_bg_color ;
516
  ?> ;
@@ -541,11 +569,15 @@ if ( '' !== $titan->getOption( 'right_menu_bg_gradient' ) ) {
541
  $right_panel_bg_color = 'background-color:' . $titan->getOption( 'right_panel_bg_color' ) . ';';
542
  }
543
 
 
 
 
 
544
 
545
- if ( '' !== $titan->getOption( 'mm_woo_menu_bg_gradient' ) ) {
546
  $cart_panel_bg_color = $titan->getOption( 'mm_woo_menu_bg_gradient' ) . ';';
547
  } else {
548
- $cart_panel_bg_color = 'background-color:' . $titan->getOption( 'mm_woo_menu_panel_bg_color' ) . ';';
549
  }
550
 
551
  ?>
@@ -657,14 +689,7 @@ echo $left_menu_height_translate ;
657
  .mob-menu-slideout-over.show-nav-left .mobmenu-left-panel {
658
  overflow: hidden;
659
  }
660
- .mob-menu-slideout-over .mobmenu-cart-panel.show-panel {
661
- -webkit-transform: translateX( 0 );
662
- -moz-transform: translateX( 0 );
663
- -ms-transform: translateX( 0 );
664
- -o-transform: translateX(0 );
665
- transform: translateX( 0 );
666
- overflow: hidden;
667
- }
668
  /* Hides everything pushed outside of it */
669
  .mob-menu-slideout .mobmenu-panel, .mob-menu-slideout-over .mobmenu-panel, .mob-menu-slideout .mobmenu-cart-panel, .mob-menu-slideout-over .mobmenu-cart-panel {
670
  position: fixed;
@@ -701,7 +726,7 @@ echo $total_header_height + $admin_bar_height ;
701
  /* Mobile Menu Frontend CSS Style*/
702
  html, body {
703
  overflow-x: hidden;
704
- -webkit-overflow-scrolling: touch;
705
  overflow-y: scroll;
706
  }
707
  .mobmenu-left-panel li a, .leftmbottom, .leftmtop{
@@ -715,7 +740,7 @@ echo $titan->getOption( 'left_menu_content_padding' ) ;
715
  .mobmenu-content li > .sub-menu li {
716
  padding-left: calc(<?php
717
  echo $titan->getOption( 'left_menu_content_padding' ) ;
718
- ?>*2%);
719
  }
720
 
721
  .mobmenu-right-panel li, .rightmbottom, .rightmtop{
@@ -726,15 +751,6 @@ echo $titan->getOption( 'right_menu_content_padding' ) ;
726
  echo $titan->getOption( 'right_menu_content_padding' ) ;
727
  ?>%;
728
  }
729
- .mobmenu-cart-panel .mobmenu-content {
730
- padding-left: <?php
731
- echo $titan->getOption( 'mm_woo_menu_content_padding' ) ;
732
- ?>%!important;
733
- padding-right: <?php
734
- echo $titan->getOption( 'mm_woo_menu_content_padding' ) ;
735
- ?>%!important;
736
- position: absolute;
737
- }
738
  .mobmenul-container i {
739
  line-height: <?php
740
  echo $titan->getOption( 'left_icon_font_size' ) ;
@@ -749,16 +765,14 @@ echo $titan->getOption( 'left_icon_font_size' ) ;
749
  line-height: <?php
750
  echo $titan->getOption( 'left_icon_font_size' ) ;
751
  ?>px;
 
 
 
752
  }
753
  .mobmenu-left-panel .mobmenu-display-name {
754
  color: <?php
755
  echo $titan->getOption( 'left_panel_text_color' ) ;
756
- ?>!important;
757
- }
758
- .mobmenu-right-panel .mobmenu-display-name {
759
- color: <?php
760
- echo $titan->getOption( 'right_panel_text_color' ) ;
761
- ?>!important;
762
  }
763
  .right-menu-icon-text {
764
  float: right;
@@ -767,64 +781,6 @@ echo $titan->getOption( 'right_icon_font_size' ) ;
767
  ?>px;
768
  color: <?php
769
  echo $titan->getOption( 'header_text_before_icon' ) ;
770
- ?>;
771
- }
772
- .mobmenur-container i.mob-search-button, .mobmenul-container i.mob-search-button {
773
- color: <?php
774
- echo $titan->getOption( 'search_icon_color' ) ;
775
- ?>;
776
- font-size: <?php
777
- echo $titan->getOption( 'search_icon_font_size' ) ;
778
- ?>px;
779
- }
780
- .mobmenur-container i.mob-cart-button, .mobmenul-container i.mob-cart-button {
781
- color: <?php
782
- echo $titan->getOption( 'mm_woo_menu_icon_color' ) ;
783
- ?>;
784
- font-size: <?php
785
- echo $titan->getOption( 'mm_woo_menu_icon_font_size' ) ;
786
- ?>px;
787
- }
788
- .mob-menu-search-form button[type=submit] i, .mob-menu-search-form button[type=submit] span{
789
- color: <?php
790
- echo $titan->getOption( 'search_form_submit_color' ) ;
791
- ?>;
792
- }
793
- .mob-menu-search-form input {
794
- background: transparent;
795
- color: <?php
796
- echo $titan->getOption( 'search_form_text_color' ) ;
797
- ?>;
798
- }
799
- .mob-menu-search-form input:focus {
800
- color: <?php
801
- echo $titan->getOption( 'search_form_text_color' ) ;
802
- ?>;
803
- }
804
- .mob-menu-search-form input[type=text]:focus {
805
- color: <?php
806
- echo $titan->getOption( 'search_form_text_color' ) ;
807
- ?>;
808
- background-color: transparent;
809
- }
810
- .mobmenu-search-holder {
811
- background-color: <?php
812
- echo $titan->getOption( 'search_form_bg_color' ) ;
813
- ?>;
814
- }
815
- .mob-menu-search-field::-webkit-input-placeholder {
816
- color: <?php
817
- echo $titan->getOption( 'search_form_placeholder_color' ) ;
818
- ?>;
819
- }
820
- .mob-menu-search-field::-moz-placeholder {
821
- color: <?php
822
- echo $titan->getOption( 'search_form_placeholder_color' ) ;
823
- ?>;
824
- }
825
- .mob-menu-search-field:-ms-input-placeholder {
826
- color: <?php
827
- echo $titan->getOption( 'search_form_placeholder_color' ) ;
828
  ?>;
829
  }
830
  .mobmenur-container i {
@@ -836,16 +792,12 @@ echo $titan->getOption( 'right_icon_font_size' ) ;
836
  ?>px;
837
  float: right;
838
  }
839
- .mobmenu-content .current_page_item {
840
- border-left-color: <?php
841
- echo $titan->getOption( 'highlight_current_page' ) ;
842
- ?>;
843
- }
844
  <?php
845
  echo $default_elements ;
846
  ?> {
847
  display: none!important;
848
  }
 
849
  .mob-standard-logo {
850
  display: inline-block;
851
  <?php
@@ -857,5 +809,36 @@ echo $logo_height ;
857
  echo $logo_height ;
858
  ?>
859
  }
 
 
 
 
 
860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
861
  }
20
  $left_menu_width_translate = '100%';
21
  $left_menu_height_translate = '100%';
22
  $woo_menu_width_translate = '100%';
23
+ $woo_menu_width = 0;
24
  if ( is_admin_bar_showing() ) {
25
  $mobmenu_admin_bar = 32;
26
  }
57
  if ( $titan->getOption( 'enabled_naked_header' ) ) {
58
  $header_bg_color = 'transparent';
59
  $wrap_padding_top = '0';
60
+ // If we are only using one of the menus without any logo.
61
+ if ( $titan->getOption( 'disabled_logo_text' ) && (!$titan->getOption( 'enable_left_menu' ) || !$titan->getOption( 'enable_right_menu' )) ) {
62
+ $header_width = '10%';
63
+ }
64
  } else {
65
  $header_bg_color = $titan->getOption( 'header_bg_color' );
66
  $wrap_padding_top = $titan->getOption( 'header_height' );
96
  $banner_height = 0;
97
  $header_margin_top = '0px';
98
  $header_banner_padding_top = 0;
99
+ $header_width = '100%';
100
  // Left Menu Background Image.
101
  $left_menu_bg_image = $titan->getOption( 'left_menu_bg_image' );
102
+ $left_menu_bg_image_size = 'initial';
103
+ $cart_menu_icon_font_size = 0;
104
+ $cart_icon_top_margin = 0;
105
+ $woo_menu_panel_bg_color = 'initial';
106
+ $search_icon_font_size = 0;
107
+ if ( $titan->getOption( 'search_icon_font_size' ) ) {
108
+ $search_icon_font_size = $titan->getOption( 'search_icon_font_size' );
109
+ }
110
+ if ( $titan->getOption( 'woo_menu_panel_bg_color' ) ) {
111
+ $woo_menu_panel_bg_color = $titan->getOption( 'woo_menu_panel_bg_color' );
112
+ }
113
+ if ( $titan->getOption( 'left_menu_bg_image_size' ) ) {
114
+ $left_menu_bg_image_size = $titan->getOption( 'left_menu_bg_image_size' );
115
+ }
116
+ if ( $titan->getOption( 'mm_woo_menu_icon_font_size' ) ) {
117
+ $cart_menu_icon_font_size = $titan->getOption( 'mm_woo_menu_icon_font_size' );
118
+ }
119
+ if ( $titan->getOption( 'cart_icon_top_margin' ) ) {
120
+ $cart_icon_top_margin = $titan->getOption( 'cart_icon_top_margin' );
121
+ }
122
  $header_margin_left = '0';
123
  $header_margin_right = '0';
124
  $header_text_position = 'absolute';
163
  <?php
164
  }
165
  ?>
166
+
167
+ @media screen and ( min-width: 782px ){
168
+ body.admin-bar .mobmenu, body.admin-bar .mobmenu-panel {
169
+ top: 32px!important;
170
+ }
171
+ <?php
172
+ if ( is_admin_bar_showing() ) {
173
+ $admin_bar_height = '32';
174
+ }
175
+ ?>
176
+ .mobmenu-search-holder {
177
+ top: <?php
178
+ echo $total_header_height + $admin_bar_height ;
179
+ ?>px!important;
180
+ }
181
+ }
182
+
183
+ @media screen and ( max-width: 782px ){
184
+ body.admin-bar .mobmenu, body.admin-bar .mobmenu-panel {
185
+ top: 46px!important;
186
+ }
187
+
188
+ body.admin-bar .mob-menu-header-banner {
189
+ top: <?php
190
+ echo $header_banner_padding_top ;
191
+ ?>px!important;
192
+ }
193
+ <?php
194
+
195
+ if ( is_admin_bar_showing() ) {
196
+ $admin_bar_height = '46';
197
+ ?>
198
+ .mobmenu-search-holder {
199
+ top: <?php
200
+ echo $total_header_height + $admin_bar_height ;
201
+ ?>px!important;
202
+ }
203
+ .mob-menu-slideout .mobmenu-search-holder {
204
+ top: <?php
205
+ echo $header_height ;
206
+ ?>px!important;
207
+ }
208
+ <?php
209
+ }
210
+
211
+ ?>
212
+ }
213
+
214
+ @media screen and ( max-width: 479px ) {
215
+ .mob-menu-overlay .mobmenu-content {
216
+ padding-top: 5%;
217
+ }
218
+ }
219
+
220
+ @media screen and ( max-width: 782px ) {
221
+ .mob-menu-overlay .mobmenu-content {
222
+ padding-top: 10%;
223
+ }
224
+ }
225
+
226
+ @media screen and ( min-width: 782px ) {
227
+ #mobmenu-footer li:hover {
228
+ background-color: <?php
229
+ echo $titan->getOption( 'footer_bg_color_hover' ) ;
230
+ ?>;
231
+ }
232
+ #mobmenu-footer li:hover i {
233
+ color: <?php
234
+ echo $titan->getOption( 'footer_icon_color_hover' ) ;
235
+ ?>;
236
+ }
237
+ }
238
+
239
  @media only screen and (min-width:<?php
240
  echo $trigger_res + 1 ;
241
  ?>px){
262
 
263
  if ( '' !== $titan->getOption( 'hide_elements' ) ) {
264
  ?>
265
+ /* Our css Custom Options values */
266
+ @media only screen and (max-width:<?php
267
  echo $trigger_res ;
268
  ?>px){
269
+ <?php
270
  echo $titan->getOption( 'hide_elements' ) ;
271
  ?> {
272
+ display:none !important;
 
273
  }
274
+ }
275
 
276
+ <?php
277
  }
278
 
279
  ?>
280
+
281
+ @media only screen and (max-width:<?php
282
  echo $trigger_res ;
283
  ?>px) {
284
  <?php
285
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  .mobmenur-container i {
288
  color: <?php
289
  echo $titan->getOption( 'right_menu_icon_color' ) ;
311
  echo $titan->getOption( 'submenu_icon_font_size' ) ;
312
  ?>px;
313
  }
314
+ #mobmenuleft li a , #mobmenuleft li a:visited, .mobmenu-content h2, .mobmenu-content h3, .show-nav-left .mob-menu-copyright, .show-nav-left .mob-expand-submenu i {
315
  color: <?php
316
  echo $titan->getOption( 'left_panel_text_color' ) ;
317
  ?>;
322
  echo $titan->getOption( 'close_icon_font_size' ) ;
323
  ?>px!important;
324
  }
325
+
 
 
 
326
  /* 3rd Level Left Menu Items Background color on Hover*/
327
  .mobmenu-content #mobmenuleft .sub-menu .sub-menu li a:hover {
328
  color: <?php
329
+ echo $titan->getOption( 'left_panel_3rd_menu_text_color_hover' ) ;
330
+ ?>;
331
  }
332
  /* 3rd Level Left Menu Items Background color on Hover*/
333
  .mobmenu-content #mobmenuleft .sub-menu .sub-menu li:hover {
334
  background-color: <?php
335
+ echo $titan->getOption( 'left_panel_3rd_menu_bg_color_hover' ) ;
336
+ ?>;
337
  }
338
  .mobmenu-content #mobmenuleft li:hover, .mobmenu-content #mobmenuright li:hover {
339
  background-color: <?php
340
+ echo $titan->getOption( 'left_panel_hover_bgcolor' ) ;
341
+ ?>;
342
  }
343
  .mobmenu-content #mobmenuright li:hover {
344
  background-color: <?php
345
+ echo $titan->getOption( 'right_panel_hover_bgcolor' ) ;
346
+ ?> ;
347
  }
348
  /* 3rd Level Right Menu Items Background color on Hover*/
349
  .mobmenu-content #mobmenuright .sub-menu .sub-menu li:hover {
350
  background-color: <?php
351
+ echo $titan->getOption( 'right_panel_3rd_menu_bg_color_hover' ) ;
352
+ ?>;
353
  }
354
  /* 3rd Level Right Menu Items Background color on Hover*/
355
  .mobmenu-content #mobmenuright .sub-menu .sub-menu li a:hover {
356
  color: <?php
357
+ echo $titan->getOption( 'right_panel_3rd_menu_text_color_hover' ) ;
358
+ ?>;
359
  }
 
360
 
361
  <?php
362
+ if ( $titan->getOption( 'header_shadow' ) ) {
363
+ ?>
364
+ .mob-menu-header-holder {
365
+ box-shadow:0px 0px 8px 0px rgba(0,0,0,0.15);
366
+ }
367
+ <?php
368
  }
 
369
  ?>
370
  .mobmenu-content #mobmenuleft .sub-menu {
371
  background-color: <?php
463
  echo $titan->getOption( 'left_panel_hover_text_color' ) ;
464
  ?>;
465
  }
466
+ #mobmenuright li a , #mobmenuright li a:visited, .show-nav-right .mob-menu-copyright, .show-nav-right .mob-expand-submenu i {
467
  color: <?php
468
  echo $titan->getOption( 'right_panel_text_color' ) ;
469
  ?> ;
530
  ?>;
531
  height: <?php
532
  echo $header_height ;
533
+ ?>px;
534
  <?php
535
  echo $header_logo_float ;
536
+ ?>
537
  }
538
  .mob-menu-header-holder {
539
+ width: <?php
540
+ echo $header_width ;
541
+ ?> ;
542
  background-color: <?php
543
  echo $header_bg_color ;
544
  ?> ;
569
  $right_panel_bg_color = 'background-color:' . $titan->getOption( 'right_panel_bg_color' ) . ';';
570
  }
571
 
572
+ $mm_woo_menu_panel_bg_color = '#CCC';
573
+ if ( $titan->getOption( 'mm_woo_menu_panel_bg_color' ) ) {
574
+ $mm_woo_menu_panel_bg_color = $titan->getOption( 'mm_woo_menu_panel_bg_color' );
575
+ }
576
 
577
+ if ( $titan->getOption( 'mm_woo_menu_bg_gradient' ) ) {
578
  $cart_panel_bg_color = $titan->getOption( 'mm_woo_menu_bg_gradient' ) . ';';
579
  } else {
580
+ $cart_panel_bg_color = 'background-color:' . $mm_woo_menu_panel_bg_color . ';';
581
  }
582
 
583
  ?>
689
  .mob-menu-slideout-over.show-nav-left .mobmenu-left-panel {
690
  overflow: hidden;
691
  }
692
+
 
 
 
 
 
 
 
693
  /* Hides everything pushed outside of it */
694
  .mob-menu-slideout .mobmenu-panel, .mob-menu-slideout-over .mobmenu-panel, .mob-menu-slideout .mobmenu-cart-panel, .mob-menu-slideout-over .mobmenu-cart-panel {
695
  position: fixed;
726
  /* Mobile Menu Frontend CSS Style*/
727
  html, body {
728
  overflow-x: hidden;
729
+ -webkit-overflow-scrolling: auto;
730
  overflow-y: scroll;
731
  }
732
  .mobmenu-left-panel li a, .leftmbottom, .leftmtop{
740
  .mobmenu-content li > .sub-menu li {
741
  padding-left: calc(<?php
742
  echo $titan->getOption( 'left_menu_content_padding' ) ;
743
+ ?>*1%);
744
  }
745
 
746
  .mobmenu-right-panel li, .rightmbottom, .rightmtop{
751
  echo $titan->getOption( 'right_menu_content_padding' ) ;
752
  ?>%;
753
  }
 
 
 
 
 
 
 
 
 
754
  .mobmenul-container i {
755
  line-height: <?php
756
  echo $titan->getOption( 'left_icon_font_size' ) ;
765
  line-height: <?php
766
  echo $titan->getOption( 'left_icon_font_size' ) ;
767
  ?>px;
768
+ color: <?php
769
+ echo $titan->getOption( 'header_text_after_icon' ) ;
770
+ ?>;
771
  }
772
  .mobmenu-left-panel .mobmenu-display-name {
773
  color: <?php
774
  echo $titan->getOption( 'left_panel_text_color' ) ;
775
+ ?>;
 
 
 
 
 
776
  }
777
  .right-menu-icon-text {
778
  float: right;
781
  ?>px;
782
  color: <?php
783
  echo $titan->getOption( 'header_text_before_icon' ) ;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784
  ?>;
785
  }
786
  .mobmenur-container i {
792
  ?>px;
793
  float: right;
794
  }
 
 
 
 
 
795
  <?php
796
  echo $default_elements ;
797
  ?> {
798
  display: none!important;
799
  }
800
+
801
  .mob-standard-logo {
802
  display: inline-block;
803
  <?php
809
  echo $logo_height ;
810
  ?>
811
  }
812
+ .mobmenu-content #mobmenuleft > li > a:hover {
813
+ background-color: <?php
814
+ echo $titan->getOption( 'left_panel_hover_bgcolor' ) ;
815
+ ?>;
816
+ }
817
 
818
+ .mobmenu-content #mobmenuright > li > a:hover {
819
+ background-color: <?php
820
+ echo $titan->getOption( 'right_panel_hover_bgcolor' ) ;
821
+ ?>;
822
+ }
823
+ .mob-blocks-user-profile {
824
+ background-color: <?php
825
+ echo $titan->getOption( 'user_profile_bg_color' ) ;
826
+ ?>;
827
+ }
828
+ .mob-blocks-user-profile .mobmenu-display-name {
829
+ color: <?php
830
+ echo $titan->getOption( 'user_profile_text_color' ) ;
831
+ ?>;
832
+ }
833
+ .mobmenu-left-panel .mob-cancel-button {
834
+ color: <?php
835
+ echo $titan->getOption( 'left_panel_cancel_button_color' ) ;
836
+ ?>;
837
+ }
838
+ .mobmenu-right-panel .mob-cancel-button {
839
+ color: <?php
840
+ echo $titan->getOption( 'right_panel_cancel_button_color' ) ;
841
+ ?>;
842
+ }
843
+
844
  }
includes/js/mobmenu.js CHANGED
@@ -57,9 +57,9 @@
57
  }
58
 
59
  // Double Check the the menu display classes where added to the body.
60
- var menu_display_type = jQuery( '.mob-menu-header-holder' ).attr( 'data-menu-display' );
61
 
62
- if ( menu_display_type != '' && !jQuery( 'body' ).hasClass( menu_display_type ) ) {
63
  $( 'body' ).addClass( menu_display_type );
64
  }
65
 
@@ -70,14 +70,15 @@
70
  });
71
 
72
  }
73
- var submenu_open_icon = jQuery( '.mob-menu-header-holder' ).attr( 'data-open-icon' );
74
- var submenu_close_icon = jQuery( '.mob-menu-header-holder' ).attr( 'data-close-icon' );
75
 
76
  $( '.mobmenu-content .sub-menu' ).each( function(){
 
77
  $( this ).prev().append('<div class="mob-expand-submenu"><i class="mob-icon-' + submenu_open_icon + ' open-icon"></i><i class="mob-icon-' + submenu_close_icon + ' close-icon hide"></i></div>');
78
 
79
  if ( 0 < $( this ).parents( '.mobmenu-parent-link' ).length ) {
80
- $( this ).prev().prev().attr('href', '#');
81
  }
82
 
83
  });
@@ -91,10 +92,10 @@
91
  e.stopPropagation();
92
 
93
  });
94
- jQuery( document ).on( 'click', '.show-nav-left .mobmenu-push-wrap, .show-nav-left .mobmenu-overlay', function ( e ) {
95
 
96
  e.preventDefault();
97
- jQuery( '.mobmenu-left-bt' ).first().trigger( 'click' );
98
  e.stopPropagation();
99
 
100
  });
@@ -118,8 +119,8 @@
118
 
119
  e.preventDefault();
120
  mobmenuClosePanel( 'show-panel' );
121
- if ( jQuery('body').hasClass('mob-menu-sliding-menus') ) {
122
- jQuery( '.mobmenu-trigger-action .hamburger' ).toggleClass('is-active');
123
  }
124
 
125
  });
@@ -143,8 +144,8 @@
143
 
144
  setTimeout(function(){
145
  if ( $( 'body' ).hasClass('show-nav-left') ) {
146
- if ( jQuery('body').hasClass('mob-menu-sliding-menus') ) {
147
- jQuery( '.mobmenu-trigger-action .hamburger' ).toggleClass('is-active');
148
  }
149
  mobmenuClosePanel( targetPanel );
150
 
@@ -158,7 +159,7 @@
158
  });
159
 
160
 
161
- $('.mobmenu a[href*="#"]')
162
  // Remove links that don't actually link to anything
163
  .not('[href="#"]')
164
  .not('[href="#0"]')
@@ -169,59 +170,50 @@
169
  &&
170
  location.hostname == this.hostname
171
  &&
172
- $(this).parents('.mobmenu_content').length > 0
173
  ) {
174
  // Figure out element to scroll to
175
  var target = $(this.hash);
176
  target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
177
  // Does a scroll target exist?
178
  if (target.length) {
179
- // Only prevent default if animation is actually gonna happen
180
- event.preventDefault();
181
- event.stopPropagation();
182
- $( '.show-nav-left .mobmenu-left-bt').first().click();
183
- $( '.show-nav-right .mobmenu-right-bt').first().trigger( 'click' );
 
184
  $( 'html' ).css( 'overflow', '' );
185
 
186
- $('body').animate({
187
- scrollTop: target.offset().top
188
- }, 1000, function() {
189
- // Callback after animation
190
- // Must change focus!
191
- var $target = $(target);
192
- $target.focus();
193
- if ($target.is(":focus")) { // Checking if the target was focused
194
- return false;
195
- } else {
196
- $target.attr('tabindex','-1'); // Adding tabindex for elements not focusable
197
- $target.focus(); // Set focus again
198
- };
199
- });
200
  }
201
  }
202
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  });
204
 
205
- function mobmenuClosePanel( target ) {
206
- jQuery( '.' + target ).toggleClass( 'show-panel' );
207
- jQuery( 'html' ).removeClass( 'show-mobmenu-filter-panel' );
208
- jQuery( 'body' ).removeClass( 'show-nav-right' );
209
- jQuery( 'body' ).removeClass( 'show-nav-left' );
210
- jQuery( 'html' ).removeClass( 'mob-menu-no-scroll' );
211
-
212
- }
213
-
214
- function mobmenuOpenPanel( target ) {
215
- jQuery( '.mobmenu-content' ).scrollTop(0);
216
- jQuery( 'html' ).addClass( 'mob-menu-no-scroll' );
217
-
218
- if ( jQuery('.' + target ).hasClass( 'mobmenu-left-alignment' ) ) {
219
- jQuery('body').addClass('show-nav-left');
220
- }
221
- if ( jQuery('.' + target ).hasClass( 'mobmenu-right-alignment' ) ) {
222
- jQuery('body').addClass('show-nav-right');
223
- }
224
-
225
- jQuery('.' + target ).addClass( 'show-panel' );
226
 
227
- }
57
  }
58
 
59
  // Double Check the the menu display classes where added to the body.
60
+ var menu_display_type = $( '.mob-menu-header-holder' ).attr( 'data-menu-display' );
61
 
62
+ if ( menu_display_type != '' && !$( 'body' ).hasClass( menu_display_type ) ) {
63
  $( 'body' ).addClass( menu_display_type );
64
  }
65
 
70
  });
71
 
72
  }
73
+ var submenu_open_icon = $( '.mob-menu-header-holder' ).attr( 'data-open-icon' );
74
+ var submenu_close_icon = $( '.mob-menu-header-holder' ).attr( 'data-close-icon' );
75
 
76
  $( '.mobmenu-content .sub-menu' ).each( function(){
77
+
78
  $( this ).prev().append('<div class="mob-expand-submenu"><i class="mob-icon-' + submenu_open_icon + ' open-icon"></i><i class="mob-icon-' + submenu_close_icon + ' close-icon hide"></i></div>');
79
 
80
  if ( 0 < $( this ).parents( '.mobmenu-parent-link' ).length ) {
81
+ $( this ).prev().attr('href', '#');
82
  }
83
 
84
  });
92
  e.stopPropagation();
93
 
94
  });
95
+ $( document ).on( 'click', '.show-nav-left .mobmenu-push-wrap, .show-nav-left .mobmenu-overlay', function ( e ) {
96
 
97
  e.preventDefault();
98
+ $( '.mobmenu-left-bt' ).first().trigger( 'click' );
99
  e.stopPropagation();
100
 
101
  });
119
 
120
  e.preventDefault();
121
  mobmenuClosePanel( 'show-panel' );
122
+ if ( $('body').hasClass('mob-menu-sliding-menus') ) {
123
+ $( '.mobmenu-trigger-action .hamburger' ).toggleClass('is-active');
124
  }
125
 
126
  });
144
 
145
  setTimeout(function(){
146
  if ( $( 'body' ).hasClass('show-nav-left') ) {
147
+ if ( $('body').hasClass('mob-menu-sliding-menus') ) {
148
+ $( '.mobmenu-trigger-action .hamburger' ).toggleClass('is-active');
149
  }
150
  mobmenuClosePanel( targetPanel );
151
 
159
  });
160
 
161
 
162
+ $('.mobmenu a[href*="#"], .mobmenu-panel a[href*="#"]')
163
  // Remove links that don't actually link to anything
164
  .not('[href="#"]')
165
  .not('[href="#0"]')
170
  &&
171
  location.hostname == this.hostname
172
  &&
173
+ $(this).parents('.mobmenu-content').length > 0
174
  ) {
175
  // Figure out element to scroll to
176
  var target = $(this.hash);
177
  target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
178
  // Does a scroll target exist?
179
  if (target.length) {
180
+ if ( 0 < $(this).parents('.mobmenu-left-panel').length ) {
181
+ mobmenuClosePanel( 'mobmenu-left-panel' );
182
+ } else {
183
+ mobmenuClosePanel( 'mobmenu-right-panel' );
184
+ }
185
+
186
  $( 'html' ).css( 'overflow', '' );
187
 
188
+ $('body,html').animate({
189
+ scrollTop: target.offset().top - $(".mob-menu-header-holder").height() - 50
190
+ }, 1000);
 
 
 
 
 
 
 
 
 
 
 
191
  }
192
  }
193
  });
194
+ function mobmenuClosePanel( target ) {
195
+ $( '.' + target ).toggleClass( 'show-panel' );
196
+ $( 'html' ).removeClass( 'show-mobmenu-filter-panel' );
197
+ $( 'body' ).removeClass( 'show-nav-right' );
198
+ $( 'body' ).removeClass( 'show-nav-left' );
199
+ $( 'html' ).removeClass( 'mob-menu-no-scroll' );
200
+
201
+ }
202
+
203
+ function mobmenuOpenPanel( target) {
204
+ $( '.mobmenu-content' ).scrollTop(0);
205
+ $( 'html' ).addClass( 'mob-menu-no-scroll' );
206
+
207
+ if ( $('.' + target ).hasClass( 'mobmenu-left-alignment' ) ) {
208
+ $('body').addClass('show-nav-left');
209
+ }
210
+ if ( $('.' + target ).hasClass( 'mobmenu-right-alignment' ) ) {
211
+ $('body').addClass('show-nav-right');
212
+ }
213
+
214
+ $('.' + target ).addClass( 'show-panel' );
215
+
216
+ }
217
  });
218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
 
 
languages/mobile-menu-en_US.mo CHANGED
Binary file
languages/mobile-menu-en_US.po CHANGED
@@ -2,1240 +2,2109 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Mobile Menu for Woocommerce\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-25 18:54+0000\n"
6
- "PO-Revision-Date: 2019-05-14 17:56+0000\n"
7
  "Last-Translator: rgadmin <guerreiro.rui@gmail.com>\n"
8
- "Language-Team: \n"
9
  "Language: en_US\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Generator: Loco https://localise.biz/\n"
15
- "X-Loco-Version: 2.2.2; wp-5.1.1"
16
 
17
- #: mobmenu.php:42
18
  msgid ""
19
- "\"> PRO Version Features</a> and the <a href=\"http://www.wpmobilemenu.com\" "
20
- "target=\"_blank\" >Demo site</a>"
21
  msgstr ""
22
 
23
- #: includes/class-wp-mobile-menu-core.php:858
24
- msgid "% items"
25
  msgstr ""
26
 
27
- #: includes/class-wp-mobile-menu-core.php:861
28
- msgid "0 items"
 
29
  msgstr ""
30
 
31
- #: includes/class-wp-mobile-menu-core.php:863
32
- msgid "1 item"
 
 
 
 
 
 
 
 
 
33
  msgstr ""
34
 
35
- #: includes/class-wp-mobile-menu-options.php:1983
36
- msgid "3rd Level Menu Colors"
 
37
  msgstr ""
38
 
39
- #: includes/class-wp-mobile-menu-options.php:1109
40
- #: includes/class-wp-mobile-menu-options.php:1483
41
- #: includes/class-wp-mobile-menu-options.php:2219
42
- msgid ""
43
- "<a href=\"https://webgradients.com/\" target=\"_blank\">Click here</a> to "
44
- "get your desired Gradient, just press the copy button and paste in this "
45
- "field."
46
  msgstr ""
47
 
48
- #: includes/class-wp-mobile-menu-options.php:978
49
- #: includes/class-wp-mobile-menu-options.php:1352
50
- #: includes/class-wp-mobile-menu-options.php:2143
51
- msgid ""
52
- "<div class=\"mobmenu-icon-holder\"></div><a href=\"#\" class=\"mobmenu-icon-"
53
- "picker button\">Select menu icon</a>"
54
  msgstr ""
55
 
56
- #: includes/class-wp-mobile-menu-options.php:73
57
- msgid "Above"
 
58
  msgstr ""
59
 
60
- #: includes/class-wp-mobile-menu-options.php:687
61
- msgid "Above Header"
 
62
  msgstr ""
63
 
64
- #: includes/class-wp-mobile-menu-options.php:278
65
- msgid "Advanced Options"
 
66
  msgstr ""
67
 
68
- #: includes/class-wp-mobile-menu-options.php:105
69
- msgid "Alternative Left Menu"
70
  msgstr ""
71
 
72
- #: includes/class-wp-mobile-menu-options.php:500
73
- msgid "Alternative Logo URL"
74
  msgstr ""
75
 
76
- #: includes/class-wp-mobile-menu-options.php:114
77
- msgid "Alternative Right Menu"
 
78
  msgstr ""
79
 
80
- #. Description of the plugin
81
- msgid ""
82
- "An easy to use WordPress responsive mobile menu. Keep your mobile visitors "
83
- "engaged."
84
  msgstr ""
85
 
86
- #: includes/class-wp-mobile-menu-options.php:1094
87
- #: includes/class-wp-mobile-menu-options.php:1468
88
- #: includes/class-wp-mobile-menu-options.php:2204
89
- msgid "Auto"
90
  msgstr ""
91
 
92
- #: includes/class-wp-mobile-menu-options.php:396
93
- msgid "Auto-hide Header when scrolling down."
94
  msgstr ""
95
 
96
- #: includes/class-wp-mobile-menu-options.php:1830
97
- #: includes/class-wp-mobile-menu-options.php:1920
98
- msgid "Background Color"
99
  msgstr ""
100
 
101
- #: includes/class-wp-mobile-menu-options.php:1850
102
- #: includes/class-wp-mobile-menu-options.php:1940
103
- msgid "Background Hover Color"
104
  msgstr ""
105
 
106
- #: includes/class-wp-mobile-menu-options.php:74
107
- msgid "Below"
 
108
  msgstr ""
109
 
110
- #: includes/class-wp-mobile-menu-options.php:688
111
- msgid "Below Header"
112
  msgstr ""
113
 
114
- #: includes/class-wp-mobile-menu-options.php:1606
115
- msgid "Cart Icon Color"
116
  msgstr ""
117
 
118
- #: includes/class-wp-mobile-menu-core.php:964
119
- msgid "Checkout"
120
  msgstr ""
121
 
122
- #: includes/class-wp-mobile-menu-options.php:1646
123
- msgid "Checkout Button Background Color"
124
  msgstr ""
125
 
126
- #: includes/class-wp-mobile-menu-options.php:1636
127
- msgid "Checkout Button Color"
128
  msgstr ""
129
 
130
- #: includes/class-wp-mobile-menu-options.php:1044
131
- #: includes/class-wp-mobile-menu-options.php:1417
132
- msgid ""
133
- "Choose if you want the menu item icon to display at the left or right side "
134
- "of the menu items."
135
  msgstr ""
136
 
137
- #: includes/class-wp-mobile-menu-options.php:493
138
- msgid ""
139
- "Choose if you want to disable the logo url to avoid being redirect to the "
140
- "homepage or alternative home url when touching the header logo."
141
  msgstr ""
142
 
143
- #: includes/class-wp-mobile-menu-options.php:389
144
- msgid ""
145
- "Choose if you want to disable the logo/text so it will only display the menu "
146
- "icons in the header."
147
  msgstr ""
148
 
149
- #: includes/class-wp-mobile-menu-options.php:379
150
- msgid ""
151
- "Choose if you want to display a naked header with no background "
152
- "color(transparent)."
153
  msgstr ""
154
 
155
- #: includes/class-wp-mobile-menu-options.php:416
156
- msgid "Choose if you want to display an image has logo or text instead."
157
  msgstr ""
158
 
159
- #: includes/class-wp-mobile-menu-options.php:968
160
- #: includes/class-wp-mobile-menu-options.php:1342
161
- #: includes/class-wp-mobile-menu-options.php:2133
162
- msgid "Choose if you want to display an image or an icon."
163
  msgstr ""
164
 
165
- #: includes/class-wp-mobile-menu-options.php:675
166
- #: includes/class-wp-mobile-menu-options.php:786
167
- msgid "Choose if you want to enable the Header Banner."
168
  msgstr ""
169
 
170
- #: includes/class-wp-mobile-menu-options.php:400
171
- msgid ""
172
- "Choose if you want to hide the header when scrolling down. It will reapear "
173
- "when you scroll up."
174
  msgstr ""
175
 
176
- #: includes/class-wp-mobile-menu-options.php:873
177
- #: includes/class-wp-mobile-menu-options.php:1246
178
- msgid ""
179
- "Choose if you want to open the sub-submenu by click in the sub menu item."
180
  msgstr ""
181
 
182
- #: includes/class-wp-mobile-menu-options.php:862
183
- #: includes/class-wp-mobile-menu-options.php:1235
184
- msgid ""
185
- "Choose if you want to open the submenu by click in the Parent Menu item."
186
  msgstr ""
187
 
188
- #: includes/class-wp-mobile-menu-options.php:957
189
- #: includes/class-wp-mobile-menu-options.php:1331
190
- msgid "Choose it the link will open in the same window or in the new window."
191
  msgstr ""
192
 
193
- #: includes/class-wp-mobile-menu-options.php:54
194
- msgid "Choose one menu"
195
  msgstr ""
196
 
197
- #: includes/class-wp-mobile-menu-options.php:686
198
- msgid "Choose the position of the Header Banner."
199
  msgstr ""
200
 
201
- #: includes/class-wp-mobile-menu-options.php:1119
202
- #: includes/class-wp-mobile-menu-options.php:1493
203
- #: includes/class-wp-mobile-menu-options.php:2229
204
- msgid "Choose the width units."
205
  msgstr ""
206
 
207
- #: includes/class-wp-mobile-menu-options.php:158
208
- msgid "Colors"
209
  msgstr ""
210
 
211
- #: includes/class-wp-mobile-menu-options.php:1095
212
- #: includes/class-wp-mobile-menu-options.php:1469
213
- #: includes/class-wp-mobile-menu-options.php:2205
214
- msgid "Contain"
215
  msgstr ""
216
 
217
- #: includes/class-wp-mobile-menu-options.php:1197
218
- msgid "Copyright Font"
219
  msgstr ""
220
 
221
- #: includes/class-wp-mobile-menu-options.php:1096
222
- #: includes/class-wp-mobile-menu-options.php:1470
223
- #: includes/class-wp-mobile-menu-options.php:2206
224
- msgid "Cover"
225
  msgstr ""
226
 
227
- #: includes/class-wp-mobile-menu-options.php:489
228
- msgid "Disable Logo URL "
229
  msgstr ""
230
 
231
- #: includes/class-wp-mobile-menu-options.php:385
232
- msgid "Disable Logo/Text"
 
 
233
  msgstr ""
234
 
235
- #: includes/class-wp-mobile-menu-options.php:336
236
- msgid "Disable Mobile Menu on selected pages"
237
  msgstr ""
238
 
239
- #: includes/class-wp-mobile-menu-options.php:164
240
- msgid "Documentation"
 
 
241
  msgstr ""
242
 
243
- #: includes/class-wp-mobile-menu-options.php:2110
244
- msgid "Enable Account Links in Mobile Cart Panel"
 
245
  msgstr ""
246
 
247
- #: includes/class-wp-mobile-menu-options.php:2114
248
- msgid "Enable Account(Login/logout) Section in the Mobile Cart Panel."
249
  msgstr ""
250
 
251
- #: includes/class-wp-mobile-menu-options.php:671
252
- msgid "Enable Header Banner"
253
  msgstr ""
254
 
255
- #: includes/class-wp-mobile-menu-options.php:782
256
- msgid "Enable Header Search"
 
 
257
  msgstr ""
258
 
259
- #: includes/class-wp-mobile-menu-options.php:238
260
- msgid "Enable Left Menu"
261
  msgstr ""
262
 
263
- #: includes/class-wp-mobile-menu-options.php:202
264
- msgid "Enable Mobile Menu"
 
265
  msgstr ""
266
 
267
- #: includes/class-wp-mobile-menu-options.php:2092
268
- msgid "Enable or disable the Woocommerce Menu."
269
  msgstr ""
270
 
271
- #: includes/class-wp-mobile-menu-options.php:242
272
- msgid "Enable or disable the WP Mobile Menu Left Menu."
 
273
  msgstr ""
274
 
275
- #: includes/class-wp-mobile-menu-options.php:257
276
- msgid "Enable Right Menu"
 
277
  msgstr ""
278
 
279
- #: includes/class-wp-mobile-menu-options.php:887
280
- msgid "Enable the left menu for logged in users only."
281
  msgstr ""
282
 
283
- #: includes/class-wp-mobile-menu-options.php:1261
284
- msgid "Enable the right menu for logged in users only."
285
  msgstr ""
286
 
287
- #: includes/class-wp-mobile-menu-options.php:2088
288
- msgid "Enable Woocommerce Menu"
 
289
  msgstr ""
290
 
291
- #: includes/class-wp-mobile-menu-options.php:696
292
- msgid "Enter the banner header content, you can use HTML and Shortcodes."
 
293
  msgstr ""
294
 
295
- #: includes/class-wp-mobile-menu-options.php:1192
296
- #: includes/class-wp-mobile-menu-options.php:1567
297
- msgid "Enter the Copyright content, you can use HTML and Shortcodes."
298
  msgstr ""
299
 
300
- #: includes/class-wp-mobile-menu-options.php:541
301
- msgid ""
302
- "Enter the desired text for the Mobile Header. If not specified it will use "
303
- "the site title."
 
304
  msgstr ""
305
 
306
- #: includes/class-wp-mobile-menu-options.php:730
307
- msgid ""
308
- "Enter the header banner left padding (only used whit Header Banner Left "
309
- "Alignment)"
 
310
  msgstr ""
311
 
312
- #: includes/class-wp-mobile-menu-options.php:742
313
- msgid ""
314
- "Enter the header banner right padding (only used whit Header Banner Right "
315
- "Alignment)"
316
  msgstr ""
317
 
318
- #: includes/class-wp-mobile-menu-options.php:594
319
- msgid ""
320
- "Enter the header Logo/Text left margin (only used whit Header Left Alignment)"
321
  msgstr ""
322
 
323
- #: includes/class-wp-mobile-menu-options.php:621
324
- msgid ""
325
- "Enter the header Logo/Text right margin (only used whit Header Right "
326
- "Alignment)"
327
  msgstr ""
328
 
329
- #: includes/class-wp-mobile-menu-options.php:608
330
- msgid ""
331
- "Enter the header Logo/Text spacing between the Logo and the Text(it only "
332
- "applies when you have both in the site logo)"
333
  msgstr ""
334
 
335
- #: includes/class-wp-mobile-menu-options.php:568
336
- msgid "Enter the header text font size"
337
  msgstr ""
338
 
339
- #: includes/class-wp-mobile-menu-options.php:529
340
- msgid "Enter the height of the header"
341
  msgstr ""
342
 
343
- #: includes/class-wp-mobile-menu-options.php:704
344
- msgid "Enter the height of the header banner"
345
  msgstr ""
346
 
347
- #: includes/class-wp-mobile-menu-options.php:466
348
- msgid "Enter the height of the logo"
349
  msgstr ""
350
 
351
- #: includes/class-wp-mobile-menu-options.php:947
352
- #: includes/class-wp-mobile-menu-options.php:1321
353
- msgid "Enter the Icon Link Url."
354
  msgstr ""
355
 
356
- #: includes/class-wp-mobile-menu-options.php:1078
357
- #: includes/class-wp-mobile-menu-options.php:2188
358
- msgid "Enter the Left Background image opacity"
359
  msgstr ""
360
 
361
- #: includes/class-wp-mobile-menu-options.php:987
362
- msgid "Enter the Left Icon Font Size"
363
  msgstr ""
364
 
365
- #: includes/class-wp-mobile-menu-options.php:1021
366
- msgid "Enter the Left Icon Left Margin"
367
  msgstr ""
368
 
369
- #: includes/class-wp-mobile-menu-options.php:1009
370
- msgid "Enter the Left Icon Top Margin"
371
  msgstr ""
372
 
373
- #: includes/class-wp-mobile-menu-options.php:1153
374
- msgid "Enter the Left Menu Content Padding"
375
  msgstr ""
376
 
377
- #: includes/class-wp-mobile-menu-options.php:1052
378
- msgid "Enter the Left Menu Item icons horizontal padding(pixels)"
379
  msgstr ""
380
 
381
- #: includes/class-wp-mobile-menu-options.php:1129
382
- #: includes/class-wp-mobile-menu-options.php:1141
383
- msgid "Enter the Left Menu Panel Width"
384
  msgstr ""
385
 
386
- #: includes/class-wp-mobile-menu-options.php:512
387
- msgid "Enter the logo/text top margin"
388
  msgstr ""
389
 
390
- #: includes/class-wp-mobile-menu-options.php:2263
391
- msgid "Enter the Menu Content Padding"
392
  msgstr ""
393
 
394
- #: includes/class-wp-mobile-menu-options.php:2239
395
- #: includes/class-wp-mobile-menu-options.php:2251
396
- msgid "Enter the Menu Panel Width"
397
  msgstr ""
398
 
399
- #: includes/class-wp-mobile-menu-options.php:1452
400
- msgid "Enter the Right Background image opacity"
401
  msgstr ""
402
 
403
- #: includes/class-wp-mobile-menu-options.php:1361
404
- msgid "Enter the Right Icon Font Size"
405
  msgstr ""
406
 
407
- #: includes/class-wp-mobile-menu-options.php:1394
408
- msgid "Enter the Right Icon Right Margin"
409
  msgstr ""
410
 
411
- #: includes/class-wp-mobile-menu-options.php:1382
412
- msgid "Enter the Right Icon Top Margin"
413
  msgstr ""
414
 
415
- #: includes/class-wp-mobile-menu-options.php:1527
416
- msgid "Enter the Right Menu Content Padding"
417
  msgstr ""
418
 
419
- #: includes/class-wp-mobile-menu-options.php:1425
420
- msgid "Enter the Right Menu Item icons horizontal padding(pixels)"
421
  msgstr ""
422
 
423
- #: includes/class-wp-mobile-menu-options.php:1503
424
- #: includes/class-wp-mobile-menu-options.php:1515
425
- msgid "Enter the Right Menu Panel Width"
426
  msgstr ""
427
 
428
- #: includes/class-wp-mobile-menu-options.php:819
429
- msgid "Enter the Search Icon Font Size"
430
  msgstr ""
431
 
432
- #: includes/class-wp-mobile-menu-options.php:904
433
- msgid "Enter the text that will appear after the Icon."
434
  msgstr ""
435
 
436
- #: includes/class-wp-mobile-menu-options.php:1289
437
- msgid "Enter the text that will appear before the Icon."
 
438
  msgstr ""
439
 
440
- #: includes/class-wp-mobile-menu-options.php:2152
441
- msgid "Enter the Woocommerce Menu Icon Font Size"
 
442
  msgstr ""
443
 
444
- #: includes/class-wp-mobile-menu-options.php:503
445
- msgid ""
446
- "Enter you alternative logo URL. If you leave it blank it will use the Site "
447
- "URL."
448
  msgstr ""
449
 
450
- #: includes/class-wp-mobile-menu-options.php:840
451
- msgid ""
452
- "Fill this field with the text that will show up in search input field "
453
- "placeholder."
454
  msgstr ""
455
 
456
- #: includes/class-wp-mobile-menu-options.php:831
457
- msgid ""
458
- "Fill this field with the text that will show up in the submit button of the "
459
- "search form. Clear this field to use the search icon."
460
  msgstr ""
461
 
462
- #: includes/class-wp-mobile-menu-options.php:161
463
- msgid "Fonts"
 
464
  msgstr ""
465
 
466
- #: includes/class-wp-mobile-menu-options.php:1572
467
- msgid "General"
 
468
  msgstr ""
469
 
470
- #: includes/class-wp-mobile-menu-options.php:140
471
- msgid "General Options"
472
  msgstr ""
473
 
474
- #: includes/class-wp-mobile-menu-options.php:143
475
- msgid "Header"
476
  msgstr ""
477
 
478
- #: includes/class-wp-mobile-menu-options.php:1684
479
- msgid "Header Background Color"
480
  msgstr ""
481
 
482
- #: includes/class-wp-mobile-menu-options.php:1779
483
- msgid "Header Banner Background Color"
484
  msgstr ""
485
 
486
- #: includes/class-wp-mobile-menu-options.php:1773
487
- msgid "Header Banner Colors"
 
 
 
 
 
 
 
 
488
  msgstr ""
489
 
490
- #: includes/class-wp-mobile-menu-options.php:693
491
- msgid "Header Banner Content"
492
  msgstr ""
493
 
494
- #: includes/class-wp-mobile-menu-options.php:750
495
- msgid "Header Banner Font"
 
 
496
  msgstr ""
497
 
498
- #: includes/class-wp-mobile-menu-options.php:701
499
- msgid "Header Banner Height"
 
 
 
500
  msgstr ""
501
 
502
- #: includes/class-wp-mobile-menu-options.php:727
503
- msgid "Header Banner Left Padding"
504
  msgstr ""
505
 
506
- #: includes/class-wp-mobile-menu-options.php:665
507
- msgid "Header Banner options"
 
 
508
  msgstr ""
509
 
510
- #: includes/class-wp-mobile-menu-options.php:682
511
- msgid "Header Banner Position"
 
 
 
 
 
 
 
 
 
512
  msgstr ""
513
 
514
- #: includes/class-wp-mobile-menu-options.php:739
515
- msgid "Header Banner Right Padding"
 
 
 
 
 
 
 
 
 
516
  msgstr ""
517
 
518
- #: includes/class-wp-mobile-menu-options.php:1789
519
- msgid "Header Banner Text Color"
520
  msgstr ""
521
 
522
- #: includes/class-wp-mobile-menu-options.php:1678
523
- msgid "Header Colors"
524
  msgstr ""
525
 
526
- #: includes/class-wp-mobile-menu-options.php:793
527
- #: includes/class-wp-mobile-menu-options.php:2121
528
- msgid "Header Elements Order"
529
  msgstr ""
530
 
531
- #: includes/class-wp-mobile-menu-options.php:526
532
- msgid "Header Height"
533
  msgstr ""
534
 
535
- #: includes/class-wp-mobile-menu-options.php:591
536
- msgid "Header Logo/Text Left Margin"
537
  msgstr ""
538
 
539
- #: includes/class-wp-mobile-menu-options.php:618
540
- msgid "Header Logo/Text Right Margin"
541
  msgstr ""
542
 
543
- #: includes/class-wp-mobile-menu-options.php:605
544
- msgid "Header Logo/Text Spacing"
545
  msgstr ""
546
 
547
- #: includes/class-wp-mobile-menu-options.php:637
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  msgid "Header Menu Font"
549
  msgstr ""
550
 
551
- #: includes/class-wp-mobile-menu-options.php:520
552
- msgid "Header options"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  msgstr ""
554
 
555
- #: includes/class-wp-mobile-menu-options.php:1707
556
- msgid "Header Search Colors"
557
  msgstr ""
558
 
559
- #: includes/class-wp-mobile-menu-options.php:776
560
- msgid "Header Search options"
561
  msgstr ""
562
 
563
- #: includes/class-wp-mobile-menu-options.php:538
564
- msgid "Header Text"
 
 
565
  msgstr ""
566
 
567
- #: includes/class-wp-mobile-menu-options.php:1694
568
- msgid "Header Text Color"
 
 
 
569
  msgstr ""
570
 
571
- #: includes/class-wp-mobile-menu-options.php:565
572
- msgid "Header Text Font Size"
573
  msgstr ""
574
 
575
- #: includes/class-wp-mobile-menu-options.php:1588
576
- msgid "Highlight Current Page Item"
577
  msgstr ""
578
 
579
- #: includes/class-wp-mobile-menu-options.php:1860
580
- #: includes/class-wp-mobile-menu-options.php:1950
581
- msgid "Hover Text Color"
 
582
  msgstr ""
583
 
584
- #. URI of the plugin
585
- #. Author URI of the plugin
586
- msgid "http://www.wpmobilemenu.com/"
587
  msgstr ""
588
 
589
- #: includes/class-wp-mobile-menu-options.php:933
590
- #: includes/class-wp-mobile-menu-options.php:1275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  msgid "Icon Action"
592
  msgstr ""
593
 
594
- #: includes/class-wp-mobile-menu-options.php:975
595
- #: includes/class-wp-mobile-menu-options.php:1344
596
- #: includes/class-wp-mobile-menu-options.php:1349
597
- #: includes/class-wp-mobile-menu-options.php:2140
598
- msgid "Icon Font"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgstr ""
600
 
601
- #: includes/class-wp-mobile-menu-options.php:984
602
  #: includes/class-wp-mobile-menu-options.php:1358
603
- #: includes/class-wp-mobile-menu-options.php:2149
604
- msgid "Icon Font Size"
605
  msgstr ""
606
 
607
- #: includes/class-wp-mobile-menu-options.php:996
608
- #: includes/class-wp-mobile-menu-options.php:1370
609
- #: includes/class-wp-mobile-menu-options.php:2161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  msgid "Icon Image"
611
  msgstr ""
612
 
613
- #: includes/class-wp-mobile-menu-options.php:1018
 
 
 
 
 
 
 
 
 
 
 
 
 
614
  msgid "Icon Left Margin"
615
  msgstr ""
616
 
617
- #: includes/class-wp-mobile-menu-options.php:944
618
- #: includes/class-wp-mobile-menu-options.php:1318
619
- msgid "Icon Link URL"
620
  msgstr ""
621
 
622
- #: includes/class-wp-mobile-menu-options.php:953
623
- #: includes/class-wp-mobile-menu-options.php:1327
624
- msgid "Icon Link Url Target"
 
 
625
  msgstr ""
626
 
627
- #: includes/class-wp-mobile-menu-options.php:1391
628
- msgid "Icon Right Margin"
 
629
  msgstr ""
630
 
631
- #: includes/class-wp-mobile-menu-options.php:1006
632
- #: includes/class-wp-mobile-menu-options.php:1379
633
- msgid "Icon Top Margin"
 
 
634
  msgstr ""
635
 
636
- #: includes/class-wp-mobile-menu-options.php:964
637
- #: includes/class-wp-mobile-menu-options.php:1338
638
- #: includes/class-wp-mobile-menu-options.php:2129
639
- msgid "Icon Type"
640
  msgstr ""
641
 
642
- #: includes/class-wp-mobile-menu-options.php:1343
643
- msgid "Image"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
  msgstr ""
645
 
646
- #: includes/class-wp-mobile-menu-options.php:1097
647
- #: includes/class-wp-mobile-menu-options.php:1471
648
- #: includes/class-wp-mobile-menu-options.php:2207
649
  msgid "Inherit"
650
  msgstr ""
651
 
652
- #: includes/class-wp-mobile-menu-options.php:1098
653
- #: includes/class-wp-mobile-menu-options.php:1472
654
- #: includes/class-wp-mobile-menu-options.php:2208
655
- msgid "Initial"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
  msgstr ""
657
 
658
- #: includes/class-wp-mobile-menu-options.php:71
659
- msgid "Left"
 
660
  msgstr ""
661
 
662
- #: includes/class-wp-mobile-menu-options.php:146
663
- #: includes/class-wp-mobile-menu-options.php:848
664
- msgid "Left Menu"
665
  msgstr ""
666
 
667
- #: includes/class-wp-mobile-menu-options.php:2009
668
- msgid "Left Menu Background Color"
669
  msgstr ""
670
 
671
- #: includes/class-wp-mobile-menu-options.php:2019
672
- msgid "Left Menu Background Color Hover"
673
  msgstr ""
674
 
675
- #: includes/class-wp-mobile-menu-options.php:1800
676
- msgid "Left Menu Colors"
677
  msgstr ""
678
 
679
- #: includes/class-wp-mobile-menu-options.php:1150
680
- msgid "Left Menu Content Padding"
681
  msgstr ""
682
 
683
- #: includes/class-wp-mobile-menu-options.php:1189
684
- msgid "Left Menu Copyright Content"
685
  msgstr ""
686
 
687
- #: includes/class-wp-mobile-menu-options.php:1163
688
- msgid "Left Menu Font"
689
  msgstr ""
690
 
691
- #: includes/class-wp-mobile-menu-core.php:337
692
- #: includes/class-wp-mobile-menu-core.php:901
693
- msgid "Left Menu Icon"
694
  msgstr ""
695
 
696
- #: includes/class-wp-mobile-menu-options.php:1806
697
- msgid "Left Menu Icon Color"
698
  msgstr ""
699
 
700
- #: includes/class-wp-mobile-menu-options.php:1819
701
- msgid "Left Menu Items Icon Color"
702
  msgstr ""
703
 
704
- #: includes/class-wp-mobile-menu-options.php:1989
705
- msgid "Left Menu Text Color"
706
  msgstr ""
707
 
708
- #: includes/class-wp-mobile-menu-options.php:1999
709
- msgid "Left Menu Text Color Hover"
 
 
710
  msgstr ""
711
 
712
- #: includes/class-wp-mobile-menu-options.php:1061
713
- msgid "Left Panel options"
714
  msgstr ""
715
 
716
- #: includes/class-wp-mobile-menu-core.php:1035
717
- msgid "Login"
718
  msgstr ""
719
 
720
- #: includes/class-wp-mobile-menu-options.php:417
721
- #: includes/class-wp-mobile-menu-options.php:454
722
- msgid "Logo"
723
  msgstr ""
724
 
725
- #: includes/class-wp-mobile-menu-core.php:799
726
- #: includes/class-wp-mobile-menu-core.php:807
727
- msgid "Logo Header Menu"
728
  msgstr ""
729
 
730
- #: includes/class-wp-mobile-menu-options.php:463
731
- msgid "Logo Height"
732
  msgstr ""
733
 
734
- #: includes/class-wp-mobile-menu-options.php:406
735
- msgid "Logo options"
736
  msgstr ""
737
 
738
- #: includes/class-wp-mobile-menu-options.php:478
739
- msgid "Logo Retina"
740
  msgstr ""
741
 
742
- #: includes/class-wp-mobile-menu-options.php:509
743
- msgid "Logo/Text Top Margin"
744
  msgstr ""
745
 
746
- #: includes/class-wp-mobile-menu-options.php:346
747
- msgid "Main options"
748
  msgstr ""
749
 
750
- #: includes/class-wp-mobile-menu-options.php:2260
751
- msgid "Menu Content Padding"
752
  msgstr ""
753
 
754
- #: includes/class-wp-mobile-menu-options.php:895
755
- #: includes/class-wp-mobile-menu-options.php:1269
756
- msgid "Menu Icon"
757
  msgstr ""
758
 
759
- #: includes/class-wp-mobile-menu-options.php:1049
760
- #: includes/class-wp-mobile-menu-options.php:1422
761
- msgid "Menu Item Icons Horizontal Padding"
762
  msgstr ""
763
 
764
- #: includes/class-wp-mobile-menu-options.php:1039
765
- #: includes/class-wp-mobile-menu-options.php:1412
766
- msgid "Menu Item Icons Position"
767
  msgstr ""
768
 
769
- #: includes/class-wp-mobile-menu-options.php:1115
770
- #: includes/class-wp-mobile-menu-options.php:1489
771
- #: includes/class-wp-mobile-menu-options.php:2225
772
- msgid "Menu Panel Width Units"
773
  msgstr ""
774
 
775
- #: includes/class-wp-mobile-menu-options.php:1138
776
- #: includes/class-wp-mobile-menu-options.php:1512
777
- #: includes/class-wp-mobile-menu-options.php:2248
778
- msgid "Menu Panel Width(Percentage)"
779
  msgstr ""
780
 
781
- #: includes/class-wp-mobile-menu-options.php:1126
782
- #: includes/class-wp-mobile-menu-options.php:1500
783
- #: includes/class-wp-mobile-menu-options.php:2236
784
- msgid "Menu Panel Width(Pixels)"
785
  msgstr ""
786
 
787
- #. Name of the plugin
788
- msgid "Mobile Menu for Woocommerce"
789
  msgstr ""
790
 
791
- #: includes/class-wp-mobile-menu-options.php:90
792
- msgid "Mobile Menu Options"
793
  msgstr ""
794
 
795
- #: includes/class-wp-mobile-menu-options.php:213
796
- msgid "Mobile Menu Visibility(Width Trigger)"
797
  msgstr ""
798
 
799
- #: includes/class-wp-mobile-menu-core.php:1032
800
- msgid "My Account"
801
  msgstr ""
802
 
803
- #: includes/class-wp-mobile-menu-options.php:375
804
- msgid "Naked Header"
805
  msgstr ""
806
 
807
- #: includes/class-wp-mobile-menu-options.php:381
808
- #: includes/class-wp-mobile-menu-options.php:391
809
- #: includes/class-wp-mobile-menu-options.php:402
810
- #: includes/class-wp-mobile-menu-options.php:495
811
- #: includes/class-wp-mobile-menu-options.php:677
812
- #: includes/class-wp-mobile-menu-options.php:788
813
- #: includes/class-wp-mobile-menu-options.php:864
814
- #: includes/class-wp-mobile-menu-options.php:875
815
- #: includes/class-wp-mobile-menu-options.php:1237
816
- #: includes/class-wp-mobile-menu-options.php:1248
817
- msgid "No"
818
  msgstr ""
819
 
820
- #: includes/class-wp-mobile-menu-core.php:955
821
- msgid "No Items found."
822
  msgstr ""
823
 
824
- #: includes/class-wp-mobile-menu-options.php:263
825
- msgid "Off"
826
  msgstr ""
827
 
828
- #: includes/class-wp-mobile-menu-options.php:262
829
- msgid "On"
830
  msgstr ""
831
 
832
- #: includes/class-wp-mobile-menu-options.php:883
833
- #: includes/class-wp-mobile-menu-options.php:1257
834
- msgid "Only visible for logged users"
835
  msgstr ""
836
 
837
- #: includes/class-wp-mobile-menu-options.php:2099
838
- msgid "Open Cart Panel after adding a product"
839
  msgstr ""
840
 
841
- #: includes/class-wp-mobile-menu-options.php:2103
842
- msgid "Open Cart Panel after adding a product."
843
  msgstr ""
844
 
845
- #: includes/class-wp-mobile-menu-options.php:937
846
- msgid "Open the Left Menu Panel or open a Link url."
847
  msgstr ""
848
 
849
- #: includes/class-wp-mobile-menu-options.php:1279
850
- msgid "Open the Right Menu Panel or open a Link url."
851
  msgstr ""
852
 
853
- #: includes/class-wp-mobile-menu-options.php:64
854
- msgid "Overlay"
855
  msgstr ""
856
 
857
- #: includes/class-wp-mobile-menu-options.php:1578
858
- msgid "Overlay Background Color"
859
  msgstr ""
860
 
861
- #: includes/class-wp-mobile-menu-options.php:1106
862
- #: includes/class-wp-mobile-menu-options.php:1480
863
- #: includes/class-wp-mobile-menu-options.php:2216
864
- msgid "Panel Background Gradient Css"
865
  msgstr ""
866
 
867
- #: includes/class-wp-mobile-menu-options.php:1067
868
- #: includes/class-wp-mobile-menu-options.php:1441
869
- #: includes/class-wp-mobile-menu-options.php:2177
870
- msgid "Panel Background Image"
871
  msgstr ""
872
 
873
- #: includes/class-wp-mobile-menu-options.php:1075
874
- #: includes/class-wp-mobile-menu-options.php:1449
875
- #: includes/class-wp-mobile-menu-options.php:2185
876
- msgid "Panel Background Image Opacity"
877
  msgstr ""
878
 
879
- #: includes/class-wp-mobile-menu-options.php:1088
880
- #: includes/class-wp-mobile-menu-options.php:1462
881
- #: includes/class-wp-mobile-menu-options.php:2198
882
- msgid "Panel Background Image Size"
883
  msgstr ""
884
 
885
- #: includes/class-wp-mobile-menu-options.php:858
886
- #: includes/class-wp-mobile-menu-options.php:1231
887
- msgid "Parent Link open submenu"
888
  msgstr ""
889
 
890
- #: includes/class-wp-mobile-menu-options.php:869
891
- #: includes/class-wp-mobile-menu-options.php:1242
892
- msgid "Parent Link open submenu(2nd Level)"
893
  msgstr ""
894
 
895
- #: includes/class-wp-mobile-menu-options.php:1121
896
- #: includes/class-wp-mobile-menu-options.php:1495
897
- #: includes/class-wp-mobile-menu-options.php:2231
898
- msgid "Percentage"
899
  msgstr ""
900
 
901
- #: includes/class-wp-mobile-menu-options.php:1494
902
- msgid "Pixels"
 
903
  msgstr ""
904
 
905
- #: includes/class-wp-mobile-menu-options.php:837
906
- msgid "Placeholder Text"
 
907
  msgstr ""
908
 
909
- #: includes/class-wp-mobile-menu-options.php:318
910
- msgid "Put your custom CSS rules here"
911
  msgstr ""
912
 
913
- #: includes/class-wp-mobile-menu-options.php:327
914
- msgid "Put your custom JS rules here"
915
  msgstr ""
916
 
917
- #: includes/class-wp-mobile-menu-core.php:947
918
- msgid "Quantity:"
919
  msgstr ""
920
 
921
- #: includes/class-wp-mobile-menu-core.php:643
922
- msgid "Refine"
923
  msgstr ""
924
 
925
- #: includes/class-wp-mobile-menu-core.php:164
926
- msgid "Remove Icon Selection"
927
  msgstr ""
928
 
929
- #: includes/class-wp-mobile-menu-core.php:949
930
- msgid "Remove this item"
931
  msgstr ""
932
 
933
- #: includes/class-wp-mobile-menu-options.php:72
934
- msgid "Right"
935
  msgstr ""
936
 
937
- #: includes/class-wp-mobile-menu-options.php:149
938
- #: includes/class-wp-mobile-menu-options.php:1221
939
- msgid "Right Menu"
940
  msgstr ""
941
 
942
- #: includes/class-wp-mobile-menu-options.php:2049
943
- msgid "Right Menu Background Color"
944
  msgstr ""
945
 
946
- #: includes/class-wp-mobile-menu-options.php:2059
947
- msgid "Right Menu Background Color Hover"
948
  msgstr ""
949
 
950
- #: includes/class-wp-mobile-menu-options.php:1890
951
- msgid "Right Menu Colors"
952
  msgstr ""
953
 
954
- #: includes/class-wp-mobile-menu-options.php:1524
955
- msgid "Right Menu Content Padding"
956
  msgstr ""
957
 
958
- #: includes/class-wp-mobile-menu-options.php:1564
959
- msgid "Right Menu Copyright Content"
960
  msgstr ""
961
 
962
- #: includes/class-wp-mobile-menu-options.php:1537
963
- msgid "Right Menu Font"
964
  msgstr ""
965
 
966
- #: includes/class-wp-mobile-menu-core.php:377
967
- msgid "Right Menu Icon"
968
  msgstr ""
969
 
970
- #: includes/class-wp-mobile-menu-options.php:1896
971
- msgid "Right Menu Icon Color"
972
  msgstr ""
973
 
974
- #: includes/class-wp-mobile-menu-options.php:1909
975
- msgid "Right Menu Items Icon Color"
976
  msgstr ""
977
 
978
- #: includes/class-wp-mobile-menu-options.php:2029
979
- msgid "Right Menu Text Color"
980
  msgstr ""
981
 
982
- #: includes/class-wp-mobile-menu-options.php:2039
983
- msgid "Right Menu Text Color Hover"
984
  msgstr ""
985
 
986
- #: includes/class-wp-mobile-menu-options.php:1435
987
- msgid "Right Panel options"
988
  msgstr ""
989
 
990
- #: includes/class-wp-mobile-menu-options.php:832
991
- #: includes/class-wp-mobile-menu-options.php:841
992
- msgid "Search"
993
  msgstr ""
994
 
995
- #: includes/class-wp-mobile-menu-options.php:1743
996
- msgid "Search Form Background Color"
997
  msgstr ""
998
 
999
- #: includes/class-wp-mobile-menu-options.php:1733
1000
- msgid "Search Form Button Background Color"
1001
  msgstr ""
1002
 
1003
- #: includes/class-wp-mobile-menu-options.php:1723
1004
- msgid "Search Form Button Color"
 
 
 
1005
  msgstr ""
1006
 
1007
- #: includes/class-wp-mobile-menu-options.php:1763
1008
- msgid "Search Form Placeholder Color"
1009
  msgstr ""
1010
 
1011
- #: includes/class-wp-mobile-menu-options.php:1753
1012
- msgid "Search Form Text Color"
1013
  msgstr ""
1014
 
1015
- #: includes/class-wp-mobile-menu-options.php:1713
1016
- msgid "Search Icon Color"
1017
  msgstr ""
1018
 
1019
- #: includes/class-wp-mobile-menu-options.php:816
1020
- msgid "Search Icon Font Size"
1021
  msgstr ""
1022
 
1023
- #: includes/class-wp-mobile-menu-options.php:339
1024
- msgid "Select a page"
1025
  msgstr ""
1026
 
1027
- #: includes/class-wp-mobile-menu-options.php:181
1028
- #: includes/class-wp-mobile-menu-options.php:640
1029
- #: includes/class-wp-mobile-menu-options.php:753
1030
- #: includes/class-wp-mobile-menu-options.php:913
1031
- #: includes/class-wp-mobile-menu-options.php:1166
1032
- #: includes/class-wp-mobile-menu-options.php:1200
1033
- #: includes/class-wp-mobile-menu-options.php:1298
1034
- #: includes/class-wp-mobile-menu-options.php:1540
1035
- msgid "Select a style"
1036
  msgstr ""
1037
 
1038
- #: includes/class-wp-mobile-menu-options.php:1092
1039
- #: includes/class-wp-mobile-menu-options.php:1466
1040
- #: includes/class-wp-mobile-menu-options.php:2202
1041
- msgid ""
1042
- "Select the Background image size type. <a href=\"https://www.w3schools."
1043
- "com/cssref/css3_pr_background-size.asp\" target=\"_blank\">See the CSS "
1044
- "Documentation</a>"
1045
  msgstr ""
1046
 
1047
- #: includes/class-wp-mobile-menu-options.php:108
1048
- msgid "Select the menu that will open in the left side just for this page."
 
 
1049
  msgstr ""
1050
 
1051
- #: includes/class-wp-mobile-menu-options.php:851
1052
- msgid "Select the menu that will open in the left side."
1053
  msgstr ""
1054
 
1055
- #: includes/class-wp-mobile-menu-options.php:117
1056
- msgid "Select the menu that will open in the right side just for this page."
1057
  msgstr ""
1058
 
1059
- #: includes/class-wp-mobile-menu-options.php:1224
1060
- msgid "Select the menu that will open in the right side."
1061
  msgstr ""
1062
 
1063
- #: includes/class-wp-mobile-menu-core.php:1033
1064
- msgid "Sign Out"
1065
  msgstr ""
1066
 
1067
- #: includes/class-wp-mobile-menu-options.php:412
1068
- msgid "Site Logo"
1069
  msgstr ""
1070
 
1071
- #: includes/class-wp-mobile-menu-options.php:67
1072
- msgid "Slideout from Top"
1073
  msgstr ""
1074
 
1075
- #: includes/class-wp-mobile-menu-options.php:66
1076
- #: includes/class-wp-mobile-menu-options.php:80
1077
- msgid "Slideout Over Content"
1078
  msgstr ""
1079
 
1080
- #: includes/class-wp-mobile-menu-options.php:65
1081
- #: includes/class-wp-mobile-menu-options.php:79
1082
- msgid "Slideout Push Content"
1083
  msgstr ""
1084
 
1085
- #: includes/class-wp-mobile-menu-options.php:1870
1086
- #: includes/class-wp-mobile-menu-options.php:1960
1087
- msgid "Submenu Background Color"
1088
  msgstr ""
1089
 
1090
- #: includes/class-wp-mobile-menu-options.php:1880
1091
- #: includes/class-wp-mobile-menu-options.php:1970
1092
- msgid "Submenu Text Color"
1093
  msgstr ""
1094
 
1095
- #. Author of the plugin
1096
- msgid "Takanakui"
1097
  msgstr ""
1098
 
1099
- #: includes/class-wp-mobile-menu-options.php:418
1100
- msgid "Text"
1101
  msgstr ""
1102
 
1103
- #: includes/class-wp-mobile-menu-options.php:901
1104
- msgid "Text After Icon"
1105
  msgstr ""
1106
 
1107
- #: includes/class-wp-mobile-menu-options.php:910
1108
- msgid "Text After Icon Font"
1109
  msgstr ""
1110
 
1111
- #: includes/class-wp-mobile-menu-options.php:1286
1112
- msgid "Text Before Icon"
1113
  msgstr ""
1114
 
1115
- #: includes/class-wp-mobile-menu-options.php:1295
1116
- msgid "Text Before Icon Font"
1117
  msgstr ""
1118
 
1119
- #: includes/class-wp-mobile-menu-options.php:1616
1120
- #: includes/class-wp-mobile-menu-options.php:1840
1121
- #: includes/class-wp-mobile-menu-options.php:1930
1122
- msgid "Text Color"
1123
  msgstr ""
1124
 
1125
- #: includes/class-wp-mobile-menu-options.php:216
1126
- msgid ""
1127
- "The Mobile menu will appear at this window size. Place it at 5000 to be "
1128
- "always visible. "
1129
  msgstr ""
1130
 
1131
- #: includes/class-wp-mobile-menu-options.php:225
1132
- msgid ""
1133
- "The Width trigger field is very important because it determines the width "
1134
- "that will show the Mobile Menu. If you want it always visible set it to "
1135
- "5000px"
1136
  msgstr ""
1137
 
1138
- #: includes/class-wp-mobile-menu-core.php:959
1139
- msgid "Total"
1140
  msgstr ""
1141
 
1142
- #: includes/class-wp-mobile-menu-core.php:946
1143
- msgid "Unit Price:"
1144
  msgstr ""
1145
 
1146
- #: includes/class-wp-mobile-menu-options.php:1099
1147
- #: includes/class-wp-mobile-menu-options.php:1473
1148
- #: includes/class-wp-mobile-menu-options.php:2209
1149
- msgid "Unset"
1150
  msgstr ""
1151
 
1152
- #: includes/class-wp-mobile-menu-options.php:1070
1153
- msgid ""
1154
- "Upload your left menu background image(this will override the Background "
1155
- "color option)"
1156
  msgstr ""
1157
 
1158
- #: includes/class-wp-mobile-menu-options.php:1000
1159
- msgid "Upload your left menu icon image"
1160
  msgstr ""
1161
 
1162
- #: includes/class-wp-mobile-menu-options.php:457
1163
- msgid "Upload your logo image"
1164
  msgstr ""
1165
 
1166
- #: includes/class-wp-mobile-menu-options.php:481
1167
- msgid "Upload your logo image for retina devices"
1168
  msgstr ""
1169
 
1170
- #: includes/class-wp-mobile-menu-options.php:1444
1171
- msgid ""
1172
- "upload your right menu background image(this will override the Background "
1173
- "color option)"
1174
  msgstr ""
1175
 
1176
- #: includes/class-wp-mobile-menu-options.php:1373
1177
- msgid "Upload your right menu icon image"
1178
  msgstr ""
1179
 
1180
- #: includes/class-wp-mobile-menu-options.php:2180
1181
  msgid ""
1182
  "Upload your Woocommerce menu background image(this will override the "
1183
  "Background color option)"
1184
  msgstr ""
1185
 
1186
- #: includes/class-wp-mobile-menu-options.php:2165
1187
- msgid "Upload your Woocommerce Menu icon image"
1188
- msgstr ""
1189
-
1190
- #: includes/class-wp-mobile-menu-options.php:828
1191
- msgid "Use text instead Icon"
1192
- msgstr ""
1193
-
1194
- #: includes/class-wp-mobile-menu-core.php:963
1195
- msgid "View cart"
1196
- msgstr ""
1197
-
1198
- #: includes/class-wp-mobile-menu-options.php:1666
1199
- msgid "View Cart Button Background Color"
1200
  msgstr ""
1201
 
1202
- #: includes/class-wp-mobile-menu-options.php:1656
1203
- msgid "View Cart Button Color"
1204
  msgstr ""
1205
 
1206
- #: includes/class-wp-mobile-menu-options.php:2084
1207
- msgid "Woocommerce"
1208
  msgstr ""
1209
 
1210
- #: includes/class-wp-mobile-menu-options.php:1600
1211
- msgid "Woocommerce Colors"
1212
  msgstr ""
1213
 
1214
- #: includes/class-wp-mobile-menu-options.php:178
1215
- msgid "Woocommerce Menu Font"
1216
  msgstr ""
1217
 
1218
- #: includes/class-wp-mobile-menu-options.php:1626
1219
- msgid "Woocommerce Panel Background Color"
 
 
1220
  msgstr ""
1221
 
1222
- #: includes/class-wp-mobile-menu-options.php:2171
1223
- msgid "Woocommerce Panel options"
1224
  msgstr ""
1225
 
1226
- #: includes/class-wp-mobile-menu-options.php:99
1227
- msgid "WP Mobile Menu Meta options"
1228
  msgstr ""
1229
 
1230
- #: includes/class-wp-mobile-menu-options.php:380
1231
- #: includes/class-wp-mobile-menu-options.php:390
1232
- #: includes/class-wp-mobile-menu-options.php:401
1233
- #: includes/class-wp-mobile-menu-options.php:494
1234
- #: includes/class-wp-mobile-menu-options.php:676
1235
- #: includes/class-wp-mobile-menu-options.php:787
1236
- #: includes/class-wp-mobile-menu-options.php:863
1237
- #: includes/class-wp-mobile-menu-options.php:874
1238
- #: includes/class-wp-mobile-menu-options.php:1236
1239
- #: includes/class-wp-mobile-menu-options.php:1247
1240
- msgid "Yes"
1241
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Mobile Menu for Woocommerce\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-05-31 11:50+0000\n"
6
+ "PO-Revision-Date: 2019-05-31 13:43+0000\n"
7
  "Last-Translator: rgadmin <guerreiro.rui@gmail.com>\n"
8
+ "Language-Team: English (United States)\n"
9
  "Language: en_US\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Generator: Loco https://localise.biz/\n"
15
+ "X-Loco-Version: 2.2.2; wp-5.2.1"
16
 
17
+ #: mobmenu.php:49
18
  msgid ""
19
+ "\"> Professional Version Features</a> and the <a href=\"http://www."
20
+ "wpmobilemenu.com\" target=\"_blank\" >Demo site</a>"
21
  msgstr ""
22
 
23
+ #: includes/class-wp-mobile-menu-core.php:193
24
+ msgid "Remove Icon Selection"
25
  msgstr ""
26
 
27
+ #: includes/class-wp-mobile-menu-core.php:236
28
+ #, php-format
29
+ msgid "%d items total"
30
  msgstr ""
31
 
32
+ #: includes/class-wp-mobile-menu-core.php:238
33
+ #: includes/class-wp-mobile-menu-core.php:241
34
+ #, php-format
35
+ msgid "%d item total"
36
+ msgid_plural "%d items total"
37
+ msgstr[0] ""
38
+ msgstr[1] ""
39
+
40
+ #: includes/class-wp-mobile-menu-core.php:276
41
+ #: includes/class-wp-mobile-menu-options.php:1131
42
+ msgid "Icon and Text Below"
43
  msgstr ""
44
 
45
+ #: includes/class-wp-mobile-menu-core.php:277
46
+ #: includes/class-wp-mobile-menu-options.php:1132
47
+ msgid "Icon and Text on Right Side"
48
  msgstr ""
49
 
50
+ #: includes/class-wp-mobile-menu-core.php:278
51
+ #: includes/class-wp-mobile-menu-options.php:1133
52
+ msgid "Only Icon"
 
 
 
 
53
  msgstr ""
54
 
55
+ #: includes/class-wp-mobile-menu-core.php:279
56
+ #: includes/class-wp-mobile-menu-options.php:1134
57
+ msgid "Only Text"
 
 
 
58
  msgstr ""
59
 
60
+ #: includes/class-wp-mobile-menu-core.php:368
61
+ #: includes/class-wp-mobile-menu-core.php:492
62
+ msgid "Left Menu Icon"
63
  msgstr ""
64
 
65
+ #: includes/class-wp-mobile-menu-core.php:475
66
+ #: includes/class-wp-mobile-menu-core.php:645
67
+ msgid "Left Menu Button"
68
  msgstr ""
69
 
70
+ #: includes/class-wp-mobile-menu-core.php:529
71
+ #: includes/class-wp-mobile-menu-core.php:733
72
+ msgid "Right Menu Button"
73
  msgstr ""
74
 
75
+ #: includes/class-wp-mobile-menu-core.php:546
76
+ msgid "Right Menu Icon"
77
  msgstr ""
78
 
79
+ #: includes/class-wp-mobile-menu-core.php:617
80
+ msgid "Cart Menu Button"
81
  msgstr ""
82
 
83
+ #: includes/class-wp-mobile-menu-core.php:907
84
+ #: includes/class-wp-mobile-menu-core.php:914
85
+ msgid "Left Mobile Menu"
86
  msgstr ""
87
 
88
+ #: includes/class-wp-mobile-menu-core.php:908
89
+ #: includes/class-wp-mobile-menu-core.php:915
90
+ msgid "Right Mobile Menu"
 
91
  msgstr ""
92
 
93
+ #: includes/class-wp-mobile-menu-core.php:909
94
+ msgid "Footer Mobile Menu"
 
 
95
  msgstr ""
96
 
97
+ #: includes/class-wp-mobile-menu-core.php:949
98
+ msgid "Product Category"
99
  msgstr ""
100
 
101
+ #: includes/class-wp-mobile-menu-core.php:950
102
+ msgid "Price"
 
103
  msgstr ""
104
 
105
+ #: includes/class-wp-mobile-menu-core.php:975
106
+ msgid "Refine"
 
107
  msgstr ""
108
 
109
+ #: includes/class-wp-mobile-menu-core.php:1139
110
+ #: includes/class-wp-mobile-menu-core.php:1141
111
+ msgid "Logo Header Menu"
112
  msgstr ""
113
 
114
+ #: includes/class-wp-mobile-menu-core.php:1191
115
+ msgid "% items"
116
  msgstr ""
117
 
118
+ #: includes/class-wp-mobile-menu-core.php:1194
119
+ msgid "0 items"
120
  msgstr ""
121
 
122
+ #: includes/class-wp-mobile-menu-core.php:1196
123
+ msgid "1 item"
124
  msgstr ""
125
 
126
+ #: includes/class-wp-mobile-menu-core.php:1256
127
+ msgid "Cart Menu Button Image"
128
  msgstr ""
129
 
130
+ #: includes/class-wp-mobile-menu-core.php:1261
131
+ msgid "Cart Menu Button Icon"
132
  msgstr ""
133
 
134
+ #: includes/class-wp-mobile-menu-core.php:1309
135
+ msgid "Unit Price:"
 
 
 
136
  msgstr ""
137
 
138
+ #: includes/class-wp-mobile-menu-core.php:1310
139
+ msgid "Quantity:"
 
 
140
  msgstr ""
141
 
142
+ #: includes/class-wp-mobile-menu-core.php:1312
143
+ msgid "Remove this item"
 
 
144
  msgstr ""
145
 
146
+ #: includes/class-wp-mobile-menu-core.php:1321
147
+ msgid "Total"
 
 
148
  msgstr ""
149
 
150
+ #: includes/class-wp-mobile-menu-core.php:1325
151
+ msgid "View cart"
152
  msgstr ""
153
 
154
+ #: includes/class-wp-mobile-menu-core.php:1326
155
+ msgid "Checkout"
 
 
156
  msgstr ""
157
 
158
+ #: includes/class-wp-mobile-menu-core.php:1396
159
+ msgid "My Account"
 
160
  msgstr ""
161
 
162
+ #: includes/class-wp-mobile-menu-core.php:1397
163
+ msgid "Sign Out"
 
 
164
  msgstr ""
165
 
166
+ #: includes/class-wp-mobile-menu-core.php:1399
167
+ msgid "Login"
 
 
168
  msgstr ""
169
 
170
+ #: includes/class-wp-mobile-menu-core.php:1515
171
+ msgid "Left Menu Top"
 
 
172
  msgstr ""
173
 
174
+ #: includes/class-wp-mobile-menu-core.php:1528
175
+ msgid "Left Menu Bottom"
 
176
  msgstr ""
177
 
178
+ #: includes/class-wp-mobile-menu-core.php:1541
179
+ msgid "Right Menu Top"
180
  msgstr ""
181
 
182
+ #: includes/class-wp-mobile-menu-core.php:1554
183
+ msgid "Right Menu Bottom"
184
  msgstr ""
185
 
186
+ #: includes/class-wp-mobile-menu-core.php:1567
187
+ msgid "Mobile Filter Shop"
 
 
188
  msgstr ""
189
 
190
+ #: includes/class-wp-mobile-menu-core.php:4061
191
+ msgid "The file is empty. Upload a new file and try again."
192
  msgstr ""
193
 
194
+ #: includes/class-wp-mobile-menu-core.php:4069
195
+ msgid "Settings Imported successfully."
 
 
196
  msgstr ""
197
 
198
+ #: includes/class-wp-mobile-menu-core.php:4072
199
+ msgid "Something went wrong. Upload a new file and try again."
200
  msgstr ""
201
 
202
+ #: includes/class-wp-mobile-menu-core.php:4076
203
+ msgid ""
204
+ "The settings are exactly the same has the current ones. Nothing was imported."
 
205
  msgstr ""
206
 
207
+ #: includes/class-wp-mobile-menu-core.php:4085
208
+ msgid "Import the Mobile Menu Official Demos"
209
  msgstr ""
210
 
211
+ #: includes/class-wp-mobile-menu-core.php:4086
212
+ msgid ""
213
+ "This process will import the settings from the official demos. The logos "
214
+ "should be assigned after the import."
215
  msgstr ""
216
 
217
+ #: includes/class-wp-mobile-menu-core.php:4090
218
+ msgid "WooCommerce Shop Demo (Business)"
219
  msgstr ""
220
 
221
+ #: includes/class-wp-mobile-menu-core.php:4091
222
+ #: includes/class-wp-mobile-menu-core.php:4105
223
+ #: includes/class-wp-mobile-menu-core.php:4105
224
+ msgid "Import Demo"
225
  msgstr ""
226
 
227
+ #: includes/class-wp-mobile-menu-core.php:4099
228
+ #: includes/class-wp-mobile-menu-core.php:4113
229
+ msgid "See Demo Site"
230
  msgstr ""
231
 
232
+ #: includes/class-wp-mobile-menu-core.php:4104
233
+ msgid "Professional Demo"
234
  msgstr ""
235
 
236
+ #: includes/class-wp-mobile-menu-core.php:4129
237
+ msgid "Import the Mobile Menu settings from a txt file"
238
  msgstr ""
239
 
240
+ #: includes/class-wp-mobile-menu-core.php:4130
241
+ msgid ""
242
+ "This tool allows you to import the settings of WP Mobile Menu that were "
243
+ "previously exported from other website."
244
  msgstr ""
245
 
246
+ #: includes/class-wp-mobile-menu-core.php:4146
247
+ msgid "Choose the settings file from your computer:"
248
  msgstr ""
249
 
250
+ #: includes/class-wp-mobile-menu-core.php:4159
251
+ #: includes/class-wp-mobile-menu-options.php:574
252
+ msgid "Import"
253
  msgstr ""
254
 
255
+ #: includes/class-wp-mobile-menu-options.php:52
256
+ msgid "Choose one menu"
257
  msgstr ""
258
 
259
+ #: includes/class-wp-mobile-menu-options.php:63
260
+ #: includes/class-wp-mobile-menu-options.php:126
261
+ msgid "Image"
262
  msgstr ""
263
 
264
+ #: includes/class-wp-mobile-menu-options.php:64
265
+ #: includes/class-wp-mobile-menu-options.php:127
266
+ msgid "Icon"
267
  msgstr ""
268
 
269
+ #: includes/class-wp-mobile-menu-options.php:65
270
+ msgid "Animated Icon"
271
  msgstr ""
272
 
273
+ #: includes/class-wp-mobile-menu-options.php:69
274
+ msgid "Overlay"
275
  msgstr ""
276
 
277
+ #: includes/class-wp-mobile-menu-options.php:70
278
+ #: includes/class-wp-mobile-menu-options.php:131
279
+ msgid "Slideout Push Content"
280
  msgstr ""
281
 
282
+ #: includes/class-wp-mobile-menu-options.php:71
283
+ #: includes/class-wp-mobile-menu-options.php:132
284
+ msgid "Slideout Over Content"
285
  msgstr ""
286
 
287
+ #: includes/class-wp-mobile-menu-options.php:72
288
+ msgid "Slideout from Top"
 
289
  msgstr ""
290
 
291
+ #: includes/class-wp-mobile-menu-options.php:76
292
+ #: includes/class-wp-mobile-menu-options.php:812
293
+ #: includes/class-wp-mobile-menu-options.php:947
294
+ #: includes/class-wp-mobile-menu-options.php:1044
295
+ msgid "Left"
296
  msgstr ""
297
 
298
+ #: includes/class-wp-mobile-menu-options.php:77
299
+ #: includes/class-wp-mobile-menu-options.php:814
300
+ #: includes/class-wp-mobile-menu-options.php:949
301
+ #: includes/class-wp-mobile-menu-options.php:1046
302
+ msgid "Right"
303
  msgstr ""
304
 
305
+ #: includes/class-wp-mobile-menu-options.php:78
306
+ msgid "Above"
 
 
307
  msgstr ""
308
 
309
+ #: includes/class-wp-mobile-menu-options.php:79
310
+ msgid "Below"
 
311
  msgstr ""
312
 
313
+ #: includes/class-wp-mobile-menu-options.php:83
314
+ msgid "3DX"
 
 
315
  msgstr ""
316
 
317
+ #: includes/class-wp-mobile-menu-options.php:84
318
+ msgid "3DY"
 
 
319
  msgstr ""
320
 
321
+ #: includes/class-wp-mobile-menu-options.php:85
322
+ msgid "3DXY"
323
  msgstr ""
324
 
325
+ #: includes/class-wp-mobile-menu-options.php:86
326
+ msgid "Arrow"
327
  msgstr ""
328
 
329
+ #: includes/class-wp-mobile-menu-options.php:87
330
+ msgid "Arrow Alt"
331
  msgstr ""
332
 
333
+ #: includes/class-wp-mobile-menu-options.php:88
334
+ msgid "Arrow Turn"
335
  msgstr ""
336
 
337
+ #: includes/class-wp-mobile-menu-options.php:89
338
+ msgid "Collapse"
 
339
  msgstr ""
340
 
341
+ #: includes/class-wp-mobile-menu-options.php:90
342
+ msgid "Elastic"
 
343
  msgstr ""
344
 
345
+ #: includes/class-wp-mobile-menu-options.php:91
346
+ msgid "Emphatic"
347
  msgstr ""
348
 
349
+ #: includes/class-wp-mobile-menu-options.php:92
350
+ msgid "Minus"
351
  msgstr ""
352
 
353
+ #: includes/class-wp-mobile-menu-options.php:93
354
+ msgid "Squeeze"
355
  msgstr ""
356
 
357
+ #: includes/class-wp-mobile-menu-options.php:94
358
+ msgid "Spin"
359
  msgstr ""
360
 
361
+ #: includes/class-wp-mobile-menu-options.php:95
362
+ msgid "Slider"
363
  msgstr ""
364
 
365
+ #: includes/class-wp-mobile-menu-options.php:96
366
+ msgid "Stand"
 
367
  msgstr ""
368
 
369
+ #: includes/class-wp-mobile-menu-options.php:97
370
+ msgid "Spring"
371
  msgstr ""
372
 
373
+ #: includes/class-wp-mobile-menu-options.php:98
374
+ msgid "Vortex"
375
  msgstr ""
376
 
377
+ #: includes/class-wp-mobile-menu-options.php:161
378
+ msgid "Mobile Menu Options"
 
379
  msgstr ""
380
 
381
+ #: includes/class-wp-mobile-menu-options.php:170
382
+ msgid "WP Mobile Menu Meta options"
383
  msgstr ""
384
 
385
+ #: includes/class-wp-mobile-menu-options.php:176
386
+ msgid "Alternative Left Menu"
387
  msgstr ""
388
 
389
+ #: includes/class-wp-mobile-menu-options.php:179
390
+ msgid "Select the menu that will open in the left side just for this page."
391
  msgstr ""
392
 
393
+ #: includes/class-wp-mobile-menu-options.php:185
394
+ msgid "Alternative Right Menu"
395
  msgstr ""
396
 
397
+ #: includes/class-wp-mobile-menu-options.php:188
398
+ msgid "Select the menu that will open in the right side just for this page."
399
  msgstr ""
400
 
401
+ #: includes/class-wp-mobile-menu-options.php:194
402
+ msgid "Alternative Footer Menu"
403
  msgstr ""
404
 
405
+ #: includes/class-wp-mobile-menu-options.php:197
406
+ msgid "Select the menu that will appear at the footer."
 
407
  msgstr ""
408
 
409
+ #: includes/class-wp-mobile-menu-options.php:203
410
+ msgid "Use page title"
411
  msgstr ""
412
 
413
+ #: includes/class-wp-mobile-menu-options.php:206
414
+ msgid "Choose if you want to display the page Title in the Header/Banner"
415
  msgstr ""
416
 
417
+ #: includes/class-wp-mobile-menu-options.php:209
418
+ #: includes/class-wp-mobile-menu-options.php:786
419
+ msgid "Yes - In the Header"
420
  msgstr ""
421
 
422
+ #: includes/class-wp-mobile-menu-options.php:210
423
+ #: includes/class-wp-mobile-menu-options.php:787
424
+ msgid "Yes - In the Header Banner"
425
  msgstr ""
426
 
427
+ #: includes/class-wp-mobile-menu-options.php:220
428
+ msgid "General Options"
 
 
429
  msgstr ""
430
 
431
+ #: includes/class-wp-mobile-menu-options.php:223
432
+ #: includes/class-wp-mobile-menu-options.php:2726
433
+ msgid "Header"
 
434
  msgstr ""
435
 
436
+ #: includes/class-wp-mobile-menu-options.php:227
437
+ msgid "Footer"
 
 
438
  msgstr ""
439
 
440
+ #: includes/class-wp-mobile-menu-options.php:231
441
+ #: includes/class-wp-mobile-menu-options.php:1235
442
+ msgid "Left Menu"
443
  msgstr ""
444
 
445
+ #: includes/class-wp-mobile-menu-options.php:234
446
+ #: includes/class-wp-mobile-menu-options.php:1631
447
+ msgid "Right Menu"
448
  msgstr ""
449
 
450
+ #: includes/class-wp-mobile-menu-options.php:246
451
+ msgid "Colors"
452
  msgstr ""
453
 
454
+ #: includes/class-wp-mobile-menu-options.php:249
455
+ msgid "Fonts"
456
  msgstr ""
457
 
458
+ #: includes/class-wp-mobile-menu-options.php:252
459
+ msgid "Documentation"
460
  msgstr ""
461
 
462
+ #: includes/class-wp-mobile-menu-options.php:272
463
+ msgid "Woocommerce Menu Font"
464
  msgstr ""
465
 
466
+ #: includes/class-wp-mobile-menu-options.php:275
467
+ #: includes/class-wp-mobile-menu-options.php:870
468
+ #: includes/class-wp-mobile-menu-options.php:982
469
+ #: includes/class-wp-mobile-menu-options.php:1187
470
+ #: includes/class-wp-mobile-menu-options.php:1289
471
+ #: includes/class-wp-mobile-menu-options.php:1560
472
+ #: includes/class-wp-mobile-menu-options.php:1594
473
+ #: includes/class-wp-mobile-menu-options.php:1696
474
+ #: includes/class-wp-mobile-menu-options.php:1955
475
+ msgid "Select a style"
476
  msgstr ""
477
 
478
+ #: includes/class-wp-mobile-menu-options.php:296
479
+ msgid "Mobile Menu Visibility(Width Trigger)"
480
  msgstr ""
481
 
482
+ #: includes/class-wp-mobile-menu-options.php:299
483
+ msgid ""
484
+ "The Mobile menu will appear at this window size. Place it at 5000 to be "
485
+ "always visible. "
486
  msgstr ""
487
 
488
+ #: includes/class-wp-mobile-menu-options.php:308
489
+ msgid ""
490
+ "The Width trigger field is very important because it determines the width "
491
+ "that will show the Mobile Menu. If you want it always visible set it to "
492
+ "5000px"
493
  msgstr ""
494
 
495
+ #: includes/class-wp-mobile-menu-options.php:313
496
+ msgid "Enable only in Mobile devices"
497
  msgstr ""
498
 
499
+ #: includes/class-wp-mobile-menu-options.php:317
500
+ msgid ""
501
+ "Enable only in Mobiles devices. This will disable the Mobile Menu Visibilty "
502
+ "option above (using resolution width trigger)."
503
  msgstr ""
504
 
505
+ #: includes/class-wp-mobile-menu-options.php:318
506
+ #: includes/class-wp-mobile-menu-options.php:329
507
+ #: includes/class-wp-mobile-menu-options.php:340
508
+ #: includes/class-wp-mobile-menu-options.php:353
509
+ #: includes/class-wp-mobile-menu-options.php:435
510
+ #: includes/class-wp-mobile-menu-options.php:446
511
+ #: includes/class-wp-mobile-menu-options.php:2674
512
+ #: includes/class-wp-mobile-menu-options.php:2685
513
+ #: includes/class-wp-mobile-menu-options.php:2696
514
+ #: includes/class-wp-mobile-menu-options.php:2707
515
+ msgid "On"
516
  msgstr ""
517
 
518
+ #: includes/class-wp-mobile-menu-options.php:319
519
+ #: includes/class-wp-mobile-menu-options.php:330
520
+ #: includes/class-wp-mobile-menu-options.php:341
521
+ #: includes/class-wp-mobile-menu-options.php:354
522
+ #: includes/class-wp-mobile-menu-options.php:436
523
+ #: includes/class-wp-mobile-menu-options.php:447
524
+ #: includes/class-wp-mobile-menu-options.php:2675
525
+ #: includes/class-wp-mobile-menu-options.php:2686
526
+ #: includes/class-wp-mobile-menu-options.php:2697
527
+ #: includes/class-wp-mobile-menu-options.php:2708
528
+ msgid "Off"
529
  msgstr ""
530
 
531
+ #: includes/class-wp-mobile-menu-options.php:324
532
+ msgid "Enable Left Menu"
533
  msgstr ""
534
 
535
+ #: includes/class-wp-mobile-menu-options.php:328
536
+ msgid "Enable or disable the WP Mobile Menu Left Menu."
537
  msgstr ""
538
 
539
+ #: includes/class-wp-mobile-menu-options.php:335
540
+ msgid "Enable Right Menu"
 
541
  msgstr ""
542
 
543
+ #: includes/class-wp-mobile-menu-options.php:339
544
+ msgid "Enable or disable the WP Mobile Menu without deactivate the plugin."
545
  msgstr ""
546
 
547
+ #: includes/class-wp-mobile-menu-options.php:348
548
+ msgid "Enable Footer Menu"
549
  msgstr ""
550
 
551
+ #: includes/class-wp-mobile-menu-options.php:352
552
+ msgid "Enable or disable the Footer Menu."
553
  msgstr ""
554
 
555
+ #: includes/class-wp-mobile-menu-options.php:359
556
+ msgid "Hide Original Menu/header"
557
  msgstr ""
558
 
559
+ #: includes/class-wp-mobile-menu-options.php:365
560
+ msgid ""
561
+ "If you need help identifying the correct elements just send us an email to "
562
+ "<a href=\"mailto:support@wpmobilemenu.com\">support@wpmobilemenu.com</a> "
563
+ "with your site url and a screenshot of the element you want to hide. We "
564
+ "reply fast."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-mobile-menu-options.php:371
568
+ msgid "Hide Elements"
569
+ msgstr ""
570
+
571
+ #: includes/class-wp-mobile-menu-options.php:375
572
+ msgid ""
573
+ "<p>This will hide the desired elements when the Mobile menu is trigerred at "
574
+ "the chosen width.</p><p>You can use css class or IDs.</p><p> Example: .menu ,"
575
+ " #nav</p>"
576
+ msgstr ""
577
+
578
+ #: includes/class-wp-mobile-menu-options.php:379
579
+ msgid "Hide elements by default"
580
+ msgstr ""
581
+
582
+ #: includes/class-wp-mobile-menu-options.php:382
583
+ msgid "Check the desired elements"
584
+ msgstr ""
585
+
586
+ #: includes/class-wp-mobile-menu-options.php:399
587
+ msgid "Miscelaneous Options"
588
+ msgstr ""
589
+
590
+ #: includes/class-wp-mobile-menu-options.php:405
591
+ msgid "Menu Display Type"
592
+ msgstr ""
593
+
594
+ #: includes/class-wp-mobile-menu-options.php:408
595
+ msgid "Choose the display type for the mobile menu."
596
+ msgstr ""
597
+
598
+ #: includes/class-wp-mobile-menu-options.php:417
599
+ msgid "Enable Over Effects"
600
+ msgstr ""
601
+
602
+ #: includes/class-wp-mobile-menu-options.php:420
603
+ msgid "Select an option"
604
+ msgstr ""
605
+
606
+ #: includes/class-wp-mobile-menu-options.php:422
607
+ msgid "Enabled"
608
+ msgstr ""
609
+
610
+ #: includes/class-wp-mobile-menu-options.php:423
611
+ #: includes/class-wp-mobile-menu-options.php:2720
612
+ msgid "Disabled"
613
+ msgstr ""
614
+
615
+ #: includes/class-wp-mobile-menu-options.php:430
616
+ msgid "Sliding Submenus."
617
+ msgstr ""
618
+
619
+ #: includes/class-wp-mobile-menu-options.php:433
620
+ msgid "When you open a submenu it automatically slides."
621
+ msgstr ""
622
+
623
+ #: includes/class-wp-mobile-menu-options.php:441
624
+ msgid "Automatically Close Submenus."
625
+ msgstr ""
626
+
627
+ #: includes/class-wp-mobile-menu-options.php:444
628
+ msgid ""
629
+ "When you open a submenu it automatically closes the other submenus that are "
630
+ "open."
631
+ msgstr ""
632
+
633
+ #: includes/class-wp-mobile-menu-options.php:452
634
+ msgid "Menu Items Border Size"
635
+ msgstr ""
636
+
637
+ #: includes/class-wp-mobile-menu-options.php:456
638
+ msgid ""
639
+ "Choose the size of the menu items border.<a href=\"/wp-admin/admin.php?"
640
+ "page=mobile-menu-options&tab=colors\" target=\"_blank\">Click here</a> to "
641
+ "adjust the color."
642
+ msgstr ""
643
+
644
+ #: includes/class-wp-mobile-menu-options.php:464
645
+ msgid "Close Icon"
646
+ msgstr ""
647
+
648
+ #: includes/class-wp-mobile-menu-options.php:467
649
+ #: includes/class-wp-mobile-menu-options.php:488
650
+ #: includes/class-wp-mobile-menu-options.php:497
651
+ #: includes/class-wp-mobile-menu-options.php:1372
652
+ #: includes/class-wp-mobile-menu-options.php:1768
653
+ #: includes/class-wp-mobile-menu-options.php:2762
654
+ #: includes/class-wp-mobile-menu-options.php:2822
655
+ msgid ""
656
+ "<div class=\"mobmenu-icon-holder\"></div><a href=\"#\" class=\"mobmenu-icon-"
657
+ "picker button\">Select menu icon</a>"
658
+ msgstr ""
659
+
660
+ #: includes/class-wp-mobile-menu-options.php:473
661
+ msgid "Close Icon Font Size"
662
+ msgstr ""
663
+
664
+ #: includes/class-wp-mobile-menu-options.php:476
665
+ msgid "Enter the Close Icon Font Size"
666
+ msgstr ""
667
+
668
+ #: includes/class-wp-mobile-menu-options.php:485
669
+ msgid "Submenu Open Icon"
670
+ msgstr ""
671
+
672
+ #: includes/class-wp-mobile-menu-options.php:494
673
+ msgid "Submenu Close Icon"
674
+ msgstr ""
675
+
676
+ #: includes/class-wp-mobile-menu-options.php:503
677
+ msgid "Submenu Icon Font Size"
678
+ msgstr ""
679
+
680
+ #: includes/class-wp-mobile-menu-options.php:506
681
+ msgid "Enter the Submenu Icon Font Size"
682
+ msgstr ""
683
+
684
+ #: includes/class-wp-mobile-menu-options.php:514
685
+ msgid "Advanced Options"
686
+ msgstr ""
687
+
688
+ #: includes/class-wp-mobile-menu-options.php:520
689
+ msgid "Sticky Html Elements"
690
+ msgstr ""
691
+
692
+ #: includes/class-wp-mobile-menu-options.php:524
693
+ msgid ""
694
+ "<p>If you are having issues with sticky elements that dont assume a sticky "
695
+ "behaviour, enter the ids or class name that identify that element.</p>"
696
+ msgstr ""
697
+
698
+ #: includes/class-wp-mobile-menu-options.php:529
699
+ msgid "Custom CSS"
700
+ msgstr ""
701
+
702
+ #: includes/class-wp-mobile-menu-options.php:532
703
+ msgid "Put your custom CSS rules here"
704
+ msgstr ""
705
+
706
+ #: includes/class-wp-mobile-menu-options.php:538
707
+ msgid "Custom JS"
708
+ msgstr ""
709
+
710
+ #: includes/class-wp-mobile-menu-options.php:541
711
+ msgid "Put your custom JS rules here"
712
+ msgstr ""
713
+
714
+ #: includes/class-wp-mobile-menu-options.php:550
715
+ msgid "Disable Mobile Menu on selected pages"
716
+ msgstr ""
717
+
718
+ #: includes/class-wp-mobile-menu-options.php:553
719
+ msgid "Select a page"
720
+ msgstr ""
721
+
722
+ #: includes/class-wp-mobile-menu-options.php:559
723
+ msgid "Import/Export Options"
724
+ msgstr ""
725
+
726
+ #: includes/class-wp-mobile-menu-options.php:565
727
+ msgid "Export Settings"
728
+ msgstr ""
729
+
730
+ #: includes/class-wp-mobile-menu-options.php:567
731
+ msgid "Export"
732
+ msgstr ""
733
+
734
+ #: includes/class-wp-mobile-menu-options.php:572
735
+ msgid "Import Settings"
736
+ msgstr ""
737
+
738
+ #: includes/class-wp-mobile-menu-options.php:579
739
+ msgid "Main options"
740
+ msgstr ""
741
+
742
+ #: includes/class-wp-mobile-menu-options.php:586
743
+ msgid "Header Elements Position"
744
+ msgstr ""
745
+
746
+ #: includes/class-wp-mobile-menu-options.php:589
747
+ msgid "Drag and Drop to reorder of the icons and logo in the Mobile Header."
748
+ msgstr ""
749
+
750
+ #: includes/class-wp-mobile-menu-options.php:597
751
+ msgid "Sticky Header"
752
+ msgstr ""
753
+
754
+ #: includes/class-wp-mobile-menu-options.php:601
755
+ msgid ""
756
+ "Choose if you want to have the Header Fixed or scrolling with the content."
757
+ msgstr ""
758
+
759
+ #: includes/class-wp-mobile-menu-options.php:602
760
+ #: includes/class-wp-mobile-menu-options.php:613
761
+ #: includes/class-wp-mobile-menu-options.php:623
762
+ #: includes/class-wp-mobile-menu-options.php:635
763
+ #: includes/class-wp-mobile-menu-options.php:724
764
+ #: includes/class-wp-mobile-menu-options.php:905
765
+ #: includes/class-wp-mobile-menu-options.php:1015
766
+ #: includes/class-wp-mobile-menu-options.php:1030
767
+ #: includes/class-wp-mobile-menu-options.php:1125
768
+ #: includes/class-wp-mobile-menu-options.php:1250
769
+ #: includes/class-wp-mobile-menu-options.php:1646
770
+ msgid "Yes"
771
+ msgstr ""
772
+
773
+ #: includes/class-wp-mobile-menu-options.php:603
774
+ #: includes/class-wp-mobile-menu-options.php:614
775
+ #: includes/class-wp-mobile-menu-options.php:624
776
+ #: includes/class-wp-mobile-menu-options.php:636
777
+ #: includes/class-wp-mobile-menu-options.php:725
778
+ #: includes/class-wp-mobile-menu-options.php:785
779
+ #: includes/class-wp-mobile-menu-options.php:906
780
+ #: includes/class-wp-mobile-menu-options.php:1016
781
+ #: includes/class-wp-mobile-menu-options.php:1031
782
+ #: includes/class-wp-mobile-menu-options.php:1126
783
+ #: includes/class-wp-mobile-menu-options.php:1251
784
+ #: includes/class-wp-mobile-menu-options.php:1647
785
+ msgid "No"
786
+ msgstr ""
787
+
788
+ #: includes/class-wp-mobile-menu-options.php:608
789
+ msgid "Naked Header"
790
+ msgstr ""
791
+
792
+ #: includes/class-wp-mobile-menu-options.php:612
793
+ msgid ""
794
+ "Choose if you want to display a naked header with no background "
795
+ "color(transparent)."
796
+ msgstr ""
797
+
798
+ #: includes/class-wp-mobile-menu-options.php:618
799
+ msgid "Disable Logo/Text"
800
+ msgstr ""
801
+
802
+ #: includes/class-wp-mobile-menu-options.php:622
803
+ msgid ""
804
+ "Choose if you want to disable the logo/text so it will only display the menu "
805
+ "icons in the header."
806
+ msgstr ""
807
+
808
+ #: includes/class-wp-mobile-menu-options.php:630
809
+ msgid "Auto-hide Header when scrolling down."
810
+ msgstr ""
811
+
812
+ #: includes/class-wp-mobile-menu-options.php:634
813
+ msgid ""
814
+ "Choose if you want to hide the header when scrolling down. It will reapear "
815
+ "when you scroll up."
816
+ msgstr ""
817
+
818
+ #: includes/class-wp-mobile-menu-options.php:641
819
+ msgid "Logo options"
820
+ msgstr ""
821
+
822
+ #: includes/class-wp-mobile-menu-options.php:647
823
+ #: includes/class-wp-mobile-menu-options.php:679
824
+ msgid "Site Logo"
825
+ msgstr ""
826
+
827
+ #: includes/class-wp-mobile-menu-options.php:651
828
+ msgid "Choose if you want to display an image has logo or text instead."
829
+ msgstr ""
830
+
831
+ #: includes/class-wp-mobile-menu-options.php:652
832
+ #: includes/class-wp-mobile-menu-options.php:658
833
+ #: includes/class-wp-mobile-menu-options.php:665
834
+ #: includes/class-wp-mobile-menu-options.php:689
835
+ msgid "Logo"
836
+ msgstr ""
837
+
838
+ #: includes/class-wp-mobile-menu-options.php:653
839
+ #: includes/class-wp-mobile-menu-options.php:659
840
+ #: includes/class-wp-mobile-menu-options.php:666
841
+ msgid "Text"
842
+ msgstr ""
843
+
844
+ #: includes/class-wp-mobile-menu-options.php:660
845
+ msgid "Logo + Text"
846
+ msgstr ""
847
+
848
+ #: includes/class-wp-mobile-menu-options.php:661
849
+ msgid "Text + Logo"
850
+ msgstr ""
851
+
852
+ #: includes/class-wp-mobile-menu-options.php:682
853
+ msgid "Chose the Header Branding ( Logo/Text )."
854
+ msgstr ""
855
+
856
+ #: includes/class-wp-mobile-menu-options.php:692
857
+ msgid "Upload your logo image"
858
+ msgstr ""
859
+
860
+ #: includes/class-wp-mobile-menu-options.php:698
861
+ msgid "Logo Height"
862
+ msgstr ""
863
+
864
+ #: includes/class-wp-mobile-menu-options.php:701
865
+ msgid "Enter the height of the logo"
866
+ msgstr ""
867
+
868
+ #: includes/class-wp-mobile-menu-options.php:710
869
+ msgid "Logo Retina"
870
+ msgstr ""
871
+
872
+ #: includes/class-wp-mobile-menu-options.php:713
873
+ msgid "Upload your logo image for retina devices"
874
+ msgstr ""
875
+
876
+ #: includes/class-wp-mobile-menu-options.php:719
877
+ msgid "Disable Logo URL "
878
+ msgstr ""
879
+
880
+ #: includes/class-wp-mobile-menu-options.php:723
881
+ msgid ""
882
+ "Choose if you want to disable the logo url to avoid being redirect to the "
883
+ "homepage or alternative home url when touching the header logo."
884
+ msgstr ""
885
+
886
+ #: includes/class-wp-mobile-menu-options.php:730
887
+ msgid "Alternative Logo URL"
888
+ msgstr ""
889
+
890
+ #: includes/class-wp-mobile-menu-options.php:733
891
+ msgid ""
892
+ "Enter you alternative logo URL. If you leave it blank it will use the Site "
893
+ "URL."
894
+ msgstr ""
895
+
896
+ #: includes/class-wp-mobile-menu-options.php:739
897
+ msgid "Logo/Text Top Margin"
898
+ msgstr ""
899
+
900
+ #: includes/class-wp-mobile-menu-options.php:742
901
+ msgid "Enter the logo/text top margin"
902
+ msgstr ""
903
+
904
+ #: includes/class-wp-mobile-menu-options.php:750
905
+ msgid "Header options"
906
+ msgstr ""
907
+
908
+ #: includes/class-wp-mobile-menu-options.php:756
909
+ msgid "Header Height"
910
+ msgstr ""
911
+
912
+ #: includes/class-wp-mobile-menu-options.php:759
913
+ msgid "Enter the height of the header"
914
+ msgstr ""
915
+
916
+ #: includes/class-wp-mobile-menu-options.php:768
917
+ msgid "Header Text"
918
+ msgstr ""
919
+
920
+ #: includes/class-wp-mobile-menu-options.php:771
921
+ msgid ""
922
+ "Enter the desired text for the Mobile Header. If not specified it will use "
923
+ "the site title."
924
+ msgstr ""
925
+
926
+ #: includes/class-wp-mobile-menu-options.php:780
927
+ msgid "Use page title text"
928
+ msgstr ""
929
+
930
+ #: includes/class-wp-mobile-menu-options.php:783
931
+ msgid "Chose if you want to display the page Title in the Header/Banner."
932
+ msgstr ""
933
+
934
+ #: includes/class-wp-mobile-menu-options.php:795
935
+ msgid "Header Text Font Size"
936
+ msgstr ""
937
+
938
+ #: includes/class-wp-mobile-menu-options.php:798
939
+ msgid "Enter the header text font size"
940
+ msgstr ""
941
+
942
+ #: includes/class-wp-mobile-menu-options.php:813
943
+ #: includes/class-wp-mobile-menu-options.php:948
944
+ #: includes/class-wp-mobile-menu-options.php:1045
945
+ msgid "Center"
946
+ msgstr ""
947
+
948
+ #: includes/class-wp-mobile-menu-options.php:821
949
+ msgid "Header Logo/Text Left Margin"
950
+ msgstr ""
951
+
952
+ #: includes/class-wp-mobile-menu-options.php:824
953
+ msgid ""
954
+ "Enter the header Logo/Text left margin (only used whit Header Left Alignment)"
955
+ msgstr ""
956
+
957
+ #: includes/class-wp-mobile-menu-options.php:835
958
+ msgid "Header Logo/Text Spacing"
959
+ msgstr ""
960
+
961
+ #: includes/class-wp-mobile-menu-options.php:838
962
+ msgid ""
963
+ "Enter the header Logo/Text spacing between the Logo and the Text(it only "
964
+ "applies when you have both in the site logo)"
965
+ msgstr ""
966
+
967
+ #: includes/class-wp-mobile-menu-options.php:848
968
+ msgid "Header Logo/Text Right Margin"
969
+ msgstr ""
970
+
971
+ #: includes/class-wp-mobile-menu-options.php:851
972
+ msgid ""
973
+ "Enter the header Logo/Text right margin (only used whit Header Right "
974
+ "Alignment)"
975
+ msgstr ""
976
+
977
+ #: includes/class-wp-mobile-menu-options.php:867
978
  msgid "Header Menu Font"
979
  msgstr ""
980
 
981
+ #: includes/class-wp-mobile-menu-options.php:894
982
+ msgid "Header Banner options"
983
+ msgstr ""
984
+
985
+ #: includes/class-wp-mobile-menu-options.php:900
986
+ msgid "Enable Header Banner"
987
+ msgstr ""
988
+
989
+ #: includes/class-wp-mobile-menu-options.php:904
990
+ #: includes/class-wp-mobile-menu-options.php:1014
991
+ msgid "Choose if you want to enable the Header Banner."
992
+ msgstr ""
993
+
994
+ #: includes/class-wp-mobile-menu-options.php:911
995
+ msgid "Header Banner Position"
996
+ msgstr ""
997
+
998
+ #: includes/class-wp-mobile-menu-options.php:915
999
+ msgid "Choose the position of the Header Banner."
1000
+ msgstr ""
1001
+
1002
+ #: includes/class-wp-mobile-menu-options.php:916
1003
+ msgid "Above Header"
1004
+ msgstr ""
1005
+
1006
+ #: includes/class-wp-mobile-menu-options.php:917
1007
+ msgid "Below Header"
1008
+ msgstr ""
1009
+
1010
+ #: includes/class-wp-mobile-menu-options.php:922
1011
+ msgid "Header Banner Content"
1012
+ msgstr ""
1013
+
1014
+ #: includes/class-wp-mobile-menu-options.php:925
1015
+ msgid "Enter the banner header content, you can use HTML and Shortcodes."
1016
+ msgstr ""
1017
+
1018
+ #: includes/class-wp-mobile-menu-options.php:930
1019
+ msgid "Header Banner Height"
1020
+ msgstr ""
1021
+
1022
+ #: includes/class-wp-mobile-menu-options.php:933
1023
+ msgid "Enter the height of the header banner"
1024
+ msgstr ""
1025
+
1026
+ #: includes/class-wp-mobile-menu-options.php:942
1027
+ msgid "Header Banner Alignment"
1028
+ msgstr ""
1029
+
1030
+ #: includes/class-wp-mobile-menu-options.php:945
1031
+ msgid "Chose the header Banner alignment."
1032
+ msgstr ""
1033
+
1034
+ #: includes/class-wp-mobile-menu-options.php:956
1035
+ msgid "Header Banner Left Padding"
1036
+ msgstr ""
1037
+
1038
+ #: includes/class-wp-mobile-menu-options.php:959
1039
+ msgid ""
1040
+ "Enter the header banner left padding (only used whit Header Banner Left "
1041
+ "Alignment)"
1042
+ msgstr ""
1043
+
1044
+ #: includes/class-wp-mobile-menu-options.php:968
1045
+ msgid "Header Banner Right Padding"
1046
+ msgstr ""
1047
+
1048
+ #: includes/class-wp-mobile-menu-options.php:971
1049
+ msgid ""
1050
+ "Enter the header banner right padding (only used whit Header Banner Right "
1051
+ "Alignment)"
1052
+ msgstr ""
1053
+
1054
+ #: includes/class-wp-mobile-menu-options.php:979
1055
+ msgid "Header Banner Font"
1056
+ msgstr ""
1057
+
1058
+ #: includes/class-wp-mobile-menu-options.php:1004
1059
+ msgid "Header Search options"
1060
+ msgstr ""
1061
+
1062
+ #: includes/class-wp-mobile-menu-options.php:1010
1063
+ msgid "Enable Header Search"
1064
+ msgstr ""
1065
+
1066
+ #: includes/class-wp-mobile-menu-options.php:1021
1067
+ msgid "Header Elements Order "
1068
+ msgstr ""
1069
+
1070
+ #: includes/class-wp-mobile-menu-options.php:1023
1071
+ msgid ""
1072
+ "<p style=\"font-weight:bold;font-style:italic;color:blue;\">Go to the top of "
1073
+ "this page and set the position to the search icon.</p>"
1074
+ msgstr ""
1075
+
1076
+ #: includes/class-wp-mobile-menu-options.php:1027
1077
+ msgid "Live Search (AJax)"
1078
+ msgstr ""
1079
+
1080
+ #: includes/class-wp-mobile-menu-options.php:1039
1081
+ msgid "Search Results Alignment"
1082
+ msgstr ""
1083
+
1084
+ #: includes/class-wp-mobile-menu-options.php:1042
1085
+ msgid "Chose the search results alignment."
1086
+ msgstr ""
1087
+
1088
+ #: includes/class-wp-mobile-menu-options.php:1053
1089
+ msgid "Search Icon Image"
1090
+ msgstr ""
1091
+
1092
+ #: includes/class-wp-mobile-menu-options.php:1057
1093
+ msgid "Upload your search icon image"
1094
+ msgstr ""
1095
+
1096
+ #: includes/class-wp-mobile-menu-options.php:1063
1097
+ msgid "Search Icon Top Margin"
1098
+ msgstr ""
1099
+
1100
+ #: includes/class-wp-mobile-menu-options.php:1066
1101
+ msgid "Enter the Search Icon Top Margin"
1102
+ msgstr ""
1103
+
1104
+ #: includes/class-wp-mobile-menu-options.php:1075
1105
+ msgid "Search Icon Font Size"
1106
+ msgstr ""
1107
+
1108
+ #: includes/class-wp-mobile-menu-options.php:1078
1109
+ msgid "Enter the Search Icon Font Size"
1110
+ msgstr ""
1111
+
1112
+ #: includes/class-wp-mobile-menu-options.php:1087
1113
+ msgid "Use text instead Icon"
1114
+ msgstr ""
1115
+
1116
+ #: includes/class-wp-mobile-menu-options.php:1090
1117
+ msgid ""
1118
+ "Fill this field with the text that will show up in the submit button of the "
1119
+ "search form. Clear this field to use the search icon."
1120
+ msgstr ""
1121
+
1122
+ #: includes/class-wp-mobile-menu-options.php:1096
1123
+ msgid "Placeholder Text"
1124
+ msgstr ""
1125
+
1126
+ #: includes/class-wp-mobile-menu-options.php:1099
1127
+ msgid ""
1128
+ "Fill this field with the text that will show up in search input field "
1129
+ "placeholder."
1130
+ msgstr ""
1131
+
1132
+ #: includes/class-wp-mobile-menu-options.php:1100
1133
+ msgid "Search"
1134
+ msgstr ""
1135
+
1136
+ #: includes/class-wp-mobile-menu-options.php:1110
1137
+ msgid "Footer Menu"
1138
+ msgstr ""
1139
+
1140
+ #: includes/class-wp-mobile-menu-options.php:1113
1141
+ msgid "Select the menu that will appear in the footer."
1142
+ msgstr ""
1143
+
1144
+ #: includes/class-wp-mobile-menu-options.php:1120
1145
+ msgid "Auto-hide Footer when scrolling Up."
1146
+ msgstr ""
1147
+
1148
+ #: includes/class-wp-mobile-menu-options.php:1124
1149
+ msgid ""
1150
+ "Choose if you want to hide the footer when scrolling up. It will reapear "
1151
+ "when you scroll down."
1152
+ msgstr ""
1153
+
1154
+ #: includes/class-wp-mobile-menu-options.php:1139
1155
+ msgid "Footer Style"
1156
  msgstr ""
1157
 
1158
+ #: includes/class-wp-mobile-menu-options.php:1142
1159
+ msgid "Chose the Footer Menu Style ( Icon/Text )."
1160
  msgstr ""
1161
 
1162
+ #: includes/class-wp-mobile-menu-options.php:1148
1163
+ msgid "Footer Padding"
1164
  msgstr ""
1165
 
1166
+ #: includes/class-wp-mobile-menu-options.php:1151
1167
+ msgid ""
1168
+ "This will determine the height of the footer together with the icon and text "
1169
+ "size."
1170
  msgstr ""
1171
 
1172
+ #: includes/class-wp-mobile-menu-options.php:1160
1173
+ #: includes/class-wp-mobile-menu-options.php:1378
1174
+ #: includes/class-wp-mobile-menu-options.php:1774
1175
+ #: includes/class-wp-mobile-menu-options.php:2828
1176
+ msgid "Icon Font Size"
1177
  msgstr ""
1178
 
1179
+ #: includes/class-wp-mobile-menu-options.php:1163
1180
+ msgid "Enter the Icon Font Size"
1181
  msgstr ""
1182
 
1183
+ #: includes/class-wp-mobile-menu-options.php:1172
1184
+ msgid "Text Line Height"
1185
  msgstr ""
1186
 
1187
+ #: includes/class-wp-mobile-menu-options.php:1175
1188
+ msgid ""
1189
+ "Enter the Text Line Height. Is useful to control the vertical space between "
1190
+ "the icon and the text."
1191
  msgstr ""
1192
 
1193
+ #: includes/class-wp-mobile-menu-options.php:1184
1194
+ msgid "Footer Text Font"
 
1195
  msgstr ""
1196
 
1197
+ #: includes/class-wp-mobile-menu-options.php:1209
1198
+ msgid "Footer Text Font/Size"
1199
+ msgstr ""
1200
+
1201
+ #: includes/class-wp-mobile-menu-options.php:1220
1202
+ msgid "Left Menu Content"
1203
+ msgstr ""
1204
+
1205
+ #: includes/class-wp-mobile-menu-options.php:1223
1206
+ #: includes/class-wp-mobile-menu-options.php:1619
1207
+ msgid "Drag and Drop to reorder of the content of the Left Panel."
1208
+ msgstr ""
1209
+
1210
+ #: includes/class-wp-mobile-menu-options.php:1238
1211
+ msgid "Select the menu that will open in the left side."
1212
+ msgstr ""
1213
+
1214
+ #: includes/class-wp-mobile-menu-options.php:1245
1215
+ #: includes/class-wp-mobile-menu-options.php:1641
1216
+ msgid "Parent Link open submenu"
1217
+ msgstr ""
1218
+
1219
+ #: includes/class-wp-mobile-menu-options.php:1249
1220
+ #: includes/class-wp-mobile-menu-options.php:1645
1221
+ msgid ""
1222
+ "Choose if you want to open the submenu by click in the Parent Menu item."
1223
+ msgstr ""
1224
+
1225
+ #: includes/class-wp-mobile-menu-options.php:1259
1226
+ #: includes/class-wp-mobile-menu-options.php:1655
1227
+ msgid "Only visible for logged users"
1228
+ msgstr ""
1229
+
1230
+ #: includes/class-wp-mobile-menu-options.php:1263
1231
+ msgid "Enable the left menu for logged in users only."
1232
+ msgstr ""
1233
+
1234
+ #: includes/class-wp-mobile-menu-options.php:1271
1235
+ #: includes/class-wp-mobile-menu-options.php:1667
1236
+ msgid "Menu Icon"
1237
+ msgstr ""
1238
+
1239
+ #: includes/class-wp-mobile-menu-options.php:1277
1240
+ msgid "Text After Icon"
1241
+ msgstr ""
1242
+
1243
+ #: includes/class-wp-mobile-menu-options.php:1280
1244
+ msgid "Enter the text that will appear after the Icon."
1245
+ msgstr ""
1246
+
1247
+ #: includes/class-wp-mobile-menu-options.php:1286
1248
+ msgid "Text After Icon Font"
1249
+ msgstr ""
1250
+
1251
+ #: includes/class-wp-mobile-menu-options.php:1309
1252
+ #: includes/class-wp-mobile-menu-options.php:1682
1253
  msgid "Icon Action"
1254
  msgstr ""
1255
 
1256
+ #: includes/class-wp-mobile-menu-options.php:1313
1257
+ msgid "Open the Left Menu Panel or open a Link url."
1258
+ msgstr ""
1259
+
1260
+ #: includes/class-wp-mobile-menu-options.php:1314
1261
+ #: includes/class-wp-mobile-menu-options.php:1687
1262
+ msgid "Open Menu"
1263
+ msgstr ""
1264
+
1265
+ #: includes/class-wp-mobile-menu-options.php:1315
1266
+ #: includes/class-wp-mobile-menu-options.php:1688
1267
+ msgid "Open Link Url"
1268
+ msgstr ""
1269
+
1270
+ #: includes/class-wp-mobile-menu-options.php:1320
1271
+ #: includes/class-wp-mobile-menu-options.php:1717
1272
+ msgid "Icon Link URL"
1273
+ msgstr ""
1274
+
1275
+ #: includes/class-wp-mobile-menu-options.php:1323
1276
+ #: includes/class-wp-mobile-menu-options.php:1720
1277
+ msgid "Enter the Icon Link Url."
1278
+ msgstr ""
1279
+
1280
+ #: includes/class-wp-mobile-menu-options.php:1329
1281
+ #: includes/class-wp-mobile-menu-options.php:1726
1282
+ msgid "Icon Link Url Target"
1283
+ msgstr ""
1284
+
1285
+ #: includes/class-wp-mobile-menu-options.php:1333
1286
+ #: includes/class-wp-mobile-menu-options.php:1730
1287
+ msgid "Choose it the link will open in the same window or in the new window."
1288
+ msgstr ""
1289
+
1290
+ #: includes/class-wp-mobile-menu-options.php:1346
1291
+ #: includes/class-wp-mobile-menu-options.php:1743
1292
+ #: includes/class-wp-mobile-menu-options.php:2808
1293
+ msgid "Icon Type"
1294
+ msgstr ""
1295
+
1296
+ #: includes/class-wp-mobile-menu-options.php:1350
1297
+ #: includes/class-wp-mobile-menu-options.php:1747
1298
+ msgid "Choose if you want to display an image, icon or an animated icon."
1299
  msgstr ""
1300
 
 
1301
  #: includes/class-wp-mobile-menu-options.php:1358
1302
+ #: includes/class-wp-mobile-menu-options.php:1754
1303
+ msgid "Icon Animation Type"
1304
  msgstr ""
1305
 
1306
+ #: includes/class-wp-mobile-menu-options.php:1362
1307
+ #: includes/class-wp-mobile-menu-options.php:1758
1308
+ msgid "Only for the animated icon."
1309
+ msgstr ""
1310
+
1311
+ #: includes/class-wp-mobile-menu-options.php:1369
1312
+ #: includes/class-wp-mobile-menu-options.php:1765
1313
+ #: includes/class-wp-mobile-menu-options.php:2814
1314
+ #: includes/class-wp-mobile-menu-options.php:2819
1315
+ msgid "Icon Font"
1316
+ msgstr ""
1317
+
1318
+ #: includes/class-wp-mobile-menu-options.php:1381
1319
+ msgid "Enter the Left Icon Font Size"
1320
+ msgstr ""
1321
+
1322
+ #: includes/class-wp-mobile-menu-options.php:1390
1323
+ #: includes/class-wp-mobile-menu-options.php:1786
1324
+ #: includes/class-wp-mobile-menu-options.php:2840
1325
  msgid "Icon Image"
1326
  msgstr ""
1327
 
1328
+ #: includes/class-wp-mobile-menu-options.php:1394
1329
+ msgid "Upload your left menu icon image"
1330
+ msgstr ""
1331
+
1332
+ #: includes/class-wp-mobile-menu-options.php:1400
1333
+ #: includes/class-wp-mobile-menu-options.php:1795
1334
+ msgid "Icon Top Margin"
1335
+ msgstr ""
1336
+
1337
+ #: includes/class-wp-mobile-menu-options.php:1403
1338
+ msgid "Enter the Left Icon Top Margin"
1339
+ msgstr ""
1340
+
1341
+ #: includes/class-wp-mobile-menu-options.php:1412
1342
  msgid "Icon Left Margin"
1343
  msgstr ""
1344
 
1345
+ #: includes/class-wp-mobile-menu-options.php:1415
1346
+ msgid "Enter the Left Icon Left Margin"
 
1347
  msgstr ""
1348
 
1349
+ #: includes/class-wp-mobile-menu-options.php:1428
1350
+ #: includes/class-wp-mobile-menu-options.php:1823
1351
+ msgid ""
1352
+ "The icon settings below are related with the icons that will appear next to "
1353
+ "the Menu items text."
1354
  msgstr ""
1355
 
1356
+ #: includes/class-wp-mobile-menu-options.php:1433
1357
+ #: includes/class-wp-mobile-menu-options.php:1828
1358
+ msgid "Menu Item Icons Position"
1359
  msgstr ""
1360
 
1361
+ #: includes/class-wp-mobile-menu-options.php:1438
1362
+ #: includes/class-wp-mobile-menu-options.php:1833
1363
+ msgid ""
1364
+ "Choose if you want the menu item icon to display at the left or right side "
1365
+ "of the menu items."
1366
  msgstr ""
1367
 
1368
+ #: includes/class-wp-mobile-menu-options.php:1443
1369
+ #: includes/class-wp-mobile-menu-options.php:1838
1370
+ msgid "Menu Item Icons Horizontal Padding"
 
1371
  msgstr ""
1372
 
1373
+ #: includes/class-wp-mobile-menu-options.php:1446
1374
+ msgid "Enter the Left Menu Item icons horizontal padding(pixels)"
1375
+ msgstr ""
1376
+
1377
+ #: includes/class-wp-mobile-menu-options.php:1455
1378
+ msgid "Left Panel options"
1379
+ msgstr ""
1380
+
1381
+ #: includes/class-wp-mobile-menu-options.php:1461
1382
+ #: includes/class-wp-mobile-menu-options.php:1857
1383
+ #: includes/class-wp-mobile-menu-options.php:2911
1384
+ msgid "Panel Background Image"
1385
+ msgstr ""
1386
+
1387
+ #: includes/class-wp-mobile-menu-options.php:1464
1388
+ msgid ""
1389
+ "Upload your left menu background image(this will override the Background "
1390
+ "color option)"
1391
+ msgstr ""
1392
+
1393
+ #: includes/class-wp-mobile-menu-options.php:1469
1394
+ #: includes/class-wp-mobile-menu-options.php:1865
1395
+ #: includes/class-wp-mobile-menu-options.php:2919
1396
+ msgid "Panel Background Image Opacity"
1397
+ msgstr ""
1398
+
1399
+ #: includes/class-wp-mobile-menu-options.php:1472
1400
+ #: includes/class-wp-mobile-menu-options.php:2922
1401
+ msgid "Enter the Left Background image opacity"
1402
+ msgstr ""
1403
+
1404
+ #: includes/class-wp-mobile-menu-options.php:1482
1405
+ #: includes/class-wp-mobile-menu-options.php:1878
1406
+ #: includes/class-wp-mobile-menu-options.php:2932
1407
+ msgid "Panel Background Image Size"
1408
+ msgstr ""
1409
+
1410
+ #: includes/class-wp-mobile-menu-options.php:1486
1411
+ #: includes/class-wp-mobile-menu-options.php:1881
1412
+ #: includes/class-wp-mobile-menu-options.php:2935
1413
+ msgid ""
1414
+ "Select the Background image size type. <a href=\"https://www.w3schools."
1415
+ "com/cssref/css3_pr_background-size.asp\" target=\"_blank\">See the CSS "
1416
+ "Documentation</a>"
1417
+ msgstr ""
1418
+
1419
+ #: includes/class-wp-mobile-menu-options.php:1488
1420
+ #: includes/class-wp-mobile-menu-options.php:1883
1421
+ #: includes/class-wp-mobile-menu-options.php:2937
1422
+ msgid "Auto"
1423
+ msgstr ""
1424
+
1425
+ #: includes/class-wp-mobile-menu-options.php:1489
1426
+ #: includes/class-wp-mobile-menu-options.php:1884
1427
+ #: includes/class-wp-mobile-menu-options.php:2938
1428
+ msgid "Contain"
1429
+ msgstr ""
1430
+
1431
+ #: includes/class-wp-mobile-menu-options.php:1490
1432
+ #: includes/class-wp-mobile-menu-options.php:1885
1433
+ #: includes/class-wp-mobile-menu-options.php:2939
1434
+ msgid "Cover"
1435
  msgstr ""
1436
 
1437
+ #: includes/class-wp-mobile-menu-options.php:1491
1438
+ #: includes/class-wp-mobile-menu-options.php:1886
1439
+ #: includes/class-wp-mobile-menu-options.php:2940
1440
  msgid "Inherit"
1441
  msgstr ""
1442
 
1443
+ #: includes/class-wp-mobile-menu-options.php:1492
1444
+ #: includes/class-wp-mobile-menu-options.php:1887
1445
+ #: includes/class-wp-mobile-menu-options.php:2941
1446
+ msgid "Initial"
1447
+ msgstr ""
1448
+
1449
+ #: includes/class-wp-mobile-menu-options.php:1493
1450
+ #: includes/class-wp-mobile-menu-options.php:1888
1451
+ #: includes/class-wp-mobile-menu-options.php:2942
1452
+ msgid "Unset"
1453
+ msgstr ""
1454
+
1455
+ #: includes/class-wp-mobile-menu-options.php:1500
1456
+ #: includes/class-wp-mobile-menu-options.php:1895
1457
+ #: includes/class-wp-mobile-menu-options.php:2949
1458
+ msgid "Panel Background Gradient Css"
1459
+ msgstr ""
1460
+
1461
+ #: includes/class-wp-mobile-menu-options.php:1503
1462
+ #: includes/class-wp-mobile-menu-options.php:1898
1463
+ #: includes/class-wp-mobile-menu-options.php:2952
1464
+ msgid ""
1465
+ "<a href=\"https://webgradients.com/\" target=\"_blank\">Click here</a> to "
1466
+ "get your desired Gradient, just press the copy button and paste in this "
1467
+ "field."
1468
+ msgstr ""
1469
+
1470
+ #: includes/class-wp-mobile-menu-options.php:1509
1471
+ #: includes/class-wp-mobile-menu-options.php:1904
1472
+ #: includes/class-wp-mobile-menu-options.php:2958
1473
+ msgid "Menu Panel Width Units"
1474
+ msgstr ""
1475
+
1476
+ #: includes/class-wp-mobile-menu-options.php:1513
1477
+ #: includes/class-wp-mobile-menu-options.php:1908
1478
+ #: includes/class-wp-mobile-menu-options.php:2962
1479
+ msgid "Choose the width units."
1480
+ msgstr ""
1481
+
1482
+ #: includes/class-wp-mobile-menu-options.php:1515
1483
+ #: includes/class-wp-mobile-menu-options.php:1910
1484
+ #: includes/class-wp-mobile-menu-options.php:2964
1485
+ msgid "Percentage"
1486
+ msgstr ""
1487
+
1488
+ #: includes/class-wp-mobile-menu-options.php:1520
1489
+ #: includes/class-wp-mobile-menu-options.php:1915
1490
+ #: includes/class-wp-mobile-menu-options.php:2969
1491
+ msgid "Menu Panel Width(Pixels)"
1492
+ msgstr ""
1493
+
1494
+ #: includes/class-wp-mobile-menu-options.php:1523
1495
+ #: includes/class-wp-mobile-menu-options.php:1535
1496
+ msgid "Enter the Left Menu Panel Width"
1497
+ msgstr ""
1498
+
1499
+ #: includes/class-wp-mobile-menu-options.php:1532
1500
+ #: includes/class-wp-mobile-menu-options.php:1927
1501
+ #: includes/class-wp-mobile-menu-options.php:2981
1502
+ msgid "Menu Panel Width(Percentage)"
1503
+ msgstr ""
1504
+
1505
+ #: includes/class-wp-mobile-menu-options.php:1544
1506
+ msgid "Left Menu Content Padding"
1507
+ msgstr ""
1508
+
1509
+ #: includes/class-wp-mobile-menu-options.php:1547
1510
+ msgid "Enter the Left Menu Content Padding"
1511
+ msgstr ""
1512
+
1513
+ #: includes/class-wp-mobile-menu-options.php:1557
1514
+ msgid "Left Menu Font"
1515
+ msgstr ""
1516
+
1517
+ #: includes/class-wp-mobile-menu-options.php:1583
1518
+ msgid "Left Menu Copyright Content"
1519
+ msgstr ""
1520
+
1521
+ #: includes/class-wp-mobile-menu-options.php:1586
1522
+ #: includes/class-wp-mobile-menu-options.php:1982
1523
+ msgid "Enter the Copyright content, you can use HTML and Shortcodes."
1524
+ msgstr ""
1525
+
1526
+ #: includes/class-wp-mobile-menu-options.php:1591
1527
+ msgid "Copyright Font"
1528
+ msgstr ""
1529
+
1530
+ #: includes/class-wp-mobile-menu-options.php:1616
1531
+ msgid "Right Menu Content"
1532
+ msgstr ""
1533
+
1534
+ #: includes/class-wp-mobile-menu-options.php:1634
1535
+ msgid "Select the menu that will open in the right side."
1536
+ msgstr ""
1537
+
1538
+ #: includes/class-wp-mobile-menu-options.php:1659
1539
+ msgid "Enable the right menu for logged in users only."
1540
+ msgstr ""
1541
+
1542
+ #: includes/class-wp-mobile-menu-options.php:1673
1543
+ msgid "Text Before Icon"
1544
+ msgstr ""
1545
+
1546
+ #: includes/class-wp-mobile-menu-options.php:1676
1547
+ msgid "Enter the text that will appear before the Icon."
1548
+ msgstr ""
1549
+
1550
+ #: includes/class-wp-mobile-menu-options.php:1686
1551
+ msgid "Open the Right Menu Panel or open a Link url."
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-wp-mobile-menu-options.php:1693
1555
+ msgid "Text Before Icon Font"
1556
+ msgstr ""
1557
+
1558
+ #: includes/class-wp-mobile-menu-options.php:1777
1559
+ msgid "Enter the Right Icon Font Size"
1560
+ msgstr ""
1561
+
1562
+ #: includes/class-wp-mobile-menu-options.php:1789
1563
+ msgid "Upload your right menu icon image"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-wp-mobile-menu-options.php:1798
1567
+ msgid "Enter the Right Icon Top Margin"
1568
+ msgstr ""
1569
+
1570
+ #: includes/class-wp-mobile-menu-options.php:1807
1571
+ msgid "Icon Right Margin"
1572
+ msgstr ""
1573
+
1574
+ #: includes/class-wp-mobile-menu-options.php:1810
1575
+ msgid "Enter the Right Icon Right Margin"
1576
+ msgstr ""
1577
+
1578
+ #: includes/class-wp-mobile-menu-options.php:1841
1579
+ msgid "Enter the Right Menu Item icons horizontal padding(pixels)"
1580
+ msgstr ""
1581
+
1582
+ #: includes/class-wp-mobile-menu-options.php:1851
1583
+ msgid "Right Panel options"
1584
+ msgstr ""
1585
+
1586
+ #: includes/class-wp-mobile-menu-options.php:1860
1587
+ msgid ""
1588
+ "upload your right menu background image(this will override the Background "
1589
+ "color option)"
1590
+ msgstr ""
1591
+
1592
+ #: includes/class-wp-mobile-menu-options.php:1868
1593
+ msgid "Enter the Right Background image opacity"
1594
  msgstr ""
1595
 
1596
+ #: includes/class-wp-mobile-menu-options.php:1909
1597
+ #: includes/class-wp-mobile-menu-options.php:2963
1598
+ msgid "Pixels"
1599
  msgstr ""
1600
 
1601
+ #: includes/class-wp-mobile-menu-options.php:1918
1602
+ #: includes/class-wp-mobile-menu-options.php:1930
1603
+ msgid "Enter the Right Menu Panel Width"
1604
  msgstr ""
1605
 
1606
+ #: includes/class-wp-mobile-menu-options.php:1939
1607
+ msgid "Right Menu Content Padding"
1608
  msgstr ""
1609
 
1610
+ #: includes/class-wp-mobile-menu-options.php:1942
1611
+ msgid "Enter the Right Menu Content Padding"
1612
  msgstr ""
1613
 
1614
+ #: includes/class-wp-mobile-menu-options.php:1952
1615
+ msgid "Right Menu Font"
1616
  msgstr ""
1617
 
1618
+ #: includes/class-wp-mobile-menu-options.php:1979
1619
+ msgid "Right Menu Copyright Content"
1620
  msgstr ""
1621
 
1622
+ #: includes/class-wp-mobile-menu-options.php:1987
1623
+ msgid "General"
1624
  msgstr ""
1625
 
1626
+ #: includes/class-wp-mobile-menu-options.php:1993
1627
+ msgid "Overlay Background Color"
1628
  msgstr ""
1629
 
1630
+ #: includes/class-wp-mobile-menu-options.php:2003
1631
+ msgid "Menu Items Border Color"
 
1632
  msgstr ""
1633
 
1634
+ #: includes/class-wp-mobile-menu-options.php:2013
1635
+ msgid "Highlight Current Page Item"
1636
  msgstr ""
1637
 
1638
+ #: includes/class-wp-mobile-menu-options.php:2027
1639
+ msgid "Woocommerce Colors"
1640
  msgstr ""
1641
 
1642
+ #: includes/class-wp-mobile-menu-options.php:2033
1643
+ msgid "Cart Icon Color"
1644
  msgstr ""
1645
 
1646
+ #: includes/class-wp-mobile-menu-options.php:2043
1647
+ #: includes/class-wp-mobile-menu-options.php:2415
1648
+ #: includes/class-wp-mobile-menu-options.php:2515
1649
+ msgid "Text Color"
1650
  msgstr ""
1651
 
1652
+ #: includes/class-wp-mobile-menu-options.php:2053
1653
+ msgid "Woocommerce Panel Background Color"
1654
  msgstr ""
1655
 
1656
+ #: includes/class-wp-mobile-menu-options.php:2063
1657
+ msgid "Checkout Button Color"
1658
  msgstr ""
1659
 
1660
+ #: includes/class-wp-mobile-menu-options.php:2073
1661
+ msgid "Checkout Button Background Color"
 
1662
  msgstr ""
1663
 
1664
+ #: includes/class-wp-mobile-menu-options.php:2083
1665
+ msgid "View Cart Button Color"
 
1666
  msgstr ""
1667
 
1668
+ #: includes/class-wp-mobile-menu-options.php:2093
1669
+ msgid "View Cart Button Background Color"
1670
  msgstr ""
1671
 
1672
+ #: includes/class-wp-mobile-menu-options.php:2106
1673
+ msgid "Header Colors"
1674
  msgstr ""
1675
 
1676
+ #: includes/class-wp-mobile-menu-options.php:2112
1677
+ msgid "Header Background Color"
1678
  msgstr ""
1679
 
1680
+ #: includes/class-wp-mobile-menu-options.php:2122
1681
+ msgid "Header Text Color"
1682
  msgstr ""
1683
 
1684
+ #: includes/class-wp-mobile-menu-options.php:2135
1685
+ msgid "Header Search Colors"
1686
  msgstr ""
1687
 
1688
+ #: includes/class-wp-mobile-menu-options.php:2141
1689
+ msgid "Search Icon Color"
1690
  msgstr ""
1691
 
1692
+ #: includes/class-wp-mobile-menu-options.php:2151
1693
+ msgid "Search Form Button Color"
 
1694
  msgstr ""
1695
 
1696
+ #: includes/class-wp-mobile-menu-options.php:2161
1697
+ msgid "Search Form Button Background Color"
 
1698
  msgstr ""
1699
 
1700
+ #: includes/class-wp-mobile-menu-options.php:2171
1701
+ msgid "Search Form Background Color"
 
1702
  msgstr ""
1703
 
1704
+ #: includes/class-wp-mobile-menu-options.php:2181
1705
+ msgid "Search Form Text Color"
 
 
1706
  msgstr ""
1707
 
1708
+ #: includes/class-wp-mobile-menu-options.php:2191
1709
+ msgid "Search Form Placeholder Color"
 
 
1710
  msgstr ""
1711
 
1712
+ #: includes/class-wp-mobile-menu-options.php:2201
1713
+ msgid "Search Results Background Color"
 
 
1714
  msgstr ""
1715
 
1716
+ #: includes/class-wp-mobile-menu-options.php:2211
1717
+ msgid "Search Results Text Color"
1718
  msgstr ""
1719
 
1720
+ #: includes/class-wp-mobile-menu-options.php:2221
1721
+ msgid "Search Results Background Hover Color"
1722
  msgstr ""
1723
 
1724
+ #: includes/class-wp-mobile-menu-options.php:2231
1725
+ msgid "Search Results Text Hover Color"
1726
  msgstr ""
1727
 
1728
+ #: includes/class-wp-mobile-menu-options.php:2241
1729
+ msgid "Header Banner Colors"
1730
  msgstr ""
1731
 
1732
+ #: includes/class-wp-mobile-menu-options.php:2247
1733
+ msgid "Header Banner Background Color"
1734
  msgstr ""
1735
 
1736
+ #: includes/class-wp-mobile-menu-options.php:2257
1737
+ msgid "Header Banner Text Color"
 
 
 
 
 
 
 
 
 
1738
  msgstr ""
1739
 
1740
+ #: includes/class-wp-mobile-menu-options.php:2267
1741
+ msgid "Footer Colors"
1742
  msgstr ""
1743
 
1744
+ #: includes/class-wp-mobile-menu-options.php:2273
1745
+ msgid "Footer Background Color"
1746
  msgstr ""
1747
 
1748
+ #: includes/class-wp-mobile-menu-options.php:2283
1749
+ msgid "Footer Background Color Hover"
1750
  msgstr ""
1751
 
1752
+ #: includes/class-wp-mobile-menu-options.php:2293
1753
+ msgid "Footer Icon Color"
 
1754
  msgstr ""
1755
 
1756
+ #: includes/class-wp-mobile-menu-options.php:2303
1757
+ msgid "Footer Icon Color Hover"
1758
  msgstr ""
1759
 
1760
+ #: includes/class-wp-mobile-menu-options.php:2313
1761
+ msgid "Footer Text Color"
1762
  msgstr ""
1763
 
1764
+ #: includes/class-wp-mobile-menu-options.php:2323
1765
+ msgid "Footer Text Color Hover"
1766
  msgstr ""
1767
 
1768
+ #: includes/class-wp-mobile-menu-options.php:2333
1769
+ msgid "Highlight Current Page Item Color"
1770
  msgstr ""
1771
 
1772
+ #: includes/class-wp-mobile-menu-options.php:2343
1773
+ msgid "Footer Icon Color Current Page"
1774
  msgstr ""
1775
 
1776
+ #: includes/class-wp-mobile-menu-options.php:2353
1777
+ msgid "Footer Text Color Current Page"
1778
  msgstr ""
1779
 
1780
+ #: includes/class-wp-mobile-menu-options.php:2365
1781
+ msgid "Left Menu Colors"
 
 
1782
  msgstr ""
1783
 
1784
+ #: includes/class-wp-mobile-menu-options.php:2371
1785
+ msgid "Left Menu Icon Color"
 
 
1786
  msgstr ""
1787
 
1788
+ #: includes/class-wp-mobile-menu-options.php:2381
1789
+ msgid "Text After Left Icon"
 
 
1790
  msgstr ""
1791
 
1792
+ #: includes/class-wp-mobile-menu-options.php:2394
1793
+ msgid "Left Menu Items Icon Color"
 
 
1794
  msgstr ""
1795
 
1796
+ #: includes/class-wp-mobile-menu-options.php:2405
1797
+ #: includes/class-wp-mobile-menu-options.php:2505
1798
+ msgid "Background Color"
1799
  msgstr ""
1800
 
1801
+ #: includes/class-wp-mobile-menu-options.php:2425
1802
+ #: includes/class-wp-mobile-menu-options.php:2525
1803
+ msgid "Background Hover Color"
1804
  msgstr ""
1805
 
1806
+ #: includes/class-wp-mobile-menu-options.php:2435
1807
+ #: includes/class-wp-mobile-menu-options.php:2535
1808
+ msgid "Hover Text Color"
 
1809
  msgstr ""
1810
 
1811
+ #: includes/class-wp-mobile-menu-options.php:2445
1812
+ #: includes/class-wp-mobile-menu-options.php:2545
1813
+ msgid "Submenu Background Color"
1814
  msgstr ""
1815
 
1816
+ #: includes/class-wp-mobile-menu-options.php:2455
1817
+ #: includes/class-wp-mobile-menu-options.php:2555
1818
+ msgid "Submenu Text Color"
1819
  msgstr ""
1820
 
1821
+ #: includes/class-wp-mobile-menu-options.php:2465
1822
+ msgid "Right Menu Colors"
1823
  msgstr ""
1824
 
1825
+ #: includes/class-wp-mobile-menu-options.php:2471
1826
+ msgid "Right Menu Icon Color"
1827
  msgstr ""
1828
 
1829
+ #: includes/class-wp-mobile-menu-options.php:2481
1830
+ msgid "Text Before Right Icon"
1831
  msgstr ""
1832
 
1833
+ #: includes/class-wp-mobile-menu-options.php:2494
1834
+ msgid "Right Menu Items Icon Color"
1835
  msgstr ""
1836
 
1837
+ #: includes/class-wp-mobile-menu-options.php:2565
1838
+ msgid "3rd Level Menu Colors"
1839
  msgstr ""
1840
 
1841
+ #: includes/class-wp-mobile-menu-options.php:2571
1842
+ msgid "Left Menu Text Color"
1843
  msgstr ""
1844
 
1845
+ #: includes/class-wp-mobile-menu-options.php:2581
1846
+ msgid "Left Menu Text Color Hover"
1847
  msgstr ""
1848
 
1849
+ #: includes/class-wp-mobile-menu-options.php:2591
1850
+ msgid "Left Menu Background Color"
 
1851
  msgstr ""
1852
 
1853
+ #: includes/class-wp-mobile-menu-options.php:2601
1854
+ msgid "Left Menu Background Color Hover"
1855
  msgstr ""
1856
 
1857
+ #: includes/class-wp-mobile-menu-options.php:2611
1858
+ msgid "Right Menu Text Color"
1859
  msgstr ""
1860
 
1861
+ #: includes/class-wp-mobile-menu-options.php:2621
1862
+ msgid "Right Menu Text Color Hover"
1863
  msgstr ""
1864
 
1865
+ #: includes/class-wp-mobile-menu-options.php:2631
1866
+ msgid "Right Menu Background Color"
1867
  msgstr ""
1868
 
1869
+ #: includes/class-wp-mobile-menu-options.php:2641
1870
+ msgid "Right Menu Background Color Hover"
1871
  msgstr ""
1872
 
1873
+ #: includes/class-wp-mobile-menu-options.php:2665
1874
+ msgid "Woocommerce"
1875
  msgstr ""
1876
 
1877
+ #: includes/class-wp-mobile-menu-options.php:2669
1878
+ msgid "Enable Woocommerce Menu"
1879
  msgstr ""
1880
 
1881
+ #: includes/class-wp-mobile-menu-options.php:2673
1882
+ msgid "Enable or disable the Woocommerce Menu."
1883
  msgstr ""
1884
 
1885
+ #: includes/class-wp-mobile-menu-options.php:2680
1886
+ msgid "Open Cart Panel after adding a product"
1887
  msgstr ""
1888
 
1889
+ #: includes/class-wp-mobile-menu-options.php:2684
1890
+ msgid "Open Cart Panel after adding a product."
1891
  msgstr ""
1892
 
1893
+ #: includes/class-wp-mobile-menu-options.php:2691
1894
+ msgid "Enable Account Links in Mobile Cart Panel"
1895
  msgstr ""
1896
 
1897
+ #: includes/class-wp-mobile-menu-options.php:2695
1898
+ msgid "Enable Account(Login/logout) Section in the Mobile Cart Panel."
1899
  msgstr ""
1900
 
1901
+ #: includes/class-wp-mobile-menu-options.php:2702
1902
+ msgid "Header Search only in Products"
 
1903
  msgstr ""
1904
 
1905
+ #: includes/class-wp-mobile-menu-options.php:2706
1906
+ msgid "Search Only Products in the Header Search."
1907
  msgstr ""
1908
 
1909
+ #: includes/class-wp-mobile-menu-options.php:2713
1910
+ msgid "Header Elements Order"
1911
  msgstr ""
1912
 
1913
+ #: includes/class-wp-mobile-menu-options.php:2715
1914
+ msgid ""
1915
+ "<p>Click in this link to go to the reorder option. Save the changes first."
1916
+ "</p><a href=\"/wp-admin/admin.php?page=mobile-menu-options&tab=header\">"
1917
+ "Header Elements Order</a>"
1918
  msgstr ""
1919
 
1920
+ #: includes/class-wp-mobile-menu-options.php:2721
1921
+ msgid "Enabled on All Pages"
1922
  msgstr ""
1923
 
1924
+ #: includes/class-wp-mobile-menu-options.php:2722
1925
+ msgid "Enabled on Woocommerce Pages"
1926
  msgstr ""
1927
 
1928
+ #: includes/class-wp-mobile-menu-options.php:2727
1929
+ msgid "Footer (replacing the Shop Menu Item)"
1930
  msgstr ""
1931
 
1932
+ #: includes/class-wp-mobile-menu-options.php:2732
1933
+ msgid "Cart Total in Footer"
1934
  msgstr ""
1935
 
1936
+ #: includes/class-wp-mobile-menu-options.php:2735
1937
+ msgid "Choose the options to enable the Cart Total in Footer."
1938
  msgstr ""
1939
 
1940
+ #: includes/class-wp-mobile-menu-options.php:2742
1941
+ msgid "Product Filter"
 
 
 
 
 
 
 
1942
  msgstr ""
1943
 
1944
+ #: includes/class-wp-mobile-menu-options.php:2748
1945
+ msgid "Enable Mobile Product Filter"
 
 
 
 
 
1946
  msgstr ""
1947
 
1948
+ #: includes/class-wp-mobile-menu-options.php:2752
1949
+ msgid ""
1950
+ "Enable or disable the Mobile Product Filter. The Product Filter will appear "
1951
+ "only in the Shop and product category pages."
1952
  msgstr ""
1953
 
1954
+ #: includes/class-wp-mobile-menu-options.php:2759
1955
+ msgid "Filter Icon Font"
1956
  msgstr ""
1957
 
1958
+ #: includes/class-wp-mobile-menu-options.php:2768
1959
+ msgid "Filter Icon Font Size"
1960
  msgstr ""
1961
 
1962
+ #: includes/class-wp-mobile-menu-options.php:2771
1963
+ msgid "Enter the Woocommerce Filter Icon Font Size"
1964
  msgstr ""
1965
 
1966
+ #: includes/class-wp-mobile-menu-options.php:2780
1967
+ msgid "Shop Filter Top Margin"
1968
  msgstr ""
1969
 
1970
+ #: includes/class-wp-mobile-menu-options.php:2783
1971
+ msgid "Enter the Shop Filter Top Margin"
1972
  msgstr ""
1973
 
1974
+ #: includes/class-wp-mobile-menu-options.php:2792
1975
+ msgid "Shop Filter Location"
1976
  msgstr ""
1977
 
1978
+ #: includes/class-wp-mobile-menu-options.php:2795
1979
+ msgid "Choose the location of the Shop Filter."
 
1980
  msgstr ""
1981
 
1982
+ #: includes/class-wp-mobile-menu-options.php:2802
1983
+ msgid "Cart Icon"
 
1984
  msgstr ""
1985
 
1986
+ #: includes/class-wp-mobile-menu-options.php:2812
1987
+ msgid "Choose if you want to display the default cart SVG or an icon."
 
1988
  msgstr ""
1989
 
1990
+ #: includes/class-wp-mobile-menu-options.php:2813
1991
+ msgid "Default Cart SVG Icon"
 
1992
  msgstr ""
1993
 
1994
+ #: includes/class-wp-mobile-menu-options.php:2831
1995
+ msgid "Enter the Woocommerce Menu Icon Font Size"
1996
  msgstr ""
1997
 
1998
+ #: includes/class-wp-mobile-menu-options.php:2844
1999
+ msgid "Upload your Woocommerce Menu icon image"
2000
  msgstr ""
2001
 
2002
+ #: includes/class-wp-mobile-menu-options.php:2850
2003
+ msgid "Cart Icon Top Margin"
2004
  msgstr ""
2005
 
2006
+ #: includes/class-wp-mobile-menu-options.php:2853
2007
+ msgid "Enter the Cart Icon Top Margin"
2008
  msgstr ""
2009
 
2010
+ #: includes/class-wp-mobile-menu-options.php:2862
2011
+ msgid "Woocommerce Cart Text/Translations"
2012
  msgstr ""
2013
 
2014
+ #: includes/class-wp-mobile-menu-options.php:2868
2015
+ msgid "Cart Header Text"
2016
  msgstr ""
2017
 
2018
+ #: includes/class-wp-mobile-menu-options.php:2871
2019
+ msgid "Enter the custom text for the Cart Header Text."
 
 
2020
  msgstr ""
2021
 
2022
+ #: includes/class-wp-mobile-menu-options.php:2872
2023
+ msgid "Your Cart"
 
 
2024
  msgstr ""
2025
 
2026
+ #: includes/class-wp-mobile-menu-options.php:2877
2027
+ msgid "Cart No Items Text"
 
 
 
2028
  msgstr ""
2029
 
2030
+ #: includes/class-wp-mobile-menu-options.php:2880
2031
+ msgid "Enter the custom text for the Cart No Items Text."
2032
  msgstr ""
2033
 
2034
+ #: includes/class-wp-mobile-menu-options.php:2881
2035
+ msgid "No items found."
2036
  msgstr ""
2037
 
2038
+ #: includes/class-wp-mobile-menu-options.php:2886
2039
+ msgid "Cart Link to the Shop Page Text"
 
 
2040
  msgstr ""
2041
 
2042
+ #: includes/class-wp-mobile-menu-options.php:2889
2043
+ msgid "Enter the custom text for the Cart Link to the Shop page."
 
 
2044
  msgstr ""
2045
 
2046
+ #: includes/class-wp-mobile-menu-options.php:2890
2047
+ msgid "Start Shopping Now"
2048
  msgstr ""
2049
 
2050
+ #: includes/class-wp-mobile-menu-options.php:2895
2051
+ msgid "Filter Icon Text"
2052
  msgstr ""
2053
 
2054
+ #: includes/class-wp-mobile-menu-options.php:2898
2055
+ msgid "Enter the custom text for the Filter Icon."
2056
  msgstr ""
2057
 
2058
+ #: includes/class-wp-mobile-menu-options.php:2899
2059
+ #: includes/class-wp-mobile-menu-walker-nav-menu.php:88
2060
+ msgid "Filter"
 
2061
  msgstr ""
2062
 
2063
+ #: includes/class-wp-mobile-menu-options.php:2905
2064
+ msgid "Woocommerce Panel options"
2065
  msgstr ""
2066
 
2067
+ #: includes/class-wp-mobile-menu-options.php:2914
2068
  msgid ""
2069
  "Upload your Woocommerce menu background image(this will override the "
2070
  "Background color option)"
2071
  msgstr ""
2072
 
2073
+ #: includes/class-wp-mobile-menu-options.php:2972
2074
+ #: includes/class-wp-mobile-menu-options.php:2984
2075
+ msgid "Enter the Menu Panel Width"
 
 
 
 
 
 
 
 
 
 
 
2076
  msgstr ""
2077
 
2078
+ #: includes/class-wp-mobile-menu-options.php:2993
2079
+ msgid "Menu Content Padding"
2080
  msgstr ""
2081
 
2082
+ #: includes/class-wp-mobile-menu-options.php:2996
2083
+ msgid "Enter the Menu Content Padding"
2084
  msgstr ""
2085
 
2086
+ #: includes/class-wp-mobile-menu-walker-nav-menu.php:105
2087
+ msgid "Back"
2088
  msgstr ""
2089
 
2090
+ #. Name of the plugin
2091
+ msgid "Mobile Menu"
2092
  msgstr ""
2093
 
2094
+ #. Description of the plugin
2095
+ msgid ""
2096
+ "An easy to use WordPress responsive mobile menu. Keep your mobile visitors "
2097
+ "engaged."
2098
  msgstr ""
2099
 
2100
+ #. URI of the plugin
2101
+ msgid "https://www.wpmobilemenu.com/"
2102
  msgstr ""
2103
 
2104
+ #. Author of the plugin
2105
+ msgid "Takanakui"
2106
  msgstr ""
2107
 
2108
+ #. Author URI of the plugin
2109
+ msgid "https://www.jedipress.com/"
 
 
 
 
 
 
 
 
 
2110
  msgstr ""
languages/mobile-menu.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Mobile Menu for Woocommerce\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2018-05-25 18:54+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -14,1228 +14,2097 @@ msgstr ""
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/"
16
 
17
- #: mobmenu.php:42
18
  msgid ""
19
- "\"> PRO Version Features</a> and the <a href=\"http://www.wpmobilemenu.com\" "
20
- "target=\"_blank\" >Demo site</a>"
21
  msgstr ""
22
 
23
- #: includes/class-wp-mobile-menu-core.php:858
24
- msgid "% items"
25
  msgstr ""
26
 
27
- #: includes/class-wp-mobile-menu-core.php:861
28
- msgid "0 items"
 
29
  msgstr ""
30
 
31
- #: includes/class-wp-mobile-menu-core.php:863
32
- msgid "1 item"
 
 
 
 
 
 
 
 
 
33
  msgstr ""
34
 
35
- #: includes/class-wp-mobile-menu-options.php:1983
36
- msgid "3rd Level Menu Colors"
 
37
  msgstr ""
38
 
39
- #: includes/class-wp-mobile-menu-options.php:1109
40
- #: includes/class-wp-mobile-menu-options.php:1483
41
- #: includes/class-wp-mobile-menu-options.php:2219
42
- msgid ""
43
- "<a href=\"https://webgradients.com/\" target=\"_blank\">Click here</a> to "
44
- "get your desired Gradient, just press the copy button and paste in this "
45
- "field."
46
  msgstr ""
47
 
48
- #: includes/class-wp-mobile-menu-options.php:978
49
- #: includes/class-wp-mobile-menu-options.php:1352
50
- #: includes/class-wp-mobile-menu-options.php:2143
51
- msgid ""
52
- "<div class=\"mobmenu-icon-holder\"></div><a href=\"#\" class=\"mobmenu-icon-"
53
- "picker button\">Select menu icon</a>"
54
  msgstr ""
55
 
56
- #: includes/class-wp-mobile-menu-options.php:73
57
- msgid "Above"
 
58
  msgstr ""
59
 
60
- #: includes/class-wp-mobile-menu-options.php:687
61
- msgid "Above Header"
 
62
  msgstr ""
63
 
64
- #: includes/class-wp-mobile-menu-options.php:278
65
- msgid "Advanced Options"
 
66
  msgstr ""
67
 
68
- #: includes/class-wp-mobile-menu-options.php:105
69
- msgid "Alternative Left Menu"
70
  msgstr ""
71
 
72
- #: includes/class-wp-mobile-menu-options.php:500
73
- msgid "Alternative Logo URL"
74
  msgstr ""
75
 
76
- #: includes/class-wp-mobile-menu-options.php:114
77
- msgid "Alternative Right Menu"
 
78
  msgstr ""
79
 
80
- #. Description of the plugin
81
- msgid ""
82
- "An easy to use WordPress responsive mobile menu. Keep your mobile visitors "
83
- "engaged."
84
  msgstr ""
85
 
86
- #: includes/class-wp-mobile-menu-options.php:1094
87
- #: includes/class-wp-mobile-menu-options.php:1468
88
- #: includes/class-wp-mobile-menu-options.php:2204
89
- msgid "Auto"
90
  msgstr ""
91
 
92
- #: includes/class-wp-mobile-menu-options.php:396
93
- msgid "Auto-hide Header when scrolling down."
94
  msgstr ""
95
 
96
- #: includes/class-wp-mobile-menu-options.php:1830
97
- #: includes/class-wp-mobile-menu-options.php:1920
98
- msgid "Background Color"
99
  msgstr ""
100
 
101
- #: includes/class-wp-mobile-menu-options.php:1850
102
- #: includes/class-wp-mobile-menu-options.php:1940
103
- msgid "Background Hover Color"
104
  msgstr ""
105
 
106
- #: includes/class-wp-mobile-menu-options.php:74
107
- msgid "Below"
 
108
  msgstr ""
109
 
110
- #: includes/class-wp-mobile-menu-options.php:688
111
- msgid "Below Header"
112
  msgstr ""
113
 
114
- #: includes/class-wp-mobile-menu-options.php:1606
115
- msgid "Cart Icon Color"
116
  msgstr ""
117
 
118
- #: includes/class-wp-mobile-menu-core.php:964
119
- msgid "Checkout"
120
  msgstr ""
121
 
122
- #: includes/class-wp-mobile-menu-options.php:1646
123
- msgid "Checkout Button Background Color"
124
  msgstr ""
125
 
126
- #: includes/class-wp-mobile-menu-options.php:1636
127
- msgid "Checkout Button Color"
128
  msgstr ""
129
 
130
- #: includes/class-wp-mobile-menu-options.php:1044
131
- #: includes/class-wp-mobile-menu-options.php:1417
132
- msgid ""
133
- "Choose if you want the menu item icon to display at the left or right side "
134
- "of the menu items."
135
  msgstr ""
136
 
137
- #: includes/class-wp-mobile-menu-options.php:493
138
- msgid ""
139
- "Choose if you want to disable the logo url to avoid being redirect to the "
140
- "homepage or alternative home url when touching the header logo."
141
  msgstr ""
142
 
143
- #: includes/class-wp-mobile-menu-options.php:389
144
- msgid ""
145
- "Choose if you want to disable the logo/text so it will only display the menu "
146
- "icons in the header."
147
  msgstr ""
148
 
149
- #: includes/class-wp-mobile-menu-options.php:379
150
- msgid ""
151
- "Choose if you want to display a naked header with no background "
152
- "color(transparent)."
153
  msgstr ""
154
 
155
- #: includes/class-wp-mobile-menu-options.php:416
156
- msgid "Choose if you want to display an image has logo or text instead."
157
  msgstr ""
158
 
159
- #: includes/class-wp-mobile-menu-options.php:968
160
- #: includes/class-wp-mobile-menu-options.php:1342
161
- #: includes/class-wp-mobile-menu-options.php:2133
162
- msgid "Choose if you want to display an image or an icon."
163
  msgstr ""
164
 
165
- #: includes/class-wp-mobile-menu-options.php:675
166
- #: includes/class-wp-mobile-menu-options.php:786
167
- msgid "Choose if you want to enable the Header Banner."
168
  msgstr ""
169
 
170
- #: includes/class-wp-mobile-menu-options.php:400
171
- msgid ""
172
- "Choose if you want to hide the header when scrolling down. It will reapear "
173
- "when you scroll up."
174
  msgstr ""
175
 
176
- #: includes/class-wp-mobile-menu-options.php:873
177
- #: includes/class-wp-mobile-menu-options.php:1246
178
- msgid ""
179
- "Choose if you want to open the sub-submenu by click in the sub menu item."
180
  msgstr ""
181
 
182
- #: includes/class-wp-mobile-menu-options.php:862
183
- #: includes/class-wp-mobile-menu-options.php:1235
184
- msgid ""
185
- "Choose if you want to open the submenu by click in the Parent Menu item."
186
  msgstr ""
187
 
188
- #: includes/class-wp-mobile-menu-options.php:957
189
- #: includes/class-wp-mobile-menu-options.php:1331
190
- msgid "Choose it the link will open in the same window or in the new window."
191
  msgstr ""
192
 
193
- #: includes/class-wp-mobile-menu-options.php:54
194
- msgid "Choose one menu"
195
  msgstr ""
196
 
197
- #: includes/class-wp-mobile-menu-options.php:686
198
- msgid "Choose the position of the Header Banner."
199
  msgstr ""
200
 
201
- #: includes/class-wp-mobile-menu-options.php:1119
202
- #: includes/class-wp-mobile-menu-options.php:1493
203
- #: includes/class-wp-mobile-menu-options.php:2229
204
- msgid "Choose the width units."
205
  msgstr ""
206
 
207
- #: includes/class-wp-mobile-menu-options.php:158
208
- msgid "Colors"
209
  msgstr ""
210
 
211
- #: includes/class-wp-mobile-menu-options.php:1095
212
- #: includes/class-wp-mobile-menu-options.php:1469
213
- #: includes/class-wp-mobile-menu-options.php:2205
214
- msgid "Contain"
215
  msgstr ""
216
 
217
- #: includes/class-wp-mobile-menu-options.php:1197
218
- msgid "Copyright Font"
219
  msgstr ""
220
 
221
- #: includes/class-wp-mobile-menu-options.php:1096
222
- #: includes/class-wp-mobile-menu-options.php:1470
223
- #: includes/class-wp-mobile-menu-options.php:2206
224
- msgid "Cover"
225
  msgstr ""
226
 
227
- #: includes/class-wp-mobile-menu-options.php:489
228
- msgid "Disable Logo URL "
229
  msgstr ""
230
 
231
- #: includes/class-wp-mobile-menu-options.php:385
232
- msgid "Disable Logo/Text"
 
 
233
  msgstr ""
234
 
235
- #: includes/class-wp-mobile-menu-options.php:336
236
- msgid "Disable Mobile Menu on selected pages"
237
  msgstr ""
238
 
239
- #: includes/class-wp-mobile-menu-options.php:164
240
- msgid "Documentation"
 
 
241
  msgstr ""
242
 
243
- #: includes/class-wp-mobile-menu-options.php:2110
244
- msgid "Enable Account Links in Mobile Cart Panel"
 
245
  msgstr ""
246
 
247
- #: includes/class-wp-mobile-menu-options.php:2114
248
- msgid "Enable Account(Login/logout) Section in the Mobile Cart Panel."
249
  msgstr ""
250
 
251
- #: includes/class-wp-mobile-menu-options.php:671
252
- msgid "Enable Header Banner"
253
  msgstr ""
254
 
255
- #: includes/class-wp-mobile-menu-options.php:782
256
- msgid "Enable Header Search"
 
 
257
  msgstr ""
258
 
259
- #: includes/class-wp-mobile-menu-options.php:238
260
- msgid "Enable Left Menu"
261
  msgstr ""
262
 
263
- #: includes/class-wp-mobile-menu-options.php:202
264
- msgid "Enable Mobile Menu"
 
265
  msgstr ""
266
 
267
- #: includes/class-wp-mobile-menu-options.php:2092
268
- msgid "Enable or disable the Woocommerce Menu."
269
  msgstr ""
270
 
271
- #: includes/class-wp-mobile-menu-options.php:242
272
- msgid "Enable or disable the WP Mobile Menu Left Menu."
 
273
  msgstr ""
274
 
275
- #: includes/class-wp-mobile-menu-options.php:257
276
- msgid "Enable Right Menu"
 
277
  msgstr ""
278
 
279
- #: includes/class-wp-mobile-menu-options.php:887
280
- msgid "Enable the left menu for logged in users only."
281
  msgstr ""
282
 
283
- #: includes/class-wp-mobile-menu-options.php:1261
284
- msgid "Enable the right menu for logged in users only."
285
  msgstr ""
286
 
287
- #: includes/class-wp-mobile-menu-options.php:2088
288
- msgid "Enable Woocommerce Menu"
 
289
  msgstr ""
290
 
291
- #: includes/class-wp-mobile-menu-options.php:696
292
- msgid "Enter the banner header content, you can use HTML and Shortcodes."
 
293
  msgstr ""
294
 
295
- #: includes/class-wp-mobile-menu-options.php:1192
296
- #: includes/class-wp-mobile-menu-options.php:1567
297
- msgid "Enter the Copyright content, you can use HTML and Shortcodes."
298
  msgstr ""
299
 
300
- #: includes/class-wp-mobile-menu-options.php:541
301
- msgid ""
302
- "Enter the desired text for the Mobile Header. If not specified it will use "
303
- "the site title."
 
304
  msgstr ""
305
 
306
- #: includes/class-wp-mobile-menu-options.php:730
307
- msgid ""
308
- "Enter the header banner left padding (only used whit Header Banner Left "
309
- "Alignment)"
 
310
  msgstr ""
311
 
312
- #: includes/class-wp-mobile-menu-options.php:742
313
- msgid ""
314
- "Enter the header banner right padding (only used whit Header Banner Right "
315
- "Alignment)"
316
  msgstr ""
317
 
318
- #: includes/class-wp-mobile-menu-options.php:594
319
- msgid ""
320
- "Enter the header Logo/Text left margin (only used whit Header Left Alignment)"
321
  msgstr ""
322
 
323
- #: includes/class-wp-mobile-menu-options.php:621
324
- msgid ""
325
- "Enter the header Logo/Text right margin (only used whit Header Right "
326
- "Alignment)"
327
  msgstr ""
328
 
329
- #: includes/class-wp-mobile-menu-options.php:608
330
- msgid ""
331
- "Enter the header Logo/Text spacing between the Logo and the Text(it only "
332
- "applies when you have both in the site logo)"
333
  msgstr ""
334
 
335
- #: includes/class-wp-mobile-menu-options.php:568
336
- msgid "Enter the header text font size"
337
  msgstr ""
338
 
339
- #: includes/class-wp-mobile-menu-options.php:529
340
- msgid "Enter the height of the header"
341
  msgstr ""
342
 
343
- #: includes/class-wp-mobile-menu-options.php:704
344
- msgid "Enter the height of the header banner"
345
  msgstr ""
346
 
347
- #: includes/class-wp-mobile-menu-options.php:466
348
- msgid "Enter the height of the logo"
349
  msgstr ""
350
 
351
- #: includes/class-wp-mobile-menu-options.php:947
352
- #: includes/class-wp-mobile-menu-options.php:1321
353
- msgid "Enter the Icon Link Url."
354
  msgstr ""
355
 
356
- #: includes/class-wp-mobile-menu-options.php:1078
357
- #: includes/class-wp-mobile-menu-options.php:2188
358
- msgid "Enter the Left Background image opacity"
359
  msgstr ""
360
 
361
- #: includes/class-wp-mobile-menu-options.php:987
362
- msgid "Enter the Left Icon Font Size"
363
  msgstr ""
364
 
365
- #: includes/class-wp-mobile-menu-options.php:1021
366
- msgid "Enter the Left Icon Left Margin"
367
  msgstr ""
368
 
369
- #: includes/class-wp-mobile-menu-options.php:1009
370
- msgid "Enter the Left Icon Top Margin"
371
  msgstr ""
372
 
373
- #: includes/class-wp-mobile-menu-options.php:1153
374
- msgid "Enter the Left Menu Content Padding"
375
  msgstr ""
376
 
377
- #: includes/class-wp-mobile-menu-options.php:1052
378
- msgid "Enter the Left Menu Item icons horizontal padding(pixels)"
379
  msgstr ""
380
 
381
- #: includes/class-wp-mobile-menu-options.php:1129
382
- #: includes/class-wp-mobile-menu-options.php:1141
383
- msgid "Enter the Left Menu Panel Width"
384
  msgstr ""
385
 
386
- #: includes/class-wp-mobile-menu-options.php:512
387
- msgid "Enter the logo/text top margin"
388
  msgstr ""
389
 
390
- #: includes/class-wp-mobile-menu-options.php:2263
391
- msgid "Enter the Menu Content Padding"
392
  msgstr ""
393
 
394
- #: includes/class-wp-mobile-menu-options.php:2239
395
- #: includes/class-wp-mobile-menu-options.php:2251
396
- msgid "Enter the Menu Panel Width"
397
  msgstr ""
398
 
399
- #: includes/class-wp-mobile-menu-options.php:1452
400
- msgid "Enter the Right Background image opacity"
401
  msgstr ""
402
 
403
- #: includes/class-wp-mobile-menu-options.php:1361
404
- msgid "Enter the Right Icon Font Size"
405
  msgstr ""
406
 
407
- #: includes/class-wp-mobile-menu-options.php:1394
408
- msgid "Enter the Right Icon Right Margin"
409
  msgstr ""
410
 
411
- #: includes/class-wp-mobile-menu-options.php:1382
412
- msgid "Enter the Right Icon Top Margin"
413
  msgstr ""
414
 
415
- #: includes/class-wp-mobile-menu-options.php:1527
416
- msgid "Enter the Right Menu Content Padding"
417
  msgstr ""
418
 
419
- #: includes/class-wp-mobile-menu-options.php:1425
420
- msgid "Enter the Right Menu Item icons horizontal padding(pixels)"
421
  msgstr ""
422
 
423
- #: includes/class-wp-mobile-menu-options.php:1503
424
- #: includes/class-wp-mobile-menu-options.php:1515
425
- msgid "Enter the Right Menu Panel Width"
426
  msgstr ""
427
 
428
- #: includes/class-wp-mobile-menu-options.php:819
429
- msgid "Enter the Search Icon Font Size"
430
  msgstr ""
431
 
432
- #: includes/class-wp-mobile-menu-options.php:904
433
- msgid "Enter the text that will appear after the Icon."
434
  msgstr ""
435
 
436
- #: includes/class-wp-mobile-menu-options.php:1289
437
- msgid "Enter the text that will appear before the Icon."
 
438
  msgstr ""
439
 
440
- #: includes/class-wp-mobile-menu-options.php:2152
441
- msgid "Enter the Woocommerce Menu Icon Font Size"
 
442
  msgstr ""
443
 
444
- #: includes/class-wp-mobile-menu-options.php:503
445
- msgid ""
446
- "Enter you alternative logo URL. If you leave it blank it will use the Site "
447
- "URL."
448
  msgstr ""
449
 
450
- #: includes/class-wp-mobile-menu-options.php:840
451
- msgid ""
452
- "Fill this field with the text that will show up in search input field "
453
- "placeholder."
454
  msgstr ""
455
 
456
- #: includes/class-wp-mobile-menu-options.php:831
457
- msgid ""
458
- "Fill this field with the text that will show up in the submit button of the "
459
- "search form. Clear this field to use the search icon."
460
  msgstr ""
461
 
462
- #: includes/class-wp-mobile-menu-options.php:161
463
- msgid "Fonts"
 
464
  msgstr ""
465
 
466
- #: includes/class-wp-mobile-menu-options.php:1572
467
- msgid "General"
 
468
  msgstr ""
469
 
470
- #: includes/class-wp-mobile-menu-options.php:140
471
- msgid "General Options"
472
  msgstr ""
473
 
474
- #: includes/class-wp-mobile-menu-options.php:143
475
- msgid "Header"
476
  msgstr ""
477
 
478
- #: includes/class-wp-mobile-menu-options.php:1684
479
- msgid "Header Background Color"
480
  msgstr ""
481
 
482
- #: includes/class-wp-mobile-menu-options.php:1779
483
- msgid "Header Banner Background Color"
484
  msgstr ""
485
 
486
- #: includes/class-wp-mobile-menu-options.php:1773
487
- msgid "Header Banner Colors"
 
 
 
 
 
 
 
 
488
  msgstr ""
489
 
490
- #: includes/class-wp-mobile-menu-options.php:693
491
- msgid "Header Banner Content"
492
  msgstr ""
493
 
494
- #: includes/class-wp-mobile-menu-options.php:750
495
- msgid "Header Banner Font"
 
 
496
  msgstr ""
497
 
498
- #: includes/class-wp-mobile-menu-options.php:701
499
- msgid "Header Banner Height"
 
 
 
500
  msgstr ""
501
 
502
- #: includes/class-wp-mobile-menu-options.php:727
503
- msgid "Header Banner Left Padding"
504
  msgstr ""
505
 
506
- #: includes/class-wp-mobile-menu-options.php:665
507
- msgid "Header Banner options"
 
 
508
  msgstr ""
509
 
510
- #: includes/class-wp-mobile-menu-options.php:682
511
- msgid "Header Banner Position"
 
 
 
 
 
 
 
 
 
512
  msgstr ""
513
 
514
- #: includes/class-wp-mobile-menu-options.php:739
515
- msgid "Header Banner Right Padding"
 
 
 
 
 
 
 
 
 
516
  msgstr ""
517
 
518
- #: includes/class-wp-mobile-menu-options.php:1789
519
- msgid "Header Banner Text Color"
520
  msgstr ""
521
 
522
- #: includes/class-wp-mobile-menu-options.php:1678
523
- msgid "Header Colors"
524
  msgstr ""
525
 
526
- #: includes/class-wp-mobile-menu-options.php:793
527
- #: includes/class-wp-mobile-menu-options.php:2121
528
- msgid "Header Elements Order"
529
  msgstr ""
530
 
531
- #: includes/class-wp-mobile-menu-options.php:526
532
- msgid "Header Height"
533
  msgstr ""
534
 
535
- #: includes/class-wp-mobile-menu-options.php:591
536
- msgid "Header Logo/Text Left Margin"
537
  msgstr ""
538
 
539
- #: includes/class-wp-mobile-menu-options.php:618
540
- msgid "Header Logo/Text Right Margin"
541
  msgstr ""
542
 
543
- #: includes/class-wp-mobile-menu-options.php:605
544
- msgid "Header Logo/Text Spacing"
545
  msgstr ""
546
 
547
- #: includes/class-wp-mobile-menu-options.php:637
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  msgid "Header Menu Font"
549
  msgstr ""
550
 
551
- #: includes/class-wp-mobile-menu-options.php:520
552
- msgid "Header options"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  msgstr ""
554
 
555
- #: includes/class-wp-mobile-menu-options.php:1707
556
- msgid "Header Search Colors"
557
  msgstr ""
558
 
559
- #: includes/class-wp-mobile-menu-options.php:776
560
- msgid "Header Search options"
561
  msgstr ""
562
 
563
- #: includes/class-wp-mobile-menu-options.php:538
564
- msgid "Header Text"
 
 
565
  msgstr ""
566
 
567
- #: includes/class-wp-mobile-menu-options.php:1694
568
- msgid "Header Text Color"
 
 
 
569
  msgstr ""
570
 
571
- #: includes/class-wp-mobile-menu-options.php:565
572
- msgid "Header Text Font Size"
573
  msgstr ""
574
 
575
- #: includes/class-wp-mobile-menu-options.php:1588
576
- msgid "Highlight Current Page Item"
577
  msgstr ""
578
 
579
- #: includes/class-wp-mobile-menu-options.php:1860
580
- #: includes/class-wp-mobile-menu-options.php:1950
581
- msgid "Hover Text Color"
 
582
  msgstr ""
583
 
584
- #. URI of the plugin
585
- #. Author URI of the plugin
586
- msgid "http://www.wpmobilemenu.com/"
587
  msgstr ""
588
 
589
- #: includes/class-wp-mobile-menu-options.php:933
590
- #: includes/class-wp-mobile-menu-options.php:1275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  msgid "Icon Action"
592
  msgstr ""
593
 
594
- #: includes/class-wp-mobile-menu-options.php:975
595
- #: includes/class-wp-mobile-menu-options.php:1344
596
- #: includes/class-wp-mobile-menu-options.php:1349
597
- #: includes/class-wp-mobile-menu-options.php:2140
598
- msgid "Icon Font"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgstr ""
600
 
601
- #: includes/class-wp-mobile-menu-options.php:984
602
  #: includes/class-wp-mobile-menu-options.php:1358
603
- #: includes/class-wp-mobile-menu-options.php:2149
604
- msgid "Icon Font Size"
605
  msgstr ""
606
 
607
- #: includes/class-wp-mobile-menu-options.php:996
608
- #: includes/class-wp-mobile-menu-options.php:1370
609
- #: includes/class-wp-mobile-menu-options.php:2161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  msgid "Icon Image"
611
  msgstr ""
612
 
613
- #: includes/class-wp-mobile-menu-options.php:1018
 
 
 
 
 
 
 
 
 
 
 
 
 
614
  msgid "Icon Left Margin"
615
  msgstr ""
616
 
617
- #: includes/class-wp-mobile-menu-options.php:944
618
- #: includes/class-wp-mobile-menu-options.php:1318
619
- msgid "Icon Link URL"
620
  msgstr ""
621
 
622
- #: includes/class-wp-mobile-menu-options.php:953
623
- #: includes/class-wp-mobile-menu-options.php:1327
624
- msgid "Icon Link Url Target"
 
 
625
  msgstr ""
626
 
627
- #: includes/class-wp-mobile-menu-options.php:1391
628
- msgid "Icon Right Margin"
 
629
  msgstr ""
630
 
631
- #: includes/class-wp-mobile-menu-options.php:1006
632
- #: includes/class-wp-mobile-menu-options.php:1379
633
- msgid "Icon Top Margin"
 
 
634
  msgstr ""
635
 
636
- #: includes/class-wp-mobile-menu-options.php:964
637
- #: includes/class-wp-mobile-menu-options.php:1338
638
- #: includes/class-wp-mobile-menu-options.php:2129
639
- msgid "Icon Type"
640
  msgstr ""
641
 
642
- #: includes/class-wp-mobile-menu-options.php:1343
643
- msgid "Image"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
  msgstr ""
645
 
646
- #: includes/class-wp-mobile-menu-options.php:1097
647
- #: includes/class-wp-mobile-menu-options.php:1471
648
- #: includes/class-wp-mobile-menu-options.php:2207
649
  msgid "Inherit"
650
  msgstr ""
651
 
652
- #: includes/class-wp-mobile-menu-options.php:1098
653
- #: includes/class-wp-mobile-menu-options.php:1472
654
- #: includes/class-wp-mobile-menu-options.php:2208
655
- msgid "Initial"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
  msgstr ""
657
 
658
- #: includes/class-wp-mobile-menu-options.php:71
659
- msgid "Left"
 
660
  msgstr ""
661
 
662
- #: includes/class-wp-mobile-menu-options.php:146
663
- #: includes/class-wp-mobile-menu-options.php:848
664
- msgid "Left Menu"
665
  msgstr ""
666
 
667
- #: includes/class-wp-mobile-menu-options.php:2009
668
- msgid "Left Menu Background Color"
669
  msgstr ""
670
 
671
- #: includes/class-wp-mobile-menu-options.php:2019
672
- msgid "Left Menu Background Color Hover"
673
  msgstr ""
674
 
675
- #: includes/class-wp-mobile-menu-options.php:1800
676
- msgid "Left Menu Colors"
677
  msgstr ""
678
 
679
- #: includes/class-wp-mobile-menu-options.php:1150
680
- msgid "Left Menu Content Padding"
681
  msgstr ""
682
 
683
- #: includes/class-wp-mobile-menu-options.php:1189
684
- msgid "Left Menu Copyright Content"
685
  msgstr ""
686
 
687
- #: includes/class-wp-mobile-menu-options.php:1163
688
- msgid "Left Menu Font"
689
  msgstr ""
690
 
691
- #: includes/class-wp-mobile-menu-core.php:337
692
- #: includes/class-wp-mobile-menu-core.php:901
693
- msgid "Left Menu Icon"
694
  msgstr ""
695
 
696
- #: includes/class-wp-mobile-menu-options.php:1806
697
- msgid "Left Menu Icon Color"
698
  msgstr ""
699
 
700
- #: includes/class-wp-mobile-menu-options.php:1819
701
- msgid "Left Menu Items Icon Color"
702
  msgstr ""
703
 
704
- #: includes/class-wp-mobile-menu-options.php:1989
705
- msgid "Left Menu Text Color"
706
  msgstr ""
707
 
708
- #: includes/class-wp-mobile-menu-options.php:1999
709
- msgid "Left Menu Text Color Hover"
 
 
710
  msgstr ""
711
 
712
- #: includes/class-wp-mobile-menu-options.php:1061
713
- msgid "Left Panel options"
714
  msgstr ""
715
 
716
- #: includes/class-wp-mobile-menu-core.php:1035
717
- msgid "Login"
718
  msgstr ""
719
 
720
- #: includes/class-wp-mobile-menu-options.php:417
721
- #: includes/class-wp-mobile-menu-options.php:454
722
- msgid "Logo"
723
  msgstr ""
724
 
725
- #: includes/class-wp-mobile-menu-core.php:799
726
- #: includes/class-wp-mobile-menu-core.php:807
727
- msgid "Logo Header Menu"
728
  msgstr ""
729
 
730
- #: includes/class-wp-mobile-menu-options.php:463
731
- msgid "Logo Height"
732
  msgstr ""
733
 
734
- #: includes/class-wp-mobile-menu-options.php:406
735
- msgid "Logo options"
736
  msgstr ""
737
 
738
- #: includes/class-wp-mobile-menu-options.php:478
739
- msgid "Logo Retina"
740
  msgstr ""
741
 
742
- #: includes/class-wp-mobile-menu-options.php:509
743
- msgid "Logo/Text Top Margin"
744
  msgstr ""
745
 
746
- #: includes/class-wp-mobile-menu-options.php:346
747
- msgid "Main options"
748
  msgstr ""
749
 
750
- #: includes/class-wp-mobile-menu-options.php:2260
751
- msgid "Menu Content Padding"
752
  msgstr ""
753
 
754
- #: includes/class-wp-mobile-menu-options.php:895
755
- #: includes/class-wp-mobile-menu-options.php:1269
756
- msgid "Menu Icon"
757
  msgstr ""
758
 
759
- #: includes/class-wp-mobile-menu-options.php:1049
760
- #: includes/class-wp-mobile-menu-options.php:1422
761
- msgid "Menu Item Icons Horizontal Padding"
762
  msgstr ""
763
 
764
- #: includes/class-wp-mobile-menu-options.php:1039
765
- #: includes/class-wp-mobile-menu-options.php:1412
766
- msgid "Menu Item Icons Position"
767
  msgstr ""
768
 
769
- #: includes/class-wp-mobile-menu-options.php:1115
770
- #: includes/class-wp-mobile-menu-options.php:1489
771
- #: includes/class-wp-mobile-menu-options.php:2225
772
- msgid "Menu Panel Width Units"
773
  msgstr ""
774
 
775
- #: includes/class-wp-mobile-menu-options.php:1138
776
- #: includes/class-wp-mobile-menu-options.php:1512
777
- #: includes/class-wp-mobile-menu-options.php:2248
778
- msgid "Menu Panel Width(Percentage)"
779
  msgstr ""
780
 
781
- #: includes/class-wp-mobile-menu-options.php:1126
782
- #: includes/class-wp-mobile-menu-options.php:1500
783
- #: includes/class-wp-mobile-menu-options.php:2236
784
- msgid "Menu Panel Width(Pixels)"
785
  msgstr ""
786
 
787
- #. Name of the plugin
788
- msgid "Mobile Menu for Woocommerce"
789
  msgstr ""
790
 
791
- #: includes/class-wp-mobile-menu-options.php:90
792
- msgid "Mobile Menu Options"
793
  msgstr ""
794
 
795
- #: includes/class-wp-mobile-menu-options.php:213
796
- msgid "Mobile Menu Visibility(Width Trigger)"
797
  msgstr ""
798
 
799
- #: includes/class-wp-mobile-menu-core.php:1032
800
- msgid "My Account"
801
  msgstr ""
802
 
803
- #: includes/class-wp-mobile-menu-options.php:375
804
- msgid "Naked Header"
805
  msgstr ""
806
 
807
- #: includes/class-wp-mobile-menu-options.php:381
808
- #: includes/class-wp-mobile-menu-options.php:391
809
- #: includes/class-wp-mobile-menu-options.php:402
810
- #: includes/class-wp-mobile-menu-options.php:495
811
- #: includes/class-wp-mobile-menu-options.php:677
812
- #: includes/class-wp-mobile-menu-options.php:788
813
- #: includes/class-wp-mobile-menu-options.php:864
814
- #: includes/class-wp-mobile-menu-options.php:875
815
- #: includes/class-wp-mobile-menu-options.php:1237
816
- #: includes/class-wp-mobile-menu-options.php:1248
817
- msgid "No"
818
  msgstr ""
819
 
820
- #: includes/class-wp-mobile-menu-core.php:955
821
- msgid "No Items found."
822
  msgstr ""
823
 
824
- #: includes/class-wp-mobile-menu-options.php:263
825
- msgid "Off"
826
  msgstr ""
827
 
828
- #: includes/class-wp-mobile-menu-options.php:262
829
- msgid "On"
830
  msgstr ""
831
 
832
- #: includes/class-wp-mobile-menu-options.php:883
833
- #: includes/class-wp-mobile-menu-options.php:1257
834
- msgid "Only visible for logged users"
835
  msgstr ""
836
 
837
- #: includes/class-wp-mobile-menu-options.php:2099
838
- msgid "Open Cart Panel after adding a product"
839
  msgstr ""
840
 
841
- #: includes/class-wp-mobile-menu-options.php:2103
842
- msgid "Open Cart Panel after adding a product."
843
  msgstr ""
844
 
845
- #: includes/class-wp-mobile-menu-options.php:937
846
- msgid "Open the Left Menu Panel or open a Link url."
847
  msgstr ""
848
 
849
- #: includes/class-wp-mobile-menu-options.php:1279
850
- msgid "Open the Right Menu Panel or open a Link url."
851
  msgstr ""
852
 
853
- #: includes/class-wp-mobile-menu-options.php:64
854
- msgid "Overlay"
855
  msgstr ""
856
 
857
- #: includes/class-wp-mobile-menu-options.php:1578
858
- msgid "Overlay Background Color"
859
  msgstr ""
860
 
861
- #: includes/class-wp-mobile-menu-options.php:1106
862
- #: includes/class-wp-mobile-menu-options.php:1480
863
- #: includes/class-wp-mobile-menu-options.php:2216
864
- msgid "Panel Background Gradient Css"
865
  msgstr ""
866
 
867
- #: includes/class-wp-mobile-menu-options.php:1067
868
- #: includes/class-wp-mobile-menu-options.php:1441
869
- #: includes/class-wp-mobile-menu-options.php:2177
870
- msgid "Panel Background Image"
871
  msgstr ""
872
 
873
- #: includes/class-wp-mobile-menu-options.php:1075
874
- #: includes/class-wp-mobile-menu-options.php:1449
875
- #: includes/class-wp-mobile-menu-options.php:2185
876
- msgid "Panel Background Image Opacity"
877
  msgstr ""
878
 
879
- #: includes/class-wp-mobile-menu-options.php:1088
880
- #: includes/class-wp-mobile-menu-options.php:1462
881
- #: includes/class-wp-mobile-menu-options.php:2198
882
- msgid "Panel Background Image Size"
883
  msgstr ""
884
 
885
- #: includes/class-wp-mobile-menu-options.php:858
886
- #: includes/class-wp-mobile-menu-options.php:1231
887
- msgid "Parent Link open submenu"
888
  msgstr ""
889
 
890
- #: includes/class-wp-mobile-menu-options.php:869
891
- #: includes/class-wp-mobile-menu-options.php:1242
892
- msgid "Parent Link open submenu(2nd Level)"
893
  msgstr ""
894
 
895
- #: includes/class-wp-mobile-menu-options.php:1121
896
- #: includes/class-wp-mobile-menu-options.php:1495
897
- #: includes/class-wp-mobile-menu-options.php:2231
898
- msgid "Percentage"
899
  msgstr ""
900
 
901
- #: includes/class-wp-mobile-menu-options.php:1494
902
- msgid "Pixels"
 
903
  msgstr ""
904
 
905
- #: includes/class-wp-mobile-menu-options.php:837
906
- msgid "Placeholder Text"
 
907
  msgstr ""
908
 
909
- #: includes/class-wp-mobile-menu-options.php:318
910
- msgid "Put your custom CSS rules here"
911
  msgstr ""
912
 
913
- #: includes/class-wp-mobile-menu-options.php:327
914
- msgid "Put your custom JS rules here"
915
  msgstr ""
916
 
917
- #: includes/class-wp-mobile-menu-core.php:947
918
- msgid "Quantity:"
919
  msgstr ""
920
 
921
- #: includes/class-wp-mobile-menu-core.php:643
922
- msgid "Refine"
923
  msgstr ""
924
 
925
- #: includes/class-wp-mobile-menu-core.php:164
926
- msgid "Remove Icon Selection"
927
  msgstr ""
928
 
929
- #: includes/class-wp-mobile-menu-core.php:949
930
- msgid "Remove this item"
931
  msgstr ""
932
 
933
- #: includes/class-wp-mobile-menu-options.php:72
934
- msgid "Right"
935
  msgstr ""
936
 
937
- #: includes/class-wp-mobile-menu-options.php:149
938
- #: includes/class-wp-mobile-menu-options.php:1221
939
- msgid "Right Menu"
940
  msgstr ""
941
 
942
- #: includes/class-wp-mobile-menu-options.php:2049
943
- msgid "Right Menu Background Color"
944
  msgstr ""
945
 
946
- #: includes/class-wp-mobile-menu-options.php:2059
947
- msgid "Right Menu Background Color Hover"
948
  msgstr ""
949
 
950
- #: includes/class-wp-mobile-menu-options.php:1890
951
- msgid "Right Menu Colors"
952
  msgstr ""
953
 
954
- #: includes/class-wp-mobile-menu-options.php:1524
955
- msgid "Right Menu Content Padding"
956
  msgstr ""
957
 
958
- #: includes/class-wp-mobile-menu-options.php:1564
959
- msgid "Right Menu Copyright Content"
960
  msgstr ""
961
 
962
- #: includes/class-wp-mobile-menu-options.php:1537
963
- msgid "Right Menu Font"
964
  msgstr ""
965
 
966
- #: includes/class-wp-mobile-menu-core.php:377
967
- msgid "Right Menu Icon"
968
  msgstr ""
969
 
970
- #: includes/class-wp-mobile-menu-options.php:1896
971
- msgid "Right Menu Icon Color"
972
  msgstr ""
973
 
974
- #: includes/class-wp-mobile-menu-options.php:1909
975
- msgid "Right Menu Items Icon Color"
976
  msgstr ""
977
 
978
- #: includes/class-wp-mobile-menu-options.php:2029
979
- msgid "Right Menu Text Color"
980
  msgstr ""
981
 
982
- #: includes/class-wp-mobile-menu-options.php:2039
983
- msgid "Right Menu Text Color Hover"
984
  msgstr ""
985
 
986
- #: includes/class-wp-mobile-menu-options.php:1435
987
- msgid "Right Panel options"
988
  msgstr ""
989
 
990
- #: includes/class-wp-mobile-menu-options.php:832
991
- #: includes/class-wp-mobile-menu-options.php:841
992
- msgid "Search"
993
  msgstr ""
994
 
995
- #: includes/class-wp-mobile-menu-options.php:1743
996
- msgid "Search Form Background Color"
997
  msgstr ""
998
 
999
- #: includes/class-wp-mobile-menu-options.php:1733
1000
- msgid "Search Form Button Background Color"
1001
  msgstr ""
1002
 
1003
- #: includes/class-wp-mobile-menu-options.php:1723
1004
- msgid "Search Form Button Color"
 
 
 
1005
  msgstr ""
1006
 
1007
- #: includes/class-wp-mobile-menu-options.php:1763
1008
- msgid "Search Form Placeholder Color"
1009
  msgstr ""
1010
 
1011
- #: includes/class-wp-mobile-menu-options.php:1753
1012
- msgid "Search Form Text Color"
1013
  msgstr ""
1014
 
1015
- #: includes/class-wp-mobile-menu-options.php:1713
1016
- msgid "Search Icon Color"
1017
  msgstr ""
1018
 
1019
- #: includes/class-wp-mobile-menu-options.php:816
1020
- msgid "Search Icon Font Size"
1021
  msgstr ""
1022
 
1023
- #: includes/class-wp-mobile-menu-options.php:339
1024
- msgid "Select a page"
1025
  msgstr ""
1026
 
1027
- #: includes/class-wp-mobile-menu-options.php:181
1028
- #: includes/class-wp-mobile-menu-options.php:640
1029
- #: includes/class-wp-mobile-menu-options.php:753
1030
- #: includes/class-wp-mobile-menu-options.php:913
1031
- #: includes/class-wp-mobile-menu-options.php:1166
1032
- #: includes/class-wp-mobile-menu-options.php:1200
1033
- #: includes/class-wp-mobile-menu-options.php:1298
1034
- #: includes/class-wp-mobile-menu-options.php:1540
1035
- msgid "Select a style"
1036
  msgstr ""
1037
 
1038
- #: includes/class-wp-mobile-menu-options.php:1092
1039
- #: includes/class-wp-mobile-menu-options.php:1466
1040
- #: includes/class-wp-mobile-menu-options.php:2202
1041
- msgid ""
1042
- "Select the Background image size type. <a href=\"https://www.w3schools."
1043
- "com/cssref/css3_pr_background-size.asp\" target=\"_blank\">See the CSS "
1044
- "Documentation</a>"
1045
  msgstr ""
1046
 
1047
- #: includes/class-wp-mobile-menu-options.php:108
1048
- msgid "Select the menu that will open in the left side just for this page."
 
 
1049
  msgstr ""
1050
 
1051
- #: includes/class-wp-mobile-menu-options.php:851
1052
- msgid "Select the menu that will open in the left side."
1053
  msgstr ""
1054
 
1055
- #: includes/class-wp-mobile-menu-options.php:117
1056
- msgid "Select the menu that will open in the right side just for this page."
1057
  msgstr ""
1058
 
1059
- #: includes/class-wp-mobile-menu-options.php:1224
1060
- msgid "Select the menu that will open in the right side."
1061
  msgstr ""
1062
 
1063
- #: includes/class-wp-mobile-menu-core.php:1033
1064
- msgid "Sign Out"
1065
  msgstr ""
1066
 
1067
- #: includes/class-wp-mobile-menu-options.php:412
1068
- msgid "Site Logo"
1069
  msgstr ""
1070
 
1071
- #: includes/class-wp-mobile-menu-options.php:67
1072
- msgid "Slideout from Top"
1073
  msgstr ""
1074
 
1075
- #: includes/class-wp-mobile-menu-options.php:66
1076
- #: includes/class-wp-mobile-menu-options.php:80
1077
- msgid "Slideout Over Content"
1078
  msgstr ""
1079
 
1080
- #: includes/class-wp-mobile-menu-options.php:65
1081
- #: includes/class-wp-mobile-menu-options.php:79
1082
- msgid "Slideout Push Content"
1083
  msgstr ""
1084
 
1085
- #: includes/class-wp-mobile-menu-options.php:1870
1086
- #: includes/class-wp-mobile-menu-options.php:1960
1087
- msgid "Submenu Background Color"
1088
  msgstr ""
1089
 
1090
- #: includes/class-wp-mobile-menu-options.php:1880
1091
- #: includes/class-wp-mobile-menu-options.php:1970
1092
- msgid "Submenu Text Color"
1093
  msgstr ""
1094
 
1095
- #. Author of the plugin
1096
- msgid "Takanakui"
1097
  msgstr ""
1098
 
1099
- #: includes/class-wp-mobile-menu-options.php:418
1100
- msgid "Text"
1101
  msgstr ""
1102
 
1103
- #: includes/class-wp-mobile-menu-options.php:901
1104
- msgid "Text After Icon"
1105
  msgstr ""
1106
 
1107
- #: includes/class-wp-mobile-menu-options.php:910
1108
- msgid "Text After Icon Font"
1109
  msgstr ""
1110
 
1111
- #: includes/class-wp-mobile-menu-options.php:1286
1112
- msgid "Text Before Icon"
1113
  msgstr ""
1114
 
1115
- #: includes/class-wp-mobile-menu-options.php:1295
1116
- msgid "Text Before Icon Font"
1117
  msgstr ""
1118
 
1119
- #: includes/class-wp-mobile-menu-options.php:1616
1120
- #: includes/class-wp-mobile-menu-options.php:1840
1121
- #: includes/class-wp-mobile-menu-options.php:1930
1122
- msgid "Text Color"
1123
  msgstr ""
1124
 
1125
- #: includes/class-wp-mobile-menu-options.php:216
1126
- msgid ""
1127
- "The Mobile menu will appear at this window size. Place it at 5000 to be "
1128
- "always visible. "
1129
  msgstr ""
1130
 
1131
- #: includes/class-wp-mobile-menu-options.php:225
1132
- msgid ""
1133
- "The Width trigger field is very important because it determines the width "
1134
- "that will show the Mobile Menu. If you want it always visible set it to "
1135
- "5000px"
1136
  msgstr ""
1137
 
1138
- #: includes/class-wp-mobile-menu-core.php:959
1139
- msgid "Total"
1140
  msgstr ""
1141
 
1142
- #: includes/class-wp-mobile-menu-core.php:946
1143
- msgid "Unit Price:"
1144
  msgstr ""
1145
 
1146
- #: includes/class-wp-mobile-menu-options.php:1099
1147
- #: includes/class-wp-mobile-menu-options.php:1473
1148
- #: includes/class-wp-mobile-menu-options.php:2209
1149
- msgid "Unset"
1150
  msgstr ""
1151
 
1152
- #: includes/class-wp-mobile-menu-options.php:1070
1153
- msgid ""
1154
- "Upload your left menu background image(this will override the Background "
1155
- "color option)"
1156
  msgstr ""
1157
 
1158
- #: includes/class-wp-mobile-menu-options.php:1000
1159
- msgid "Upload your left menu icon image"
1160
  msgstr ""
1161
 
1162
- #: includes/class-wp-mobile-menu-options.php:457
1163
- msgid "Upload your logo image"
1164
  msgstr ""
1165
 
1166
- #: includes/class-wp-mobile-menu-options.php:481
1167
- msgid "Upload your logo image for retina devices"
1168
  msgstr ""
1169
 
1170
- #: includes/class-wp-mobile-menu-options.php:1444
1171
- msgid ""
1172
- "upload your right menu background image(this will override the Background "
1173
- "color option)"
1174
  msgstr ""
1175
 
1176
- #: includes/class-wp-mobile-menu-options.php:1373
1177
- msgid "Upload your right menu icon image"
1178
  msgstr ""
1179
 
1180
- #: includes/class-wp-mobile-menu-options.php:2180
1181
  msgid ""
1182
  "Upload your Woocommerce menu background image(this will override the "
1183
  "Background color option)"
1184
  msgstr ""
1185
 
1186
- #: includes/class-wp-mobile-menu-options.php:2165
1187
- msgid "Upload your Woocommerce Menu icon image"
1188
- msgstr ""
1189
-
1190
- #: includes/class-wp-mobile-menu-options.php:828
1191
- msgid "Use text instead Icon"
1192
- msgstr ""
1193
-
1194
- #: includes/class-wp-mobile-menu-core.php:963
1195
- msgid "View cart"
1196
- msgstr ""
1197
-
1198
- #: includes/class-wp-mobile-menu-options.php:1666
1199
- msgid "View Cart Button Background Color"
1200
  msgstr ""
1201
 
1202
- #: includes/class-wp-mobile-menu-options.php:1656
1203
- msgid "View Cart Button Color"
1204
  msgstr ""
1205
 
1206
- #: includes/class-wp-mobile-menu-options.php:2084
1207
- msgid "Woocommerce"
1208
  msgstr ""
1209
 
1210
- #: includes/class-wp-mobile-menu-options.php:1600
1211
- msgid "Woocommerce Colors"
1212
  msgstr ""
1213
 
1214
- #: includes/class-wp-mobile-menu-options.php:178
1215
- msgid "Woocommerce Menu Font"
1216
  msgstr ""
1217
 
1218
- #: includes/class-wp-mobile-menu-options.php:1626
1219
- msgid "Woocommerce Panel Background Color"
 
 
1220
  msgstr ""
1221
 
1222
- #: includes/class-wp-mobile-menu-options.php:2171
1223
- msgid "Woocommerce Panel options"
1224
  msgstr ""
1225
 
1226
- #: includes/class-wp-mobile-menu-options.php:99
1227
- msgid "WP Mobile Menu Meta options"
1228
  msgstr ""
1229
 
1230
- #: includes/class-wp-mobile-menu-options.php:380
1231
- #: includes/class-wp-mobile-menu-options.php:390
1232
- #: includes/class-wp-mobile-menu-options.php:401
1233
- #: includes/class-wp-mobile-menu-options.php:494
1234
- #: includes/class-wp-mobile-menu-options.php:676
1235
- #: includes/class-wp-mobile-menu-options.php:787
1236
- #: includes/class-wp-mobile-menu-options.php:863
1237
- #: includes/class-wp-mobile-menu-options.php:874
1238
- #: includes/class-wp-mobile-menu-options.php:1236
1239
- #: includes/class-wp-mobile-menu-options.php:1247
1240
- msgid "Yes"
1241
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: Mobile Menu for Woocommerce\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2019-05-31 11:50+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/"
16
 
17
+ #: mobmenu.php:49
18
  msgid ""
19
+ "\"> Professional Version Features</a> and the <a href=\"http://www."
20
+ "wpmobilemenu.com\" target=\"_blank\" >Demo site</a>"
21
  msgstr ""
22
 
23
+ #: includes/class-wp-mobile-menu-core.php:193
24
+ msgid "Remove Icon Selection"
25
  msgstr ""
26
 
27
+ #: includes/class-wp-mobile-menu-core.php:236
28
+ #, php-format
29
+ msgid "%d items total"
30
  msgstr ""
31
 
32
+ #: includes/class-wp-mobile-menu-core.php:238
33
+ #: includes/class-wp-mobile-menu-core.php:241
34
+ #, php-format
35
+ msgid "%d item total"
36
+ msgid_plural "%d items total"
37
+ msgstr[0] ""
38
+ msgstr[1] ""
39
+
40
+ #: includes/class-wp-mobile-menu-core.php:276
41
+ #: includes/class-wp-mobile-menu-options.php:1131
42
+ msgid "Icon and Text Below"
43
  msgstr ""
44
 
45
+ #: includes/class-wp-mobile-menu-core.php:277
46
+ #: includes/class-wp-mobile-menu-options.php:1132
47
+ msgid "Icon and Text on Right Side"
48
  msgstr ""
49
 
50
+ #: includes/class-wp-mobile-menu-core.php:278
51
+ #: includes/class-wp-mobile-menu-options.php:1133
52
+ msgid "Only Icon"
 
 
 
 
53
  msgstr ""
54
 
55
+ #: includes/class-wp-mobile-menu-core.php:279
56
+ #: includes/class-wp-mobile-menu-options.php:1134
57
+ msgid "Only Text"
 
 
 
58
  msgstr ""
59
 
60
+ #: includes/class-wp-mobile-menu-core.php:368
61
+ #: includes/class-wp-mobile-menu-core.php:492
62
+ msgid "Left Menu Icon"
63
  msgstr ""
64
 
65
+ #: includes/class-wp-mobile-menu-core.php:475
66
+ #: includes/class-wp-mobile-menu-core.php:645
67
+ msgid "Left Menu Button"
68
  msgstr ""
69
 
70
+ #: includes/class-wp-mobile-menu-core.php:529
71
+ #: includes/class-wp-mobile-menu-core.php:733
72
+ msgid "Right Menu Button"
73
  msgstr ""
74
 
75
+ #: includes/class-wp-mobile-menu-core.php:546
76
+ msgid "Right Menu Icon"
77
  msgstr ""
78
 
79
+ #: includes/class-wp-mobile-menu-core.php:617
80
+ msgid "Cart Menu Button"
81
  msgstr ""
82
 
83
+ #: includes/class-wp-mobile-menu-core.php:907
84
+ #: includes/class-wp-mobile-menu-core.php:914
85
+ msgid "Left Mobile Menu"
86
  msgstr ""
87
 
88
+ #: includes/class-wp-mobile-menu-core.php:908
89
+ #: includes/class-wp-mobile-menu-core.php:915
90
+ msgid "Right Mobile Menu"
 
91
  msgstr ""
92
 
93
+ #: includes/class-wp-mobile-menu-core.php:909
94
+ msgid "Footer Mobile Menu"
 
 
95
  msgstr ""
96
 
97
+ #: includes/class-wp-mobile-menu-core.php:949
98
+ msgid "Product Category"
99
  msgstr ""
100
 
101
+ #: includes/class-wp-mobile-menu-core.php:950
102
+ msgid "Price"
 
103
  msgstr ""
104
 
105
+ #: includes/class-wp-mobile-menu-core.php:975
106
+ msgid "Refine"
 
107
  msgstr ""
108
 
109
+ #: includes/class-wp-mobile-menu-core.php:1139
110
+ #: includes/class-wp-mobile-menu-core.php:1141
111
+ msgid "Logo Header Menu"
112
  msgstr ""
113
 
114
+ #: includes/class-wp-mobile-menu-core.php:1191
115
+ msgid "% items"
116
  msgstr ""
117
 
118
+ #: includes/class-wp-mobile-menu-core.php:1194
119
+ msgid "0 items"
120
  msgstr ""
121
 
122
+ #: includes/class-wp-mobile-menu-core.php:1196
123
+ msgid "1 item"
124
  msgstr ""
125
 
126
+ #: includes/class-wp-mobile-menu-core.php:1256
127
+ msgid "Cart Menu Button Image"
128
  msgstr ""
129
 
130
+ #: includes/class-wp-mobile-menu-core.php:1261
131
+ msgid "Cart Menu Button Icon"
132
  msgstr ""
133
 
134
+ #: includes/class-wp-mobile-menu-core.php:1309
135
+ msgid "Unit Price:"
 
 
 
136
  msgstr ""
137
 
138
+ #: includes/class-wp-mobile-menu-core.php:1310
139
+ msgid "Quantity:"
 
 
140
  msgstr ""
141
 
142
+ #: includes/class-wp-mobile-menu-core.php:1312
143
+ msgid "Remove this item"
 
 
144
  msgstr ""
145
 
146
+ #: includes/class-wp-mobile-menu-core.php:1321
147
+ msgid "Total"
 
 
148
  msgstr ""
149
 
150
+ #: includes/class-wp-mobile-menu-core.php:1325
151
+ msgid "View cart"
152
  msgstr ""
153
 
154
+ #: includes/class-wp-mobile-menu-core.php:1326
155
+ msgid "Checkout"
 
 
156
  msgstr ""
157
 
158
+ #: includes/class-wp-mobile-menu-core.php:1396
159
+ msgid "My Account"
 
160
  msgstr ""
161
 
162
+ #: includes/class-wp-mobile-menu-core.php:1397
163
+ msgid "Sign Out"
 
 
164
  msgstr ""
165
 
166
+ #: includes/class-wp-mobile-menu-core.php:1399
167
+ msgid "Login"
 
 
168
  msgstr ""
169
 
170
+ #: includes/class-wp-mobile-menu-core.php:1515
171
+ msgid "Left Menu Top"
 
 
172
  msgstr ""
173
 
174
+ #: includes/class-wp-mobile-menu-core.php:1528
175
+ msgid "Left Menu Bottom"
 
176
  msgstr ""
177
 
178
+ #: includes/class-wp-mobile-menu-core.php:1541
179
+ msgid "Right Menu Top"
180
  msgstr ""
181
 
182
+ #: includes/class-wp-mobile-menu-core.php:1554
183
+ msgid "Right Menu Bottom"
184
  msgstr ""
185
 
186
+ #: includes/class-wp-mobile-menu-core.php:1567
187
+ msgid "Mobile Filter Shop"
 
 
188
  msgstr ""
189
 
190
+ #: includes/class-wp-mobile-menu-core.php:4061
191
+ msgid "The file is empty. Upload a new file and try again."
192
  msgstr ""
193
 
194
+ #: includes/class-wp-mobile-menu-core.php:4069
195
+ msgid "Settings Imported successfully."
 
 
196
  msgstr ""
197
 
198
+ #: includes/class-wp-mobile-menu-core.php:4072
199
+ msgid "Something went wrong. Upload a new file and try again."
200
  msgstr ""
201
 
202
+ #: includes/class-wp-mobile-menu-core.php:4076
203
+ msgid ""
204
+ "The settings are exactly the same has the current ones. Nothing was imported."
 
205
  msgstr ""
206
 
207
+ #: includes/class-wp-mobile-menu-core.php:4085
208
+ msgid "Import the Mobile Menu Official Demos"
209
  msgstr ""
210
 
211
+ #: includes/class-wp-mobile-menu-core.php:4086
212
+ msgid ""
213
+ "This process will import the settings from the official demos. The logos "
214
+ "should be assigned after the import."
215
  msgstr ""
216
 
217
+ #: includes/class-wp-mobile-menu-core.php:4090
218
+ msgid "WooCommerce Shop Demo (Business)"
219
  msgstr ""
220
 
221
+ #: includes/class-wp-mobile-menu-core.php:4091
222
+ #: includes/class-wp-mobile-menu-core.php:4105
223
+ #: includes/class-wp-mobile-menu-core.php:4105
224
+ msgid "Import Demo"
225
  msgstr ""
226
 
227
+ #: includes/class-wp-mobile-menu-core.php:4099
228
+ #: includes/class-wp-mobile-menu-core.php:4113
229
+ msgid "See Demo Site"
230
  msgstr ""
231
 
232
+ #: includes/class-wp-mobile-menu-core.php:4104
233
+ msgid "Professional Demo"
234
  msgstr ""
235
 
236
+ #: includes/class-wp-mobile-menu-core.php:4129
237
+ msgid "Import the Mobile Menu settings from a txt file"
238
  msgstr ""
239
 
240
+ #: includes/class-wp-mobile-menu-core.php:4130
241
+ msgid ""
242
+ "This tool allows you to import the settings of WP Mobile Menu that were "
243
+ "previously exported from other website."
244
  msgstr ""
245
 
246
+ #: includes/class-wp-mobile-menu-core.php:4146
247
+ msgid "Choose the settings file from your computer:"
248
  msgstr ""
249
 
250
+ #: includes/class-wp-mobile-menu-core.php:4159
251
+ #: includes/class-wp-mobile-menu-options.php:574
252
+ msgid "Import"
253
  msgstr ""
254
 
255
+ #: includes/class-wp-mobile-menu-options.php:52
256
+ msgid "Choose one menu"
257
  msgstr ""
258
 
259
+ #: includes/class-wp-mobile-menu-options.php:63
260
+ #: includes/class-wp-mobile-menu-options.php:126
261
+ msgid "Image"
262
  msgstr ""
263
 
264
+ #: includes/class-wp-mobile-menu-options.php:64
265
+ #: includes/class-wp-mobile-menu-options.php:127
266
+ msgid "Icon"
267
  msgstr ""
268
 
269
+ #: includes/class-wp-mobile-menu-options.php:65
270
+ msgid "Animated Icon"
271
  msgstr ""
272
 
273
+ #: includes/class-wp-mobile-menu-options.php:69
274
+ msgid "Overlay"
275
  msgstr ""
276
 
277
+ #: includes/class-wp-mobile-menu-options.php:70
278
+ #: includes/class-wp-mobile-menu-options.php:131
279
+ msgid "Slideout Push Content"
280
  msgstr ""
281
 
282
+ #: includes/class-wp-mobile-menu-options.php:71
283
+ #: includes/class-wp-mobile-menu-options.php:132
284
+ msgid "Slideout Over Content"
285
  msgstr ""
286
 
287
+ #: includes/class-wp-mobile-menu-options.php:72
288
+ msgid "Slideout from Top"
 
289
  msgstr ""
290
 
291
+ #: includes/class-wp-mobile-menu-options.php:76
292
+ #: includes/class-wp-mobile-menu-options.php:812
293
+ #: includes/class-wp-mobile-menu-options.php:947
294
+ #: includes/class-wp-mobile-menu-options.php:1044
295
+ msgid "Left"
296
  msgstr ""
297
 
298
+ #: includes/class-wp-mobile-menu-options.php:77
299
+ #: includes/class-wp-mobile-menu-options.php:814
300
+ #: includes/class-wp-mobile-menu-options.php:949
301
+ #: includes/class-wp-mobile-menu-options.php:1046
302
+ msgid "Right"
303
  msgstr ""
304
 
305
+ #: includes/class-wp-mobile-menu-options.php:78
306
+ msgid "Above"
 
 
307
  msgstr ""
308
 
309
+ #: includes/class-wp-mobile-menu-options.php:79
310
+ msgid "Below"
 
311
  msgstr ""
312
 
313
+ #: includes/class-wp-mobile-menu-options.php:83
314
+ msgid "3DX"
 
 
315
  msgstr ""
316
 
317
+ #: includes/class-wp-mobile-menu-options.php:84
318
+ msgid "3DY"
 
 
319
  msgstr ""
320
 
321
+ #: includes/class-wp-mobile-menu-options.php:85
322
+ msgid "3DXY"
323
  msgstr ""
324
 
325
+ #: includes/class-wp-mobile-menu-options.php:86
326
+ msgid "Arrow"
327
  msgstr ""
328
 
329
+ #: includes/class-wp-mobile-menu-options.php:87
330
+ msgid "Arrow Alt"
331
  msgstr ""
332
 
333
+ #: includes/class-wp-mobile-menu-options.php:88
334
+ msgid "Arrow Turn"
335
  msgstr ""
336
 
337
+ #: includes/class-wp-mobile-menu-options.php:89
338
+ msgid "Collapse"
 
339
  msgstr ""
340
 
341
+ #: includes/class-wp-mobile-menu-options.php:90
342
+ msgid "Elastic"
 
343
  msgstr ""
344
 
345
+ #: includes/class-wp-mobile-menu-options.php:91
346
+ msgid "Emphatic"
347
  msgstr ""
348
 
349
+ #: includes/class-wp-mobile-menu-options.php:92
350
+ msgid "Minus"
351
  msgstr ""
352
 
353
+ #: includes/class-wp-mobile-menu-options.php:93
354
+ msgid "Squeeze"
355
  msgstr ""
356
 
357
+ #: includes/class-wp-mobile-menu-options.php:94
358
+ msgid "Spin"
359
  msgstr ""
360
 
361
+ #: includes/class-wp-mobile-menu-options.php:95
362
+ msgid "Slider"
363
  msgstr ""
364
 
365
+ #: includes/class-wp-mobile-menu-options.php:96
366
+ msgid "Stand"
 
367
  msgstr ""
368
 
369
+ #: includes/class-wp-mobile-menu-options.php:97
370
+ msgid "Spring"
371
  msgstr ""
372
 
373
+ #: includes/class-wp-mobile-menu-options.php:98
374
+ msgid "Vortex"
375
  msgstr ""
376
 
377
+ #: includes/class-wp-mobile-menu-options.php:161
378
+ msgid "Mobile Menu Options"
 
379
  msgstr ""
380
 
381
+ #: includes/class-wp-mobile-menu-options.php:170
382
+ msgid "WP Mobile Menu Meta options"
383
  msgstr ""
384
 
385
+ #: includes/class-wp-mobile-menu-options.php:176
386
+ msgid "Alternative Left Menu"
387
  msgstr ""
388
 
389
+ #: includes/class-wp-mobile-menu-options.php:179
390
+ msgid "Select the menu that will open in the left side just for this page."
391
  msgstr ""
392
 
393
+ #: includes/class-wp-mobile-menu-options.php:185
394
+ msgid "Alternative Right Menu"
395
  msgstr ""
396
 
397
+ #: includes/class-wp-mobile-menu-options.php:188
398
+ msgid "Select the menu that will open in the right side just for this page."
399
  msgstr ""
400
 
401
+ #: includes/class-wp-mobile-menu-options.php:194
402
+ msgid "Alternative Footer Menu"
403
  msgstr ""
404
 
405
+ #: includes/class-wp-mobile-menu-options.php:197
406
+ msgid "Select the menu that will appear at the footer."
 
407
  msgstr ""
408
 
409
+ #: includes/class-wp-mobile-menu-options.php:203
410
+ msgid "Use page title"
411
  msgstr ""
412
 
413
+ #: includes/class-wp-mobile-menu-options.php:206
414
+ msgid "Choose if you want to display the page Title in the Header/Banner"
415
  msgstr ""
416
 
417
+ #: includes/class-wp-mobile-menu-options.php:209
418
+ #: includes/class-wp-mobile-menu-options.php:786
419
+ msgid "Yes - In the Header"
420
  msgstr ""
421
 
422
+ #: includes/class-wp-mobile-menu-options.php:210
423
+ #: includes/class-wp-mobile-menu-options.php:787
424
+ msgid "Yes - In the Header Banner"
425
  msgstr ""
426
 
427
+ #: includes/class-wp-mobile-menu-options.php:220
428
+ msgid "General Options"
 
 
429
  msgstr ""
430
 
431
+ #: includes/class-wp-mobile-menu-options.php:223
432
+ #: includes/class-wp-mobile-menu-options.php:2726
433
+ msgid "Header"
 
434
  msgstr ""
435
 
436
+ #: includes/class-wp-mobile-menu-options.php:227
437
+ msgid "Footer"
 
 
438
  msgstr ""
439
 
440
+ #: includes/class-wp-mobile-menu-options.php:231
441
+ #: includes/class-wp-mobile-menu-options.php:1235
442
+ msgid "Left Menu"
443
  msgstr ""
444
 
445
+ #: includes/class-wp-mobile-menu-options.php:234
446
+ #: includes/class-wp-mobile-menu-options.php:1631
447
+ msgid "Right Menu"
448
  msgstr ""
449
 
450
+ #: includes/class-wp-mobile-menu-options.php:246
451
+ msgid "Colors"
452
  msgstr ""
453
 
454
+ #: includes/class-wp-mobile-menu-options.php:249
455
+ msgid "Fonts"
456
  msgstr ""
457
 
458
+ #: includes/class-wp-mobile-menu-options.php:252
459
+ msgid "Documentation"
460
  msgstr ""
461
 
462
+ #: includes/class-wp-mobile-menu-options.php:272
463
+ msgid "Woocommerce Menu Font"
464
  msgstr ""
465
 
466
+ #: includes/class-wp-mobile-menu-options.php:275
467
+ #: includes/class-wp-mobile-menu-options.php:870
468
+ #: includes/class-wp-mobile-menu-options.php:982
469
+ #: includes/class-wp-mobile-menu-options.php:1187
470
+ #: includes/class-wp-mobile-menu-options.php:1289
471
+ #: includes/class-wp-mobile-menu-options.php:1560
472
+ #: includes/class-wp-mobile-menu-options.php:1594
473
+ #: includes/class-wp-mobile-menu-options.php:1696
474
+ #: includes/class-wp-mobile-menu-options.php:1955
475
+ msgid "Select a style"
476
  msgstr ""
477
 
478
+ #: includes/class-wp-mobile-menu-options.php:296
479
+ msgid "Mobile Menu Visibility(Width Trigger)"
480
  msgstr ""
481
 
482
+ #: includes/class-wp-mobile-menu-options.php:299
483
+ msgid ""
484
+ "The Mobile menu will appear at this window size. Place it at 5000 to be "
485
+ "always visible. "
486
  msgstr ""
487
 
488
+ #: includes/class-wp-mobile-menu-options.php:308
489
+ msgid ""
490
+ "The Width trigger field is very important because it determines the width "
491
+ "that will show the Mobile Menu. If you want it always visible set it to "
492
+ "5000px"
493
  msgstr ""
494
 
495
+ #: includes/class-wp-mobile-menu-options.php:313
496
+ msgid "Enable only in Mobile devices"
497
  msgstr ""
498
 
499
+ #: includes/class-wp-mobile-menu-options.php:317
500
+ msgid ""
501
+ "Enable only in Mobiles devices. This will disable the Mobile Menu Visibilty "
502
+ "option above (using resolution width trigger)."
503
  msgstr ""
504
 
505
+ #: includes/class-wp-mobile-menu-options.php:318
506
+ #: includes/class-wp-mobile-menu-options.php:329
507
+ #: includes/class-wp-mobile-menu-options.php:340
508
+ #: includes/class-wp-mobile-menu-options.php:353
509
+ #: includes/class-wp-mobile-menu-options.php:435
510
+ #: includes/class-wp-mobile-menu-options.php:446
511
+ #: includes/class-wp-mobile-menu-options.php:2674
512
+ #: includes/class-wp-mobile-menu-options.php:2685
513
+ #: includes/class-wp-mobile-menu-options.php:2696
514
+ #: includes/class-wp-mobile-menu-options.php:2707
515
+ msgid "On"
516
  msgstr ""
517
 
518
+ #: includes/class-wp-mobile-menu-options.php:319
519
+ #: includes/class-wp-mobile-menu-options.php:330
520
+ #: includes/class-wp-mobile-menu-options.php:341
521
+ #: includes/class-wp-mobile-menu-options.php:354
522
+ #: includes/class-wp-mobile-menu-options.php:436
523
+ #: includes/class-wp-mobile-menu-options.php:447
524
+ #: includes/class-wp-mobile-menu-options.php:2675
525
+ #: includes/class-wp-mobile-menu-options.php:2686
526
+ #: includes/class-wp-mobile-menu-options.php:2697
527
+ #: includes/class-wp-mobile-menu-options.php:2708
528
+ msgid "Off"
529
  msgstr ""
530
 
531
+ #: includes/class-wp-mobile-menu-options.php:324
532
+ msgid "Enable Left Menu"
533
  msgstr ""
534
 
535
+ #: includes/class-wp-mobile-menu-options.php:328
536
+ msgid "Enable or disable the WP Mobile Menu Left Menu."
537
  msgstr ""
538
 
539
+ #: includes/class-wp-mobile-menu-options.php:335
540
+ msgid "Enable Right Menu"
 
541
  msgstr ""
542
 
543
+ #: includes/class-wp-mobile-menu-options.php:339
544
+ msgid "Enable or disable the WP Mobile Menu without deactivate the plugin."
545
  msgstr ""
546
 
547
+ #: includes/class-wp-mobile-menu-options.php:348
548
+ msgid "Enable Footer Menu"
549
  msgstr ""
550
 
551
+ #: includes/class-wp-mobile-menu-options.php:352
552
+ msgid "Enable or disable the Footer Menu."
553
  msgstr ""
554
 
555
+ #: includes/class-wp-mobile-menu-options.php:359
556
+ msgid "Hide Original Menu/header"
557
  msgstr ""
558
 
559
+ #: includes/class-wp-mobile-menu-options.php:365
560
+ msgid ""
561
+ "If you need help identifying the correct elements just send us an email to "
562
+ "<a href=\"mailto:support@wpmobilemenu.com\">support@wpmobilemenu.com</a> "
563
+ "with your site url and a screenshot of the element you want to hide. We "
564
+ "reply fast."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-mobile-menu-options.php:371
568
+ msgid "Hide Elements"
569
+ msgstr ""
570
+
571
+ #: includes/class-wp-mobile-menu-options.php:375
572
+ msgid ""
573
+ "<p>This will hide the desired elements when the Mobile menu is trigerred at "
574
+ "the chosen width.</p><p>You can use css class or IDs.</p><p> Example: .menu ,"
575
+ " #nav</p>"
576
+ msgstr ""
577
+
578
+ #: includes/class-wp-mobile-menu-options.php:379
579
+ msgid "Hide elements by default"
580
+ msgstr ""
581
+
582
+ #: includes/class-wp-mobile-menu-options.php:382
583
+ msgid "Check the desired elements"
584
+ msgstr ""
585
+
586
+ #: includes/class-wp-mobile-menu-options.php:399
587
+ msgid "Miscelaneous Options"
588
+ msgstr ""
589
+
590
+ #: includes/class-wp-mobile-menu-options.php:405
591
+ msgid "Menu Display Type"
592
+ msgstr ""
593
+
594
+ #: includes/class-wp-mobile-menu-options.php:408
595
+ msgid "Choose the display type for the mobile menu."
596
+ msgstr ""
597
+
598
+ #: includes/class-wp-mobile-menu-options.php:417
599
+ msgid "Enable Over Effects"
600
+ msgstr ""
601
+
602
+ #: includes/class-wp-mobile-menu-options.php:420
603
+ msgid "Select an option"
604
+ msgstr ""
605
+
606
+ #: includes/class-wp-mobile-menu-options.php:422
607
+ msgid "Enabled"
608
+ msgstr ""
609
+
610
+ #: includes/class-wp-mobile-menu-options.php:423
611
+ #: includes/class-wp-mobile-menu-options.php:2720
612
+ msgid "Disabled"
613
+ msgstr ""
614
+
615
+ #: includes/class-wp-mobile-menu-options.php:430
616
+ msgid "Sliding Submenus."
617
+ msgstr ""
618
+
619
+ #: includes/class-wp-mobile-menu-options.php:433
620
+ msgid "When you open a submenu it automatically slides."
621
+ msgstr ""
622
+
623
+ #: includes/class-wp-mobile-menu-options.php:441
624
+ msgid "Automatically Close Submenus."
625
+ msgstr ""
626
+
627
+ #: includes/class-wp-mobile-menu-options.php:444
628
+ msgid ""
629
+ "When you open a submenu it automatically closes the other submenus that are "
630
+ "open."
631
+ msgstr ""
632
+
633
+ #: includes/class-wp-mobile-menu-options.php:452
634
+ msgid "Menu Items Border Size"
635
+ msgstr ""
636
+
637
+ #: includes/class-wp-mobile-menu-options.php:456
638
+ msgid ""
639
+ "Choose the size of the menu items border.<a href=\"/wp-admin/admin.php?"
640
+ "page=mobile-menu-options&tab=colors\" target=\"_blank\">Click here</a> to "
641
+ "adjust the color."
642
+ msgstr ""
643
+
644
+ #: includes/class-wp-mobile-menu-options.php:464
645
+ msgid "Close Icon"
646
+ msgstr ""
647
+
648
+ #: includes/class-wp-mobile-menu-options.php:467
649
+ #: includes/class-wp-mobile-menu-options.php:488
650
+ #: includes/class-wp-mobile-menu-options.php:497
651
+ #: includes/class-wp-mobile-menu-options.php:1372
652
+ #: includes/class-wp-mobile-menu-options.php:1768
653
+ #: includes/class-wp-mobile-menu-options.php:2762
654
+ #: includes/class-wp-mobile-menu-options.php:2822
655
+ msgid ""
656
+ "<div class=\"mobmenu-icon-holder\"></div><a href=\"#\" class=\"mobmenu-icon-"
657
+ "picker button\">Select menu icon</a>"
658
+ msgstr ""
659
+
660
+ #: includes/class-wp-mobile-menu-options.php:473
661
+ msgid "Close Icon Font Size"
662
+ msgstr ""
663
+
664
+ #: includes/class-wp-mobile-menu-options.php:476
665
+ msgid "Enter the Close Icon Font Size"
666
+ msgstr ""
667
+
668
+ #: includes/class-wp-mobile-menu-options.php:485
669
+ msgid "Submenu Open Icon"
670
+ msgstr ""
671
+
672
+ #: includes/class-wp-mobile-menu-options.php:494
673
+ msgid "Submenu Close Icon"
674
+ msgstr ""
675
+
676
+ #: includes/class-wp-mobile-menu-options.php:503
677
+ msgid "Submenu Icon Font Size"
678
+ msgstr ""
679
+
680
+ #: includes/class-wp-mobile-menu-options.php:506
681
+ msgid "Enter the Submenu Icon Font Size"
682
+ msgstr ""
683
+
684
+ #: includes/class-wp-mobile-menu-options.php:514
685
+ msgid "Advanced Options"
686
+ msgstr ""
687
+
688
+ #: includes/class-wp-mobile-menu-options.php:520
689
+ msgid "Sticky Html Elements"
690
+ msgstr ""
691
+
692
+ #: includes/class-wp-mobile-menu-options.php:524
693
+ msgid ""
694
+ "<p>If you are having issues with sticky elements that dont assume a sticky "
695
+ "behaviour, enter the ids or class name that identify that element.</p>"
696
+ msgstr ""
697
+
698
+ #: includes/class-wp-mobile-menu-options.php:529
699
+ msgid "Custom CSS"
700
+ msgstr ""
701
+
702
+ #: includes/class-wp-mobile-menu-options.php:532
703
+ msgid "Put your custom CSS rules here"
704
+ msgstr ""
705
+
706
+ #: includes/class-wp-mobile-menu-options.php:538
707
+ msgid "Custom JS"
708
+ msgstr ""
709
+
710
+ #: includes/class-wp-mobile-menu-options.php:541
711
+ msgid "Put your custom JS rules here"
712
+ msgstr ""
713
+
714
+ #: includes/class-wp-mobile-menu-options.php:550
715
+ msgid "Disable Mobile Menu on selected pages"
716
+ msgstr ""
717
+
718
+ #: includes/class-wp-mobile-menu-options.php:553
719
+ msgid "Select a page"
720
+ msgstr ""
721
+
722
+ #: includes/class-wp-mobile-menu-options.php:559
723
+ msgid "Import/Export Options"
724
+ msgstr ""
725
+
726
+ #: includes/class-wp-mobile-menu-options.php:565
727
+ msgid "Export Settings"
728
+ msgstr ""
729
+
730
+ #: includes/class-wp-mobile-menu-options.php:567
731
+ msgid "Export"
732
+ msgstr ""
733
+
734
+ #: includes/class-wp-mobile-menu-options.php:572
735
+ msgid "Import Settings"
736
+ msgstr ""
737
+
738
+ #: includes/class-wp-mobile-menu-options.php:579
739
+ msgid "Main options"
740
+ msgstr ""
741
+
742
+ #: includes/class-wp-mobile-menu-options.php:586
743
+ msgid "Header Elements Position"
744
+ msgstr ""
745
+
746
+ #: includes/class-wp-mobile-menu-options.php:589
747
+ msgid "Drag and Drop to reorder of the icons and logo in the Mobile Header."
748
+ msgstr ""
749
+
750
+ #: includes/class-wp-mobile-menu-options.php:597
751
+ msgid "Sticky Header"
752
+ msgstr ""
753
+
754
+ #: includes/class-wp-mobile-menu-options.php:601
755
+ msgid ""
756
+ "Choose if you want to have the Header Fixed or scrolling with the content."
757
+ msgstr ""
758
+
759
+ #: includes/class-wp-mobile-menu-options.php:602
760
+ #: includes/class-wp-mobile-menu-options.php:613
761
+ #: includes/class-wp-mobile-menu-options.php:623
762
+ #: includes/class-wp-mobile-menu-options.php:635
763
+ #: includes/class-wp-mobile-menu-options.php:724
764
+ #: includes/class-wp-mobile-menu-options.php:905
765
+ #: includes/class-wp-mobile-menu-options.php:1015
766
+ #: includes/class-wp-mobile-menu-options.php:1030
767
+ #: includes/class-wp-mobile-menu-options.php:1125
768
+ #: includes/class-wp-mobile-menu-options.php:1250
769
+ #: includes/class-wp-mobile-menu-options.php:1646
770
+ msgid "Yes"
771
+ msgstr ""
772
+
773
+ #: includes/class-wp-mobile-menu-options.php:603
774
+ #: includes/class-wp-mobile-menu-options.php:614
775
+ #: includes/class-wp-mobile-menu-options.php:624
776
+ #: includes/class-wp-mobile-menu-options.php:636
777
+ #: includes/class-wp-mobile-menu-options.php:725
778
+ #: includes/class-wp-mobile-menu-options.php:785
779
+ #: includes/class-wp-mobile-menu-options.php:906
780
+ #: includes/class-wp-mobile-menu-options.php:1016
781
+ #: includes/class-wp-mobile-menu-options.php:1031
782
+ #: includes/class-wp-mobile-menu-options.php:1126
783
+ #: includes/class-wp-mobile-menu-options.php:1251
784
+ #: includes/class-wp-mobile-menu-options.php:1647
785
+ msgid "No"
786
+ msgstr ""
787
+
788
+ #: includes/class-wp-mobile-menu-options.php:608
789
+ msgid "Naked Header"
790
+ msgstr ""
791
+
792
+ #: includes/class-wp-mobile-menu-options.php:612
793
+ msgid ""
794
+ "Choose if you want to display a naked header with no background "
795
+ "color(transparent)."
796
+ msgstr ""
797
+
798
+ #: includes/class-wp-mobile-menu-options.php:618
799
+ msgid "Disable Logo/Text"
800
+ msgstr ""
801
+
802
+ #: includes/class-wp-mobile-menu-options.php:622
803
+ msgid ""
804
+ "Choose if you want to disable the logo/text so it will only display the menu "
805
+ "icons in the header."
806
+ msgstr ""
807
+
808
+ #: includes/class-wp-mobile-menu-options.php:630
809
+ msgid "Auto-hide Header when scrolling down."
810
+ msgstr ""
811
+
812
+ #: includes/class-wp-mobile-menu-options.php:634
813
+ msgid ""
814
+ "Choose if you want to hide the header when scrolling down. It will reapear "
815
+ "when you scroll up."
816
+ msgstr ""
817
+
818
+ #: includes/class-wp-mobile-menu-options.php:641
819
+ msgid "Logo options"
820
+ msgstr ""
821
+
822
+ #: includes/class-wp-mobile-menu-options.php:647
823
+ #: includes/class-wp-mobile-menu-options.php:679
824
+ msgid "Site Logo"
825
+ msgstr ""
826
+
827
+ #: includes/class-wp-mobile-menu-options.php:651
828
+ msgid "Choose if you want to display an image has logo or text instead."
829
+ msgstr ""
830
+
831
+ #: includes/class-wp-mobile-menu-options.php:652
832
+ #: includes/class-wp-mobile-menu-options.php:658
833
+ #: includes/class-wp-mobile-menu-options.php:665
834
+ #: includes/class-wp-mobile-menu-options.php:689
835
+ msgid "Logo"
836
+ msgstr ""
837
+
838
+ #: includes/class-wp-mobile-menu-options.php:653
839
+ #: includes/class-wp-mobile-menu-options.php:659
840
+ #: includes/class-wp-mobile-menu-options.php:666
841
+ msgid "Text"
842
+ msgstr ""
843
+
844
+ #: includes/class-wp-mobile-menu-options.php:660
845
+ msgid "Logo + Text"
846
+ msgstr ""
847
+
848
+ #: includes/class-wp-mobile-menu-options.php:661
849
+ msgid "Text + Logo"
850
+ msgstr ""
851
+
852
+ #: includes/class-wp-mobile-menu-options.php:682
853
+ msgid "Chose the Header Branding ( Logo/Text )."
854
+ msgstr ""
855
+
856
+ #: includes/class-wp-mobile-menu-options.php:692
857
+ msgid "Upload your logo image"
858
+ msgstr ""
859
+
860
+ #: includes/class-wp-mobile-menu-options.php:698
861
+ msgid "Logo Height"
862
+ msgstr ""
863
+
864
+ #: includes/class-wp-mobile-menu-options.php:701
865
+ msgid "Enter the height of the logo"
866
+ msgstr ""
867
+
868
+ #: includes/class-wp-mobile-menu-options.php:710
869
+ msgid "Logo Retina"
870
+ msgstr ""
871
+
872
+ #: includes/class-wp-mobile-menu-options.php:713
873
+ msgid "Upload your logo image for retina devices"
874
+ msgstr ""
875
+
876
+ #: includes/class-wp-mobile-menu-options.php:719
877
+ msgid "Disable Logo URL "
878
+ msgstr ""
879
+
880
+ #: includes/class-wp-mobile-menu-options.php:723
881
+ msgid ""
882
+ "Choose if you want to disable the logo url to avoid being redirect to the "
883
+ "homepage or alternative home url when touching the header logo."
884
+ msgstr ""
885
+
886
+ #: includes/class-wp-mobile-menu-options.php:730
887
+ msgid "Alternative Logo URL"
888
+ msgstr ""
889
+
890
+ #: includes/class-wp-mobile-menu-options.php:733
891
+ msgid ""
892
+ "Enter you alternative logo URL. If you leave it blank it will use the Site "
893
+ "URL."
894
+ msgstr ""
895
+
896
+ #: includes/class-wp-mobile-menu-options.php:739
897
+ msgid "Logo/Text Top Margin"
898
+ msgstr ""
899
+
900
+ #: includes/class-wp-mobile-menu-options.php:742
901
+ msgid "Enter the logo/text top margin"
902
+ msgstr ""
903
+
904
+ #: includes/class-wp-mobile-menu-options.php:750
905
+ msgid "Header options"
906
+ msgstr ""
907
+
908
+ #: includes/class-wp-mobile-menu-options.php:756
909
+ msgid "Header Height"
910
+ msgstr ""
911
+
912
+ #: includes/class-wp-mobile-menu-options.php:759
913
+ msgid "Enter the height of the header"
914
+ msgstr ""
915
+
916
+ #: includes/class-wp-mobile-menu-options.php:768
917
+ msgid "Header Text"
918
+ msgstr ""
919
+
920
+ #: includes/class-wp-mobile-menu-options.php:771
921
+ msgid ""
922
+ "Enter the desired text for the Mobile Header. If not specified it will use "
923
+ "the site title."
924
+ msgstr ""
925
+
926
+ #: includes/class-wp-mobile-menu-options.php:780
927
+ msgid "Use page title text"
928
+ msgstr ""
929
+
930
+ #: includes/class-wp-mobile-menu-options.php:783
931
+ msgid "Chose if you want to display the page Title in the Header/Banner."
932
+ msgstr ""
933
+
934
+ #: includes/class-wp-mobile-menu-options.php:795
935
+ msgid "Header Text Font Size"
936
+ msgstr ""
937
+
938
+ #: includes/class-wp-mobile-menu-options.php:798
939
+ msgid "Enter the header text font size"
940
+ msgstr ""
941
+
942
+ #: includes/class-wp-mobile-menu-options.php:813
943
+ #: includes/class-wp-mobile-menu-options.php:948
944
+ #: includes/class-wp-mobile-menu-options.php:1045
945
+ msgid "Center"
946
+ msgstr ""
947
+
948
+ #: includes/class-wp-mobile-menu-options.php:821
949
+ msgid "Header Logo/Text Left Margin"
950
+ msgstr ""
951
+
952
+ #: includes/class-wp-mobile-menu-options.php:824
953
+ msgid ""
954
+ "Enter the header Logo/Text left margin (only used whit Header Left Alignment)"
955
+ msgstr ""
956
+
957
+ #: includes/class-wp-mobile-menu-options.php:835
958
+ msgid "Header Logo/Text Spacing"
959
+ msgstr ""
960
+
961
+ #: includes/class-wp-mobile-menu-options.php:838
962
+ msgid ""
963
+ "Enter the header Logo/Text spacing between the Logo and the Text(it only "
964
+ "applies when you have both in the site logo)"
965
+ msgstr ""
966
+
967
+ #: includes/class-wp-mobile-menu-options.php:848
968
+ msgid "Header Logo/Text Right Margin"
969
+ msgstr ""
970
+
971
+ #: includes/class-wp-mobile-menu-options.php:851
972
+ msgid ""
973
+ "Enter the header Logo/Text right margin (only used whit Header Right "
974
+ "Alignment)"
975
+ msgstr ""
976
+
977
+ #: includes/class-wp-mobile-menu-options.php:867
978
  msgid "Header Menu Font"
979
  msgstr ""
980
 
981
+ #: includes/class-wp-mobile-menu-options.php:894
982
+ msgid "Header Banner options"
983
+ msgstr ""
984
+
985
+ #: includes/class-wp-mobile-menu-options.php:900
986
+ msgid "Enable Header Banner"
987
+ msgstr ""
988
+
989
+ #: includes/class-wp-mobile-menu-options.php:904
990
+ #: includes/class-wp-mobile-menu-options.php:1014
991
+ msgid "Choose if you want to enable the Header Banner."
992
+ msgstr ""
993
+
994
+ #: includes/class-wp-mobile-menu-options.php:911
995
+ msgid "Header Banner Position"
996
+ msgstr ""
997
+
998
+ #: includes/class-wp-mobile-menu-options.php:915
999
+ msgid "Choose the position of the Header Banner."
1000
+ msgstr ""
1001
+
1002
+ #: includes/class-wp-mobile-menu-options.php:916
1003
+ msgid "Above Header"
1004
+ msgstr ""
1005
+
1006
+ #: includes/class-wp-mobile-menu-options.php:917
1007
+ msgid "Below Header"
1008
+ msgstr ""
1009
+
1010
+ #: includes/class-wp-mobile-menu-options.php:922
1011
+ msgid "Header Banner Content"
1012
+ msgstr ""
1013
+
1014
+ #: includes/class-wp-mobile-menu-options.php:925
1015
+ msgid "Enter the banner header content, you can use HTML and Shortcodes."
1016
+ msgstr ""
1017
+
1018
+ #: includes/class-wp-mobile-menu-options.php:930
1019
+ msgid "Header Banner Height"
1020
+ msgstr ""
1021
+
1022
+ #: includes/class-wp-mobile-menu-options.php:933
1023
+ msgid "Enter the height of the header banner"
1024
+ msgstr ""
1025
+
1026
+ #: includes/class-wp-mobile-menu-options.php:942
1027
+ msgid "Header Banner Alignment"
1028
+ msgstr ""
1029
+
1030
+ #: includes/class-wp-mobile-menu-options.php:945
1031
+ msgid "Chose the header Banner alignment."
1032
+ msgstr ""
1033
+
1034
+ #: includes/class-wp-mobile-menu-options.php:956
1035
+ msgid "Header Banner Left Padding"
1036
+ msgstr ""
1037
+
1038
+ #: includes/class-wp-mobile-menu-options.php:959
1039
+ msgid ""
1040
+ "Enter the header banner left padding (only used whit Header Banner Left "
1041
+ "Alignment)"
1042
+ msgstr ""
1043
+
1044
+ #: includes/class-wp-mobile-menu-options.php:968
1045
+ msgid "Header Banner Right Padding"
1046
+ msgstr ""
1047
+
1048
+ #: includes/class-wp-mobile-menu-options.php:971
1049
+ msgid ""
1050
+ "Enter the header banner right padding (only used whit Header Banner Right "
1051
+ "Alignment)"
1052
+ msgstr ""
1053
+
1054
+ #: includes/class-wp-mobile-menu-options.php:979
1055
+ msgid "Header Banner Font"
1056
+ msgstr ""
1057
+
1058
+ #: includes/class-wp-mobile-menu-options.php:1004
1059
+ msgid "Header Search options"
1060
+ msgstr ""
1061
+
1062
+ #: includes/class-wp-mobile-menu-options.php:1010
1063
+ msgid "Enable Header Search"
1064
+ msgstr ""
1065
+
1066
+ #: includes/class-wp-mobile-menu-options.php:1021
1067
+ msgid "Header Elements Order "
1068
+ msgstr ""
1069
+
1070
+ #: includes/class-wp-mobile-menu-options.php:1023
1071
+ msgid ""
1072
+ "<p style=\"font-weight:bold;font-style:italic;color:blue;\">Go to the top of "
1073
+ "this page and set the position to the search icon.</p>"
1074
+ msgstr ""
1075
+
1076
+ #: includes/class-wp-mobile-menu-options.php:1027
1077
+ msgid "Live Search (AJax)"
1078
+ msgstr ""
1079
+
1080
+ #: includes/class-wp-mobile-menu-options.php:1039
1081
+ msgid "Search Results Alignment"
1082
+ msgstr ""
1083
+
1084
+ #: includes/class-wp-mobile-menu-options.php:1042
1085
+ msgid "Chose the search results alignment."
1086
+ msgstr ""
1087
+
1088
+ #: includes/class-wp-mobile-menu-options.php:1053
1089
+ msgid "Search Icon Image"
1090
+ msgstr ""
1091
+
1092
+ #: includes/class-wp-mobile-menu-options.php:1057
1093
+ msgid "Upload your search icon image"
1094
+ msgstr ""
1095
+
1096
+ #: includes/class-wp-mobile-menu-options.php:1063
1097
+ msgid "Search Icon Top Margin"
1098
+ msgstr ""
1099
+
1100
+ #: includes/class-wp-mobile-menu-options.php:1066
1101
+ msgid "Enter the Search Icon Top Margin"
1102
+ msgstr ""
1103
+
1104
+ #: includes/class-wp-mobile-menu-options.php:1075
1105
+ msgid "Search Icon Font Size"
1106
+ msgstr ""
1107
+
1108
+ #: includes/class-wp-mobile-menu-options.php:1078
1109
+ msgid "Enter the Search Icon Font Size"
1110
+ msgstr ""
1111
+
1112
+ #: includes/class-wp-mobile-menu-options.php:1087
1113
+ msgid "Use text instead Icon"
1114
+ msgstr ""
1115
+
1116
+ #: includes/class-wp-mobile-menu-options.php:1090
1117
+ msgid ""
1118
+ "Fill this field with the text that will show up in the submit button of the "
1119
+ "search form. Clear this field to use the search icon."
1120
+ msgstr ""
1121
+
1122
+ #: includes/class-wp-mobile-menu-options.php:1096
1123
+ msgid "Placeholder Text"
1124
+ msgstr ""
1125
+
1126
+ #: includes/class-wp-mobile-menu-options.php:1099
1127
+ msgid ""
1128
+ "Fill this field with the text that will show up in search input field "
1129
+ "placeholder."
1130
+ msgstr ""
1131
+
1132
+ #: includes/class-wp-mobile-menu-options.php:1100
1133
+ msgid "Search"
1134
+ msgstr ""
1135
+
1136
+ #: includes/class-wp-mobile-menu-options.php:1110
1137
+ msgid "Footer Menu"
1138
+ msgstr ""
1139
+
1140
+ #: includes/class-wp-mobile-menu-options.php:1113
1141
+ msgid "Select the menu that will appear in the footer."
1142
+ msgstr ""
1143
+
1144
+ #: includes/class-wp-mobile-menu-options.php:1120
1145
+ msgid "Auto-hide Footer when scrolling Up."
1146
+ msgstr ""
1147
+
1148
+ #: includes/class-wp-mobile-menu-options.php:1124
1149
+ msgid ""
1150
+ "Choose if you want to hide the footer when scrolling up. It will reapear "
1151
+ "when you scroll down."
1152
+ msgstr ""
1153
+
1154
+ #: includes/class-wp-mobile-menu-options.php:1139
1155
+ msgid "Footer Style"
1156
  msgstr ""
1157
 
1158
+ #: includes/class-wp-mobile-menu-options.php:1142
1159
+ msgid "Chose the Footer Menu Style ( Icon/Text )."
1160
  msgstr ""
1161
 
1162
+ #: includes/class-wp-mobile-menu-options.php:1148
1163
+ msgid "Footer Padding"
1164
  msgstr ""
1165
 
1166
+ #: includes/class-wp-mobile-menu-options.php:1151
1167
+ msgid ""
1168
+ "This will determine the height of the footer together with the icon and text "
1169
+ "size."
1170
  msgstr ""
1171
 
1172
+ #: includes/class-wp-mobile-menu-options.php:1160
1173
+ #: includes/class-wp-mobile-menu-options.php:1378
1174
+ #: includes/class-wp-mobile-menu-options.php:1774
1175
+ #: includes/class-wp-mobile-menu-options.php:2828
1176
+ msgid "Icon Font Size"
1177
  msgstr ""
1178
 
1179
+ #: includes/class-wp-mobile-menu-options.php:1163
1180
+ msgid "Enter the Icon Font Size"
1181
  msgstr ""
1182
 
1183
+ #: includes/class-wp-mobile-menu-options.php:1172
1184
+ msgid "Text Line Height"
1185
  msgstr ""
1186
 
1187
+ #: includes/class-wp-mobile-menu-options.php:1175
1188
+ msgid ""
1189
+ "Enter the Text Line Height. Is useful to control the vertical space between "
1190
+ "the icon and the text."
1191
  msgstr ""
1192
 
1193
+ #: includes/class-wp-mobile-menu-options.php:1184
1194
+ msgid "Footer Text Font"
 
1195
  msgstr ""
1196
 
1197
+ #: includes/class-wp-mobile-menu-options.php:1209
1198
+ msgid "Footer Text Font/Size"
1199
+ msgstr ""
1200
+
1201
+ #: includes/class-wp-mobile-menu-options.php:1220
1202
+ msgid "Left Menu Content"
1203
+ msgstr ""
1204
+
1205
+ #: includes/class-wp-mobile-menu-options.php:1223
1206
+ #: includes/class-wp-mobile-menu-options.php:1619
1207
+ msgid "Drag and Drop to reorder of the content of the Left Panel."
1208
+ msgstr ""
1209
+
1210
+ #: includes/class-wp-mobile-menu-options.php:1238
1211
+ msgid "Select the menu that will open in the left side."
1212
+ msgstr ""
1213
+
1214
+ #: includes/class-wp-mobile-menu-options.php:1245
1215
+ #: includes/class-wp-mobile-menu-options.php:1641
1216
+ msgid "Parent Link open submenu"
1217
+ msgstr ""
1218
+
1219
+ #: includes/class-wp-mobile-menu-options.php:1249
1220
+ #: includes/class-wp-mobile-menu-options.php:1645
1221
+ msgid ""
1222
+ "Choose if you want to open the submenu by click in the Parent Menu item."
1223
+ msgstr ""
1224
+
1225
+ #: includes/class-wp-mobile-menu-options.php:1259
1226
+ #: includes/class-wp-mobile-menu-options.php:1655
1227
+ msgid "Only visible for logged users"
1228
+ msgstr ""
1229
+
1230
+ #: includes/class-wp-mobile-menu-options.php:1263
1231
+ msgid "Enable the left menu for logged in users only."
1232
+ msgstr ""
1233
+
1234
+ #: includes/class-wp-mobile-menu-options.php:1271
1235
+ #: includes/class-wp-mobile-menu-options.php:1667
1236
+ msgid "Menu Icon"
1237
+ msgstr ""
1238
+
1239
+ #: includes/class-wp-mobile-menu-options.php:1277
1240
+ msgid "Text After Icon"
1241
+ msgstr ""
1242
+
1243
+ #: includes/class-wp-mobile-menu-options.php:1280
1244
+ msgid "Enter the text that will appear after the Icon."
1245
+ msgstr ""
1246
+
1247
+ #: includes/class-wp-mobile-menu-options.php:1286
1248
+ msgid "Text After Icon Font"
1249
+ msgstr ""
1250
+
1251
+ #: includes/class-wp-mobile-menu-options.php:1309
1252
+ #: includes/class-wp-mobile-menu-options.php:1682
1253
  msgid "Icon Action"
1254
  msgstr ""
1255
 
1256
+ #: includes/class-wp-mobile-menu-options.php:1313
1257
+ msgid "Open the Left Menu Panel or open a Link url."
1258
+ msgstr ""
1259
+
1260
+ #: includes/class-wp-mobile-menu-options.php:1314
1261
+ #: includes/class-wp-mobile-menu-options.php:1687
1262
+ msgid "Open Menu"
1263
+ msgstr ""
1264
+
1265
+ #: includes/class-wp-mobile-menu-options.php:1315
1266
+ #: includes/class-wp-mobile-menu-options.php:1688
1267
+ msgid "Open Link Url"
1268
+ msgstr ""
1269
+
1270
+ #: includes/class-wp-mobile-menu-options.php:1320
1271
+ #: includes/class-wp-mobile-menu-options.php:1717
1272
+ msgid "Icon Link URL"
1273
+ msgstr ""
1274
+
1275
+ #: includes/class-wp-mobile-menu-options.php:1323
1276
+ #: includes/class-wp-mobile-menu-options.php:1720
1277
+ msgid "Enter the Icon Link Url."
1278
+ msgstr ""
1279
+
1280
+ #: includes/class-wp-mobile-menu-options.php:1329
1281
+ #: includes/class-wp-mobile-menu-options.php:1726
1282
+ msgid "Icon Link Url Target"
1283
+ msgstr ""
1284
+
1285
+ #: includes/class-wp-mobile-menu-options.php:1333
1286
+ #: includes/class-wp-mobile-menu-options.php:1730
1287
+ msgid "Choose it the link will open in the same window or in the new window."
1288
+ msgstr ""
1289
+
1290
+ #: includes/class-wp-mobile-menu-options.php:1346
1291
+ #: includes/class-wp-mobile-menu-options.php:1743
1292
+ #: includes/class-wp-mobile-menu-options.php:2808
1293
+ msgid "Icon Type"
1294
+ msgstr ""
1295
+
1296
+ #: includes/class-wp-mobile-menu-options.php:1350
1297
+ #: includes/class-wp-mobile-menu-options.php:1747
1298
+ msgid "Choose if you want to display an image, icon or an animated icon."
1299
  msgstr ""
1300
 
 
1301
  #: includes/class-wp-mobile-menu-options.php:1358
1302
+ #: includes/class-wp-mobile-menu-options.php:1754
1303
+ msgid "Icon Animation Type"
1304
  msgstr ""
1305
 
1306
+ #: includes/class-wp-mobile-menu-options.php:1362
1307
+ #: includes/class-wp-mobile-menu-options.php:1758
1308
+ msgid "Only for the animated icon."
1309
+ msgstr ""
1310
+
1311
+ #: includes/class-wp-mobile-menu-options.php:1369
1312
+ #: includes/class-wp-mobile-menu-options.php:1765
1313
+ #: includes/class-wp-mobile-menu-options.php:2814
1314
+ #: includes/class-wp-mobile-menu-options.php:2819
1315
+ msgid "Icon Font"
1316
+ msgstr ""
1317
+
1318
+ #: includes/class-wp-mobile-menu-options.php:1381
1319
+ msgid "Enter the Left Icon Font Size"
1320
+ msgstr ""
1321
+
1322
+ #: includes/class-wp-mobile-menu-options.php:1390
1323
+ #: includes/class-wp-mobile-menu-options.php:1786
1324
+ #: includes/class-wp-mobile-menu-options.php:2840
1325
  msgid "Icon Image"
1326
  msgstr ""
1327
 
1328
+ #: includes/class-wp-mobile-menu-options.php:1394
1329
+ msgid "Upload your left menu icon image"
1330
+ msgstr ""
1331
+
1332
+ #: includes/class-wp-mobile-menu-options.php:1400
1333
+ #: includes/class-wp-mobile-menu-options.php:1795
1334
+ msgid "Icon Top Margin"
1335
+ msgstr ""
1336
+
1337
+ #: includes/class-wp-mobile-menu-options.php:1403
1338
+ msgid "Enter the Left Icon Top Margin"
1339
+ msgstr ""
1340
+
1341
+ #: includes/class-wp-mobile-menu-options.php:1412
1342
  msgid "Icon Left Margin"
1343
  msgstr ""
1344
 
1345
+ #: includes/class-wp-mobile-menu-options.php:1415
1346
+ msgid "Enter the Left Icon Left Margin"
 
1347
  msgstr ""
1348
 
1349
+ #: includes/class-wp-mobile-menu-options.php:1428
1350
+ #: includes/class-wp-mobile-menu-options.php:1823
1351
+ msgid ""
1352
+ "The icon settings below are related with the icons that will appear next to "
1353
+ "the Menu items text."
1354
  msgstr ""
1355
 
1356
+ #: includes/class-wp-mobile-menu-options.php:1433
1357
+ #: includes/class-wp-mobile-menu-options.php:1828
1358
+ msgid "Menu Item Icons Position"
1359
  msgstr ""
1360
 
1361
+ #: includes/class-wp-mobile-menu-options.php:1438
1362
+ #: includes/class-wp-mobile-menu-options.php:1833
1363
+ msgid ""
1364
+ "Choose if you want the menu item icon to display at the left or right side "
1365
+ "of the menu items."
1366
  msgstr ""
1367
 
1368
+ #: includes/class-wp-mobile-menu-options.php:1443
1369
+ #: includes/class-wp-mobile-menu-options.php:1838
1370
+ msgid "Menu Item Icons Horizontal Padding"
 
1371
  msgstr ""
1372
 
1373
+ #: includes/class-wp-mobile-menu-options.php:1446
1374
+ msgid "Enter the Left Menu Item icons horizontal padding(pixels)"
1375
+ msgstr ""
1376
+
1377
+ #: includes/class-wp-mobile-menu-options.php:1455
1378
+ msgid "Left Panel options"
1379
+ msgstr ""
1380
+
1381
+ #: includes/class-wp-mobile-menu-options.php:1461
1382
+ #: includes/class-wp-mobile-menu-options.php:1857
1383
+ #: includes/class-wp-mobile-menu-options.php:2911
1384
+ msgid "Panel Background Image"
1385
+ msgstr ""
1386
+
1387
+ #: includes/class-wp-mobile-menu-options.php:1464
1388
+ msgid ""
1389
+ "Upload your left menu background image(this will override the Background "
1390
+ "color option)"
1391
+ msgstr ""
1392
+
1393
+ #: includes/class-wp-mobile-menu-options.php:1469
1394
+ #: includes/class-wp-mobile-menu-options.php:1865
1395
+ #: includes/class-wp-mobile-menu-options.php:2919
1396
+ msgid "Panel Background Image Opacity"
1397
+ msgstr ""
1398
+
1399
+ #: includes/class-wp-mobile-menu-options.php:1472
1400
+ #: includes/class-wp-mobile-menu-options.php:2922
1401
+ msgid "Enter the Left Background image opacity"
1402
+ msgstr ""
1403
+
1404
+ #: includes/class-wp-mobile-menu-options.php:1482
1405
+ #: includes/class-wp-mobile-menu-options.php:1878
1406
+ #: includes/class-wp-mobile-menu-options.php:2932
1407
+ msgid "Panel Background Image Size"
1408
+ msgstr ""
1409
+
1410
+ #: includes/class-wp-mobile-menu-options.php:1486
1411
+ #: includes/class-wp-mobile-menu-options.php:1881
1412
+ #: includes/class-wp-mobile-menu-options.php:2935
1413
+ msgid ""
1414
+ "Select the Background image size type. <a href=\"https://www.w3schools."
1415
+ "com/cssref/css3_pr_background-size.asp\" target=\"_blank\">See the CSS "
1416
+ "Documentation</a>"
1417
+ msgstr ""
1418
+
1419
+ #: includes/class-wp-mobile-menu-options.php:1488
1420
+ #: includes/class-wp-mobile-menu-options.php:1883
1421
+ #: includes/class-wp-mobile-menu-options.php:2937
1422
+ msgid "Auto"
1423
+ msgstr ""
1424
+
1425
+ #: includes/class-wp-mobile-menu-options.php:1489
1426
+ #: includes/class-wp-mobile-menu-options.php:1884
1427
+ #: includes/class-wp-mobile-menu-options.php:2938
1428
+ msgid "Contain"
1429
+ msgstr ""
1430
+
1431
+ #: includes/class-wp-mobile-menu-options.php:1490
1432
+ #: includes/class-wp-mobile-menu-options.php:1885
1433
+ #: includes/class-wp-mobile-menu-options.php:2939
1434
+ msgid "Cover"
1435
  msgstr ""
1436
 
1437
+ #: includes/class-wp-mobile-menu-options.php:1491
1438
+ #: includes/class-wp-mobile-menu-options.php:1886
1439
+ #: includes/class-wp-mobile-menu-options.php:2940
1440
  msgid "Inherit"
1441
  msgstr ""
1442
 
1443
+ #: includes/class-wp-mobile-menu-options.php:1492
1444
+ #: includes/class-wp-mobile-menu-options.php:1887
1445
+ #: includes/class-wp-mobile-menu-options.php:2941
1446
+ msgid "Initial"
1447
+ msgstr ""
1448
+
1449
+ #: includes/class-wp-mobile-menu-options.php:1493
1450
+ #: includes/class-wp-mobile-menu-options.php:1888
1451
+ #: includes/class-wp-mobile-menu-options.php:2942
1452
+ msgid "Unset"
1453
+ msgstr ""
1454
+
1455
+ #: includes/class-wp-mobile-menu-options.php:1500
1456
+ #: includes/class-wp-mobile-menu-options.php:1895
1457
+ #: includes/class-wp-mobile-menu-options.php:2949
1458
+ msgid "Panel Background Gradient Css"
1459
+ msgstr ""
1460
+
1461
+ #: includes/class-wp-mobile-menu-options.php:1503
1462
+ #: includes/class-wp-mobile-menu-options.php:1898
1463
+ #: includes/class-wp-mobile-menu-options.php:2952
1464
+ msgid ""
1465
+ "<a href=\"https://webgradients.com/\" target=\"_blank\">Click here</a> to "
1466
+ "get your desired Gradient, just press the copy button and paste in this "
1467
+ "field."
1468
+ msgstr ""
1469
+
1470
+ #: includes/class-wp-mobile-menu-options.php:1509
1471
+ #: includes/class-wp-mobile-menu-options.php:1904
1472
+ #: includes/class-wp-mobile-menu-options.php:2958
1473
+ msgid "Menu Panel Width Units"
1474
+ msgstr ""
1475
+
1476
+ #: includes/class-wp-mobile-menu-options.php:1513
1477
+ #: includes/class-wp-mobile-menu-options.php:1908
1478
+ #: includes/class-wp-mobile-menu-options.php:2962
1479
+ msgid "Choose the width units."
1480
+ msgstr ""
1481
+
1482
+ #: includes/class-wp-mobile-menu-options.php:1515
1483
+ #: includes/class-wp-mobile-menu-options.php:1910
1484
+ #: includes/class-wp-mobile-menu-options.php:2964
1485
+ msgid "Percentage"
1486
+ msgstr ""
1487
+
1488
+ #: includes/class-wp-mobile-menu-options.php:1520
1489
+ #: includes/class-wp-mobile-menu-options.php:1915
1490
+ #: includes/class-wp-mobile-menu-options.php:2969
1491
+ msgid "Menu Panel Width(Pixels)"
1492
+ msgstr ""
1493
+
1494
+ #: includes/class-wp-mobile-menu-options.php:1523
1495
+ #: includes/class-wp-mobile-menu-options.php:1535
1496
+ msgid "Enter the Left Menu Panel Width"
1497
+ msgstr ""
1498
+
1499
+ #: includes/class-wp-mobile-menu-options.php:1532
1500
+ #: includes/class-wp-mobile-menu-options.php:1927
1501
+ #: includes/class-wp-mobile-menu-options.php:2981
1502
+ msgid "Menu Panel Width(Percentage)"
1503
+ msgstr ""
1504
+
1505
+ #: includes/class-wp-mobile-menu-options.php:1544
1506
+ msgid "Left Menu Content Padding"
1507
+ msgstr ""
1508
+
1509
+ #: includes/class-wp-mobile-menu-options.php:1547
1510
+ msgid "Enter the Left Menu Content Padding"
1511
+ msgstr ""
1512
+
1513
+ #: includes/class-wp-mobile-menu-options.php:1557
1514
+ msgid "Left Menu Font"
1515
+ msgstr ""
1516
+
1517
+ #: includes/class-wp-mobile-menu-options.php:1583
1518
+ msgid "Left Menu Copyright Content"
1519
+ msgstr ""
1520
+
1521
+ #: includes/class-wp-mobile-menu-options.php:1586
1522
+ #: includes/class-wp-mobile-menu-options.php:1982
1523
+ msgid "Enter the Copyright content, you can use HTML and Shortcodes."
1524
+ msgstr ""
1525
+
1526
+ #: includes/class-wp-mobile-menu-options.php:1591
1527
+ msgid "Copyright Font"
1528
+ msgstr ""
1529
+
1530
+ #: includes/class-wp-mobile-menu-options.php:1616
1531
+ msgid "Right Menu Content"
1532
+ msgstr ""
1533
+
1534
+ #: includes/class-wp-mobile-menu-options.php:1634
1535
+ msgid "Select the menu that will open in the right side."
1536
+ msgstr ""
1537
+
1538
+ #: includes/class-wp-mobile-menu-options.php:1659
1539
+ msgid "Enable the right menu for logged in users only."
1540
+ msgstr ""
1541
+
1542
+ #: includes/class-wp-mobile-menu-options.php:1673
1543
+ msgid "Text Before Icon"
1544
+ msgstr ""
1545
+
1546
+ #: includes/class-wp-mobile-menu-options.php:1676
1547
+ msgid "Enter the text that will appear before the Icon."
1548
+ msgstr ""
1549
+
1550
+ #: includes/class-wp-mobile-menu-options.php:1686
1551
+ msgid "Open the Right Menu Panel or open a Link url."
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-wp-mobile-menu-options.php:1693
1555
+ msgid "Text Before Icon Font"
1556
+ msgstr ""
1557
+
1558
+ #: includes/class-wp-mobile-menu-options.php:1777
1559
+ msgid "Enter the Right Icon Font Size"
1560
+ msgstr ""
1561
+
1562
+ #: includes/class-wp-mobile-menu-options.php:1789
1563
+ msgid "Upload your right menu icon image"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-wp-mobile-menu-options.php:1798
1567
+ msgid "Enter the Right Icon Top Margin"
1568
+ msgstr ""
1569
+
1570
+ #: includes/class-wp-mobile-menu-options.php:1807
1571
+ msgid "Icon Right Margin"
1572
+ msgstr ""
1573
+
1574
+ #: includes/class-wp-mobile-menu-options.php:1810
1575
+ msgid "Enter the Right Icon Right Margin"
1576
+ msgstr ""
1577
+
1578
+ #: includes/class-wp-mobile-menu-options.php:1841
1579
+ msgid "Enter the Right Menu Item icons horizontal padding(pixels)"
1580
+ msgstr ""
1581
+
1582
+ #: includes/class-wp-mobile-menu-options.php:1851
1583
+ msgid "Right Panel options"
1584
+ msgstr ""
1585
+
1586
+ #: includes/class-wp-mobile-menu-options.php:1860
1587
+ msgid ""
1588
+ "upload your right menu background image(this will override the Background "
1589
+ "color option)"
1590
+ msgstr ""
1591
+
1592
+ #: includes/class-wp-mobile-menu-options.php:1868
1593
+ msgid "Enter the Right Background image opacity"
1594
  msgstr ""
1595
 
1596
+ #: includes/class-wp-mobile-menu-options.php:1909
1597
+ #: includes/class-wp-mobile-menu-options.php:2963
1598
+ msgid "Pixels"
1599
  msgstr ""
1600
 
1601
+ #: includes/class-wp-mobile-menu-options.php:1918
1602
+ #: includes/class-wp-mobile-menu-options.php:1930
1603
+ msgid "Enter the Right Menu Panel Width"
1604
  msgstr ""
1605
 
1606
+ #: includes/class-wp-mobile-menu-options.php:1939
1607
+ msgid "Right Menu Content Padding"
1608
  msgstr ""
1609
 
1610
+ #: includes/class-wp-mobile-menu-options.php:1942
1611
+ msgid "Enter the Right Menu Content Padding"
1612
  msgstr ""
1613
 
1614
+ #: includes/class-wp-mobile-menu-options.php:1952
1615
+ msgid "Right Menu Font"
1616
  msgstr ""
1617
 
1618
+ #: includes/class-wp-mobile-menu-options.php:1979
1619
+ msgid "Right Menu Copyright Content"
1620
  msgstr ""
1621
 
1622
+ #: includes/class-wp-mobile-menu-options.php:1987
1623
+ msgid "General"
1624
  msgstr ""
1625
 
1626
+ #: includes/class-wp-mobile-menu-options.php:1993
1627
+ msgid "Overlay Background Color"
1628
  msgstr ""
1629
 
1630
+ #: includes/class-wp-mobile-menu-options.php:2003
1631
+ msgid "Menu Items Border Color"
 
1632
  msgstr ""
1633
 
1634
+ #: includes/class-wp-mobile-menu-options.php:2013
1635
+ msgid "Highlight Current Page Item"
1636
  msgstr ""
1637
 
1638
+ #: includes/class-wp-mobile-menu-options.php:2027
1639
+ msgid "Woocommerce Colors"
1640
  msgstr ""
1641
 
1642
+ #: includes/class-wp-mobile-menu-options.php:2033
1643
+ msgid "Cart Icon Color"
1644
  msgstr ""
1645
 
1646
+ #: includes/class-wp-mobile-menu-options.php:2043
1647
+ #: includes/class-wp-mobile-menu-options.php:2415
1648
+ #: includes/class-wp-mobile-menu-options.php:2515
1649
+ msgid "Text Color"
1650
  msgstr ""
1651
 
1652
+ #: includes/class-wp-mobile-menu-options.php:2053
1653
+ msgid "Woocommerce Panel Background Color"
1654
  msgstr ""
1655
 
1656
+ #: includes/class-wp-mobile-menu-options.php:2063
1657
+ msgid "Checkout Button Color"
1658
  msgstr ""
1659
 
1660
+ #: includes/class-wp-mobile-menu-options.php:2073
1661
+ msgid "Checkout Button Background Color"
 
1662
  msgstr ""
1663
 
1664
+ #: includes/class-wp-mobile-menu-options.php:2083
1665
+ msgid "View Cart Button Color"
 
1666
  msgstr ""
1667
 
1668
+ #: includes/class-wp-mobile-menu-options.php:2093
1669
+ msgid "View Cart Button Background Color"
1670
  msgstr ""
1671
 
1672
+ #: includes/class-wp-mobile-menu-options.php:2106
1673
+ msgid "Header Colors"
1674
  msgstr ""
1675
 
1676
+ #: includes/class-wp-mobile-menu-options.php:2112
1677
+ msgid "Header Background Color"
1678
  msgstr ""
1679
 
1680
+ #: includes/class-wp-mobile-menu-options.php:2122
1681
+ msgid "Header Text Color"
1682
  msgstr ""
1683
 
1684
+ #: includes/class-wp-mobile-menu-options.php:2135
1685
+ msgid "Header Search Colors"
1686
  msgstr ""
1687
 
1688
+ #: includes/class-wp-mobile-menu-options.php:2141
1689
+ msgid "Search Icon Color"
1690
  msgstr ""
1691
 
1692
+ #: includes/class-wp-mobile-menu-options.php:2151
1693
+ msgid "Search Form Button Color"
 
1694
  msgstr ""
1695
 
1696
+ #: includes/class-wp-mobile-menu-options.php:2161
1697
+ msgid "Search Form Button Background Color"
 
1698
  msgstr ""
1699
 
1700
+ #: includes/class-wp-mobile-menu-options.php:2171
1701
+ msgid "Search Form Background Color"
 
1702
  msgstr ""
1703
 
1704
+ #: includes/class-wp-mobile-menu-options.php:2181
1705
+ msgid "Search Form Text Color"
 
 
1706
  msgstr ""
1707
 
1708
+ #: includes/class-wp-mobile-menu-options.php:2191
1709
+ msgid "Search Form Placeholder Color"
 
 
1710
  msgstr ""
1711
 
1712
+ #: includes/class-wp-mobile-menu-options.php:2201
1713
+ msgid "Search Results Background Color"
 
 
1714
  msgstr ""
1715
 
1716
+ #: includes/class-wp-mobile-menu-options.php:2211
1717
+ msgid "Search Results Text Color"
1718
  msgstr ""
1719
 
1720
+ #: includes/class-wp-mobile-menu-options.php:2221
1721
+ msgid "Search Results Background Hover Color"
1722
  msgstr ""
1723
 
1724
+ #: includes/class-wp-mobile-menu-options.php:2231
1725
+ msgid "Search Results Text Hover Color"
1726
  msgstr ""
1727
 
1728
+ #: includes/class-wp-mobile-menu-options.php:2241
1729
+ msgid "Header Banner Colors"
1730
  msgstr ""
1731
 
1732
+ #: includes/class-wp-mobile-menu-options.php:2247
1733
+ msgid "Header Banner Background Color"
1734
  msgstr ""
1735
 
1736
+ #: includes/class-wp-mobile-menu-options.php:2257
1737
+ msgid "Header Banner Text Color"
 
 
 
 
 
 
 
 
 
1738
  msgstr ""
1739
 
1740
+ #: includes/class-wp-mobile-menu-options.php:2267
1741
+ msgid "Footer Colors"
1742
  msgstr ""
1743
 
1744
+ #: includes/class-wp-mobile-menu-options.php:2273
1745
+ msgid "Footer Background Color"
1746
  msgstr ""
1747
 
1748
+ #: includes/class-wp-mobile-menu-options.php:2283
1749
+ msgid "Footer Background Color Hover"
1750
  msgstr ""
1751
 
1752
+ #: includes/class-wp-mobile-menu-options.php:2293
1753
+ msgid "Footer Icon Color"
 
1754
  msgstr ""
1755
 
1756
+ #: includes/class-wp-mobile-menu-options.php:2303
1757
+ msgid "Footer Icon Color Hover"
1758
  msgstr ""
1759
 
1760
+ #: includes/class-wp-mobile-menu-options.php:2313
1761
+ msgid "Footer Text Color"
1762
  msgstr ""
1763
 
1764
+ #: includes/class-wp-mobile-menu-options.php:2323
1765
+ msgid "Footer Text Color Hover"
1766
  msgstr ""
1767
 
1768
+ #: includes/class-wp-mobile-menu-options.php:2333
1769
+ msgid "Highlight Current Page Item Color"
1770
  msgstr ""
1771
 
1772
+ #: includes/class-wp-mobile-menu-options.php:2343
1773
+ msgid "Footer Icon Color Current Page"
1774
  msgstr ""
1775
 
1776
+ #: includes/class-wp-mobile-menu-options.php:2353
1777
+ msgid "Footer Text Color Current Page"
1778
  msgstr ""
1779
 
1780
+ #: includes/class-wp-mobile-menu-options.php:2365
1781
+ msgid "Left Menu Colors"
 
 
1782
  msgstr ""
1783
 
1784
+ #: includes/class-wp-mobile-menu-options.php:2371
1785
+ msgid "Left Menu Icon Color"
 
 
1786
  msgstr ""
1787
 
1788
+ #: includes/class-wp-mobile-menu-options.php:2381
1789
+ msgid "Text After Left Icon"
 
 
1790
  msgstr ""
1791
 
1792
+ #: includes/class-wp-mobile-menu-options.php:2394
1793
+ msgid "Left Menu Items Icon Color"
 
 
1794
  msgstr ""
1795
 
1796
+ #: includes/class-wp-mobile-menu-options.php:2405
1797
+ #: includes/class-wp-mobile-menu-options.php:2505
1798
+ msgid "Background Color"
1799
  msgstr ""
1800
 
1801
+ #: includes/class-wp-mobile-menu-options.php:2425
1802
+ #: includes/class-wp-mobile-menu-options.php:2525
1803
+ msgid "Background Hover Color"
1804
  msgstr ""
1805
 
1806
+ #: includes/class-wp-mobile-menu-options.php:2435
1807
+ #: includes/class-wp-mobile-menu-options.php:2535
1808
+ msgid "Hover Text Color"
 
1809
  msgstr ""
1810
 
1811
+ #: includes/class-wp-mobile-menu-options.php:2445
1812
+ #: includes/class-wp-mobile-menu-options.php:2545
1813
+ msgid "Submenu Background Color"
1814
  msgstr ""
1815
 
1816
+ #: includes/class-wp-mobile-menu-options.php:2455
1817
+ #: includes/class-wp-mobile-menu-options.php:2555
1818
+ msgid "Submenu Text Color"
1819
  msgstr ""
1820
 
1821
+ #: includes/class-wp-mobile-menu-options.php:2465
1822
+ msgid "Right Menu Colors"
1823
  msgstr ""
1824
 
1825
+ #: includes/class-wp-mobile-menu-options.php:2471
1826
+ msgid "Right Menu Icon Color"
1827
  msgstr ""
1828
 
1829
+ #: includes/class-wp-mobile-menu-options.php:2481
1830
+ msgid "Text Before Right Icon"
1831
  msgstr ""
1832
 
1833
+ #: includes/class-wp-mobile-menu-options.php:2494
1834
+ msgid "Right Menu Items Icon Color"
1835
  msgstr ""
1836
 
1837
+ #: includes/class-wp-mobile-menu-options.php:2565
1838
+ msgid "3rd Level Menu Colors"
1839
  msgstr ""
1840
 
1841
+ #: includes/class-wp-mobile-menu-options.php:2571
1842
+ msgid "Left Menu Text Color"
1843
  msgstr ""
1844
 
1845
+ #: includes/class-wp-mobile-menu-options.php:2581
1846
+ msgid "Left Menu Text Color Hover"
1847
  msgstr ""
1848
 
1849
+ #: includes/class-wp-mobile-menu-options.php:2591
1850
+ msgid "Left Menu Background Color"
 
1851
  msgstr ""
1852
 
1853
+ #: includes/class-wp-mobile-menu-options.php:2601
1854
+ msgid "Left Menu Background Color Hover"
1855
  msgstr ""
1856
 
1857
+ #: includes/class-wp-mobile-menu-options.php:2611
1858
+ msgid "Right Menu Text Color"
1859
  msgstr ""
1860
 
1861
+ #: includes/class-wp-mobile-menu-options.php:2621
1862
+ msgid "Right Menu Text Color Hover"
1863
  msgstr ""
1864
 
1865
+ #: includes/class-wp-mobile-menu-options.php:2631
1866
+ msgid "Right Menu Background Color"
1867
  msgstr ""
1868
 
1869
+ #: includes/class-wp-mobile-menu-options.php:2641
1870
+ msgid "Right Menu Background Color Hover"
1871
  msgstr ""
1872
 
1873
+ #: includes/class-wp-mobile-menu-options.php:2665
1874
+ msgid "Woocommerce"
1875
  msgstr ""
1876
 
1877
+ #: includes/class-wp-mobile-menu-options.php:2669
1878
+ msgid "Enable Woocommerce Menu"
1879
  msgstr ""
1880
 
1881
+ #: includes/class-wp-mobile-menu-options.php:2673
1882
+ msgid "Enable or disable the Woocommerce Menu."
1883
  msgstr ""
1884
 
1885
+ #: includes/class-wp-mobile-menu-options.php:2680
1886
+ msgid "Open Cart Panel after adding a product"
1887
  msgstr ""
1888
 
1889
+ #: includes/class-wp-mobile-menu-options.php:2684
1890
+ msgid "Open Cart Panel after adding a product."
1891
  msgstr ""
1892
 
1893
+ #: includes/class-wp-mobile-menu-options.php:2691
1894
+ msgid "Enable Account Links in Mobile Cart Panel"
1895
  msgstr ""
1896
 
1897
+ #: includes/class-wp-mobile-menu-options.php:2695
1898
+ msgid "Enable Account(Login/logout) Section in the Mobile Cart Panel."
1899
  msgstr ""
1900
 
1901
+ #: includes/class-wp-mobile-menu-options.php:2702
1902
+ msgid "Header Search only in Products"
 
1903
  msgstr ""
1904
 
1905
+ #: includes/class-wp-mobile-menu-options.php:2706
1906
+ msgid "Search Only Products in the Header Search."
1907
  msgstr ""
1908
 
1909
+ #: includes/class-wp-mobile-menu-options.php:2713
1910
+ msgid "Header Elements Order"
1911
  msgstr ""
1912
 
1913
+ #: includes/class-wp-mobile-menu-options.php:2715
1914
+ msgid ""
1915
+ "<p>Click in this link to go to the reorder option. Save the changes first."
1916
+ "</p><a href=\"/wp-admin/admin.php?page=mobile-menu-options&tab=header\">"
1917
+ "Header Elements Order</a>"
1918
  msgstr ""
1919
 
1920
+ #: includes/class-wp-mobile-menu-options.php:2721
1921
+ msgid "Enabled on All Pages"
1922
  msgstr ""
1923
 
1924
+ #: includes/class-wp-mobile-menu-options.php:2722
1925
+ msgid "Enabled on Woocommerce Pages"
1926
  msgstr ""
1927
 
1928
+ #: includes/class-wp-mobile-menu-options.php:2727
1929
+ msgid "Footer (replacing the Shop Menu Item)"
1930
  msgstr ""
1931
 
1932
+ #: includes/class-wp-mobile-menu-options.php:2732
1933
+ msgid "Cart Total in Footer"
1934
  msgstr ""
1935
 
1936
+ #: includes/class-wp-mobile-menu-options.php:2735
1937
+ msgid "Choose the options to enable the Cart Total in Footer."
1938
  msgstr ""
1939
 
1940
+ #: includes/class-wp-mobile-menu-options.php:2742
1941
+ msgid "Product Filter"
 
 
 
 
 
 
 
1942
  msgstr ""
1943
 
1944
+ #: includes/class-wp-mobile-menu-options.php:2748
1945
+ msgid "Enable Mobile Product Filter"
 
 
 
 
 
1946
  msgstr ""
1947
 
1948
+ #: includes/class-wp-mobile-menu-options.php:2752
1949
+ msgid ""
1950
+ "Enable or disable the Mobile Product Filter. The Product Filter will appear "
1951
+ "only in the Shop and product category pages."
1952
  msgstr ""
1953
 
1954
+ #: includes/class-wp-mobile-menu-options.php:2759
1955
+ msgid "Filter Icon Font"
1956
  msgstr ""
1957
 
1958
+ #: includes/class-wp-mobile-menu-options.php:2768
1959
+ msgid "Filter Icon Font Size"
1960
  msgstr ""
1961
 
1962
+ #: includes/class-wp-mobile-menu-options.php:2771
1963
+ msgid "Enter the Woocommerce Filter Icon Font Size"
1964
  msgstr ""
1965
 
1966
+ #: includes/class-wp-mobile-menu-options.php:2780
1967
+ msgid "Shop Filter Top Margin"
1968
  msgstr ""
1969
 
1970
+ #: includes/class-wp-mobile-menu-options.php:2783
1971
+ msgid "Enter the Shop Filter Top Margin"
1972
  msgstr ""
1973
 
1974
+ #: includes/class-wp-mobile-menu-options.php:2792
1975
+ msgid "Shop Filter Location"
1976
  msgstr ""
1977
 
1978
+ #: includes/class-wp-mobile-menu-options.php:2795
1979
+ msgid "Choose the location of the Shop Filter."
 
1980
  msgstr ""
1981
 
1982
+ #: includes/class-wp-mobile-menu-options.php:2802
1983
+ msgid "Cart Icon"
 
1984
  msgstr ""
1985
 
1986
+ #: includes/class-wp-mobile-menu-options.php:2812
1987
+ msgid "Choose if you want to display the default cart SVG or an icon."
 
1988
  msgstr ""
1989
 
1990
+ #: includes/class-wp-mobile-menu-options.php:2813
1991
+ msgid "Default Cart SVG Icon"
 
1992
  msgstr ""
1993
 
1994
+ #: includes/class-wp-mobile-menu-options.php:2831
1995
+ msgid "Enter the Woocommerce Menu Icon Font Size"
1996
  msgstr ""
1997
 
1998
+ #: includes/class-wp-mobile-menu-options.php:2844
1999
+ msgid "Upload your Woocommerce Menu icon image"
2000
  msgstr ""
2001
 
2002
+ #: includes/class-wp-mobile-menu-options.php:2850
2003
+ msgid "Cart Icon Top Margin"
2004
  msgstr ""
2005
 
2006
+ #: includes/class-wp-mobile-menu-options.php:2853
2007
+ msgid "Enter the Cart Icon Top Margin"
2008
  msgstr ""
2009
 
2010
+ #: includes/class-wp-mobile-menu-options.php:2862
2011
+ msgid "Woocommerce Cart Text/Translations"
2012
  msgstr ""
2013
 
2014
+ #: includes/class-wp-mobile-menu-options.php:2868
2015
+ msgid "Cart Header Text"
2016
  msgstr ""
2017
 
2018
+ #: includes/class-wp-mobile-menu-options.php:2871
2019
+ msgid "Enter the custom text for the Cart Header Text."
 
 
2020
  msgstr ""
2021
 
2022
+ #: includes/class-wp-mobile-menu-options.php:2872
2023
+ msgid "Your Cart"
 
 
2024
  msgstr ""
2025
 
2026
+ #: includes/class-wp-mobile-menu-options.php:2877
2027
+ msgid "Cart No Items Text"
 
 
 
2028
  msgstr ""
2029
 
2030
+ #: includes/class-wp-mobile-menu-options.php:2880
2031
+ msgid "Enter the custom text for the Cart No Items Text."
2032
  msgstr ""
2033
 
2034
+ #: includes/class-wp-mobile-menu-options.php:2881
2035
+ msgid "No items found."
2036
  msgstr ""
2037
 
2038
+ #: includes/class-wp-mobile-menu-options.php:2886
2039
+ msgid "Cart Link to the Shop Page Text"
 
 
2040
  msgstr ""
2041
 
2042
+ #: includes/class-wp-mobile-menu-options.php:2889
2043
+ msgid "Enter the custom text for the Cart Link to the Shop page."
 
 
2044
  msgstr ""
2045
 
2046
+ #: includes/class-wp-mobile-menu-options.php:2890
2047
+ msgid "Start Shopping Now"
2048
  msgstr ""
2049
 
2050
+ #: includes/class-wp-mobile-menu-options.php:2895
2051
+ msgid "Filter Icon Text"
2052
  msgstr ""
2053
 
2054
+ #: includes/class-wp-mobile-menu-options.php:2898
2055
+ msgid "Enter the custom text for the Filter Icon."
2056
  msgstr ""
2057
 
2058
+ #: includes/class-wp-mobile-menu-options.php:2899
2059
+ #: includes/class-wp-mobile-menu-walker-nav-menu.php:88
2060
+ msgid "Filter"
 
2061
  msgstr ""
2062
 
2063
+ #: includes/class-wp-mobile-menu-options.php:2905
2064
+ msgid "Woocommerce Panel options"
2065
  msgstr ""
2066
 
2067
+ #: includes/class-wp-mobile-menu-options.php:2914
2068
  msgid ""
2069
  "Upload your Woocommerce menu background image(this will override the "
2070
  "Background color option)"
2071
  msgstr ""
2072
 
2073
+ #: includes/class-wp-mobile-menu-options.php:2972
2074
+ #: includes/class-wp-mobile-menu-options.php:2984
2075
+ msgid "Enter the Menu Panel Width"
 
 
 
 
 
 
 
 
 
 
 
2076
  msgstr ""
2077
 
2078
+ #: includes/class-wp-mobile-menu-options.php:2993
2079
+ msgid "Menu Content Padding"
2080
  msgstr ""
2081
 
2082
+ #: includes/class-wp-mobile-menu-options.php:2996
2083
+ msgid "Enter the Menu Content Padding"
2084
  msgstr ""
2085
 
2086
+ #: includes/class-wp-mobile-menu-walker-nav-menu.php:105
2087
+ msgid "Back"
2088
  msgstr ""
2089
 
2090
+ #. Name of the plugin
2091
+ msgid "Mobile Menu"
2092
  msgstr ""
2093
 
2094
+ #. Description of the plugin
2095
+ msgid ""
2096
+ "An easy to use WordPress responsive mobile menu. Keep your mobile visitors "
2097
+ "engaged."
2098
  msgstr ""
2099
 
2100
+ #. URI of the plugin
2101
+ msgid "https://www.wpmobilemenu.com/"
2102
  msgstr ""
2103
 
2104
+ #. Author of the plugin
2105
+ msgid "Takanakui"
2106
  msgstr ""
2107
 
2108
+ #. Author URI of the plugin
2109
+ msgid "https://www.jedipress.com/"
 
 
 
 
 
 
 
 
 
2110
  msgstr ""
mobmenu.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Mobile Menu
5
  * Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
6
- * Version: 2.7.4.2
7
  * Plugin URI: https://www.wpmobilemenu.com/
8
  * Author: Takanakui
9
  * Author URI: https://www.jedipress.com/
@@ -15,7 +15,7 @@
15
  if ( !defined( 'ABSPATH' ) ) {
16
  die;
17
  }
18
- define( 'WP_MOBILE_MENU_VERSION', '2.7.4.2' );
19
  define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
20
  if ( !class_exists( 'WP_Mobile_Menu' ) ) {
21
  /**
@@ -81,8 +81,6 @@ if ( !class_exists( 'WP_Mobile_Menu' ) ) {
81
  add_action( 'wp_loaded', array( $this->mobmenu_core, 'register_sidebar' ) );
82
  // Register Menus.
83
  add_action( 'init', array( $this->mobmenu_core, 'register_menus' ) );
84
- // Register Dynamic Translation Strings.
85
- add_action( 'init', array( $this->mobmenu_core, 'register_strings_for_translation' ) );
86
  // Load frontend assets.
87
  if ( !is_admin() ) {
88
  add_action( 'init', array( $this, 'load_frontend_assets' ) );
3
  /**
4
  * Plugin Name: Mobile Menu
5
  * Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
6
+ * Version: 2.7.4.3
7
  * Plugin URI: https://www.wpmobilemenu.com/
8
  * Author: Takanakui
9
  * Author URI: https://www.jedipress.com/
15
  if ( !defined( 'ABSPATH' ) ) {
16
  die;
17
  }
18
+ define( 'WP_MOBILE_MENU_VERSION', '2.7.4.3' );
19
  define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
20
  if ( !class_exists( 'WP_Mobile_Menu' ) ) {
21
  /**
81
  add_action( 'wp_loaded', array( $this->mobmenu_core, 'register_sidebar' ) );
82
  // Register Menus.
83
  add_action( 'init', array( $this->mobmenu_core, 'register_menus' ) );
 
 
84
  // Load frontend assets.
85
  if ( !is_admin() ) {
86
  add_action( 'init', array( $this, 'load_frontend_assets' ) );
readme.txt CHANGED
@@ -4,7 +4,7 @@ link: http://profiles.wordpress.org/takanakui
4
  Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
5
  Requires at least: 4.0
6
  Tested up to: 5.2
7
- Stable tag: 2.7.4.2
8
  Requires PHP: 5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -95,7 +95,21 @@ Download and install the .zip file in the Wordpress plugin page of your website
95
  3. Done!
96
 
97
  == Frequently Asked Questions ==
98
- Not available at the moment
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
 
100
  == Upgrade Notice ==
101
  Not available at the moment
@@ -103,9 +117,24 @@ Not available at the moment
103
  == Changelog ==
104
 
105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  = 2.7.4.2 =
107
  * Fix! - Retina logo logic was fixed
108
  = 2.7.4.1 =
 
109
  * Fix! - Overlay wasn't displayed correctly
110
  * Fix! - Click in the Overlay wasn't working
111
  * Fix! - Remove the enqueue of hamburgers.min.css
4
  Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
5
  Requires at least: 4.0
6
  Tested up to: 5.2
7
+ Stable tag: 2.7.4.3
8
  Requires PHP: 5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
95
  3. Done!
96
 
97
  == Frequently Asked Questions ==
98
+ = Where can I find WP Mobile Menu documentation? =
99
+
100
+ For help setting up and configuring WP Mobile Menu check our [documentation](https://www.wpmobilemenu.com/knowledgebase)
101
+
102
+ = Will WP Mobile Menu work with my theme? =
103
+
104
+ Yes! WP Mobile Menu will work with any theme, but may require our help to hide the theme menu. Please see our [documentation](https://www.wpmobilemenu.com/knowledgebase/general-options/how-to-hide-the-main-menu-and-other-elements-when-wp-mobile-menu-is-active/).
105
+
106
+ = Where can I request new features and add-ons? =
107
+
108
+ You can send us an email using the contact form available on the following [link](https://www.wpmobilemenu.com/support-contact/)
109
+
110
+ = Is WP Mobile Menu Free? =
111
+ There are two versions of WP Mobile Menu. One is free and another is Premium. Only being able to monetize the plugin is possible to provide constant updates and a good suppor on the Free version.
112
+ The Premium versions have some more advanced features in general and for Ecommerce websites that are not available in the free version.
113
 
114
  == Upgrade Notice ==
115
  Not available at the moment
117
  == Changelog ==
118
 
119
 
120
+ = 2.7.4.3 =
121
+ * New! - Autoclose opened submenus when opening a new one
122
+ * New! - Include plugin version in the bottom of the admin options
123
+ * Fix! - Color after left icon
124
+ * Fix! - Replace padding-top by margin-top on mobmenu-content
125
+ * Fix! - Fix menu panel positions when showing the admin bar
126
+ * Fix! - Fix One page navigation and smooth scroll
127
+ * Fix! - Removed outline focus
128
+ * Fix! - Fix submenus JS issue Replace jQuery by $
129
+ * Fix! - Fix CSS overlay issues
130
+ * Fix! - Include version in the JS/CSS enqueue
131
+ * Fix! - Added version to CSS and JS files
132
+ * Fix! - Fixed bug in the admin menu options when using translations
133
+ * Fix! - Include FAQS in readme.txt
134
  = 2.7.4.2 =
135
  * Fix! - Retina logo logic was fixed
136
  = 2.7.4.1 =
137
+
138
  * Fix! - Overlay wasn't displayed correctly
139
  * Fix! - Click in the Overlay wasn't working
140
  * Fix! - Remove the enqueue of hamburgers.min.css
vendor/titan-framework/lib/class-admin-page.php CHANGED
@@ -115,7 +115,7 @@ class TitanFrameworkAdminPage {
115
  }
116
 
117
  public function addTitanCreditText() {
118
- return __( "<em>Check our documentation at <a href='https://www.wpmobilemenu.com/knowledgebase'>WP Mobile Menu Documentation</a></em>", 'mobile-menu' );
119
  }
120
 
121
 
@@ -320,7 +320,7 @@ class TitanFrameworkAdminPage {
320
 
321
  ?>
322
  <div class="wrap">
323
- <h2><?php echo $this->settings['title'] ?></h2>
324
  <?php
325
  if ( ! empty( $this->settings['desc'] ) ) {
326
  ?><p class='description'><?php echo $this->settings['desc'] ?></p><?php
115
  }
116
 
117
  public function addTitanCreditText() {
118
+ return __( "You are using WP Mobile Menu version " . WP_MOBILE_MENU_VERSION . " </br><em>Check our documentation at <a href='https://www.wpmobilemenu.com/knowledgebase'>WP Mobile Menu Documentation</a></em>", 'mobile-menu' );
119
  }
120
 
121
 
320
 
321
  ?>
322
  <div class="wrap">
323
+ <h2><?php echo $this->settings['title']; ?></h2>
324
  <?php
325
  if ( ! empty( $this->settings['desc'] ) ) {
326
  ?><p class='description'><?php echo $this->settings['desc'] ?></p><?php
vendor/titan-framework/lib/class-meta-box.php CHANGED
@@ -6,15 +6,10 @@ class TitanFrameworkMetaBox {
6
 
7
  private $defaultSettings = array(
8
  'name' => '', // Name of the menu item
9
- // 'parent' => null, // slug of parent, if blank, then this is a top level menu
10
  'id' => '', // Unique ID of the menu item
11
- // 'capability' => 'manage_options', // User role
12
- // 'icon' => 'dashicons-admin-generic', // Menu icon for top level menus only
13
- // 'position' => 100.01 // Menu position for top level menus only
14
  'post_type' => 'page', // Post type, can be an array of post types
15
  'page_template' => '', // if page template is selected, just will be show on that page
16
  'context' => 'normal', // normal, advanced, or side
17
- 'hide_custom_fields' => true, // If true, the custom fields box will not be shown
18
  'priority' => 'high', // high, core, default, low
19
  'desc' => '', // Description displayed below the title
20
  );
@@ -66,10 +61,6 @@ class TitanFrameworkMetaBox {
66
  }
67
 
68
  foreach ( $postTypes as $postType ) {
69
- // Hide the custom fields
70
- if ( $this->settings['hide_custom_fields'] ) {
71
- remove_meta_box( 'postcustom' , $postType , 'normal' );
72
- }
73
 
74
  add_meta_box(
75
  $this->settings['id'],
6
 
7
  private $defaultSettings = array(
8
  'name' => '', // Name of the menu item
 
9
  'id' => '', // Unique ID of the menu item
 
 
 
10
  'post_type' => 'page', // Post type, can be an array of post types
11
  'page_template' => '', // if page template is selected, just will be show on that page
12
  'context' => 'normal', // normal, advanced, or side
 
13
  'priority' => 'high', // high, core, default, low
14
  'desc' => '', // Description displayed below the title
15
  );
61
  }
62
 
63
  foreach ( $postTypes as $postType ) {
 
 
 
 
64
 
65
  add_meta_box(
66
  $this->settings['id'],
vendor/titan-framework/lib/class-titan-css.php CHANGED
@@ -51,9 +51,10 @@ class TitanFrameworkCSS {
51
  add_action( 'tf_admin_options_saved_' . $frameworkInstance->optionNamespace, array( $this, 'generateSaveCSS' ) );
52
  // Trigger compile when there are no default options saved yet
53
  add_action( 'tf_init_no_options_' . $frameworkInstance->optionNamespace, array( $this, 'generateMissingCSS' ) );
54
- }
55
 
 
56
 
 
57
  /**
58
  * Adds a CSS string to the list for CSS generation
59
  *
@@ -102,10 +103,16 @@ class TitanFrameworkCSS {
102
  // Only enqueue the generated css if we have the settings for it.
103
  if ( $this->frameworkInstance->settings['css'] == 'generate' ) {
104
 
105
- $css = get_option( $this->getCSSSlug() );
106
  $generated_css = $this->getCSSFilePath();
107
- if ( file_exists( $generated_css ) && empty( $css ) ) {
108
- wp_enqueue_style( 'tf-compiled-options-' . $this->frameworkInstance->optionNamespace, $this->getCSSFileURL(), __FILE__ );
 
 
 
 
 
 
109
  }
110
 
111
  }
@@ -316,7 +323,9 @@ class TitanFrameworkCSS {
316
  try {
317
  $testerForValidCSS = $scss->compile( $cssString );
318
  $cssString = $testerForValidCSS;
319
- $cssString .= $scss->compile( $this->generateMobileMenuCSS() );
 
 
320
  } catch ( Exception $e ) {
321
  }
322
  }
@@ -339,6 +348,11 @@ class TitanFrameworkCSS {
339
  return;
340
  }
341
 
 
 
 
 
 
342
  // Save our css.
343
  if ( $this->writeCSS( $cssString, $this->getCSSFilePath() ) ) {
344
  // If we were able to save, remove our CSS option if it exists.
@@ -367,10 +381,12 @@ class TitanFrameworkCSS {
367
  $svg_color = $titan->getOption( 'search_icon_color', '#000000' );
368
  $this->writeSVG( $svg_color, $svg_file_path );
369
 
370
- // Change the SVG cart icon color.
371
- $svg_file_path = WP_MOBILE_MENU_PLUGIN_PATH . 'includes/assets/svgs/cart.svg';
372
- $svg_color = $titan->getOption( 'mm_woo_menu_icon_color', '#000000' );
373
- $this->writeSVG( $svg_color, $svg_file_path );
 
 
374
  }
375
 
376
  /**
@@ -395,11 +411,10 @@ class TitanFrameworkCSS {
395
  if ( ! is_admin() ) {
396
  return;
397
  }
 
398
 
399
  $css_filename = $this->getCSSFilePath();
400
-
401
  WP_Filesystem();
402
- global $wp_filesystem;
403
 
404
  // Check if the file exists.
405
  if ( $wp_filesystem->exists( $css_filename ) ) {
@@ -428,7 +443,7 @@ class TitanFrameworkCSS {
428
  WP_Filesystem();
429
  global $wp_filesystem;
430
 
431
- // Verify that we can create the file
432
  if ( $wp_filesystem->exists( $cssFilename ) ) {
433
  if ( ! $wp_filesystem->is_writable( $cssFilename ) ) {
434
  return false;
@@ -437,7 +452,7 @@ class TitanFrameworkCSS {
437
  return false;
438
  }
439
  }
440
- // Verify directory
441
  if ( ! $wp_filesystem->is_dir( dirname( $cssFilename ) ) ) {
442
  return false;
443
  }
@@ -445,21 +460,22 @@ class TitanFrameworkCSS {
445
  return false;
446
  }
447
 
448
- // Write our CSS
449
  return $wp_filesystem->put_contents( $cssFilename, $parsedCSS, 0644 );
450
  }
451
 
452
- /**
453
- * Writes the CSS file
454
  *
455
- * @return boolean True if the CSS file was written successfully
456
- * @since 1.2
457
  */
458
  private function writeSVG( $svg_color, $svgFilename ) {
459
- WP_Filesystem();
460
  global $wp_filesystem;
 
461
 
462
- // Verify that we can create the file
463
  if ( $wp_filesystem->exists( $svgFilename ) ) {
464
  if ( ! $wp_filesystem->is_writable( $svgFilename ) ) {
465
  return false;
@@ -468,13 +484,16 @@ class TitanFrameworkCSS {
468
  return false;
469
  }
470
  }
471
- // Verify directory
472
  if ( ! $wp_filesystem->is_dir( dirname( $svgFilename ) ) ) {
473
  return false;
474
  }
475
  if ( ! $wp_filesystem->is_writable( dirname( $svgFilename ) ) ) {
476
  return false;
477
  }
 
 
 
478
  $svg_file_content = $wp_filesystem->get_contents( $svgFilename );
479
  $svg_file_content = substr_replace($svg_file_content, '' . $svg_color . '', strpos( $svg_file_content, 'fill' ) + 6, 7);
480
 
@@ -482,5 +501,4 @@ class TitanFrameworkCSS {
482
  return $wp_filesystem->put_contents( $svgFilename, $svg_file_content, 0644 );
483
  }
484
 
485
-
486
  }
51
  add_action( 'tf_admin_options_saved_' . $frameworkInstance->optionNamespace, array( $this, 'generateSaveCSS' ) );
52
  // Trigger compile when there are no default options saved yet
53
  add_action( 'tf_init_no_options_' . $frameworkInstance->optionNamespace, array( $this, 'generateMissingCSS' ) );
 
54
 
55
+ }
56
 
57
+
58
  /**
59
  * Adds a CSS string to the list for CSS generation
60
  *
103
  // Only enqueue the generated css if we have the settings for it.
104
  if ( $this->frameworkInstance->settings['css'] == 'generate' ) {
105
 
106
+ $css = get_option( $this->getCSSSlug() );
107
  $generated_css = $this->getCSSFilePath();
108
+
109
+ if ( file_exists( $generated_css ) && get_option( 'mobmenu_latest_update_version', '' ) == WP_MOBILE_MENU_VERSION ) {
110
+ wp_enqueue_style( 'tf-compiled-options-' . $this->frameworkInstance->optionNamespace, $this->getCSSFileURL(), '', WP_MOBILE_MENU_VERSION . '-' .rand(100, 999) );
111
+ } else {
112
+ $titan = TitanFramework::getInstance( 'mobmenu' );
113
+ echo '<style id="dynamic-mobmenu-inline-css">';
114
+ $css = $this->generateCSS();
115
+ echo $css . '</style>';
116
  }
117
 
118
  }
323
  try {
324
  $testerForValidCSS = $scss->compile( $cssString );
325
  $cssString = $testerForValidCSS;
326
+ $mobile_menu_css = $this->generateMobileMenuCSS();
327
+ $cssString .= $scss->compile( $cssString );
328
+ $cssString .= $mobile_menu_css;
329
  } catch ( Exception $e ) {
330
  }
331
  }
348
  return;
349
  }
350
 
351
+ // This is flag of control to detect updates.
352
+ if ( get_option( 'mobmenu_latest_update_version', '' ) != WP_MOBILE_MENU_VERSION ) {
353
+ update_option( 'mobmenu_latest_update_version', WP_MOBILE_MENU_VERSION );
354
+ }
355
+
356
  // Save our css.
357
  if ( $this->writeCSS( $cssString, $this->getCSSFilePath() ) ) {
358
  // If we were able to save, remove our CSS option if it exists.
381
  $svg_color = $titan->getOption( 'search_icon_color', '#000000' );
382
  $this->writeSVG( $svg_color, $svg_file_path );
383
 
384
+ if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
385
+ // Change the SVG cart icon color.
386
+ $svg_file_path = WP_MOBILE_MENU_PLUGIN_PATH . 'includes/assets/svgs/cart.svg';
387
+ $svg_color = $titan->getOption( 'mm_woo_menu_icon_color', '#000000' );
388
+ $this->writeSVG( $svg_color, $svg_file_path );
389
+ }
390
  }
391
 
392
  /**
411
  if ( ! is_admin() ) {
412
  return;
413
  }
414
+ global $wp_filesystem;
415
 
416
  $css_filename = $this->getCSSFilePath();
 
417
  WP_Filesystem();
 
418
 
419
  // Check if the file exists.
420
  if ( $wp_filesystem->exists( $css_filename ) ) {
443
  WP_Filesystem();
444
  global $wp_filesystem;
445
 
446
+ // Verify that we can create the file.
447
  if ( $wp_filesystem->exists( $cssFilename ) ) {
448
  if ( ! $wp_filesystem->is_writable( $cssFilename ) ) {
449
  return false;
452
  return false;
453
  }
454
  }
455
+ // Verify directory.
456
  if ( ! $wp_filesystem->is_dir( dirname( $cssFilename ) ) ) {
457
  return false;
458
  }
460
  return false;
461
  }
462
 
463
+ // Write our CSS.
464
  return $wp_filesystem->put_contents( $cssFilename, $parsedCSS, 0644 );
465
  }
466
 
467
+ /**
468
+ * Writes the SVG file
469
  *
470
+ * @return boolean True if the SVG file was written successfully
471
+ * @since 2.7
472
  */
473
  private function writeSVG( $svg_color, $svgFilename ) {
474
+
475
  global $wp_filesystem;
476
+ WP_Filesystem();
477
 
478
+ // Verify that we can create the file.
479
  if ( $wp_filesystem->exists( $svgFilename ) ) {
480
  if ( ! $wp_filesystem->is_writable( $svgFilename ) ) {
481
  return false;
484
  return false;
485
  }
486
  }
487
+ // Verify directory.
488
  if ( ! $wp_filesystem->is_dir( dirname( $svgFilename ) ) ) {
489
  return false;
490
  }
491
  if ( ! $wp_filesystem->is_writable( dirname( $svgFilename ) ) ) {
492
  return false;
493
  }
494
+
495
+ $svg_color = str_pad( $svg_color, 7 );
496
+
497
  $svg_file_content = $wp_filesystem->get_contents( $svgFilename );
498
  $svg_file_content = substr_replace($svg_file_content, '' . $svg_color . '', strpos( $svg_file_content, 'fill' ) + 6, 7);
499
 
501
  return $wp_filesystem->put_contents( $svgFilename, $svg_file_content, 0644 );
502
  }
503
 
 
504
  }