Version Description
- Updated German translation
- Fixed PHP notice messages
- Updated swedish translation
- Changed the way scripts and styles load, so it won't add scripts and styles to pages it shouldn't add scripts and styles to
Download this release
Release Info
Developer | eskapism |
Plugin | CMS Tree Page View |
Version | 0.8.7 |
Comparing to | |
See all releases |
Code changes from version 0.8.6 to 0.8.7
- functions.php +15 -9
- index.php +3 -2
- languages/cms-tree-page-view-de_DE.mo +0 -0
- languages/cms-tree-page-view-de_DE.po +179 -71
- languages/cms-tree-page-view-sv_SE.mo +0 -0
- readme.txt +8 -2
functions.php
CHANGED
@@ -34,18 +34,24 @@ function cms_tpv_admin_head() {
|
|
34 |
<?php
|
35 |
}
|
36 |
|
37 |
-
function
|
38 |
-
|
39 |
-
// @todo: only load these when we do show a tree, ie. on the dashboard or showing the tree for a post type
|
40 |
-
// see: http://devpress.com/blog/how-to-load-javascript-in-the-wordpress-admin/
|
41 |
-
wp_enqueue_style( "cms_tpv_styles", CMS_TPV_URL . "styles/styles.css", false, CMS_TPV_VERSION );
|
42 |
-
wp_enqueue_style( "jquery-alerts", CMS_TPV_URL . "styles/jquery.alerts.css", false, CMS_TPV_VERSION );
|
43 |
wp_enqueue_script( "jquery-cookie", CMS_TPV_URL . "scripts/jquery.biscuit.js", array("jquery")); // renamed from cookie to fix problems with mod_security
|
44 |
wp_enqueue_script( "jquery-jstree", CMS_TPV_URL . "scripts/jquery.jstree.js", false, CMS_TPV_VERSION);
|
45 |
wp_enqueue_script( "jquery-alerts", CMS_TPV_URL . "scripts/jquery.alerts.js", false, CMS_TPV_VERSION);
|
46 |
wp_enqueue_script( "jquery-hoverintent", CMS_TPV_URL . "scripts/jquery.hoverIntent.minified.js", false, CMS_TPV_VERSION);
|
47 |
#wp_enqueue_script( "jquery-ui-dialog", CMS_TPV_URL . "scripts/jquery.ui.dialog.min.js", false, CMS_TPV_VERSION);
|
48 |
-
wp_enqueue_script( "cms_tree_page_view", CMS_TPV_URL . "scripts/cms_tree_page_view.js", false, CMS_TPV_VERSION);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
// DEBUG
|
51 |
//wp_enqueue_script( "jquery-hotkeys" );
|
@@ -612,7 +618,7 @@ function cms_tpv_print_childs($pageID, $view = "all", $arrOpenChilds = null, $po
|
|
612 |
$arrChildPages = cms_tpv_get_pages("parent={$onePage->ID}&view=$view&post_type=$post_type");
|
613 |
}
|
614 |
|
615 |
-
if ($arrChildPages) {
|
616 |
$hasChildren = true;
|
617 |
}
|
618 |
// if no children, output no state
|
@@ -718,7 +724,7 @@ function cms_tpv_print_childs($pageID, $view = "all", $arrOpenChilds = null, $po
|
|
718 |
"post_type": "<?php echo $onePage->post_type ?>",
|
719 |
"post_status": "<?php echo $onePage->post_status ?>",
|
720 |
"rel": "<?php echo $rel ?>",
|
721 |
-
"childCount": <?php echo sizeof($arrChildPages) ?>,
|
722 |
"permalink": "<?php echo htmlspecialchars_decode(get_permalink($onePage->ID)) ?>",
|
723 |
"editlink": "<?php echo htmlspecialchars_decode($editLink) ?>",
|
724 |
"modified_time": "<?php echo $post_modified_time ?>",
|
34 |
<?php
|
35 |
}
|
36 |
|
37 |
+
function cms_admin_enqueue_scripts() {
|
|
|
|
|
|
|
|
|
|
|
38 |
wp_enqueue_script( "jquery-cookie", CMS_TPV_URL . "scripts/jquery.biscuit.js", array("jquery")); // renamed from cookie to fix problems with mod_security
|
39 |
wp_enqueue_script( "jquery-jstree", CMS_TPV_URL . "scripts/jquery.jstree.js", false, CMS_TPV_VERSION);
|
40 |
wp_enqueue_script( "jquery-alerts", CMS_TPV_URL . "scripts/jquery.alerts.js", false, CMS_TPV_VERSION);
|
41 |
wp_enqueue_script( "jquery-hoverintent", CMS_TPV_URL . "scripts/jquery.hoverIntent.minified.js", false, CMS_TPV_VERSION);
|
42 |
#wp_enqueue_script( "jquery-ui-dialog", CMS_TPV_URL . "scripts/jquery.ui.dialog.min.js", false, CMS_TPV_VERSION);
|
43 |
+
wp_enqueue_script( "cms_tree_page_view", CMS_TPV_URL . "scripts/cms_tree_page_view.js", false, CMS_TPV_VERSION);
|
44 |
+
|
45 |
+
// @todo: only load these when we do show a tree, ie. on the dashboard or showing the tree for a post type
|
46 |
+
// see: http://devpress.com/blog/how-to-load-javascript-in-the-wordpress-admin/
|
47 |
+
// admin_enqueue_scripts-hook?
|
48 |
+
wp_enqueue_style( "cms_tpv_styles", CMS_TPV_URL . "styles/styles.css", false, CMS_TPV_VERSION );
|
49 |
+
wp_enqueue_style( "jquery-alerts", CMS_TPV_URL . "styles/jquery.alerts.css", false, CMS_TPV_VERSION );
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
function cms_tpv_admin_init() {
|
55 |
|
56 |
// DEBUG
|
57 |
//wp_enqueue_script( "jquery-hotkeys" );
|
618 |
$arrChildPages = cms_tpv_get_pages("parent={$onePage->ID}&view=$view&post_type=$post_type");
|
619 |
}
|
620 |
|
621 |
+
if ( isset( $arrChildPages ) ) {
|
622 |
$hasChildren = true;
|
623 |
}
|
624 |
// if no children, output no state
|
724 |
"post_type": "<?php echo $onePage->post_type ?>",
|
725 |
"post_status": "<?php echo $onePage->post_status ?>",
|
726 |
"rel": "<?php echo $rel ?>",
|
727 |
+
"childCount": <?php echo ( isset( $arrChildPages ) ) ? sizeof( $arrChildPages ) : 0 ; ?>,
|
728 |
"permalink": "<?php echo htmlspecialchars_decode(get_permalink($onePage->ID)) ?>",
|
729 |
"editlink": "<?php echo htmlspecialchars_decode($editLink) ?>",
|
730 |
"modified_time": "<?php echo $post_modified_time ?>",
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: CMS Tree Page View
|
4 |
Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
|
5 |
Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. Use the tree view to edit, view, add pages and search pages (very useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
|
6 |
-
Version: 0.8.
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
@@ -28,7 +28,7 @@ License: GPL2
|
|
28 |
#require("functions.php");
|
29 |
require(dirname(__FILE__)."/functions.php");
|
30 |
|
31 |
-
define( "CMS_TPV_VERSION", "0.8.
|
32 |
define( "CMS_TPV_NAME", "CMS Tree Page View");
|
33 |
|
34 |
// This gives the full URL including http. Apparently is does not work with https (gives http-link instead)
|
@@ -51,6 +51,7 @@ define( "CMS_TPV_URL", $plugin_dir_url);
|
|
51 |
|
52 |
// on admin init: add styles and scripts
|
53 |
add_action( 'admin_init', 'cms_tpv_admin_init' );
|
|
|
54 |
add_action( 'admin_init', 'cms_tpv_save_settings' );
|
55 |
|
56 |
// Hook onto dashboard and admin menu
|
3 |
Plugin Name: CMS Tree Page View
|
4 |
Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
|
5 |
Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. Use the tree view to edit, view, add pages and search pages (very useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
|
6 |
+
Version: 0.8.7
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
28 |
#require("functions.php");
|
29 |
require(dirname(__FILE__)."/functions.php");
|
30 |
|
31 |
+
define( "CMS_TPV_VERSION", "0.8.7");
|
32 |
define( "CMS_TPV_NAME", "CMS Tree Page View");
|
33 |
|
34 |
// This gives the full URL including http. Apparently is does not work with https (gives http-link instead)
|
51 |
|
52 |
// on admin init: add styles and scripts
|
53 |
add_action( 'admin_init', 'cms_tpv_admin_init' );
|
54 |
+
add_action( 'admin_enqueue_scripts', 'cms_admin_enqueue_scripts' );
|
55 |
add_action( 'admin_init', 'cms_tpv_save_settings' );
|
56 |
|
57 |
// Hook onto dashboard and admin menu
|
languages/cms-tree-page-view-de_DE.mo
CHANGED
Binary file
|
languages/cms-tree-page-view-de_DE.po
CHANGED
@@ -1,163 +1,271 @@
|
|
1 |
# Translation of the WordPress plugin by .
|
2 |
-
# Copyright (C) 2010
|
3 |
# This file is distributed under the same license as the package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
#
|
6 |
-
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version:
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n"
|
11 |
-
"POT-Creation-Date:
|
12 |
-
"PO-Revision-Date:
|
13 |
-
"Last-Translator:
|
14 |
"Language-Team: \n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
-
"Content-Type: text/plain; charset=
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
-
#: functions.php:
|
20 |
msgid "Enter title of new page"
|
21 |
-
msgstr "Titel der neuen Seite"
|
22 |
|
23 |
-
#: functions.php:
|
24 |
msgid "child pages"
|
25 |
-
msgstr "
|
26 |
|
27 |
-
#: functions.php:
|
|
|
28 |
msgid "Edit page"
|
29 |
-
msgstr "Seite bearbeiten"
|
30 |
|
31 |
-
#: functions.php:
|
|
|
32 |
msgid "View page"
|
33 |
-
msgstr "Seite anzeigen"
|
34 |
|
35 |
-
#: functions.php:
|
|
|
36 |
msgid "Edit"
|
37 |
msgstr "Bearbeiten"
|
38 |
|
39 |
-
#: functions.php:
|
|
|
40 |
msgid "View"
|
41 |
msgstr "Anzeigen"
|
42 |
|
43 |
-
#: functions.php:
|
44 |
msgid "Add page"
|
45 |
msgstr "Seite hinzufügen"
|
46 |
|
47 |
-
#: functions.php:
|
|
|
48 |
msgid "Add new page after"
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: functions.php:
|
52 |
msgid "after"
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#: functions.php:
|
56 |
msgid "inside"
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#: functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
msgid "Add new page inside"
|
61 |
-
msgstr "
|
62 |
|
63 |
-
#: functions.php:
|
64 |
msgid "draft"
|
65 |
msgstr "Entwurf"
|
66 |
|
67 |
-
#: functions.php:
|
68 |
msgid "future"
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: functions.php:
|
72 |
msgid "protected"
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: functions.php:
|
|
|
76 |
msgid "pending"
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: functions.php:
|
80 |
msgid "private"
|
81 |
-
msgstr "
|
82 |
|
83 |
-
#: functions.php:
|
|
|
|
|
|
|
|
|
84 |
msgid "Password protected page"
|
85 |
msgstr "Passwortgeschützte Seite"
|
86 |
|
87 |
-
#: functions.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "settings"
|
89 |
msgstr "Einstellungen"
|
90 |
|
91 |
-
#: functions.php:
|
92 |
-
msgid "
|
93 |
-
msgstr "
|
94 |
|
95 |
-
#: functions.php:
|
96 |
-
msgid "
|
97 |
-
msgstr "
|
98 |
|
99 |
-
#: functions.php:
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
|
103 |
-
#: functions.php:
|
104 |
msgid "Save Changes"
|
105 |
msgstr "Änderungen speichern"
|
106 |
|
107 |
-
#: functions.php:
|
108 |
-
msgid ""
|
109 |
-
"
|
110 |
-
"a new page</a>?"
|
111 |
-
msgstr "Keine Seiten gefunden. Jetzt eine neue Seite <a href='post-new.php?post_type=page'>anlegen</a>?"
|
112 |
|
113 |
-
#: functions.php:
|
114 |
msgid "All"
|
115 |
msgstr "Alle"
|
116 |
|
117 |
-
#: functions.php:
|
118 |
msgid "Public"
|
119 |
msgstr "Öffentlich"
|
120 |
|
121 |
-
#: functions.php:
|
|
|
|
|
|
|
|
|
122 |
msgid "Expand"
|
123 |
msgstr "Ausklappen"
|
124 |
|
125 |
-
#: functions.php:
|
126 |
msgid "Collapse"
|
127 |
msgstr "Einklappen"
|
128 |
|
129 |
-
#: functions.php:
|
130 |
msgid "Clear search"
|
131 |
msgstr "Suche leeren"
|
132 |
|
133 |
-
#: functions.php:
|
134 |
msgid "Search"
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#: functions.php:
|
138 |
msgid "Searching..."
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#: functions.php:
|
|
|
|
|
|
|
|
|
142 |
msgid "Loading..."
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#: functions.php:
|
146 |
msgid "Search: no pages found"
|
147 |
-
msgstr "Suche:
|
148 |
|
149 |
-
#: functions.php:
|
150 |
msgid "Loading tree"
|
151 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
|
153 |
-
#: functions.php:
|
154 |
msgid "<Untitled page>"
|
155 |
-
msgstr "<
|
156 |
|
157 |
-
#: functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Click to edit. Drag to move."
|
159 |
msgstr "Zum Editieren klicken. Zum Bewegen ziehen."
|
160 |
|
161 |
-
#: functions.php:
|
162 |
msgid "New page"
|
163 |
msgstr "Neue Seite"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Translation of the WordPress plugin by .
|
2 |
+
# Copyright (C) 2010
|
3 |
# This file is distributed under the same license as the package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
#
|
|
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
+
"Project-Id-Version: \n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n"
|
10 |
+
"POT-Creation-Date: 2011-03-06 14:33:36+00:00\n"
|
11 |
+
"PO-Revision-Date: 2012-02-26 16:01+0100\n"
|
12 |
+
"Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
|
13 |
"Language-Team: \n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
|
18 |
+
#: functions.php:53
|
19 |
msgid "Enter title of new page"
|
20 |
+
msgstr "Titel der neuen Seite eingeben:"
|
21 |
|
22 |
+
#: functions.php:54
|
23 |
msgid "child pages"
|
24 |
+
msgstr "untergeordnete Seiten"
|
25 |
|
26 |
+
#: functions.php:55
|
27 |
+
#: functions.php:381
|
28 |
msgid "Edit page"
|
29 |
+
msgstr "Diese Seite bearbeiten"
|
30 |
|
31 |
+
#: functions.php:56
|
32 |
+
#: functions.php:382
|
33 |
msgid "View page"
|
34 |
+
msgstr "Diese Seite anzeigen"
|
35 |
|
36 |
+
#: functions.php:57
|
37 |
+
#: functions.php:381
|
38 |
msgid "Edit"
|
39 |
msgstr "Bearbeiten"
|
40 |
|
41 |
+
#: functions.php:58
|
42 |
+
#: functions.php:382
|
43 |
msgid "View"
|
44 |
msgstr "Anzeigen"
|
45 |
|
46 |
+
#: functions.php:59
|
47 |
msgid "Add page"
|
48 |
msgstr "Seite hinzufügen"
|
49 |
|
50 |
+
#: functions.php:60
|
51 |
+
#: functions.php:386
|
52 |
msgid "Add new page after"
|
53 |
+
msgstr "Eine neue Seite nach dieser hinzufügen"
|
54 |
|
55 |
+
#: functions.php:61
|
56 |
msgid "after"
|
57 |
+
msgstr "Danach"
|
58 |
|
59 |
+
#: functions.php:62
|
60 |
msgid "inside"
|
61 |
+
msgstr "Innerhalb"
|
62 |
|
63 |
+
#: functions.php:63
|
64 |
+
msgid "Sorry, can't create a sub page to a page with status \"draft\"."
|
65 |
+
msgstr "Entschuldigung, es kann keine Unterseite zu einer Seite mit dem Status \"Entwurf\" hinzugefügt werden."
|
66 |
+
|
67 |
+
#: functions.php:64
|
68 |
+
msgid "Sorry, can't create a sub page to a page with status \"trash\"."
|
69 |
+
msgstr "Entschuldigung, es kann keine Unterseite zu einer Seite mit dem Status \"Papierkorb\" hinzugefügt werden."
|
70 |
+
|
71 |
+
#: functions.php:65
|
72 |
+
msgid "Sorry, can't create a page after a page with status \"trash\"."
|
73 |
+
msgstr "Entschuldigung, es kann keine Seite nach einer Seite mit dem Status \"Papierkorb\" hinzugefügt werden."
|
74 |
+
|
75 |
+
#: functions.php:66
|
76 |
+
#: functions.php:390
|
77 |
msgid "Add new page inside"
|
78 |
+
msgstr "Eine neue Seite innerhalb dieser hinzufügen"
|
79 |
|
80 |
+
#: functions.php:67
|
81 |
msgid "draft"
|
82 |
msgstr "Entwurf"
|
83 |
|
84 |
+
#: functions.php:68
|
85 |
msgid "future"
|
86 |
+
msgstr "Geplant"
|
87 |
|
88 |
+
#: functions.php:69
|
89 |
msgid "protected"
|
90 |
+
msgstr "Geschützt"
|
91 |
|
92 |
+
#: functions.php:70
|
93 |
+
#: functions.php:644
|
94 |
msgid "pending"
|
95 |
+
msgstr "Offen"
|
96 |
|
97 |
+
#: functions.php:71
|
98 |
msgid "private"
|
99 |
+
msgstr "Privat"
|
100 |
|
101 |
+
#: functions.php:72
|
102 |
+
msgid "trash"
|
103 |
+
msgstr "In den Papierkorb verschieben"
|
104 |
+
|
105 |
+
#: functions.php:73
|
106 |
msgid "Password protected page"
|
107 |
msgstr "Passwortgeschützte Seite"
|
108 |
|
109 |
+
#: functions.php:74
|
110 |
+
msgid "Adding page..."
|
111 |
+
msgstr "Seite wird hinzugefügt..."
|
112 |
+
|
113 |
+
#: functions.php:175
|
114 |
msgid "settings"
|
115 |
msgstr "Einstellungen"
|
116 |
|
117 |
+
#: functions.php:180
|
118 |
+
msgid "Select where to show a tree for pages and custom post types"
|
119 |
+
msgstr "Auswählen wo eine Baumansicht für Seiten und Artikel angezeigt werden soll:"
|
120 |
|
121 |
+
#: functions.php:204
|
122 |
+
msgid "On dashboard"
|
123 |
+
msgstr "Im Dashboard"
|
124 |
|
125 |
+
#: functions.php:208
|
126 |
+
msgid "In menu"
|
127 |
+
msgstr "Im Menü"
|
128 |
|
129 |
+
#: functions.php:219
|
130 |
msgid "Save Changes"
|
131 |
msgstr "Änderungen speichern"
|
132 |
|
133 |
+
#: functions.php:335
|
134 |
+
msgid "No posts found."
|
135 |
+
msgstr "Keine Artikel gefunden."
|
|
|
|
|
136 |
|
137 |
+
#: functions.php:341
|
138 |
msgid "All"
|
139 |
msgstr "Alle"
|
140 |
|
141 |
+
#: functions.php:342
|
142 |
msgid "Public"
|
143 |
msgstr "Öffentlich"
|
144 |
|
145 |
+
#: functions.php:343
|
146 |
+
msgid "Trash"
|
147 |
+
msgstr "Papierkorb"
|
148 |
+
|
149 |
+
#: functions.php:348
|
150 |
msgid "Expand"
|
151 |
msgstr "Ausklappen"
|
152 |
|
153 |
+
#: functions.php:349
|
154 |
msgid "Collapse"
|
155 |
msgstr "Einklappen"
|
156 |
|
157 |
+
#: functions.php:357
|
158 |
msgid "Clear search"
|
159 |
msgstr "Suche leeren"
|
160 |
|
161 |
+
#: functions.php:358
|
162 |
msgid "Search"
|
163 |
+
msgstr "Suchen"
|
164 |
|
165 |
+
#: functions.php:359
|
166 |
msgid "Searching..."
|
167 |
+
msgstr "Wird gesucht..."
|
168 |
|
169 |
+
#: functions.php:360
|
170 |
+
msgid "Nothing found."
|
171 |
+
msgstr "Keine Inhalte gefunden."
|
172 |
+
|
173 |
+
#: functions.php:366
|
174 |
msgid "Loading..."
|
175 |
+
msgstr "Laden..."
|
176 |
|
177 |
+
#: functions.php:371
|
178 |
msgid "Search: no pages found"
|
179 |
+
msgstr "Suche: Keine Seiten gefunden"
|
180 |
|
181 |
+
#: functions.php:374
|
182 |
msgid "Loading tree"
|
183 |
+
msgstr "Baum wird geladen"
|
184 |
+
|
185 |
+
#: functions.php:386
|
186 |
+
msgid "After"
|
187 |
+
msgstr "Danach"
|
188 |
+
|
189 |
+
#: functions.php:390
|
190 |
+
msgid "Inside"
|
191 |
+
msgstr "Innerhalb"
|
192 |
+
|
193 |
+
#: functions.php:394
|
194 |
+
msgid "Can not create page inside of a page with draft status"
|
195 |
+
msgstr "Es kann keine Seite innerhalb einer Seite mit Entwurfs-Status erstellt werden."
|
196 |
+
|
197 |
+
#: functions.php:397
|
198 |
+
msgid "Last modified"
|
199 |
+
msgstr "Zuletzt modifiziert"
|
200 |
+
|
201 |
+
#: functions.php:399
|
202 |
+
msgid "by"
|
203 |
+
msgstr "von"
|
204 |
+
|
205 |
+
#: functions.php:402
|
206 |
+
msgid "Page ID"
|
207 |
+
msgstr "Seiten-ID"
|
208 |
+
|
209 |
+
#: functions.php:609
|
210 |
+
msgid "Unknown user"
|
211 |
+
msgstr "Unbekannter Benutzer"
|
212 |
|
213 |
+
#: functions.php:614
|
214 |
msgid "<Untitled page>"
|
215 |
+
msgstr "<Unbenannte Seite>"
|
216 |
|
217 |
+
#: functions.php:634
|
218 |
+
msgid "Comments"
|
219 |
+
msgstr "Kommentare"
|
220 |
+
|
221 |
+
#: functions.php:641
|
222 |
+
msgid "%s pending"
|
223 |
+
msgstr "%s offen"
|
224 |
+
|
225 |
+
#: functions.php:651
|
226 |
+
msgctxt "comment count"
|
227 |
+
msgid "0"
|
228 |
+
msgstr "0"
|
229 |
+
|
230 |
+
#: functions.php:651
|
231 |
+
msgctxt "comment count"
|
232 |
+
msgid "1"
|
233 |
+
msgstr "1"
|
234 |
+
|
235 |
+
#: functions.php:651
|
236 |
+
msgctxt "comment count"
|
237 |
+
msgid "%"
|
238 |
+
msgstr "%"
|
239 |
+
|
240 |
+
#: functions.php:682
|
241 |
msgid "Click to edit. Drag to move."
|
242 |
msgstr "Zum Editieren klicken. Zum Bewegen ziehen."
|
243 |
|
244 |
+
#: functions.php:833
|
245 |
msgid "New page"
|
246 |
msgstr "Neue Seite"
|
247 |
+
|
248 |
+
#: functions.php:1015
|
249 |
+
msgid "Close"
|
250 |
+
msgstr "Schließen"
|
251 |
+
|
252 |
+
#: functions.php:1016
|
253 |
+
msgid "<strong>Thank you for using this plugin!</strong> If you need help please check out the <a href=\"http://eskapism.se/code-playground/cms-tree-page-view/?utm_source=wordpress&utm_medium=banner&utm_campaign=promobox\">plugin homepage</a> or the <a href=\"http://wordpress.org/tags/cms-tree-page-view?forum_id=10\">support forum</a>."
|
254 |
+
msgstr "<strong>Vielen Dank, dass Sie dieses Plugin verwenden!</strong> Falls Sie Hilfe benötigen schauen Sie auf der <a href=\"http://eskapism.se/code-playground/cms-tree-page-view/?utm_source=wordpress&utm_medium=banner&utm_campaign=promobox\">Plugin-Homepage [en]</a> oder im <a href=\"http://wordpress.org/tags/cms-tree-page-view?forum_id=10\">Support-Forum [en]</a> nach."
|
255 |
+
|
256 |
+
#: functions.php:1017
|
257 |
+
msgid "If you like this plugin, please <a href=\"http://eskapism.se/sida/donate/?utm_source=wordpress&utm_medium=banner&utm_campaign=promobox\">support my work by donating</a> - or at least say something nice about this plugin in a blog post or tweet."
|
258 |
+
msgstr "Falls Sie dieses Plugin nützlich finden, bitte <a href=\"http://eskapism.se/sida/donate/?utm_source=wordpress&utm_medium=banner&utm_campaign=promobox\">unterstützen Sie meine Arbeit mit einer Spende</a> - oder hinterlassen Sie eine freundliche Nachricht über das Plugin in einer Blog- oder Twitter-Nachricht."
|
259 |
+
|
260 |
+
#~ msgid "Show tree"
|
261 |
+
#~ msgstr "Zeige Baum"
|
262 |
+
|
263 |
+
#~ msgid "under the pages menu"
|
264 |
+
#~ msgstr "im Menüpunkt unter 'Seiten'"
|
265 |
+
|
266 |
+
#~ msgid ""
|
267 |
+
#~ "No pages found. Maybe you want to <a href='post-new.php?"
|
268 |
+
#~ "post_type=page'>add a new page</a>?"
|
269 |
+
#~ msgstr ""
|
270 |
+
#~ "Keine Seiten gefunden. Jetzt eine neue Seite <a href='post-new.php?"
|
271 |
+
#~ "post_type=page'>anlegen</a>?"
|
languages/cms-tree-page-view-sv_SE.mo
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: eskapism, MarsApril
|
|
3 |
Donate link: http://eskapism.se/sida/donate/
|
4 |
Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.3
|
7 |
-
Stable tag: 0.8.
|
8 |
|
9 |
Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
|
10 |
|
@@ -86,6 +86,12 @@ Now the tree with the pages will be visible both on the dashboard and in the men
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
= 0.8.6 =
|
90 |
- Ops, forgot the .mo-file for the Danish translation. Hopefully I did it correct this time...
|
91 |
|
3 |
Donate link: http://eskapism.se/sida/donate/
|
4 |
Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.3.1
|
7 |
+
Stable tag: 0.8.7
|
8 |
|
9 |
Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
|
10 |
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
= 0.8.7 =
|
90 |
+
- Updated German translation
|
91 |
+
- Fixed PHP notice messages
|
92 |
+
- Updated swedish translation
|
93 |
+
- Changed the way scripts and styles load, so it won't add scripts and styles to pages it shouldn't add scripts and styles to
|
94 |
+
|
95 |
= 0.8.6 =
|
96 |
- Ops, forgot the .mo-file for the Danish translation. Hopefully I did it correct this time...
|
97 |
|