Version Description
- removed taxonomy filtering ( will implement show/hide option )
Download this release
Release Info
Developer | codepress |
Plugin | Admin Columns |
Version | 1.4.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.4.5.1
- classes/sortable.php +4 -3
- codepress-admin-columns.php +2 -2
- languages/codepress-admin-columns.po +696 -0
- readme.txt +6 -2
classes/sortable.php
CHANGED
@@ -38,7 +38,7 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
|
|
38 |
add_action( 'admin_init', array( $this, 'register_sortable_columns' ) );
|
39 |
|
40 |
// init filtering
|
41 |
-
add_action( 'admin_init', array( $this, 'register_filtering_columns' ) );
|
42 |
|
43 |
// handle requests for sorting columns
|
44 |
add_filter( 'request', array( $this, 'handle_requests_orderby_column'), 1 );
|
@@ -1143,6 +1143,7 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
|
|
1143 |
$select = "<option value=''>".__('Show all ', CPAC_TEXTDOMAIN)."{$tax}</option>";
|
1144 |
if (!empty($terms)) {
|
1145 |
foreach( $terms as $term_slug => $term) {
|
|
|
1146 |
$selected = isset($_GET[$tax]) && $term_slug == $_GET[$tax] ? " selected='selected'" : '';
|
1147 |
$select .= "<option value='{$term_slug}'{$selected}>{$term}</option>";
|
1148 |
}
|
@@ -1166,8 +1167,8 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
|
|
1166 |
for($i=0; $i<$level; $i++) {
|
1167 |
$prefix .= ' ';
|
1168 |
}
|
1169 |
-
|
1170 |
-
$output[$v->slug] = $prefix .
|
1171 |
|
1172 |
if ( !empty($v->children) ) {
|
1173 |
$output = $this->apply_dropdown_markup($v->children, ($level + 1), $output);
|
38 |
add_action( 'admin_init', array( $this, 'register_sortable_columns' ) );
|
39 |
|
40 |
// init filtering
|
41 |
+
// add_action( 'admin_init', array( $this, 'register_filtering_columns' ) );
|
42 |
|
43 |
// handle requests for sorting columns
|
44 |
add_filter( 'request', array( $this, 'handle_requests_orderby_column'), 1 );
|
1143 |
$select = "<option value=''>".__('Show all ', CPAC_TEXTDOMAIN)."{$tax}</option>";
|
1144 |
if (!empty($terms)) {
|
1145 |
foreach( $terms as $term_slug => $term) {
|
1146 |
+
|
1147 |
$selected = isset($_GET[$tax]) && $term_slug == $_GET[$tax] ? " selected='selected'" : '';
|
1148 |
$select .= "<option value='{$term_slug}'{$selected}>{$term}</option>";
|
1149 |
}
|
1167 |
for($i=0; $i<$level; $i++) {
|
1168 |
$prefix .= ' ';
|
1169 |
}
|
1170 |
+
|
1171 |
+
$output[$v->slug] = $prefix . $v->name;
|
1172 |
|
1173 |
if ( !empty($v->children) ) {
|
1174 |
$output = $this->apply_dropdown_markup($v->children, ($level + 1), $output);
|
codepress-admin-columns.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Codepress Admin Columns
|
4 |
-
Version: 1.4.5
|
5 |
Description: Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
6 |
Author: Codepress
|
7 |
Author URI: http://www.codepress.nl
|
@@ -26,7 +26,7 @@ along with this program; if not, write to the Free Software
|
|
26 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
27 |
*/
|
28 |
|
29 |
-
define( 'CPAC_VERSION', '1.4.5' );
|
30 |
define( 'CPAC_TEXTDOMAIN', 'codepress-admin-columns' );
|
31 |
define( 'CPAC_SLUG', 'codepress-admin-columns' );
|
32 |
define( 'CPAC_URL', plugins_url('', __FILE__) );
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Codepress Admin Columns
|
4 |
+
Version: 1.4.5.1
|
5 |
Description: Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
6 |
Author: Codepress
|
7 |
Author URI: http://www.codepress.nl
|
26 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
27 |
*/
|
28 |
|
29 |
+
define( 'CPAC_VERSION', '1.4.5.1' );
|
30 |
define( 'CPAC_TEXTDOMAIN', 'codepress-admin-columns' );
|
31 |
define( 'CPAC_SLUG', 'codepress-admin-columns' );
|
32 |
define( 'CPAC_URL', plugins_url('', __FILE__) );
|
languages/codepress-admin-columns.po
ADDED
@@ -0,0 +1,696 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Codepress Admin Columns\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-28 09:25+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-06-28 09:25+0100\n"
|
7 |
+
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
+
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
+
"X-Poedit-SearchPath-1: ..\n"
|
17 |
+
|
18 |
+
#: ../codepress-admin-columns.php:164
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: ../codepress-admin-columns.php:347
|
23 |
+
msgid "Add Custom Field Column"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: ../codepress-admin-columns.php:355
|
27 |
+
msgid "drag and drop to reorder"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../codepress-admin-columns.php:497
|
31 |
+
#: ../codepress-admin-columns.php:522
|
32 |
+
msgid "default"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../codepress-admin-columns.php:520
|
36 |
+
#: ../codepress-admin-columns.php:1357
|
37 |
+
msgid "Width"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: ../codepress-admin-columns.php:579
|
41 |
+
msgid "Default"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: ../codepress-admin-columns.php:580
|
45 |
+
#: ../codepress-admin-columns.php:1488
|
46 |
+
msgid "Image"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../codepress-admin-columns.php:581
|
50 |
+
msgid "Media Library Icon"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../codepress-admin-columns.php:582
|
54 |
+
#: ../codepress-admin-columns.php:1145
|
55 |
+
#: ../codepress-admin-columns.php:1564
|
56 |
+
msgid "Excerpt"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../codepress-admin-columns.php:583
|
60 |
+
msgid "Multiple Values"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../codepress-admin-columns.php:584
|
64 |
+
msgid "Numeric"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../codepress-admin-columns.php:585
|
68 |
+
#: ../codepress-admin-columns.php:1555
|
69 |
+
msgid "Date"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../codepress-admin-columns.php:586
|
73 |
+
msgid "Post Title (Post ID's)"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: ../codepress-admin-columns.php:611
|
77 |
+
msgid "This field can not be removed"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: ../codepress-admin-columns.php:615
|
81 |
+
#: ../classes/values/users.php:153
|
82 |
+
msgid "Remove"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: ../codepress-admin-columns.php:1111
|
86 |
+
msgid "Comments"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../codepress-admin-columns.php:1117
|
90 |
+
msgid "Icon"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: ../codepress-admin-columns.php:1142
|
94 |
+
msgid "Featured Image"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../codepress-admin-columns.php:1148
|
98 |
+
#: ../codepress-admin-columns.php:1208
|
99 |
+
msgid "Page Order"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: ../codepress-admin-columns.php:1151
|
103 |
+
#: ../codepress-admin-columns.php:1225
|
104 |
+
msgid "Post Format"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: ../codepress-admin-columns.php:1154
|
108 |
+
#: ../codepress-admin-columns.php:1342
|
109 |
+
#: ../codepress-admin-columns.php:1482
|
110 |
+
#: ../codepress-admin-columns.php:1528
|
111 |
+
msgid "ID"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../codepress-admin-columns.php:1157
|
115 |
+
msgid "Slug"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: ../codepress-admin-columns.php:1160
|
119 |
+
msgid "Attachment"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: ../codepress-admin-columns.php:1163
|
123 |
+
msgid "No. of Attachments"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: ../codepress-admin-columns.php:1166
|
127 |
+
msgid "Roles"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: ../codepress-admin-columns.php:1169
|
131 |
+
#: ../codepress-admin-columns.php:2209
|
132 |
+
msgid "Status"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../codepress-admin-columns.php:1172
|
136 |
+
msgid "Comment status"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: ../codepress-admin-columns.php:1175
|
140 |
+
msgid "Ping status"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../codepress-admin-columns.php:1178
|
144 |
+
#: ../codepress-admin-columns.php:1296
|
145 |
+
#: ../codepress-admin-columns.php:1375
|
146 |
+
#: ../codepress-admin-columns.php:1506
|
147 |
+
#: ../codepress-admin-columns.php:1567
|
148 |
+
msgid "Actions"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: ../codepress-admin-columns.php:1184
|
152 |
+
msgid "Last modified"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: ../codepress-admin-columns.php:1187
|
156 |
+
msgid "Comment count"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: ../codepress-admin-columns.php:1194
|
160 |
+
#: ../codepress-admin-columns.php:1573
|
161 |
+
msgid "Word count"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: ../codepress-admin-columns.php:1201
|
165 |
+
msgid "Sticky"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: ../codepress-admin-columns.php:1210
|
169 |
+
msgid "Order"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: ../codepress-admin-columns.php:1218
|
173 |
+
msgid "Page Template"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../codepress-admin-columns.php:1238
|
177 |
+
msgid "Taxonomy"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: ../codepress-admin-columns.php:1248
|
181 |
+
#: ../codepress-admin-columns.php:1316
|
182 |
+
#: ../codepress-admin-columns.php:1455
|
183 |
+
#: ../codepress-admin-columns.php:1583
|
184 |
+
msgid "Custom Field"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: ../codepress-admin-columns.php:1254
|
188 |
+
#: ../codepress-admin-columns.php:1322
|
189 |
+
#: ../codepress-admin-columns.php:1461
|
190 |
+
#: ../codepress-admin-columns.php:1589
|
191 |
+
msgid "Field"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: ../codepress-admin-columns.php:1275
|
195 |
+
msgid "User ID"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: ../codepress-admin-columns.php:1278
|
199 |
+
msgid "Nickname"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: ../codepress-admin-columns.php:1281
|
203 |
+
msgid "First name"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: ../codepress-admin-columns.php:1284
|
207 |
+
msgid "Last name"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: ../codepress-admin-columns.php:1287
|
211 |
+
msgid "Url"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: ../codepress-admin-columns.php:1290
|
215 |
+
msgid "Registered"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: ../codepress-admin-columns.php:1293
|
219 |
+
#: ../codepress-admin-columns.php:1363
|
220 |
+
#: ../codepress-admin-columns.php:1485
|
221 |
+
msgid "Description"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: ../codepress-admin-columns.php:1309
|
225 |
+
msgid "Postcount"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: ../codepress-admin-columns.php:1345
|
229 |
+
msgid "Mime type"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: ../codepress-admin-columns.php:1348
|
233 |
+
msgid "File name"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: ../codepress-admin-columns.php:1351
|
237 |
+
msgid "Dimensions"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: ../codepress-admin-columns.php:1354
|
241 |
+
msgid "Height"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../codepress-admin-columns.php:1360
|
245 |
+
#: ../codepress-admin-columns.php:1408
|
246 |
+
msgid "Caption"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: ../codepress-admin-columns.php:1366
|
250 |
+
msgid "Alt"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: ../codepress-admin-columns.php:1369
|
254 |
+
msgid "Upload paths"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: ../codepress-admin-columns.php:1381
|
258 |
+
msgid "File size"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: ../codepress-admin-columns.php:1390
|
262 |
+
msgid "Aperture"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: ../codepress-admin-columns.php:1392
|
266 |
+
msgid "Aperture EXIF"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: ../codepress-admin-columns.php:1396
|
270 |
+
msgid "Credit"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: ../codepress-admin-columns.php:1398
|
274 |
+
msgid "Credit EXIF"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: ../codepress-admin-columns.php:1402
|
278 |
+
msgid "Camera"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: ../codepress-admin-columns.php:1404
|
282 |
+
msgid "Camera EXIF"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: ../codepress-admin-columns.php:1410
|
286 |
+
msgid "Caption EXIF"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: ../codepress-admin-columns.php:1414
|
290 |
+
msgid "Timestamp"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: ../codepress-admin-columns.php:1416
|
294 |
+
msgid "Timestamp EXIF"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: ../codepress-admin-columns.php:1420
|
298 |
+
msgid "Copyright"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: ../codepress-admin-columns.php:1422
|
302 |
+
msgid "Copyright EXIF"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: ../codepress-admin-columns.php:1426
|
306 |
+
msgid "Focal Length"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: ../codepress-admin-columns.php:1428
|
310 |
+
msgid "Focal Length EXIF"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: ../codepress-admin-columns.php:1432
|
314 |
+
msgid "ISO"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: ../codepress-admin-columns.php:1434
|
318 |
+
msgid "ISO EXIF"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: ../codepress-admin-columns.php:1438
|
322 |
+
msgid "Shutter Speed"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../codepress-admin-columns.php:1440
|
326 |
+
msgid "Shutter Speed EXIF"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: ../codepress-admin-columns.php:1444
|
330 |
+
msgid "Title"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../codepress-admin-columns.php:1446
|
334 |
+
msgid "Title EXIF"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../codepress-admin-columns.php:1491
|
338 |
+
msgid "Target"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: ../codepress-admin-columns.php:1494
|
342 |
+
msgid "Owner"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: ../codepress-admin-columns.php:1497
|
346 |
+
msgid "Notes"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../codepress-admin-columns.php:1500
|
350 |
+
msgid "Rss"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: ../codepress-admin-columns.php:1503
|
354 |
+
msgid "Length"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: ../codepress-admin-columns.php:1531
|
358 |
+
msgid "Author Name"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: ../codepress-admin-columns.php:1534
|
362 |
+
msgid "Avatar"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../codepress-admin-columns.php:1537
|
366 |
+
msgid "Author url"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: ../codepress-admin-columns.php:1540
|
370 |
+
msgid "Author IP"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: ../codepress-admin-columns.php:1543
|
374 |
+
msgid "Author email"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: ../codepress-admin-columns.php:1546
|
378 |
+
msgid "In Reply To"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: ../codepress-admin-columns.php:1552
|
382 |
+
msgid "Approved"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: ../codepress-admin-columns.php:1558
|
386 |
+
msgid "Date GMT"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../codepress-admin-columns.php:1561
|
390 |
+
msgid "Agent"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: ../codepress-admin-columns.php:1620
|
394 |
+
msgid "Custom"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: ../codepress-admin-columns.php:1697
|
398 |
+
msgid "Addons"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: ../codepress-admin-columns.php:2149
|
402 |
+
#: ../codepress-admin-columns.php:2317
|
403 |
+
msgid "find out more"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: ../codepress-admin-columns.php:2153
|
407 |
+
msgid "This will make all of the new columns support sorting"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: ../codepress-admin-columns.php:2154
|
411 |
+
msgid "By default WordPress let's you sort by title, date, comments and author. This will make you be able to <strong>sort by any column of any type!</strong>"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: ../codepress-admin-columns.php:2155
|
415 |
+
msgid "Perfect for sorting your articles, media files, comments, links and users"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: ../codepress-admin-columns.php:2156
|
419 |
+
#: ../codepress-admin-columns.php:2337
|
420 |
+
msgid "(columns that are added by other plugins are not supported)"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../codepress-admin-columns.php:2165
|
424 |
+
#: ../codepress-admin-columns.php:2167
|
425 |
+
msgid "Sortorder"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: ../codepress-admin-columns.php:2175
|
429 |
+
msgid "Inactive"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: ../codepress-admin-columns.php:2178
|
433 |
+
msgid "Active"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: ../codepress-admin-columns.php:2183
|
437 |
+
msgid "Fill in your activation code"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: ../codepress-admin-columns.php:2184
|
441 |
+
msgid "Activate"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: ../codepress-admin-columns.php:2188
|
445 |
+
msgid "Deactivate"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../codepress-admin-columns.php:2203
|
449 |
+
msgid "Activate Add-ons"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: ../codepress-admin-columns.php:2204
|
453 |
+
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: ../codepress-admin-columns.php:2208
|
457 |
+
msgid "Addon"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: ../codepress-admin-columns.php:2210
|
461 |
+
msgid "Activation Code"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: ../codepress-admin-columns.php:2219
|
465 |
+
msgid "Enter your activation code"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: ../codepress-admin-columns.php:2220
|
469 |
+
msgid "Activation code unrecognised"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: ../codepress-admin-columns.php:2314
|
473 |
+
msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../codepress-admin-columns.php:2322
|
477 |
+
msgid "Codepress Admin Columns"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: ../codepress-admin-columns.php:2332
|
481 |
+
msgid "Get the Addon"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: ../codepress-admin-columns.php:2335
|
485 |
+
msgid "By default WordPress let's you only sort by title, date, comments and author."
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: ../codepress-admin-columns.php:2336
|
489 |
+
msgid "Make <strong>all columns</strong> of <strong>all types</strong> within the plugin support sorting — with the sorting addon."
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: ../codepress-admin-columns.php:2345
|
493 |
+
msgid "Like this plugin?"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../codepress-admin-columns.php:2348
|
497 |
+
msgid "Why not do any or all of the following"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: ../codepress-admin-columns.php:2350
|
501 |
+
msgid "Link to it so other folks can find out about it."
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: ../codepress-admin-columns.php:2351
|
505 |
+
msgid "Give it a 5 star rating on WordPress.org."
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: ../codepress-admin-columns.php:2352
|
509 |
+
msgid "Donate a token of your appreciation."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: ../codepress-admin-columns.php:2360
|
513 |
+
msgid "Need support?"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: ../codepress-admin-columns.php:2364
|
517 |
+
#, php-format
|
518 |
+
msgid "If you are having problems with this plugin, please talk about them in the <a href=\"%s\">Support forums</a> or send me an email %s."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: ../codepress-admin-columns.php:2365
|
522 |
+
#, php-format
|
523 |
+
msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: ../codepress-admin-columns.php:2380
|
527 |
+
msgid "Admin Columns"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: ../codepress-admin-columns.php:2398
|
531 |
+
msgid "Save Changes"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: ../codepress-admin-columns.php:2410
|
535 |
+
msgid "Restore defaults"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: ../codepress-admin-columns.php:2414
|
539 |
+
msgid "Restore default settings"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../codepress-admin-columns.php:2414
|
543 |
+
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: ../codepress-admin-columns.php:2416
|
547 |
+
msgid "This will delete all column settings and restore the default settings."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: ../classes/sortable.php:1143
|
551 |
+
#: ../classes/_org.sortable.php:1134
|
552 |
+
#: ../classes/_sortable.php:1140
|
553 |
+
msgid "Show all "
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: ../classes/values/comments.php:95
|
557 |
+
#: ../classes/values/comments.php:106
|
558 |
+
#, php-format
|
559 |
+
msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: ../classes/values/comments.php:195
|
563 |
+
#: ../classes/values/comments.php:200
|
564 |
+
msgid "Unapprove"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: ../classes/values/comments.php:197
|
568 |
+
#: ../classes/values/comments.php:199
|
569 |
+
msgid "Approve"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: ../classes/values/comments.php:208
|
573 |
+
#: ../classes/values/posts.php:277
|
574 |
+
msgid "Restore"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: ../classes/values/comments.php:212
|
578 |
+
#: ../classes/values/posts.php:281
|
579 |
+
msgid "Delete Permanently"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: ../classes/values/comments.php:218
|
583 |
+
#: ../classes/values/link.php:117
|
584 |
+
#: ../classes/values/posts.php:272
|
585 |
+
#: ../classes/values/users.php:145
|
586 |
+
msgid "Edit"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: ../classes/values/comments.php:219
|
590 |
+
#: ../classes/values/posts.php:273
|
591 |
+
msgid "Quick Edit"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: ../classes/values/comments.php:220
|
595 |
+
msgid "Reply"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: ../classes/values/link.php:118
|
599 |
+
#, php-format
|
600 |
+
msgid ""
|
601 |
+
"You are about to delete this link '%s'\n"
|
602 |
+
" 'Cancel' to stop, 'OK' to delete."
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: ../classes/values/link.php:118
|
606 |
+
#: ../classes/values/users.php:151
|
607 |
+
msgid "Delete"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: ../classes/values/media.php:100
|
611 |
+
msgid "original"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: ../classes/values/posts.php:107
|
615 |
+
msgid "Standard"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: ../classes/values/posts.php:208
|
619 |
+
msgid "Published"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: ../classes/values/posts.php:209
|
623 |
+
msgid "Draft"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: ../classes/values/posts.php:210
|
627 |
+
msgid "Scheduled"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: ../classes/values/posts.php:211
|
631 |
+
msgid "Private"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: ../classes/values/posts.php:212
|
635 |
+
msgid "Pending Review"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: ../classes/values/posts.php:213
|
639 |
+
#: ../classes/values/posts.php:279
|
640 |
+
msgid "Trash"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: ../classes/values/posts.php:234
|
644 |
+
msgid "approved"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: ../classes/values/posts.php:238
|
648 |
+
msgid "pending"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: ../classes/values/posts.php:242
|
652 |
+
msgid "spam"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: ../classes/values/posts.php:246
|
656 |
+
msgid "trash"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: ../classes/values/posts.php:272
|
660 |
+
msgid "Edit this item"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: ../classes/values/posts.php:273
|
664 |
+
msgid "Edit this item inline"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: ../classes/values/posts.php:277
|
668 |
+
msgid "Restore this item from the Trash"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: ../classes/values/posts.php:279
|
672 |
+
msgid "Move this item to the Trash"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: ../classes/values/posts.php:281
|
676 |
+
msgid "Delete this item permanently"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: ../classes/values/posts.php:286
|
680 |
+
#, php-format
|
681 |
+
msgid "Preview “%s”"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: ../classes/values/posts.php:286
|
685 |
+
msgid "Preview"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: ../classes/values/posts.php:288
|
689 |
+
#, php-format
|
690 |
+
msgid "View “%s”"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: ../classes/values/posts.php:288
|
694 |
+
msgid "View"
|
695 |
+
msgstr ""
|
696 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.4
|
7 |
-
Stable tag: 1.4.5
|
8 |
|
9 |
== Description ==
|
10 |
|
@@ -152,6 +152,10 @@ Leave your feedback at http://www.codepress.nl/plugins/codepress-admin-columns/f
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
|
|
|
|
|
|
|
|
155 |
= 1.4.5 =
|
156 |
|
157 |
* added french language ( thanks to Alexandre Girard )
|
@@ -179,7 +183,7 @@ Leave your feedback at http://www.codepress.nl/plugins/codepress-admin-columns/f
|
|
179 |
|
180 |
= 1.4.3 =
|
181 |
|
182 |
-
* removed taxonomy filtering
|
183 |
|
184 |
= 1.4.2 =
|
185 |
|
4 |
Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.4
|
7 |
+
Stable tag: 1.4.5.1
|
8 |
|
9 |
== Description ==
|
10 |
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= 1.4.5.1 =
|
156 |
+
|
157 |
+
* removed taxonomy filtering ( will implement show/hide option )
|
158 |
+
|
159 |
= 1.4.5 =
|
160 |
|
161 |
* added french language ( thanks to Alexandre Girard )
|
183 |
|
184 |
= 1.4.3 =
|
185 |
|
186 |
+
* removed taxonomy filtering
|
187 |
|
188 |
= 1.4.2 =
|
189 |
|