Version Description
- [Fixed] Performance issue
- [Added] Option to show/hide edit-button
- [Fixed] Bug before/after-field not saving correctly
- [Fixed] Bug with storage model trying to load repository (svn) files
- [Fixed] Bug with tooltip
- [Fixed] Bug with duplicate message in javascript
- [Added] RTL support - thanks to Hassan
- [Added] Arabic translation - thanks to Hassan
Download this release
Release Info
Developer | tschutter |
Plugin | Admin Columns |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- assets/css/admin-column.css +134 -3
- assets/css/column.css +14 -1
- assets/images/order_arrow-rtl.png +0 -0
- assets/js/admin-columns.js +2 -2
- classes/column.php +3 -5
- classes/column/custom-field.php +14 -10
- classes/export_import.php +0 -179
- classes/settings.php +23 -11
- classes/storage_model.php +25 -4
- classes/storage_model/comment.php +4 -0
- classes/storage_model/link.php +4 -0
- classes/storage_model/media.php +4 -0
- classes/storage_model/post.php +14 -2
- classes/storage_model/user.php +4 -0
- classes/upgrade.php +2 -0
- codepress-admin-columns.php +7 -3
- languages/cac-addon-pro.po +265 -0
- languages/cpac-ar.mo +0 -0
- languages/cpac-ar.po +1239 -0
- languages/cpac-nl_NL.mo +0 -0
- languages/cpac-nl_NL.po +167 -187
- languages/cpac.mo +0 -0
- languages/cpac.po +161 -184
- readme.txt +29 -56
assets/css/admin-column.css
CHANGED
@@ -12,6 +12,12 @@
|
|
12 |
display: inline-block;
|
13 |
line-height: 16px;
|
14 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
.cpac-settings-link.current {
|
16 |
font-weight: bold;
|
17 |
}
|
@@ -28,6 +34,10 @@ a.help {
|
|
28 |
padding-right: 25px;
|
29 |
position: relative;
|
30 |
}
|
|
|
|
|
|
|
|
|
31 |
.button.loading span {
|
32 |
position: absolute;
|
33 |
top: 2px;
|
@@ -37,7 +47,10 @@ a.help {
|
|
37 |
height: 16px;
|
38 |
display: inline-block;
|
39 |
}
|
40 |
-
|
|
|
|
|
|
|
41 |
/* =Icons
|
42 |
-------------------------------------------------------------- */
|
43 |
.icon-yes {
|
@@ -67,6 +80,10 @@ a.help {
|
|
67 |
white-space: normal;
|
68 |
margin-right: 14px;
|
69 |
}
|
|
|
|
|
|
|
|
|
70 |
|
71 |
/* =Structure
|
72 |
-------------------------------------------------------------- */
|
@@ -74,15 +91,27 @@ a.help {
|
|
74 |
margin-right: 300px;
|
75 |
max-width: 600px;
|
76 |
}
|
|
|
|
|
|
|
|
|
77 |
.columns-left {
|
78 |
float: left;
|
79 |
width: 100%;
|
80 |
}
|
|
|
|
|
|
|
81 |
.columns-right {
|
82 |
float: right;
|
83 |
margin-right: -300px;
|
84 |
width: 280px;
|
85 |
}
|
|
|
|
|
|
|
|
|
|
|
86 |
.columns-right-inside.fixed {
|
87 |
position: fixed;
|
88 |
top: 40px;
|
@@ -114,6 +143,9 @@ a.help {
|
|
114 |
border-top: 1px solid #dfdfdf;
|
115 |
padding: 5px 4px 7px 0;
|
116 |
}
|
|
|
|
|
|
|
117 |
.cpac-placeholder .inner-placeholder {
|
118 |
border: 1px dashed #808080;
|
119 |
background: #eee;
|
@@ -180,6 +212,10 @@ a.help {
|
|
180 |
.column-meta img {
|
181 |
margin-right: 3px;
|
182 |
}
|
|
|
|
|
|
|
|
|
183 |
.column-meta .column_sort {
|
184 |
width: 10px;
|
185 |
background: transparent url('../images/drag.png') no-repeat 8px 8px;
|
@@ -211,6 +247,10 @@ a.help {
|
|
211 |
margin-left: 12px;
|
212 |
font-size: 12px;
|
213 |
}
|
|
|
|
|
|
|
|
|
214 |
.column-meta .column_label .inner > a.remove-button:hover {
|
215 |
background-color: #BC0B0B;
|
216 |
color: #FFFFFF;
|
@@ -226,6 +266,9 @@ a.help {
|
|
226 |
color: #999999;
|
227 |
font-size: 12px;
|
228 |
}
|
|
|
|
|
|
|
229 |
.column-meta .column_type {
|
230 |
width: auto;
|
231 |
text-align: right;
|
@@ -233,6 +276,11 @@ a.help {
|
|
233 |
color: #999999;
|
234 |
padding-right: 0;
|
235 |
}
|
|
|
|
|
|
|
|
|
|
|
236 |
.column-meta .column_edit {
|
237 |
width: 38px;
|
238 |
background: transparent url('../images/arrow.png') no-repeat 23px 16px;
|
@@ -281,6 +329,10 @@ tr.column_image_size td.input label {
|
|
281 |
tr.column_image_size td.input label input {
|
282 |
margin-right: 3px;
|
283 |
}
|
|
|
|
|
|
|
|
|
284 |
tr.column_image_size td.input label.custom-size-w,
|
285 |
tr.column_image_size td.input label.custom-size-h {
|
286 |
margin: 0;
|
@@ -308,9 +360,15 @@ tr.column_image_size.hidden {
|
|
308 |
width: 12px;
|
309 |
float: right;
|
310 |
}
|
|
|
|
|
|
|
311 |
.column-meta .column_label span.vers {
|
312 |
float: left;
|
313 |
}
|
|
|
|
|
|
|
314 |
|
315 |
/* =Column Form
|
316 |
-------------------------------------------------------------- */
|
@@ -350,7 +408,7 @@ tr.column_image_size.hidden {
|
|
350 |
font-weight: bold;
|
351 |
color: #333333;
|
352 |
display: block;
|
353 |
-
|
354 |
}
|
355 |
.column-form tr td.label p {
|
356 |
color: #666666;
|
@@ -370,6 +428,11 @@ tr.column_image_size.hidden {
|
|
370 |
border-radius: 5px;
|
371 |
border: 1px solid #c7d7e2;
|
372 |
padding: 5px 8px !important;
|
|
|
|
|
|
|
|
|
|
|
373 |
}
|
374 |
.column-form tr td.label a.more-info {
|
375 |
display: none;
|
@@ -382,6 +445,9 @@ tr.column_image_size.hidden {
|
|
382 |
background: transparent url(../images/info.png) no-repeat 0 0;
|
383 |
float: right;
|
384 |
}
|
|
|
|
|
|
|
385 |
.column-form tr td select,
|
386 |
.column-form tr td input[type=text] {
|
387 |
width: 99.95%; /* excl padding */
|
@@ -392,18 +458,28 @@ tr.column_image_size.hidden {
|
|
392 |
float: left;
|
393 |
text-align: middle;
|
394 |
}
|
|
|
|
|
|
|
395 |
.column-form div.input-width-range {
|
396 |
float: left;
|
397 |
position: relative;
|
398 |
width: 87%;
|
399 |
margin-top: 4px;
|
400 |
}
|
|
|
|
|
|
|
401 |
.column-form div.input-width-range .ui-slider-handle {
|
402 |
cursor:ew-resize;
|
403 |
}
|
404 |
.column-form tr td.input label {
|
405 |
padding-right: 10px;
|
406 |
}
|
|
|
|
|
|
|
|
|
407 |
.column-form tr td.input p.description {
|
408 |
display: none;
|
409 |
margin-top: 4px;
|
@@ -413,6 +489,9 @@ tr.column_image_size.hidden {
|
|
413 |
vertical-align: middle;
|
414 |
float: right;
|
415 |
}
|
|
|
|
|
|
|
416 |
.column-form div.msg {
|
417 |
margin-top: 5px;
|
418 |
display: none;
|
@@ -450,6 +529,12 @@ tr.column_image_size.hidden {
|
|
450 |
text-shadow: 0 1px 0 #FFFFFF;
|
451 |
display: inline-block;
|
452 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
|
454 |
/* =Sidebar
|
455 |
-------------------------------------------------------------- */
|
@@ -581,9 +666,16 @@ tr.column_image_size.hidden {
|
|
581 |
padding-left: 25px;
|
582 |
margin-bottom: 4px;
|
583 |
}
|
|
|
|
|
|
|
|
|
584 |
#addon-state a.find-more-addons {
|
585 |
float: right;
|
586 |
}
|
|
|
|
|
|
|
587 |
|
588 |
/* =Settings Page
|
589 |
-------------------------------------------------------------- */
|
@@ -594,6 +686,9 @@ table.cpac-form-table {
|
|
594 |
.col-25, .col-30, .col-35, .col-65, .col-70, .col-75 {
|
595 |
float: left;
|
596 |
}
|
|
|
|
|
|
|
597 |
.col-25 { width: 25%; }
|
598 |
.col-30 { width: 30%; }
|
599 |
.col-35 { width: 35%; }
|
@@ -646,6 +741,9 @@ tr td.padding-22 {
|
|
646 |
display: inline-block;
|
647 |
margin-top: -5px;
|
648 |
}
|
|
|
|
|
|
|
649 |
.column-footer .button-container p {
|
650 |
margin: 4px;
|
651 |
color: #7A9BBE;
|
@@ -766,6 +864,9 @@ tr td.padding-22 {
|
|
766 |
float: right;
|
767 |
width: 48%;
|
768 |
}
|
|
|
|
|
|
|
769 |
.cpac_export .ms-container ul.ms-list {
|
770 |
width: 100%;
|
771 |
}
|
@@ -794,6 +895,9 @@ ul.addons li {
|
|
794 |
width: 180px;
|
795 |
min-height: 300px;
|
796 |
}
|
|
|
|
|
|
|
797 |
ul.addons li h3 {
|
798 |
font-size: 13px;
|
799 |
}
|
@@ -805,6 +909,10 @@ ul.addons li .button {
|
|
805 |
right: 15px;
|
806 |
position: absolute;
|
807 |
}
|
|
|
|
|
|
|
|
|
808 |
ul.addons li span.state {
|
809 |
display: none;
|
810 |
position: absolute;
|
@@ -818,9 +926,16 @@ ul.addons li span.state {
|
|
818 |
color: #fff;
|
819 |
font-weight: bold;
|
820 |
}
|
|
|
|
|
|
|
|
|
821 |
ul.addons li img {
|
822 |
margin: -15px 0 0 -13px;
|
823 |
}
|
|
|
|
|
|
|
824 |
ul.addons li.active .button {
|
825 |
display: none;
|
826 |
}
|
@@ -837,9 +952,17 @@ ul.addons li.active span.state {
|
|
837 |
margin-left: 1.5em;
|
838 |
padding: 0 15px;
|
839 |
}
|
|
|
|
|
|
|
|
|
840 |
.wp-pointer-right {
|
841 |
margin-right: 15px;
|
842 |
}
|
|
|
|
|
|
|
|
|
843 |
|
844 |
/* =Responsive
|
845 |
-------------------------------------------------------------- */
|
@@ -847,11 +970,19 @@ ul.addons li.active span.state {
|
|
847 |
.columns-container {
|
848 |
margin-right: 0;
|
849 |
}
|
|
|
|
|
|
|
|
|
850 |
.columns-right {
|
851 |
margin-top: 0;
|
852 |
margin-right: 0;
|
853 |
width: 100%;
|
854 |
}
|
|
|
|
|
|
|
|
|
855 |
.columns-right-inside.fixed {
|
856 |
position: relative;
|
857 |
top: 0;
|
@@ -863,4 +994,4 @@ ul.addons li.active span.state {
|
|
863 |
.columns-right #plugin-support {
|
864 |
display: none;
|
865 |
}
|
866 |
-
}
|
12 |
display: inline-block;
|
13 |
line-height: 16px;
|
14 |
}
|
15 |
+
.rtl .cpac-settings-link {
|
16 |
+
float: left;
|
17 |
+
margin: 12px 0 5px 14px;
|
18 |
+
padding-right: 20px;
|
19 |
+
padding-left: 0;
|
20 |
+
}
|
21 |
.cpac-settings-link.current {
|
22 |
font-weight: bold;
|
23 |
}
|
34 |
padding-right: 25px;
|
35 |
position: relative;
|
36 |
}
|
37 |
+
.rtl .button.loading {
|
38 |
+
padding-left: 25px;
|
39 |
+
padding-right: 0;
|
40 |
+
}
|
41 |
.button.loading span {
|
42 |
position: absolute;
|
43 |
top: 2px;
|
47 |
height: 16px;
|
48 |
display: inline-block;
|
49 |
}
|
50 |
+
.rtl .button.loading span {
|
51 |
+
left: 6px;
|
52 |
+
right: auto;
|
53 |
+
}
|
54 |
/* =Icons
|
55 |
-------------------------------------------------------------- */
|
56 |
.icon-yes {
|
80 |
white-space: normal;
|
81 |
margin-right: 14px;
|
82 |
}
|
83 |
+
.rtl .cpac-menu .subsubsub {
|
84 |
+
margin-left: 14px;
|
85 |
+
margin-right: 0;
|
86 |
+
}
|
87 |
|
88 |
/* =Structure
|
89 |
-------------------------------------------------------------- */
|
91 |
margin-right: 300px;
|
92 |
max-width: 600px;
|
93 |
}
|
94 |
+
.rtl .columns-container {
|
95 |
+
margin-left: 300px;
|
96 |
+
margin-right: 0;
|
97 |
+
}
|
98 |
.columns-left {
|
99 |
float: left;
|
100 |
width: 100%;
|
101 |
}
|
102 |
+
.rtl .columns-left {
|
103 |
+
float: right;
|
104 |
+
}
|
105 |
.columns-right {
|
106 |
float: right;
|
107 |
margin-right: -300px;
|
108 |
width: 280px;
|
109 |
}
|
110 |
+
.rtl .columns-right {
|
111 |
+
float: left;
|
112 |
+
margin-left: -300px;
|
113 |
+
margin-right: 0;
|
114 |
+
}
|
115 |
.columns-right-inside.fixed {
|
116 |
position: fixed;
|
117 |
top: 40px;
|
143 |
border-top: 1px solid #dfdfdf;
|
144 |
padding: 5px 4px 7px 0;
|
145 |
}
|
146 |
+
.rtl .cpac-placeholder {
|
147 |
+
padding: 5px 0 7px 4px;
|
148 |
+
}
|
149 |
.cpac-placeholder .inner-placeholder {
|
150 |
border: 1px dashed #808080;
|
151 |
background: #eee;
|
212 |
.column-meta img {
|
213 |
margin-right: 3px;
|
214 |
}
|
215 |
+
.rtl .column-meta img {
|
216 |
+
margin-left: 3px;
|
217 |
+
margin-right: 0;
|
218 |
+
}
|
219 |
.column-meta .column_sort {
|
220 |
width: 10px;
|
221 |
background: transparent url('../images/drag.png') no-repeat 8px 8px;
|
247 |
margin-left: 12px;
|
248 |
font-size: 12px;
|
249 |
}
|
250 |
+
.rtl .column-meta .column_label .inner > a.remove-button {
|
251 |
+
margin-right: 12px;
|
252 |
+
margin-left: 0;
|
253 |
+
}
|
254 |
.column-meta .column_label .inner > a.remove-button:hover {
|
255 |
background-color: #BC0B0B;
|
256 |
color: #FFFFFF;
|
266 |
color: #999999;
|
267 |
font-size: 12px;
|
268 |
}
|
269 |
+
.rtl .column-meta .column_label .inner .meta {
|
270 |
+
float: left;
|
271 |
+
}
|
272 |
.column-meta .column_type {
|
273 |
width: auto;
|
274 |
text-align: right;
|
276 |
color: #999999;
|
277 |
padding-right: 0;
|
278 |
}
|
279 |
+
.rtl .column-meta .column_type {
|
280 |
+
text-align: left;
|
281 |
+
padding-left: 0;
|
282 |
+
padding-right: auto;
|
283 |
+
}
|
284 |
.column-meta .column_edit {
|
285 |
width: 38px;
|
286 |
background: transparent url('../images/arrow.png') no-repeat 23px 16px;
|
329 |
tr.column_image_size td.input label input {
|
330 |
margin-right: 3px;
|
331 |
}
|
332 |
+
.rtl tr.column_image_size td.input label input {
|
333 |
+
margin-left: 3px;
|
334 |
+
margin-right: 0;
|
335 |
+
}
|
336 |
tr.column_image_size td.input label.custom-size-w,
|
337 |
tr.column_image_size td.input label.custom-size-h {
|
338 |
margin: 0;
|
360 |
width: 12px;
|
361 |
float: right;
|
362 |
}
|
363 |
+
.rtl .column-meta span.vers .comment-grey-bubble {
|
364 |
+
float: left;
|
365 |
+
}
|
366 |
.column-meta .column_label span.vers {
|
367 |
float: left;
|
368 |
}
|
369 |
+
.rtl .column-meta .column_label span.vers {
|
370 |
+
float: right;
|
371 |
+
}
|
372 |
|
373 |
/* =Column Form
|
374 |
-------------------------------------------------------------- */
|
408 |
font-weight: bold;
|
409 |
color: #333333;
|
410 |
display: block;
|
411 |
+
position: relative;
|
412 |
}
|
413 |
.column-form tr td.label p {
|
414 |
color: #666666;
|
428 |
border-radius: 5px;
|
429 |
border: 1px solid #c7d7e2;
|
430 |
padding: 5px 8px !important;
|
431 |
+
font-weight: normal;
|
432 |
+
}
|
433 |
+
.rtl .column-form tr td.label p.description {
|
434 |
+
right: 0;
|
435 |
+
left: auto;
|
436 |
}
|
437 |
.column-form tr td.label a.more-info {
|
438 |
display: none;
|
445 |
background: transparent url(../images/info.png) no-repeat 0 0;
|
446 |
float: right;
|
447 |
}
|
448 |
+
.rtl .column-form tr td.label a.more-info {
|
449 |
+
float: left;
|
450 |
+
}
|
451 |
.column-form tr td select,
|
452 |
.column-form tr td input[type=text] {
|
453 |
width: 99.95%; /* excl padding */
|
458 |
float: left;
|
459 |
text-align: middle;
|
460 |
}
|
461 |
+
.rtl .column-form div.description {
|
462 |
+
float: right;
|
463 |
+
}
|
464 |
.column-form div.input-width-range {
|
465 |
float: left;
|
466 |
position: relative;
|
467 |
width: 87%;
|
468 |
margin-top: 4px;
|
469 |
}
|
470 |
+
.rtl .column-form div.input-width-range {
|
471 |
+
float: right;
|
472 |
+
}
|
473 |
.column-form div.input-width-range .ui-slider-handle {
|
474 |
cursor:ew-resize;
|
475 |
}
|
476 |
.column-form tr td.input label {
|
477 |
padding-right: 10px;
|
478 |
}
|
479 |
+
.rtl .column-form tr td.input label {
|
480 |
+
padding-left: 10px;
|
481 |
+
padding-right: 0;
|
482 |
+
}
|
483 |
.column-form tr td.input p.description {
|
484 |
display: none;
|
485 |
margin-top: 4px;
|
489 |
vertical-align: middle;
|
490 |
float: right;
|
491 |
}
|
492 |
+
.rtl .column-form a.help {
|
493 |
+
float: left;
|
494 |
+
}
|
495 |
.column-form div.msg {
|
496 |
margin-top: 5px;
|
497 |
display: none;
|
529 |
text-shadow: 0 1px 0 #FFFFFF;
|
530 |
display: inline-block;
|
531 |
}
|
532 |
+
.rtl .column-footer .order-message {
|
533 |
+
float: right;
|
534 |
+
padding-right: 22px;
|
535 |
+
padding-left: 0;
|
536 |
+
background: transparent url('../images/order_arrow-rtl.png') no-repeat right top;
|
537 |
+
}
|
538 |
|
539 |
/* =Sidebar
|
540 |
-------------------------------------------------------------- */
|
666 |
padding-left: 25px;
|
667 |
margin-bottom: 4px;
|
668 |
}
|
669 |
+
.rtl #addon-state ul li {
|
670 |
+
padding-right: 25px;
|
671 |
+
padding-left: 0;
|
672 |
+
}
|
673 |
#addon-state a.find-more-addons {
|
674 |
float: right;
|
675 |
}
|
676 |
+
.rtl #addon-state a.find-more-addons {
|
677 |
+
float: left;
|
678 |
+
}
|
679 |
|
680 |
/* =Settings Page
|
681 |
-------------------------------------------------------------- */
|
686 |
.col-25, .col-30, .col-35, .col-65, .col-70, .col-75 {
|
687 |
float: left;
|
688 |
}
|
689 |
+
.rtl .col-25, .rtl .col-30, .rtl .col-35, .rtl .col-65, .rtl .col-70, .rtl .col-75 {
|
690 |
+
float: right;
|
691 |
+
}
|
692 |
.col-25 { width: 25%; }
|
693 |
.col-30 { width: 30%; }
|
694 |
.col-35 { width: 35%; }
|
741 |
display: inline-block;
|
742 |
margin-top: -5px;
|
743 |
}
|
744 |
+
.rtl .column-footer .button-container {
|
745 |
+
float: left;
|
746 |
+
}
|
747 |
.column-footer .button-container p {
|
748 |
margin: 4px;
|
749 |
color: #7A9BBE;
|
864 |
float: right;
|
865 |
width: 48%;
|
866 |
}
|
867 |
+
.rtl .cpac_export .ms-container .ms-selection {
|
868 |
+
float: left;
|
869 |
+
}
|
870 |
.cpac_export .ms-container ul.ms-list {
|
871 |
width: 100%;
|
872 |
}
|
895 |
width: 180px;
|
896 |
min-height: 300px;
|
897 |
}
|
898 |
+
.rtl ul.addons li {
|
899 |
+
float: right;
|
900 |
+
}
|
901 |
ul.addons li h3 {
|
902 |
font-size: 13px;
|
903 |
}
|
909 |
right: 15px;
|
910 |
position: absolute;
|
911 |
}
|
912 |
+
.rtl ul.addons li .button {
|
913 |
+
left: 15px;
|
914 |
+
right: auto;
|
915 |
+
}
|
916 |
ul.addons li span.state {
|
917 |
display: none;
|
918 |
position: absolute;
|
926 |
color: #fff;
|
927 |
font-weight: bold;
|
928 |
}
|
929 |
+
.rtl ul.addons li span.state {
|
930 |
+
margin-right: -13px;
|
931 |
+
margin-left: 0;
|
932 |
+
}
|
933 |
ul.addons li img {
|
934 |
margin: -15px 0 0 -13px;
|
935 |
}
|
936 |
+
.rtl ul.addons li img {
|
937 |
+
margin: -15px -13px 0 0;
|
938 |
+
}
|
939 |
ul.addons li.active .button {
|
940 |
display: none;
|
941 |
}
|
952 |
margin-left: 1.5em;
|
953 |
padding: 0 15px;
|
954 |
}
|
955 |
+
.rtl .wp-pointer-content ol {
|
956 |
+
margin-right: 1.5em;
|
957 |
+
margin-left: 0;
|
958 |
+
}
|
959 |
.wp-pointer-right {
|
960 |
margin-right: 15px;
|
961 |
}
|
962 |
+
.rtl .wp-pointer-right {
|
963 |
+
margin-left: 15px;
|
964 |
+
margin-right: 0;
|
965 |
+
}
|
966 |
|
967 |
/* =Responsive
|
968 |
-------------------------------------------------------------- */
|
970 |
.columns-container {
|
971 |
margin-right: 0;
|
972 |
}
|
973 |
+
.rtl .columns-container {
|
974 |
+
margin-left: 0;
|
975 |
+
margin-right: auto;
|
976 |
+
}
|
977 |
.columns-right {
|
978 |
margin-top: 0;
|
979 |
margin-right: 0;
|
980 |
width: 100%;
|
981 |
}
|
982 |
+
.rtl .columns-right {
|
983 |
+
margin-left: 0;
|
984 |
+
margin-right: auto;
|
985 |
+
}
|
986 |
.columns-right-inside.fixed {
|
987 |
position: relative;
|
988 |
top: 0;
|
994 |
.columns-right #plugin-support {
|
995 |
display: none;
|
996 |
}
|
997 |
+
}
|
assets/css/column.css
CHANGED
@@ -19,6 +19,10 @@ span.status-closed {
|
|
19 |
margin-right: 2px;
|
20 |
overflow: hidden;
|
21 |
}
|
|
|
|
|
|
|
|
|
22 |
.cpac-column-value-image img {
|
23 |
display: block;
|
24 |
margin: 0 auto;
|
@@ -27,6 +31,10 @@ span.status-closed {
|
|
27 |
padding-right: 5px;
|
28 |
padding-bottom: 4px;
|
29 |
}
|
|
|
|
|
|
|
|
|
30 |
|
31 |
/* =Color Column
|
32 |
-------------------------------------------------------------- */
|
@@ -50,9 +58,14 @@ div.cpac-color span {
|
|
50 |
min-width: 47px;
|
51 |
text-align: center;
|
52 |
}
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
/* =Available Sizes column
|
55 |
-------------------------------------------------------------- */
|
56 |
div.sizes span.not-available {
|
57 |
color: #999;
|
58 |
-
}
|
19 |
margin-right: 2px;
|
20 |
overflow: hidden;
|
21 |
}
|
22 |
+
.rtl .cpac-column-value-image {
|
23 |
+
margin-left: 2px;
|
24 |
+
margin-right: 0;
|
25 |
+
}
|
26 |
.cpac-column-value-image img {
|
27 |
display: block;
|
28 |
margin: 0 auto;
|
31 |
padding-right: 5px;
|
32 |
padding-bottom: 4px;
|
33 |
}
|
34 |
+
.rtl .column-column-attachment img {
|
35 |
+
padding-left: 5px;
|
36 |
+
padding-right: 0;
|
37 |
+
}
|
38 |
|
39 |
/* =Color Column
|
40 |
-------------------------------------------------------------- */
|
58 |
min-width: 47px;
|
59 |
text-align: center;
|
60 |
}
|
61 |
+
.rtl div.cpac-color span {
|
62 |
+
float: right;
|
63 |
+
margin-left: 12px;
|
64 |
+
margin-right: 0;
|
65 |
+
}
|
66 |
|
67 |
/* =Available Sizes column
|
68 |
-------------------------------------------------------------- */
|
69 |
div.sizes span.not-available {
|
70 |
color: #999;
|
71 |
+
}
|
assets/images/order_arrow-rtl.png
ADDED
Binary file
|
assets/js/admin-columns.js
CHANGED
@@ -179,9 +179,9 @@ jQuery.fn.column_bind_events = function() {
|
|
179 |
|
180 |
/** tooltip */
|
181 |
column.find('.column-form .label label').hover(function(){
|
182 |
-
jQuery(this).
|
183 |
},function(){
|
184 |
-
jQuery(this).
|
185 |
});
|
186 |
};
|
187 |
|
179 |
|
180 |
/** tooltip */
|
181 |
column.find('.column-form .label label').hover(function(){
|
182 |
+
jQuery(this).find('p.description').show();
|
183 |
},function(){
|
184 |
+
jQuery(this).find('p.description').hide();
|
185 |
});
|
186 |
};
|
187 |
|
classes/column.php
CHANGED
@@ -121,7 +121,7 @@ class CPAC_Column {
|
|
121 |
// set column name to column type
|
122 |
$properties['name'] = $properties['type'];
|
123 |
|
124 |
-
//
|
125 |
if ( method_exists( $this, 'apply_conditional' ) )
|
126 |
$properties['is_registered'] = $this->apply_conditional();
|
127 |
|
@@ -754,11 +754,9 @@ class CPAC_Column {
|
|
754 |
<td class="label">
|
755 |
<label for="<?php $this->attr_id( $pointer ); ?>">
|
756 |
<?php echo stripslashes( $label ); ?>
|
|
|
|
|
757 |
</label>
|
758 |
-
<?php if( $description ) : ?>
|
759 |
-
<p class="description"><?php echo $description; ?></p>
|
760 |
-
<a href="javascript:;" class="more-info"></a>
|
761 |
-
<?php endif; ?>
|
762 |
</td>
|
763 |
<?php
|
764 |
}
|
121 |
// set column name to column type
|
122 |
$properties['name'] = $properties['type'];
|
123 |
|
124 |
+
// apply conditional statements wheter this column should be available or not.
|
125 |
if ( method_exists( $this, 'apply_conditional' ) )
|
126 |
$properties['is_registered'] = $this->apply_conditional();
|
127 |
|
754 |
<td class="label">
|
755 |
<label for="<?php $this->attr_id( $pointer ); ?>">
|
756 |
<?php echo stripslashes( $label ); ?>
|
757 |
+
|
758 |
+
<?php if( $description ) : ?><p class="description"><?php echo $description; ?></p><?php endif; ?>
|
759 |
</label>
|
|
|
|
|
|
|
|
|
760 |
</td>
|
761 |
<?php
|
762 |
}
|
classes/column/custom-field.php
CHANGED
@@ -165,7 +165,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
|
|
165 |
}
|
166 |
|
167 |
/**
|
168 |
-
* Get
|
169 |
*
|
170 |
* @since 2.0.0
|
171 |
*
|
@@ -292,18 +292,22 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
|
|
292 |
*/
|
293 |
function get_value( $id ) {
|
294 |
|
295 |
-
|
296 |
-
|
|
|
297 |
|
298 |
-
|
299 |
-
|
|
|
|
|
|
|
300 |
|
301 |
// add before and after string
|
302 |
-
if ( $
|
303 |
-
$
|
304 |
}
|
305 |
|
306 |
-
return $
|
307 |
}
|
308 |
|
309 |
/**
|
@@ -379,13 +383,13 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
|
|
379 |
<tr class="column_before">
|
380 |
<?php $this->label_view( __( "Before", 'cpac' ), __( 'This text will appear before the custom field value.', 'cpac' ), 'before' ); ?>
|
381 |
<td class="input">
|
382 |
-
<input type="text" class="cpac-before" name="<?php $this->attr_name( 'before' ); ?>" id="<?php $this->attr_id( 'before' ); ?>" value="<?php echo $this->options->before; ?>"/>
|
383 |
</td>
|
384 |
</tr>
|
385 |
<tr class="column_after">
|
386 |
<?php $this->label_view( __( "After", 'cpac' ), __( 'This text will appear after the custom field value.', 'cpac' ), 'after' ); ?>
|
387 |
<td class="input">
|
388 |
-
<input type="text" class="cpac-after" name="<?php $this->attr_name( 'after' ); ?>" id="<?php $this->attr_id( 'after' ); ?>" value="<?php echo $this->options->after; ?>"/>
|
389 |
</td>
|
390 |
</tr>
|
391 |
<?php
|
165 |
}
|
166 |
|
167 |
/**
|
168 |
+
* Get meta value
|
169 |
*
|
170 |
* @since 2.0.0
|
171 |
*
|
292 |
*/
|
293 |
function get_value( $id ) {
|
294 |
|
295 |
+
$value = '';
|
296 |
+
|
297 |
+
if ( $meta = $this->get_meta_by_id( $id ) ) {
|
298 |
|
299 |
+
// get value by meta
|
300 |
+
$value = $this->get_value_by_meta( $meta );
|
301 |
+
}
|
302 |
+
|
303 |
+
$value = apply_filters( 'cac/column/meta/value', $value, $id, $this );
|
304 |
|
305 |
// add before and after string
|
306 |
+
if ( $value ) {
|
307 |
+
$value = "{$this->options->before}{$value}{$this->options->after}";
|
308 |
}
|
309 |
|
310 |
+
return $value;
|
311 |
}
|
312 |
|
313 |
/**
|
383 |
<tr class="column_before">
|
384 |
<?php $this->label_view( __( "Before", 'cpac' ), __( 'This text will appear before the custom field value.', 'cpac' ), 'before' ); ?>
|
385 |
<td class="input">
|
386 |
+
<input type="text" class="cpac-before" name="<?php $this->attr_name( 'before' ); ?>" id="<?php $this->attr_id( 'before' ); ?>" value="<?php echo esc_attr( stripslashes( $this->options->before ) ); ?>"/>
|
387 |
</td>
|
388 |
</tr>
|
389 |
<tr class="column_after">
|
390 |
<?php $this->label_view( __( "After", 'cpac' ), __( 'This text will appear after the custom field value.', 'cpac' ), 'after' ); ?>
|
391 |
<td class="input">
|
392 |
+
<input type="text" class="cpac-after" name="<?php $this->attr_name( 'after' ); ?>" id="<?php $this->attr_id( 'after' ); ?>" value="<?php echo esc_attr( stripslashes( $this->options->after ) ); ?>"/>
|
393 |
</td>
|
394 |
</tr>
|
395 |
<?php
|
classes/export_import.php
DELETED
@@ -1,179 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* CPAC_Export_Import Class
|
5 |
-
*
|
6 |
-
* @since 1.4.6.5
|
7 |
-
*
|
8 |
-
*/
|
9 |
-
class CPAC_Export_Import {
|
10 |
-
|
11 |
-
private $cpac;
|
12 |
-
|
13 |
-
/**
|
14 |
-
* Constructor
|
15 |
-
*
|
16 |
-
* @since 1.4.6.5
|
17 |
-
*/
|
18 |
-
function __construct( $cpac ) {
|
19 |
-
|
20 |
-
$this->cpac = $cpac;
|
21 |
-
|
22 |
-
add_action( 'admin_init', array( $this, 'download_export' ) );
|
23 |
-
add_action( 'admin_init', array( $this, 'handle_file_import' ) );
|
24 |
-
}
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Get export string
|
28 |
-
*
|
29 |
-
* @since 2.0.0
|
30 |
-
*/
|
31 |
-
function get_export_string( $types = array() ) {
|
32 |
-
|
33 |
-
if ( empty( $types ) )
|
34 |
-
return false;
|
35 |
-
|
36 |
-
$columns = array();
|
37 |
-
|
38 |
-
// get stored columns
|
39 |
-
foreach ( $this->cpac->storage_models as $storage_model ) {
|
40 |
-
|
41 |
-
if ( ! in_array( $storage_model->key, $types ) )
|
42 |
-
continue;
|
43 |
-
|
44 |
-
$columns[ $storage_model->key ] = $storage_model->get_stored_columns();
|
45 |
-
}
|
46 |
-
|
47 |
-
if ( empty( $columns ) )
|
48 |
-
return false;
|
49 |
-
|
50 |
-
return "<!-- START: Admin Columns export -->\n" . base64_encode( serialize( array_filter( $columns ) ) ) . "\n<!-- END: Admin Columns export -->";
|
51 |
-
}
|
52 |
-
|
53 |
-
/**
|
54 |
-
* Download Export
|
55 |
-
*
|
56 |
-
* @since 2.0.0
|
57 |
-
*/
|
58 |
-
function download_export() {
|
59 |
-
if ( ! isset( $_REQUEST['_cpac_nonce'] ) || ! wp_verify_nonce( $_REQUEST['_cpac_nonce'], 'download-export' ) )
|
60 |
-
return false;
|
61 |
-
|
62 |
-
if ( empty( $_REQUEST['export_types'] ) ) {
|
63 |
-
|
64 |
-
cpac_admin_message( __( 'Export field is empty. Please select your types from the left column.', 'cpac' ), 'error' );
|
65 |
-
|
66 |
-
return false;
|
67 |
-
}
|
68 |
-
|
69 |
-
$single_type = '';
|
70 |
-
if ( 1 == count( $_REQUEST['export_types'] ) ) {
|
71 |
-
$single_type = '_' . $_REQUEST['export_types'][0];
|
72 |
-
}
|
73 |
-
|
74 |
-
$filename = 'admin-columns-export_' . date('Y-m-d', time() ) . $single_type;
|
75 |
-
|
76 |
-
// generate text file
|
77 |
-
header( "Content-disposition: attachment; filename={$filename}.txt" );
|
78 |
-
header( 'Content-type: text/plain' );
|
79 |
-
echo $this->get_export_string( $_REQUEST['export_types'] );
|
80 |
-
exit;
|
81 |
-
}
|
82 |
-
|
83 |
-
/**
|
84 |
-
* Handle file import
|
85 |
-
*
|
86 |
-
* @uses wp_import_handle_upload()
|
87 |
-
* @since 2.0.0
|
88 |
-
*/
|
89 |
-
function handle_file_import() {
|
90 |
-
if ( ! isset( $_REQUEST['_cpac_nonce'] ) || ! wp_verify_nonce( $_REQUEST['_cpac_nonce'], 'file-import' ) || empty( $_FILES['import'] ) )
|
91 |
-
return false;
|
92 |
-
|
93 |
-
// handles upload
|
94 |
-
$file = wp_import_handle_upload();
|
95 |
-
|
96 |
-
// any errors?
|
97 |
-
$error = false;
|
98 |
-
if ( isset( $file['error'] ) ) {
|
99 |
-
$error = __( 'Sorry, there has been an error.', 'cpac' ) . '<br />' . esc_html( $file['error'] );
|
100 |
-
} else if ( ! file_exists( $file['file'] ) ) {
|
101 |
-
$error = __( 'Sorry, there has been an error.', 'cpac' ) . '<br />' . sprintf( __( 'The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem.', 'cpac' ), esc_html( $file['file'] ) );
|
102 |
-
}
|
103 |
-
|
104 |
-
if ( $error ) {
|
105 |
-
cpac_admin_message( $error, 'error' );
|
106 |
-
|
107 |
-
return false;
|
108 |
-
}
|
109 |
-
// read file contents and start the import
|
110 |
-
$content = file_get_contents( $file['file'] );
|
111 |
-
|
112 |
-
// cleanup
|
113 |
-
wp_delete_attachment( $file['id'] );
|
114 |
-
|
115 |
-
// decode file contents
|
116 |
-
$columns = $this->get_decoded_settings( $content );
|
117 |
-
|
118 |
-
if ( ! $columns ) {
|
119 |
-
cpac_admin_message( __( 'Import failed. File does not contain Admin Column settings.', 'cpac' ), 'error' );
|
120 |
-
return false;
|
121 |
-
}
|
122 |
-
|
123 |
-
// store settings
|
124 |
-
foreach( $columns as $type => $cols ) {
|
125 |
-
|
126 |
-
$storage_model = $this->cpac->get_storage_model( $type );
|
127 |
-
$storage_model->store( $cols );
|
128 |
-
}
|
129 |
-
}
|
130 |
-
|
131 |
-
/**
|
132 |
-
* Get decoded settings
|
133 |
-
*
|
134 |
-
* @since 2.0.0
|
135 |
-
*
|
136 |
-
* @param string $encoded_string
|
137 |
-
* @return array Columns
|
138 |
-
*/
|
139 |
-
function get_decoded_settings( $encoded_string = '' ) {
|
140 |
-
if( ! $encoded_string || ! is_string( $encoded_string ) || strpos( $encoded_string, '<!-- START: Admin Columns export -->' ) === false )
|
141 |
-
return false;
|
142 |
-
|
143 |
-
// decode
|
144 |
-
$encoded_string = str_replace( "<!-- START: Admin Columns export -->\n", "", $encoded_string );
|
145 |
-
$encoded_string = str_replace( "\n<!-- END: Admin Columns export -->", "", $encoded_string);
|
146 |
-
$decoded = maybe_unserialize( base64_decode( trim( $encoded_string ) ) );
|
147 |
-
|
148 |
-
if ( empty( $decoded ) || ! is_array( $decoded ) )
|
149 |
-
return false;
|
150 |
-
|
151 |
-
return $decoded;
|
152 |
-
}
|
153 |
-
|
154 |
-
/**
|
155 |
-
* Update settings
|
156 |
-
*
|
157 |
-
* @since 2.0.0
|
158 |
-
*
|
159 |
-
* @param array $columns Columns
|
160 |
-
* @return bool
|
161 |
-
*/
|
162 |
-
function update_settings( $columns ) {
|
163 |
-
$options = get_option( 'cpac_options' );
|
164 |
-
|
165 |
-
// merge saved setting if they exist..
|
166 |
-
if ( ! empty( $options['columns'] ) ) {
|
167 |
-
$options['columns'] = array_merge( $options['columns'], $columns );
|
168 |
-
}
|
169 |
-
|
170 |
-
// .. if there are no setting yet use the import
|
171 |
-
else {
|
172 |
-
$options = array(
|
173 |
-
'columns' => $columns
|
174 |
-
);
|
175 |
-
}
|
176 |
-
|
177 |
-
return update_option( 'cpac_options', array_filter( $options ) );
|
178 |
-
}
|
179 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/settings.php
CHANGED
@@ -123,6 +123,11 @@ class CPAC_Settings {
|
|
123 |
// columns
|
124 |
wp_enqueue_script( 'cpac-admin-columns', CPAC_URL . 'assets/js/admin-columns.js', array( 'jquery', 'dashboard', 'jquery-ui-slider', 'jquery-ui-sortable' ), CPAC_VERSION );
|
125 |
wp_enqueue_script( 'cpac-custom-fields-js', CPAC_URL . 'assets/js/custom-fields.js', array( 'jquery' ), CPAC_VERSION );
|
|
|
|
|
|
|
|
|
|
|
126 |
}
|
127 |
|
128 |
/**
|
@@ -201,15 +206,14 @@ class CPAC_Settings {
|
|
201 |
),
|
202 |
array(
|
203 |
'title' => __( "Basics", 'cpac' ),
|
204 |
-
'content' =>
|
205 |
-
|
206 |
-
<p>". __( "
|
207 |
-
<h5>". __( "Change
|
208 |
-
<p>". __( "By
|
209 |
-
<h5>". __( "Change
|
210 |
-
<p>". __( "By clicking on the triangle you will see the column options.
|
211 |
-
|
212 |
-
<p>". __( "By clicking on the triangle you will see the column options. By using the draggable slider yo can set the width of the columns in percentages.", 'cpac' ) . "</p>"
|
213 |
),
|
214 |
array(
|
215 |
'title' => __( "Custom Field", 'cpac' ),
|
@@ -578,7 +582,7 @@ class CPAC_Settings {
|
|
578 |
<?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
|
579 |
<div class="form-update">
|
580 |
<input type="hidden" name="cpac_action" value="update_by_type" />
|
581 |
-
<input type="submit" class="button-primary submit-update" value="<?php echo $has_been_stored ? __( 'Update' ) : __('Publish'); ?>" accesskey="u" >
|
582 |
</div>
|
583 |
<?php if ( $has_been_stored ) : ?>
|
584 |
<div class="form-reset">
|
@@ -697,13 +701,21 @@ class CPAC_Settings {
|
|
697 |
<form method="post" action="options.php">
|
698 |
<?php settings_fields( 'cpac-general-settings' ); ?>
|
699 |
<?php $options = get_option( 'cpac_general_options' ); ?>
|
700 |
-
<
|
|
|
|
|
701 |
<p>
|
702 |
<label for="show_hidden">
|
703 |
<input name="cpac_general_options[show_hidden]" id="show_hidden" type="checkbox" value="1" <?php checked( isset( $options['show_hidden'] ) ? $options['show_hidden'] : '', '1' ); ?>>
|
704 |
<?php _e( 'Show hidden custom fields. Default is <code>off</code>.', 'cpac' ); ?>
|
705 |
</label>
|
706 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
707 |
|
708 |
<?php do_action( 'cac/settings/general', $options ); ?>
|
709 |
|
123 |
// columns
|
124 |
wp_enqueue_script( 'cpac-admin-columns', CPAC_URL . 'assets/js/admin-columns.js', array( 'jquery', 'dashboard', 'jquery-ui-slider', 'jquery-ui-sortable' ), CPAC_VERSION );
|
125 |
wp_enqueue_script( 'cpac-custom-fields-js', CPAC_URL . 'assets/js/custom-fields.js', array( 'jquery' ), CPAC_VERSION );
|
126 |
+
|
127 |
+
// javascript translations
|
128 |
+
wp_localize_script( 'cpac-admin-columns', 'cpac_i18n', array(
|
129 |
+
'clone' => __( '%s column is already present and can not be duplicated.', 'cpac' ),
|
130 |
+
));
|
131 |
}
|
132 |
|
133 |
/**
|
206 |
),
|
207 |
array(
|
208 |
'title' => __( "Basics", 'cpac' ),
|
209 |
+
'content' => "
|
210 |
+
<h5>" . __( "Change order", 'cpac' ) . "</h5>
|
211 |
+
<p>" . __( "By dragging the columns you can change the order which they will appear in.", 'cpac' ) . "</p>
|
212 |
+
<h5>" . __( "Change label", 'cpac' ) . "</h5>
|
213 |
+
<p>" . __( "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading.", 'cpac' ) . "</p>
|
214 |
+
<h5>" . __( "Change column width", 'cpac' ) . "</h5>
|
215 |
+
<p>" . __( "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages.", 'cpac' ) . "</p>
|
216 |
+
"
|
|
|
217 |
),
|
218 |
array(
|
219 |
'title' => __( "Custom Field", 'cpac' ),
|
582 |
<?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
|
583 |
<div class="form-update">
|
584 |
<input type="hidden" name="cpac_action" value="update_by_type" />
|
585 |
+
<input type="submit" class="button-primary submit-update" value="<?php echo $has_been_stored ? __( 'Update' ) : __('Publish'); ?> <?php echo $storage_model->label; ?>" accesskey="u" >
|
586 |
</div>
|
587 |
<?php if ( $has_been_stored ) : ?>
|
588 |
<div class="form-reset">
|
701 |
<form method="post" action="options.php">
|
702 |
<?php settings_fields( 'cpac-general-settings' ); ?>
|
703 |
<?php $options = get_option( 'cpac_general_options' ); ?>
|
704 |
+
<p>
|
705 |
+
<br/>
|
706 |
+
</p>
|
707 |
<p>
|
708 |
<label for="show_hidden">
|
709 |
<input name="cpac_general_options[show_hidden]" id="show_hidden" type="checkbox" value="1" <?php checked( isset( $options['show_hidden'] ) ? $options['show_hidden'] : '', '1' ); ?>>
|
710 |
<?php _e( 'Show hidden custom fields. Default is <code>off</code>.', 'cpac' ); ?>
|
711 |
</label>
|
712 |
</p>
|
713 |
+
<p>
|
714 |
+
<label for="show_edit_button">
|
715 |
+
<input name="cpac_general_options[show_edit_button]" id="show_edit_button" type="checkbox" value="1" <?php checked( isset( $options['show_edit_button'] ) ? $options['show_edit_button'] : '', '1' ); ?>>
|
716 |
+
<?php _e( 'Show "Edit Columns" button on admin screens. Default is <code>off</code>.', 'cpac' ); ?>
|
717 |
+
</label>
|
718 |
+
</p>
|
719 |
|
720 |
<?php do_action( 'cac/settings/general', $options ); ?>
|
721 |
|
classes/storage_model.php
CHANGED
@@ -46,6 +46,13 @@ abstract class CPAC_Storage_Model {
|
|
46 |
*/
|
47 |
protected $custom_columns;
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
/**
|
50 |
* Get default columns
|
51 |
*
|
@@ -221,7 +228,8 @@ abstract class CPAC_Storage_Model {
|
|
221 |
|
222 |
foreach( $iterator as $leaf ) {
|
223 |
|
224 |
-
|
|
|
225 |
|
226 |
// build classname from filename
|
227 |
$class_name = implode( '_', array_map( 'ucfirst', explode( '-', basename( $leaf->getFilename(), '.php' ) ) ) );
|
@@ -374,6 +382,15 @@ abstract class CPAC_Storage_Model {
|
|
374 |
return $columns;
|
375 |
}
|
376 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
/**
|
378 |
* Get Columns
|
379 |
*
|
@@ -463,11 +480,15 @@ abstract class CPAC_Storage_Model {
|
|
463 |
*/
|
464 |
function get_column_by_name( $name ) {
|
465 |
|
466 |
-
|
467 |
-
|
|
|
|
|
|
|
|
|
468 |
return false;
|
469 |
|
470 |
-
return $columns[ $name ];
|
471 |
}
|
472 |
|
473 |
/**
|
46 |
*/
|
47 |
protected $custom_columns;
|
48 |
|
49 |
+
/**
|
50 |
+
* Columns
|
51 |
+
*
|
52 |
+
* @since 2.0.1
|
53 |
+
*/
|
54 |
+
protected $columns;
|
55 |
+
|
56 |
/**
|
57 |
* Get default columns
|
58 |
*
|
228 |
|
229 |
foreach( $iterator as $leaf ) {
|
230 |
|
231 |
+
// skip files that start with . ( e.g: .SVN .DS_STORE )
|
232 |
+
if ( $leaf->isDot() || $leaf->isDir() || substr( $leaf->getFilename(), 0, 1 ) === '.' ) continue;
|
233 |
|
234 |
// build classname from filename
|
235 |
$class_name = implode( '_', array_map( 'ucfirst', explode( '-', basename( $leaf->getFilename(), '.php' ) ) ) );
|
382 |
return $columns;
|
383 |
}
|
384 |
|
385 |
+
/**
|
386 |
+
* Set Columns
|
387 |
+
*
|
388 |
+
* @since 2.0.2
|
389 |
+
*/
|
390 |
+
function set_columns() {
|
391 |
+
$this->columns = $this->get_columns();
|
392 |
+
}
|
393 |
+
|
394 |
/**
|
395 |
* Get Columns
|
396 |
*
|
480 |
*/
|
481 |
function get_column_by_name( $name ) {
|
482 |
|
483 |
+
// @todo check if no issues come up by using $this->columns
|
484 |
+
//$columns = $this->get_columns();
|
485 |
+
//if ( ! isset( $columns[ $name ] ) )
|
486 |
+
// return false;*/
|
487 |
+
|
488 |
+
if ( ! isset( $this->columns[ $name ] ) )
|
489 |
return false;
|
490 |
|
491 |
+
return $this->columns[ $name ];
|
492 |
}
|
493 |
|
494 |
/**
|
classes/storage_model/comment.php
CHANGED
@@ -16,6 +16,10 @@ class CPAC_Storage_Model_Comment extends CPAC_Storage_Model {
|
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
|
|
|
|
|
|
|
|
19 |
// headings
|
20 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
21 |
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
19 |
+
// Populate columns variable.
|
20 |
+
// This is used for manage_value. By storing these columns we greatly improve performance.
|
21 |
+
add_action( 'admin_init', array( $this, 'set_columns' ) );
|
22 |
+
|
23 |
// headings
|
24 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
25 |
|
classes/storage_model/link.php
CHANGED
@@ -16,6 +16,10 @@ class CPAC_Storage_Model_Link extends CPAC_Storage_Model {
|
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
|
|
|
|
|
|
|
|
19 |
// headings
|
20 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
21 |
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
19 |
+
// Populate columns variable.
|
20 |
+
// This is used for manage_value. By storing these columns we greatly improve performance.
|
21 |
+
add_action( 'admin_init', array( $this, 'set_columns' ) );
|
22 |
+
|
23 |
// headings
|
24 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
25 |
|
classes/storage_model/media.php
CHANGED
@@ -16,6 +16,10 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
|
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
|
|
|
|
|
|
|
|
19 |
// headings
|
20 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
21 |
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
19 |
+
// Populate columns variable.
|
20 |
+
// This is used for manage_value. By storing these columns we greatly improve performance.
|
21 |
+
add_action( 'admin_init', array( $this, 'set_columns' ) );
|
22 |
+
|
23 |
// headings
|
24 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
25 |
|
classes/storage_model/post.php
CHANGED
@@ -14,8 +14,18 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
|
|
14 |
$this->type = 'post';
|
15 |
$this->page = 'edit';
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
$this->set_custom_columns();
|
18 |
|
|
|
|
|
|
|
|
|
19 |
// Headings
|
20 |
|
21 |
// Since 3.1
|
@@ -114,8 +124,10 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
|
|
114 |
|
115 |
$value = '';
|
116 |
|
117 |
-
|
118 |
-
|
|
|
|
|
119 |
$value = $column->get_value( $post_id );
|
120 |
|
121 |
$value = apply_filters( "cac/column/value/posts", $value, $column );
|
14 |
$this->type = 'post';
|
15 |
$this->page = 'edit';
|
16 |
|
17 |
+
// @todo_minor
|
18 |
+
// Add parent::__construct and move these two over:
|
19 |
+
// $this->set_custom_columns()
|
20 |
+
// add_action( 'admin_init', array( $this, 'set_columns' ) );
|
21 |
+
// also for the other types
|
22 |
+
|
23 |
$this->set_custom_columns();
|
24 |
|
25 |
+
// Populate columns variable.
|
26 |
+
// This is used for manage_value. By storing these columns we greatly improve performance.
|
27 |
+
add_action( 'admin_init', array( $this, 'set_columns' ) );
|
28 |
+
|
29 |
// Headings
|
30 |
|
31 |
// Since 3.1
|
124 |
|
125 |
$value = '';
|
126 |
|
127 |
+
$column = $this->get_column_by_name( $column_name );
|
128 |
+
|
129 |
+
// get value
|
130 |
+
if ( $column )
|
131 |
$value = $column->get_value( $post_id );
|
132 |
|
133 |
$value = apply_filters( "cac/column/value/posts", $value, $column );
|
classes/storage_model/user.php
CHANGED
@@ -16,6 +16,10 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
|
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
|
|
|
|
|
|
|
|
19 |
// headings
|
20 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
21 |
|
16 |
|
17 |
$this->set_custom_columns();
|
18 |
|
19 |
+
// Populate columns variable.
|
20 |
+
// This is used for manage_value. By storing these columns we greatly improve performance.
|
21 |
+
add_action( 'admin_init', array( $this, 'set_columns' ) );
|
22 |
+
|
23 |
// headings
|
24 |
add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
|
25 |
|
classes/upgrade.php
CHANGED
@@ -350,6 +350,8 @@ class CPAC_Upgrade {
|
|
350 |
*/
|
351 |
public function admin_scripts() {
|
352 |
wp_enqueue_script( 'cpac-upgrade', CPAC_URL . 'assets/js/upgrade.js', array( 'jquery' ), CPAC_VERSION );
|
|
|
|
|
353 |
wp_enqueue_style( 'cpac-admin', CPAC_URL . 'assets/css/admin-column.css', array(), CPAC_VERSION, 'all' );
|
354 |
|
355 |
// javascript translations
|
350 |
*/
|
351 |
public function admin_scripts() {
|
352 |
wp_enqueue_script( 'cpac-upgrade', CPAC_URL . 'assets/js/upgrade.js', array( 'jquery' ), CPAC_VERSION );
|
353 |
+
|
354 |
+
// CSS
|
355 |
wp_enqueue_style( 'cpac-admin', CPAC_URL . 'assets/css/admin-column.css', array(), CPAC_VERSION, 'all' );
|
356 |
|
357 |
// javascript translations
|
codepress-admin-columns.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
|
4 |
Plugin Name: Codepress Admin Columns
|
5 |
-
Version: 2.0.
|
6 |
Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
7 |
Author: Codepress
|
8 |
Author URI: http://www.codepresshq.com
|
@@ -29,7 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
29 |
|
30 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
31 |
|
32 |
-
define( 'CPAC_VERSION', '2.0.
|
33 |
define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
|
34 |
define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
|
35 |
define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
|
@@ -340,7 +340,11 @@ class CPAC {
|
|
340 |
.cpac-edit { margin-right: 3px; vertical-align: middle; }
|
341 |
</style>
|
342 |
|
343 |
-
<?php
|
|
|
|
|
|
|
|
|
344 |
<script type="text/javascript">
|
345 |
jQuery(document).ready(function() {
|
346 |
jQuery('.tablenav.top .actions:last').append('<a href="<?php echo $edit_link; ?>" class="cpac-edit add-new-h2"><?php _e( 'Edit columns', 'cpac' ); ?></a>');
|
2 |
/*
|
3 |
|
4 |
Plugin Name: Codepress Admin Columns
|
5 |
+
Version: 2.0.2
|
6 |
Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
7 |
Author: Codepress
|
8 |
Author URI: http://www.codepresshq.com
|
29 |
|
30 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
31 |
|
32 |
+
define( 'CPAC_VERSION', '2.0.2' ); // current plugin version
|
33 |
define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
|
34 |
define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
|
35 |
define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
|
340 |
.cpac-edit { margin-right: 3px; vertical-align: middle; }
|
341 |
</style>
|
342 |
|
343 |
+
<?php
|
344 |
+
|
345 |
+
$general_options = get_option( 'cpac_general_options' );
|
346 |
+
|
347 |
+
if ( current_user_can( 'manage_admin_columns' ) && $edit_link && isset( $general_options['show_edit_button'] ) && '1' === $general_options['show_edit_button'] ) : ?>
|
348 |
<script type="text/javascript">
|
349 |
jQuery(document).ready(function() {
|
350 |
jQuery('.tablenav.top .actions:last').append('<a href="<?php echo $edit_link; ?>" class="cpac-edit add-new-h2"><?php _e( 'Edit columns', 'cpac' ); ?></a>');
|
languages/cac-addon-pro.po
ADDED
@@ -0,0 +1,265 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Admin Columns - Pro Addon\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-14 15:29+0100\n"
|
6 |
+
"PO-Revision-Date: 2013-08-14 15:29+0100\n"
|
7 |
+
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
+
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
+
"Language: English\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.7\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
"X-Poedit-SearchPath-1: ..\n"
|
19 |
+
|
20 |
+
#: ../cac-addon-pro.php:91
|
21 |
+
msgid ""
|
22 |
+
"Sortorder has been <strong>deactivated</strong>. You are using the Pro add-"
|
23 |
+
"on, which contains the same functionality."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: ../cac-addon-pro.php:117
|
27 |
+
msgid "Pro add-on"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../cac-addon-pro.php:133
|
31 |
+
#, php-format
|
32 |
+
msgid ""
|
33 |
+
"The Pro add-on is enabled but not effective. It requires %s in order to work."
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: ../classes/update.php:159
|
37 |
+
msgid "Could not connect to API. Try again at a later time please."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: ../classes/update.php:167
|
41 |
+
msgid "Wrong response from API."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: ../classes/update.php:209
|
45 |
+
msgid "licence is empty."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: ../classes/update.php:227
|
49 |
+
msgid "error"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: ../classes/update.php:228
|
53 |
+
#, php-format
|
54 |
+
msgid "Login into your account at %s to see your current licence activations."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: ../classes/update.php:232
|
58 |
+
msgid "activation failed"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: ../classes/update.php:239
|
62 |
+
msgid "licence is <strong>activated</strong>."
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../classes/update.php:260
|
66 |
+
msgid "No licence key found."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../classes/update.php:265
|
70 |
+
msgid "Licence key is not active."
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../classes/update.php:288
|
74 |
+
msgid "licence is <strong>deactivated</strong>."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: ../classes/update.php:320
|
78 |
+
msgid "Add-ons updates"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../classes/update.php:321 ../classes/update.php:367
|
82 |
+
msgid "Enter your licence to receive automatic updates."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: ../classes/update.php:357
|
86 |
+
msgid "Automatic updates are enabled."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../classes/update.php:358
|
90 |
+
msgid "Deactivate licence"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: ../classes/update.php:364
|
94 |
+
msgid "Fill in your licence code"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../classes/update.php:365
|
98 |
+
msgid "Update licence"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: ../classes/export-import/classes/export_import.php:43
|
102 |
+
msgid "Export Settings"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: ../classes/export-import/classes/export_import.php:45
|
106 |
+
msgid ""
|
107 |
+
"Pick the types for export from the left column. Click export to download "
|
108 |
+
"your column settings."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: ../classes/export-import/classes/export_import.php:46
|
112 |
+
#: ../classes/export-import/classes/export_import.php:49
|
113 |
+
#: ../classes/export-import/classes/export_import.php:63
|
114 |
+
#: ../classes/export-import/classes/export_import.php:66
|
115 |
+
msgid "Instructions"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: ../classes/export-import/classes/export_import.php:48
|
119 |
+
msgid "Export Columns Types"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: ../classes/export-import/classes/export_import.php:51
|
123 |
+
msgid "Select one or more Column Types from the left section by clicking them."
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: ../classes/export-import/classes/export_import.php:52
|
127 |
+
msgid "Click export."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: ../classes/export-import/classes/export_import.php:53
|
131 |
+
msgid "Save the export file when prompted."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: ../classes/export-import/classes/export_import.php:54
|
135 |
+
msgid "Upload and import your settings file through Import Settings."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: ../classes/export-import/classes/export_import.php:60
|
139 |
+
msgid "Import Settings"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: ../classes/export-import/classes/export_import.php:62
|
143 |
+
msgid "Copy and paste your import settings here."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: ../classes/export-import/classes/export_import.php:65
|
147 |
+
msgid "Import Columns Types"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: ../classes/export-import/classes/export_import.php:68
|
151 |
+
msgid "Choose a Admin Columns Export file to upload."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: ../classes/export-import/classes/export_import.php:69
|
155 |
+
msgid "Click upload file and import."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: ../classes/export-import/classes/export_import.php:70
|
159 |
+
msgid "That's it! You imported settings are now active."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: ../classes/export-import/classes/export_import.php:94
|
163 |
+
msgid "General"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: ../classes/export-import/classes/export_import.php:95
|
167 |
+
msgid "Posts"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: ../classes/export-import/classes/export_import.php:106
|
171 |
+
msgid "select all"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: ../classes/export-import/classes/export_import.php:107
|
175 |
+
msgid "Export"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: ../classes/export-import/classes/export_import.php:111
|
179 |
+
msgid "No stored column settings are found."
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: ../classes/export-import/classes/export_import.php:129
|
183 |
+
msgid "Upload file and import"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: ../classes/export-import/classes/export_import.php:218
|
187 |
+
msgid "Export field is empty. Please select your types from the left column."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: ../classes/export-import/classes/export_import.php:253
|
191 |
+
#: ../classes/export-import/classes/export_import.php:255
|
192 |
+
msgid "Sorry, there has been an error."
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: ../classes/export-import/classes/export_import.php:255
|
196 |
+
#, php-format
|
197 |
+
msgid ""
|
198 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
199 |
+
"this was caused by a permissions problem."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: ../classes/export-import/classes/export_import.php:273
|
203 |
+
msgid "Import failed. File does not contain Admin Column settings."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: ../classes/export-import/classes/export_import.php:283
|
207 |
+
#, php-format
|
208 |
+
msgid "Screen %s does not exist."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: ../classes/filtering/filtering.php:56
|
212 |
+
msgid "Filtering add-on"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: ../classes/filtering/filtering.php:110
|
216 |
+
msgid "Enable filtering?"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: ../classes/filtering/filtering.php:110
|
220 |
+
msgid "This will make the column support filering."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: ../classes/filtering/filtering.php:114 ../classes/sortable/sortable.php:128
|
224 |
+
msgid "Yes"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../classes/filtering/filtering.php:118 ../classes/sortable/sortable.php:132
|
228 |
+
msgid "No"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: ../classes/filtering/filtering.php:137
|
232 |
+
msgid "filter"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: ../classes/filtering/classes/model.php:114
|
236 |
+
msgid "All"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: ../classes/filtering/classes/model.php:116
|
240 |
+
msgid "Empty"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: ../classes/filtering/classes/model.php:117
|
244 |
+
msgid "Not empty"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: ../classes/sortable/sortable.php:65
|
248 |
+
msgid "Sortable add-on"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: ../classes/sortable/sortable.php:124
|
252 |
+
msgid "Enable sorting?"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../classes/sortable/sortable.php:124
|
256 |
+
msgid "This will make the column support sorting."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: ../classes/sortable/sortable.php:151
|
260 |
+
msgid "sort"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: ../classes/sortable/classes/model.php:53
|
264 |
+
msgid "Reset sorting"
|
265 |
+
msgstr ""
|
languages/cpac-ar.mo
ADDED
Binary file
|
languages/cpac-ar.po
ADDED
@@ -0,0 +1,1239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#
|
2 |
+
# Translators:
|
3 |
+
# TheHassan, 2013
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Project-Id-Version: Admin Columns\n"
|
7 |
+
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2013-08-08 08:49+0100\n"
|
9 |
+
"PO-Revision-Date: 2013-08-13 14:18+0100\n"
|
10 |
+
"Last-Translator: Codepress <info@codepress.nl>\n"
|
11 |
+
"Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/"
|
12 |
+
"language/ar/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: ar\n"
|
17 |
+
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
18 |
+
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
19 |
+
"X-Generator: Poedit 1.5.7\n"
|
20 |
+
"X-Poedit-Basepath: .\n"
|
21 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
22 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
23 |
+
"X-Poedit-SearchPath-0: .\n"
|
24 |
+
"X-Poedit-SearchPath-1: ..\n"
|
25 |
+
|
26 |
+
#: ../codepress-admin-columns.php:226 ../classes/settings.php:530
|
27 |
+
msgid "Settings"
|
28 |
+
msgstr "إعدادات"
|
29 |
+
|
30 |
+
#: ../codepress-admin-columns.php:345
|
31 |
+
msgid "Edit columns"
|
32 |
+
msgstr "تحرير الأعمدة"
|
33 |
+
|
34 |
+
#: ../classes/column.php:479
|
35 |
+
msgid "Thumbnail"
|
36 |
+
msgstr "صورة مصغرة"
|
37 |
+
|
38 |
+
#: ../classes/column.php:480
|
39 |
+
msgid "Medium"
|
40 |
+
msgstr "وسط"
|
41 |
+
|
42 |
+
#: ../classes/column.php:481
|
43 |
+
msgid "Large"
|
44 |
+
msgstr "كبير"
|
45 |
+
|
46 |
+
#: ../classes/column.php:482
|
47 |
+
msgid "Full"
|
48 |
+
msgstr "كامل"
|
49 |
+
|
50 |
+
#: ../classes/column.php:776
|
51 |
+
msgid "Date Format"
|
52 |
+
msgstr "تنسيق التاريخ"
|
53 |
+
|
54 |
+
#: ../classes/column.php:777
|
55 |
+
msgid "This will determine how the date will be displayed."
|
56 |
+
msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
|
57 |
+
|
58 |
+
#: ../classes/column.php:783
|
59 |
+
msgid "Example:"
|
60 |
+
msgstr "مثال:"
|
61 |
+
|
62 |
+
#: ../classes/column.php:785
|
63 |
+
#, php-format
|
64 |
+
msgid ""
|
65 |
+
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
66 |
+
"date format here</a>."
|
67 |
+
msgstr ""
|
68 |
+
"أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق "
|
69 |
+
"التاريخ الخاص بك هنا</a>."
|
70 |
+
|
71 |
+
#: ../classes/column.php:786
|
72 |
+
msgid "Documentation on date and time formatting."
|
73 |
+
msgstr "توثيق حول تنسيق التاريخ والوقت."
|
74 |
+
|
75 |
+
#: ../classes/column.php:803
|
76 |
+
msgid "Excerpt length"
|
77 |
+
msgstr "طول المقتطف"
|
78 |
+
|
79 |
+
#: ../classes/column.php:804
|
80 |
+
msgid "Number of words"
|
81 |
+
msgstr "عدد الكلمات"
|
82 |
+
|
83 |
+
#: ../classes/column.php:826
|
84 |
+
msgid "Preview size"
|
85 |
+
msgstr "حجم المعاينة"
|
86 |
+
|
87 |
+
#: ../classes/column.php:843 ../classes/column.php:899
|
88 |
+
msgid "Custom"
|
89 |
+
msgstr "مخصوص"
|
90 |
+
|
91 |
+
#: ../classes/column.php:846
|
92 |
+
msgid "width"
|
93 |
+
msgstr "عرض"
|
94 |
+
|
95 |
+
#: ../classes/column.php:849
|
96 |
+
msgid "height"
|
97 |
+
msgstr "إرتفاع"
|
98 |
+
|
99 |
+
#: ../classes/column.php:900 ../classes/settings.php:220
|
100 |
+
#: ../classes/column/custom-field.php:72
|
101 |
+
msgid "Default"
|
102 |
+
msgstr "إفتراضي"
|
103 |
+
|
104 |
+
#: ../classes/column.php:925 ../classes/column.php:986
|
105 |
+
#: ../classes/column/user/actions.php:65
|
106 |
+
msgid "Remove"
|
107 |
+
msgstr "إزالة"
|
108 |
+
|
109 |
+
#: ../classes/column.php:944
|
110 |
+
msgid "Type"
|
111 |
+
msgstr "نوع"
|
112 |
+
|
113 |
+
#: ../classes/column.php:944
|
114 |
+
msgid "Choose a column type."
|
115 |
+
msgstr "اختر نوع عمود"
|
116 |
+
|
117 |
+
#: ../classes/column.php:954
|
118 |
+
msgid "Label"
|
119 |
+
msgstr "العنوان"
|
120 |
+
|
121 |
+
#: ../classes/column.php:954
|
122 |
+
msgid "This is the name which will appear as the column header."
|
123 |
+
msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
|
124 |
+
|
125 |
+
#: ../classes/column.php:961 ../classes/column/media/width.php:12
|
126 |
+
msgid "Width"
|
127 |
+
msgstr "عرض"
|
128 |
+
|
129 |
+
#: ../classes/column.php:963 ../classes/column.php:964
|
130 |
+
msgid "default"
|
131 |
+
msgstr "إفتراضي"
|
132 |
+
|
133 |
+
#: ../classes/export_import.php:64
|
134 |
+
msgid "Export field is empty. Please select your types from the left column."
|
135 |
+
msgstr "حقل التصدير خالي. الرجاء اختيار أنواعك من العمود الأيمن."
|
136 |
+
|
137 |
+
#: ../classes/export_import.php:99 ../classes/export_import.php:101
|
138 |
+
msgid "Sorry, there has been an error."
|
139 |
+
msgstr "عفوا، حدث خطأ ما."
|
140 |
+
|
141 |
+
#: ../classes/export_import.php:101
|
142 |
+
#, php-format
|
143 |
+
msgid ""
|
144 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
145 |
+
"this was caused by a permissions problem."
|
146 |
+
msgstr ""
|
147 |
+
"ملف التصدير لم يتم العثور عليه في <code>%s</code>. غالبا ما يكون السبب هو "
|
148 |
+
"خطأ قي الصلاحيات."
|
149 |
+
|
150 |
+
#: ../classes/export_import.php:119
|
151 |
+
msgid "Import failed. File does not contain Admin Column settings."
|
152 |
+
msgstr "فشل الاستيراد. الملف لا يحتوي على إعدادات Admin Column."
|
153 |
+
|
154 |
+
#: ../classes/settings.php:68
|
155 |
+
msgid "Admin Columns Settings"
|
156 |
+
msgstr "إعدادات Admin Columns"
|
157 |
+
|
158 |
+
#: ../classes/settings.php:68 ../classes/settings.php:529
|
159 |
+
#: ../classes/upgrade.php:93
|
160 |
+
msgid "Admin Columns"
|
161 |
+
msgstr "Admin Columns"
|
162 |
+
|
163 |
+
#: ../classes/settings.php:179
|
164 |
+
msgid "Default settings succesfully restored."
|
165 |
+
msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
|
166 |
+
|
167 |
+
#: ../classes/settings.php:197 ../classes/settings.php:453
|
168 |
+
msgid "Overview"
|
169 |
+
msgstr "نظرة عامة"
|
170 |
+
|
171 |
+
#: ../classes/settings.php:200
|
172 |
+
msgid ""
|
173 |
+
"This plugin is for adding and removing additional columns to the "
|
174 |
+
"administration screens for post(types), pages, media library, comments, "
|
175 |
+
"links and users. Change the column's label and reorder them."
|
176 |
+
msgstr ""
|
177 |
+
"هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) "
|
178 |
+
"التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير "
|
179 |
+
"تسمية الأعمدة وإعادة ترتيبها."
|
180 |
+
|
181 |
+
#: ../classes/settings.php:203
|
182 |
+
msgid "Basics"
|
183 |
+
msgstr "مبادئ"
|
184 |
+
|
185 |
+
#: ../classes/settings.php:205
|
186 |
+
msgid "Show / Hide"
|
187 |
+
msgstr "إظهار / إخفاء"
|
188 |
+
|
189 |
+
#: ../classes/settings.php:206
|
190 |
+
msgid ""
|
191 |
+
"You can switch columns on or off by clicking on the checkbox. This will show "
|
192 |
+
"or hide each column heading."
|
193 |
+
msgstr ""
|
194 |
+
"يمكنك تشغيل أو إيقاف الأعمدة عن طريق النقر على مربع الاختيار. هذا سوف يظهر "
|
195 |
+
"أو يخفي ترويسة كل عمود."
|
196 |
+
|
197 |
+
#: ../classes/settings.php:207
|
198 |
+
msgid "Change order"
|
199 |
+
msgstr "تغيير الترتيب"
|
200 |
+
|
201 |
+
#: ../classes/settings.php:208
|
202 |
+
msgid ""
|
203 |
+
"By dragging the columns you can change the order which they will appear in."
|
204 |
+
msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
|
205 |
+
|
206 |
+
#: ../classes/settings.php:209
|
207 |
+
msgid "Change label"
|
208 |
+
msgstr "تغيير العنوان"
|
209 |
+
|
210 |
+
#: ../classes/settings.php:210
|
211 |
+
msgid ""
|
212 |
+
"By clicking on the triangle you will see the column options. Here you can "
|
213 |
+
"change each label of the columns heading."
|
214 |
+
msgstr ""
|
215 |
+
"بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
|
216 |
+
|
217 |
+
#: ../classes/settings.php:211
|
218 |
+
msgid "Change column width"
|
219 |
+
msgstr "تغيير عرض العمود"
|
220 |
+
|
221 |
+
#: ../classes/settings.php:212
|
222 |
+
msgid ""
|
223 |
+
"By clicking on the triangle you will see the column options. By using the "
|
224 |
+
"draggable slider yo can set the width of the columns in percentages."
|
225 |
+
msgstr ""
|
226 |
+
"بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب "
|
227 |
+
"يمكنك تعيين عرض الأعمدة بالنسب المئوية."
|
228 |
+
|
229 |
+
#: ../classes/settings.php:215 ../classes/column/custom-field.php:16
|
230 |
+
#: ../classes/column/custom-field.php:320
|
231 |
+
msgid "Custom Field"
|
232 |
+
msgstr "حقل مخصوص"
|
233 |
+
|
234 |
+
#: ../classes/settings.php:217
|
235 |
+
msgid "'Custom Field' column"
|
236 |
+
msgstr "عمود 'حقل مخصوص'"
|
237 |
+
|
238 |
+
#: ../classes/settings.php:218
|
239 |
+
msgid ""
|
240 |
+
"The custom field colum uses the custom fields from posts and users. There "
|
241 |
+
"are 10 types which you can set."
|
242 |
+
msgstr ""
|
243 |
+
"يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 "
|
244 |
+
"أنواع يمكنك تعيينها."
|
245 |
+
|
246 |
+
#: ../classes/settings.php:220
|
247 |
+
msgid ""
|
248 |
+
"Value: Can be either a string or array. Arrays will be flattened and values "
|
249 |
+
"are seperated by a ',' comma."
|
250 |
+
msgstr ""
|
251 |
+
"قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
|
252 |
+
"بـ '،' فاصلة."
|
253 |
+
|
254 |
+
#: ../classes/settings.php:221 ../classes/column/custom-field.php:73
|
255 |
+
#: ../classes/column/link/image.php:12
|
256 |
+
msgid "Image"
|
257 |
+
msgstr "صورة"
|
258 |
+
|
259 |
+
#: ../classes/settings.php:221
|
260 |
+
msgid ""
|
261 |
+
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
262 |
+
"comma )."
|
263 |
+
msgstr ""
|
264 |
+
"قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
|
265 |
+
|
266 |
+
#: ../classes/settings.php:222 ../classes/column/custom-field.php:75
|
267 |
+
#: ../classes/column/comment/excerpt.php:13
|
268 |
+
#: ../classes/column/post/excerpt.php:13
|
269 |
+
msgid "Excerpt"
|
270 |
+
msgstr "مقتطف"
|
271 |
+
|
272 |
+
#: ../classes/settings.php:222
|
273 |
+
msgid "Value: This will show the first 20 words of the Post content."
|
274 |
+
msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
|
275 |
+
|
276 |
+
#: ../classes/settings.php:223 ../classes/column/custom-field.php:76
|
277 |
+
msgid "Multiple Values"
|
278 |
+
msgstr "قيم متعددة"
|
279 |
+
|
280 |
+
#: ../classes/settings.php:223
|
281 |
+
msgid ""
|
282 |
+
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
283 |
+
msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
|
284 |
+
|
285 |
+
#: ../classes/settings.php:224 ../classes/column/custom-field.php:77
|
286 |
+
msgid "Numeric"
|
287 |
+
msgstr "رقمي"
|
288 |
+
|
289 |
+
#: ../classes/settings.php:224
|
290 |
+
msgid ""
|
291 |
+
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
292 |
+
"for sorting, so you can sort your posts on numeric (custom field) values."
|
293 |
+
msgstr ""
|
294 |
+
"القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام "
|
295 |
+
"هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
|
296 |
+
|
297 |
+
#: ../classes/settings.php:225 ../classes/column/custom-field.php:78
|
298 |
+
#: ../classes/column/comment/date.php:12
|
299 |
+
msgid "Date"
|
300 |
+
msgstr "تاريخ"
|
301 |
+
|
302 |
+
#: ../classes/settings.php:225
|
303 |
+
#, php-format
|
304 |
+
msgid ""
|
305 |
+
"Value: Can be unix time stamp or a date format as described in the <a "
|
306 |
+
"href='%s'>Codex</a>. You can change the outputted date format at the <a "
|
307 |
+
"href='%s'>general settings</a> page."
|
308 |
+
msgstr ""
|
309 |
+
"قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a "
|
310 |
+
"href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a "
|
311 |
+
"href='%s'>الإعدادات العامة</a>."
|
312 |
+
|
313 |
+
#: ../classes/settings.php:226
|
314 |
+
msgid "Post Titles"
|
315 |
+
msgstr "عناوين تدوينات"
|
316 |
+
|
317 |
+
#: ../classes/settings.php:226
|
318 |
+
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
319 |
+
msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
|
320 |
+
|
321 |
+
#: ../classes/settings.php:227
|
322 |
+
msgid "Usernames"
|
323 |
+
msgstr "أسماء مستخدمين"
|
324 |
+
|
325 |
+
#: ../classes/settings.php:227
|
326 |
+
msgid "Value: can be one or more User ID's (seperated by ',')."
|
327 |
+
msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
|
328 |
+
|
329 |
+
#: ../classes/settings.php:228
|
330 |
+
msgid "Checkmark"
|
331 |
+
msgstr "علامة اختيار"
|
332 |
+
|
333 |
+
#: ../classes/settings.php:228
|
334 |
+
msgid "Value: should be a 1 (one) or 0 (zero)."
|
335 |
+
msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
|
336 |
+
|
337 |
+
#: ../classes/settings.php:229 ../classes/column/custom-field.php:82
|
338 |
+
msgid "Color"
|
339 |
+
msgstr "لون"
|
340 |
+
|
341 |
+
#: ../classes/settings.php:229
|
342 |
+
msgid "Value: hex value color, such as #808080."
|
343 |
+
msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
|
344 |
+
|
345 |
+
#: ../classes/settings.php:373
|
346 |
+
msgid "Welcome to Admin Columns"
|
347 |
+
msgstr "مرحبا في Admin Columns"
|
348 |
+
|
349 |
+
#: ../classes/settings.php:376
|
350 |
+
msgid "Thank you for updating to the latest version!"
|
351 |
+
msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
|
352 |
+
|
353 |
+
#: ../classes/settings.php:377
|
354 |
+
msgid ""
|
355 |
+
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
356 |
+
"like it."
|
357 |
+
msgstr ""
|
358 |
+
"Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
|
359 |
+
|
360 |
+
#: ../classes/settings.php:382
|
361 |
+
msgid "What’s New"
|
362 |
+
msgstr "ما الجديد"
|
363 |
+
|
364 |
+
#: ../classes/settings.php:383
|
365 |
+
msgid "Changelog"
|
366 |
+
msgstr "سجل التغييرات"
|
367 |
+
|
368 |
+
#: ../classes/settings.php:385
|
369 |
+
msgid "Download Addons"
|
370 |
+
msgstr "تنزيل الإضافات"
|
371 |
+
|
372 |
+
#: ../classes/settings.php:391
|
373 |
+
msgid "Addons"
|
374 |
+
msgstr "إضافات"
|
375 |
+
|
376 |
+
#: ../classes/settings.php:393
|
377 |
+
msgid ""
|
378 |
+
"Addons are now activated by downloading and installing individual plugins. "
|
379 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
380 |
+
"each Add-on will continue to receive updates in the usual way."
|
381 |
+
msgstr ""
|
382 |
+
"يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من "
|
383 |
+
"أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة "
|
384 |
+
"بتلقي التحديثات بالطريقة المعتادة."
|
385 |
+
|
386 |
+
#: ../classes/settings.php:396
|
387 |
+
msgid ""
|
388 |
+
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
389 |
+
msgstr "هذا الموقع يستخدم ملحق الترتيب. يجب تنزيل هذه الإضافة."
|
390 |
+
|
391 |
+
#: ../classes/settings.php:399
|
392 |
+
msgid "Addons are seperate plugins which need to be downloaded."
|
393 |
+
msgstr "الملحقات هي إضافات منفصلة يجب تنزيلها."
|
394 |
+
|
395 |
+
#: ../classes/settings.php:399
|
396 |
+
msgid "Download your Addons"
|
397 |
+
msgstr "قم بتنزيل إضافاتك"
|
398 |
+
|
399 |
+
#: ../classes/settings.php:405
|
400 |
+
msgid "This website does not use add-ons"
|
401 |
+
msgstr "هذا الموقع لا يستخدم ملحقات"
|
402 |
+
|
403 |
+
#: ../classes/settings.php:405
|
404 |
+
msgid "See our website for the Pro-addon."
|
405 |
+
msgstr "انظر موقعنا للملحق الإحترافي."
|
406 |
+
|
407 |
+
#: ../classes/settings.php:412
|
408 |
+
msgid "Important"
|
409 |
+
msgstr "مهم"
|
410 |
+
|
411 |
+
#: ../classes/settings.php:414
|
412 |
+
msgid "Database Changes"
|
413 |
+
msgstr "تغييرات قاعدة البيانات"
|
414 |
+
|
415 |
+
#: ../classes/settings.php:415
|
416 |
+
msgid ""
|
417 |
+
"The database has been changed between versions 1 and 2. But we made sure you "
|
418 |
+
"can still roll back to version 1x without any issues."
|
419 |
+
msgstr ""
|
420 |
+
"تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك "
|
421 |
+
"الرجوع إلى إصدار 1x دون أية مشاكل."
|
422 |
+
|
423 |
+
#: ../classes/settings.php:418
|
424 |
+
msgid "Make sure you backup your database and then click"
|
425 |
+
msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
|
426 |
+
|
427 |
+
#: ../classes/settings.php:418 ../classes/upgrade.php:101
|
428 |
+
msgid "Upgrade Database"
|
429 |
+
msgstr "تحديث قاعدة البيانات"
|
430 |
+
|
431 |
+
#: ../classes/settings.php:421
|
432 |
+
msgid "Potential Issues"
|
433 |
+
msgstr "مشاكل محتملة"
|
434 |
+
|
435 |
+
#: ../classes/settings.php:422
|
436 |
+
msgid ""
|
437 |
+
"Do to the sizable refactoring the code, surounding Addons and action/"
|
438 |
+
"filters, your website may not operate correctly. It is important that you "
|
439 |
+
"read the full"
|
440 |
+
msgstr ""
|
441 |
+
"نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا "
|
442 |
+
"يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
|
443 |
+
|
444 |
+
#: ../classes/settings.php:422
|
445 |
+
msgid "Migrating from v1 to v2"
|
446 |
+
msgstr "الانتقال من النسخة 1 إلى النسخة 2"
|
447 |
+
|
448 |
+
#: ../classes/settings.php:422
|
449 |
+
msgid "guide to view the full list of changes."
|
450 |
+
msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
|
451 |
+
|
452 |
+
#: ../classes/settings.php:422
|
453 |
+
#, php-format
|
454 |
+
msgid ""
|
455 |
+
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
456 |
+
"can fix it in the next release."
|
457 |
+
msgstr ""
|
458 |
+
"عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من "
|
459 |
+
"إصلاحها في النسخة القادمة."
|
460 |
+
|
461 |
+
#: ../classes/settings.php:425
|
462 |
+
msgid "Important!"
|
463 |
+
msgstr "مهم!"
|
464 |
+
|
465 |
+
#: ../classes/settings.php:425
|
466 |
+
msgid ""
|
467 |
+
"If you updated the Admin Columns plugin without prior knowledge of such "
|
468 |
+
"changes, Please roll back to the latest"
|
469 |
+
msgstr ""
|
470 |
+
"إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع "
|
471 |
+
"لآخر"
|
472 |
+
|
473 |
+
#: ../classes/settings.php:425
|
474 |
+
msgid "version 1"
|
475 |
+
msgstr "النسخة 1"
|
476 |
+
|
477 |
+
#: ../classes/settings.php:425
|
478 |
+
msgid "of this plugin."
|
479 |
+
msgstr "من هذه الإضافة"
|
480 |
+
|
481 |
+
#: ../classes/settings.php:431
|
482 |
+
msgid "Changelog for"
|
483 |
+
msgstr "سجل التغييرات لـ"
|
484 |
+
|
485 |
+
#: ../classes/settings.php:446
|
486 |
+
msgid "Learn more"
|
487 |
+
msgstr "تعلم المزيد"
|
488 |
+
|
489 |
+
#: ../classes/settings.php:455
|
490 |
+
msgid ""
|
491 |
+
"New to v2, all Addons act as separate plugins which need to be individually "
|
492 |
+
"downloaded, installed and updated."
|
493 |
+
msgstr ""
|
494 |
+
"جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، "
|
495 |
+
"تركيبها وتحديثها بشكل فردي."
|
496 |
+
|
497 |
+
#: ../classes/settings.php:456
|
498 |
+
msgid ""
|
499 |
+
"This page will assist you in downloading and installing each available Addon."
|
500 |
+
msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
|
501 |
+
|
502 |
+
#: ../classes/settings.php:457
|
503 |
+
msgid "Available Addons"
|
504 |
+
msgstr "الإضافات المتوفرة"
|
505 |
+
|
506 |
+
#: ../classes/settings.php:462
|
507 |
+
msgid "Name"
|
508 |
+
msgstr "الاسم"
|
509 |
+
|
510 |
+
#: ../classes/settings.php:463 ../classes/settings.php:471
|
511 |
+
msgid "Download"
|
512 |
+
msgstr "تنزيل"
|
513 |
+
|
514 |
+
#: ../classes/settings.php:469
|
515 |
+
msgid "Pro Add-on (includes Sortorder add-on)"
|
516 |
+
msgstr "الملحق الإحترافي (يتضمن ملحق الترتيب)"
|
517 |
+
|
518 |
+
#: ../classes/settings.php:479
|
519 |
+
msgid "Installation"
|
520 |
+
msgstr "تنصيب"
|
521 |
+
|
522 |
+
#: ../classes/settings.php:481
|
523 |
+
msgid "For each Add-on available, please perform the following:"
|
524 |
+
msgstr "لكل ملحق متاح، يرجى القيام بما يلي:"
|
525 |
+
|
526 |
+
#: ../classes/settings.php:483
|
527 |
+
msgid "Download the Addon plugin (.zip file) to your desktop"
|
528 |
+
msgstr "تنزيل إضافة الملحقات (ملف .zip) إلى سطح مكتبك"
|
529 |
+
|
530 |
+
#: ../classes/settings.php:484
|
531 |
+
msgid "Navigate to"
|
532 |
+
msgstr "انتقل إلى"
|
533 |
+
|
534 |
+
#: ../classes/settings.php:484
|
535 |
+
msgid "Plugins > Add New > Upload"
|
536 |
+
msgstr "إضافات > أضف جديد > تحميل"
|
537 |
+
|
538 |
+
#: ../classes/settings.php:485
|
539 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
540 |
+
msgstr "استخدام الرافع للتصفح واختيار وتثبيت (ملف .zip) الخاص بإضافتك"
|
541 |
+
|
542 |
+
#: ../classes/settings.php:486
|
543 |
+
msgid ""
|
544 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
545 |
+
"link"
|
546 |
+
msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
|
547 |
+
|
548 |
+
#: ../classes/settings.php:487
|
549 |
+
msgid "The Add-on is now installed and activated!"
|
550 |
+
msgstr "تم تنصيب وتفعيل الملحق!"
|
551 |
+
|
552 |
+
#: ../classes/settings.php:488
|
553 |
+
#, php-format
|
554 |
+
msgid ""
|
555 |
+
"For automatic updates make sure to <a href='%s'>enter your licence key</a>."
|
556 |
+
msgstr "من أجل التحديثات الإضافية تأكد من <a href='%s'>إدخال مفتاح رخصتك</a>."
|
557 |
+
|
558 |
+
#: ../classes/settings.php:498
|
559 |
+
msgid "Start using Admin Columns"
|
560 |
+
msgstr "البدء باستخدام Admin Columns"
|
561 |
+
|
562 |
+
#: ../classes/settings.php:575
|
563 |
+
msgid "Store settings"
|
564 |
+
msgstr "حفظ الإعدادات"
|
565 |
+
|
566 |
+
#: ../classes/settings.php:580
|
567 |
+
msgid "Update"
|
568 |
+
msgstr "تحديث"
|
569 |
+
|
570 |
+
#: ../classes/settings.php:580
|
571 |
+
msgid "Publish"
|
572 |
+
msgstr "نشر"
|
573 |
+
|
574 |
+
#: ../classes/settings.php:584
|
575 |
+
#, php-format
|
576 |
+
msgid ""
|
577 |
+
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
578 |
+
"\\' to delete, \\'Cancel\\' to stop"
|
579 |
+
msgstr ""
|
580 |
+
"تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' "
|
581 |
+
"للحذف، \\'إلغاء\\' للإيقاف"
|
582 |
+
|
583 |
+
#: ../classes/settings.php:585 ../classes/column/comment/actions.php:86
|
584 |
+
#: ../classes/column/post/actions.php:53
|
585 |
+
msgid "Restore"
|
586 |
+
msgstr "استرجاع"
|
587 |
+
|
588 |
+
#: ../classes/settings.php:585
|
589 |
+
msgid "columns"
|
590 |
+
msgstr "أعمدة"
|
591 |
+
|
592 |
+
#: ../classes/settings.php:595
|
593 |
+
msgid "Get the Pro Add-on"
|
594 |
+
msgstr "احصل على الملحق الإحترافي"
|
595 |
+
|
596 |
+
#: ../classes/settings.php:599
|
597 |
+
msgid "Add Sorting"
|
598 |
+
msgstr "أضف ترتيب"
|
599 |
+
|
600 |
+
#: ../classes/settings.php:600
|
601 |
+
msgid "Add Filtering"
|
602 |
+
msgstr "أضف تصفية"
|
603 |
+
|
604 |
+
#: ../classes/settings.php:601
|
605 |
+
msgid "Add Import/Export"
|
606 |
+
msgstr "أضف استيراد/تصدير"
|
607 |
+
|
608 |
+
#: ../classes/settings.php:604
|
609 |
+
#, php-format
|
610 |
+
msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
|
611 |
+
msgstr "تعرف على <a href=\"%s\">الملحق الإحترافي</a> للمزيد من التفاصيل!"
|
612 |
+
|
613 |
+
#: ../classes/settings.php:612
|
614 |
+
msgid "Support"
|
615 |
+
msgstr "دعم"
|
616 |
+
|
617 |
+
#: ../classes/settings.php:615
|
618 |
+
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
619 |
+
msgstr ""
|
620 |
+
"تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
|
621 |
+
|
622 |
+
#: ../classes/settings.php:617
|
623 |
+
#, php-format
|
624 |
+
msgid ""
|
625 |
+
"For full documentation, bug reports, feature suggestions and other tips <a "
|
626 |
+
"href='%s'>visit the Admin Columns website</a>"
|
627 |
+
msgstr ""
|
628 |
+
"للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من "
|
629 |
+
"النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
|
630 |
+
|
631 |
+
#: ../classes/settings.php:637
|
632 |
+
msgid "Drag and drop to reorder"
|
633 |
+
msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
|
634 |
+
|
635 |
+
#: ../classes/settings.php:640
|
636 |
+
msgid "Add Column"
|
637 |
+
msgstr "أضف عمود"
|
638 |
+
|
639 |
+
#: ../classes/settings.php:691
|
640 |
+
msgid "General Settings"
|
641 |
+
msgstr "إعدادات عامة"
|
642 |
+
|
643 |
+
#: ../classes/settings.php:692
|
644 |
+
msgid "Customize your Admin Columns settings."
|
645 |
+
msgstr "قم بتخصيص إعدادات Admin Columns."
|
646 |
+
|
647 |
+
#: ../classes/settings.php:699
|
648 |
+
msgid "Custom field settings"
|
649 |
+
msgstr "إعدادات الحقل المخصوص"
|
650 |
+
|
651 |
+
#: ../classes/settings.php:703
|
652 |
+
msgid "Show hidden custom fields. Default is <code>off</code>."
|
653 |
+
msgstr "إظهار الحقول المخصوصة المخفية. الإفتراضي هو <code>لا</code>."
|
654 |
+
|
655 |
+
#: ../classes/settings.php:710
|
656 |
+
msgid "Save"
|
657 |
+
msgstr "حفظ"
|
658 |
+
|
659 |
+
#: ../classes/settings.php:750
|
660 |
+
msgid "Restore Settings"
|
661 |
+
msgstr "استرجاع الإعدادات"
|
662 |
+
|
663 |
+
#: ../classes/settings.php:751
|
664 |
+
msgid "This will delete all column settings and restore the default settings."
|
665 |
+
msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
|
666 |
+
|
667 |
+
#: ../classes/settings.php:757
|
668 |
+
msgid "Restore default settings"
|
669 |
+
msgstr "استرجاع الإعدادات الإفتراضية"
|
670 |
+
|
671 |
+
#: ../classes/settings.php:757
|
672 |
+
msgid ""
|
673 |
+
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
674 |
+
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
675 |
+
msgstr ""
|
676 |
+
"تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. "
|
677 |
+
"\\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
|
678 |
+
|
679 |
+
#: ../classes/storage_model.php:153
|
680 |
+
msgid "settings succesfully restored."
|
681 |
+
msgstr "تمت إستعادة الإعدادات بنجاح."
|
682 |
+
|
683 |
+
#: ../classes/storage_model.php:167
|
684 |
+
msgid "No columns settings available."
|
685 |
+
msgstr "لا توجد إعدادات أعمدة متوفرة."
|
686 |
+
|
687 |
+
#: ../classes/storage_model.php:190
|
688 |
+
#, php-format
|
689 |
+
msgid "You are trying to store the same settings for %s."
|
690 |
+
msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
|
691 |
+
|
692 |
+
#: ../classes/storage_model.php:194
|
693 |
+
#, php-format
|
694 |
+
msgid "Settings for %s updated succesfully."
|
695 |
+
msgstr "إعدادات %s تم تحديثها بنجاح."
|
696 |
+
|
697 |
+
#: ../classes/storage_model.php:575 ../classes/column/post/actions.php:64
|
698 |
+
msgid "View"
|
699 |
+
msgstr "عرض"
|
700 |
+
|
701 |
+
#: ../classes/upgrade.php:45
|
702 |
+
msgid "Upgrade"
|
703 |
+
msgstr "تحديث"
|
704 |
+
|
705 |
+
#: ../classes/upgrade.php:94
|
706 |
+
msgid "requires a database upgrade"
|
707 |
+
msgstr "يتطلب ترقية قاعدة البيانات"
|
708 |
+
|
709 |
+
#: ../classes/upgrade.php:97
|
710 |
+
msgid "why?"
|
711 |
+
msgstr "لماذا؟"
|
712 |
+
|
713 |
+
#: ../classes/upgrade.php:98
|
714 |
+
msgid "Please"
|
715 |
+
msgstr "فضلا"
|
716 |
+
|
717 |
+
#: ../classes/upgrade.php:99
|
718 |
+
msgid "backup your database"
|
719 |
+
msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
|
720 |
+
|
721 |
+
#: ../classes/upgrade.php:100
|
722 |
+
msgid "then click"
|
723 |
+
msgstr "ثم انقر"
|
724 |
+
|
725 |
+
#: ../classes/upgrade.php:308
|
726 |
+
msgid "Migrating Column Settings"
|
727 |
+
msgstr "نقل إعدادات الأعمدة"
|
728 |
+
|
729 |
+
#: ../classes/upgrade.php:344
|
730 |
+
msgid "No Upgrade Required"
|
731 |
+
msgstr "لا تحديث مطلوب"
|
732 |
+
|
733 |
+
#: ../classes/upgrade.php:345
|
734 |
+
msgid "Return to welcome screen."
|
735 |
+
msgstr "رجوع إلى صفحة الترحيب."
|
736 |
+
|
737 |
+
#: ../classes/upgrade.php:361
|
738 |
+
msgid "Upgrade Complete!"
|
739 |
+
msgstr "اكتمل التحديث"
|
740 |
+
|
741 |
+
#: ../classes/upgrade.php:361
|
742 |
+
msgid "Return to settings."
|
743 |
+
msgstr "العودة للإعدادات."
|
744 |
+
|
745 |
+
#: ../classes/upgrade.php:362
|
746 |
+
msgid "Error"
|
747 |
+
msgstr "خطأ"
|
748 |
+
|
749 |
+
#: ../classes/upgrade.php:363
|
750 |
+
msgid ""
|
751 |
+
"Sorry. Something went wrong during the upgrade process. Please report this "
|
752 |
+
"on the support forum."
|
753 |
+
msgstr ""
|
754 |
+
"عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
|
755 |
+
|
756 |
+
#: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
|
757 |
+
msgid "Media Library"
|
758 |
+
msgstr "مكتبة الوسائط"
|
759 |
+
|
760 |
+
#: ../classes/column/custom-field.php:79
|
761 |
+
msgid "Post Title (Post ID's)"
|
762 |
+
msgstr "عنوان تدوينة (أرقام تدوينات)"
|
763 |
+
|
764 |
+
#: ../classes/column/custom-field.php:80
|
765 |
+
msgid "Username (User ID's)"
|
766 |
+
msgstr "اسم مستخدم (أرقام مستخدمين)"
|
767 |
+
|
768 |
+
#: ../classes/column/custom-field.php:81
|
769 |
+
msgid "Checkmark (true/false)"
|
770 |
+
msgstr "علامة إختيار (صح/خطأ)"
|
771 |
+
|
772 |
+
#: ../classes/column/custom-field.php:320
|
773 |
+
msgid "Select your custom field."
|
774 |
+
msgstr "اختر حقلك المخصوص"
|
775 |
+
|
776 |
+
#: ../classes/column/custom-field.php:330
|
777 |
+
msgid "No custom fields available."
|
778 |
+
msgstr "لا توجد حقول مخصوصة متوفرة."
|
779 |
+
|
780 |
+
#: ../classes/column/custom-field.php:337
|
781 |
+
msgid "Field Type"
|
782 |
+
msgstr "نوع الحقل"
|
783 |
+
|
784 |
+
#: ../classes/column/custom-field.php:337
|
785 |
+
msgid "This will determine how the value will be displayed."
|
786 |
+
msgstr "هذا سيحدد كيف سيتم عرض القيمة."
|
787 |
+
|
788 |
+
#: ../classes/column/custom-field.php:380
|
789 |
+
msgid "Before"
|
790 |
+
msgstr "قبل"
|
791 |
+
|
792 |
+
#: ../classes/column/custom-field.php:380
|
793 |
+
msgid "This text will appear before the custom field value."
|
794 |
+
msgstr "هذا النص سيظهر قبل الحقل المخصوص."
|
795 |
+
|
796 |
+
#: ../classes/column/custom-field.php:386
|
797 |
+
msgid "After"
|
798 |
+
msgstr "بعد"
|
799 |
+
|
800 |
+
#: ../classes/column/custom-field.php:386
|
801 |
+
msgid "This text will appear after the custom field value."
|
802 |
+
msgstr "هذا النص سيظهر بعد الحقل المخصوص."
|
803 |
+
|
804 |
+
#: ../classes/column/comment/actions.php:14
|
805 |
+
#: ../classes/column/link/actions.php:14
|
806 |
+
#: ../classes/column/media/actions.php:14
|
807 |
+
#: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
|
808 |
+
msgid "Actions"
|
809 |
+
msgstr "تطبيقات"
|
810 |
+
|
811 |
+
#: ../classes/column/comment/actions.php:73
|
812 |
+
#: ../classes/column/comment/actions.php:78
|
813 |
+
msgid "Unapprove"
|
814 |
+
msgstr "إلغاء الموافقة"
|
815 |
+
|
816 |
+
#: ../classes/column/comment/actions.php:75
|
817 |
+
#: ../classes/column/comment/actions.php:77
|
818 |
+
msgid "Approve"
|
819 |
+
msgstr "موافقة"
|
820 |
+
|
821 |
+
#: ../classes/column/comment/actions.php:90
|
822 |
+
#: ../classes/column/post/actions.php:57
|
823 |
+
msgid "Delete Permanently"
|
824 |
+
msgstr "حذف نهائي"
|
825 |
+
|
826 |
+
#: ../classes/column/comment/actions.php:96
|
827 |
+
#: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
|
828 |
+
#: ../classes/column/user/actions.php:57
|
829 |
+
msgid "Edit"
|
830 |
+
msgstr "تحرير"
|
831 |
+
|
832 |
+
#: ../classes/column/comment/actions.php:97
|
833 |
+
#: ../classes/column/post/actions.php:49
|
834 |
+
msgid "Quick Edit"
|
835 |
+
msgstr "تحرير سريع"
|
836 |
+
|
837 |
+
#: ../classes/column/comment/actions.php:98
|
838 |
+
msgid "Reply"
|
839 |
+
msgstr "رد"
|
840 |
+
|
841 |
+
#: ../classes/column/comment/agent.php:12
|
842 |
+
msgid "Agent"
|
843 |
+
msgstr "عميل"
|
844 |
+
|
845 |
+
#: ../classes/column/comment/approved.php:12
|
846 |
+
#: ../classes/column/post/comment-count.php:31
|
847 |
+
msgid "Approved"
|
848 |
+
msgstr "موافق عليه"
|
849 |
+
|
850 |
+
#: ../classes/column/comment/author-avatar.php:12
|
851 |
+
msgid "Avatar"
|
852 |
+
msgstr "صورة"
|
853 |
+
|
854 |
+
#: ../classes/column/comment/author-email.php:12
|
855 |
+
msgid "Author email"
|
856 |
+
msgstr "بريد الكاتب"
|
857 |
+
|
858 |
+
#: ../classes/column/comment/author-ip.php:12
|
859 |
+
msgid "Author IP"
|
860 |
+
msgstr "عنوان آي بي الكاتب"
|
861 |
+
|
862 |
+
#: ../classes/column/comment/author-url.php:12
|
863 |
+
msgid "Author url"
|
864 |
+
msgstr "عنوان موقع الكاتب"
|
865 |
+
|
866 |
+
#: ../classes/column/comment/author.php:12
|
867 |
+
msgid "Author"
|
868 |
+
msgstr "الكاتب"
|
869 |
+
|
870 |
+
#: ../classes/column/comment/date-gmt.php:12
|
871 |
+
msgid "Date GMT"
|
872 |
+
msgstr "تاريخ GMT"
|
873 |
+
|
874 |
+
#: ../classes/column/comment/date-gmt.php:25
|
875 |
+
#: ../classes/column/comment/date.php:25
|
876 |
+
#, php-format
|
877 |
+
msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
|
878 |
+
msgstr "أرسل في <a href=\"%1$s\">%2$s في %3$s</a>"
|
879 |
+
|
880 |
+
#: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
|
881 |
+
#: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
|
882 |
+
msgid "ID"
|
883 |
+
msgstr "رقم"
|
884 |
+
|
885 |
+
#: ../classes/column/comment/reply-to.php:12
|
886 |
+
msgid "In Reply To"
|
887 |
+
msgstr "ردا على"
|
888 |
+
|
889 |
+
#: ../classes/column/comment/word-count.php:12
|
890 |
+
#: ../classes/column/post/word-count.php:12
|
891 |
+
msgid "Word count"
|
892 |
+
msgstr "عدد الكلمات"
|
893 |
+
|
894 |
+
#: ../classes/column/link/actions.php:46
|
895 |
+
#, php-format
|
896 |
+
msgid ""
|
897 |
+
"You are about to delete this link '%s'\n"
|
898 |
+
" 'Cancel' to stop, 'OK' to delete."
|
899 |
+
msgstr ""
|
900 |
+
"انت على وشك حذف هذا الرابط '%s'\n"
|
901 |
+
" 'إلغاء' للإيقاف، 'موافق' للحذف."
|
902 |
+
|
903 |
+
#: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
|
904 |
+
msgid "Delete"
|
905 |
+
msgstr "مسح"
|
906 |
+
|
907 |
+
#: ../classes/column/link/description.php:12
|
908 |
+
#: ../classes/column/media/description.php:12
|
909 |
+
#: ../classes/column/user/description.php:14
|
910 |
+
msgid "Description"
|
911 |
+
msgstr "وصف"
|
912 |
+
|
913 |
+
#: ../classes/column/link/length.php:12
|
914 |
+
msgid "Length"
|
915 |
+
msgstr "طول"
|
916 |
+
|
917 |
+
#: ../classes/column/link/notes.php:13
|
918 |
+
msgid "Notes"
|
919 |
+
msgstr "ملاحظات"
|
920 |
+
|
921 |
+
#: ../classes/column/link/owner.php:12
|
922 |
+
msgid "Owner"
|
923 |
+
msgstr "مالك"
|
924 |
+
|
925 |
+
#: ../classes/column/link/rss.php:12
|
926 |
+
msgid "Rss"
|
927 |
+
msgstr "Rss"
|
928 |
+
|
929 |
+
#: ../classes/column/link/target.php:12
|
930 |
+
msgid "Target"
|
931 |
+
msgstr "هدف"
|
932 |
+
|
933 |
+
#: ../classes/column/media/alternate-text.php:12
|
934 |
+
msgid "Alt"
|
935 |
+
msgstr "بديل"
|
936 |
+
|
937 |
+
#: ../classes/column/media/available-sizes.php:14
|
938 |
+
msgid "Available Sizes"
|
939 |
+
msgstr "الأحجام المتوفرة"
|
940 |
+
|
941 |
+
#: ../classes/column/media/available-sizes.php:37
|
942 |
+
msgid "full size"
|
943 |
+
msgstr "حجم كامل"
|
944 |
+
|
945 |
+
#: ../classes/column/media/caption.php:12
|
946 |
+
#: ../classes/column/media/exif-data.php:36
|
947 |
+
msgid "Caption"
|
948 |
+
msgstr "شرح"
|
949 |
+
|
950 |
+
#: ../classes/column/media/dimensions.php:12
|
951 |
+
msgid "Dimensions"
|
952 |
+
msgstr "أبعاد"
|
953 |
+
|
954 |
+
#: ../classes/column/media/exif-data.php:12
|
955 |
+
msgid "EXIF data"
|
956 |
+
msgstr "بيانات EXIF"
|
957 |
+
|
958 |
+
#: ../classes/column/media/exif-data.php:33
|
959 |
+
msgid "Aperture"
|
960 |
+
msgstr "فتحة"
|
961 |
+
|
962 |
+
#: ../classes/column/media/exif-data.php:34
|
963 |
+
msgid "Credit"
|
964 |
+
msgstr "شرف"
|
965 |
+
|
966 |
+
#: ../classes/column/media/exif-data.php:35
|
967 |
+
msgid "Camera"
|
968 |
+
msgstr "كاميرا"
|
969 |
+
|
970 |
+
#: ../classes/column/media/exif-data.php:37
|
971 |
+
msgid "Timestamp"
|
972 |
+
msgstr "طابع زمني"
|
973 |
+
|
974 |
+
#: ../classes/column/media/exif-data.php:38
|
975 |
+
msgid "Copyright EXIF"
|
976 |
+
msgstr "بيانات EXIF حق النشر"
|
977 |
+
|
978 |
+
#: ../classes/column/media/exif-data.php:39
|
979 |
+
msgid "Focal Length"
|
980 |
+
msgstr "بعد بؤري"
|
981 |
+
|
982 |
+
#: ../classes/column/media/exif-data.php:40
|
983 |
+
msgid "ISO"
|
984 |
+
msgstr "ISO"
|
985 |
+
|
986 |
+
#: ../classes/column/media/exif-data.php:41
|
987 |
+
msgid "Shutter Speed"
|
988 |
+
msgstr "سرعة مصراع"
|
989 |
+
|
990 |
+
#: ../classes/column/media/exif-data.php:42
|
991 |
+
msgid "Title"
|
992 |
+
msgstr "عنوان"
|
993 |
+
|
994 |
+
#: ../classes/column/media/file-name.php:12
|
995 |
+
msgid "File name"
|
996 |
+
msgstr "اسم ملف"
|
997 |
+
|
998 |
+
#: ../classes/column/media/file-size.php:12
|
999 |
+
msgid "File size"
|
1000 |
+
msgstr "حجم ملف"
|
1001 |
+
|
1002 |
+
#: ../classes/column/media/full-path.php:12
|
1003 |
+
msgid "Full path"
|
1004 |
+
msgstr "مسار كامل"
|
1005 |
+
|
1006 |
+
#: ../classes/column/media/height.php:12
|
1007 |
+
msgid "Height"
|
1008 |
+
msgstr "إرتفاع"
|
1009 |
+
|
1010 |
+
#: ../classes/column/media/mime-type.php:12
|
1011 |
+
msgid "Mime type"
|
1012 |
+
msgstr "نوع Mime"
|
1013 |
+
|
1014 |
+
#: ../classes/column/post/actions.php:48
|
1015 |
+
msgid "Edit this item"
|
1016 |
+
msgstr "تحرير هذا العنصر"
|
1017 |
+
|
1018 |
+
#: ../classes/column/post/actions.php:49
|
1019 |
+
msgid "Edit this item inline"
|
1020 |
+
msgstr "تحرير هذا العنصر داخليا"
|
1021 |
+
|
1022 |
+
#: ../classes/column/post/actions.php:53
|
1023 |
+
msgid "Restore this item from the Trash"
|
1024 |
+
msgstr "استعادة هذا العنصر من المهملات"
|
1025 |
+
|
1026 |
+
#: ../classes/column/post/actions.php:55
|
1027 |
+
msgid "Move this item to the Trash"
|
1028 |
+
msgstr "نقل هذا العنصر إلى المهملات"
|
1029 |
+
|
1030 |
+
#: ../classes/column/post/actions.php:55
|
1031 |
+
#: ../classes/column/post/comment-count.php:34
|
1032 |
+
#: ../classes/column/post/status.php:35
|
1033 |
+
msgid "Trash"
|
1034 |
+
msgstr "المهملات"
|
1035 |
+
|
1036 |
+
#: ../classes/column/post/actions.php:57
|
1037 |
+
msgid "Delete this item permanently"
|
1038 |
+
msgstr "حذف هذا العنصر نهائيا"
|
1039 |
+
|
1040 |
+
#: ../classes/column/post/actions.php:62
|
1041 |
+
#, php-format
|
1042 |
+
msgid "Preview “%s”"
|
1043 |
+
msgstr "معاينة “%s”"
|
1044 |
+
|
1045 |
+
#: ../classes/column/post/actions.php:62
|
1046 |
+
msgid "Preview"
|
1047 |
+
msgstr "معاينة"
|
1048 |
+
|
1049 |
+
#: ../classes/column/post/actions.php:64
|
1050 |
+
#, php-format
|
1051 |
+
msgid "View “%s”"
|
1052 |
+
msgstr "عرض “%s”"
|
1053 |
+
|
1054 |
+
#: ../classes/column/post/attachment-count.php:12
|
1055 |
+
msgid "No. of Attachments"
|
1056 |
+
msgstr "عدد المرفقات"
|
1057 |
+
|
1058 |
+
#: ../classes/column/post/attachment.php:12
|
1059 |
+
msgid "Attachment"
|
1060 |
+
msgstr "مرفق"
|
1061 |
+
|
1062 |
+
#: ../classes/column/post/author-name.php:12
|
1063 |
+
msgid "Display Author As"
|
1064 |
+
msgstr "عرض الكاتب كـ"
|
1065 |
+
|
1066 |
+
#: ../classes/column/post/author-name.php:33
|
1067 |
+
msgid "Display Name"
|
1068 |
+
msgstr "اسم العرض"
|
1069 |
+
|
1070 |
+
#: ../classes/column/post/author-name.php:34
|
1071 |
+
msgid "First Name"
|
1072 |
+
msgstr "الاسم الأول"
|
1073 |
+
|
1074 |
+
#: ../classes/column/post/author-name.php:35
|
1075 |
+
msgid "Last Name"
|
1076 |
+
msgstr "الاسم الأخير"
|
1077 |
+
|
1078 |
+
#: ../classes/column/post/author-name.php:36
|
1079 |
+
#: ../classes/column/user/nickname.php:14
|
1080 |
+
msgid "Nickname"
|
1081 |
+
msgstr "الاسم المستعار"
|
1082 |
+
|
1083 |
+
#: ../classes/column/post/author-name.php:37
|
1084 |
+
msgid "User Login"
|
1085 |
+
msgstr "اسم الدخول"
|
1086 |
+
|
1087 |
+
#: ../classes/column/post/author-name.php:38
|
1088 |
+
msgid "User Email"
|
1089 |
+
msgstr "بريد المستخدم"
|
1090 |
+
|
1091 |
+
#: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
|
1092 |
+
msgid "User ID"
|
1093 |
+
msgstr "رقم المستخدم"
|
1094 |
+
|
1095 |
+
#: ../classes/column/post/author-name.php:40
|
1096 |
+
msgid "First and Last Name"
|
1097 |
+
msgstr "الاسم الأول والأخير"
|
1098 |
+
|
1099 |
+
#: ../classes/column/post/author-name.php:106
|
1100 |
+
msgid "This is the format of the author name."
|
1101 |
+
msgstr "هذا هو تنسيق اسم الكاتب."
|
1102 |
+
|
1103 |
+
#: ../classes/column/post/before-moretag.php:14
|
1104 |
+
msgid "Before More Tag"
|
1105 |
+
msgstr "قبل وسم المزيد"
|
1106 |
+
|
1107 |
+
#: ../classes/column/post/comment-count.php:14
|
1108 |
+
msgid "Comment count"
|
1109 |
+
msgstr "عدد التعليقات"
|
1110 |
+
|
1111 |
+
#: ../classes/column/post/comment-count.php:30
|
1112 |
+
msgid "Total"
|
1113 |
+
msgstr "المجموع"
|
1114 |
+
|
1115 |
+
#: ../classes/column/post/comment-count.php:32
|
1116 |
+
msgid "Pending"
|
1117 |
+
msgstr "بالانتظار"
|
1118 |
+
|
1119 |
+
#: ../classes/column/post/comment-count.php:33
|
1120 |
+
msgid "Spam"
|
1121 |
+
msgstr "مزعج"
|
1122 |
+
|
1123 |
+
#: ../classes/column/post/comment-count.php:78
|
1124 |
+
#: ../classes/column/post/comment-status.php:14
|
1125 |
+
msgid "Comment status"
|
1126 |
+
msgstr "حالة التعليق"
|
1127 |
+
|
1128 |
+
#: ../classes/column/post/comment-count.php:78
|
1129 |
+
msgid "Select which comment status you like to display."
|
1130 |
+
msgstr "اختر حالة التعليق الذي تريد عرضه."
|
1131 |
+
|
1132 |
+
#: ../classes/column/post/featured-image.php:14
|
1133 |
+
msgid "Featured Image"
|
1134 |
+
msgstr "الصورة المميزة"
|
1135 |
+
|
1136 |
+
#: ../classes/column/post/formats.php:14
|
1137 |
+
msgid "Post Format"
|
1138 |
+
msgstr "تنسيق التدوينة"
|
1139 |
+
|
1140 |
+
#: ../classes/column/post/modified.php:14
|
1141 |
+
msgid "Last modified"
|
1142 |
+
msgstr "آخر تحديث"
|
1143 |
+
|
1144 |
+
#: ../classes/column/post/order.php:14
|
1145 |
+
msgid "Page Order"
|
1146 |
+
msgstr "ترتيب الصفحة"
|
1147 |
+
|
1148 |
+
#: ../classes/column/post/page-template.php:12
|
1149 |
+
msgid "Page Template"
|
1150 |
+
msgstr "قالب الصفحة"
|
1151 |
+
|
1152 |
+
#: ../classes/column/post/parent.php:12
|
1153 |
+
msgid "Parent"
|
1154 |
+
msgstr "الأب"
|
1155 |
+
|
1156 |
+
#: ../classes/column/post/ping-status.php:14
|
1157 |
+
msgid "Ping status"
|
1158 |
+
msgstr "حالة التنبيه"
|
1159 |
+
|
1160 |
+
#: ../classes/column/post/roles.php:14
|
1161 |
+
msgid "Roles"
|
1162 |
+
msgstr "الأدوار"
|
1163 |
+
|
1164 |
+
#: ../classes/column/post/slug.php:12
|
1165 |
+
msgid "Slug"
|
1166 |
+
msgstr "الاسم اللطيف"
|
1167 |
+
|
1168 |
+
#: ../classes/column/post/status.php:14
|
1169 |
+
msgid "Status"
|
1170 |
+
msgstr "الحالة"
|
1171 |
+
|
1172 |
+
#: ../classes/column/post/status.php:30
|
1173 |
+
msgid "Published"
|
1174 |
+
msgstr "منشور"
|
1175 |
+
|
1176 |
+
#: ../classes/column/post/status.php:31
|
1177 |
+
msgid "Draft"
|
1178 |
+
msgstr "مسودة"
|
1179 |
+
|
1180 |
+
#: ../classes/column/post/status.php:32
|
1181 |
+
msgid "Scheduled"
|
1182 |
+
msgstr "مجدول"
|
1183 |
+
|
1184 |
+
#: ../classes/column/post/status.php:33
|
1185 |
+
msgid "Private"
|
1186 |
+
msgstr "خاص"
|
1187 |
+
|
1188 |
+
#: ../classes/column/post/status.php:34
|
1189 |
+
msgid "Pending Review"
|
1190 |
+
msgstr "بانتظار المراجعة"
|
1191 |
+
|
1192 |
+
#: ../classes/column/post/sticky.php:14
|
1193 |
+
msgid "Sticky"
|
1194 |
+
msgstr "لاصق"
|
1195 |
+
|
1196 |
+
#: ../classes/column/post/taxonomy.php:12
|
1197 |
+
#: ../classes/column/post/taxonomy.php:68
|
1198 |
+
msgid "Taxonomy"
|
1199 |
+
msgstr "التصنيف"
|
1200 |
+
|
1201 |
+
#: ../classes/column/user/comment-count.php:14
|
1202 |
+
msgid "Comment Count"
|
1203 |
+
msgstr "عدد التعليقات"
|
1204 |
+
|
1205 |
+
#: ../classes/column/user/first-name.php:14
|
1206 |
+
msgid "First name"
|
1207 |
+
msgstr "الاسم الأول"
|
1208 |
+
|
1209 |
+
#: ../classes/column/user/last-name.php:14
|
1210 |
+
msgid "Last name"
|
1211 |
+
msgstr "الاسم الأخير"
|
1212 |
+
|
1213 |
+
#: ../classes/column/user/post-count.php:14
|
1214 |
+
msgid "Post Count"
|
1215 |
+
msgstr "عدد التدوينات"
|
1216 |
+
|
1217 |
+
#: ../classes/column/user/post-count.php:92
|
1218 |
+
msgid "Post Type"
|
1219 |
+
msgstr "نوع تدوبنة"
|
1220 |
+
|
1221 |
+
#: ../classes/column/user/registered.php:14
|
1222 |
+
msgid "Registered"
|
1223 |
+
msgstr "مسجل"
|
1224 |
+
|
1225 |
+
#: ../classes/column/user/url.php:14
|
1226 |
+
msgid "Url"
|
1227 |
+
msgstr "عنوان موقع"
|
1228 |
+
|
1229 |
+
#: ../classes/storage_model/comment.php:13
|
1230 |
+
msgid "Comments"
|
1231 |
+
msgstr "تعليقات"
|
1232 |
+
|
1233 |
+
#: ../classes/storage_model/link.php:13
|
1234 |
+
msgid "Links"
|
1235 |
+
msgstr "وصلات"
|
1236 |
+
|
1237 |
+
#: ../classes/storage_model/user.php:13
|
1238 |
+
msgid "Users"
|
1239 |
+
msgstr "مستخدمون"
|
languages/cpac-nl_NL.mo
CHANGED
Binary file
|
languages/cpac-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Codepress Admin Columns v2.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-08-
|
6 |
-
"PO-Revision-Date: 2013-08-
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -21,11 +21,11 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-1: ..\n"
|
22 |
|
23 |
# @ default
|
24 |
-
#: ../codepress-admin-columns.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Instellingen"
|
27 |
|
28 |
-
#: ../codepress-admin-columns.php:
|
29 |
msgid "Edit columns"
|
30 |
msgstr ""
|
31 |
|
@@ -45,209 +45,185 @@ msgstr ""
|
|
45 |
msgid "Full"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../classes/column.php:
|
49 |
msgid "Date Format"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../classes/column.php:
|
53 |
msgid "This will determine how the date will be displayed."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../classes/column.php:
|
57 |
msgid "Example:"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../classes/column.php:
|
61 |
#, php-format
|
62 |
msgid ""
|
63 |
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
64 |
"date format here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../classes/column.php:
|
68 |
msgid "Documentation on date and time formatting."
|
69 |
msgstr ""
|
70 |
|
71 |
# @ default
|
72 |
# @ codepress-admin-columns
|
73 |
-
#: ../classes/column.php:
|
74 |
#, fuzzy
|
75 |
msgid "Excerpt length"
|
76 |
msgstr "Samenvatting"
|
77 |
|
78 |
-
#: ../classes/column.php:
|
79 |
msgid "Number of words"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../classes/column.php:
|
83 |
msgid "Preview size"
|
84 |
msgstr ""
|
85 |
|
86 |
# @ codepress-admin-columns
|
87 |
-
#: ../classes/column.php:
|
88 |
msgid "Custom"
|
89 |
msgstr ""
|
90 |
|
91 |
# @ codepress-admin-columns
|
92 |
-
#: ../classes/column.php:
|
93 |
#, fuzzy
|
94 |
msgid "width"
|
95 |
msgstr "Breedte"
|
96 |
|
97 |
# @ codepress-admin-columns
|
98 |
-
#: ../classes/column.php:
|
99 |
#, fuzzy
|
100 |
msgid "height"
|
101 |
msgstr "Hoogte"
|
102 |
|
103 |
# @ default
|
104 |
-
#: ../classes/column.php:
|
105 |
#: ../classes/column/custom-field.php:72
|
106 |
msgid "Default"
|
107 |
msgstr ""
|
108 |
|
109 |
# @ default
|
110 |
-
#: ../classes/column.php:
|
111 |
#: ../classes/column/user/actions.php:65
|
112 |
msgid "Remove"
|
113 |
msgstr "Verwijder"
|
114 |
|
115 |
-
#: ../classes/column.php:
|
116 |
msgid "Type"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../classes/column.php:
|
120 |
msgid "Choose a column type."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../classes/column.php:
|
124 |
msgid "Label"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../classes/column.php:
|
128 |
msgid "This is the name which will appear as the column header."
|
129 |
msgstr ""
|
130 |
|
131 |
# @ codepress-admin-columns
|
132 |
-
#: ../classes/column.php:
|
133 |
msgid "Width"
|
134 |
msgstr "Breedte"
|
135 |
|
136 |
# @ codepress-admin-columns
|
137 |
-
#: ../classes/column.php:
|
138 |
#, fuzzy
|
139 |
msgid "default"
|
140 |
msgstr "Herstel instellingen"
|
141 |
|
142 |
-
#: ../classes/export_import.php:64
|
143 |
-
msgid "Export field is empty. Please select your types from the left column."
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: ../classes/export_import.php:99 ../classes/export_import.php:101
|
147 |
-
msgid "Sorry, there has been an error."
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: ../classes/export_import.php:101
|
151 |
-
#, php-format
|
152 |
-
msgid ""
|
153 |
-
"The export file could not be found at <code>%s</code>. It is likely that "
|
154 |
-
"this was caused by a permissions problem."
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: ../classes/export_import.php:119
|
158 |
-
msgid "Import failed. File does not contain Admin Column settings."
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
# @ codepress-admin-columns
|
162 |
#: ../classes/settings.php:68
|
163 |
msgid "Admin Columns Settings"
|
164 |
msgstr ""
|
165 |
|
166 |
# @ codepress-admin-columns
|
167 |
-
#: ../classes/settings.php:68 ../classes/settings.php:
|
168 |
-
#: ../classes/upgrade.php:
|
169 |
msgid "Admin Columns"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../classes/settings.php:
|
|
|
|
|
|
|
|
|
|
|
173 |
msgid "Default settings succesfully restored."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../classes/settings.php:
|
177 |
msgid "Overview"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../classes/settings.php:
|
181 |
msgid ""
|
182 |
"This plugin is for adding and removing additional columns to the "
|
183 |
"administration screens for post(types), pages, media library, comments, "
|
184 |
"links and users. Change the column's label and reorder them."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../classes/settings.php:
|
188 |
msgid "Basics"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../classes/settings.php:205
|
192 |
-
msgid "Show / Hide"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: ../classes/settings.php:206
|
196 |
-
msgid ""
|
197 |
-
"You can switch columns on or off by clicking on the checkbox. This will show "
|
198 |
-
"or hide each column heading."
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
# @ codepress-admin-columns
|
202 |
-
#: ../classes/settings.php:
|
203 |
#, fuzzy
|
204 |
msgid "Change order"
|
205 |
msgstr "Pagina Volgorde"
|
206 |
|
207 |
-
#: ../classes/settings.php:
|
208 |
msgid ""
|
209 |
"By dragging the columns you can change the order which they will appear in."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../classes/settings.php:
|
213 |
msgid "Change label"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../classes/settings.php:
|
217 |
msgid ""
|
218 |
"By clicking on the triangle you will see the column options. Here you can "
|
219 |
"change each label of the columns heading."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../classes/settings.php:
|
223 |
msgid "Change column width"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../classes/settings.php:
|
227 |
msgid ""
|
228 |
"By clicking on the triangle you will see the column options. By using the "
|
229 |
"draggable slider yo can set the width of the columns in percentages."
|
230 |
msgstr ""
|
231 |
|
232 |
# @ codepress-admin-columns
|
233 |
-
#: ../classes/settings.php:
|
234 |
-
#: ../classes/column/custom-field.php:
|
235 |
msgid "Custom Field"
|
236 |
msgstr ""
|
237 |
|
238 |
# @ codepress-admin-columns
|
239 |
-
#: ../classes/settings.php:
|
240 |
#, fuzzy
|
241 |
msgid "'Custom Field' column"
|
242 |
msgstr "Voeg custom field kolom toe"
|
243 |
|
244 |
-
#: ../classes/settings.php:
|
245 |
msgid ""
|
246 |
"The custom field colum uses the custom fields from posts and users. There "
|
247 |
"are 10 types which you can set."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../classes/settings.php:
|
251 |
msgid ""
|
252 |
"Value: Can be either a string or array. Arrays will be flattened and values "
|
253 |
"are seperated by a ',' comma."
|
@@ -255,12 +231,12 @@ msgstr ""
|
|
255 |
|
256 |
# @ default
|
257 |
# @ codepress-admin-columns
|
258 |
-
#: ../classes/settings.php:
|
259 |
#: ../classes/column/link/image.php:12
|
260 |
msgid "Image"
|
261 |
msgstr "Afbeelding"
|
262 |
|
263 |
-
#: ../classes/settings.php:
|
264 |
msgid ""
|
265 |
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
266 |
"comma )."
|
@@ -268,44 +244,44 @@ msgstr ""
|
|
268 |
|
269 |
# @ default
|
270 |
# @ codepress-admin-columns
|
271 |
-
#: ../classes/settings.php:
|
272 |
#: ../classes/column/comment/excerpt.php:13
|
273 |
#: ../classes/column/post/excerpt.php:13
|
274 |
msgid "Excerpt"
|
275 |
msgstr "Samenvatting"
|
276 |
|
277 |
-
#: ../classes/settings.php:
|
278 |
msgid "Value: This will show the first 20 words of the Post content."
|
279 |
msgstr ""
|
280 |
|
281 |
# @ codepress-admin-columns
|
282 |
-
#: ../classes/settings.php:
|
283 |
msgid "Multiple Values"
|
284 |
msgstr "Meerdere waarden"
|
285 |
|
286 |
-
#: ../classes/settings.php:
|
287 |
msgid ""
|
288 |
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
289 |
msgstr ""
|
290 |
|
291 |
# @ codepress-admin-columns
|
292 |
-
#: ../classes/settings.php:
|
293 |
msgid "Numeric"
|
294 |
msgstr "Numerieke"
|
295 |
|
296 |
-
#: ../classes/settings.php:
|
297 |
msgid ""
|
298 |
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
299 |
"for sorting, so you can sort your posts on numeric (custom field) values."
|
300 |
msgstr ""
|
301 |
|
302 |
# @ codepress-admin-columns
|
303 |
-
#: ../classes/settings.php:
|
304 |
#: ../classes/column/comment/date.php:12
|
305 |
msgid "Date"
|
306 |
msgstr "Datum"
|
307 |
|
308 |
-
#: ../classes/settings.php:
|
309 |
#, php-format
|
310 |
msgid ""
|
311 |
"Value: Can be unix time stamp or a date format as described in the <a "
|
@@ -314,266 +290,266 @@ msgid ""
|
|
314 |
msgstr ""
|
315 |
|
316 |
# @ codepress-admin-columns
|
317 |
-
#: ../classes/settings.php:
|
318 |
#, fuzzy
|
319 |
msgid "Post Titles"
|
320 |
msgstr "Post Titel (Post ID's)"
|
321 |
|
322 |
-
#: ../classes/settings.php:
|
323 |
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ../classes/settings.php:
|
327 |
msgid "Usernames"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../classes/settings.php:
|
331 |
msgid "Value: can be one or more User ID's (seperated by ',')."
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../classes/settings.php:
|
335 |
msgid "Checkmark"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../classes/settings.php:
|
339 |
msgid "Value: should be a 1 (one) or 0 (zero)."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../classes/settings.php:
|
343 |
msgid "Color"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../classes/settings.php:
|
347 |
msgid "Value: hex value color, such as #808080."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../classes/settings.php:
|
351 |
msgid "Welcome to Admin Columns"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: ../classes/settings.php:
|
355 |
msgid "Thank you for updating to the latest version!"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../classes/settings.php:
|
359 |
msgid ""
|
360 |
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
361 |
"like it."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../classes/settings.php:
|
365 |
msgid "What’s New"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../classes/settings.php:
|
369 |
msgid "Changelog"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../classes/settings.php:
|
373 |
msgid "Download Addons"
|
374 |
msgstr ""
|
375 |
|
376 |
# @ default
|
377 |
-
#: ../classes/settings.php:
|
378 |
#, fuzzy
|
379 |
msgid "Addons"
|
380 |
msgstr "Adres"
|
381 |
|
382 |
-
#: ../classes/settings.php:
|
383 |
msgid ""
|
384 |
"Addons are now activated by downloading and installing individual plugins. "
|
385 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
386 |
"each Add-on will continue to receive updates in the usual way."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../classes/settings.php:
|
390 |
msgid ""
|
391 |
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../classes/settings.php:
|
395 |
msgid "Addons are seperate plugins which need to be downloaded."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../classes/settings.php:
|
399 |
msgid "Download your Addons"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../classes/settings.php:
|
403 |
msgid "This website does not use add-ons"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../classes/settings.php:
|
407 |
msgid "See our website for the Pro-addon."
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../classes/settings.php:
|
411 |
msgid "Important"
|
412 |
msgstr ""
|
413 |
|
414 |
# @ default
|
415 |
-
#: ../classes/settings.php:
|
416 |
#, fuzzy
|
417 |
msgid "Database Changes"
|
418 |
msgstr "Wijzigingen opslaan"
|
419 |
|
420 |
-
#: ../classes/settings.php:
|
421 |
msgid ""
|
422 |
"The database has been changed between versions 1 and 2. But we made sure you "
|
423 |
"can still roll back to version 1x without any issues."
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../classes/settings.php:
|
427 |
msgid "Make sure you backup your database and then click"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../classes/settings.php:
|
431 |
msgid "Upgrade Database"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../classes/settings.php:
|
435 |
msgid "Potential Issues"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../classes/settings.php:
|
439 |
msgid ""
|
440 |
"Do to the sizable refactoring the code, surounding Addons and action/"
|
441 |
"filters, your website may not operate correctly. It is important that you "
|
442 |
"read the full"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../classes/settings.php:
|
446 |
msgid "Migrating from v1 to v2"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../classes/settings.php:
|
450 |
msgid "guide to view the full list of changes."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../classes/settings.php:
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
457 |
"can fix it in the next release."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../classes/settings.php:
|
461 |
msgid "Important!"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../classes/settings.php:
|
465 |
msgid ""
|
466 |
"If you updated the Admin Columns plugin without prior knowledge of such "
|
467 |
"changes, Please roll back to the latest"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../classes/settings.php:
|
471 |
msgid "version 1"
|
472 |
msgstr ""
|
473 |
|
474 |
# @ codepress-admin-columns
|
475 |
-
#: ../classes/settings.php:
|
476 |
#, fuzzy
|
477 |
msgid "of this plugin."
|
478 |
msgstr "Leuke plugin?"
|
479 |
|
480 |
-
#: ../classes/settings.php:
|
481 |
msgid "Changelog for"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../classes/settings.php:
|
485 |
msgid "Learn more"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../classes/settings.php:
|
489 |
msgid ""
|
490 |
"New to v2, all Addons act as separate plugins which need to be individually "
|
491 |
"downloaded, installed and updated."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../classes/settings.php:
|
495 |
msgid ""
|
496 |
"This page will assist you in downloading and installing each available Addon."
|
497 |
msgstr ""
|
498 |
|
499 |
# @ codepress-admin-columns
|
500 |
-
#: ../classes/settings.php:
|
501 |
#, fuzzy
|
502 |
msgid "Available Addons"
|
503 |
msgstr "Activeer Google Maps"
|
504 |
|
505 |
-
#: ../classes/settings.php:
|
506 |
msgid "Name"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../classes/settings.php:
|
510 |
msgid "Download"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../classes/settings.php:
|
514 |
msgid "Pro Add-on (includes Sortorder add-on)"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../classes/settings.php:
|
518 |
msgid "Installation"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../classes/settings.php:
|
522 |
msgid "For each Add-on available, please perform the following:"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../classes/settings.php:
|
526 |
msgid "Download the Addon plugin (.zip file) to your desktop"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../classes/settings.php:
|
530 |
msgid "Navigate to"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../classes/settings.php:
|
534 |
msgid "Plugins > Add New > Upload"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../classes/settings.php:
|
538 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../classes/settings.php:
|
542 |
msgid ""
|
543 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
544 |
"link"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../classes/settings.php:
|
548 |
msgid "The Add-on is now installed and activated!"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../classes/settings.php:
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"For automatic updates make sure to <a href='%s'>enter your licence key</a>."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../classes/settings.php:
|
558 |
msgid "Start using Admin Columns"
|
559 |
msgstr ""
|
560 |
|
561 |
# @ default
|
562 |
-
#: ../classes/settings.php:
|
563 |
#, fuzzy
|
564 |
msgid "Store settings"
|
565 |
msgstr "Instellingen"
|
566 |
|
567 |
-
#: ../classes/settings.php:
|
568 |
msgid "Update"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../classes/settings.php:
|
572 |
msgid "Publish"
|
573 |
msgstr ""
|
574 |
|
575 |
# @ codepress-admin-columns
|
576 |
-
#: ../classes/settings.php:
|
577 |
#, fuzzy, php-format
|
578 |
msgid ""
|
579 |
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
@@ -583,51 +559,51 @@ msgstr ""
|
|
583 |
"worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
|
584 |
|
585 |
# @ default
|
586 |
-
#: ../classes/settings.php:
|
587 |
#: ../classes/column/post/actions.php:53
|
588 |
msgid "Restore"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../classes/settings.php:
|
592 |
msgid "columns"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../classes/settings.php:
|
596 |
msgid "Get the Pro Add-on"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../classes/settings.php:
|
600 |
msgid "Add Sorting"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../classes/settings.php:
|
604 |
msgid "Add Filtering"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../classes/settings.php:
|
608 |
msgid "Add Import/Export"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../classes/settings.php:
|
612 |
#, php-format
|
613 |
msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
|
614 |
msgstr ""
|
615 |
|
616 |
# @ codepress-admin-columns
|
617 |
-
#: ../classes/settings.php:
|
618 |
#, fuzzy
|
619 |
msgid "Support"
|
620 |
msgstr "Hulp nodig?"
|
621 |
|
622 |
# @ codepress-admin-columns
|
623 |
-
#: ../classes/settings.php:
|
624 |
#, fuzzy
|
625 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
626 |
msgstr ""
|
627 |
"Je vindt een korte samenvatting in de <strong>Help</strong> sectie in de "
|
628 |
"rechter bovenkant van het scherm."
|
629 |
|
630 |
-
#: ../classes/settings.php:
|
631 |
#, php-format
|
632 |
msgid ""
|
633 |
"For full documentation, bug reports, feature suggestions and other tips <a "
|
@@ -635,61 +611,60 @@ msgid ""
|
|
635 |
msgstr ""
|
636 |
|
637 |
# @ codepress-admin-columns
|
638 |
-
#: ../classes/settings.php:
|
639 |
#, fuzzy
|
640 |
msgid "Drag and drop to reorder"
|
641 |
msgstr "sleep om de volgorde te veranderen"
|
642 |
|
643 |
# @ codepress-admin-columns
|
644 |
-
#: ../classes/settings.php:
|
645 |
#, fuzzy
|
646 |
msgid "Add Column"
|
647 |
msgstr "Voeg custom field kolom toe"
|
648 |
|
649 |
# @ default
|
650 |
-
#: ../classes/settings.php:
|
651 |
#, fuzzy
|
652 |
msgid "General Settings"
|
653 |
msgstr "Instellingen"
|
654 |
|
655 |
-
#: ../classes/settings.php:
|
656 |
msgid "Customize your Admin Columns settings."
|
657 |
msgstr ""
|
658 |
|
659 |
-
|
660 |
-
#: ../classes/settings.php:699
|
661 |
-
#, fuzzy
|
662 |
-
msgid "Custom field settings"
|
663 |
-
msgstr "Herstel standaard instellingen"
|
664 |
-
|
665 |
-
#: ../classes/settings.php:703
|
666 |
msgid "Show hidden custom fields. Default is <code>off</code>."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../classes/settings.php:
|
|
|
|
|
|
|
|
|
|
|
670 |
msgid "Save"
|
671 |
msgstr ""
|
672 |
|
673 |
# @ codepress-admin-columns
|
674 |
-
#: ../classes/settings.php:
|
675 |
#, fuzzy
|
676 |
msgid "Restore Settings"
|
677 |
msgstr "Herstel standaard instellingen"
|
678 |
|
679 |
# @ codepress-admin-columns
|
680 |
-
#: ../classes/settings.php:
|
681 |
msgid "This will delete all column settings and restore the default settings."
|
682 |
msgstr ""
|
683 |
"Hiermee worden alle kolommen instellingen verwijderd en de "
|
684 |
"standaardinstellingen hersteld."
|
685 |
|
686 |
# @ codepress-admin-columns
|
687 |
-
#: ../classes/settings.php:
|
688 |
msgid "Restore default settings"
|
689 |
msgstr "Herstel standaard instellingen"
|
690 |
|
691 |
# @ codepress-admin-columns
|
692 |
-
#: ../classes/settings.php:
|
693 |
msgid ""
|
694 |
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
695 |
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
@@ -697,26 +672,26 @@ msgstr ""
|
|
697 |
"Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
|
698 |
"worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
|
699 |
|
700 |
-
#: ../classes/storage_model.php:
|
701 |
msgid "settings succesfully restored."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../classes/storage_model.php:
|
705 |
msgid "No columns settings available."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../classes/storage_model.php:
|
709 |
#, php-format
|
710 |
msgid "You are trying to store the same settings for %s."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../classes/storage_model.php:
|
714 |
#, php-format
|
715 |
msgid "Settings for %s updated succesfully."
|
716 |
msgstr ""
|
717 |
|
718 |
# @ default
|
719 |
-
#: ../classes/storage_model.php:
|
720 |
msgid "View"
|
721 |
msgstr ""
|
722 |
|
@@ -724,53 +699,53 @@ msgstr ""
|
|
724 |
msgid "Upgrade"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: ../classes/upgrade.php:
|
728 |
msgid "requires a database upgrade"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../classes/upgrade.php:
|
732 |
msgid "why?"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../classes/upgrade.php:
|
736 |
msgid "Please"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../classes/upgrade.php:
|
740 |
msgid "backup your database"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: ../classes/upgrade.php:
|
744 |
msgid "then click"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../classes/upgrade.php:
|
748 |
msgid "Migrating Column Settings"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../classes/upgrade.php:
|
752 |
msgid "No Upgrade Required"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: ../classes/upgrade.php:
|
756 |
msgid "Return to welcome screen."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../classes/upgrade.php:
|
760 |
msgid "Upgrade Complete!"
|
761 |
msgstr ""
|
762 |
|
763 |
# @ codepress-admin-columns
|
764 |
-
#: ../classes/upgrade.php:
|
765 |
#, fuzzy
|
766 |
msgid "Return to settings."
|
767 |
msgstr "Herstel standaard instellingen"
|
768 |
|
769 |
-
#: ../classes/upgrade.php:
|
770 |
msgid "Error"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../classes/upgrade.php:
|
774 |
msgid ""
|
775 |
"Sorry. Something went wrong during the upgrade process. Please report this "
|
776 |
"on the support forum."
|
@@ -796,38 +771,38 @@ msgstr ""
|
|
796 |
msgid "Checkmark (true/false)"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../classes/column/custom-field.php:
|
800 |
msgid "Select your custom field."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../classes/column/custom-field.php:
|
804 |
msgid "No custom fields available."
|
805 |
msgstr ""
|
806 |
|
807 |
# @ codepress-admin-columns
|
808 |
-
#: ../classes/column/custom-field.php:
|
809 |
msgid "Field Type"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../classes/column/custom-field.php:
|
813 |
msgid "This will determine how the value will be displayed."
|
814 |
msgstr ""
|
815 |
|
816 |
# @ codepress-admin-columns
|
817 |
-
#: ../classes/column/custom-field.php:
|
818 |
msgid "Before"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: ../classes/column/custom-field.php:
|
822 |
msgid "This text will appear before the custom field value."
|
823 |
msgstr ""
|
824 |
|
825 |
# @ codepress-admin-columns
|
826 |
-
#: ../classes/column/custom-field.php:
|
827 |
msgid "After"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../classes/column/custom-field.php:
|
831 |
msgid "This text will appear after the custom field value."
|
832 |
msgstr ""
|
833 |
|
@@ -1378,6 +1353,11 @@ msgstr ""
|
|
1378 |
msgid "Users"
|
1379 |
msgstr ""
|
1380 |
|
|
|
|
|
|
|
|
|
|
|
1381 |
# @ codepress-admin-columns
|
1382 |
#, fuzzy
|
1383 |
#~ msgid "Add-ons"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Codepress Admin Columns v2.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-13 19:08+0100\n"
|
6 |
+
"PO-Revision-Date: 2013-08-13 19:08+0100\n"
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"Language: nl_NL\n"
|
21 |
"X-Poedit-SearchPath-1: ..\n"
|
22 |
|
23 |
# @ default
|
24 |
+
#: ../codepress-admin-columns.php:227 ../classes/settings.php:535
|
25 |
msgid "Settings"
|
26 |
msgstr "Instellingen"
|
27 |
|
28 |
+
#: ../codepress-admin-columns.php:350
|
29 |
msgid "Edit columns"
|
30 |
msgstr ""
|
31 |
|
45 |
msgid "Full"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../classes/column.php:774
|
49 |
msgid "Date Format"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../classes/column.php:775
|
53 |
msgid "This will determine how the date will be displayed."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../classes/column.php:781
|
57 |
msgid "Example:"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: ../classes/column.php:783
|
61 |
#, php-format
|
62 |
msgid ""
|
63 |
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
64 |
"date format here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../classes/column.php:784
|
68 |
msgid "Documentation on date and time formatting."
|
69 |
msgstr ""
|
70 |
|
71 |
# @ default
|
72 |
# @ codepress-admin-columns
|
73 |
+
#: ../classes/column.php:801
|
74 |
#, fuzzy
|
75 |
msgid "Excerpt length"
|
76 |
msgstr "Samenvatting"
|
77 |
|
78 |
+
#: ../classes/column.php:802
|
79 |
msgid "Number of words"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../classes/column.php:824
|
83 |
msgid "Preview size"
|
84 |
msgstr ""
|
85 |
|
86 |
# @ codepress-admin-columns
|
87 |
+
#: ../classes/column.php:841 ../classes/column.php:897
|
88 |
msgid "Custom"
|
89 |
msgstr ""
|
90 |
|
91 |
# @ codepress-admin-columns
|
92 |
+
#: ../classes/column.php:844
|
93 |
#, fuzzy
|
94 |
msgid "width"
|
95 |
msgstr "Breedte"
|
96 |
|
97 |
# @ codepress-admin-columns
|
98 |
+
#: ../classes/column.php:847
|
99 |
#, fuzzy
|
100 |
msgid "height"
|
101 |
msgstr "Hoogte"
|
102 |
|
103 |
# @ default
|
104 |
+
#: ../classes/column.php:898 ../classes/settings.php:224
|
105 |
#: ../classes/column/custom-field.php:72
|
106 |
msgid "Default"
|
107 |
msgstr ""
|
108 |
|
109 |
# @ default
|
110 |
+
#: ../classes/column.php:923 ../classes/column.php:984
|
111 |
#: ../classes/column/user/actions.php:65
|
112 |
msgid "Remove"
|
113 |
msgstr "Verwijder"
|
114 |
|
115 |
+
#: ../classes/column.php:942
|
116 |
msgid "Type"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../classes/column.php:942
|
120 |
msgid "Choose a column type."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../classes/column.php:952
|
124 |
msgid "Label"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../classes/column.php:952
|
128 |
msgid "This is the name which will appear as the column header."
|
129 |
msgstr ""
|
130 |
|
131 |
# @ codepress-admin-columns
|
132 |
+
#: ../classes/column.php:959 ../classes/column/media/width.php:12
|
133 |
msgid "Width"
|
134 |
msgstr "Breedte"
|
135 |
|
136 |
# @ codepress-admin-columns
|
137 |
+
#: ../classes/column.php:961 ../classes/column.php:962
|
138 |
#, fuzzy
|
139 |
msgid "default"
|
140 |
msgstr "Herstel instellingen"
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
# @ codepress-admin-columns
|
143 |
#: ../classes/settings.php:68
|
144 |
msgid "Admin Columns Settings"
|
145 |
msgstr ""
|
146 |
|
147 |
# @ codepress-admin-columns
|
148 |
+
#: ../classes/settings.php:68 ../classes/settings.php:534
|
149 |
+
#: ../classes/upgrade.php:89
|
150 |
msgid "Admin Columns"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../classes/settings.php:129
|
154 |
+
#, php-format
|
155 |
+
msgid "%s column is already present and can not be duplicated."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: ../classes/settings.php:184
|
159 |
msgid "Default settings succesfully restored."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../classes/settings.php:202 ../classes/settings.php:457
|
163 |
msgid "Overview"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../classes/settings.php:205
|
167 |
msgid ""
|
168 |
"This plugin is for adding and removing additional columns to the "
|
169 |
"administration screens for post(types), pages, media library, comments, "
|
170 |
"links and users. Change the column's label and reorder them."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../classes/settings.php:208
|
174 |
msgid "Basics"
|
175 |
msgstr ""
|
176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
# @ codepress-admin-columns
|
178 |
+
#: ../classes/settings.php:210
|
179 |
#, fuzzy
|
180 |
msgid "Change order"
|
181 |
msgstr "Pagina Volgorde"
|
182 |
|
183 |
+
#: ../classes/settings.php:211
|
184 |
msgid ""
|
185 |
"By dragging the columns you can change the order which they will appear in."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../classes/settings.php:212
|
189 |
msgid "Change label"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ../classes/settings.php:213
|
193 |
msgid ""
|
194 |
"By clicking on the triangle you will see the column options. Here you can "
|
195 |
"change each label of the columns heading."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../classes/settings.php:214
|
199 |
msgid "Change column width"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../classes/settings.php:215
|
203 |
msgid ""
|
204 |
"By clicking on the triangle you will see the column options. By using the "
|
205 |
"draggable slider yo can set the width of the columns in percentages."
|
206 |
msgstr ""
|
207 |
|
208 |
# @ codepress-admin-columns
|
209 |
+
#: ../classes/settings.php:219 ../classes/column/custom-field.php:16
|
210 |
+
#: ../classes/column/custom-field.php:324
|
211 |
msgid "Custom Field"
|
212 |
msgstr ""
|
213 |
|
214 |
# @ codepress-admin-columns
|
215 |
+
#: ../classes/settings.php:221
|
216 |
#, fuzzy
|
217 |
msgid "'Custom Field' column"
|
218 |
msgstr "Voeg custom field kolom toe"
|
219 |
|
220 |
+
#: ../classes/settings.php:222
|
221 |
msgid ""
|
222 |
"The custom field colum uses the custom fields from posts and users. There "
|
223 |
"are 10 types which you can set."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../classes/settings.php:224
|
227 |
msgid ""
|
228 |
"Value: Can be either a string or array. Arrays will be flattened and values "
|
229 |
"are seperated by a ',' comma."
|
231 |
|
232 |
# @ default
|
233 |
# @ codepress-admin-columns
|
234 |
+
#: ../classes/settings.php:225 ../classes/column/custom-field.php:73
|
235 |
#: ../classes/column/link/image.php:12
|
236 |
msgid "Image"
|
237 |
msgstr "Afbeelding"
|
238 |
|
239 |
+
#: ../classes/settings.php:225
|
240 |
msgid ""
|
241 |
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
242 |
"comma )."
|
244 |
|
245 |
# @ default
|
246 |
# @ codepress-admin-columns
|
247 |
+
#: ../classes/settings.php:226 ../classes/column/custom-field.php:75
|
248 |
#: ../classes/column/comment/excerpt.php:13
|
249 |
#: ../classes/column/post/excerpt.php:13
|
250 |
msgid "Excerpt"
|
251 |
msgstr "Samenvatting"
|
252 |
|
253 |
+
#: ../classes/settings.php:226
|
254 |
msgid "Value: This will show the first 20 words of the Post content."
|
255 |
msgstr ""
|
256 |
|
257 |
# @ codepress-admin-columns
|
258 |
+
#: ../classes/settings.php:227 ../classes/column/custom-field.php:76
|
259 |
msgid "Multiple Values"
|
260 |
msgstr "Meerdere waarden"
|
261 |
|
262 |
+
#: ../classes/settings.php:227
|
263 |
msgid ""
|
264 |
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
265 |
msgstr ""
|
266 |
|
267 |
# @ codepress-admin-columns
|
268 |
+
#: ../classes/settings.php:228 ../classes/column/custom-field.php:77
|
269 |
msgid "Numeric"
|
270 |
msgstr "Numerieke"
|
271 |
|
272 |
+
#: ../classes/settings.php:228
|
273 |
msgid ""
|
274 |
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
275 |
"for sorting, so you can sort your posts on numeric (custom field) values."
|
276 |
msgstr ""
|
277 |
|
278 |
# @ codepress-admin-columns
|
279 |
+
#: ../classes/settings.php:229 ../classes/column/custom-field.php:78
|
280 |
#: ../classes/column/comment/date.php:12
|
281 |
msgid "Date"
|
282 |
msgstr "Datum"
|
283 |
|
284 |
+
#: ../classes/settings.php:229
|
285 |
#, php-format
|
286 |
msgid ""
|
287 |
"Value: Can be unix time stamp or a date format as described in the <a "
|
290 |
msgstr ""
|
291 |
|
292 |
# @ codepress-admin-columns
|
293 |
+
#: ../classes/settings.php:230
|
294 |
#, fuzzy
|
295 |
msgid "Post Titles"
|
296 |
msgstr "Post Titel (Post ID's)"
|
297 |
|
298 |
+
#: ../classes/settings.php:230
|
299 |
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../classes/settings.php:231
|
303 |
msgid "Usernames"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../classes/settings.php:231
|
307 |
msgid "Value: can be one or more User ID's (seperated by ',')."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../classes/settings.php:232
|
311 |
msgid "Checkmark"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../classes/settings.php:232
|
315 |
msgid "Value: should be a 1 (one) or 0 (zero)."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../classes/settings.php:233 ../classes/column/custom-field.php:82
|
319 |
msgid "Color"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../classes/settings.php:233
|
323 |
msgid "Value: hex value color, such as #808080."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: ../classes/settings.php:377
|
327 |
msgid "Welcome to Admin Columns"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ../classes/settings.php:380
|
331 |
msgid "Thank you for updating to the latest version!"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../classes/settings.php:381
|
335 |
msgid ""
|
336 |
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
337 |
"like it."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../classes/settings.php:386
|
341 |
msgid "What’s New"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../classes/settings.php:387
|
345 |
msgid "Changelog"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../classes/settings.php:389
|
349 |
msgid "Download Addons"
|
350 |
msgstr ""
|
351 |
|
352 |
# @ default
|
353 |
+
#: ../classes/settings.php:395
|
354 |
#, fuzzy
|
355 |
msgid "Addons"
|
356 |
msgstr "Adres"
|
357 |
|
358 |
+
#: ../classes/settings.php:397
|
359 |
msgid ""
|
360 |
"Addons are now activated by downloading and installing individual plugins. "
|
361 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
362 |
"each Add-on will continue to receive updates in the usual way."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../classes/settings.php:400
|
366 |
msgid ""
|
367 |
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../classes/settings.php:403
|
371 |
msgid "Addons are seperate plugins which need to be downloaded."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../classes/settings.php:403
|
375 |
msgid "Download your Addons"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../classes/settings.php:409
|
379 |
msgid "This website does not use add-ons"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../classes/settings.php:409
|
383 |
msgid "See our website for the Pro-addon."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../classes/settings.php:416
|
387 |
msgid "Important"
|
388 |
msgstr ""
|
389 |
|
390 |
# @ default
|
391 |
+
#: ../classes/settings.php:418
|
392 |
#, fuzzy
|
393 |
msgid "Database Changes"
|
394 |
msgstr "Wijzigingen opslaan"
|
395 |
|
396 |
+
#: ../classes/settings.php:419
|
397 |
msgid ""
|
398 |
"The database has been changed between versions 1 and 2. But we made sure you "
|
399 |
"can still roll back to version 1x without any issues."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../classes/settings.php:422
|
403 |
msgid "Make sure you backup your database and then click"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../classes/settings.php:422 ../classes/upgrade.php:97
|
407 |
msgid "Upgrade Database"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../classes/settings.php:425
|
411 |
msgid "Potential Issues"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ../classes/settings.php:426
|
415 |
msgid ""
|
416 |
"Do to the sizable refactoring the code, surounding Addons and action/"
|
417 |
"filters, your website may not operate correctly. It is important that you "
|
418 |
"read the full"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../classes/settings.php:426
|
422 |
msgid "Migrating from v1 to v2"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../classes/settings.php:426
|
426 |
msgid "guide to view the full list of changes."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../classes/settings.php:426
|
430 |
#, php-format
|
431 |
msgid ""
|
432 |
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
433 |
"can fix it in the next release."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../classes/settings.php:429
|
437 |
msgid "Important!"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../classes/settings.php:429
|
441 |
msgid ""
|
442 |
"If you updated the Admin Columns plugin without prior knowledge of such "
|
443 |
"changes, Please roll back to the latest"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../classes/settings.php:429
|
447 |
msgid "version 1"
|
448 |
msgstr ""
|
449 |
|
450 |
# @ codepress-admin-columns
|
451 |
+
#: ../classes/settings.php:429
|
452 |
#, fuzzy
|
453 |
msgid "of this plugin."
|
454 |
msgstr "Leuke plugin?"
|
455 |
|
456 |
+
#: ../classes/settings.php:435
|
457 |
msgid "Changelog for"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../classes/settings.php:450
|
461 |
msgid "Learn more"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../classes/settings.php:459
|
465 |
msgid ""
|
466 |
"New to v2, all Addons act as separate plugins which need to be individually "
|
467 |
"downloaded, installed and updated."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ../classes/settings.php:460
|
471 |
msgid ""
|
472 |
"This page will assist you in downloading and installing each available Addon."
|
473 |
msgstr ""
|
474 |
|
475 |
# @ codepress-admin-columns
|
476 |
+
#: ../classes/settings.php:461
|
477 |
#, fuzzy
|
478 |
msgid "Available Addons"
|
479 |
msgstr "Activeer Google Maps"
|
480 |
|
481 |
+
#: ../classes/settings.php:466
|
482 |
msgid "Name"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../classes/settings.php:467 ../classes/settings.php:475
|
486 |
msgid "Download"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../classes/settings.php:473
|
490 |
msgid "Pro Add-on (includes Sortorder add-on)"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../classes/settings.php:483
|
494 |
msgid "Installation"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../classes/settings.php:485
|
498 |
msgid "For each Add-on available, please perform the following:"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../classes/settings.php:487
|
502 |
msgid "Download the Addon plugin (.zip file) to your desktop"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../classes/settings.php:488
|
506 |
msgid "Navigate to"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../classes/settings.php:488
|
510 |
msgid "Plugins > Add New > Upload"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../classes/settings.php:489
|
514 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../classes/settings.php:490
|
518 |
msgid ""
|
519 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
520 |
"link"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ../classes/settings.php:491
|
524 |
msgid "The Add-on is now installed and activated!"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ../classes/settings.php:492
|
528 |
#, php-format
|
529 |
msgid ""
|
530 |
"For automatic updates make sure to <a href='%s'>enter your licence key</a>."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../classes/settings.php:502
|
534 |
msgid "Start using Admin Columns"
|
535 |
msgstr ""
|
536 |
|
537 |
# @ default
|
538 |
+
#: ../classes/settings.php:580
|
539 |
#, fuzzy
|
540 |
msgid "Store settings"
|
541 |
msgstr "Instellingen"
|
542 |
|
543 |
+
#: ../classes/settings.php:585
|
544 |
msgid "Update"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: ../classes/settings.php:585
|
548 |
msgid "Publish"
|
549 |
msgstr ""
|
550 |
|
551 |
# @ codepress-admin-columns
|
552 |
+
#: ../classes/settings.php:589
|
553 |
#, fuzzy, php-format
|
554 |
msgid ""
|
555 |
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
559 |
"worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
|
560 |
|
561 |
# @ default
|
562 |
+
#: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
|
563 |
#: ../classes/column/post/actions.php:53
|
564 |
msgid "Restore"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../classes/settings.php:590
|
568 |
msgid "columns"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../classes/settings.php:600
|
572 |
msgid "Get the Pro Add-on"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../classes/settings.php:604
|
576 |
msgid "Add Sorting"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../classes/settings.php:605
|
580 |
msgid "Add Filtering"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: ../classes/settings.php:606
|
584 |
msgid "Add Import/Export"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../classes/settings.php:609
|
588 |
#, php-format
|
589 |
msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
|
590 |
msgstr ""
|
591 |
|
592 |
# @ codepress-admin-columns
|
593 |
+
#: ../classes/settings.php:617
|
594 |
#, fuzzy
|
595 |
msgid "Support"
|
596 |
msgstr "Hulp nodig?"
|
597 |
|
598 |
# @ codepress-admin-columns
|
599 |
+
#: ../classes/settings.php:620
|
600 |
#, fuzzy
|
601 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
602 |
msgstr ""
|
603 |
"Je vindt een korte samenvatting in de <strong>Help</strong> sectie in de "
|
604 |
"rechter bovenkant van het scherm."
|
605 |
|
606 |
+
#: ../classes/settings.php:622
|
607 |
#, php-format
|
608 |
msgid ""
|
609 |
"For full documentation, bug reports, feature suggestions and other tips <a "
|
611 |
msgstr ""
|
612 |
|
613 |
# @ codepress-admin-columns
|
614 |
+
#: ../classes/settings.php:642
|
615 |
#, fuzzy
|
616 |
msgid "Drag and drop to reorder"
|
617 |
msgstr "sleep om de volgorde te veranderen"
|
618 |
|
619 |
# @ codepress-admin-columns
|
620 |
+
#: ../classes/settings.php:645
|
621 |
#, fuzzy
|
622 |
msgid "Add Column"
|
623 |
msgstr "Voeg custom field kolom toe"
|
624 |
|
625 |
# @ default
|
626 |
+
#: ../classes/settings.php:696
|
627 |
#, fuzzy
|
628 |
msgid "General Settings"
|
629 |
msgstr "Instellingen"
|
630 |
|
631 |
+
#: ../classes/settings.php:697
|
632 |
msgid "Customize your Admin Columns settings."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../classes/settings.php:710
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
msgid "Show hidden custom fields. Default is <code>off</code>."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../classes/settings.php:716
|
640 |
+
msgid ""
|
641 |
+
"Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: ../classes/settings.php:723
|
645 |
msgid "Save"
|
646 |
msgstr ""
|
647 |
|
648 |
# @ codepress-admin-columns
|
649 |
+
#: ../classes/settings.php:763
|
650 |
#, fuzzy
|
651 |
msgid "Restore Settings"
|
652 |
msgstr "Herstel standaard instellingen"
|
653 |
|
654 |
# @ codepress-admin-columns
|
655 |
+
#: ../classes/settings.php:764
|
656 |
msgid "This will delete all column settings and restore the default settings."
|
657 |
msgstr ""
|
658 |
"Hiermee worden alle kolommen instellingen verwijderd en de "
|
659 |
"standaardinstellingen hersteld."
|
660 |
|
661 |
# @ codepress-admin-columns
|
662 |
+
#: ../classes/settings.php:770
|
663 |
msgid "Restore default settings"
|
664 |
msgstr "Herstel standaard instellingen"
|
665 |
|
666 |
# @ codepress-admin-columns
|
667 |
+
#: ../classes/settings.php:770
|
668 |
msgid ""
|
669 |
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
670 |
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
672 |
"Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
|
673 |
"worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
|
674 |
|
675 |
+
#: ../classes/storage_model.php:167
|
676 |
msgid "settings succesfully restored."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: ../classes/storage_model.php:181
|
680 |
msgid "No columns settings available."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../classes/storage_model.php:204
|
684 |
#, php-format
|
685 |
msgid "You are trying to store the same settings for %s."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../classes/storage_model.php:208
|
689 |
#, php-format
|
690 |
msgid "Settings for %s updated succesfully."
|
691 |
msgstr ""
|
692 |
|
693 |
# @ default
|
694 |
+
#: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
|
695 |
msgid "View"
|
696 |
msgstr ""
|
697 |
|
699 |
msgid "Upgrade"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../classes/upgrade.php:90
|
703 |
msgid "requires a database upgrade"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../classes/upgrade.php:93
|
707 |
msgid "why?"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../classes/upgrade.php:94
|
711 |
msgid "Please"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: ../classes/upgrade.php:95
|
715 |
msgid "backup your database"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../classes/upgrade.php:96
|
719 |
msgid "then click"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../classes/upgrade.php:304
|
723 |
msgid "Migrating Column Settings"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../classes/upgrade.php:340
|
727 |
msgid "No Upgrade Required"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../classes/upgrade.php:341
|
731 |
msgid "Return to welcome screen."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../classes/upgrade.php:359
|
735 |
msgid "Upgrade Complete!"
|
736 |
msgstr ""
|
737 |
|
738 |
# @ codepress-admin-columns
|
739 |
+
#: ../classes/upgrade.php:359
|
740 |
#, fuzzy
|
741 |
msgid "Return to settings."
|
742 |
msgstr "Herstel standaard instellingen"
|
743 |
|
744 |
+
#: ../classes/upgrade.php:360
|
745 |
msgid "Error"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../classes/upgrade.php:361
|
749 |
msgid ""
|
750 |
"Sorry. Something went wrong during the upgrade process. Please report this "
|
751 |
"on the support forum."
|
771 |
msgid "Checkmark (true/false)"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: ../classes/column/custom-field.php:324
|
775 |
msgid "Select your custom field."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: ../classes/column/custom-field.php:334
|
779 |
msgid "No custom fields available."
|
780 |
msgstr ""
|
781 |
|
782 |
# @ codepress-admin-columns
|
783 |
+
#: ../classes/column/custom-field.php:341
|
784 |
msgid "Field Type"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../classes/column/custom-field.php:341
|
788 |
msgid "This will determine how the value will be displayed."
|
789 |
msgstr ""
|
790 |
|
791 |
# @ codepress-admin-columns
|
792 |
+
#: ../classes/column/custom-field.php:384
|
793 |
msgid "Before"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../classes/column/custom-field.php:384
|
797 |
msgid "This text will appear before the custom field value."
|
798 |
msgstr ""
|
799 |
|
800 |
# @ codepress-admin-columns
|
801 |
+
#: ../classes/column/custom-field.php:390
|
802 |
msgid "After"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../classes/column/custom-field.php:390
|
806 |
msgid "This text will appear after the custom field value."
|
807 |
msgstr ""
|
808 |
|
1353 |
msgid "Users"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
# @ codepress-admin-columns
|
1357 |
+
#, fuzzy
|
1358 |
+
#~ msgid "Custom field settings"
|
1359 |
+
#~ msgstr "Herstel standaard instellingen"
|
1360 |
+
|
1361 |
# @ codepress-admin-columns
|
1362 |
#, fuzzy
|
1363 |
#~ msgid "Add-ons"
|
languages/cpac.mo
CHANGED
Binary file
|
languages/cpac.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Codepress Admin Columns\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-08-
|
6 |
-
"PO-Revision-Date: 2013-08-
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,11 +16,11 @@ msgstr ""
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
-
#: ../codepress-admin-columns.php:
|
20 |
msgid "Settings"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: ../codepress-admin-columns.php:
|
24 |
msgid "Edit columns"
|
25 |
msgstr ""
|
26 |
|
@@ -40,240 +40,216 @@ msgstr ""
|
|
40 |
msgid "Full"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../classes/column.php:
|
44 |
msgid "Date Format"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../classes/column.php:
|
48 |
msgid "This will determine how the date will be displayed."
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../classes/column.php:
|
52 |
msgid "Example:"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ../classes/column.php:
|
56 |
#, php-format
|
57 |
msgid ""
|
58 |
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
59 |
"date format here</a>."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../classes/column.php:
|
63 |
msgid "Documentation on date and time formatting."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../classes/column.php:
|
67 |
msgid "Excerpt length"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../classes/column.php:
|
71 |
msgid "Number of words"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../classes/column.php:
|
75 |
msgid "Preview size"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../classes/column.php:
|
79 |
msgid "Custom"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../classes/column.php:
|
83 |
msgid "width"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../classes/column.php:
|
87 |
msgid "height"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../classes/column.php:
|
91 |
#: ../classes/column/custom-field.php:72
|
92 |
msgid "Default"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../classes/column.php:
|
96 |
#: ../classes/column/user/actions.php:65
|
97 |
msgid "Remove"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../classes/column.php:
|
101 |
msgid "Type"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../classes/column.php:
|
105 |
msgid "Choose a column type."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../classes/column.php:
|
109 |
msgid "Label"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ../classes/column.php:
|
113 |
msgid "This is the name which will appear as the column header."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../classes/column.php:
|
117 |
msgid "Width"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../classes/column.php:
|
121 |
msgid "default"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../classes/export_import.php:64
|
125 |
-
msgid "Export field is empty. Please select your types from the left column."
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../classes/export_import.php:99 ../classes/export_import.php:101
|
129 |
-
msgid "Sorry, there has been an error."
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: ../classes/export_import.php:101
|
133 |
-
#, php-format
|
134 |
-
msgid ""
|
135 |
-
"The export file could not be found at <code>%s</code>. It is likely that "
|
136 |
-
"this was caused by a permissions problem."
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: ../classes/export_import.php:119
|
140 |
-
msgid "Import failed. File does not contain Admin Column settings."
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
#: ../classes/settings.php:68
|
144 |
msgid "Admin Columns Settings"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../classes/settings.php:68 ../classes/settings.php:
|
148 |
-
#: ../classes/upgrade.php:
|
149 |
msgid "Admin Columns"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../classes/settings.php:
|
|
|
|
|
|
|
|
|
|
|
153 |
msgid "Default settings succesfully restored."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../classes/settings.php:
|
157 |
msgid "Overview"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../classes/settings.php:
|
161 |
msgid ""
|
162 |
"This plugin is for adding and removing additional columns to the "
|
163 |
"administration screens for post(types), pages, media library, comments, "
|
164 |
"links and users. Change the column's label and reorder them."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../classes/settings.php:
|
168 |
msgid "Basics"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../classes/settings.php:
|
172 |
-
msgid "Show / Hide"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: ../classes/settings.php:206
|
176 |
-
msgid ""
|
177 |
-
"You can switch columns on or off by clicking on the checkbox. This will show "
|
178 |
-
"or hide each column heading."
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../classes/settings.php:207
|
182 |
msgid "Change order"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../classes/settings.php:
|
186 |
msgid ""
|
187 |
"By dragging the columns you can change the order which they will appear in."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../classes/settings.php:
|
191 |
msgid "Change label"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../classes/settings.php:
|
195 |
msgid ""
|
196 |
"By clicking on the triangle you will see the column options. Here you can "
|
197 |
"change each label of the columns heading."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../classes/settings.php:
|
201 |
msgid "Change column width"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../classes/settings.php:
|
205 |
msgid ""
|
206 |
"By clicking on the triangle you will see the column options. By using the "
|
207 |
"draggable slider yo can set the width of the columns in percentages."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../classes/settings.php:
|
211 |
-
#: ../classes/column/custom-field.php:
|
212 |
msgid "Custom Field"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../classes/settings.php:
|
216 |
msgid "'Custom Field' column"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../classes/settings.php:
|
220 |
msgid ""
|
221 |
"The custom field colum uses the custom fields from posts and users. There "
|
222 |
"are 10 types which you can set."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ../classes/settings.php:
|
226 |
msgid ""
|
227 |
"Value: Can be either a string or array. Arrays will be flattened and values "
|
228 |
"are seperated by a ',' comma."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../classes/settings.php:
|
232 |
#: ../classes/column/link/image.php:12
|
233 |
msgid "Image"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../classes/settings.php:
|
237 |
msgid ""
|
238 |
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
239 |
"comma )."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../classes/settings.php:
|
243 |
#: ../classes/column/comment/excerpt.php:13
|
244 |
#: ../classes/column/post/excerpt.php:13
|
245 |
msgid "Excerpt"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../classes/settings.php:
|
249 |
msgid "Value: This will show the first 20 words of the Post content."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../classes/settings.php:
|
253 |
msgid "Multiple Values"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../classes/settings.php:
|
257 |
msgid ""
|
258 |
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../classes/settings.php:
|
262 |
msgid "Numeric"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../classes/settings.php:
|
266 |
msgid ""
|
267 |
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
268 |
"for sorting, so you can sort your posts on numeric (custom field) values."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../classes/settings.php:
|
272 |
#: ../classes/column/comment/date.php:12
|
273 |
msgid "Date"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../classes/settings.php:
|
277 |
#, php-format
|
278 |
msgid ""
|
279 |
"Value: Can be unix time stamp or a date format as described in the <a "
|
@@ -281,370 +257,371 @@ msgid ""
|
|
281 |
"href='%s'>general settings</a> page."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../classes/settings.php:
|
285 |
msgid "Post Titles"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../classes/settings.php:
|
289 |
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../classes/settings.php:
|
293 |
msgid "Usernames"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../classes/settings.php:
|
297 |
msgid "Value: can be one or more User ID's (seperated by ',')."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../classes/settings.php:
|
301 |
msgid "Checkmark"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ../classes/settings.php:
|
305 |
msgid "Value: should be a 1 (one) or 0 (zero)."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: ../classes/settings.php:
|
309 |
msgid "Color"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../classes/settings.php:
|
313 |
msgid "Value: hex value color, such as #808080."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../classes/settings.php:
|
317 |
msgid "Welcome to Admin Columns"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../classes/settings.php:
|
321 |
msgid "Thank you for updating to the latest version!"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../classes/settings.php:
|
325 |
msgid ""
|
326 |
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
327 |
"like it."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../classes/settings.php:
|
331 |
msgid "What’s New"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../classes/settings.php:
|
335 |
msgid "Changelog"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../classes/settings.php:
|
339 |
msgid "Download Addons"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../classes/settings.php:
|
343 |
msgid "Addons"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../classes/settings.php:
|
347 |
msgid ""
|
348 |
"Addons are now activated by downloading and installing individual plugins. "
|
349 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
350 |
"each Add-on will continue to receive updates in the usual way."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../classes/settings.php:
|
354 |
msgid ""
|
355 |
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../classes/settings.php:
|
359 |
msgid "Addons are seperate plugins which need to be downloaded."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../classes/settings.php:
|
363 |
msgid "Download your Addons"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../classes/settings.php:
|
367 |
msgid "This website does not use add-ons"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../classes/settings.php:
|
371 |
msgid "See our website for the Pro-addon."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../classes/settings.php:
|
375 |
msgid "Important"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../classes/settings.php:
|
379 |
msgid "Database Changes"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../classes/settings.php:
|
383 |
msgid ""
|
384 |
"The database has been changed between versions 1 and 2. But we made sure you "
|
385 |
"can still roll back to version 1x without any issues."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../classes/settings.php:
|
389 |
msgid "Make sure you backup your database and then click"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../classes/settings.php:
|
393 |
msgid "Upgrade Database"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../classes/settings.php:
|
397 |
msgid "Potential Issues"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../classes/settings.php:
|
401 |
msgid ""
|
402 |
"Do to the sizable refactoring the code, surounding Addons and action/"
|
403 |
"filters, your website may not operate correctly. It is important that you "
|
404 |
"read the full"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../classes/settings.php:
|
408 |
msgid "Migrating from v1 to v2"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../classes/settings.php:
|
412 |
msgid "guide to view the full list of changes."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../classes/settings.php:
|
416 |
#, php-format
|
417 |
msgid ""
|
418 |
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
419 |
"can fix it in the next release."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../classes/settings.php:
|
423 |
msgid "Important!"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../classes/settings.php:
|
427 |
msgid ""
|
428 |
"If you updated the Admin Columns plugin without prior knowledge of such "
|
429 |
"changes, Please roll back to the latest"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../classes/settings.php:
|
433 |
msgid "version 1"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../classes/settings.php:
|
437 |
msgid "of this plugin."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../classes/settings.php:
|
441 |
msgid "Changelog for"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../classes/settings.php:
|
445 |
msgid "Learn more"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../classes/settings.php:
|
449 |
msgid ""
|
450 |
"New to v2, all Addons act as separate plugins which need to be individually "
|
451 |
"downloaded, installed and updated."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../classes/settings.php:
|
455 |
msgid ""
|
456 |
"This page will assist you in downloading and installing each available Addon."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../classes/settings.php:
|
460 |
msgid "Available Addons"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../classes/settings.php:
|
464 |
msgid "Name"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../classes/settings.php:
|
468 |
msgid "Download"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../classes/settings.php:
|
472 |
msgid "Pro Add-on (includes Sortorder add-on)"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../classes/settings.php:
|
476 |
msgid "Installation"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../classes/settings.php:
|
480 |
msgid "For each Add-on available, please perform the following:"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../classes/settings.php:
|
484 |
msgid "Download the Addon plugin (.zip file) to your desktop"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../classes/settings.php:
|
488 |
msgid "Navigate to"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../classes/settings.php:
|
492 |
msgid "Plugins > Add New > Upload"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../classes/settings.php:
|
496 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../classes/settings.php:
|
500 |
msgid ""
|
501 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
502 |
"link"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../classes/settings.php:
|
506 |
msgid "The Add-on is now installed and activated!"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../classes/settings.php:
|
510 |
#, php-format
|
511 |
msgid ""
|
512 |
"For automatic updates make sure to <a href='%s'>enter your licence key</a>."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../classes/settings.php:
|
516 |
msgid "Start using Admin Columns"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../classes/settings.php:
|
520 |
msgid "Store settings"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../classes/settings.php:
|
524 |
msgid "Update"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../classes/settings.php:
|
528 |
msgid "Publish"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../classes/settings.php:
|
532 |
#, php-format
|
533 |
msgid ""
|
534 |
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
535 |
"\\' to delete, \\'Cancel\\' to stop"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../classes/settings.php:
|
539 |
#: ../classes/column/post/actions.php:53
|
540 |
msgid "Restore"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../classes/settings.php:
|
544 |
msgid "columns"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../classes/settings.php:
|
548 |
msgid "Get the Pro Add-on"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../classes/settings.php:
|
552 |
msgid "Add Sorting"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../classes/settings.php:
|
556 |
msgid "Add Filtering"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../classes/settings.php:
|
560 |
msgid "Add Import/Export"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../classes/settings.php:
|
564 |
#, php-format
|
565 |
msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../classes/settings.php:
|
569 |
msgid "Support"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../classes/settings.php:
|
573 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../classes/settings.php:
|
577 |
#, php-format
|
578 |
msgid ""
|
579 |
"For full documentation, bug reports, feature suggestions and other tips <a "
|
580 |
"href='%s'>visit the Admin Columns website</a>"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../classes/settings.php:
|
584 |
msgid "Drag and drop to reorder"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../classes/settings.php:
|
588 |
msgid "Add Column"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../classes/settings.php:
|
592 |
msgid "General Settings"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../classes/settings.php:
|
596 |
msgid "Customize your Admin Columns settings."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../classes/settings.php:
|
600 |
-
msgid "
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../classes/settings.php:
|
604 |
-
msgid "
|
|
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../classes/settings.php:
|
608 |
msgid "Save"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../classes/settings.php:
|
612 |
msgid "Restore Settings"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../classes/settings.php:
|
616 |
msgid "This will delete all column settings and restore the default settings."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../classes/settings.php:
|
620 |
msgid "Restore default settings"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: ../classes/settings.php:
|
624 |
msgid ""
|
625 |
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
626 |
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../classes/storage_model.php:
|
630 |
msgid "settings succesfully restored."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../classes/storage_model.php:
|
634 |
msgid "No columns settings available."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../classes/storage_model.php:
|
638 |
#, php-format
|
639 |
msgid "You are trying to store the same settings for %s."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../classes/storage_model.php:
|
643 |
#, php-format
|
644 |
msgid "Settings for %s updated succesfully."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../classes/storage_model.php:
|
648 |
msgid "View"
|
649 |
msgstr ""
|
650 |
|
@@ -652,51 +629,51 @@ msgstr ""
|
|
652 |
msgid "Upgrade"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../classes/upgrade.php:
|
656 |
msgid "requires a database upgrade"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../classes/upgrade.php:
|
660 |
msgid "why?"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: ../classes/upgrade.php:
|
664 |
msgid "Please"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: ../classes/upgrade.php:
|
668 |
msgid "backup your database"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../classes/upgrade.php:
|
672 |
msgid "then click"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../classes/upgrade.php:
|
676 |
msgid "Migrating Column Settings"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: ../classes/upgrade.php:
|
680 |
msgid "No Upgrade Required"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../classes/upgrade.php:
|
684 |
msgid "Return to welcome screen."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../classes/upgrade.php:
|
688 |
msgid "Upgrade Complete!"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../classes/upgrade.php:
|
692 |
msgid "Return to settings."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../classes/upgrade.php:
|
696 |
msgid "Error"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: ../classes/upgrade.php:
|
700 |
msgid ""
|
701 |
"Sorry. Something went wrong during the upgrade process. Please report this "
|
702 |
"on the support forum."
|
@@ -718,35 +695,35 @@ msgstr ""
|
|
718 |
msgid "Checkmark (true/false)"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../classes/column/custom-field.php:
|
722 |
msgid "Select your custom field."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../classes/column/custom-field.php:
|
726 |
msgid "No custom fields available."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../classes/column/custom-field.php:
|
730 |
msgid "Field Type"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../classes/column/custom-field.php:
|
734 |
msgid "This will determine how the value will be displayed."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../classes/column/custom-field.php:
|
738 |
msgid "Before"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../classes/column/custom-field.php:
|
742 |
msgid "This text will appear before the custom field value."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../classes/column/custom-field.php:
|
746 |
msgid "After"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../classes/column/custom-field.php:
|
750 |
msgid "This text will appear after the custom field value."
|
751 |
msgstr ""
|
752 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Codepress Admin Columns\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-13 19:08+0100\n"
|
6 |
+
"PO-Revision-Date: 2013-08-13 19:08+0100\n"
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
+
#: ../codepress-admin-columns.php:227 ../classes/settings.php:535
|
20 |
msgid "Settings"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: ../codepress-admin-columns.php:350
|
24 |
msgid "Edit columns"
|
25 |
msgstr ""
|
26 |
|
40 |
msgid "Full"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../classes/column.php:774
|
44 |
msgid "Date Format"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../classes/column.php:775
|
48 |
msgid "This will determine how the date will be displayed."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../classes/column.php:781
|
52 |
msgid "Example:"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../classes/column.php:783
|
56 |
#, php-format
|
57 |
msgid ""
|
58 |
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
59 |
"date format here</a>."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../classes/column.php:784
|
63 |
msgid "Documentation on date and time formatting."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../classes/column.php:801
|
67 |
msgid "Excerpt length"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../classes/column.php:802
|
71 |
msgid "Number of words"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../classes/column.php:824
|
75 |
msgid "Preview size"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../classes/column.php:841 ../classes/column.php:897
|
79 |
msgid "Custom"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../classes/column.php:844
|
83 |
msgid "width"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../classes/column.php:847
|
87 |
msgid "height"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../classes/column.php:898 ../classes/settings.php:224
|
91 |
#: ../classes/column/custom-field.php:72
|
92 |
msgid "Default"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../classes/column.php:923 ../classes/column.php:984
|
96 |
#: ../classes/column/user/actions.php:65
|
97 |
msgid "Remove"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../classes/column.php:942
|
101 |
msgid "Type"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../classes/column.php:942
|
105 |
msgid "Choose a column type."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../classes/column.php:952
|
109 |
msgid "Label"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../classes/column.php:952
|
113 |
msgid "This is the name which will appear as the column header."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../classes/column.php:959 ../classes/column/media/width.php:12
|
117 |
msgid "Width"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ../classes/column.php:961 ../classes/column.php:962
|
121 |
msgid "default"
|
122 |
msgstr ""
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
#: ../classes/settings.php:68
|
125 |
msgid "Admin Columns Settings"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../classes/settings.php:68 ../classes/settings.php:534
|
129 |
+
#: ../classes/upgrade.php:89
|
130 |
msgid "Admin Columns"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../classes/settings.php:129
|
134 |
+
#, php-format
|
135 |
+
msgid "%s column is already present and can not be duplicated."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: ../classes/settings.php:184
|
139 |
msgid "Default settings succesfully restored."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../classes/settings.php:202 ../classes/settings.php:457
|
143 |
msgid "Overview"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../classes/settings.php:205
|
147 |
msgid ""
|
148 |
"This plugin is for adding and removing additional columns to the "
|
149 |
"administration screens for post(types), pages, media library, comments, "
|
150 |
"links and users. Change the column's label and reorder them."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../classes/settings.php:208
|
154 |
msgid "Basics"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../classes/settings.php:210
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Change order"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../classes/settings.php:211
|
162 |
msgid ""
|
163 |
"By dragging the columns you can change the order which they will appear in."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../classes/settings.php:212
|
167 |
msgid "Change label"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../classes/settings.php:213
|
171 |
msgid ""
|
172 |
"By clicking on the triangle you will see the column options. Here you can "
|
173 |
"change each label of the columns heading."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../classes/settings.php:214
|
177 |
msgid "Change column width"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../classes/settings.php:215
|
181 |
msgid ""
|
182 |
"By clicking on the triangle you will see the column options. By using the "
|
183 |
"draggable slider yo can set the width of the columns in percentages."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../classes/settings.php:219 ../classes/column/custom-field.php:16
|
187 |
+
#: ../classes/column/custom-field.php:324
|
188 |
msgid "Custom Field"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../classes/settings.php:221
|
192 |
msgid "'Custom Field' column"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../classes/settings.php:222
|
196 |
msgid ""
|
197 |
"The custom field colum uses the custom fields from posts and users. There "
|
198 |
"are 10 types which you can set."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../classes/settings.php:224
|
202 |
msgid ""
|
203 |
"Value: Can be either a string or array. Arrays will be flattened and values "
|
204 |
"are seperated by a ',' comma."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../classes/settings.php:225 ../classes/column/custom-field.php:73
|
208 |
#: ../classes/column/link/image.php:12
|
209 |
msgid "Image"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../classes/settings.php:225
|
213 |
msgid ""
|
214 |
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
215 |
"comma )."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../classes/settings.php:226 ../classes/column/custom-field.php:75
|
219 |
#: ../classes/column/comment/excerpt.php:13
|
220 |
#: ../classes/column/post/excerpt.php:13
|
221 |
msgid "Excerpt"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../classes/settings.php:226
|
225 |
msgid "Value: This will show the first 20 words of the Post content."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../classes/settings.php:227 ../classes/column/custom-field.php:76
|
229 |
msgid "Multiple Values"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../classes/settings.php:227
|
233 |
msgid ""
|
234 |
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../classes/settings.php:228 ../classes/column/custom-field.php:77
|
238 |
msgid "Numeric"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../classes/settings.php:228
|
242 |
msgid ""
|
243 |
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
244 |
"for sorting, so you can sort your posts on numeric (custom field) values."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../classes/settings.php:229 ../classes/column/custom-field.php:78
|
248 |
#: ../classes/column/comment/date.php:12
|
249 |
msgid "Date"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../classes/settings.php:229
|
253 |
#, php-format
|
254 |
msgid ""
|
255 |
"Value: Can be unix time stamp or a date format as described in the <a "
|
257 |
"href='%s'>general settings</a> page."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../classes/settings.php:230
|
261 |
msgid "Post Titles"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../classes/settings.php:230
|
265 |
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../classes/settings.php:231
|
269 |
msgid "Usernames"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../classes/settings.php:231
|
273 |
msgid "Value: can be one or more User ID's (seperated by ',')."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../classes/settings.php:232
|
277 |
msgid "Checkmark"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../classes/settings.php:232
|
281 |
msgid "Value: should be a 1 (one) or 0 (zero)."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../classes/settings.php:233 ../classes/column/custom-field.php:82
|
285 |
msgid "Color"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../classes/settings.php:233
|
289 |
msgid "Value: hex value color, such as #808080."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../classes/settings.php:377
|
293 |
msgid "Welcome to Admin Columns"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../classes/settings.php:380
|
297 |
msgid "Thank you for updating to the latest version!"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../classes/settings.php:381
|
301 |
msgid ""
|
302 |
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
303 |
"like it."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../classes/settings.php:386
|
307 |
msgid "What’s New"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../classes/settings.php:387
|
311 |
msgid "Changelog"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../classes/settings.php:389
|
315 |
msgid "Download Addons"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../classes/settings.php:395
|
319 |
msgid "Addons"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../classes/settings.php:397
|
323 |
msgid ""
|
324 |
"Addons are now activated by downloading and installing individual plugins. "
|
325 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
326 |
"each Add-on will continue to receive updates in the usual way."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../classes/settings.php:400
|
330 |
msgid ""
|
331 |
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../classes/settings.php:403
|
335 |
msgid "Addons are seperate plugins which need to be downloaded."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../classes/settings.php:403
|
339 |
msgid "Download your Addons"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ../classes/settings.php:409
|
343 |
msgid "This website does not use add-ons"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ../classes/settings.php:409
|
347 |
msgid "See our website for the Pro-addon."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: ../classes/settings.php:416
|
351 |
msgid "Important"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../classes/settings.php:418
|
355 |
msgid "Database Changes"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../classes/settings.php:419
|
359 |
msgid ""
|
360 |
"The database has been changed between versions 1 and 2. But we made sure you "
|
361 |
"can still roll back to version 1x without any issues."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../classes/settings.php:422
|
365 |
msgid "Make sure you backup your database and then click"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../classes/settings.php:422 ../classes/upgrade.php:97
|
369 |
msgid "Upgrade Database"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../classes/settings.php:425
|
373 |
msgid "Potential Issues"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../classes/settings.php:426
|
377 |
msgid ""
|
378 |
"Do to the sizable refactoring the code, surounding Addons and action/"
|
379 |
"filters, your website may not operate correctly. It is important that you "
|
380 |
"read the full"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../classes/settings.php:426
|
384 |
msgid "Migrating from v1 to v2"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../classes/settings.php:426
|
388 |
msgid "guide to view the full list of changes."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ../classes/settings.php:426
|
392 |
#, php-format
|
393 |
msgid ""
|
394 |
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
395 |
"can fix it in the next release."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../classes/settings.php:429
|
399 |
msgid "Important!"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../classes/settings.php:429
|
403 |
msgid ""
|
404 |
"If you updated the Admin Columns plugin without prior knowledge of such "
|
405 |
"changes, Please roll back to the latest"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../classes/settings.php:429
|
409 |
msgid "version 1"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../classes/settings.php:429
|
413 |
msgid "of this plugin."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../classes/settings.php:435
|
417 |
msgid "Changelog for"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../classes/settings.php:450
|
421 |
msgid "Learn more"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../classes/settings.php:459
|
425 |
msgid ""
|
426 |
"New to v2, all Addons act as separate plugins which need to be individually "
|
427 |
"downloaded, installed and updated."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../classes/settings.php:460
|
431 |
msgid ""
|
432 |
"This page will assist you in downloading and installing each available Addon."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../classes/settings.php:461
|
436 |
msgid "Available Addons"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../classes/settings.php:466
|
440 |
msgid "Name"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../classes/settings.php:467 ../classes/settings.php:475
|
444 |
msgid "Download"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../classes/settings.php:473
|
448 |
msgid "Pro Add-on (includes Sortorder add-on)"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../classes/settings.php:483
|
452 |
msgid "Installation"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../classes/settings.php:485
|
456 |
msgid "For each Add-on available, please perform the following:"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../classes/settings.php:487
|
460 |
msgid "Download the Addon plugin (.zip file) to your desktop"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../classes/settings.php:488
|
464 |
msgid "Navigate to"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../classes/settings.php:488
|
468 |
msgid "Plugins > Add New > Upload"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../classes/settings.php:489
|
472 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../classes/settings.php:490
|
476 |
msgid ""
|
477 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
478 |
"link"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../classes/settings.php:491
|
482 |
msgid "The Add-on is now installed and activated!"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../classes/settings.php:492
|
486 |
#, php-format
|
487 |
msgid ""
|
488 |
"For automatic updates make sure to <a href='%s'>enter your licence key</a>."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: ../classes/settings.php:502
|
492 |
msgid "Start using Admin Columns"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../classes/settings.php:580
|
496 |
msgid "Store settings"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../classes/settings.php:585
|
500 |
msgid "Update"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../classes/settings.php:585
|
504 |
msgid "Publish"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../classes/settings.php:589
|
508 |
#, php-format
|
509 |
msgid ""
|
510 |
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
511 |
"\\' to delete, \\'Cancel\\' to stop"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
|
515 |
#: ../classes/column/post/actions.php:53
|
516 |
msgid "Restore"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: ../classes/settings.php:590
|
520 |
msgid "columns"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ../classes/settings.php:600
|
524 |
msgid "Get the Pro Add-on"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ../classes/settings.php:604
|
528 |
msgid "Add Sorting"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: ../classes/settings.php:605
|
532 |
msgid "Add Filtering"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: ../classes/settings.php:606
|
536 |
msgid "Add Import/Export"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: ../classes/settings.php:609
|
540 |
#, php-format
|
541 |
msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../classes/settings.php:617
|
545 |
msgid "Support"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../classes/settings.php:620
|
549 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../classes/settings.php:622
|
553 |
#, php-format
|
554 |
msgid ""
|
555 |
"For full documentation, bug reports, feature suggestions and other tips <a "
|
556 |
"href='%s'>visit the Admin Columns website</a>"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../classes/settings.php:642
|
560 |
msgid "Drag and drop to reorder"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../classes/settings.php:645
|
564 |
msgid "Add Column"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../classes/settings.php:696
|
568 |
msgid "General Settings"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../classes/settings.php:697
|
572 |
msgid "Customize your Admin Columns settings."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../classes/settings.php:710
|
576 |
+
msgid "Show hidden custom fields. Default is <code>off</code>."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../classes/settings.php:716
|
580 |
+
msgid ""
|
581 |
+
"Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../classes/settings.php:723
|
585 |
msgid "Save"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../classes/settings.php:763
|
589 |
msgid "Restore Settings"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../classes/settings.php:764
|
593 |
msgid "This will delete all column settings and restore the default settings."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../classes/settings.php:770
|
597 |
msgid "Restore default settings"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../classes/settings.php:770
|
601 |
msgid ""
|
602 |
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
603 |
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../classes/storage_model.php:167
|
607 |
msgid "settings succesfully restored."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: ../classes/storage_model.php:181
|
611 |
msgid "No columns settings available."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: ../classes/storage_model.php:204
|
615 |
#, php-format
|
616 |
msgid "You are trying to store the same settings for %s."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../classes/storage_model.php:208
|
620 |
#, php-format
|
621 |
msgid "Settings for %s updated succesfully."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
|
625 |
msgid "View"
|
626 |
msgstr ""
|
627 |
|
629 |
msgid "Upgrade"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../classes/upgrade.php:90
|
633 |
msgid "requires a database upgrade"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../classes/upgrade.php:93
|
637 |
msgid "why?"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../classes/upgrade.php:94
|
641 |
msgid "Please"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../classes/upgrade.php:95
|
645 |
msgid "backup your database"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/upgrade.php:96
|
649 |
msgid "then click"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../classes/upgrade.php:304
|
653 |
msgid "Migrating Column Settings"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../classes/upgrade.php:340
|
657 |
msgid "No Upgrade Required"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../classes/upgrade.php:341
|
661 |
msgid "Return to welcome screen."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../classes/upgrade.php:359
|
665 |
msgid "Upgrade Complete!"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../classes/upgrade.php:359
|
669 |
msgid "Return to settings."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../classes/upgrade.php:360
|
673 |
msgid "Error"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../classes/upgrade.php:361
|
677 |
msgid ""
|
678 |
"Sorry. Something went wrong during the upgrade process. Please report this "
|
679 |
"on the support forum."
|
695 |
msgid "Checkmark (true/false)"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../classes/column/custom-field.php:324
|
699 |
msgid "Select your custom field."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../classes/column/custom-field.php:334
|
703 |
msgid "No custom fields available."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../classes/column/custom-field.php:341
|
707 |
msgid "Field Type"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../classes/column/custom-field.php:341
|
711 |
msgid "This will determine how the value will be displayed."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: ../classes/column/custom-field.php:384
|
715 |
msgid "Before"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../classes/column/custom-field.php:384
|
719 |
msgid "This text will appear before the custom field value."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../classes/column/custom-field.php:390
|
723 |
msgid "After"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../classes/column/custom-field.php:390
|
727 |
msgid "This text will appear after the custom field value."
|
728 |
msgstr ""
|
729 |
|
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.5
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
10 |
|
@@ -150,26 +150,7 @@ Leave your feedback at http://www.codepress.nl/plugins/codepress-admin-columns/f
|
|
150 |
|
151 |
= How can I change the thumbnail size of images? =
|
152 |
|
153 |
-
You can
|
154 |
-
theme's functions.php.
|
155 |
-
|
156 |
-
To set a custom size use, for example 194 width by 63 height pixels:
|
157 |
-
|
158 |
-
`
|
159 |
-
<?php
|
160 |
-
|
161 |
-
// edit here: fill in your thumbnail height and width
|
162 |
-
$my_height = 63;
|
163 |
-
$my_width = 194;
|
164 |
-
// stop editing
|
165 |
-
|
166 |
-
add_image_size( 'admin-columns', $my_width, $my_height, true );
|
167 |
-
add_filter('cpac_thumbnail_size', 'cb_cpac_thumbnail_size' );
|
168 |
-
function cb_cpac_thumbnail_size() {
|
169 |
-
return 'admin-columns';
|
170 |
-
};
|
171 |
-
?>
|
172 |
-
`
|
173 |
|
174 |
**my columns thumbnails still have the wrong size**
|
175 |
|
@@ -177,51 +158,33 @@ If you want your already uploaded images to display the newly added size you wil
|
|
177 |
|
178 |
= How can I enable the use of Hidden Custom Fields? =
|
179 |
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
`
|
184 |
-
<?php
|
185 |
-
add_filter('cpac_use_hidden_custom_fields', '__return_true'); // enables the use hidden custom fields
|
186 |
-
?>
|
187 |
-
`
|
188 |
-
|
189 |
-
Now you can select your HIDDEN custom fields in de dropdown menu under "Custom Field:".
|
190 |
-
|
191 |
-
= How can I add the dropdown menu for taxonomy filtering? =
|
192 |
-
|
193 |
-
This will also be included in the upcoming settings page, in the meanwhile you can enable this by adding
|
194 |
-
this piece of code to your theme's functions.php:
|
195 |
-
|
196 |
-
`
|
197 |
-
<?php
|
198 |
-
add_filter( 'cpac-remove-filtering-columns', '__return_false' ); // add dropdown taxonomy filtering to the overview pages
|
199 |
-
?>
|
200 |
-
`
|
201 |
|
202 |
= How can I display a custom value in the Custom Fields Column? =
|
203 |
|
204 |
-
With this filter '
|
205 |
|
206 |
Filter explained:
|
207 |
|
208 |
* **$value** is the original value which would otherwise be displayed
|
209 |
-
* **$
|
210 |
-
* **$
|
211 |
-
*
|
212 |
-
* **$
|
|
|
213 |
|
214 |
-
For example if you have a custom posttype '
|
215 |
|
216 |
`
|
217 |
<?php
|
218 |
-
function my_custom_field_value( $value, $
|
219 |
-
{
|
220 |
-
$my_post_type = 'demo';
|
221 |
-
$my_field_name = 'city';
|
222 |
|
223 |
-
|
224 |
-
|
|
|
|
|
|
|
225 |
|
226 |
if ( '33' == $value )
|
227 |
$value = 'Amsterdam';
|
@@ -231,7 +194,7 @@ function my_custom_field_value( $value, $internal_field_key, $custom_field, $typ
|
|
231 |
}
|
232 |
return $value;
|
233 |
}
|
234 |
-
add_filter( '
|
235 |
?>
|
236 |
`
|
237 |
|
@@ -249,8 +212,18 @@ add_filter( 'cpac_get_column_value_custom_field', 'my_custom_field_value', 10, 5
|
|
249 |
== Changelog ==
|
250 |
|
251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
= 2.0.1 =
|
253 |
-
*[Fixed] Bug which caused columns to not include properly
|
254 |
|
255 |
= 2.0.0 =
|
256 |
* [Notice] Database needs an update, make sure to backup first
|
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.5
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 2.0.2
|
8 |
|
9 |
Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
10 |
|
150 |
|
151 |
= How can I change the thumbnail size of images? =
|
152 |
|
153 |
+
You can select a custom size for your custom field option from the Column options.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
|
155 |
**my columns thumbnails still have the wrong size**
|
156 |
|
158 |
|
159 |
= How can I enable the use of Hidden Custom Fields? =
|
160 |
|
161 |
+
Go to settings tab and select the option to "show hidden custom fields".
|
162 |
+
This will enable you to select your HIDDEN custom fields in de dropdown menu under "Custom Field:".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
|
164 |
= How can I display a custom value in the Custom Fields Column? =
|
165 |
|
166 |
+
With this filter 'cac/column/meta/value' you can control what the value will be for any Custom Field Column.
|
167 |
|
168 |
Filter explained:
|
169 |
|
170 |
* **$value** is the original value which would otherwise be displayed
|
171 |
+
* **$id** will return the ID of the object.
|
172 |
+
* **$cac** will return the Admin Columns Storage object.
|
173 |
+
*
|
174 |
+
* **$cac->options->field** is the name of your custom field
|
175 |
+
* **$cac->storage_model->key** will return either the posttype or if it is any other type it will return wp-comments, wp-links, wp-users, wp-media.
|
176 |
|
177 |
+
For example if you have a custom posttype 'demo' with a custom_field that is called 'city' and the result would be an integer '33'. You can change that integer '33' to Amsterdam.
|
178 |
|
179 |
`
|
180 |
<?php
|
181 |
+
function my_custom_field_value( $value, $id, $cac ) {
|
|
|
|
|
|
|
182 |
|
183 |
+
$post_type = 'demo';
|
184 |
+
$custom_field = 'city';
|
185 |
+
|
186 |
+
// make sure we have the correct posttype and custom field
|
187 |
+
if ( $post_type == $cac->storage_model->key && $cac->options->field == $custom_field ) {
|
188 |
|
189 |
if ( '33' == $value )
|
190 |
$value = 'Amsterdam';
|
194 |
}
|
195 |
return $value;
|
196 |
}
|
197 |
+
add_filter( 'cac/column/meta/value', 'my_custom_field_value', 10, 5 );
|
198 |
?>
|
199 |
`
|
200 |
|
212 |
== Changelog ==
|
213 |
|
214 |
|
215 |
+
= 2.0.2 =
|
216 |
+
* [Fixed] Performance issue
|
217 |
+
* [Added] Option to show/hide edit-button
|
218 |
+
* [Fixed] Bug before/after-field not saving correctly
|
219 |
+
* [Fixed] Bug with storage model trying to load repository (svn) files
|
220 |
+
* [Fixed] Bug with tooltip
|
221 |
+
* [Fixed] Bug with duplicate message in javascript
|
222 |
+
* [Added] RTL support - thanks to Hassan
|
223 |
+
* [Added] Arabic translation - thanks to Hassan
|
224 |
+
|
225 |
= 2.0.1 =
|
226 |
+
* [Fixed] Bug which caused columns to not include properly
|
227 |
|
228 |
= 2.0.0 =
|
229 |
* [Notice] Database needs an update, make sure to backup first
|