Nested Pages - Version 1.3.14

Version Description

  • Minor bug fix modal not appearing when last item in the trash (provided by ClementRoy)
  • Option added to hide the "Sync Menu" checkbox (visit Settings > Nested Pages > General to hide)
  • Updated Danish Translation (Thomas Blomberg)
  • Confirmed compatibility with WordPress v4.2
Download this release

Release Info

Developer kylephillips
Plugin Icon 128x128 Nested Pages
Version 1.3.14
Comparing to
See all releases

Code changes from version 1.3.13 to 1.3.14

app/Activation/Activate.php CHANGED
@@ -68,4 +68,5 @@ class Activate {
68
  }
69
 
70
 
 
71
  }
68
  }
69
 
70
 
71
+
72
  }
app/Config/SettingsRepository.php CHANGED
@@ -13,4 +13,23 @@ class SettingsRepository {
13
  return false;
14
  }
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  }
13
  return false;
14
  }
15
 
16
+ /**
17
+ * Is the Menu Sync Option Visible
18
+ */
19
+ public function hideMenuSync()
20
+ {
21
+ $option = get_option('nestedpages_ui', false);
22
+ if ( $option && isset($option['hide_menu_sync']) && $option['hide_menu_sync'] == 'true' ) return true;
23
+ return false;
24
+ }
25
+
26
+ /**
27
+ * Is menu sync enabled?
28
+ */
29
+ public function menuSyncEnabled()
30
+ {
31
+ $option = get_option('nestedpages_menusync');
32
+ return ( $option == 'sync' ) ? true : false;
33
+ }
34
+
35
  }
app/Entities/Listing/Listing.php CHANGED
@@ -333,7 +333,7 @@ class Listing {
333
  */
334
  private function parentTrashed($pages)
335
  {
336
- if ( !isset($pages->query['post_parent']) ) return false;
337
  if ( get_post_status($pages->query['post_parent']) == 'trash' ) return true;
338
  return false;
339
 
333
  */
334
  private function parentTrashed($pages)
335
  {
336
+ if ( !isset($pages->query['post_parent']) || $pages->query['post_parent'] == 0 ) return false;
337
  if ( get_post_status($pages->query['post_parent']) == 'trash' ) return true;
338
  return false;
339
 
app/NestedPages.php CHANGED
@@ -12,7 +12,7 @@ class NestedPages {
12
  $np_env = 'live';
13
 
14
  global $np_version;
15
- $np_version = '1.3.13';
16
 
17
  if ( is_admin() ) $app = new NestedPages\Bootstrap;
18
  }
12
  $np_env = 'live';
13
 
14
  global $np_version;
15
+ $np_version = '1.3.14';
16
 
17
  if ( is_admin() ) $app = new NestedPages\Bootstrap;
18
  }
app/Views/listing.php CHANGED
@@ -29,7 +29,7 @@
29
  <a href="#" class="np-btn nestedpages-toggleall" data-toggle="closed"><?php _e('Expand All', 'nestedpages'); ?></a>
30
  <?php endif; ?>
31
 
32
- <?php if ( $this->user->canSortPages() && $this->post_type->name == 'page' && !$this->isSearch() ) : ?>
33
  <div class="np-sync-menu-cont" <?php if ( $this->confirmation->getMessage() ) echo 'style="margin-top:2px;"';?>>
34
  <label>
35
  <input type="checkbox" name="np_sync_menu" class="np-sync-menu" value="sync" <?php if ( get_option('nestedpages_menusync') == 'sync' ) echo 'checked'; ?>/> <?php _e('Sync Menu', 'nestedpages'); ?>
29
  <a href="#" class="np-btn nestedpages-toggleall" data-toggle="closed"><?php _e('Expand All', 'nestedpages'); ?></a>
30
  <?php endif; ?>
31
 
32
+ <?php if ( $this->user->canSortPages() && $this->post_type->name == 'page' && !$this->isSearch() && !$this->settings->hideMenuSync() ) : ?>
33
  <div class="np-sync-menu-cont" <?php if ( $this->confirmation->getMessage() ) echo 'style="margin-top:2px;"';?>>
34
  <label>
35
  <input type="checkbox" name="np_sync_menu" class="np-sync-menu" value="sync" <?php if ( get_option('nestedpages_menusync') == 'sync' ) echo 'checked'; ?>/> <?php _e('Sync Menu', 'nestedpages'); ?>
app/Views/settings/settings-general.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
  $allowsorting = get_option('nestedpages_allowsorting', array());
3
  if ( $allowsorting == "" ) $allowsorting = array();
 
4
  settings_fields( 'nestedpages-general' );
5
  ?>
6
  <tr valign="top">
@@ -23,6 +24,15 @@ settings_fields( 'nestedpages-general' );
23
  </label>
24
  </td>
25
  </tr>
 
 
 
 
 
 
 
 
 
26
  <tr valign="top">
27
  <th scope="row"><?php _e('Allow Page Sorting', 'nestedpages'); ?></th>
28
  <td>
1
  <?php
2
  $allowsorting = get_option('nestedpages_allowsorting', array());
3
  if ( $allowsorting == "" ) $allowsorting = array();
4
+ $sync_status = ( $this->settings->menuSyncEnabled() ) ? __('Currently Enabled', 'nestedpages') : __('Currently Disabled', 'nestedpages');
5
  settings_fields( 'nestedpages-general' );
6
  ?>
7
  <tr valign="top">
24
  </label>
25
  </td>
26
  </tr>
27
+ <tr valign="top">
28
+ <th scope="row"><?php _e('Menu Sync', 'nestedpages'); ?></th>
29
+ <td>
30
+ <label>
31
+ <input type="checkbox" name="nestedpages_ui[hide_menu_sync]" value="true" <?php if ( $this->settings->hideMenuSync() ) echo 'checked'; ?> />
32
+ <?php _e('Hide Menu Sync Checkbox', 'nestedpages'); ?> (<?php echo $sync_status; ?>)
33
+ </label>
34
+ </td>
35
+ </tr>
36
  <tr valign="top">
37
  <th scope="row"><?php _e('Allow Page Sorting', 'nestedpages'); ?></th>
38
  <td>
languages/nestedpages-da_DK.mo CHANGED
Binary file
languages/nestedpages-da_DK.po CHANGED
@@ -2,478 +2,607 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Nested Pages v1.1.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-12-05 11:01:10+0000\n"
7
- "Last-Translator: support <support@infoland.dk>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: Danish\n"
15
- "X-Poedit-Country: DENMARK\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
 
18
  "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
- #: includes/class-nestedpages.php:93
24
- #@ default
25
- msgid "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
- #: includes/class-np-confirmation.php:58
29
- #@ nestedpages
 
 
 
 
 
30
  msgid "pages moved to the Trash"
31
  msgstr "sider flyttet til papirkurven"
32
 
33
- #: includes/class-np-confirmation.php:60
34
- #@ nestedpages
35
- msgid "page moved to the Trash"
36
- msgstr "side flyttet til papirkurven"
37
 
38
- #: includes/class-np-confirmation.php:65
39
- #@ default
40
  msgid "Undo"
41
- msgstr ""
42
 
43
- #: includes/class-np-confirmation.php:80
44
- #@ nestedpages
45
  msgid "pages"
46
  msgstr "sider"
47
 
48
- #: includes/class-np-confirmation.php:80
49
- #@ nestedpages
50
  msgid "page"
51
  msgstr "side"
52
 
53
- #: includes/class-np-confirmation.php:81
54
- #@ nestedpages
55
  msgid "restored from trash"
56
  msgstr "gendannet fra papirkurven"
57
 
58
- #: includes/class-np-confirmation.php:90
59
- #@ nestedpages
60
- msgid "Link successfully deleted."
61
- msgstr "Link slettet."
62
-
63
- #: includes/class-np-dependencies.php:77
64
- #: views/pages.php:18
65
- #@ nestedpages
66
- msgid "Expand Pages"
67
- msgstr "Fold ud"
68
 
69
- #: includes/class-np-dependencies.php:78
70
- #@ nestedpages
71
- msgid "Collapse Pages"
72
- msgstr "Fold sammen"
73
 
74
- #: includes/class-np-dependencies.php:79
75
- #: views/pages.php:34
76
- #@ nestedpages
77
- msgid "Show Hidden"
78
- msgstr "Vis skjulte"
79
 
80
- #: includes/class-np-dependencies.php:80
81
- #@ nestedpages
82
- msgid "Hide Hidden"
83
- msgstr "Skjul skjulte"
84
-
85
- #: includes/class-np-dependencies.php:81
86
- #: views/link-form.php:14
87
- #: views/pages.php:9
88
- #: views/pages.php:10
89
- #@ nestedpages
90
- #@ default
91
- msgid "Add Link"
92
- msgstr "Tilføj link"
93
 
94
- #: includes/class-np-dependencies.php:82
95
- #@ nestedpages
96
- msgid "Add Child Link"
97
- msgstr "Tilføj link under"
98
 
99
- #: includes/class-np-handler-base.php:64
100
- #@ nestedpages
101
  msgid "Incorrect Form Field"
102
  msgstr "Ukorrekt formular felt"
103
 
104
- #: includes/class-np-handler-base.php:94
105
- #@ nestedpages
106
  msgid "There was an error updating the page."
107
  msgstr "Der skete en fejl under opdateringen af siden."
108
 
109
- #: includes/class-np-handler-newredirect.php:40
110
- #: includes/class-np-handler-quickedit-redirect.php:36
111
- #@ nestedpages
 
 
 
 
112
  msgid "Link successfully updated"
113
  msgstr "Link opdateret."
114
 
115
- #: includes/class-np-handler-quickedit.php:38
116
- #@ default
117
  msgid "Post successfully updated"
118
- msgstr ""
119
 
120
- #: includes/class-np-handler-sort.php:36
121
- #@ nestedpages
122
  msgid "Page order successfully updated."
123
  msgstr "Side rækkefølge opdateret."
124
 
125
- #: includes/class-np-handler-sort.php:38
126
- #@ nestedpages
127
  msgid "There was an error updating the page order."
128
  msgstr "Der skete en fejl under opdateringen af side rækkefølgen."
129
 
130
- #: includes/class-np-handler-syncmenu.php:32
131
- #@ default
132
  msgid "Menu sync enabled."
133
- msgstr ""
134
 
135
- #: includes/class-np-handler-syncmenu.php:35
136
- #@ default
137
  msgid "Menu sync disabled."
138
- msgstr ""
139
-
140
- #: includes/class-np-newpage.php:43
141
- #@ nestedpages
142
- msgid "Adding child page under:"
143
- msgstr "Tilføjer side under:"
144
 
145
- #: includes/class-np-pagelisting.php:89
146
- #@ nestedpages
147
- msgid "All Pages"
148
- msgstr "Alle sider"
149
-
150
- #: includes/class-np-pagelisting.php:90
151
- #@ nestedpages
152
- msgid "Add New"
153
- msgstr "Tilføj ny"
154
-
155
- #: includes/class-np-pagelisting.php:91
156
- #@ nestedpages
157
- msgid "Default Pages"
158
- msgstr "Standard visning"
159
-
160
- #: includes/class-np-posttypes.php:21
161
- #@ nestedpages
162
- msgid "Redirects"
163
- msgstr "Viderestillinger"
164
-
165
- #: includes/class-np-posttypes.php:22
166
- #@ nestedpages
167
- msgid "Redirect"
168
- msgstr "Viderestilling"
169
-
170
- #. translators: plugin header field 'Name'
171
- #: includes/class-np-redirects.php:65
172
- #: includes/class-np-settings.php:30
173
- #: nestedpages.php:0
174
- #@ nestedpages
175
- msgid "Nested Pages"
176
- msgstr "Sider"
177
-
178
- #: includes/class-np-repository-post.php:58
179
- #: views/quickedit.php:20
180
- #@ nestedpages
181
- #@ default
182
- msgid "Title"
183
- msgstr "Titel"
184
-
185
- #: includes/class-np-repository-post.php:298
186
- #@ nestedpages
187
- msgid "Label"
188
- msgstr "Label"
189
-
190
- #: includes/class-np-settings.php:29
191
- #: views/settings.php:2
192
- #@ nestedpages
193
- msgid "Nested Pages Settings"
194
- msgstr "Nested Pages Indstillinger"
195
-
196
- #: includes/class-np-validation.php:49
197
- #: includes/class-np-validation.php:64
198
- #@ nestedpages
199
  msgid "Please provide a valid date."
200
  msgstr "Vælg venligst en gyldig dato."
201
 
202
- #: includes/class-np-validation.php:76
203
- #@ nestedpages
204
  msgid "Please provide a menu title."
205
  msgstr "Angiv venligst en menu titel."
206
 
207
- #: includes/class-np-validation.php:79
208
- #@ nestedpages
209
  msgid "Please provide a valid URL."
210
  msgstr "Indtast venligst en gyldig URL."
211
 
212
- #: includes/class-np-validation.php:90
213
- #@ nestedpages
214
  msgid "Please provide a "
215
  msgstr "Angiv venligst"
216
 
217
- #. translators: plugin header field 'PluginURI'
218
- #: nestedpages.php:0
219
- #@ nestedpages
220
- msgid "http://nestedpages.com"
221
- msgstr "http://nestedpages.com"
222
-
223
- #. translators: plugin header field 'Description'
224
- #: nestedpages.php:0
225
- #@ nestedpages
226
- msgid "Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while maintaining quick edit functionality."
227
- msgstr "Giver dig en intuitiv \\\"drag and drop\\\" oversigt til håndtering af Sider, mens du stadig beholder lynrediger funktionen."
228
-
229
- #. translators: plugin header field 'Author'
230
- #: nestedpages.php:0
231
- #@ nestedpages
232
- msgid "Kyle Phillips"
233
- msgstr "Kyle Phillips"
234
-
235
- #. translators: plugin header field 'AuthorURI'
236
- #: nestedpages.php:0
237
- #@ nestedpages
238
- msgid "https://github.com/kylephillips"
239
- msgstr "https://github.com/kylephillips"
240
-
241
- #. translators: plugin header field 'Version'
242
- #: nestedpages.php:0
243
- #@ nestedpages
244
- msgid "1.1.6"
245
- msgstr ""
246
 
247
- #: views/link-form.php:31
248
- #: views/quickedit-redirect.php:17
249
- #: views/quickedit.php:148
250
- #@ default
 
 
 
 
 
 
 
251
  msgid "Navigation Label"
252
- msgstr ""
253
 
254
- #: views/link-form.php:36
255
- #: views/quickedit-redirect.php:22
256
- #@ nestedpages
257
- #@ default
258
  msgid "URL"
259
  msgstr "URL"
260
 
261
- #: views/link-form.php:41
262
- #: views/quickedit-redirect.php:27
263
- #: views/quickedit.php:58
264
- #@ default
265
  msgid "Status"
266
- msgstr ""
267
 
268
- #: views/link-form.php:44
269
- #: views/pages.php:33
270
- #: views/quickedit-redirect.php:30
271
- #: views/quickedit.php:61
272
- #@ default
273
  msgid "Published"
274
- msgstr ""
275
 
276
- #: views/link-form.php:45
277
- #: views/quickedit-redirect.php:31
278
- #: views/quickedit.php:62
279
- #@ default
280
  msgid "Scheduled"
281
- msgstr ""
282
 
283
- #: views/link-form.php:47
284
- #: views/quickedit-redirect.php:33
285
- #: views/quickedit.php:64
286
- #@ default
287
  msgid "Pending Review"
288
- msgstr ""
289
 
290
- #: views/link-form.php:48
291
- #: views/quickedit-redirect.php:34
292
- #: views/quickedit.php:65
293
- #@ default
294
  msgid "Draft"
295
- msgstr ""
296
 
297
- #: views/link-form.php:59
298
- #: views/quickedit-redirect.php:54
299
- #: views/quickedit.php:164
300
- #@ nestedpages
301
  msgid "Hide in Nav Menu"
302
  msgstr "Skjul i Menuer"
303
 
304
- #: views/link-form.php:64
305
- #: views/quickedit-redirect.php:60
306
- #: views/quickedit.php:105
307
- #@ nestedpages
308
  msgid "Hide in Nested Pages"
309
  msgstr "Skjul i denne oversigt"
310
 
311
- #: views/link-form.php:69
312
- #: views/quickedit-redirect.php:66
313
- #: views/quickedit.php:170
314
- #@ default
315
  msgid "Open link in a new window/tab"
316
- msgstr ""
317
 
318
- #: views/link-form.php:80
319
- #@ default
320
  msgid "Close"
321
- msgstr ""
322
 
323
- #: views/link-form.php:83
324
- #@ nestedpages
325
  msgid "Save Link"
326
  msgstr "Gem link"
327
 
328
- #: views/pages.php:24
329
- #@ nestedpages
330
- msgid "Sync Menu"
331
- msgstr "Synkronisere til Menuer"
332
 
333
- #: views/pages.php:32
334
- #@ default
335
- msgid "All"
336
- msgstr ""
337
 
338
- #: views/pages.php:37
339
- #@ default
340
- msgid "Trash"
341
- msgstr ""
342
 
343
- #: views/pages.php:40
344
- #@ default
345
- msgid "Default"
346
- msgstr ""
347
 
348
- #: views/quickedit-redirect.php:8
349
- #@ nestedpages
 
 
 
 
 
 
 
 
 
 
350
  msgid "Link"
351
  msgstr "Link"
352
 
353
- #: views/quickedit-redirect.php:44
354
- #: views/quickedit.php:152
355
- #@ default
356
  msgid "Title Attribute"
357
- msgstr ""
358
 
359
- #: views/quickedit-redirect.php:48
360
- #: views/quickedit.php:156
361
- #@ default
362
  msgid "CSS Classes"
363
- msgstr ""
364
 
365
- #: views/quickedit-redirect.php:81
366
- #: views/quickedit.php:184
367
- #@ default
368
- msgid "Cancel"
369
- msgstr ""
370
-
371
- #: views/quickedit-redirect.php:84
372
- #: views/quickedit.php:187
373
- #@ default
374
  msgid "Update"
375
- msgstr ""
376
-
377
- #: views/quickedit.php:11
378
- #: views/row-redirect.php:53
379
- #: views/row.php:94
380
- #@ default
381
- msgid "Quick Edit"
382
- msgstr ""
383
 
384
- #: views/quickedit.php:24
385
- #@ default
386
  msgid "Slug"
387
- msgstr ""
388
 
389
- #: views/quickedit.php:28
390
- #@ default
391
  msgid "Date"
392
- msgstr ""
393
 
394
- #: views/quickedit.php:49
395
- #@ default
396
- msgid "Author"
397
- msgstr ""
398
-
399
- #: views/quickedit.php:73
400
- #@ default
401
- msgid "Template"
402
- msgstr ""
403
-
404
- #: views/quickedit.php:75
405
- #@ default
406
- msgid "Default Template"
407
- msgstr ""
408
-
409
- #: views/quickedit.php:82
410
- #@ default
411
  msgid "Password"
412
- msgstr ""
413
 
414
- #: views/quickedit.php:85
415
- #@ default
416
  msgid "&ndash;OR&ndash;"
417
- msgstr ""
418
 
419
- #: views/quickedit.php:88
420
- #@ default
421
  msgid "Private"
422
- msgstr ""
423
 
424
- #: views/quickedit.php:97
425
- #@ default
426
  msgid "Allow Comments"
427
- msgstr ""
428
 
429
- #: views/quickedit.php:113
430
- #@ nestedpages
431
  msgid "Menu Options"
432
  msgstr "Menuer indstilinger"
433
 
434
- #: views/quickedit.php:115
435
- #@ nestedpages
436
  msgid "Taxonomies"
437
  msgstr "Taxonomier"
438
 
439
- #: views/row-redirect.php:30
440
- #: views/row.php:33
441
- #@ nestedpages
 
 
 
 
442
  msgid "Hidden"
443
  msgstr "Skjult"
444
 
445
- #: views/row.php:41
446
- #@ nestedpages
447
  msgid "currently editing"
448
  msgstr "redigere siden"
449
 
450
- #: views/row.php:43
451
- #@ default
452
  msgid "Edit"
453
- msgstr ""
454
 
455
- #: views/row.php:66
456
- #@ nestedpages
457
- msgid "Add Child"
458
- msgstr "Tilføj underside"
459
 
460
- #: views/row.php:98
461
- #@ default
462
- msgid "View"
463
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
 
465
- #: views/settings.php:8
466
- #@ nestedpages
 
 
 
 
 
 
 
 
467
  msgid "Nested Pages Version"
468
  msgstr "Plugin version"
469
 
470
- #: views/settings.php:12
471
- #@ nestedpages
472
  msgid "Menu Name"
473
  msgstr "Menunavn"
474
 
475
- #: views/settings.php:15
476
- #@ nestedpages
477
- msgid "Important: Once the menu name has changed, theme files should be updated to reference the new name."
478
- msgstr "Vigtig: Når menunavnet ændret, skal dette ajourføres i temaet, temaet bruger det nye navn."
 
 
 
 
 
 
 
 
479
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Nested Pages v1.1.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-26 14:28-0500\n"
6
+ "PO-Revision-Date: 2015-04-23 14:53+0100\n"
7
+ "Last-Translator: Thomas Blomberg Hansen <thomas@blomberg.it>\n"
8
  "Language-Team: \n"
9
+ "Language: da_DK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.7.1\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
  "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
 
21
 
22
+ #: app/Activation/Dependencies.php:106 app/Views/listing.php:30
23
+ msgid "Expand All"
24
+ msgstr "Udvid alle"
25
+
26
+ #: app/Activation/Dependencies.php:107
27
+ msgid "Collapse All"
28
+ msgstr "Skjul alle"
29
+
30
+ # @ nestedpages
31
+ #: app/Activation/Dependencies.php:108 app/Views/partials/tool-list.php:14
32
+ msgid "Show Hidden"
33
+ msgstr "Vis skjulte"
34
+
35
+ # @ nestedpages
36
+ #: app/Activation/Dependencies.php:109
37
+ msgid "Hide Hidden"
38
+ msgstr "Skjul skjulte"
39
+
40
+ # @ nestedpages
41
+ # @ default
42
+ #: app/Activation/Dependencies.php:110 app/Views/forms/link-form.php:14
43
+ #: app/Views/listing.php:17 app/Views/listing.php:18
44
+ msgid "Add Link"
45
+ msgstr "Tilføj link"
46
+
47
+ # @ nestedpages
48
+ #: app/Activation/Dependencies.php:111
49
+ msgid "Add Child Link"
50
+ msgstr "Tilføj link under"
51
+
52
+ # @ nestedpages
53
+ # @ default
54
+ #: app/Activation/Dependencies.php:112
55
+ #: app/Entities/Post/PostUpdateRepository.php:59
56
+ #: app/Views/forms/new-child.php:19 app/Views/forms/new-child.php:21
57
+ #: app/Views/forms/quickedit-post.php:20 app/Views/partials/tool-list.php:61
58
+ msgid "Title"
59
+ msgstr "Titel"
60
+
61
+ # @ default
62
+ #: app/Activation/Dependencies.php:113 app/Views/forms/quickedit-post.php:11
63
+ #: app/Views/partials/row-link.php:53 app/Views/partials/row.php:113
64
+ msgid "Quick Edit"
65
+ msgstr "Lynrediger"
66
+
67
+ #: app/Activation/Dependencies.php:114
68
+ msgid "Page Title"
69
+ msgstr "Sidetitel"
70
+
71
+ # @ default
72
+ #: app/Activation/Dependencies.php:115 app/Views/partials/row.php:117
73
+ msgid "View"
74
+ msgstr "Vis"
75
+
76
+ # @ nestedpages
77
+ #: app/Activation/Dependencies.php:116 app/Views/forms/new-child.php:7
78
+ #: app/Views/partials/row.php:85
79
+ msgid "Add Child"
80
+ msgstr "Tilføj underside"
81
+
82
+ #: app/Activation/Dependencies.php:117
83
+ msgid "Add Child Page"
84
+ msgstr "Tilføj undersider"
85
+
86
+ #: app/Activation/Dependencies.php:118
87
+ msgid "Add Child Pages"
88
+ msgstr "Tilføj undersider"
89
+
90
+ #: app/Activation/Dependencies.php:119 app/Views/forms/new-child.php:93
91
+ msgid "Add"
92
+ msgstr "Tilføj"
93
+
94
+ #: app/Activation/Dependencies.php:120
95
+ msgid "Add Page"
96
+ msgstr "Tilføj Side"
97
+
98
+ #: app/Activation/Dependencies.php:121
99
+ msgid "Add Pages"
100
+ msgstr "Tilføj Sider"
101
+
102
+ #: app/Activation/Dependencies.php:122 app/Views/listing.php:11
103
+ #: app/Views/listing.php:12
104
+ msgid "Add Multiple"
105
+ msgstr "Tilføj flere"
106
+
107
+ #: app/Activation/Dependencies.php:123
108
+ msgid ""
109
+ "Are you sure you would like to empty the trash? This action is not "
110
+ "reversable."
111
  msgstr ""
112
+ "Er du sikker på, at du vil tømme papirkurven? Dette kan ikke fortrydes."
113
+
114
+ # @ default
115
+ #: app/Bootstrap.php:59
116
+ msgid "Settings"
117
+ msgstr "Indstillinger"
118
+
119
+ # @ nestedpages
120
+ #: app/Config/Settings.php:45 app/Views/settings/settings.php:2
121
+ msgid "Nested Pages Settings"
122
+ msgstr "Nested Pages Indstillinger"
123
+
124
+ # @ nestedpages
125
+ #: app/Config/Settings.php:46
126
+ msgid "Nested Pages"
127
+ msgstr "Nested Pages"
128
+
129
+ # @ default
130
+ #: app/Entities/AdminMenu/AdminSubmenu.php:73
131
+ #: app/Views/partials/tool-list.php:29
132
+ msgid "Default"
133
+ msgstr "Standard"
134
 
135
+ # @ nestedpages
136
+ #: app/Entities/Confirmation/LinkDeletedConfirmation.php:9
137
+ msgid "Link successfully deleted."
138
+ msgstr "Link slettet."
139
+
140
+ # @ nestedpages
141
+ #: app/Entities/Confirmation/TrashConfirmation.php:12
142
  msgid "pages moved to the Trash"
143
  msgstr "sider flyttet til papirkurven"
144
 
145
+ #: app/Entities/Confirmation/TrashConfirmation.php:14
146
+ msgid "moved to the Trash"
147
+ msgstr "flyttet til Papirkurven"
 
148
 
149
+ # @ default
150
+ #: app/Entities/Confirmation/TrashConfirmation.php:19
151
  msgid "Undo"
152
+ msgstr "Fortryd"
153
 
154
+ # @ nestedpages
155
+ #: app/Entities/Confirmation/TrashRestoredConfirmation.php:10
156
  msgid "pages"
157
  msgstr "sider"
158
 
159
+ # @ nestedpages
160
+ #: app/Entities/Confirmation/TrashRestoredConfirmation.php:10
161
  msgid "page"
162
  msgstr "side"
163
 
164
+ # @ nestedpages
165
+ #: app/Entities/Confirmation/TrashRestoredConfirmation.php:11
166
  msgid "restored from trash"
167
  msgstr "gendannet fra papirkurven"
168
 
169
+ # @ nestedpages
170
+ #: app/Entities/Post/PostUpdateRepository.php:301
171
+ msgid "Label"
172
+ msgstr "Label"
 
 
 
 
 
 
173
 
174
+ #: app/Entities/PostType/PostTypeRepository.php:172
175
+ msgid "Nested View"
176
+ msgstr "Hierarkisk visning"
 
177
 
178
+ #: app/Entities/PostType/PostTypeRepository.php:172
179
+ #, fuzzy
180
+ msgid "Sort View"
181
+ msgstr "Sorterings visning"
 
182
 
183
+ # @ nestedpages
184
+ #: app/Entities/PostType/RegisterPostTypes.php:20
185
+ msgid "Redirects"
186
+ msgstr "Viderestillinger"
 
 
 
 
 
 
 
 
 
187
 
188
+ # @ nestedpages
189
+ #: app/Entities/PostType/RegisterPostTypes.php:21
190
+ msgid "Redirect"
191
+ msgstr "Viderestilling"
192
 
193
+ # @ nestedpages
194
+ #: app/Form/Handlers/BaseHandler.php:79
195
  msgid "Incorrect Form Field"
196
  msgstr "Ukorrekt formular felt"
197
 
198
+ # @ nestedpages
199
+ #: app/Form/Handlers/BaseHandler.php:111
200
  msgid "There was an error updating the page."
201
  msgstr "Der skete en fejl under opdateringen af siden."
202
 
203
+ #: app/Form/Handlers/EmptyTrashHandler.php:16
204
+ msgid "Trash successfully emptied."
205
+ msgstr "Papirkurven blev tømt."
206
+
207
+ # @ nestedpages
208
+ #: app/Form/Handlers/NewLinkHandler.php:33
209
+ #: app/Form/Handlers/QuickEditLinkHandler.php:28
210
  msgid "Link successfully updated"
211
  msgstr "Link opdateret."
212
 
213
+ # @ default
214
+ #: app/Form/Handlers/QuickEditHandler.php:31
215
  msgid "Post successfully updated"
216
+ msgstr "Indlægget er opdateret"
217
 
218
+ # @ nestedpages
219
+ #: app/Form/Handlers/SortHandler.php:28
220
  msgid "Page order successfully updated."
221
  msgstr "Side rækkefølge opdateret."
222
 
223
+ # @ nestedpages
224
+ #: app/Form/Handlers/SortHandler.php:30
225
  msgid "There was an error updating the page order."
226
  msgstr "Der skete en fejl under opdateringen af side rækkefølgen."
227
 
228
+ # @ default
229
+ #: app/Form/Handlers/SyncMenuHandler.php:25
230
  msgid "Menu sync enabled."
231
+ msgstr "Menu synkronisering aktiveret."
232
 
233
+ # @ default
234
+ #: app/Form/Handlers/SyncMenuHandler.php:28
235
  msgid "Menu sync disabled."
236
+ msgstr "Menu synkronisering deaktiveret."
 
 
 
 
 
237
 
238
+ # @ nestedpages
239
+ #: app/Form/Validation/Validation.php:48
240
+ #: app/Form/Validation/Validation.php:63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "Please provide a valid date."
242
  msgstr "Vælg venligst en gyldig dato."
243
 
244
+ # @ nestedpages
245
+ #: app/Form/Validation/Validation.php:75
246
  msgid "Please provide a menu title."
247
  msgstr "Angiv venligst en menu titel."
248
 
249
+ # @ nestedpages
250
+ #: app/Form/Validation/Validation.php:78
251
  msgid "Please provide a valid URL."
252
  msgstr "Indtast venligst en gyldig URL."
253
 
254
+ # @ nestedpages
255
+ #: app/Form/Validation/Validation.php:89
256
  msgid "Please provide a "
257
  msgstr "Angiv venligst"
258
 
259
+ #: app/Form/Validation/Validation.php:103
260
+ msgid "A valid parent page was not provided."
261
+ msgstr "En gyldig forældre side blev ikke angivet."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
 
263
+ #: app/Form/Validation/Validation.php:110
264
+ msgid "Please provide at least one page title."
265
+ msgstr "Angiv venligst én sidetitel."
266
+
267
+ #: app/Form/Validation/Validation.php:118
268
+ msgid "Page titles cannot be blank."
269
+ msgstr "Sidetitler kan ikke være blanke."
270
+
271
+ # @ default
272
+ #: app/Views/forms/link-form.php:31 app/Views/forms/quickedit-link.php:17
273
+ #: app/Views/forms/quickedit-post.php:153
274
  msgid "Navigation Label"
275
+ msgstr "Navigation label"
276
 
277
+ # @ nestedpages
278
+ # @ default
279
+ #: app/Views/forms/link-form.php:36 app/Views/forms/quickedit-link.php:22
 
280
  msgid "URL"
281
  msgstr "URL"
282
 
283
+ # @ default
284
+ #: app/Views/forms/link-form.php:41 app/Views/forms/new-child.php:35
285
+ #: app/Views/forms/quickedit-link.php:27
286
+ #: app/Views/forms/quickedit-post.php:58
287
  msgid "Status"
288
+ msgstr "Status"
289
 
290
+ # @ default
291
+ #: app/Views/forms/link-form.php:44 app/Views/forms/new-child.php:38
292
+ #: app/Views/forms/quickedit-link.php:30
293
+ #: app/Views/forms/quickedit-post.php:61 app/Views/partials/tool-list.php:10
 
294
  msgid "Published"
295
+ msgstr "Udgivet"
296
 
297
+ # @ default
298
+ #: app/Views/forms/link-form.php:45 app/Views/forms/quickedit-link.php:31
299
+ #: app/Views/forms/quickedit-post.php:62
 
300
  msgid "Scheduled"
301
+ msgstr "Planlagt"
302
 
303
+ # @ default
304
+ #: app/Views/forms/link-form.php:47 app/Views/forms/quickedit-link.php:33
305
+ #: app/Views/forms/quickedit-post.php:64
 
306
  msgid "Pending Review"
307
+ msgstr "Afventer godkendelse"
308
 
309
+ # @ default
310
+ #: app/Views/forms/link-form.php:48 app/Views/forms/new-child.php:40
311
+ #: app/Views/forms/quickedit-link.php:34
312
+ #: app/Views/forms/quickedit-post.php:65
313
  msgid "Draft"
314
+ msgstr "Kladde"
315
 
316
+ # @ nestedpages
317
+ #: app/Views/forms/link-form.php:59 app/Views/forms/quickedit-link.php:54
318
+ #: app/Views/forms/quickedit-post.php:169
 
319
  msgid "Hide in Nav Menu"
320
  msgstr "Skjul i Menuer"
321
 
322
+ # @ nestedpages
323
+ #: app/Views/forms/link-form.php:64 app/Views/forms/quickedit-link.php:60
324
+ #: app/Views/forms/quickedit-post.php:108
 
325
  msgid "Hide in Nested Pages"
326
  msgstr "Skjul i denne oversigt"
327
 
328
+ # @ default
329
+ #: app/Views/forms/link-form.php:69 app/Views/forms/quickedit-link.php:66
330
+ #: app/Views/forms/quickedit-post.php:175
 
331
  msgid "Open link in a new window/tab"
332
+ msgstr "Åben link i nyt vindue/faneblad"
333
 
334
+ # @ default
335
+ #: app/Views/forms/link-form.php:80
336
  msgid "Close"
337
+ msgstr "Luk"
338
 
339
+ # @ nestedpages
340
+ #: app/Views/forms/link-form.php:83
341
  msgid "Save Link"
342
  msgstr "Gem link"
343
 
344
+ #: app/Views/forms/new-child.php:28
345
+ msgid "+"
346
+ msgstr "+"
 
347
 
348
+ # @ default
349
+ #: app/Views/forms/new-child.php:61 app/Views/forms/quickedit-post.php:49
350
+ msgid "Author"
351
+ msgstr "Forfatter"
352
 
353
+ # @ default
354
+ #: app/Views/forms/new-child.php:71 app/Views/forms/quickedit-post.php:75
355
+ msgid "Template"
356
+ msgstr "Skabelon"
357
 
358
+ # @ default
359
+ #: app/Views/forms/new-child.php:73 app/Views/forms/quickedit-post.php:77
360
+ msgid "Default Template"
361
+ msgstr "Standard skabelon"
362
 
363
+ # @ default
364
+ #: app/Views/forms/new-child.php:90 app/Views/forms/quickedit-link.php:81
365
+ #: app/Views/forms/quickedit-post.php:189
366
+ msgid "Cancel"
367
+ msgstr "Annullere"
368
+
369
+ #: app/Views/forms/new-child.php:96
370
+ msgid "Add & Edit"
371
+ msgstr "Tilføj & Rediger"
372
+
373
+ # @ nestedpages
374
+ #: app/Views/forms/quickedit-link.php:8
375
  msgid "Link"
376
  msgstr "Link"
377
 
378
+ # @ default
379
+ #: app/Views/forms/quickedit-link.php:44
380
+ #: app/Views/forms/quickedit-post.php:157
381
  msgid "Title Attribute"
382
+ msgstr "Titel attribut"
383
 
384
+ # @ default
385
+ #: app/Views/forms/quickedit-link.php:48
386
+ #: app/Views/forms/quickedit-post.php:161
387
  msgid "CSS Classes"
388
+ msgstr "CSS Klasser"
389
 
390
+ # @ default
391
+ #: app/Views/forms/quickedit-link.php:84
392
+ #: app/Views/forms/quickedit-post.php:192
 
 
 
 
 
 
393
  msgid "Update"
394
+ msgstr "Opdater"
 
 
 
 
 
 
 
395
 
396
+ # @ default
397
+ #: app/Views/forms/quickedit-post.php:24
398
  msgid "Slug"
399
+ msgstr "Korttitel"
400
 
401
+ # @ default
402
+ #: app/Views/forms/quickedit-post.php:28 app/Views/partials/tool-list.php:60
403
  msgid "Date"
404
+ msgstr "Dato"
405
 
406
+ # @ default
407
+ #: app/Views/forms/quickedit-post.php:85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408
  msgid "Password"
409
+ msgstr "Kodeord"
410
 
411
+ # @ default
412
+ #: app/Views/forms/quickedit-post.php:88
413
  msgid "&ndash;OR&ndash;"
414
+ msgstr "&ndash;ELLER&ndash;"
415
 
416
+ # @ default
417
+ #: app/Views/forms/quickedit-post.php:91
418
  msgid "Private"
419
+ msgstr "Privat"
420
 
421
+ # @ default
422
+ #: app/Views/forms/quickedit-post.php:100
423
  msgid "Allow Comments"
424
+ msgstr "Tillad kommentarer"
425
 
426
+ # @ nestedpages
427
+ #: app/Views/forms/quickedit-post.php:117
428
  msgid "Menu Options"
429
  msgstr "Menuer indstilinger"
430
 
431
+ # @ nestedpages
432
+ #: app/Views/forms/quickedit-post.php:121
433
  msgid "Taxonomies"
434
  msgstr "Taxonomier"
435
 
436
+ # @ nestedpages
437
+ #: app/Views/listing.php:37
438
+ msgid "Sync Menu"
439
+ msgstr "Synkronisere til Menuer"
440
+
441
+ # @ nestedpages
442
+ #: app/Views/partials/row-link.php:30 app/Views/partials/row.php:39
443
  msgid "Hidden"
444
  msgstr "Skjult"
445
 
446
+ # @ nestedpages
447
+ #: app/Views/partials/row.php:47
448
  msgid "currently editing"
449
  msgstr "redigere siden"
450
 
451
+ # @ default
452
+ #: app/Views/partials/row.php:49
453
  msgid "Edit"
454
+ msgstr "Rediger"
455
 
456
+ # @ default
457
+ #: app/Views/partials/tool-list.php:6
458
+ msgid "All"
459
+ msgstr "Alle"
460
 
461
+ # @ default
462
+ #: app/Views/partials/tool-list.php:20
463
+ msgid "Trash"
464
+ msgstr "Papirkurv"
465
+
466
+ #: app/Views/partials/tool-list.php:21
467
+ msgid "Empty"
468
+ msgstr "Tom"
469
+
470
+ #: app/Views/partials/tool-list.php:44
471
+ msgid "All Authors"
472
+ msgstr "Alle forfattere"
473
+
474
+ #: app/Views/partials/tool-list.php:59
475
+ msgid "Menu Order"
476
+ msgstr "Menu rækkefølge"
477
+
478
+ #: app/Views/partials/tool-list.php:63
479
+ msgid "Order By"
480
+ msgstr "Sorter efter"
481
 
482
+ #: app/Views/partials/tool-list.php:77
483
+ msgid "Ascending"
484
+ msgstr "Stigende"
485
+
486
+ #: app/Views/partials/tool-list.php:78
487
+ msgid "Decending"
488
+ msgstr "Faldende"
489
+
490
+ # @ nestedpages
491
+ #: app/Views/settings/settings-general.php:7
492
  msgid "Nested Pages Version"
493
  msgstr "Plugin version"
494
 
495
+ # @ nestedpages
496
+ #: app/Views/settings/settings-general.php:11
497
  msgid "Menu Name"
498
  msgstr "Menunavn"
499
 
500
+ # @ nestedpages
501
+ #: app/Views/settings/settings-general.php:14
502
+ msgid ""
503
+ "Important: Once the menu name has changed, theme files should be updated to "
504
+ "reference the new name."
505
+ msgstr ""
506
+ "Vigtig: Når menunavnet ændret, skal dette ajourføres i temaet, så temaet "
507
+ "bruger det nye navn."
508
+
509
+ #: app/Views/settings/settings-general.php:18
510
+ msgid "Allow Page Sorting"
511
+ msgstr "Tillad Side sortering"
512
 
513
+ #: app/Views/settings/settings-general.php:28
514
+ msgid "Admins always have sorting ability."
515
+ msgstr "Admins har altid tilladelse til Side sortering"
516
+
517
+ #: app/Views/settings/settings-posttypes.php:7
518
+ msgid "Enable Nested Pages for:"
519
+ msgstr "Aktiver Nested Pages på:"
520
+
521
+ #: app/Views/settings/settings-posttypes.php:14
522
+ msgid "Post Type"
523
+ msgstr "Indlægstype"
524
+
525
+ #: app/Views/settings/settings-posttypes.php:15
526
+ msgid "Hierarchical"
527
+ msgstr "Hierarkisk"
528
+
529
+ #: app/Views/settings/settings-posttypes.php:16
530
+ msgid "Enabled"
531
+ msgstr "Aktiveret"
532
+
533
+ #: app/Views/settings/settings-posttypes.php:17
534
+ msgid "Replace Default Menu"
535
+ msgstr "Erstat standard menu"
536
+
537
+ #: app/Views/settings/settings-posttypes.php:18
538
+ msgid "Hide Default Link"
539
+ msgstr "Skjul Standard link"
540
+
541
+ #: app/Views/settings/settings-posttypes.php:45
542
+ msgid "Note: Nesting features not enabled for non-hierarchical post types."
543
+ msgstr ""
544
+ "Note: Indlægstyper, der ikke tillader hierarki, vil have færre muligheder."
545
+
546
+ #: app/Views/settings/settings-posttypes.php:48
547
+ msgid ""
548
+ "If default menu is not replaced, an additional submenu item will be added "
549
+ "for \"Nested/Sort View\""
550
+ msgstr ""
551
+ "Hvis Sider menupunktet ikke erstattes, vil der blive dannet et "
552
+ "undermenupunkt til denne visning"
553
+
554
+ #: app/Views/settings/settings.php:6
555
+ msgid "General"
556
+ msgstr "Generelt"
557
+
558
+ #: app/Views/settings/settings.php:10
559
+ msgid "Post Types"
560
+ msgstr "Indlægstyper"
561
+
562
+ # @ nestedpages
563
+ #~ msgid "page moved to the Trash"
564
+ #~ msgstr "side flyttet til papirkurven"
565
+
566
+ # @ nestedpages
567
+ #~ msgid "Expand Pages"
568
+ #~ msgstr "Fold ud"
569
+
570
+ # @ nestedpages
571
+ #~ msgid "Collapse Pages"
572
+ #~ msgstr "Fold sammen"
573
+
574
+ # @ nestedpages
575
+ #~ msgid "Adding child page under:"
576
+ #~ msgstr "Tilføjer side under:"
577
+
578
+ # @ nestedpages
579
+ #~ msgid "All Pages"
580
+ #~ msgstr "Alle sider"
581
+
582
+ # @ nestedpages
583
+ #~ msgid "Add New"
584
+ #~ msgstr "Tilføj ny"
585
+
586
+ # @ nestedpages
587
+ #~ msgid "Default Pages"
588
+ #~ msgstr "Standard visning"
589
+
590
+ # @ nestedpages
591
+ #~ msgid "http://nestedpages.com"
592
+ #~ msgstr "http://nestedpages.com"
593
+
594
+ # @ nestedpages
595
+ #~ msgid ""
596
+ #~ "Provides an intuitive drag and drop interface for managing pages in the "
597
+ #~ "Wordpress admin, while maintaining quick edit functionality."
598
+ #~ msgstr ""
599
+ #~ "Giver dig en intuitiv \\\"drag and drop\\\" oversigt til håndtering af "
600
+ #~ "Sider, mens du stadig beholder lynrediger funktionen."
601
+
602
+ # @ nestedpages
603
+ #~ msgid "Kyle Phillips"
604
+ #~ msgstr "Kyle Phillips"
605
+
606
+ # @ nestedpages
607
+ #~ msgid "https://github.com/kylephillips"
608
+ #~ msgstr "https://github.com/kylephillips"
nestedpages.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Nested Pages
4
  Plugin URI: http://nestedpages.com
5
  Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while maintaining quick edit functionality.
6
- Version: 1.3.13
7
  Author: Kyle Phillips
8
  Author URI: https://github.com/kylephillips
9
  Text Domain: nestedpages
3
  Plugin Name: Nested Pages
4
  Plugin URI: http://nestedpages.com
5
  Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while maintaining quick edit functionality.
6
+ Version: 1.3.14
7
  Author: Kyle Phillips
8
  Author URI: https://github.com/kylephillips
9
  Text Domain: nestedpages
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: kylephillips
3
  Donate link: http://nestedpages.com/
4
  Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
5
  Requires at least: 3.8
6
- Tested up to: 4.1
7
- Stable tag: 1.3.12
8
 
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -89,6 +89,12 @@ If you have WordPress SEO by Yoast installed, your page score indicators are sho
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
 
92
  = 1.3.13 =
93
  * Bug fix preventing some custom post types from being enabled
94
  * Bug fix - editors with sort capabilities menu sync enabled
3
  Donate link: http://nestedpages.com/
4
  Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
5
  Requires at least: 3.8
6
+ Tested up to: 4.2
7
+ Stable tag: 1.3.13
8
 
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
89
 
90
  == Changelog ==
91
 
92
+ = 1.3.14 =
93
+ * Minor bug fix – modal not appearing when last item in the trash (provided by ClementRoy)
94
+ * Option added to hide the "Sync Menu" checkbox (visit Settings > Nested Pages > General to hide)
95
+ * Updated Danish Translation (Thomas Blomberg)
96
+ * Confirmed compatibility with WordPress v4.2
97
+
98
  = 1.3.13 =
99
  * Bug fix preventing some custom post types from being enabled
100
  * Bug fix - editors with sort capabilities menu sync enabled