Advanced Sidebar Menu - Version 7.2.3

Version Description

Download this release

Release Info

Developer Mat Lipe
Plugin Icon 128x128 Advanced Sidebar Menu
Version 7.2.3
Comparing to
See all releases

Code changes from version 7.2.2 to 7.2.3

advanced-sidebar-menu.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Advanced Sidebar Menu
4
  Plugin URI: https://matlipe.com/advanced-sidebar-menu/
5
  Description: Creates dynamic menus based on parent/child relationship of your pages or categories.
6
  Author: Mat Lipe
7
- Version: 7.2.2
8
  Author URI: https://matlipe.com
9
  Text Domain: advanced-sidebar-menu
10
  */
@@ -14,7 +14,7 @@ if ( defined( 'ADVANCED_SIDEBAR_BASIC_VERSION' ) ) {
14
  return;
15
  }
16
 
17
- define( 'ADVANCED_SIDEBAR_BASIC_VERSION', '7.2.2' );
18
  define( 'ADVANCED_SIDEBAR_DIR', plugin_dir_path( __FILE__ ) );
19
 
20
  if ( ! function_exists( 'advanced_sidebar_menu_load' ) ) {
@@ -89,8 +89,10 @@ function advanced_sidebar_menu_script() {
89
 
90
  add_action( 'advanced-sidebar-menu/widget/category/right-column', 'advanced_sidebar_menu_upgrade_notice', 1, 2 );
91
  add_action( 'advanced-sidebar-menu/widget/page/right-column', 'advanced_sidebar_menu_upgrade_notice', 1, 2 );
 
 
92
  /**
93
- * @todo translate these features
94
  *
95
  * @param array $instance
96
  * @param WP_Widget $widget
@@ -108,54 +110,34 @@ function advanced_sidebar_menu_upgrade_notice( array $instance, WP_Widget $widge
108
  <strong>
109
  <?php
110
  /* translators: {<a>}{</a>} links to https://matlipe.com/product/advanced-sidebar-menu-pro/ */
111
- printf( esc_html_x( 'Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for these features:', '{<a>}{</a>}', 'advanced-sidebar-menu' ), '<a target="blank" href="https://matlipe.com/product/advanced-sidebar-menu-pro/">', '</a>' ); ?>
112
  </strong>
113
- <ol>
114
- <li>Priority support.</li>
 
 
115
  <?php
116
  //page widget options
117
  if ( 'advanced_sidebar_menu' === $widget->id_base ) {
118
  ?>
119
- <li>Ability to customize each page's link text.</li>
120
- <li>Ability to exclude a page from all menus using a simple checkbox.</li>
121
- <li>Number of levels of pages to show when always displayed child pages is not checked.</li>
122
- <li>Ability to select and display custom post types.</li>
123
- <li>Option to display the current page’s parents and grandparents only</li>
124
- <li>Option to display child page siblings when on a child page. <strong> NEW</strong></li>
125
- <li>Option to display child page siblings when on a child page with no grandchild pages.<strong>
126
- NEW</strong></li>
127
- <li>Accordion menu support for pages.</li>
128
  <?php
129
  //category widget options
130
  } else {
131
  ?>
132
- <li>Link ordering for the category widget.</li>
133
- <li>Ability to select and display custom taxonomies.</li>
134
- <li>Accordion menu support for categories.</li>
135
  <?php
136
  }
137
  ?>
138
- <li>Accordion icon selection from 4 styles of icons.</li>
139
- <li>Accordion icon color selection.</li>
140
- <li>Accordion option to keep all sections closed until clicked.</li>
141
- <li>Accordion option to include highest level parent in accordion.</li>
142
- <li>Click and drag styling for both the page and category widgets.</li>
143
- <li>Styling options for links including color, background color, size, and font weight.</li>
144
- <li>Styling options for different levels of links.</li>
145
- <li>Styling options for the current page or category.</li>
146
- <li>Styling options for the parent of the current page or category.</li>
147
- <li>Block styling options including borders and border colors.</li>
148
- <li>Bullet style selection from 7 styles or select none to have no bullets.</li>
149
- <li>Ability to display the widgets everywhere the sidebar display. <strong> NEW</strong></li>
150
- <li>Ability to select the parent page/category when using the display widget everywhere option.<strong>
151
- NEW</strong></li>
152
- <li>Access to members only support area.</li>
153
  </ol>
154
  <p>
155
  </div>
156
  <?php
157
  }
158
-
159
-
160
-
161
-
4
  Plugin URI: https://matlipe.com/advanced-sidebar-menu/
5
  Description: Creates dynamic menus based on parent/child relationship of your pages or categories.
6
  Author: Mat Lipe
7
+ Version: 7.2.3
8
  Author URI: https://matlipe.com
9
  Text Domain: advanced-sidebar-menu
10
  */
14
  return;
15
  }
16
 
17
+ define( 'ADVANCED_SIDEBAR_BASIC_VERSION', '7.2.3' );
18
  define( 'ADVANCED_SIDEBAR_DIR', plugin_dir_path( __FILE__ ) );
19
 
20
  if ( ! function_exists( 'advanced_sidebar_menu_load' ) ) {
89
 
90
  add_action( 'advanced-sidebar-menu/widget/category/right-column', 'advanced_sidebar_menu_upgrade_notice', 1, 2 );
91
  add_action( 'advanced-sidebar-menu/widget/page/right-column', 'advanced_sidebar_menu_upgrade_notice', 1, 2 );
92
+
93
+
94
  /**
95
+ * Notify widget users about the PRO options
96
  *
97
  * @param array $instance
98
  * @param WP_Widget $widget
110
  <strong>
111
  <?php
112
  /* translators: {<a>}{</a>} links to https://matlipe.com/product/advanced-sidebar-menu-pro/ */
113
+ printf( esc_html_x( 'Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for these features and so much more!', '{<a>}{</a>}', 'advanced-sidebar-menu' ), '<a target="blank" href="https://matlipe.com/product/advanced-sidebar-menu-pro/">', '</a>' ); ?>
114
  </strong>
115
+ <ol style="list-style: disc">
116
+ <li><?php esc_html_e( 'Priority support, including access to Members Only Support Area.', 'advanced-sidebar-menu' ); ?></li>
117
+ <li><?php esc_html_e( 'Accordion menu support.', 'advanced-sidebar-menu' ); ?></li>
118
+ <li><?php esc_html_e( 'Click and drag menu styling including bullets, colors, sizes, block styles, borders, and border colors.', 'advanced-sidebar-menu' ); ?></li>
119
  <?php
120
  //page widget options
121
  if ( 'advanced_sidebar_menu' === $widget->id_base ) {
122
  ?>
123
+ <li><?php esc_html_e( "Ability to customize each page's link text.", 'advanced-sidebar-menu' ); ?></li>
124
+ <li><?php esc_html_e( 'Ability to exclude a page from all menus using a simple checkbox.', 'advanced-sidebar-menu' ); ?></li>
125
+ <li><?php esc_html_e( 'Number of levels of pages to show when always displayed child pages is not checked.', 'advanced-sidebar-menu' ); ?></li>
126
+ <li><?php esc_html_e( 'Ability to select and display custom post types.', 'advanced-sidebar-menu' ); ?></li>
127
+ <li><?php esc_html_e( 'Option to display the current page’s parents and grandparents only, as well as siblings options.', 'advanced-sidebar-menu' ); ?></li>
 
 
 
 
128
  <?php
129
  //category widget options
130
  } else {
131
  ?>
132
+ <li><?php esc_html_e( 'Link ordering for the category widget.', 'advanced-sidebar-menu' ); ?></li>
133
+ <li><?php esc_html_e( 'Ability to select and display custom taxonomies.', 'advanced-sidebar-menu' ); ?></li>
 
134
  <?php
135
  }
136
  ?>
137
+ <li><?php esc_html_e( 'Ability to display the widgets everywhere the sidebar display.', 'advanced-sidebar-menu' ); ?>
138
+ <strong> NEW</strong></li>
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  </ol>
140
  <p>
141
  </div>
142
  <?php
143
  }
 
 
 
 
languages/advanced-sidebar-menu-de_DE.mo CHANGED
Binary file
languages/advanced-sidebar-menu-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanced Sidebar Menu\n"
4
- "POT-Creation-Date: 2018-04-25 16:28-0400\n"
5
- "PO-Revision-Date: 2018-04-25 16:29-0400\n"
6
  "Last-Translator: Mat Lipe <mat@matlipe.com>\n"
7
  "Language-Team: \n"
8
  "Language: de\n"
@@ -21,95 +21,164 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: advanced-sidebar-menu.php:105
25
  msgid "Checkout Advanced Sidebar Menu Pro!"
26
  msgstr "Kasse Advanced Sidebar Menu Pro!"
27
 
28
  #. translators: {<a>}{</a>} links to https://matlipe.com/product/advanced-sidebar-menu-pro/
29
- #: advanced-sidebar-menu.php:110
30
  #, php-format
31
  msgctxt "{<a>}{</a>}"
32
- msgid "Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for these features:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  msgstr ""
 
 
 
 
 
 
 
 
 
 
34
 
35
- #: src/Widget/Category.php:42
 
 
 
 
36
  msgid ""
37
  "Creates a menu of all the categories using the child/parent relationship"
38
  msgstr ""
39
  "Erstellt ein Menü aller Kategorien, die unter Zugrundelegung der Eltern-Kind-"
40
  "Beziehung"
41
 
42
- #: src/Widget/Category.php:46
43
  msgid "Advanced Sidebar Categories Menu"
44
  msgstr "Advanced Sidebar Kategorien-Menü"
45
 
46
- #: src/Widget/Category.php:64 src/Widget/Page.php:67
47
- msgid "Title"
48
- msgstr "Titel"
49
-
50
- #: src/Widget/Category.php:79
51
  msgid "Display highest level parent category"
52
  msgstr "Anzeige der übergeordneten Kategorie der höchsten Ebene"
53
 
54
- #: src/Widget/Category.php:87
55
  msgid "Display menu when there is only the parent category"
56
  msgstr "Menü \"Anzeige\" wird nur die übergeordnete Kategorie"
57
 
58
- #: src/Widget/Category.php:94
59
  msgid "Always display child categories"
60
  msgstr "Immer untergeordnete Kategorien anzeigen"
61
 
62
- #: src/Widget/Category.php:102 src/Widget/Page.php:106
63
  msgid "Levels to display"
64
  msgstr "Anzuzeigenden Ebenen"
65
 
66
- #: src/Widget/Category.php:128
 
 
 
 
67
  msgid "Display categories on single posts"
68
  msgstr "Kategorien auf einzelne Beiträge anzeigen"
69
 
70
- #: src/Widget/Category.php:135
71
  msgid "Display each single post's category"
72
  msgstr "Zeigen Sie die einzelnen Kategorien der einzelnen Posts an"
73
 
74
- #: src/Widget/Category.php:141
75
  msgid "In a new widget"
76
  msgstr "In einem neuen Widget"
77
 
78
- #: src/Widget/Category.php:144
79
  msgid "In another list in the same widget"
80
  msgstr "In einer anderen Liste im selben Widget"
81
 
82
- #: src/Widget/Category.php:157
83
  msgid "Categories to exclude (ids), comma separated"
84
  msgstr "Kategorien ausschließen (Ids), durch Kommata getrennt"
85
 
86
- #: src/Widget/Page.php:38
 
 
 
 
87
  msgid "Creates a menu of all the pages using the child/parent relationship"
88
  msgstr ""
89
  "Erstellt ein Menü mit allen Seiten, die die Child / Parent-Beziehung "
90
  "verwenden"
91
 
92
- #: src/Widget/Page.php:44
93
  msgid "Advanced Sidebar Pages Menu"
94
  msgstr "Advanced Sidebar Seitenmenü"
95
 
96
- #: src/Widget/Page.php:82
97
  msgid "Display highest level parent page"
98
  msgstr "Zeigt die oberste Seite der obersten Ebene an"
99
 
100
- #: src/Widget/Page.php:90
101
  msgid "Display menu when there is only the parent page"
102
  msgstr "Menü \"Anzeige\" wird nur die übergeordnete Seite"
103
 
104
- #: src/Widget/Page.php:97
105
  msgid "Always display child pages"
106
  msgstr "Immer untergeordnete Seiten anzeigen"
107
 
108
- #: src/Widget/Page.php:130
109
  msgid "Order by"
110
  msgstr "Sortieren nach"
111
 
112
- #: src/Widget/Page.php:154
113
  msgid "Pages to exclude (ids), comma separated"
114
  msgstr "Auszuschließende Seiten (IDs), durch Kommas getrennt"
115
 
@@ -137,16 +206,5 @@ msgstr "Mat Lipe"
137
  msgid "https://matlipe.com"
138
  msgstr "https://matlipe.com"
139
 
140
- #~ msgctxt "{<a>}{</a>}"
141
- #~ msgid ""
142
- #~ "Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for Priority Support, "
143
- #~ "Styles, Custom Link Text, Accordions, Custom Post Types, and so much more!"
144
- #~ msgstr ""
145
- #~ "Upgrade auf %1$sAdvanced Sidebar Menu Pro %2$s für Priority-Support, "
146
- #~ "Styles, Custom-Link-Text, Akkordeons, Custom Post Types und vieles mehr!"
147
-
148
- #~ msgid "Use this plugins styling"
149
- #~ msgstr "Verwenden Sie dieses Plugins-styling"
150
-
151
  #~ msgid "Use this Plugin's Styling"
152
  #~ msgstr "Benutze das Plugin Styling"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanced Sidebar Menu\n"
4
+ "POT-Creation-Date: 2018-05-03 12:37-0400\n"
5
+ "PO-Revision-Date: 2018-05-03 12:41-0400\n"
6
  "Last-Translator: Mat Lipe <mat@matlipe.com>\n"
7
  "Language-Team: \n"
8
  "Language: de\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: advanced-sidebar-menu.php:108
25
  msgid "Checkout Advanced Sidebar Menu Pro!"
26
  msgstr "Kasse Advanced Sidebar Menu Pro!"
27
 
28
  #. translators: {<a>}{</a>} links to https://matlipe.com/product/advanced-sidebar-menu-pro/
29
+ #: advanced-sidebar-menu.php:113
30
  #, php-format
31
  msgctxt "{<a>}{</a>}"
32
+ msgid ""
33
+ "Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for these features and so much "
34
+ "more!"
35
+ msgstr ""
36
+ "Upgrade auf %1$sAdvanced Sidebar Menu Pro%2$s für diese Funktionen und "
37
+ "vieles mehr!"
38
+
39
+ #: advanced-sidebar-menu.php:116
40
+ msgid "Priority support, including access to Members Only Support Area."
41
+ msgstr ""
42
+ "Prioritätsunterstützung, einschließlich Zugang zum Supportbereich für "
43
+ "Mitglieder."
44
+
45
+ #: advanced-sidebar-menu.php:117
46
+ msgid "Accordion menu support."
47
+ msgstr "Akkordeon-Menü-Unterstützung."
48
+
49
+ #: advanced-sidebar-menu.php:118
50
+ msgid ""
51
+ "Click and drag menu styling including bullets, colors, sizes, block styles, "
52
+ "borders, and border colors."
53
+ msgstr ""
54
+ "Klicken und ziehen Sie das Menü-Styling, einschließlich Aufzählungszeichen, "
55
+ "Farben, Größen, Blockstile, Rahmen und Rahmenfarben."
56
+
57
+ #: advanced-sidebar-menu.php:123
58
+ msgid "Ability to customize each page's link text."
59
+ msgstr "Möglichkeit, den Linktext jeder Seite anzupassen."
60
+
61
+ #: advanced-sidebar-menu.php:124
62
+ msgid "Ability to exclude a page from all menus using a simple checkbox."
63
+ msgstr ""
64
+ "Möglichkeit, eine Seite mit einem einfachen Kontrollkästchen aus allen Menüs "
65
+ "auszuschließen."
66
+
67
+ #: advanced-sidebar-menu.php:125
68
+ msgid ""
69
+ "Number of levels of pages to show when always displayed child pages is not "
70
+ "checked."
71
+ msgstr ""
72
+ "Anzahl der Seitenebenen, die angezeigt werden sollen, wenn immer "
73
+ "untergeordnete Seiten angezeigt werden, ist nicht aktiviert."
74
+
75
+ #: advanced-sidebar-menu.php:126
76
+ msgid "Ability to select and display custom post types."
77
+ msgstr ""
78
+ "Möglichkeit, benutzerdefinierte Beitragstypen auszuwählen und anzuzeigen."
79
+
80
+ #: advanced-sidebar-menu.php:127
81
+ msgid ""
82
+ "Option to display the current page’s parents and grandparents only, as well "
83
+ "as siblings options."
84
  msgstr ""
85
+ "Option, um nur die Eltern und Großeltern der aktuellen Seite sowie "
86
+ "Geschwisteroptionen anzuzeigen."
87
+
88
+ #: advanced-sidebar-menu.php:132
89
+ msgid "Link ordering for the category widget."
90
+ msgstr "Verknüpfungsreihenfolge für das Kategorie-Widget."
91
+
92
+ #: advanced-sidebar-menu.php:133
93
+ msgid "Ability to select and display custom taxonomies."
94
+ msgstr "Möglichkeit, benutzerdefinierte Taxonomien auszuwählen und anzuzeigen."
95
 
96
+ #: advanced-sidebar-menu.php:137
97
+ msgid "Ability to display the widgets everywhere the sidebar display."
98
+ msgstr "Möglichkeit, die Widgets überall in der Seitenleiste anzuzeigen."
99
+
100
+ #: src/Widget/Category.php:44
101
  msgid ""
102
  "Creates a menu of all the categories using the child/parent relationship"
103
  msgstr ""
104
  "Erstellt ein Menü aller Kategorien, die unter Zugrundelegung der Eltern-Kind-"
105
  "Beziehung"
106
 
107
+ #: src/Widget/Category.php:48
108
  msgid "Advanced Sidebar Categories Menu"
109
  msgstr "Advanced Sidebar Kategorien-Menü"
110
 
111
+ #: src/Widget/Category.php:72
 
 
 
 
112
  msgid "Display highest level parent category"
113
  msgstr "Anzeige der übergeordneten Kategorie der höchsten Ebene"
114
 
115
+ #: src/Widget/Category.php:78
116
  msgid "Display menu when there is only the parent category"
117
  msgstr "Menü \"Anzeige\" wird nur die übergeordnete Kategorie"
118
 
119
+ #: src/Widget/Category.php:84
120
  msgid "Always display child categories"
121
  msgstr "Immer untergeordnete Kategorien anzeigen"
122
 
123
+ #: src/Widget/Category.php:90 src/Widget/Page.php:95
124
  msgid "Levels to display"
125
  msgstr "Anzuzeigenden Ebenen"
126
 
127
+ #: src/Widget/Category.php:121 src/Widget/Page.php:126
128
+ msgid "Use this plugin's default styling"
129
+ msgstr "Verwenden Sie das Standardstyling dieses Plugins"
130
+
131
+ #: src/Widget/Category.php:138
132
  msgid "Display categories on single posts"
133
  msgstr "Kategorien auf einzelne Beiträge anzeigen"
134
 
135
+ #: src/Widget/Category.php:144
136
  msgid "Display each single post's category"
137
  msgstr "Zeigen Sie die einzelnen Kategorien der einzelnen Posts an"
138
 
139
+ #: src/Widget/Category.php:150
140
  msgid "In a new widget"
141
  msgstr "In einem neuen Widget"
142
 
143
+ #: src/Widget/Category.php:153
144
  msgid "In another list in the same widget"
145
  msgstr "In einer anderen Liste im selben Widget"
146
 
147
+ #: src/Widget/Category.php:171
148
  msgid "Categories to exclude (ids), comma separated"
149
  msgstr "Kategorien ausschließen (Ids), durch Kommata getrennt"
150
 
151
+ #: src/Widget/Category.php:204 src/Widget/Page.php:203
152
+ msgid "Title"
153
+ msgstr "Titel"
154
+
155
+ #: src/Widget/Page.php:40
156
  msgid "Creates a menu of all the pages using the child/parent relationship"
157
  msgstr ""
158
  "Erstellt ein Menü mit allen Seiten, die die Child / Parent-Beziehung "
159
  "verwenden"
160
 
161
+ #: src/Widget/Page.php:46
162
  msgid "Advanced Sidebar Pages Menu"
163
  msgstr "Advanced Sidebar Seitenmenü"
164
 
165
+ #: src/Widget/Page.php:71
166
  msgid "Display highest level parent page"
167
  msgstr "Zeigt die oberste Seite der obersten Ebene an"
168
 
169
+ #: src/Widget/Page.php:79
170
  msgid "Display menu when there is only the parent page"
171
  msgstr "Menü \"Anzeige\" wird nur die übergeordnete Seite"
172
 
173
+ #: src/Widget/Page.php:86
174
  msgid "Always display child pages"
175
  msgstr "Immer untergeordnete Seiten anzeigen"
176
 
177
+ #: src/Widget/Page.php:141
178
  msgid "Order by"
179
  msgstr "Sortieren nach"
180
 
181
+ #: src/Widget/Page.php:171
182
  msgid "Pages to exclude (ids), comma separated"
183
  msgstr "Auszuschließende Seiten (IDs), durch Kommas getrennt"
184
 
206
  msgid "https://matlipe.com"
207
  msgstr "https://matlipe.com"
208
 
 
 
 
 
 
 
 
 
 
 
 
209
  #~ msgid "Use this Plugin's Styling"
210
  #~ msgstr "Benutze das Plugin Styling"
languages/advanced-sidebar-menu.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Advanced Sidebar Menu\n"
6
- "POT-Creation-Date: 2018-04-25 16:28-0400\n"
7
  "PO-Revision-Date: 2018-01-09 07:14-0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -21,91 +21,147 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: advanced-sidebar-menu.php:105
25
  msgid "Checkout Advanced Sidebar Menu Pro!"
26
  msgstr ""
27
 
28
  #. translators: {<a>}{</a>} links to https://matlipe.com/product/advanced-sidebar-menu-pro/
29
- #: advanced-sidebar-menu.php:110
30
  #, php-format
31
  msgctxt "{<a>}{</a>}"
32
- msgid "Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for these features:"
 
 
 
 
 
 
 
 
 
 
33
  msgstr ""
34
 
35
- #: src/Widget/Category.php:42
36
  msgid ""
37
- "Creates a menu of all the categories using the child/parent relationship"
 
38
  msgstr ""
39
 
40
- #: src/Widget/Category.php:46
41
- msgid "Advanced Sidebar Categories Menu"
42
  msgstr ""
43
 
44
- #: src/Widget/Category.php:64 src/Widget/Page.php:67
45
- msgid "Title"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  msgstr ""
47
 
48
- #: src/Widget/Category.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgid "Display highest level parent category"
50
  msgstr ""
51
 
52
- #: src/Widget/Category.php:87
53
  msgid "Display menu when there is only the parent category"
54
  msgstr ""
55
 
56
- #: src/Widget/Category.php:94
57
  msgid "Always display child categories"
58
  msgstr ""
59
 
60
- #: src/Widget/Category.php:102 src/Widget/Page.php:106
61
  msgid "Levels to display"
62
  msgstr ""
63
 
64
- #: src/Widget/Category.php:128
 
 
 
 
65
  msgid "Display categories on single posts"
66
  msgstr ""
67
 
68
- #: src/Widget/Category.php:135
69
  msgid "Display each single post's category"
70
  msgstr ""
71
 
72
- #: src/Widget/Category.php:141
73
  msgid "In a new widget"
74
  msgstr ""
75
 
76
- #: src/Widget/Category.php:144
77
  msgid "In another list in the same widget"
78
  msgstr ""
79
 
80
- #: src/Widget/Category.php:157
81
  msgid "Categories to exclude (ids), comma separated"
82
  msgstr ""
83
 
84
- #: src/Widget/Page.php:38
 
 
 
 
85
  msgid "Creates a menu of all the pages using the child/parent relationship"
86
  msgstr ""
87
 
88
- #: src/Widget/Page.php:44
89
  msgid "Advanced Sidebar Pages Menu"
90
  msgstr ""
91
 
92
- #: src/Widget/Page.php:82
93
  msgid "Display highest level parent page"
94
  msgstr ""
95
 
96
- #: src/Widget/Page.php:90
97
  msgid "Display menu when there is only the parent page"
98
  msgstr ""
99
 
100
- #: src/Widget/Page.php:97
101
  msgid "Always display child pages"
102
  msgstr ""
103
 
104
- #: src/Widget/Page.php:130
105
  msgid "Order by"
106
  msgstr ""
107
 
108
- #: src/Widget/Page.php:154
109
  msgid "Pages to exclude (ids), comma separated"
110
  msgstr ""
111
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Advanced Sidebar Menu\n"
6
+ "POT-Creation-Date: 2018-05-03 12:37-0400\n"
7
  "PO-Revision-Date: 2018-01-09 07:14-0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: advanced-sidebar-menu.php:108
25
  msgid "Checkout Advanced Sidebar Menu Pro!"
26
  msgstr ""
27
 
28
  #. translators: {<a>}{</a>} links to https://matlipe.com/product/advanced-sidebar-menu-pro/
29
+ #: advanced-sidebar-menu.php:113
30
  #, php-format
31
  msgctxt "{<a>}{</a>}"
32
+ msgid ""
33
+ "Upgrade to %1$sAdvanced Sidebar Menu Pro%2$s for these features and so "
34
+ "much more!"
35
+ msgstr ""
36
+
37
+ #: advanced-sidebar-menu.php:116
38
+ msgid "Priority support, including access to Members Only Support Area."
39
+ msgstr ""
40
+
41
+ #: advanced-sidebar-menu.php:117
42
+ msgid "Accordion menu support."
43
  msgstr ""
44
 
45
+ #: advanced-sidebar-menu.php:118
46
  msgid ""
47
+ "Click and drag menu styling including bullets, colors, sizes, block "
48
+ "styles, borders, and border colors."
49
  msgstr ""
50
 
51
+ #: advanced-sidebar-menu.php:123
52
+ msgid "Ability to customize each page's link text."
53
  msgstr ""
54
 
55
+ #: advanced-sidebar-menu.php:124
56
+ msgid "Ability to exclude a page from all menus using a simple checkbox."
57
+ msgstr ""
58
+
59
+ #: advanced-sidebar-menu.php:125
60
+ msgid ""
61
+ "Number of levels of pages to show when always displayed child pages is not "
62
+ "checked."
63
+ msgstr ""
64
+
65
+ #: advanced-sidebar-menu.php:126
66
+ msgid "Ability to select and display custom post types."
67
+ msgstr ""
68
+
69
+ #: advanced-sidebar-menu.php:127
70
+ msgid ""
71
+ "Option to display the current page’s parents and grandparents only, as "
72
+ "well as siblings options."
73
+ msgstr ""
74
+
75
+ #: advanced-sidebar-menu.php:132
76
+ msgid "Link ordering for the category widget."
77
  msgstr ""
78
 
79
+ #: advanced-sidebar-menu.php:133
80
+ msgid "Ability to select and display custom taxonomies."
81
+ msgstr ""
82
+
83
+ #: advanced-sidebar-menu.php:137
84
+ msgid "Ability to display the widgets everywhere the sidebar display."
85
+ msgstr ""
86
+
87
+ #: src/Widget/Category.php:44
88
+ msgid ""
89
+ "Creates a menu of all the categories using the child/parent relationship"
90
+ msgstr ""
91
+
92
+ #: src/Widget/Category.php:48
93
+ msgid "Advanced Sidebar Categories Menu"
94
+ msgstr ""
95
+
96
+ #: src/Widget/Category.php:72
97
  msgid "Display highest level parent category"
98
  msgstr ""
99
 
100
+ #: src/Widget/Category.php:78
101
  msgid "Display menu when there is only the parent category"
102
  msgstr ""
103
 
104
+ #: src/Widget/Category.php:84
105
  msgid "Always display child categories"
106
  msgstr ""
107
 
108
+ #: src/Widget/Category.php:90 src/Widget/Page.php:95
109
  msgid "Levels to display"
110
  msgstr ""
111
 
112
+ #: src/Widget/Category.php:121 src/Widget/Page.php:126
113
+ msgid "Use this plugin's default styling"
114
+ msgstr ""
115
+
116
+ #: src/Widget/Category.php:138
117
  msgid "Display categories on single posts"
118
  msgstr ""
119
 
120
+ #: src/Widget/Category.php:144
121
  msgid "Display each single post's category"
122
  msgstr ""
123
 
124
+ #: src/Widget/Category.php:150
125
  msgid "In a new widget"
126
  msgstr ""
127
 
128
+ #: src/Widget/Category.php:153
129
  msgid "In another list in the same widget"
130
  msgstr ""
131
 
132
+ #: src/Widget/Category.php:171
133
  msgid "Categories to exclude (ids), comma separated"
134
  msgstr ""
135
 
136
+ #: src/Widget/Category.php:204 src/Widget/Page.php:203
137
+ msgid "Title"
138
+ msgstr ""
139
+
140
+ #: src/Widget/Page.php:40
141
  msgid "Creates a menu of all the pages using the child/parent relationship"
142
  msgstr ""
143
 
144
+ #: src/Widget/Page.php:46
145
  msgid "Advanced Sidebar Pages Menu"
146
  msgstr ""
147
 
148
+ #: src/Widget/Page.php:71
149
  msgid "Display highest level parent page"
150
  msgstr ""
151
 
152
+ #: src/Widget/Page.php:79
153
  msgid "Display menu when there is only the parent page"
154
  msgstr ""
155
 
156
+ #: src/Widget/Page.php:86
157
  msgid "Always display child pages"
158
  msgstr ""
159
 
160
+ #: src/Widget/Page.php:141
161
  msgid "Order by"
162
  msgstr ""
163
 
164
+ #: src/Widget/Page.php:171
165
  msgid "Pages to exclude (ids), comma separated"
166
  msgstr ""
167
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: menus, sidebar menu, hierarchy, category menu, pages menu
6
  Requires at least: 4.6.0
7
  Tested up to: 4.9.6
8
  Requires PHP: 5.2.4
9
- Stable tag: 7.2.2
10
 
11
  == Description ==
12
 
6
  Requires at least: 4.6.0
7
  Tested up to: 4.9.6
8
  Requires PHP: 5.2.4
9
+ Stable tag: 7.2.3
10
 
11
  == Description ==
12
 
src/Widget/Category.php CHANGED
@@ -234,6 +234,7 @@ class Advanced_Sidebar_Menu_Widget_Category extends Advanced_Sidebar_Menu__Widge
234
  do_action( 'advanced_sidebar_menu_after_widget_form', $instance, $this );
235
  ?>
236
  </div>
 
237
 
238
  <?php
239
  do_action( 'advanced-sidebar-menu/widget/category/after-form', $instance, $this );
234
  do_action( 'advanced_sidebar_menu_after_widget_form', $instance, $this );
235
  ?>
236
  </div>
237
+ <div class="advanced-sidebar-menu-full-width"><!-- clear --></div>
238
 
239
  <?php
240
  do_action( 'advanced-sidebar-menu/widget/category/after-form', $instance, $this );
src/Widget/Page.php CHANGED
@@ -231,6 +231,7 @@ class Advanced_Sidebar_Menu_Widget_Page extends Advanced_Sidebar_Menu__Widget__W
231
  do_action( 'advanced-sidebar-menu/widget/page/right-column', $instance, $this );
232
  ?>
233
  </div>
 
234
  <?php
235
  do_action( 'advanced-sidebar-menu/widget/page/after-form', $instance, $this );
236
  }
231
  do_action( 'advanced-sidebar-menu/widget/page/right-column', $instance, $this );
232
  ?>
233
  </div>
234
+ <div class="advanced-sidebar-menu-full-width"><!-- clear --></div>
235
  <?php
236
  do_action( 'advanced-sidebar-menu/widget/page/after-form', $instance, $this );
237
  }