Admin Columns - Version 2.1.4

Version Description

  • [Added] CSS now is compiled with LESS
  • [Updated] Menu is split between posttypes and media, comments and users.
  • [Fixed] WordPress SEO 1.5.2 columns support
  • [Updated] Refactored JS and cleanup
  • [Updated] Registered Date column now uses GMT date
  • [Updated] Display author as column has fallback to display_name
  • [Updated] Added conditional checks for featured-image-, ping-status and comment-status-columns
  • [Fixed] Fixed warning for available-sizes column
  • [Updated] Column labels can no longer contain ":" characters
Download this release

Release Info

Developer tschutter
Plugin Icon 128x128 Admin Columns
Version 2.1.4
Comparing to
See all releases

Code changes from version 2.1.3 to 2.1.4

Files changed (49) hide show
  1. assets/css/admin-column.css +801 -1003
  2. assets/css/column.css +72 -76
  3. assets/css/custom-fields.css +0 -2
  4. assets/js/admin-columns.js +111 -9
  5. assets/js/custom-fields.js +0 -53
  6. assets/js/upgrade.js +0 -0
  7. assets/less/admin-column.less +998 -0
  8. assets/less/column.less +76 -0
  9. classes/column.php +45 -20
  10. classes/column/custom-field.php +15 -23
  11. classes/column/media/available-sizes.php +10 -5
  12. classes/column/post/author-name.php +12 -10
  13. classes/column/post/comment-status.php +9 -0
  14. classes/column/post/featured-image.php +9 -0
  15. classes/column/post/ping-status.php +9 -0
  16. classes/column/user/registered.php +2 -1
  17. classes/deprecated.php +0 -62
  18. classes/settings.php +142 -127
  19. classes/storage_model.php +85 -25
  20. classes/storage_model/comment.php +4 -6
  21. classes/storage_model/link.php +4 -6
  22. classes/storage_model/media.php +4 -6
  23. classes/storage_model/post.php +7 -19
  24. classes/storage_model/user.php +4 -6
  25. classes/third_party.php +1 -0
  26. codepress-admin-columns.php +188 -99
  27. languages/cpac-ar.mo +0 -0
  28. languages/cpac-ar.po +912 -881
  29. languages/cpac-da_DK.mo +0 -0
  30. languages/cpac-da_DK.po +931 -900
  31. languages/cpac-de_DE.mo +0 -0
  32. languages/cpac-de_DE.po +799 -775
  33. languages/cpac-es_ES.mo +0 -0
  34. languages/cpac-es_ES.po +944 -913
  35. languages/cpac-it_IT.mo +0 -0
  36. languages/cpac-it_IT.po +666 -644
  37. languages/cpac-nl_NL.mo +0 -0
  38. languages/cpac-nl_NL.po +890 -852
  39. languages/cpac-pl_PL.mo +0 -0
  40. languages/cpac-pl_PL.po +926 -895
  41. languages/cpac-pt_BR.mo +0 -0
  42. languages/cpac-pt_BR.po +638 -615
  43. languages/cpac-sv_SE.mo +0 -0
  44. languages/cpac-sv_SE.po +920 -915
  45. languages/cpac-zh_CN.mo +0 -0
  46. languages/cpac-zh_CN.po +895 -864
  47. languages/cpac.mo +0 -0
  48. languages/cpac.po +617 -616
  49. readme.txt +12 -1
assets/css/admin-column.css CHANGED
@@ -1,1003 +1,801 @@
1
- /* =General
2
- -------------------------------------------------------------- */
3
- #icon-codepress-admin-columns {
4
- background: transparent url('../images/icon.png') no-repeat 0 0;
5
- }
6
- .cpac-settings-link {
7
- float: right;
8
- margin: 12px 14px 5px 0;
9
- background: transparent url('../images/settings.png') no-repeat 0 0;
10
- padding-left: 20px;
11
- text-decoration: none;
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
- }
24
- a.help {
25
- background: transparent url('../images/help.png') no-repeat 0 0;
26
- display: inline-block;
27
- width: 16px;
28
- height: 16px;
29
- }
30
- #cpac a:focus, #cpac a:active {
31
- outline: none;
32
- }
33
- .button.loading {
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;
44
- right: 6px;
45
- background: transparent url('../images/loading.gif') no-repeat right 50%;
46
- width: 16px;
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 {
57
- background: transparent url(../images/yes.png) no-repeat 0 0;
58
- width: 16px;
59
- height: 16px;
60
- display: inline-block;
61
- position: relative;
62
- top: 2px;
63
- }
64
- .icon-no {
65
- background: transparent url(../images/no.png) no-repeat 0 0;
66
- width: 16px;
67
- height: 16px;
68
- display: inline-block;
69
- position: relative;
70
- top: 2px;
71
- }
72
-
73
- /* =Menu
74
- -------------------------------------------------------------- */
75
- .cpac-menu {
76
- clear: both;
77
- overflow: hidden;
78
- }
79
- .cpac-menu .subsubsub {
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
- -------------------------------------------------------------- */
90
- .columns-container {
91
- margin-right: 300px;
92
- max-width: 700px;
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;
118
- width: 280px;
119
- }
120
-
121
- /* =Columns
122
- -------------------------------------------------------------- */
123
- .add-new-h2 {
124
- color: #828282;
125
- }
126
- .cpac-boxes form {
127
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
128
- }
129
- .ui-sortable-helper {
130
- -webkit-box-shadow: 1px 3px 6px 0px rgba(1, 1, 1, 0.4);
131
- box-shadow: 1px 3px 6px 0px rgba(1, 1, 1, 0.4);
132
- }
133
- .ui-sortable-helper .column-meta {
134
- border-width: 1px;
135
- }
136
- .cpac-placeholder {
137
- visibility: visible !important;
138
- }
139
-
140
- /* @todo: placeholder styling v2 */
141
-
142
- .cpac-placeholder {
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;
152
- width: 100%;
153
- height: 100%;
154
- }
155
- .cpac-columns .cpac-placeholder:first-child {
156
- border: none;
157
- }
158
- .cpac-column.deleting {}
159
-
160
- /* placeholder styling v1 */
161
-
162
- /*
163
- .cpac-placeholder {
164
- visibility: visible !important;
165
- background: transparent url('../images/border.png') repeat 0 0;
166
- padding: 2px;
167
- }
168
- .cpac-placeholder .inner-placeholder {
169
- box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
170
- background: #ededed;
171
- width: 100%;
172
- height: 100%;
173
- }
174
- .ui-sortable-helper .column-meta {
175
- border-width: 1px;
176
- }
177
- */
178
-
179
-
180
- /* =Column Header
181
- -------------------------------------------------------------- */
182
- .table-header {
183
- border-radius: 3px 3px 0 0;
184
- border-width: 1px 1px 0;
185
- }
186
-
187
- /* =Column Meta
188
- -------------------------------------------------------------- */
189
- .column-meta {
190
- border-style: solid;
191
- border-color: #dfdfdf;
192
- border-width: 1px 1px 0;
193
- background: #fcfcfc;
194
- }
195
- .cpac-column:nth-child(2n) .column-meta {
196
- background: #f9f9f9;
197
- }
198
- .column-meta table {
199
- border: none;
200
- background: transparent;
201
- border-radius: 0;
202
- }
203
- .column-meta table tr td {
204
- vertical-align: top;
205
- height: 18px;
206
- border: none;
207
- padding: 11px 8px;
208
- border-width: 1px 0 0;
209
- border-style: solid;
210
- border-color: transparent;
211
- }
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;
222
- cursor: move;
223
- }
224
- .column-meta td.column_label {
225
- width: 55%;
226
- font-weight: bold;
227
- vertical-align: middle;
228
- position: relative;
229
- }
230
- .column-meta .column_label .inner {
231
- position: relative;
232
- overflow: hidden;
233
- height: 18px;
234
- }
235
- .column-meta .column_label .inner > a {
236
- color: #5a5a5a;
237
- }
238
- .column-meta .column_label .inner > a:hover {
239
- color: #333333;
240
- }
241
- .column-meta .column_label .inner > a.remove-button {
242
- display: none;
243
- color: #BC0B0B;
244
- text-decoration: none;
245
- text-shadow: none;
246
- font-weight: normal;
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;
257
- text-decoration: none;
258
- }
259
- .column-meta:hover .column_label .inner > a.remove-button {
260
- display: inline-block;
261
- }
262
- .column-meta .column_label .inner .meta {
263
- display: inline-block;
264
- float: right;
265
- font-weight: normal;
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;
275
- vertical-align: middle;
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 18px;
287
- cursor: pointer;
288
- }
289
-
290
- /* opened state */
291
- .cpac-column.opened .column-meta {
292
- background-color: #c7c7c7;
293
- background-image: -ms-linear-gradient(top, #e9e9e9, #c7c7c7);
294
- background-image: -moz-linear-gradient(top, #e9e9e9, #c7c7c7);
295
- background-image: -o-linear-gradient(top, #e9e9e9, #c7c7c7);
296
- background-image: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#c7c7c7));
297
- background-image: -webkit-linear-gradient(top, #e9e9e9, #c7c7c7);
298
- background-image: linear-gradient(top, #e9e9e9, #c7c7c7);
299
- border-color: #aeaeae;
300
- }
301
- .cpac-column.opened .column-meta table {
302
- background: transparent;
303
- }
304
- .cpac-column.opened .column-meta td {
305
- border-color: #f8f8f8;
306
- }
307
- .cpac-column.opened .column-meta td,
308
- .cpac-column.opened .column-meta td a{
309
- color: #333;
310
- text-shadow: 0 1px 0 #FFFFFF;
311
- }
312
- .cpac-column.opened .column-meta .column_sort {
313
- background-position: 8px -39px;
314
- }
315
- .cpac-column.opened .column-meta .column_type {
316
- color: #5C5C5C;
317
- }
318
- .cpac-column.opened .column-meta .column_label .inner .meta {
319
- color: #808080;
320
- }
321
- tr.column_image_size td.input .custom_image_size {
322
- display: inline-block;
323
- }
324
- tr.column_image_size td.input label {
325
- display: inline-block;
326
- margin-top: 4px;
327
- margin-bottom: 4px;
328
- }
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;
339
- }
340
- tr.column_image_size td.input label.custom-size-w.hidden,
341
- tr.column_image_size td.input label.custom-size-h.hidden {
342
- display: none;
343
- }
344
- tr.column_image_size td.input label.custom-size-w input,
345
- tr.column_image_size td.input label.custom-size-h input {
346
- width: 30px;
347
- }
348
- tr.column_image_size.hidden {
349
- display: none;
350
- }
351
-
352
- /* =Column Meta: WP Default columns
353
- -------------------------------------------------------------- */
354
- .column-meta span.vers {
355
- padding-top: 2px;
356
- }
357
- .column-meta span.vers .comment-grey-bubble {
358
- background: transparent url("../images/comment-grey-bubble.png") no-repeat 0 0;
359
- height: 12px;
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
- -------------------------------------------------------------- */
375
- .column-form {
376
- display: none;
377
- border-width: 1px 1px 0;
378
- border-style: solid;
379
- border-color: #dfdfdf;
380
- }
381
- .column-form table {
382
- border: none;
383
- background: #fcfcfc;
384
- }
385
- .column-form tr td {
386
- vertical-align: top;
387
- border: none;
388
- padding: 8px;
389
- background: #ffffff;
390
- }
391
- .column-form tr td.label {
392
- position: relative;
393
- overflow: visible;
394
- background: #F9F9F9;
395
- background: #f5f5f5;
396
- border-right: 1px solid #E1E1E1;
397
- vertical-align: top;
398
- width: 34%;
399
- border-top: 1px solid #F0F0F0;
400
- }
401
- .column-form tr td {
402
- border-top: 1px solid #F5F5F5;
403
- }
404
- .column-form tr:first-child td {
405
- border-top: none;
406
- }
407
- .column-form tr td.label label {
408
- font-weight: bold;
409
- color: #333333;
410
- display: block;
411
- position: relative;
412
- }
413
- .column-form tr td.label p {
414
- color: #666666;
415
- display: block;
416
- font-size: 12px;
417
- font-style: normal;
418
- line-height: 16px;
419
- margin: 0 !important;
420
- }
421
- .column-form tr td.label p.description {
422
- display: none;
423
- position: absolute;
424
- z-index: 99;
425
- top: 30px;
426
- left: 0;
427
- background: #eaf2fa;
428
- border-radius: 5px;
429
- border: 1px solid #c7d7e2;
430
- padding: 5px 8px !important;
431
- font-weight: normal;
432
- }
433
- .column-form tr td.label p.description em {
434
- display: block;
435
- color: #999;
436
- }
437
- .rtl .column-form tr td.label p.description {
438
- right: 0;
439
- left: auto;
440
- }
441
- .column-form tr td.label a.more-info {
442
- display: none;
443
- width: 14px; height: 14px;
444
- line-height: 14px;
445
- font-size: 10px;
446
- color: #fff;
447
- text-align: center;
448
- font-weight: bold;
449
- background: transparent url(../images/info.png) no-repeat 0 0;
450
- float: right;
451
- }
452
- .rtl .column-form tr td.label a.more-info {
453
- float: left;
454
- }
455
- .column-form tr td select,
456
- .column-form tr td input[type=text] {
457
- width: 99.95%; /* excl padding */
458
- }
459
- .column-form div.description {
460
- font-size: 11px;
461
- width: 12%;
462
- float: left;
463
- text-align: middle;
464
- }
465
- .rtl .column-form div.description {
466
- float: right;
467
- }
468
- .column-form div.input-width-range {
469
- float: left;
470
- position: relative;
471
- width: 87%;
472
- margin-top: 4px;
473
- }
474
- .rtl .column-form div.input-width-range {
475
- float: right;
476
- }
477
- .column-form div.input-width-range .ui-slider-handle {
478
- cursor:ew-resize;
479
- }
480
- .column-form tr td.input label {
481
- padding-right: 10px;
482
- }
483
- .rtl .column-form tr td.input label {
484
- padding-left: 10px;
485
- padding-right: 0;
486
- }
487
- .column-form tr td.input p.description {
488
- /*display: none;*/
489
- margin-top: 4px;
490
- color: #888888;
491
- }
492
- .column-form a.help {
493
- vertical-align: middle;
494
- float: right;
495
- }
496
- .rtl .column-form a.help {
497
- float: left;
498
- }
499
- .column-form div.msg {
500
- margin-top: 5px;
501
- display: none;
502
- color: #333;
503
- padding: 6px 8px;
504
- background-color: #ffebe8;
505
- border: 1px solid #fff;
506
- -moz-border-radius: 3px;
507
- -webkit-border-radius: 3px;
508
- border-radius: 3px;
509
- }
510
- .column-form select optgroup:nth-child(2n) {
511
- background: #F9F9F9;
512
- }
513
-
514
- /* =Column Footer
515
- -------------------------------------------------------------- */
516
- .column-footer {
517
- background: #EAF2FA;
518
- border: 1px solid #c7d7e2;
519
- min-height: 26px;
520
- padding: 8px;
521
- overflow: hidden;
522
- }
523
- .column-footer .order-message {
524
- background: transparent url('../images/order_arrow.png') no-repeat 0 0;
525
- color: #7A9BBE;
526
- float: left;
527
- font-family: Comic Sans MS,sans-serif;
528
- font-size: 11px;
529
- height: 13px;
530
- line-height: 1em;
531
- margin-left: 4px;
532
- padding: 7px 0 0 22px;
533
- text-shadow: 0 1px 0 #FFFFFF;
534
- display: inline-block;
535
- }
536
- .rtl .column-footer .order-message {
537
- float: right;
538
- padding-right: 22px;
539
- padding-left: 0;
540
- background: transparent url('../images/order_arrow-rtl.png') no-repeat right top;
541
- }
542
-
543
- /* =Sidebar
544
- -------------------------------------------------------------- */
545
- .columns-right {
546
- margin-top: 52px;
547
- }
548
- .sidebox {
549
- background: none repeat scroll 0 0 #FFFFFF;
550
- border: 1px solid #E1E1E1;
551
- border-radius: 0 0 0 0;
552
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
553
- position: relative;
554
- margin-bottom: 14px;
555
- }
556
- .sidebox h3 {
557
- padding: 10px;
558
- margin: 0;
559
- }
560
- .sidebox h3.title {
561
- font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
562
- font-size: 15px;
563
- font-weight: normal;
564
- line-height: 1;
565
- margin: 0;
566
- padding: 7px 10px;
567
- background: #f1f1f1;
568
- background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
569
- background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
570
- background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
571
- background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
572
- background-image: linear-gradient(to top, #ececec, #f9f9f9);
573
- border-bottom-color: #dfdfdf;
574
- text-shadow: #fff 0 1px 0;
575
- -webkit-box-shadow: 0 1px 0 #fff;
576
- box-shadow: 0 1px 0 #fff;
577
- border-bottom-style: solid;
578
- border-bottom-width: 1px;
579
- }
580
- .sidebox .inside {
581
- padding: 10px;
582
- }
583
- .sidebox .inside p {
584
- margin-top: 0;
585
- }
586
- #form-actions .form-reset {
587
- border-bottom: 1px solid #F5F5F5;
588
- padding: 8px;
589
- }
590
- #form-actions .reset-column-type {
591
- text-decoration: none;
592
- color: #BC0B0B;
593
- line-height: 25px;
594
- display: inline-block;
595
- }
596
- #form-actions .reset-column-type:hover {
597
- color: #FF0000
598
- }
599
- #form-actions .form-update {
600
- padding: 8px;
601
- }
602
- #form-actions .submit-update {
603
- display: block;
604
- width: 100%;
605
- height: 28px;
606
- line-height: 28px;
607
- text-align: center;
608
- }
609
-
610
- /* =Sidebar: Pro
611
- --------------------------------*/
612
- #pro-version .cta {
613
- background: transparent url(../images/get_the_addon.png) no-repeat 0 0;
614
- }
615
- #pro-version .padding-box {
616
- padding: 8px 15px 0;
617
- }
618
- #pro-version a {
619
- color: red;
620
- }
621
- #pro-version h3 a {
622
- color: #fff;
623
- font-size: 19px;
624
- text-decoration: none;
625
- font-weight: normal;
626
- margin-top: 6px;
627
- }
628
- #pro-version .inside ul {
629
- margin: 0 0 10px 0;
630
- }
631
- #pro-version .inside ul li {
632
- margin: 0;
633
- padding: 0;
634
- }
635
- #pro-version .inside ul li a {
636
- display: inline-block;
637
- height: 24px;
638
- font-size: 19px;
639
- line-height: 24px;
640
- margin-bottom: 1px;
641
- padding: 0 5px;
642
- background: #000;
643
- color: #fff;
644
- text-decoration: none;
645
- }
646
-
647
- #pro-version .inside p {
648
- color: #fff;
649
- font-size: 12px;
650
- }
651
- #pro-version .inside p a {
652
- color: #fff;
653
- display: inline-block;
654
- background: #a4c518;
655
- padding: 0 2px;
656
- font-size: 15px;
657
- text-decoration: none;
658
- }
659
-
660
-
661
- /* =Sidebar: Addons
662
- --------------------------------*/
663
- #addon-state {}
664
- #addon-state .inside {
665
- overflow: hidden;
666
- }
667
- #addon-state ul {
668
- margin: 0 0 8px;
669
- }
670
- #addon-state ul li {
671
- background: transparent url('../images/checkmark_single.png') no-repeat 0 0;
672
- padding-left: 25px;
673
- margin-bottom: 4px;
674
- }
675
- .rtl #addon-state ul li {
676
- padding-right: 25px;
677
- padding-left: 0;
678
- }
679
- #addon-state a.find-more-addons {
680
- float: right;
681
- }
682
- .rtl #addon-state a.find-more-addons {
683
- float: left;
684
- }
685
-
686
- /* =Settings Page
687
- -------------------------------------------------------------- */
688
- table.cpac-form-table {
689
- max-width: 1100px;
690
- margin-top: 20px;
691
- }
692
- .col-25, .col-30, .col-35, .col-65, .col-70, .col-75 {
693
- float: left;
694
- }
695
- .rtl .col-25, .rtl .col-30, .rtl .col-35, .rtl .col-65, .rtl .col-70, .rtl .col-75 {
696
- float: right;
697
- }
698
- .col-25 { width: 25%; }
699
- .col-30 { width: 30%; }
700
- .col-35 { width: 35%; }
701
- .col-65 { width: 65%; }
702
- .col-70 { width: 70%; }
703
- .col-75 { width: 75%; }
704
- table.cpac-form-table > tbody > tr > td,
705
- table.cpac-form-table > tbody > tr > th {
706
- vertical-align: top;
707
- padding-bottom: 20px;
708
- }
709
- table.addons tr {
710
- background: #fff;
711
- }
712
- tr td.padding-22 {
713
- padding-top: 22px;
714
- }
715
- .ms-list li {
716
- margin: 0;
717
- padding-top: 5px;
718
- padding-bottom: 5px;
719
- }
720
- /* =Column: Button
721
- -------------------------------------------------------------- */
722
- .column-form tr.column_action td a.remove-button {
723
- border-bottom: 1px solid #FF0000;
724
- color: #FF0000;
725
- display: inline-block;
726
- padding: 0 3px;
727
- text-decoration: none;
728
- text-shadow: none;
729
- }
730
- .column-form tr.column_action td a.remove-button:hover {
731
- background-color: #FF0000;
732
- border-bottom-color: #FF0000;
733
- color: #FFFFFF;
734
- text-decoration: none;
735
- }
736
-
737
- /* =Column: Action
738
- -------------------------------------------------------------- */
739
- .column-form tr.column_action td {
740
- background: #f9f9f9;
741
- }
742
-
743
- /* =Column: Footer
744
- -------------------------------------------------------------- */
745
- .column-footer .button-container {
746
- float: right;
747
- display: inline-block;
748
- margin-top: -5px;
749
- }
750
- .rtl .column-footer .button-container {
751
- float: left;
752
- }
753
- .column-footer .button-container p {
754
- margin: 4px;
755
- color: #7A9BBE;
756
- }
757
- .column-footer .button-container a {
758
- display: inline-block;
759
- margin-top: 5px;
760
- }
761
-
762
- /* =Welcome Screen
763
- -------------------------------------------------------------- */
764
-
765
- .cpac-content-body hr {
766
- -moz-border-bottom-colors: none;
767
- -moz-border-left-colors: none;
768
- -moz-border-right-colors: none;
769
- -moz-border-top-colors: none;
770
- background: none repeat scroll 0 0 transparent;
771
- border-color: #DFDFDF -moz-use-text-color -moz-use-text-color;
772
- border-image: none;
773
- border-right: 0 none;
774
- border-style: solid none none;
775
- border-width: 1px 0 0;
776
- clear: both;
777
- margin: 30px 0;
778
- opacity: 0.2;
779
- }
780
- #cpac-welcome.about-wrap div.error {
781
- display: block !important;
782
- }
783
- .cpac-alert {
784
- display: inline-block;
785
- background: none repeat scroll 0 0 #FCF8E3;
786
- border: 1px solid #FBEED5;
787
- border-radius: 4px 4px 4px 4px;
788
- color: #C09853;
789
- margin: 20px 0;
790
- padding: 16px 14px;
791
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
792
- }
793
- .cpac-alert p {
794
- margin: 0;
795
- }
796
- .cpac-alert.cpac-alert-success {
797
- background-color: #DFF0D8;
798
- border-color: #D6E9C6;
799
- color: #468847;
800
- }
801
- .cpac-alert.cpac-alert-error {
802
- background-color: #F2DEDE;
803
- border-color: #EED3D7;
804
- color: #B94A48;
805
- }
806
- .cpac-alert a.button-primary {
807
-
808
- height: 28px;
809
- line-height: 28px;
810
- display: inline-block;
811
- }
812
- #cpac-download-add-ons-table {
813
- max-width: 600px;
814
- }
815
- .wp-core-ui .button-large {
816
- height: 40px;
817
- line-height: 40px;
818
- font-size: 16px;
819
- padding: 0 15px;
820
- text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
821
- }
822
-
823
- /* =Import / Export
824
- -------------------------------------------------------------- */
825
- #cpac_export_types {
826
- width: 95%;
827
- }
828
- #cpac_export_output {
829
- display: none;
830
- }
831
- #cpac_export_output textarea {
832
- width: 100%;
833
- height: 80%;
834
- }
835
- #cpac_export_submit {
836
- display: inline-block;
837
- margin: 10px 8px;
838
- padding: 4px 14px;
839
- height: auto;
840
- }
841
- #cpac_import_input {}
842
- #cpac_import_input textarea {
843
- width: 100%;
844
- height: 200px;
845
- }
846
- #cpac_import_submit {
847
- display: inline-block;
848
- margin: 10px 0;
849
- }
850
- .export-message,
851
- .import-message {
852
- background-color: #FFFFE0;
853
- border: 1px solid #E6DB55;
854
- padding: 4px 6px;
855
- border-radius: 3px;
856
- display: none;
857
- }
858
- #import-submit {
859
- margin-top: 10px;
860
- display: block;
861
- }
862
- .cpac_export .ms-container {
863
- background: transparent url('../images/switch_bw.png') no-repeat 50% 50%;
864
- }
865
- .cpac_export .ms-container .ms-selectable {
866
- width: 48%;
867
- margin-right: 0;
868
- }
869
- .cpac_export .ms-container .ms-selection {
870
- float: right;
871
- width: 48%;
872
- }
873
- .rtl .cpac_export .ms-container .ms-selection {
874
- float: left;
875
- }
876
- .cpac_export .ms-container ul.ms-list {
877
- width: 100%;
878
- }
879
- a.export-select {
880
- display: inline-block;
881
- padding: 8px 8px;
882
- text-decoration: none;
883
- }
884
-
885
- /* =Addons Page
886
- -------------------------------------------------------------- */
887
- ul.addons {
888
- margin-bottom: 0;
889
- padding: 0;
890
- overflow: hidden;
891
- }
892
- ul.addons li {
893
- background: none repeat scroll 0 0 #FFFFFF;
894
- border: 1px solid #E1E1E1;
895
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
896
- position: relative;
897
- float: left;
898
- margin: 10px 15px 20px;
899
-
900
- padding: 13px 13px 30px 13px;
901
- width: 180px;
902
- min-height: 300px;
903
- }
904
- .rtl ul.addons li {
905
- float: right;
906
- }
907
- ul.addons li h3 {
908
- font-size: 13px;
909
- }
910
- ul.addons li p {
911
- color: #666666;
912
- }
913
- ul.addons li .button {
914
- bottom: 15px;
915
- right: 15px;
916
- position: absolute;
917
- }
918
- .rtl ul.addons li .button {
919
- left: 15px;
920
- right: auto;
921
- }
922
- ul.addons li span.state {
923
- display: none;
924
- position: absolute;
925
- bottom: 0;
926
- width: 100%;
927
- text-indent: 29px;
928
- height: 30px;
929
- line-height: 30px;
930
- margin-left: -13px;
931
- background: #73a8d0 url('../images/checkmark_white.png') no-repeat 6px 7px;
932
- color: #fff;
933
- font-weight: bold;
934
- }
935
- .rtl ul.addons li span.state {
936
- margin-right: -13px;
937
- margin-left: 0;
938
- }
939
- ul.addons li img {
940
- margin: -15px 0 0 -13px;
941
- }
942
- .rtl ul.addons li img {
943
- margin: -15px -13px 0 0;
944
- }
945
- ul.addons li.active .button {
946
- display: none;
947
- }
948
- ul.addons li.active span.state {
949
- display: block;
950
- }
951
-
952
- /* =WP Pointer
953
- -------------------------------------------------------------- */
954
- .wp-pointer-content {
955
- overflow: hidden;
956
- }
957
- .wp-pointer-content ol {
958
- margin-left: 1.5em;
959
- padding: 0 15px;
960
- }
961
- .rtl .wp-pointer-content ol {
962
- margin-right: 1.5em;
963
- margin-left: 0;
964
- }
965
- .wp-pointer-right {
966
- margin-right: 15px;
967
- }
968
- .rtl .wp-pointer-right {
969
- margin-left: 15px;
970
- margin-right: 0;
971
- }
972
-
973
- /* =Responsive
974
- -------------------------------------------------------------- */
975
- @media only screen and (max-width: 850px) {
976
- .columns-container {
977
- margin-right: 0;
978
- }
979
- .rtl .columns-container {
980
- margin-left: 0;
981
- margin-right: auto;
982
- }
983
- .columns-right {
984
- margin-top: 0;
985
- margin-right: 0;
986
- width: 100%;
987
- }
988
- .rtl .columns-right {
989
- margin-left: 0;
990
- margin-right: auto;
991
- }
992
- .columns-right-inside.fixed {
993
- position: relative;
994
- top: 0;
995
- width: 100%;
996
- }
997
- .columns-right #addon-state {
998
- display: none;
999
- }
1000
- .columns-right #plugin-support {
1001
- display: none;
1002
- }
1003
- }
1
+ #cpac a:focus,
2
+ #cpac a:active {
3
+ outline: none;
4
+ }
5
+ /**
6
+ * General
7
+ * ----------------------------------------------------------------------------
8
+ */
9
+ #icon-codepress-admin-columns {
10
+ background: transparent url('../images/icon.png') no-repeat 0 0;
11
+ }
12
+ .cpac-settings-link {
13
+ float: right;
14
+ margin: 12px 14px 5px 0;
15
+ background: transparent url('../images/settings.png') no-repeat 0 0;
16
+ padding-left: 20px;
17
+ text-decoration: none;
18
+ display: inline-block;
19
+ line-height: 16px;
20
+ }
21
+ .cpac-settings-link.current {
22
+ font-weight: bold;
23
+ }
24
+ .rtl .cpac-settings-link {
25
+ float: left;
26
+ margin: 12px 0 5px 14px;
27
+ padding-right: 20px;
28
+ padding-left: 0;
29
+ }
30
+ a.help {
31
+ background: transparent url('../images/help.png') no-repeat 0 0;
32
+ display: inline-block;
33
+ width: 16px;
34
+ height: 16px;
35
+ }
36
+ .button.loading {
37
+ padding-right: 25px;
38
+ position: relative;
39
+ }
40
+ .rtl .button.loading {
41
+ padding-left: 25px;
42
+ padding-right: 0;
43
+ }
44
+ .button.loading span {
45
+ position: absolute;
46
+ top: 2px;
47
+ right: 6px;
48
+ background: transparent url('../images/loading.gif') no-repeat right 50%;
49
+ width: 16px;
50
+ height: 16px;
51
+ display: inline-block;
52
+ }
53
+ .rtl .button.loading span {
54
+ left: 6px;
55
+ right: auto;
56
+ }
57
+ /**
58
+ * Icons
59
+ * ----------------------------------------------------------------------------
60
+ */
61
+ .icon-yes {
62
+ background: transparent url(../images/yes.png) no-repeat 0 0;
63
+ width: 16px;
64
+ height: 16px;
65
+ display: inline-block;
66
+ position: relative;
67
+ top: 2px;
68
+ }
69
+ .icon-no {
70
+ background: transparent url(../images/no.png) no-repeat 0 0;
71
+ width: 16px;
72
+ height: 16px;
73
+ display: inline-block;
74
+ position: relative;
75
+ top: 2px;
76
+ }
77
+ /**
78
+ * Header
79
+ * ----------------------------------------------------------------------------
80
+ */
81
+ h2.cpac-nav-tab-wrapper {
82
+ margin-bottom: 10px;
83
+ }
84
+ /**
85
+ * Menu
86
+ * ----------------------------------------------------------------------------
87
+ */
88
+ .cpac-menu {
89
+ clear: both;
90
+ overflow: hidden;
91
+ margin-bottom: 10px;
92
+ }
93
+ .cpac-menu .subsubsub {
94
+ white-space: normal;
95
+ margin-right: 14px;
96
+ width: 100%;
97
+ margin: 0 14px 0 0;
98
+ }
99
+ .cpac-menu .subsubsub li.first {
100
+ font-weight: bold;
101
+ min-width: 90px;
102
+ }
103
+ /**
104
+ * Structure
105
+ * ----------------------------------------------------------------------------
106
+ */
107
+ .columns-container {
108
+ margin-right: 300px;
109
+ max-width: 700px;
110
+ }
111
+ .columns-container .columns-left {
112
+ float: left;
113
+ width: 100%;
114
+ }
115
+ .columns-container .columns-right {
116
+ float: right;
117
+ margin-right: -300px;
118
+ width: 280px;
119
+ }
120
+ .columns-container .columns-right .columns-right-inside.fixed {
121
+ position: fixed;
122
+ top: 40px;
123
+ width: 280px;
124
+ }
125
+ /**
126
+ * UI Sortable Plugin
127
+ * ----------------------------------------------------------------------------
128
+ */
129
+ .ui-sortable-helper {
130
+ -webkit-box-shadow: 1px 3px 6px 0px rgba(1, 1, 1, 0.4);
131
+ box-shadow: 1px 3px 6px 0px rgba(1, 1, 1, 0.4);
132
+ }
133
+ .ui-sortable-helper .column-meta {
134
+ border-width: 1px;
135
+ }
136
+ .cpac-placeholder {
137
+ visibility: visible !important;
138
+ border-top: 1px solid #dfdfdf;
139
+ padding: 5px 4px 7px 0;
140
+ }
141
+ .cpac-placeholder .inner-placeholder {
142
+ border: 1px dashed #808080;
143
+ background: #eee;
144
+ width: 100%;
145
+ height: 100%;
146
+ }
147
+ .cpac-placeholder :first-child {
148
+ border: none;
149
+ }
150
+ /**
151
+ * Columns
152
+ * ----------------------------------------------------------------------------
153
+ */
154
+ .columns-left .cpac-boxes .cpac-columns form {
155
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
156
+ }
157
+ /**
158
+ * Column
159
+ * ----------------------------------------------------------------------------
160
+ */
161
+ .cpac-column .column-meta {
162
+ border-style: solid;
163
+ border-color: #dfdfdf;
164
+ border-width: 1px 1px 0;
165
+ background: #fcfcfc;
166
+ }
167
+ .cpac-column .column-meta:nth-child(2n) .column-meta {
168
+ background: #f9f9f9;
169
+ }
170
+ .cpac-column .column-meta img {
171
+ margin-right: 3px;
172
+ }
173
+ .cpac-column .column-meta table {
174
+ border: none;
175
+ background: transparent;
176
+ border-radius: 0;
177
+ }
178
+ .cpac-column .column-meta table tr td {
179
+ vertical-align: top;
180
+ height: 18px;
181
+ border: none;
182
+ padding: 11px 8px;
183
+ border-width: 1px 0 0;
184
+ border-style: solid;
185
+ border-color: transparent;
186
+ }
187
+ .cpac-column .column-meta table tr td.column_sort {
188
+ width: 10px;
189
+ background: transparent url('../images/drag.png') no-repeat 8px 8px;
190
+ cursor: move;
191
+ }
192
+ .cpac-column .column-meta table tr td.column_label {
193
+ width: 55%;
194
+ font-weight: bold;
195
+ vertical-align: middle;
196
+ position: relative;
197
+ }
198
+ .cpac-column .column-meta table tr td.column_label .inner {
199
+ position: relative;
200
+ overflow: hidden;
201
+ height: 18px;
202
+ }
203
+ .cpac-column .column-meta table tr td.column_label .inner > a {
204
+ color: #5a5a5a;
205
+ padding: 0 4px;
206
+ }
207
+ .cpac-column .column-meta table tr td.column_label .inner > a:hover {
208
+ color: #333333;
209
+ }
210
+ .cpac-column .column-meta table tr td.column_label .inner > a.edit-button,
211
+ .cpac-column .column-meta table tr td.column_label .inner > a.remove-button {
212
+ display: none;
213
+ color: #a00;
214
+ text-decoration: none;
215
+ text-shadow: none;
216
+ font-weight: normal;
217
+ margin-left: 5px;
218
+ font-size: 12px;
219
+ }
220
+ .cpac-column .column-meta table tr td.column_label .inner > a.edit-button:hover,
221
+ .cpac-column .column-meta table tr td.column_label .inner > a.remove-button:hover {
222
+ color: #f00;
223
+ }
224
+ .cpac-column .column-meta table tr td.column_label .inner > a.edit-button {
225
+ color: #0074a2;
226
+ }
227
+ .cpac-column .column-meta table tr td.column_label .inner > a.edit-button:hover {
228
+ color: #2ea2cc;
229
+ }
230
+ .cpac-column .column-meta table tr td.column_label .inner .meta {
231
+ display: inline-block;
232
+ float: right;
233
+ font-weight: normal;
234
+ color: #b2b2b2;
235
+ font-size: 12px;
236
+ }
237
+ .cpac-column .column-meta table tr td.column_label span.vers {
238
+ float: left;
239
+ }
240
+ .cpac-column .column-meta table tr td.column_type {
241
+ width: auto;
242
+ text-align: right;
243
+ vertical-align: middle;
244
+ color: #999999;
245
+ padding-right: 0;
246
+ }
247
+ .cpac-column .column-meta table tr td.column_edit {
248
+ width: 38px;
249
+ background: transparent url('../images/arrow.png') no-repeat 23px 18px;
250
+ cursor: pointer;
251
+ }
252
+ .cpac-column .column-meta:hover .column_label .inner > a.remove-button {
253
+ display: inline-block;
254
+ }
255
+ .cpac-column .column-meta:hover .column_label .inner > a.edit-button {
256
+ display: inline-block;
257
+ }
258
+ .cpac-column .column-meta span.vers {
259
+ padding-top: 2px;
260
+ }
261
+ .cpac-column .column-meta span.vers .comment-grey-bubble {
262
+ background: transparent url("../images/comment-grey-bubble.png") no-repeat 0 0;
263
+ height: 12px;
264
+ width: 12px;
265
+ float: right;
266
+ }
267
+ .cpac-column .column-form {
268
+ display: none;
269
+ border-width: 1px 1px 0;
270
+ border-style: solid;
271
+ border-color: #dfdfdf;
272
+ }
273
+ .cpac-column .column-form table {
274
+ border: none;
275
+ background: #fcfcfc;
276
+ }
277
+ .cpac-column .column-form table tr td {
278
+ vertical-align: top;
279
+ border: none;
280
+ padding: 8px;
281
+ background: #ffffff;
282
+ border-top: 1px solid #F5F5F5;
283
+ }
284
+ .cpac-column .column-form table tr td select,
285
+ .cpac-column .column-form table tr td input[type=text] {
286
+ width: 99.95%;
287
+ }
288
+ .cpac-column .column-form table tr td select optgroup:nth-child(2n) {
289
+ background: #F9F9F9;
290
+ }
291
+ .cpac-column .column-form table tr td.label {
292
+ position: relative;
293
+ overflow: visible;
294
+ background: #F9F9F9;
295
+ background: #f5f5f5;
296
+ border-right: 1px solid #E1E1E1;
297
+ vertical-align: top;
298
+ width: 34%;
299
+ border-top: 1px solid #F0F0F0;
300
+ }
301
+ .cpac-column .column-form table tr td.label label {
302
+ font-weight: bold;
303
+ color: #333333;
304
+ display: block;
305
+ position: relative;
306
+ }
307
+ .cpac-column .column-form table tr td.label p {
308
+ color: #666666;
309
+ display: block;
310
+ font-size: 12px;
311
+ font-style: normal;
312
+ line-height: 16px;
313
+ margin: 0 !important;
314
+ }
315
+ .cpac-column .column-form table tr td.label p.description {
316
+ display: none;
317
+ position: absolute;
318
+ z-index: 99;
319
+ top: 30px;
320
+ left: 0;
321
+ background: #eaf2fa;
322
+ border-radius: 5px;
323
+ border: 1px solid #c7d7e2;
324
+ padding: 5px 8px !important;
325
+ font-weight: normal;
326
+ }
327
+ .cpac-column .column-form table tr td.label p.description em {
328
+ display: block;
329
+ color: #999;
330
+ }
331
+ .cpac-column .column-form table tr td.input label {
332
+ padding-left: 10px;
333
+ padding-right: 0;
334
+ }
335
+ .cpac-column .column-form table tr td.input div.msg {
336
+ margin-top: 5px;
337
+ display: none;
338
+ color: #333;
339
+ padding: 6px 8px;
340
+ background-color: #ffebe8;
341
+ border: 1px solid #fff;
342
+ -moz-border-radius: 3px;
343
+ -webkit-border-radius: 3px;
344
+ border-radius: 3px;
345
+ }
346
+ .cpac-column .column-form table tr.column_width div.description {
347
+ font-size: 11px;
348
+ width: 12%;
349
+ float: left;
350
+ text-align: middle;
351
+ }
352
+ .cpac-column .column-form table tr.column_width div.input-width-range {
353
+ float: left;
354
+ position: relative;
355
+ width: 87%;
356
+ margin-top: 4px;
357
+ }
358
+ .cpac-column .column-form table tr.column_width div.input-width-range .ui-slider-handle {
359
+ cursor: ew-resize;
360
+ }
361
+ .cpac-column .column-form table tr.column_image_size {
362
+ border: 10px solid red;
363
+ }
364
+ .cpac-column .column-form table tr.column_image_size td.input label.custom-size {
365
+ display: inline-block;
366
+ margin-top: 4px;
367
+ margin-bottom: 4px;
368
+ }
369
+ .cpac-column .column-form table tr.column_image_size td.input label.custom-size input {
370
+ margin-right: 3px;
371
+ }
372
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size {
373
+ display: inline-block;
374
+ }
375
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .hidden {
376
+ display: none;
377
+ }
378
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w,
379
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h {
380
+ margin: 0;
381
+ }
382
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w.hidden,
383
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h.hidden {
384
+ display: none;
385
+ }
386
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w input[type="text"],
387
+ .cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h input[type="text"] {
388
+ margin-right: 3px;
389
+ width: 30px !important;
390
+ }
391
+ .cpac-column .column-form table tr.column_action td {
392
+ background: #f9f9f9;
393
+ }
394
+ .cpac-column .column-form table tr.column_action td p {
395
+ margin: 0;
396
+ }
397
+ .cpac-column .column-form table tr.column_action td p a.remove-button {
398
+ color: #a00;
399
+ text-decoration: none;
400
+ text-shadow: none;
401
+ font-weight: normal;
402
+ margin-left: 5px;
403
+ font-size: 12px;
404
+ padding: 0 5px;
405
+ }
406
+ .cpac-column .column-form table tr.column_action td p a.remove-button:hover {
407
+ color: #fff;
408
+ background: #f00;
409
+ }
410
+ .cpac-column .column-form table tr:first-child td {
411
+ border-top: none;
412
+ }
413
+ .cpac-column.opened .column-meta {
414
+ background-color: #c7c7c7;
415
+ background-image: -ms-linear-gradient(top, #e9e9e9, #c7c7c7);
416
+ background-image: -moz-linear-gradient(top, #e9e9e9, #c7c7c7);
417
+ background-image: -o-linear-gradient(top, #e9e9e9, #c7c7c7);
418
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#c7c7c7));
419
+ background-image: -webkit-linear-gradient(top, #e9e9e9, #c7c7c7);
420
+ background-image: linear-gradient(top, #e9e9e9, #c7c7c7);
421
+ border-color: #aeaeae;
422
+ }
423
+ .cpac-column.opened .column-meta table {
424
+ background: transparent;
425
+ }
426
+ .cpac-column.opened .column-meta table td {
427
+ border-color: #f8f8f8;
428
+ color: #333;
429
+ text-shadow: 0 1px 0 #FFFFFF;
430
+ }
431
+ .cpac-column.opened .column-meta table td a {
432
+ color: #333;
433
+ text-shadow: 0 1px 0 #FFFFFF;
434
+ }
435
+ .cpac-column.opened .column-meta table td.column_sort {
436
+ background-position: 8px -39px;
437
+ }
438
+ .cpac-column.opened .column-meta table td.column_label .inner .meta {
439
+ color: #808080;
440
+ }
441
+ .cpac-column.opened .column-meta table td.column_type {
442
+ color: #5C5C5C;
443
+ }
444
+ /**
445
+ * Column: Footer
446
+ * ----------------------------------------------------------------------------
447
+ */
448
+ .column-footer {
449
+ background: #EAF2FA;
450
+ border: 1px solid #c7d7e2;
451
+ min-height: 26px;
452
+ padding: 8px;
453
+ overflow: hidden;
454
+ }
455
+ .column-footer .order-message {
456
+ background: transparent url('../images/order_arrow.png') no-repeat 0 0;
457
+ color: #7A9BBE;
458
+ float: left;
459
+ font-family: Comic Sans MS, sans-serif;
460
+ font-size: 11px;
461
+ height: 13px;
462
+ line-height: 1em;
463
+ margin-left: 4px;
464
+ padding: 7px 0 0 22px;
465
+ text-shadow: 0 1px 0 #FFFFFF;
466
+ display: inline-block;
467
+ }
468
+ .column-footer .button-container {
469
+ float: right;
470
+ display: inline-block;
471
+ margin-top: -5px;
472
+ }
473
+ .column-footer .button-container a {
474
+ display: inline-block;
475
+ margin-top: 5px;
476
+ }
477
+ /**
478
+ * Welcome Screen
479
+ * ----------------------------------------------------------------------------
480
+ */
481
+ .cpac-content-body hr {
482
+ -moz-border-bottom-colors: none;
483
+ -moz-border-left-colors: none;
484
+ -moz-border-right-colors: none;
485
+ -moz-border-top-colors: none;
486
+ background: none repeat scroll 0 0 transparent;
487
+ border-color: #dfdfdf -moz-use-text-color -moz-use-text-color;
488
+ border-image: none;
489
+ border-right: 0 none;
490
+ border-style: solid none none;
491
+ border-width: 1px 0 0;
492
+ clear: both;
493
+ margin: 30px 0;
494
+ opacity: 0.2;
495
+ }
496
+ #cpac-welcome.about-wrap div.error {
497
+ display: block !important;
498
+ }
499
+ .cpac-alert {
500
+ display: inline-block;
501
+ background: none repeat scroll 0 0 #FCF8E3;
502
+ border: 1px solid #FBEED5;
503
+ border-radius: 4px 4px 4px 4px;
504
+ color: #C09853;
505
+ margin: 20px 0;
506
+ padding: 16px 14px;
507
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
508
+ }
509
+ .cpac-alert p {
510
+ margin: 0;
511
+ }
512
+ .cpac-alert.cpac-alert-success {
513
+ background-color: #DFF0D8;
514
+ border-color: #D6E9C6;
515
+ color: #468847;
516
+ }
517
+ .cpac-alert.cpac-alert-error {
518
+ background-color: #F2DEDE;
519
+ border-color: #EED3D7;
520
+ color: #B94A48;
521
+ }
522
+ .cpac-alert a.button-primary {
523
+ height: 28px;
524
+ line-height: 28px;
525
+ display: inline-block;
526
+ }
527
+ #cpac-download-add-ons-table {
528
+ max-width: 600px;
529
+ }
530
+ .wp-core-ui .button-large {
531
+ height: 40px;
532
+ line-height: 40px;
533
+ font-size: 16px;
534
+ padding: 0 15px;
535
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
536
+ }
537
+ /**
538
+ * Sidebar
539
+ * ----------------------------------------------------------------------------
540
+ */
541
+ .columns-right {
542
+ margin-top: 54px;
543
+ }
544
+ .columns-right .sidebox {
545
+ background: none repeat scroll 0 0 #FFFFFF;
546
+ border: 1px solid #E1E1E1;
547
+ border-radius: 0 0 0 0;
548
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
549
+ position: relative;
550
+ margin-bottom: 14px;
551
+ }
552
+ .columns-right .sidebox h3 {
553
+ padding: 10px;
554
+ margin: 0;
555
+ }
556
+ .columns-right .sidebox h3.title {
557
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
558
+ font-size: 15px;
559
+ font-weight: normal;
560
+ line-height: 1;
561
+ margin: 0;
562
+ padding: 7px 10px;
563
+ background: #f1f1f1;
564
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
565
+ background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
566
+ background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
567
+ background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
568
+ background-image: linear-gradient(to top, #ececec, #f9f9f9);
569
+ border-bottom-color: #dfdfdf;
570
+ text-shadow: #fff 0 1px 0;
571
+ -webkit-box-shadow: 0 1px 0 #fff;
572
+ box-shadow: 0 1px 0 #fff;
573
+ border-bottom-style: solid;
574
+ border-bottom-width: 1px;
575
+ }
576
+ .columns-right .sidebox .inside {
577
+ padding: 10px;
578
+ }
579
+ .columns-right .sidebox .inside p {
580
+ margin-top: 0;
581
+ }
582
+ .columns-right .sidebox#form-actions .form-reset {
583
+ border-bottom: 1px solid #F5F5F5;
584
+ padding: 8px;
585
+ }
586
+ .columns-right .sidebox#form-actions .reset-column-type {
587
+ text-decoration: none;
588
+ color: #BC0B0B;
589
+ line-height: 25px;
590
+ display: inline-block;
591
+ }
592
+ .columns-right .sidebox#form-actions .form-update {
593
+ padding: 8px;
594
+ overflow: hidden;
595
+ }
596
+ .columns-right .sidebox#form-actions .submit-update {
597
+ display: block;
598
+ width: 100%;
599
+ height: 28px;
600
+ line-height: 28px;
601
+ text-align: center;
602
+ }
603
+ .columns-right .sidebox#pro-version .cta {
604
+ background: transparent url(../images/get_the_addon.png) no-repeat 0 0;
605
+ }
606
+ .columns-right .sidebox#pro-version .padding-box {
607
+ padding: 8px 15px 0;
608
+ }
609
+ .columns-right .sidebox#pro-version h3 a {
610
+ color: #fff;
611
+ font-size: 19px;
612
+ text-decoration: none;
613
+ font-weight: normal;
614
+ margin-top: 6px;
615
+ }
616
+ .columns-right .sidebox#pro-version .inside ul {
617
+ margin: 0 0 10px 0;
618
+ }
619
+ .columns-right .sidebox#pro-version .inside ul li {
620
+ margin: 0;
621
+ padding: 0;
622
+ }
623
+ .columns-right .sidebox#pro-version .inside ul li a {
624
+ display: inline-block;
625
+ height: 24px;
626
+ font-size: 19px;
627
+ line-height: 24px;
628
+ margin-bottom: 1px;
629
+ padding: 0 5px;
630
+ background: #000;
631
+ color: #fff;
632
+ text-decoration: none;
633
+ }
634
+ .columns-right .sidebox#pro-version .inside p {
635
+ color: #fff;
636
+ font-size: 12px;
637
+ }
638
+ .columns-right .sidebox#pro-version .inside p a {
639
+ color: #fff;
640
+ display: inline-block;
641
+ background: #a4c518;
642
+ padding: 0 2px;
643
+ font-size: 15px;
644
+ text-decoration: none;
645
+ }
646
+ /**
647
+ * Setting Tab
648
+ * ----------------------------------------------------------------------------
649
+ */
650
+ table.cpac-form-table {
651
+ max-width: 1100px;
652
+ margin-top: 20px;
653
+ }
654
+ table.cpac-form-table > tbody > tr > td,
655
+ table.cpac-form-table > tbody > tr > th {
656
+ vertical-align: top;
657
+ }
658
+ table.cpac-form-table td.padding-22 {
659
+ padding-top: 22px;
660
+ }
661
+ table.cpac-form-table td .cpac_export .ms-container {
662
+ background: transparent url('../images/switch_bw.png') no-repeat 50% 50%;
663
+ }
664
+ table.cpac-form-table td .cpac_export .ms-container .ms-selectable {
665
+ width: 48%;
666
+ margin-right: 0;
667
+ }
668
+ table.cpac-form-table td .cpac_export .ms-container .ms-selection {
669
+ float: right;
670
+ width: 48%;
671
+ }
672
+ table.cpac-form-table td .cpac_export .ms-container ul.ms-list {
673
+ width: 100%;
674
+ }
675
+ table.cpac-form-table td .cpac_export .ms-container ul.ms-list li {
676
+ margin: 0;
677
+ padding-top: 5px;
678
+ padding-bottom: 5px;
679
+ }
680
+ /**
681
+ * WP Pointer
682
+ * ----------------------------------------------------------------------------
683
+ */
684
+ .wp-pointer-content {
685
+ overflow: hidden;
686
+ }
687
+ .wp-pointer-content ol {
688
+ margin-left: 1.5em;
689
+ padding: 0 15px;
690
+ }
691
+ .wp-pointer-right {
692
+ margin-right: 15px;
693
+ }
694
+ /* =RTL language
695
+ -------------------------------------------------------------- */
696
+ body.rtl .wp-pointer-right {
697
+ margin-left: 15px;
698
+ margin-right: 0;
699
+ }
700
+ body.rtl .wp-pointer-right ol {
701
+ margin-right: 1.5em;
702
+ margin-left: 0;
703
+ }
704
+ body.rtl .cpac-menu .subsubsub {
705
+ margin-left: 14px;
706
+ margin-right: 0;
707
+ }
708
+ body.rtl .columns-container {
709
+ margin-left: 300px;
710
+ margin-right: 0;
711
+ }
712
+ body.rtl .columns-left {
713
+ float: right;
714
+ }
715
+ body.rtl .columns-left .cpac-columns .cpac-column .column-meta img {
716
+ margin-left: 3px;
717
+ margin-right: 0;
718
+ }
719
+ body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label .inner > a.remove-button {
720
+ margin-right: 12px;
721
+ margin-left: 0;
722
+ }
723
+ body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label .inner .meta {
724
+ float: left;
725
+ }
726
+ body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label span.vers {
727
+ float: right;
728
+ }
729
+ body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_type {
730
+ text-align: left;
731
+ padding-left: 0;
732
+ padding-right: auto;
733
+ }
734
+ body.rtl .columns-left .cpac-columns .cpac-column .column-meta span.vers .comment-grey-bubble {
735
+ float: left;
736
+ }
737
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr.column_image_size td.input label input {
738
+ margin-left: 3px;
739
+ margin-right: 0;
740
+ }
741
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr td.label p.description {
742
+ right: 0;
743
+ left: auto;
744
+ }
745
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr td.label a.more-info {
746
+ float: left;
747
+ }
748
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form div.description {
749
+ float: right;
750
+ }
751
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form div.input-width-range {
752
+ float: right;
753
+ }
754
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form tr td.input label {
755
+ padding-left: 10px;
756
+ padding-right: 0;
757
+ }
758
+ body.rtl .columns-left .cpac-columns .cpac-column .column-form a.help {
759
+ float: left;
760
+ }
761
+ body.rtl .columns-left .column-footer .order-message {
762
+ float: right;
763
+ padding-right: 22px;
764
+ padding-left: 0;
765
+ background: transparent url('../images/order_arrow-rtl.png') no-repeat right top;
766
+ }
767
+ body.rtl .columns-left .column-footer .button-container {
768
+ float: left;
769
+ }
770
+ body.rtl .columns-right {
771
+ float: left;
772
+ margin-left: -300px;
773
+ margin-right: 0;
774
+ }
775
+ body.rtl .cpac-placeholder {
776
+ padding: 5px 0 7px 4px;
777
+ }
778
+ body.rtl .cpac_export .ms-container .ms-selection {
779
+ float: left;
780
+ }
781
+ /* =Responsive
782
+ -------------------------------------------------------------- */
783
+ @media only screen and (max-width: 900px) {
784
+ .columns-container {
785
+ margin-right: 0;
786
+ }
787
+ .columns-container .columns-left {
788
+ float: none;
789
+ }
790
+ .columns-container .columns-right {
791
+ float: none;
792
+ margin-top: 0;
793
+ margin-right: 0;
794
+ width: 100%;
795
+ }
796
+ .columns-container .columns-right .columns-right-inside.fixed {
797
+ position: relative;
798
+ top: 0;
799
+ width: 100%;
800
+ }
801
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/column.css CHANGED
@@ -1,76 +1,72 @@
1
- /* =General
2
- -------------------------------------------------------------- */
3
- .cpac-divider {
4
- display: inline-block;
5
- width: 14px;
6
- height: 12px;
7
- background: transparent url(../images/square.png) no-repeat 50% 7px;
8
- }
9
- span.status-open {}
10
- span.status-closed {
11
- color: red;
12
- }
13
- .tablenav.top .cpac-edit {
14
- top: 0;
15
- display: inline-block;
16
- vertical-align: bottom;
17
- }
18
-
19
- /* =Images Column
20
- -------------------------------------------------------------- */
21
- .cpac-column-value-image {
22
- display: inline-block;
23
- background: transparent;
24
- margin-right: 2px;
25
- overflow: hidden;
26
- }
27
- .rtl .cpac-column-value-image {
28
- margin-left: 2px;
29
- margin-right: 0;
30
- }
31
- .cpac-column-value-image img {
32
- display: block;
33
- margin: 0 auto;
34
- }
35
- .column-column-attachment img {
36
- padding-right: 5px;
37
- padding-bottom: 4px;
38
- }
39
- .rtl .column-column-attachment img {
40
- padding-left: 5px;
41
- padding-right: 0;
42
- }
43
-
44
- /* =Color Column
45
- -------------------------------------------------------------- */
46
- div.cpac-color {
47
- line-height: 26px;
48
- }
49
- div.cpac-color span {
50
- display: block;
51
- -webkit-border-radius: 3px;
52
- border-radius: 3px;
53
- color: #ffffff;
54
- float: left;
55
- height: 16px;
56
- line-height: 16px;
57
- margin-right: 12px;
58
- min-width: 30px;
59
- overflow: hidden;
60
- padding: 4px 5px;
61
- font-size: 10px;
62
- font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
63
- min-width: 47px;
64
- text-align: center;
65
- }
66
- .rtl div.cpac-color span {
67
- float: right;
68
- margin-left: 12px;
69
- margin-right: 0;
70
- }
71
-
72
- /* =Available Sizes column
73
- -------------------------------------------------------------- */
74
- div.sizes span.not-available {
75
- color: #999;
76
- }
1
+ /* =General
2
+ -------------------------------------------------------------- */
3
+ .cpac-divider {
4
+ display: inline-block;
5
+ width: 14px;
6
+ height: 12px;
7
+ background: transparent url(../images/square.png) no-repeat 50% 7px;
8
+ }
9
+ span.status-closed {
10
+ color: red;
11
+ }
12
+ .tablenav.top .cpac-edit {
13
+ top: 0;
14
+ display: inline-block;
15
+ vertical-align: bottom;
16
+ }
17
+ /* =Images Column
18
+ -------------------------------------------------------------- */
19
+ .cpac-column-value-image {
20
+ display: inline-block;
21
+ background: transparent;
22
+ margin-right: 2px;
23
+ overflow: hidden;
24
+ }
25
+ .rtl .cpac-column-value-image {
26
+ margin-left: 2px;
27
+ margin-right: 0;
28
+ }
29
+ .cpac-column-value-image img {
30
+ display: block;
31
+ margin: 0 auto;
32
+ }
33
+ .column-column-attachment img {
34
+ padding-right: 5px;
35
+ padding-bottom: 4px;
36
+ }
37
+ .rtl .column-column-attachment img {
38
+ padding-left: 5px;
39
+ padding-right: 0;
40
+ }
41
+ /* =Color Column
42
+ -------------------------------------------------------------- */
43
+ div.cpac-color {
44
+ line-height: 26px;
45
+ }
46
+ div.cpac-color span {
47
+ display: block;
48
+ -webkit-border-radius: 3px;
49
+ border-radius: 3px;
50
+ color: #ffffff;
51
+ float: left;
52
+ height: 16px;
53
+ line-height: 16px;
54
+ margin-right: 12px;
55
+ min-width: 30px;
56
+ overflow: hidden;
57
+ padding: 4px 5px;
58
+ font-size: 10px;
59
+ font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
60
+ min-width: 47px;
61
+ text-align: center;
62
+ }
63
+ .rtl div.cpac-color span {
64
+ float: right;
65
+ margin-left: 12px;
66
+ margin-right: 0;
67
+ }
68
+ /* =Available Sizes column
69
+ -------------------------------------------------------------- */
70
+ div.sizes span.not-available {
71
+ color: #999;
72
+ }
 
 
 
 
assets/css/custom-fields.css DELETED
@@ -1,2 +0,0 @@
1
- /* =Custom Fields
2
- -------------------------------------------------------------- */
 
 
assets/js/admin-columns.js CHANGED
@@ -7,7 +7,6 @@ jQuery(document).ready(function() {
7
  if ( jQuery('#cpac').length === 0 )
8
  return false;
9
 
10
-
11
  // General
12
  cpac_pointer();
13
  cpac_submit_form();
@@ -22,10 +21,11 @@ jQuery(document).ready(function() {
22
  cpac_add_column();
23
  cpac_sidebar_scroll();
24
 
25
- /** we start by binding the toggle and remove events. */
26
- jQuery('.cpac-column').each( function(i,col) {
27
- jQuery(col).column_bind_toggle();
28
- jQuery(col).column_bind_remove();
 
29
  });
30
  });
31
 
@@ -53,12 +53,13 @@ jQuery.fn.column_bind_toggle = function() {
53
 
54
  var column = jQuery(this);
55
 
56
- column.find('td.column_edit, td.column_label a.toggle' ).click( function(){
57
 
58
  column.toggleClass('opened').find('.column-form').slideToggle(150);
59
 
60
- if ( !column.hasClass('events-binded') )
61
  column.column_bind_events();
 
62
 
63
  column.addClass('events-binded');
64
 
@@ -478,8 +479,10 @@ function cpac_sortable() {
478
  * @since 1.5
479
  */
480
  function cpac_menu() {
 
 
481
  // click
482
- jQuery('#cpac div.cpac-menu a').click( function(e, el) {
483
 
484
  var id = jQuery(this).attr('href');
485
 
@@ -493,11 +496,110 @@ function cpac_menu() {
493
 
494
  // set current
495
  jQuery(this).addClass('current');
496
- jQuery('.columns-container[data-type="' + type + '"]').show();
 
 
 
 
497
  }
498
 
499
  e.preventDefault();
500
  });
 
 
 
501
  }
502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
 
7
  if ( jQuery('#cpac').length === 0 )
8
  return false;
9
 
 
10
  // General
11
  cpac_pointer();
12
  cpac_submit_form();
21
  cpac_add_column();
22
  cpac_sidebar_scroll();
23
 
24
+ // we start by binding the toggle and remove events.
25
+ jQuery('.cpac-column').each( function( i, col ) {
26
+ jQuery( col ).column_bind_toggle();
27
+ jQuery( col ).column_bind_remove();
28
+ jQuery( col ).cpac_bind_container_addon_events();
29
  });
30
  });
31
 
53
 
54
  var column = jQuery(this);
55
 
56
+ column.find('td.column_edit, td.column_label a.toggle, td.column_label .edit-button' ).click( function(){
57
 
58
  column.toggleClass('opened').find('.column-form').slideToggle(150);
59
 
60
+ if ( ! column.hasClass('events-binded') ) {
61
  column.column_bind_events();
62
+ }
63
 
64
  column.addClass('events-binded');
65
 
479
  * @since 1.5
480
  */
481
  function cpac_menu() {
482
+
483
+ var menu = jQuery('#cpac div.cpac-menu');
484
  // click
485
+ menu.find('a').click( function(e, el) {
486
 
487
  var id = jQuery(this).attr('href');
488
 
496
 
497
  // set current
498
  jQuery(this).addClass('current');
499
+ var container = jQuery('.columns-container[data-type="' + type + '"]').show();
500
+ var columns = container.find( '.cpac-columns' );
501
+
502
+ // hook for addons
503
+ jQuery( document ).trigger( 'cac_menu_change', columns );
504
  }
505
 
506
  e.preventDefault();
507
  });
508
+
509
+ // activate first menu
510
+ menu.find('a.current').trigger('click');
511
  }
512
 
513
+ /*
514
+ * Bind events: triggered after column is init, changed or added
515
+ *
516
+ */
517
+ jQuery( document ).bind('column_init column_change column_add', function( e, column ){
518
+ jQuery( column ).cpac_bind_column_addon_events();
519
+ jQuery( column ).cpac_bind_container_addon_events();
520
+ });
521
+
522
+ /*
523
+ * Radio Click events
524
+ *
525
+ */
526
+ jQuery.fn.cpac_bind_column_addon_events = function() {
527
+
528
+ var column = jQuery( this );
529
+ var inputs = column.find('[data-toggle-id] label');
530
+
531
+ // Enable editing: radio button
532
+ inputs.click( function(){
533
+
534
+ var id = jQuery( this ).closest('td.input').data('toggle-id');
535
+ var label = column.find('[data-indicator-id="' + id + '"]' ).removeClass( 'on' );
536
+ var status = jQuery( 'input', this ).val();
537
+
538
+ if ( 'on' == status ) {
539
+ label.addClass( 'on' );
540
+ }
541
+ });
542
+ };
543
+
544
+ /*
545
+ * Indicator Click Events
546
+ *
547
+ */
548
+ jQuery.fn.cpac_bind_container_addon_events = function() {
549
+
550
+ var column = jQuery( this );
551
+ var indicator = column.find('[data-indicator-id]');
552
+
553
+ indicator.unbind('click').click( function() {
554
+
555
+ var id = jQuery( this ).data('indicator-id');
556
+ var radio = column.find('[data-toggle-id="' + id + '"] input' );
557
+
558
+ if ( jQuery( this ).hasClass('on') ) {
559
+ jQuery( this ).removeClass('on').addClass('off');
560
+ radio.filter('[value=off]').prop('checked', true);
561
+ }
562
+ else {
563
+ jQuery( this ).removeClass('off').addClass('on');
564
+ radio.filter('[value=on]').prop('checked', true);
565
+ }
566
+ });
567
+ };
568
+
569
+
570
+ /*
571
+ * Display additional field options
572
+ *
573
+ * Usage: Add to option of the select elemtent the following data prop:
574
+ * <option data-display-option="image_size" ... />
575
+ */
576
+ jQuery.fn.column_display_additional_column_options = function() {
577
+
578
+ jQuery( this ).change( function() {
579
+
580
+ var display = jQuery( this ).find(":selected").attr('data-display-option');
581
+
582
+ var table = jQuery( this ).closest('table');
583
+ var image_size = table.find('.column_image_size').hide();
584
+ var excerpt = table.find('.column_excerpt_length').hide();
585
+ var date = table.find('.column_date_format').hide();
586
+
587
+ if ( 'image_size' === display ) {
588
+ image_size.show();
589
+ }
590
+ if ( 'excerpt' === display ) {
591
+ excerpt.show();
592
+ }
593
+ if ( 'date' === display ) {
594
+ date.show();
595
+ }
596
+ });
597
+ };
598
+
599
+ // bind event
600
+ jQuery(document).bind('column_init column_change column_add', function( e, column ){
601
+ console.log( 'column_init' );
602
+ jQuery( column ).find('tr.column_field_type select').column_display_additional_column_options();
603
+ jQuery( column ).find('tr.column_field select').column_display_additional_column_options();
604
+ });
605
 
assets/js/custom-fields.js DELETED
@@ -1,53 +0,0 @@
1
- /*
2
- * Bind events: triggered by main plugin
3
- *
4
- */
5
- jQuery(document).bind('column_init', function( e, column ){
6
- jQuery(column).column_bind_custom_field_events();
7
- });
8
- jQuery(document).bind('column_change', function( e, clone ){
9
- jQuery(clone).column_bind_custom_field_events();
10
- });
11
- jQuery(document).bind('column_add', function( e, clone ){
12
- jQuery(clone).column_bind_custom_field_events();
13
- });
14
-
15
- /*
16
- * Form Events
17
- *
18
- * @since 2.0.0
19
- */
20
- jQuery.fn.column_bind_custom_field_events = function() {
21
-
22
- jQuery(this).find( '.column_field_type .input select' ).change( function() {
23
-
24
- var value = jQuery(this).children(":selected").attr('value');
25
-
26
- // image size
27
- var image_size = jQuery(this).closest('table').find('.column_image_size').show();
28
- if( 'image' == value || 'library_id' == value ) {
29
- image_size.show();
30
- }
31
- else {
32
- image_size.hide();
33
- }
34
-
35
- // excerpt length
36
- var excerpt_length = jQuery(this).closest('table').find('.column_excerpt_length').show();
37
- if( 'excerpt' == value ) {
38
- excerpt_length.show();
39
- }
40
- else {
41
- excerpt_length.hide();
42
- }
43
-
44
- // date format
45
- var date_format = jQuery(this).closest('table').find('.column_date_format').show();
46
- if( 'date' == value ) {
47
- date_format.show();
48
- }
49
- else {
50
- date_format.hide();
51
- }
52
- });
53
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/js/upgrade.js CHANGED
File without changes
assets/less/admin-column.less ADDED
@@ -0,0 +1,998 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #cpac {
2
+
3
+ a:focus,
4
+ a:active {
5
+ outline: none;
6
+ }
7
+ }
8
+
9
+ /**
10
+ * General
11
+ * ----------------------------------------------------------------------------
12
+ */
13
+ #icon-codepress-admin-columns {
14
+ background: transparent url('../images/icon.png') no-repeat 0 0;
15
+ }
16
+ .cpac-settings-link {
17
+ float: right;
18
+ margin: 12px 14px 5px 0;
19
+ background: transparent url('../images/settings.png') no-repeat 0 0;
20
+ padding-left: 20px;
21
+ text-decoration: none;
22
+ display: inline-block;
23
+ line-height: 16px;
24
+
25
+ &.current {
26
+ font-weight: bold;
27
+ }
28
+ }
29
+ .rtl .cpac-settings-link {
30
+ float: left;
31
+ margin: 12px 0 5px 14px;
32
+ padding-right: 20px;
33
+ padding-left: 0;
34
+ }
35
+ a.help {
36
+ background: transparent url('../images/help.png') no-repeat 0 0;
37
+ display: inline-block;
38
+ width: 16px;
39
+ height: 16px;
40
+ }
41
+ .button.loading {
42
+ padding-right: 25px;
43
+ position: relative;
44
+ }
45
+ .rtl .button.loading {
46
+ padding-left: 25px;
47
+ padding-right: 0;
48
+ }
49
+ .button.loading span {
50
+ position: absolute;
51
+ top: 2px;
52
+ right: 6px;
53
+ background: transparent url('../images/loading.gif') no-repeat right 50%;
54
+ width: 16px;
55
+ height: 16px;
56
+ display: inline-block;
57
+ }
58
+ .rtl .button.loading span {
59
+ left: 6px;
60
+ right: auto;
61
+ }
62
+
63
+ /**
64
+ * Icons
65
+ * ----------------------------------------------------------------------------
66
+ */
67
+ .icon-yes {
68
+ background: transparent url(../images/yes.png) no-repeat 0 0;
69
+ width: 16px;
70
+ height: 16px;
71
+ display: inline-block;
72
+ position: relative;
73
+ top: 2px;
74
+ }
75
+ .icon-no {
76
+ background: transparent url(../images/no.png) no-repeat 0 0;
77
+ width: 16px;
78
+ height: 16px;
79
+ display: inline-block;
80
+ position: relative;
81
+ top: 2px;
82
+ }
83
+
84
+ /**
85
+ * Header
86
+ * ----------------------------------------------------------------------------
87
+ */
88
+ h2.cpac-nav-tab-wrapper {
89
+ margin-bottom: 10px;
90
+ }
91
+
92
+ /**
93
+ * Menu
94
+ * ----------------------------------------------------------------------------
95
+ */
96
+ .cpac-menu {
97
+ clear: both;
98
+ overflow: hidden;
99
+ margin-bottom: 10px;
100
+
101
+ .subsubsub {
102
+ white-space: normal;
103
+ margin-right: 14px;
104
+ width: 100%;
105
+ margin: 0 14px 0 0;
106
+
107
+ li {
108
+
109
+ &.first {
110
+ font-weight: bold;
111
+ min-width: 90px;
112
+ }
113
+ }
114
+ }
115
+ }
116
+
117
+ /**
118
+ * Structure
119
+ * ----------------------------------------------------------------------------
120
+ */
121
+ .columns-container {
122
+ margin-right: 300px;
123
+ max-width: 700px;
124
+
125
+ .columns-left {
126
+ float: left;
127
+ width: 100%;
128
+ }
129
+
130
+ .columns-right {
131
+ float: right;
132
+ margin-right: -300px;
133
+ width: 280px;
134
+
135
+ .columns-right-inside.fixed {
136
+ position: fixed;
137
+ top: 40px;
138
+ width: 280px;
139
+ }
140
+ }
141
+ }
142
+
143
+ /**
144
+ * UI Sortable Plugin
145
+ * ----------------------------------------------------------------------------
146
+ */
147
+ .ui-sortable-helper {
148
+ -webkit-box-shadow: 1px 3px 6px 0px rgba(1, 1, 1, 0.4);
149
+ box-shadow: 1px 3px 6px 0px rgba(1, 1, 1, 0.4);
150
+
151
+ .column-meta {
152
+ border-width: 1px;
153
+ }
154
+ }
155
+ .cpac-placeholder {
156
+ visibility: visible !important;
157
+ border-top: 1px solid #dfdfdf;
158
+ padding: 5px 4px 7px 0;
159
+
160
+ .inner-placeholder {
161
+ border: 1px dashed #808080;
162
+ background: #eee;
163
+ width: 100%;
164
+ height: 100%;
165
+ }
166
+
167
+ :first-child {
168
+ border: none;
169
+ }
170
+ }
171
+
172
+ /**
173
+ * Columns
174
+ * ----------------------------------------------------------------------------
175
+ */
176
+ .columns-left {
177
+ .cpac-boxes {
178
+ .cpac-columns {
179
+ form {
180
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
181
+ }
182
+ }
183
+ }
184
+ }
185
+
186
+ /**
187
+ * Column
188
+ * ----------------------------------------------------------------------------
189
+ */
190
+ .cpac-column {
191
+
192
+ // Column Header
193
+ .column-meta {
194
+ border-style: solid;
195
+ border-color: #dfdfdf;
196
+ border-width: 1px 1px 0;
197
+ background: #fcfcfc;
198
+
199
+ &:nth-child(2n) .column-meta {
200
+ background: #f9f9f9;
201
+ }
202
+
203
+ img {
204
+ margin-right: 3px;
205
+ }
206
+
207
+ table {
208
+ border: none;
209
+ background: transparent;
210
+ border-radius: 0;
211
+
212
+ tr {
213
+ td {
214
+ vertical-align: top;
215
+ height: 18px;
216
+ border: none;
217
+ padding: 11px 8px;
218
+ border-width: 1px 0 0;
219
+ border-style: solid;
220
+ border-color: transparent;
221
+
222
+ &.column_sort {
223
+ width: 10px;
224
+ background: transparent url('../images/drag.png') no-repeat 8px 8px;
225
+ cursor: move;
226
+ }
227
+
228
+ &.column_label {
229
+ width: 55%;
230
+ font-weight: bold;
231
+ vertical-align: middle;
232
+ position: relative;
233
+
234
+ .inner {
235
+ position: relative;
236
+ overflow: hidden;
237
+ height: 18px;
238
+
239
+ > a {
240
+ color: #5a5a5a;
241
+ padding: 0 4px;
242
+
243
+ &:hover {
244
+ color: #333333;
245
+ }
246
+
247
+ &.edit-button,
248
+ &.remove-button {
249
+ display: none;
250
+ color: #a00;
251
+ text-decoration: none;
252
+ text-shadow: none;
253
+ font-weight: normal;
254
+ margin-left: 5px;
255
+ font-size: 12px;
256
+
257
+ &:hover {
258
+ color: #f00;
259
+ }
260
+ }
261
+
262
+ &.edit-button {
263
+ color: #0074a2;
264
+
265
+ &:hover {
266
+ color: #2ea2cc;
267
+ }
268
+ }
269
+ }
270
+
271
+ .meta {
272
+ display: inline-block;
273
+ float: right;
274
+ font-weight: normal;
275
+ color: #b2b2b2;
276
+ font-size: 12px;
277
+
278
+ span {
279
+ //cursor: pointer;
280
+ }
281
+ }
282
+ }
283
+
284
+ // wp default icon
285
+ span.vers {
286
+ float: left;
287
+ }
288
+ }
289
+
290
+ &.column_type {
291
+ width: auto;
292
+ text-align: right;
293
+ vertical-align: middle;
294
+ color: #999999;
295
+ padding-right: 0;
296
+ }
297
+
298
+ &.column_edit {
299
+ width: 38px;
300
+ background: transparent url('../images/arrow.png') no-repeat 23px 18px;
301
+ cursor: pointer;
302
+ }
303
+ } // td
304
+ } // tr
305
+ } // table
306
+
307
+ &:hover {
308
+ .column_label .inner > a {
309
+ &.remove-button {
310
+ display: inline-block;
311
+ }
312
+ &.edit-button {
313
+ display: inline-block;
314
+ }
315
+ }
316
+ }
317
+
318
+ // WP Default icons
319
+ span.vers {
320
+ padding-top: 2px;
321
+
322
+ .comment-grey-bubble {
323
+ background: transparent url("../images/comment-grey-bubble.png") no-repeat 0 0;
324
+ height: 12px;
325
+ width: 12px;
326
+ float: right;
327
+ }
328
+ }
329
+
330
+ } // .column-meta
331
+
332
+ // Column Body
333
+ .column-form {
334
+ display: none;
335
+ border-width: 1px 1px 0;
336
+ border-style: solid;
337
+ border-color: #dfdfdf;
338
+
339
+ table {
340
+ border: none;
341
+ background: #fcfcfc;
342
+
343
+ tr {
344
+
345
+ td {
346
+ vertical-align: top;
347
+ border: none;
348
+ padding: 8px;
349
+ background: #ffffff;
350
+ border-top: 1px solid #F5F5F5;
351
+
352
+ select,
353
+ input[type=text] {
354
+ width: 99.95%; // excl padding
355
+ }
356
+
357
+ select optgroup:nth-child(2n) {
358
+ background: #F9F9F9;
359
+ }
360
+
361
+ &.label {
362
+ position: relative;
363
+ overflow: visible;
364
+ background: #F9F9F9;
365
+ background: #f5f5f5;
366
+ border-right: 1px solid #E1E1E1;
367
+ vertical-align: top;
368
+ width: 34%;
369
+ border-top: 1px solid #F0F0F0;
370
+
371
+ label {
372
+ font-weight: bold;
373
+ color: #333333;
374
+ display: block;
375
+ position: relative;
376
+ }
377
+
378
+ p {
379
+ color: #666666;
380
+ display: block;
381
+ font-size: 12px;
382
+ font-style: normal;
383
+ line-height: 16px;
384
+ margin: 0 !important;
385
+
386
+ &.description {
387
+ display: none;
388
+ position: absolute;
389
+ z-index: 99;
390
+ top: 30px;
391
+ left: 0;
392
+ background: #eaf2fa;
393
+ border-radius: 5px;
394
+ border: 1px solid #c7d7e2;
395
+ padding: 5px 8px !important;
396
+ font-weight: normal;
397
+
398
+ em {
399
+ display: block;
400
+ color: #999;
401
+ }
402
+ }
403
+ }
404
+ }
405
+
406
+ &.input {
407
+ label {
408
+ padding-left: 10px;
409
+ padding-right: 0;
410
+ }
411
+ div.msg {
412
+ margin-top: 5px;
413
+ display: none;
414
+ color: #333;
415
+ padding: 6px 8px;
416
+ background-color: #ffebe8;
417
+ border: 1px solid #fff;
418
+ -moz-border-radius: 3px;
419
+ -webkit-border-radius: 3px;
420
+ border-radius: 3px;
421
+ }
422
+ }
423
+ }
424
+
425
+ &.column_width {
426
+ div.description {
427
+ font-size: 11px;
428
+ width: 12%;
429
+ float: left;
430
+ text-align: middle;
431
+ }
432
+ div.input-width-range {
433
+ float: left;
434
+ position: relative;
435
+ width: 87%;
436
+ margin-top: 4px;
437
+
438
+ .ui-slider-handle {
439
+ cursor:ew-resize;
440
+ }
441
+ }
442
+ }
443
+
444
+ &.column_image_size {
445
+
446
+ border: 10px solid red;
447
+ td.label {}
448
+ td.input {
449
+ label.custom-size {
450
+ display: inline-block;
451
+ margin-top: 4px;
452
+ margin-bottom: 4px;
453
+
454
+ input {
455
+ margin-right: 3px;
456
+ }
457
+ }
458
+
459
+ .custom_image_size {
460
+ display: inline-block;
461
+
462
+ .hidden {
463
+ display: none;
464
+ }
465
+
466
+ .custom-size-w,
467
+ .custom-size-h {
468
+ margin: 0;
469
+
470
+ &.hidden {
471
+ display: none;
472
+ }
473
+
474
+ input[type="text"] {
475
+ margin-right: 3px;
476
+ width: 30px !important;
477
+ }
478
+ }
479
+ }
480
+ }
481
+ }
482
+
483
+ &.column_action {
484
+ td {
485
+ background: #f9f9f9;
486
+
487
+ p {
488
+ margin: 0;
489
+
490
+ a.remove-button {
491
+ color: #a00;
492
+ text-decoration: none;
493
+ text-shadow: none;
494
+ font-weight: normal;
495
+ margin-left: 5px;
496
+ font-size: 12px;
497
+ padding: 0 5px;
498
+
499
+ &:hover {
500
+ color: #fff;
501
+ background: #f00;
502
+ }
503
+ }
504
+ }
505
+ }
506
+ }
507
+
508
+ &:first-child td {
509
+ border-top: none;
510
+ }
511
+ }
512
+ }
513
+ }
514
+
515
+ // Open state
516
+ &.opened {
517
+ .column-meta {
518
+ background-color: #c7c7c7;
519
+ background-image: -ms-linear-gradient(top, #e9e9e9, #c7c7c7);
520
+ background-image: -moz-linear-gradient(top, #e9e9e9, #c7c7c7);
521
+ background-image: -o-linear-gradient(top, #e9e9e9, #c7c7c7);
522
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#c7c7c7));
523
+ background-image: -webkit-linear-gradient(top, #e9e9e9, #c7c7c7);
524
+ background-image: linear-gradient(top, #e9e9e9, #c7c7c7);
525
+ border-color: #aeaeae;
526
+
527
+ table {
528
+ background: transparent;
529
+
530
+ td {
531
+ border-color: #f8f8f8;
532
+ color: #333;
533
+ text-shadow: 0 1px 0 #FFFFFF;
534
+
535
+ a {
536
+ color: #333;
537
+ text-shadow: 0 1px 0 #FFFFFF;
538
+ }
539
+
540
+ &.column_sort {
541
+ background-position: 8px -39px;
542
+ }
543
+ &.column_label .inner .meta {
544
+ color: #808080;
545
+ }
546
+ &.column_type {
547
+ color: #5C5C5C;
548
+ }
549
+ }
550
+ }
551
+ }
552
+ }
553
+ } // .cpac-columns
554
+
555
+ /**
556
+ * Column: Footer
557
+ * ----------------------------------------------------------------------------
558
+ */
559
+ .column-footer {
560
+ background: #EAF2FA;
561
+ border: 1px solid #c7d7e2;
562
+ min-height: 26px;
563
+ padding: 8px;
564
+ overflow: hidden;
565
+
566
+ .order-message {
567
+ background: transparent url('../images/order_arrow.png') no-repeat 0 0;
568
+ color: #7A9BBE;
569
+ float: left;
570
+ font-family: Comic Sans MS,sans-serif;
571
+ font-size: 11px;
572
+ height: 13px;
573
+ line-height: 1em;
574
+ margin-left: 4px;
575
+ padding: 7px 0 0 22px;
576
+ text-shadow: 0 1px 0 #FFFFFF;
577
+ display: inline-block;
578
+ }
579
+
580
+ .button-container {
581
+ float: right;
582
+ display: inline-block;
583
+ margin-top: -5px;
584
+
585
+ a {
586
+ display: inline-block;
587
+ margin-top: 5px;
588
+ }
589
+ }
590
+ }
591
+
592
+ /**
593
+ * Welcome Screen
594
+ * ----------------------------------------------------------------------------
595
+ */
596
+
597
+ .cpac-content-body hr {
598
+ -moz-border-bottom-colors: none;
599
+ -moz-border-left-colors: none;
600
+ -moz-border-right-colors: none;
601
+ -moz-border-top-colors: none;
602
+ background: none repeat scroll 0 0 transparent;
603
+ border-color: #DFDFDF -moz-use-text-color -moz-use-text-color;
604
+ border-image: none;
605
+ border-right: 0 none;
606
+ border-style: solid none none;
607
+ border-width: 1px 0 0;
608
+ clear: both;
609
+ margin: 30px 0;
610
+ opacity: 0.2;
611
+ }
612
+ #cpac-welcome.about-wrap div.error {
613
+ display: block !important;
614
+ }
615
+ .cpac-alert {
616
+ display: inline-block;
617
+ background: none repeat scroll 0 0 #FCF8E3;
618
+ border: 1px solid #FBEED5;
619
+ border-radius: 4px 4px 4px 4px;
620
+ color: #C09853;
621
+ margin: 20px 0;
622
+ padding: 16px 14px;
623
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
624
+ }
625
+ .cpac-alert p {
626
+ margin: 0;
627
+ }
628
+ .cpac-alert.cpac-alert-success {
629
+ background-color: #DFF0D8;
630
+ border-color: #D6E9C6;
631
+ color: #468847;
632
+ }
633
+ .cpac-alert.cpac-alert-error {
634
+ background-color: #F2DEDE;
635
+ border-color: #EED3D7;
636
+ color: #B94A48;
637
+ }
638
+ .cpac-alert a.button-primary {
639
+
640
+ height: 28px;
641
+ line-height: 28px;
642
+ display: inline-block;
643
+ }
644
+ #cpac-download-add-ons-table {
645
+ max-width: 600px;
646
+ }
647
+ .wp-core-ui .button-large {
648
+ height: 40px;
649
+ line-height: 40px;
650
+ font-size: 16px;
651
+ padding: 0 15px;
652
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
653
+ }
654
+
655
+ /**
656
+ * Sidebar
657
+ * ----------------------------------------------------------------------------
658
+ */
659
+ .columns-right {
660
+ margin-top: 54px;
661
+
662
+ .sidebox {
663
+ background: none repeat scroll 0 0 #FFFFFF;
664
+ border: 1px solid #E1E1E1;
665
+ border-radius: 0 0 0 0;
666
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
667
+ position: relative;
668
+ margin-bottom: 14px;
669
+
670
+ h3 {
671
+ padding: 10px;
672
+ margin: 0;
673
+
674
+ &.title {
675
+ font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
676
+ font-size: 15px;
677
+ font-weight: normal;
678
+ line-height: 1;
679
+ margin: 0;
680
+ padding: 7px 10px;
681
+ background: #f1f1f1;
682
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
683
+ background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
684
+ background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
685
+ background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
686
+ background-image: linear-gradient(to top, #ececec, #f9f9f9);
687
+ border-bottom-color: #dfdfdf;
688
+ text-shadow: #fff 0 1px 0;
689
+ -webkit-box-shadow: 0 1px 0 #fff;
690
+ box-shadow: 0 1px 0 #fff;
691
+ border-bottom-style: solid;
692
+ border-bottom-width: 1px;
693
+ }
694
+ }
695
+
696
+ .inside {
697
+ padding: 10px;
698
+
699
+ p {
700
+ margin-top: 0;
701
+ }
702
+ }
703
+
704
+ &#form-actions {
705
+ .form-reset {
706
+ border-bottom: 1px solid #F5F5F5;
707
+ padding: 8px;
708
+ }
709
+ .reset-column-type {
710
+ text-decoration: none;
711
+ color: #BC0B0B;
712
+ line-height: 25px;
713
+ display: inline-block;
714
+ }
715
+ .form-update {
716
+ padding: 8px;
717
+ overflow: hidden;
718
+ }
719
+ .submit-update {
720
+ display: block;
721
+ width: 100%;
722
+ height: 28px;
723
+ line-height: 28px;
724
+ text-align: center;
725
+ }
726
+ }
727
+
728
+ &#pro-version {
729
+ .cta {
730
+ background: transparent url(../images/get_the_addon.png) no-repeat 0 0;
731
+ }
732
+ .padding-box {
733
+ padding: 8px 15px 0;
734
+ }
735
+ h3 a {
736
+ color: #fff;
737
+ font-size: 19px;
738
+ text-decoration: none;
739
+ font-weight: normal;
740
+ margin-top: 6px;
741
+ }
742
+ .inside {
743
+ ul {
744
+ margin: 0 0 10px 0;
745
+
746
+ li {
747
+ margin: 0;
748
+ padding: 0;
749
+
750
+ a {
751
+ display: inline-block;
752
+ height: 24px;
753
+ font-size: 19px;
754
+ line-height: 24px;
755
+ margin-bottom: 1px;
756
+ padding: 0 5px;
757
+ background: #000;
758
+ color: #fff;
759
+ text-decoration: none;
760
+ }
761
+ }
762
+ }
763
+
764
+ p {
765
+ color: #fff;
766
+ font-size: 12px;
767
+
768
+ a {
769
+ color: #fff;
770
+ display: inline-block;
771
+ background: #a4c518;
772
+ padding: 0 2px;
773
+ font-size: 15px;
774
+ text-decoration: none;
775
+ }
776
+ }
777
+ }
778
+ }
779
+ }
780
+ }
781
+
782
+ /**
783
+ * Setting Tab
784
+ * ----------------------------------------------------------------------------
785
+ */
786
+ table.cpac-form-table {
787
+ max-width: 1100px;
788
+ margin-top: 20px;
789
+
790
+ > tbody > tr > td,
791
+ > tbody > tr > th {
792
+ vertical-align: top;
793
+ }
794
+
795
+ td.padding-22 {
796
+ padding-top: 22px;
797
+ }
798
+
799
+ td {
800
+
801
+ .cpac_export {
802
+
803
+ .ms-container {
804
+ background: transparent url('../images/switch_bw.png') no-repeat 50% 50%;
805
+
806
+ .ms-selectable {
807
+ width: 48%;
808
+ margin-right: 0;
809
+ }
810
+ .ms-selection {
811
+ float: right;
812
+ width: 48%;
813
+ }
814
+
815
+ ul.ms-list {
816
+ width: 100%;
817
+
818
+ li {
819
+ margin: 0;
820
+ padding-top: 5px;
821
+ padding-bottom: 5px;
822
+ }
823
+ }
824
+ }
825
+ }
826
+ }
827
+ }
828
+
829
+ /**
830
+ * WP Pointer
831
+ * ----------------------------------------------------------------------------
832
+ */
833
+ .wp-pointer-content {
834
+ overflow: hidden;
835
+
836
+ ol {
837
+ margin-left: 1.5em;
838
+ padding: 0 15px;
839
+ }
840
+ }
841
+ .wp-pointer-right {
842
+ margin-right: 15px;
843
+ }
844
+
845
+ /* =RTL language
846
+ -------------------------------------------------------------- */
847
+ body.rtl {
848
+ .wp-pointer-right {
849
+ margin-left: 15px;
850
+ margin-right: 0;
851
+
852
+ ol {
853
+ margin-right: 1.5em;
854
+ margin-left: 0;
855
+ }
856
+ }
857
+
858
+ .cpac-menu .subsubsub {
859
+ margin-left: 14px;
860
+ margin-right: 0;
861
+ }
862
+
863
+ .columns-container {
864
+ margin-left: 300px;
865
+ margin-right: 0;
866
+ }
867
+
868
+ .columns-left {
869
+ float: right;
870
+
871
+ // Columns
872
+ .cpac-columns {
873
+ .cpac-column {
874
+
875
+ // Column Header
876
+ .column-meta {
877
+ img {
878
+ margin-left: 3px;
879
+ margin-right: 0;
880
+ }
881
+ .column_label {
882
+ .inner {
883
+ > a.remove-button {
884
+ margin-right: 12px;
885
+ margin-left: 0;
886
+ }
887
+
888
+ .meta {
889
+ float: left;
890
+ }
891
+ }
892
+
893
+ span.vers {
894
+ float: right;
895
+ }
896
+ }
897
+ .column_type {
898
+ text-align: left;
899
+ padding-left: 0;
900
+ padding-right: auto;
901
+ }
902
+
903
+ span.vers .comment-grey-bubble {
904
+ float: left;
905
+ }
906
+ }
907
+
908
+ .column-form {
909
+ table tr {
910
+ &.column_image_size td.input label input {
911
+ margin-left: 3px;
912
+ margin-right: 0;
913
+ }
914
+
915
+ td.label {
916
+ p.description {
917
+ right: 0;
918
+ left: auto;
919
+ }
920
+ a.more-info {
921
+ float: left;
922
+ }
923
+ }
924
+ }
925
+
926
+ div.description {
927
+ float: right;
928
+ }
929
+
930
+ div.input-width-range {
931
+ float: right;
932
+ }
933
+
934
+ tr td.input label {
935
+ padding-left: 10px;
936
+ padding-right: 0;
937
+ }
938
+
939
+ a.help {
940
+ float: left;
941
+ }
942
+ }
943
+ }
944
+ }
945
+
946
+ // Footer
947
+ .column-footer {
948
+ .order-message {
949
+ float: right;
950
+ padding-right: 22px;
951
+ padding-left: 0;
952
+ background: transparent url('../images/order_arrow-rtl.png') no-repeat right top;
953
+ }
954
+ .button-container {
955
+ float: left;
956
+ }
957
+ }
958
+ }
959
+
960
+ .columns-right {
961
+ float: left;
962
+ margin-left: -300px;
963
+ margin-right: 0;
964
+ }
965
+
966
+ .cpac-placeholder {
967
+ padding: 5px 0 7px 4px;
968
+ }
969
+
970
+ .cpac_export .ms-container .ms-selection {
971
+ float: left;
972
+ }
973
+ }
974
+
975
+ /* =Responsive
976
+ -------------------------------------------------------------- */
977
+ @media only screen and (max-width: 900px) {
978
+ .columns-container {
979
+ margin-right: 0;
980
+
981
+ .columns-left {
982
+ float: none;
983
+ }
984
+
985
+ .columns-right {
986
+ float: none;
987
+ margin-top: 0;
988
+ margin-right: 0;
989
+ width: 100%;
990
+
991
+ .columns-right-inside.fixed {
992
+ position: relative;
993
+ top: 0;
994
+ width: 100%;
995
+ }
996
+ }
997
+ }
998
+ }
assets/less/column.less ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* =General
2
+ -------------------------------------------------------------- */
3
+ .cpac-divider {
4
+ display: inline-block;
5
+ width: 14px;
6
+ height: 12px;
7
+ background: transparent url(../images/square.png) no-repeat 50% 7px;
8
+ }
9
+ span.status-open {}
10
+ span.status-closed {
11
+ color: red;
12
+ }
13
+ .tablenav.top .cpac-edit {
14
+ top: 0;
15
+ display: inline-block;
16
+ vertical-align: bottom;
17
+ }
18
+
19
+ /* =Images Column
20
+ -------------------------------------------------------------- */
21
+ .cpac-column-value-image {
22
+ display: inline-block;
23
+ background: transparent;
24
+ margin-right: 2px;
25
+ overflow: hidden;
26
+ }
27
+ .rtl .cpac-column-value-image {
28
+ margin-left: 2px;
29
+ margin-right: 0;
30
+ }
31
+ .cpac-column-value-image img {
32
+ display: block;
33
+ margin: 0 auto;
34
+ }
35
+ .column-column-attachment img {
36
+ padding-right: 5px;
37
+ padding-bottom: 4px;
38
+ }
39
+ .rtl .column-column-attachment img {
40
+ padding-left: 5px;
41
+ padding-right: 0;
42
+ }
43
+
44
+ /* =Color Column
45
+ -------------------------------------------------------------- */
46
+ div.cpac-color {
47
+ line-height: 26px;
48
+ }
49
+ div.cpac-color span {
50
+ display: block;
51
+ -webkit-border-radius: 3px;
52
+ border-radius: 3px;
53
+ color: #ffffff;
54
+ float: left;
55
+ height: 16px;
56
+ line-height: 16px;
57
+ margin-right: 12px;
58
+ min-width: 30px;
59
+ overflow: hidden;
60
+ padding: 4px 5px;
61
+ font-size: 10px;
62
+ font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
63
+ min-width: 47px;
64
+ text-align: center;
65
+ }
66
+ .rtl div.cpac-color span {
67
+ float: right;
68
+ margin-left: 12px;
69
+ margin-right: 0;
70
+ }
71
+
72
+ /* =Available Sizes column
73
+ -------------------------------------------------------------- */
74
+ div.sizes span.not-available {
75
+ color: #999;
76
+ }
classes/column.php CHANGED
@@ -334,6 +334,19 @@ class CPAC_Column {
334
  return $string;
335
  }
336
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  /**
338
  * Set cache objects
339
  *
@@ -347,14 +360,7 @@ class CPAC_Column {
347
  if ( empty( $cache_object ) )
348
  return false;
349
 
350
- $cache_name = $this->storage_model->key . $this->properties->name . $id;
351
-
352
- if ( strlen( $cache_name ) > 64 ) {
353
- trigger_error( 'Cache name too long.' );
354
- return false;
355
- }
356
-
357
- set_transient( $cache_name, $cache_object );
358
  }
359
 
360
  /**
@@ -366,8 +372,9 @@ class CPAC_Column {
366
  * @return false | mixed Returns either false or the cached objects
367
  */
368
  function get_cache( $id ) {
369
- $cache = get_transient( $this->storage_model->key . $this->properties->name . $id );
370
- if( empty( $cache ) )
 
371
  return false;
372
 
373
  return $cache;
@@ -382,7 +389,7 @@ class CPAC_Column {
382
  */
383
  function delete_cache( $id ) {
384
 
385
- delete_transient( $this->storage_model->key . $this->properties->name . $id );
386
  }
387
 
388
  /**
@@ -642,8 +649,8 @@ class CPAC_Column {
642
 
643
  // image size by name
644
  if ( $sizes = $this->get_image_size_by_name( $image_size ) ) {
645
- $width = $sizes['image_size_w'];
646
- $height = $sizes['image_size_h'];
647
  }
648
 
649
  // maximum dimensions
@@ -864,6 +871,28 @@ class CPAC_Column {
864
  <?php
865
  }
866
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
867
  /**
868
  * Get column list
869
  *
@@ -929,12 +958,9 @@ class CPAC_Column {
929
  <?php do_action( 'cac/column/label', $this ); ?>
930
 
931
  </div>
932
- <a class="toggle" href="javascript:;">
933
- <?php echo stripslashes( $this->get_label() ); ?>
934
- </a>
935
- <a class="remove-button" href="javacript:;">
936
- <?php _e( 'Remove', 'cpac' ); ?>
937
- </a>
938
  </div>
939
  </td>
940
  <td class="column_type">
@@ -996,7 +1022,6 @@ class CPAC_Column {
996
  <td colspan="2">
997
  <p>
998
  <a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a>
999
- <!--<span class="description alignright"><?php _e('type','cpac'); ?>: <em><?php echo $this->properties->type; ?></em></span>-->
1000
  </p>
1001
  </td>
1002
  </tr>
334
  return $string;
335
  }
336
 
337
+ /**
338
+ * Get cache ID
339
+ *
340
+ * @since 2.1.2
341
+ *
342
+ * @param $id Cache ID
343
+ * @return string MD5 Cache ID
344
+ */
345
+ function get_cache_id( $id ) {
346
+
347
+ return md5( $this->storage_model->key . $this->properties->name . $id );
348
+ }
349
+
350
  /**
351
  * Set cache objects
352
  *
360
  if ( empty( $cache_object ) )
361
  return false;
362
 
363
+ set_transient( $this->get_cache_id( $id ), $cache_object );
 
 
 
 
 
 
 
364
  }
365
 
366
  /**
372
  * @return false | mixed Returns either false or the cached objects
373
  */
374
  function get_cache( $id ) {
375
+ $cache = get_transient( $this->get_cache_id( $id ) );
376
+
377
+ if ( empty( $cache ) )
378
  return false;
379
 
380
  return $cache;
389
  */
390
  function delete_cache( $id ) {
391
 
392
+ delete_transient( $this->get_cache_id( $id ) );
393
  }
394
 
395
  /**
649
 
650
  // image size by name
651
  if ( $sizes = $this->get_image_size_by_name( $image_size ) ) {
652
+ $width = $sizes['width'];
653
+ $height = $sizes['height'];
654
  }
655
 
656
  // maximum dimensions
871
  <?php
872
  }
873
 
874
+ /**
875
+ * Display field Preview Size
876
+ *
877
+ * @since 2.1.1
878
+ */
879
+ function display_field_before_after() {
880
+ ?>
881
+ <tr class="column_before">
882
+ <?php $this->label_view( __( "Before", 'cpac' ), __( 'This text will appear before the custom field value.', 'cpac' ), 'before' ); ?>
883
+ <td class="input">
884
+ <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 ) ); ?>"/>
885
+ </td>
886
+ </tr>
887
+ <tr class="column_after">
888
+ <?php $this->label_view( __( "After", 'cpac' ), __( 'This text will appear after the custom field value.', 'cpac' ), 'after' ); ?>
889
+ <td class="input">
890
+ <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 ) ); ?>"/>
891
+ </td>
892
+ </tr>
893
+ <?php
894
+ }
895
+
896
  /**
897
  * Get column list
898
  *
958
  <?php do_action( 'cac/column/label', $this ); ?>
959
 
960
  </div>
961
+ <a class="toggle" href="javascript:;"><?php echo stripslashes( $this->get_label() ); ?></a>
962
+ <a class="edit-button" href="javascript:;"><?php _e( 'Edit', 'cpac' ); ?></a>
963
+ <a class="remove-button" href="javascript:;"><?php _e( 'Remove', 'cpac' ); ?></a>
 
 
 
964
  </div>
965
  </td>
966
  <td class="column_type">
1022
  <td colspan="2">
1023
  <p>
1024
  <a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a>
 
1025
  </p>
1026
  </td>
1027
  </tr>
classes/column/custom-field.php CHANGED
@@ -250,8 +250,8 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
250
  *
251
  * @since 1.0
252
  */
253
- function hex2rgb($hex) {
254
- $hex = str_replace("#", "", $hex);
255
 
256
  if(strlen($hex) == 3) {
257
  $r = hexdec(substr($hex,0,1).substr($hex,0,1));
@@ -329,7 +329,11 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
329
  */
330
  function get_raw_value( $id, $single = true ) {
331
 
332
- return get_metadata( $this->storage_model->type, $id, $this->get_field_key(), $single );
 
 
 
 
333
  }
334
 
335
  /**
@@ -391,7 +395,13 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
391
  <td class="input">
392
  <select name="<?php $this->attr_name( 'field_type' ); ?>" id="<?php $this->attr_id( 'field_type' ); ?>">
393
  <?php foreach ( $this->get_custom_field_types() as $fieldkey => $fieldtype ) : ?>
394
- <option value="<?php echo $fieldkey ?>"<?php selected( $fieldkey, $this->options->field_type ) ?>><?php echo $fieldtype; ?></option>
 
 
 
 
 
 
395
  <?php endforeach; ?>
396
  </select>
397
  </td>
@@ -404,7 +414,6 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
404
  *
405
  */
406
  $is_hidden = in_array( $this->options->field_type, array( 'date' ) ) ? false : true;
407
-
408
  $this->display_field_date_format( $is_hidden );
409
 
410
  /**
@@ -412,7 +421,6 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
412
  *
413
  */
414
  $is_hidden = in_array( $this->options->field_type, array( 'image', 'library_id' ) ) ? false : true;
415
-
416
  $this->display_field_preview_size( $is_hidden );
417
 
418
  /**
@@ -420,28 +428,12 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
420
  *
421
  */
422
  $is_hidden = in_array( $this->options->field_type, array( 'excerpt' ) ) ? false : true;
423
-
424
  $this->display_field_excerpt_length( $is_hidden );
425
 
426
  /**
427
  * Before / After
428
  *
429
  */
430
- ?>
431
-
432
- <tr class="column_before">
433
- <?php $this->label_view( __( "Before", 'cpac' ), __( 'This text will appear before the custom field value.', 'cpac' ), 'before' ); ?>
434
- <td class="input">
435
- <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 ) ); ?>"/>
436
- </td>
437
- </tr>
438
- <tr class="column_after">
439
- <?php $this->label_view( __( "After", 'cpac' ), __( 'This text will appear after the custom field value.', 'cpac' ), 'after' ); ?>
440
- <td class="input">
441
- <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 ) ); ?>"/>
442
- </td>
443
- </tr>
444
- <?php
445
-
446
  }
447
  }
250
  *
251
  * @since 1.0
252
  */
253
+ function hex2rgb( $hex ) {
254
+ $hex = str_replace( "#", "", $hex );
255
 
256
  if(strlen($hex) == 3) {
257
  $r = hexdec(substr($hex,0,1).substr($hex,0,1));
329
  */
330
  function get_raw_value( $id, $single = true ) {
331
 
332
+ $field_key = $this->get_field_key();
333
+
334
+ $raw_value = get_metadata( $this->storage_model->type, $id, $field_key, $single );
335
+
336
+ return apply_filters( 'cac/column/meta/raw_value', $raw_value, $id, $field_key, $this );
337
  }
338
 
339
  /**
395
  <td class="input">
396
  <select name="<?php $this->attr_name( 'field_type' ); ?>" id="<?php $this->attr_id( 'field_type' ); ?>">
397
  <?php foreach ( $this->get_custom_field_types() as $fieldkey => $fieldtype ) : ?>
398
+ <?php
399
+ $display_option = '';
400
+ if ( in_array( $fieldkey, array( 'date' ) ) ) $display_option = 'date';
401
+ if ( in_array( $fieldkey, array( 'image', 'library_id' ) ) ) $display_option = 'image_size';
402
+ if ( in_array( $fieldkey, array( 'excerpt' ) ) ) $display_option = 'excerpt';
403
+ ?>
404
+ <option data-display-option="<?php echo $display_option; ?>" value="<?php echo $fieldkey ?>"<?php selected( $fieldkey, $this->options->field_type ) ?>><?php echo $fieldtype; ?></option>
405
  <?php endforeach; ?>
406
  </select>
407
  </td>
414
  *
415
  */
416
  $is_hidden = in_array( $this->options->field_type, array( 'date' ) ) ? false : true;
 
417
  $this->display_field_date_format( $is_hidden );
418
 
419
  /**
421
  *
422
  */
423
  $is_hidden = in_array( $this->options->field_type, array( 'image', 'library_id' ) ) ? false : true;
 
424
  $this->display_field_preview_size( $is_hidden );
425
 
426
  /**
428
  *
429
  */
430
  $is_hidden = in_array( $this->options->field_type, array( 'excerpt' ) ) ? false : true;
 
431
  $this->display_field_excerpt_length( $is_hidden );
432
 
433
  /**
434
  * Before / After
435
  *
436
  */
437
+ $this->display_field_before_after();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
438
  }
439
  }
classes/column/media/available-sizes.php CHANGED
@@ -47,12 +47,17 @@ class CPAC_Column_Media_Available_Sizes extends CPAC_Column {
47
  }
48
 
49
  global $_wp_additional_image_sizes;
50
- unset( $_wp_additional_image_sizes['post-thumbnail'] );
51
 
52
- // image does not have these additional sizes rendered yet
53
- if ( $missing = array_diff( array_keys( $_wp_additional_image_sizes), array_keys( $meta['sizes'] ) ) ) {
54
- foreach ( $missing as $size ) {
55
- $paths[] = "<span title='Missing size: Try regenerate thumbnails with the plugin: Force Regenerate Thumbnails' href='javascript:;' class='not-available'>{$size}</span>";
 
 
 
 
 
 
56
  }
57
  }
58
 
47
  }
48
 
49
  global $_wp_additional_image_sizes;
 
50
 
51
+ if ( ! empty( $_wp_additional_image_sizes ) ) {
52
+ if ( isset( $_wp_additional_image_sizes['post-thumbnail'] ) ) {
53
+ unset( $_wp_additional_image_sizes['post-thumbnail'] );
54
+ }
55
+
56
+ // image does not have these additional sizes rendered yet
57
+ if ( $missing = array_diff( array_keys( $_wp_additional_image_sizes), array_keys( $meta['sizes'] ) ) ) {
58
+ foreach ( $missing as $size ) {
59
+ $paths[] = "<span title='Missing size: Try regenerate thumbnails with the plugin: Force Regenerate Thumbnails' href='javascript:;' class='not-available'>{$size}</span>";
60
+ }
61
  }
62
  }
63
 
classes/column/post/author-name.php CHANGED
@@ -53,28 +53,31 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
53
  */
54
  public function get_display_name( $user_id ) {
55
 
56
- $name = '';
57
-
58
  if ( ! $userdata = get_userdata( $user_id ) )
59
  return false;
60
 
 
 
61
  $display_as = $this->options->display_author_as;
62
 
63
- // first check variables in userdata
64
- if ( ! empty( $userdata->{$display_as} ) ) {
 
 
 
 
 
65
  $name = $userdata->{$display_as};
66
  }
67
 
68
- elseif ( 'first_last_name' == $display_as ) {
69
- $first = !empty($userdata->first_name) ? $userdata->first_name : '';
70
- $last = !empty($userdata->last_name) ? " {$userdata->last_name}" : '';
71
- $name = $first.$last;
72
  }
73
 
74
  return $name;
75
  }
76
 
77
-
78
  /**
79
  * @see CPAC_Column::get_value()
80
  * @since 2.0.0
@@ -109,7 +112,6 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
109
  * @since 2.0.0
110
  */
111
  function display_settings() {
112
-
113
  ?>
114
 
115
  <tr class="column-author-name">
53
  */
54
  public function get_display_name( $user_id ) {
55
 
 
 
56
  if ( ! $userdata = get_userdata( $user_id ) )
57
  return false;
58
 
59
+ $name = '';
60
+
61
  $display_as = $this->options->display_author_as;
62
 
63
+ if ( 'first_last_name' == $display_as ) {
64
+ $first = ! empty( $userdata->first_name ) ? $userdata->first_name : '';
65
+ $last = ! empty( $userdata->last_name ) ? " {$userdata->last_name}" : '';
66
+ $name = $first.$last;
67
+ }
68
+
69
+ elseif ( ! empty( $userdata->{$display_as} ) ) {
70
  $name = $userdata->{$display_as};
71
  }
72
 
73
+ // default to display_name
74
+ if ( ! $name ) {
75
+ $name = $userdata->display_name;
 
76
  }
77
 
78
  return $name;
79
  }
80
 
 
81
  /**
82
  * @see CPAC_Column::get_value()
83
  * @since 2.0.0
112
  * @since 2.0.0
113
  */
114
  function display_settings() {
 
115
  ?>
116
 
117
  <tr class="column-author-name">
classes/column/post/comment-status.php CHANGED
@@ -17,6 +17,15 @@ class CPAC_Column_Post_Comment_Status extends CPAC_Column {
17
  parent::__construct( $storage_model );
18
  }
19
 
 
 
 
 
 
 
 
 
 
20
  /**
21
  * @see CPAC_Column::get_value()
22
  * @since 2.0.0
17
  parent::__construct( $storage_model );
18
  }
19
 
20
+ /**
21
+ * @see CPAC_Column::apply_conditional()
22
+ * @since 2.1.2
23
+ */
24
+ function apply_conditional() {
25
+
26
+ return post_type_supports( $this->storage_model->key, 'comments' );
27
+ }
28
+
29
  /**
30
  * @see CPAC_Column::get_value()
31
  * @since 2.0.0
classes/column/post/featured-image.php CHANGED
@@ -21,6 +21,15 @@ class CPAC_Column_Post_Featured_Image extends CPAC_Column {
21
  parent::__construct( $storage_model );
22
  }
23
 
 
 
 
 
 
 
 
 
 
24
  /**
25
  * @see CPAC_Column::get_value()
26
  * @since 2.0.0
21
  parent::__construct( $storage_model );
22
  }
23
 
24
+ /**
25
+ * @see CPAC_Column::apply_conditional()
26
+ * @since 2.1.2
27
+ */
28
+ function apply_conditional() {
29
+
30
+ return post_type_supports( $this->storage_model->key, 'thumbnail' );
31
+ }
32
+
33
  /**
34
  * @see CPAC_Column::get_value()
35
  * @since 2.0.0
classes/column/post/ping-status.php CHANGED
@@ -17,6 +17,15 @@ class CPAC_Column_Post_Ping_Status extends CPAC_Column {
17
  parent::__construct( $storage_model );
18
  }
19
 
 
 
 
 
 
 
 
 
 
20
  /**
21
  * @see CPAC_Column::get_value()
22
  * @since 2.0.0
17
  parent::__construct( $storage_model );
18
  }
19
 
20
+ /**
21
+ * @see CPAC_Column::apply_conditional()
22
+ * @since 2.1.2
23
+ */
24
+ function apply_conditional() {
25
+
26
+ return post_type_supports( $this->storage_model->key, 'comments' );
27
+ }
28
+
29
  /**
30
  * @see CPAC_Column::get_value()
31
  * @since 2.0.0
classes/column/user/registered.php CHANGED
@@ -26,7 +26,8 @@ class CPAC_Column_User_Registered extends CPAC_Column {
26
 
27
  $user_registered = $this->get_raw_value( $user_id );
28
 
29
- return $this->get_date( $user_registered, $this->options->date_format );
 
30
  }
31
 
32
  /**
26
 
27
  $user_registered = $this->get_raw_value( $user_id );
28
 
29
+ // GMT offset is used
30
+ return $this->get_date( get_date_from_gmt( $user_registered ), $this->options->date_format );
31
  }
32
 
33
  /**
classes/deprecated.php DELETED
@@ -1,62 +0,0 @@
1
- <?php
2
- /**
3
- * Deprecated Function, Hooks & Filters
4
- *
5
- */
6
-
7
- /**
8
- * Deprecated Hooks
9
- *
10
- * @since 2.0
11
- */
12
- // cpac-get-default-columns-comments "cpac_before_default_columns_{$this->key}"
13
- // cpac-get-default-columns-links "cpac_before_default_columns_{$this->key}"
14
- // cpac-get-default-columns-media "cpac_before_default_columns_{$this->key}"
15
- // cpac-get-default-columns-media "cpac_before_default_columns_{$this->key}"
16
- // cpac-get-default-columns-posts "cpac_before_default_columns_posts"
17
- // cpac-get-default-columns-posts "cpac_before_default_columns_{$this->key}"
18
- // cpac-get-default-columns-users "cpac_before_default_columns_{$this->key}"
19
- //
20
- // cpac-manage-comments-column WPcore: manage_comments_custom_column
21
- // cpac-manage-link-column WPcore: manage_link_custom_column
22
- // cpac-manage-media-column WPcore: manage_media_custom_column
23
- // cpac-manage-posts-column WPcore: manage_posts_custom_column, manage_pages_custom_column
24
-
25
- /**
26
- * Deprecated Filters
27
- *
28
- * @since 2.0
29
- */
30
- // cpac-default-comments-columns cpac_default_{$this->key}_columns
31
- // cpac-custom-comments-columns cpac_custom_{$this->key}_columns
32
- // cpac-get-meta-keys-comments cpac_get_meta_keys_{$this->key}
33
- //
34
- // cpac-default-links-columns cpac_default_{$this->key}_columns
35
- // cpac-custom-links-columns cpac_custom_{$this->key}_columns
36
- //
37
- // cpac-default-media-columns cpac_default_{$this->key}_columns
38
- // cpac-custom-media-columns cpac_custom_{$this->key}_columns
39
- // cpac-get-meta-keys-media cpac_get_meta_keys_{$this->key}
40
- //
41
- // cpac-custom-posts-columns cpac_custom_posts_columns
42
- // cpac-custom-posts-columns cpac_custom_{$this->key}_columns
43
- // cpac-get-meta-keys-posts cpac_get_meta_keys_{$this->key}
44
-
45
- // cpac-default-users-columns cpac_default_{$this->key}_columns
46
- // cpac-custom-users-columns cpac_custom_{$this->key}_columns
47
- // cpac-get-meta-keys-users cpac_get_meta_keys_{$this->key}
48
- //
49
- // cpac-field-types cpac_field_types
50
- // cpac-authorname-types cpac_authorname_types
51
- //
52
- // cpac-get-orderby-type cpac_get_orderby_type
53
- // cpac-remove-filtering-columns cpac_remove_filtering_columns
54
- //
55
- // cpac-get-post-types cpac_get_post_types
56
- //
57
- // cpac-comments-column-result cpac_{$this->key}_column_value
58
- // cpac-link-column-result cpac_{$this->key}_column_value
59
- // cpac-media-column-result cpac_{$this->key}_column_value
60
- // cpac-posts-column-result cpac_{$this->key}_column_value
61
- // cpac-users-column-result cpac_{$this->key}_column_value
62
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/settings.php CHANGED
@@ -73,12 +73,6 @@ class CPAC_Settings {
73
  // register setting
74
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
75
 
76
- // @ todo_minor REMOVE
77
- // add capabilty to administrator to manage admin columns
78
- // note to devs: you can use this to grant other roles this privilidge as well.
79
- //if ( $role = get_role( 'administrator' ) )
80
- //$role->add_cap( 'manage_admin_columns' );
81
-
82
  // add cap to options.php
83
  add_filter( 'option_page_capability_cpac-general-settings', array( $this, 'add_capability' ) );
84
  }
@@ -104,7 +98,6 @@ class CPAC_Settings {
104
  wp_enqueue_style( 'wp-pointer' );
105
  wp_enqueue_style( 'jquery-ui-lightness', CPAC_URL . 'assets/ui-theme/jquery-ui-1.8.18.custom.css', array(), CPAC_VERSION, 'all' );
106
  wp_enqueue_style( 'cpac-admin', CPAC_URL . 'assets/css/admin-column.css', array(), CPAC_VERSION, 'all' );
107
- wp_enqueue_style( 'cpac-custom-fields-css', CPAC_URL . 'assets/css/custom-fields.css', array(), CPAC_VERSION, 'all' );
108
  }
109
 
110
  /**
@@ -116,10 +109,7 @@ class CPAC_Settings {
116
 
117
  wp_enqueue_script( 'wp-pointer' );
118
  wp_enqueue_script( 'jquery-ui-slider' );
119
-
120
- // columns
121
  wp_enqueue_script( 'cpac-admin-columns', CPAC_URL . 'assets/js/admin-columns.js', array( 'jquery', 'dashboard', 'jquery-ui-slider', 'jquery-ui-sortable' ), CPAC_VERSION );
122
- wp_enqueue_script( 'cpac-custom-fields-js', CPAC_URL . 'assets/js/custom-fields.js', array( 'jquery' ), CPAC_VERSION );
123
 
124
  // javascript translations
125
  wp_localize_script( 'cpac-admin-columns', 'cpac_i18n', array(
@@ -135,7 +125,7 @@ class CPAC_Settings {
135
  public function handle_column_request() {
136
 
137
  // only handle updates from the admin columns page
138
- if ( ! ( isset($_GET['page'] ) && in_array( $_GET['page'], array( 'codepress-admin-columns', 'cpac-settings' ) ) && isset( $_REQUEST['cpac_action'] ) ) )
139
  return false;
140
 
141
  // use $_REQUEST because the values are send both over $_GET and $_POST
@@ -508,6 +498,129 @@ class CPAC_Settings {
508
  return true;
509
  }
510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  /**
512
  * Column Settings.
513
  *
@@ -518,6 +631,11 @@ class CPAC_Settings {
518
  // Load Welcome screen
519
  if ( $this->welcome_screen() ) return;
520
 
 
 
 
 
 
521
  $current_tab = ( empty( $_GET['tab'] ) ) ? 'general' : sanitize_text_field( urldecode( $_GET['tab'] ) );
522
 
523
  // get first element from post-types
@@ -530,12 +648,7 @@ class CPAC_Settings {
530
  <?php screen_icon( 'codepress-admin-columns' ); ?>
531
 
532
  <h2 class="nav-tab-wrapper cpac-nav-tab-wrapper">
533
- <?php
534
- $tabs = array(
535
- 'general' => __( 'Admin Columns', 'cpac' ),
536
- 'settings' => __( 'Settings', 'cpac' )
537
- );
538
- foreach( $tabs as $name => $label ) : ?>
539
  <a href="<?php echo $this->settings_urls->admin . "&amp;tab={$name}"; ?>" class="nav-tab<?php if( $current_tab == $name ) echo ' nav-tab-active'; ?>"><?php echo $label; ?></a>
540
  <?php endforeach; ?>
541
  </h2>
@@ -543,20 +656,18 @@ class CPAC_Settings {
543
  <?php do_action( 'cpac_messages' ); ?>
544
 
545
  <?php
546
- switch ($current_tab) :
547
 
548
  case "general" :
549
  ?>
550
 
551
  <div class="cpac-menu">
552
- <ul class="subsubsub">
553
- <?php $count = 0; ?>
554
- <?php foreach ( $this->cpac->storage_models as $storage_model ) : ?>
555
- <li><?php echo $count++ != 0 ? ' | ' : ''; ?><a href="#cpac-box-<?php echo $storage_model->key; ?>" <?php echo $storage_model->is_menu_type_current( $first ) ? ' class="current"' : '';?> ><?php echo $storage_model->label; ?></a></li>
556
- <?php endforeach; ?>
557
- </ul>
558
  </div>
559
 
 
560
  <?php foreach ( $this->cpac->storage_models as $storage_model ) : ?>
561
 
562
  <div class="columns-container" data-type="<?php echo $storage_model->key ?>"<?php echo $storage_model->is_menu_type_current( $first ) ? '' : ' style="display:none"'; ?>>
@@ -578,7 +689,7 @@ class CPAC_Settings {
578
  </h3>
579
  <?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
580
  <div class="form-update">
581
- <a href="javascript:;" class="button-primary submit-update"><?php echo $has_been_stored ? __( 'Update' ) : __('Publish'); ?> <?php echo $storage_model->label; ?></a>
582
  </div>
583
  <?php if ( $has_been_stored ) : ?>
584
  <div class="form-reset">
@@ -610,9 +721,10 @@ class CPAC_Settings {
610
  </div>
611
  </div>
612
 
 
613
  <?php
614
  // @todo: add newsletter
615
- if ( false ) : ?>
616
  <div class="padding-box newsletter">
617
  <form action="http://codepress.us4.list-manage.com/subscribe/post?u=902ae7f162ce5bc38a0bc8a4f&amp;id=183e843a76" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank">
618
  <?php $user = wp_get_current_user(); ?>
@@ -630,9 +742,9 @@ class CPAC_Settings {
630
  <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
631
  </form>
632
  </div>
633
- <?php endif; ?>
634
- </div>
635
- <?php endif; ?>
636
 
637
  <div class="sidebox" id="plugin-support">
638
  <h3><?php _e( 'Support', 'cpac' ); ?></h3>
@@ -644,7 +756,7 @@ class CPAC_Settings {
644
  <?php printf( __("For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>", 'cpac' ), $this->get_url('documentation') ); ?>
645
  </p>
646
  </div>
647
- </div><!--.form-actions-->
648
 
649
  </div><!--.columns-right-inside-->
650
  </div><!--.columns-right-->
@@ -707,101 +819,4 @@ class CPAC_Settings {
707
  </div><!--.wrap-->
708
  <?php
709
  }
710
-
711
- /**
712
- * General Settings.
713
- *
714
- * @since 1.0.0
715
- */
716
- public function display_settings() {
717
- ?>
718
- <table class="form-table cpac-form-table">
719
- <tbody>
720
-
721
- <tr class="general">
722
- <th scope="row">
723
- <h3><?php _e( 'General Settings', 'cpac' ); ?></h3>
724
- <p><?php _e( 'Customize your Admin Columns settings.', 'cpac' ); ?></p>
725
- </th>
726
- <td class="padding-22">
727
- <div class="cpac_general">
728
- <form method="post" action="options.php">
729
- <?php settings_fields( 'cpac-general-settings' ); ?>
730
- <?php $options = get_option( 'cpac_general_options' ); ?>
731
- <p>
732
- <br/>
733
- </p>
734
- <p>
735
- <label for="show_hidden">
736
- <input name="cpac_general_options[show_hidden]" id="show_hidden" type="checkbox" value="1" <?php checked( isset( $options['show_hidden'] ) ? $options['show_hidden'] : '', '1' ); ?>>
737
- <?php _e( 'Show hidden custom fields. Default is <code>off</code>.', 'cpac' ); ?>
738
- </label>
739
- </p>
740
- <p>
741
- <label for="show_edit_button">
742
- <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' ); ?>>
743
- <?php _e( 'Show "Edit Columns" button on admin screens. Default is <code>off</code>.', 'cpac' ); ?>
744
- </label>
745
- </p>
746
-
747
- <?php do_action( 'cac/settings/general', $options ); ?>
748
-
749
- <p>
750
- <input type="submit" class="button" value="<?php _e( 'Save' ); ?>" />
751
- </p>
752
- </form>
753
- </div>
754
- </td>
755
- </tr><!--.general-->
756
-
757
- <?php
758
-
759
- /** Allow plugins to add their own custom settings to the settings page. */
760
- if ( $groups = apply_filters( 'cac/settings/groups', array() ) ) {
761
-
762
- foreach ( $groups as $id => $group ) {
763
-
764
- $title = isset( $group['title'] ) ? $group['title'] : '';
765
- $description = isset( $group['description'] ) ? $group['description'] : '';
766
-
767
- ?>
768
- <tr>
769
- <th scope="row">
770
- <h3><?php echo $title; ?></h3>
771
- <p><?php echo $description; ?></p>
772
- </th>
773
- <td class="padding-22">
774
- <?php
775
-
776
- /** Use this Hook to add additonal fields to the group */
777
- do_action( "cac/settings/groups/row={$id}" );
778
-
779
- ?>
780
- </td>
781
- </tr>
782
- <?php
783
- }
784
- }
785
-
786
- ?>
787
-
788
- <tr class="restore">
789
- <th scope="row">
790
- <h3><?php _e( 'Restore Settings', 'cpac' ); ?></h3>
791
- <p><?php _e( 'This will delete all column settings and restore the default settings.', 'cpac' ); ?></p>
792
- </th>
793
- <td class="padding-22">
794
- <form method="post" action="">
795
- <?php wp_nonce_field( 'restore-all','_cpac_nonce'); ?>
796
- <input type="hidden" name="cpac_action" value="restore_all" />
797
- <input type="submit" class="button" name="cpac-restore-defaults" value="<?php _e( 'Restore default settings', 'cpac' ) ?>" onclick="return confirm('<?php _e("Warning! ALL saved admin columns data will be deleted. This cannot be undone. \'OK\' to delete, \'Cancel\' to stop", 'cpac' ); ?>');" />
798
- </form>
799
- </td>
800
- </tr><!--.restore-->
801
-
802
- </tbody>
803
- </table>
804
-
805
- <?php
806
- }
807
  }
73
  // register setting
74
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
75
 
 
 
 
 
 
 
76
  // add cap to options.php
77
  add_filter( 'option_page_capability_cpac-general-settings', array( $this, 'add_capability' ) );
78
  }
98
  wp_enqueue_style( 'wp-pointer' );
99
  wp_enqueue_style( 'jquery-ui-lightness', CPAC_URL . 'assets/ui-theme/jquery-ui-1.8.18.custom.css', array(), CPAC_VERSION, 'all' );
100
  wp_enqueue_style( 'cpac-admin', CPAC_URL . 'assets/css/admin-column.css', array(), CPAC_VERSION, 'all' );
 
101
  }
102
 
103
  /**
109
 
110
  wp_enqueue_script( 'wp-pointer' );
111
  wp_enqueue_script( 'jquery-ui-slider' );
 
 
112
  wp_enqueue_script( 'cpac-admin-columns', CPAC_URL . 'assets/js/admin-columns.js', array( 'jquery', 'dashboard', 'jquery-ui-slider', 'jquery-ui-sortable' ), CPAC_VERSION );
 
113
 
114
  // javascript translations
115
  wp_localize_script( 'cpac-admin-columns', 'cpac_i18n', array(
125
  public function handle_column_request() {
126
 
127
  // only handle updates from the admin columns page
128
+ if ( ! ( isset($_GET['page'] ) && in_array( $_GET['page'], array( 'codepress-admin-columns' ) ) && isset( $_REQUEST['cpac_action'] ) ) )
129
  return false;
130
 
131
  // use $_REQUEST because the values are send both over $_GET and $_POST
498
  return true;
499
  }
500
 
501
+ /**
502
+ * Menu
503
+ *
504
+ * @since 2.1.2
505
+ */
506
+ function display_menu_by_type( $menu_type = '', $label = '', $active_item = '' ) {
507
+
508
+ $storage_models_by_type = array();
509
+
510
+ foreach( $this->cpac->storage_models as $k => $storage_model ) {
511
+ if ( $menu_type == $storage_model->menu_type ) {
512
+ $storage_models_by_type[ $menu_type ][ $k ] = $storage_model;
513
+ }
514
+ }
515
+
516
+ if ( ! empty( $storage_models_by_type[ $menu_type ] ) ) { $count = 0; ?>
517
+ <ul class="subsubsub">
518
+ <li class="first"><?php echo $label; ?>: </li>
519
+ <?php foreach ( $storage_models_by_type[ $menu_type ] as $storage_model ) : ?>
520
+ <li><?php echo $count++ != 0 ? ' | ' : ''; ?><a href="#cpac-box-<?php echo $storage_model->key; ?>" <?php echo $storage_model->is_menu_type_current( $active_item ) ? ' class="current"' : '';?> ><?php echo $storage_model->label; ?></a></li>
521
+ <?php endforeach; ?>
522
+ </ul>
523
+ <?php
524
+ }
525
+ }
526
+
527
+ /**
528
+ * General Settings.
529
+ *
530
+ * @since 1.0.0
531
+ */
532
+ public function display_settings() {
533
+ ?>
534
+ <table class="form-table cpac-form-table">
535
+ <tbody>
536
+
537
+ <tr class="general">
538
+ <th scope="row">
539
+ <h3><?php _e( 'General Settings', 'cpac' ); ?></h3>
540
+ <p><?php _e( 'Customize your Admin Columns settings.', 'cpac' ); ?></p>
541
+ </th>
542
+ <td class="padding-22">
543
+ <div class="cpac_general">
544
+ <form method="post" action="options.php">
545
+ <?php settings_fields( 'cpac-general-settings' ); ?>
546
+ <?php $options = get_option( 'cpac_general_options' ); ?>
547
+ <p>
548
+ <br/>
549
+ </p>
550
+ <p>
551
+ <label for="show_hidden">
552
+ <input name="cpac_general_options[show_hidden]" id="show_hidden" type="checkbox" value="1" <?php checked( isset( $options['show_hidden'] ) ? $options['show_hidden'] : '', '1' ); ?>>
553
+ <?php _e( 'Show hidden custom fields. Default is <code>off</code>.', 'cpac' ); ?>
554
+ </label>
555
+ </p>
556
+ <p>
557
+ <label for="show_edit_button">
558
+ <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' ); ?>>
559
+ <?php _e( 'Show "Edit Columns" button on admin screens. Default is <code>off</code>.', 'cpac' ); ?>
560
+ </label>
561
+ </p>
562
+
563
+ <?php do_action( 'cac/settings/general', $options ); ?>
564
+
565
+ <p>
566
+ <input type="submit" class="button" value="<?php _e( 'Save' ); ?>" />
567
+ </p>
568
+ </form>
569
+ </div>
570
+ </td>
571
+ </tr><!--.general-->
572
+
573
+ <?php
574
+
575
+ /** Allow plugins to add their own custom settings to the settings page. */
576
+ if ( $groups = apply_filters( 'cac/settings/groups', array() ) ) {
577
+
578
+ foreach ( $groups as $id => $group ) {
579
+
580
+ $title = isset( $group['title'] ) ? $group['title'] : '';
581
+ $description = isset( $group['description'] ) ? $group['description'] : '';
582
+
583
+ ?>
584
+ <tr>
585
+ <th scope="row">
586
+ <h3><?php echo $title; ?></h3>
587
+ <p><?php echo $description; ?></p>
588
+ </th>
589
+ <td class="padding-22">
590
+ <?php
591
+
592
+ /** Use this Hook to add additonal fields to the group */
593
+ do_action( "cac/settings/groups/row={$id}" );
594
+
595
+ ?>
596
+ </td>
597
+ </tr>
598
+ <?php
599
+ }
600
+ }
601
+
602
+ ?>
603
+
604
+ <tr class="restore">
605
+ <th scope="row">
606
+ <h3><?php _e( 'Restore Settings', 'cpac' ); ?></h3>
607
+ <p><?php _e( 'This will delete all column settings and restore the default settings.', 'cpac' ); ?></p>
608
+ </th>
609
+ <td class="padding-22">
610
+ <form method="post" action="">
611
+ <?php wp_nonce_field( 'restore-all','_cpac_nonce'); ?>
612
+ <input type="hidden" name="cpac_action" value="restore_all" />
613
+ <input type="submit" class="button" name="cpac-restore-defaults" value="<?php _e( 'Restore default settings', 'cpac' ) ?>" onclick="return confirm('<?php _e("Warning! ALL saved admin columns data will be deleted. This cannot be undone. \'OK\' to delete, \'Cancel\' to stop", 'cpac' ); ?>');" />
614
+ </form>
615
+ </td>
616
+ </tr><!--.restore-->
617
+
618
+ </tbody>
619
+ </table>
620
+
621
+ <?php
622
+ }
623
+
624
  /**
625
  * Column Settings.
626
  *
631
  // Load Welcome screen
632
  if ( $this->welcome_screen() ) return;
633
 
634
+ $tabs = array(
635
+ 'general' => __( 'Admin Columns', 'cpac' ),
636
+ 'settings' => __( 'Settings', 'cpac' )
637
+ );
638
+
639
  $current_tab = ( empty( $_GET['tab'] ) ) ? 'general' : sanitize_text_field( urldecode( $_GET['tab'] ) );
640
 
641
  // get first element from post-types
648
  <?php screen_icon( 'codepress-admin-columns' ); ?>
649
 
650
  <h2 class="nav-tab-wrapper cpac-nav-tab-wrapper">
651
+ <?php foreach( $tabs as $name => $label ) : ?>
 
 
 
 
 
652
  <a href="<?php echo $this->settings_urls->admin . "&amp;tab={$name}"; ?>" class="nav-tab<?php if( $current_tab == $name ) echo ' nav-tab-active'; ?>"><?php echo $label; ?></a>
653
  <?php endforeach; ?>
654
  </h2>
656
  <?php do_action( 'cpac_messages' ); ?>
657
 
658
  <?php
659
+ switch ( $current_tab ) :
660
 
661
  case "general" :
662
  ?>
663
 
664
  <div class="cpac-menu">
665
+ <?php $this->display_menu_by_type( 'post', __( 'Posttypes', 'cpac' ), $first ); ?>
666
+ <?php $this->display_menu_by_type( 'other', __( 'Others', 'cpac' ) ); ?>
667
+ <?php $this->display_menu_by_type( 'taxonomy', __( 'Taxonomies', 'cpac' ) ); ?>
 
 
 
668
  </div>
669
 
670
+ <?php $count = 0; ?>
671
  <?php foreach ( $this->cpac->storage_models as $storage_model ) : ?>
672
 
673
  <div class="columns-container" data-type="<?php echo $storage_model->key ?>"<?php echo $storage_model->is_menu_type_current( $first ) ? '' : ' style="display:none"'; ?>>
689
  </h3>
690
  <?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
691
  <div class="form-update">
692
+ <a href="javascript:;" class="button-primary submit-update"><?php echo $has_been_stored ? __( 'Update' ) : __('Save'); ?> <?php echo $storage_model->label; ?></a>
693
  </div>
694
  <?php if ( $has_been_stored ) : ?>
695
  <div class="form-reset">
721
  </div>
722
  </div>
723
 
724
+
725
  <?php
726
  // @todo: add newsletter
727
+ /* ?>
728
  <div class="padding-box newsletter">
729
  <form action="http://codepress.us4.list-manage.com/subscribe/post?u=902ae7f162ce5bc38a0bc8a4f&amp;id=183e843a76" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank">
730
  <?php $user = wp_get_current_user(); ?>
742
  <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
743
  </form>
744
  </div>
745
+ <?php */ ?>
746
+ </div><!--pro-version-->
747
+ <?php endif; ?>
748
 
749
  <div class="sidebox" id="plugin-support">
750
  <h3><?php _e( 'Support', 'cpac' ); ?></h3>
756
  <?php printf( __("For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>", 'cpac' ), $this->get_url('documentation') ); ?>
757
  </p>
758
  </div>
759
+ </div><!--plugin-support-->
760
 
761
  </div><!--.columns-right-inside-->
762
  </div><!--.columns-right-->
819
  </div><!--.wrap-->
820
  <?php
821
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
  }
classes/storage_model.php CHANGED
@@ -32,6 +32,15 @@ abstract class CPAC_Storage_Model {
32
  */
33
  public $type;
34
 
 
 
 
 
 
 
 
 
 
35
  /**
36
  * Page
37
  *
@@ -76,6 +85,21 @@ abstract class CPAC_Storage_Model {
76
  */
77
  abstract function get_default_columns();
78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  /**
80
  * Checks if menu type is currently viewed
81
  *
@@ -132,7 +156,24 @@ abstract class CPAC_Storage_Model {
132
  }
133
  }
134
 
135
- return apply_filters( "cac/meta_keys/storage_key={$this->key}", $keys, $this );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  }
137
 
138
  /**
@@ -207,7 +248,7 @@ abstract class CPAC_Storage_Model {
207
 
208
  // Santize Label: Need to replace the url for images etc, so we do not have url problem on exports
209
  // this can not be done by CPAC_Column::sanitize_storage() because 3rd party plugins are not available there
210
- $columns[ $name ]['label'] = stripslashes( str_replace( site_url(), '[cpac_site_url]', trim( $options['label'] ) ) );
211
  }
212
 
213
  // store columns
@@ -243,25 +284,32 @@ abstract class CPAC_Storage_Model {
243
 
244
  $columns = array(
245
  'CPAC_Column_Custom_Field' => CPAC_DIR . 'classes/column/custom-field.php',
246
- 'CPAC_Column_Taxonomy' => CPAC_DIR . 'classes/column/taxonomy.php'
247
  );
248
 
249
- $iterator = new DirectoryIterator( CPAC_DIR . 'classes/column/' . $this->type );
 
250
 
251
- foreach( $iterator as $leaf ) {
 
252
 
253
- if ( $leaf->isDot() || $leaf->isDir() )
254
- continue;
255
 
256
- // only allow php files, exclude .SVN .DS_STORE and such
257
- if ( substr( $leaf->getFilename(), -4 ) !== '.php' )
258
- continue;
 
259
 
260
- // build classname from filename
261
- $class_name = 'CPAC_Column_' . ucfirst( $this->type ) . '_' . implode( '_', array_map( 'ucfirst', explode( '-', basename( $leaf->getFilename(), '.php' ) ) ) );
 
262
 
263
- // classname | filepath
264
- $columns[ $class_name ] = $leaf->getPathname();
 
 
 
 
265
  }
266
 
267
  /**
@@ -428,12 +476,14 @@ abstract class CPAC_Storage_Model {
428
  * Set Columns
429
  *
430
  * @since 2.0.2
 
 
431
  */
432
- function set_columns() {
433
 
434
  // only set columns on allowed screens
435
  // @todo_minor: maybe add exception for AJAX calls
436
- if ( ! $this->is_doing_ajax() && ! $this->is_columns_screen() && ! $this->is_settings_page() )
437
  return;
438
 
439
  $this->custom_columns = $this->get_custom_registered_columns();
@@ -464,10 +514,6 @@ abstract class CPAC_Storage_Model {
464
 
465
  $columns = array();
466
 
467
- // get columns
468
- //$default_columns = $this->get_default_registered_columns();
469
- //$custom_columns = $this->get_custom_registered_columns();
470
-
471
  // get columns
472
  $default_columns = $this->default_columns;
473
  $custom_columns = $this->custom_columns;
@@ -577,7 +623,17 @@ abstract class CPAC_Storage_Model {
577
  // add active stored headings
578
  foreach( $stored_columns as $column_name => $options ) {
579
 
580
- // label needs stripslashes() for HTML tagged labels, like icons and checkboxes
 
 
 
 
 
 
 
 
 
 
581
  $label = apply_filters( 'cac/headings/label', stripslashes( $options['label'] ), $column_name, $options, $this );
582
 
583
  // maybe need site_url replacement
@@ -668,7 +724,7 @@ abstract class CPAC_Storage_Model {
668
  */
669
  function is_columns_screen() {
670
 
671
- global $pagenow, $current_screen;
672
 
673
  if ( $this->page . '.php' != $pagenow )
674
  return false;
@@ -681,9 +737,13 @@ abstract class CPAC_Storage_Model {
681
  return false;
682
  }
683
 
684
- // @todo: current_screen is still empty at this point...
685
- //if ( ! empty( $current_screen->post_type ) && $this->key != $current_screen->post_type )
686
- // return false;
 
 
 
 
687
 
688
  return true;
689
  }
32
  */
33
  public $type;
34
 
35
+ /**
36
+ * Menu Type
37
+ *
38
+ * Groups the storage model in the menu.
39
+ *
40
+ * @since 2.0.0
41
+ */
42
+ public $menu_type;
43
+
44
  /**
45
  * Page
46
  *
85
  */
86
  abstract function get_default_columns();
87
 
88
+ /**
89
+ * Construct
90
+ *
91
+ * @since 2.1.2
92
+ */
93
+ function __construct() {
94
+
95
+ // set columns paths
96
+ $this->set_columns_filepath();
97
+
98
+ // Populate columns variable.
99
+ // This is used for manage_value. By storing these columns we greatly improve performance.
100
+ add_action( 'admin_init', array( $this, 'set_columns' ) );
101
+ }
102
+
103
  /**
104
  * Checks if menu type is currently viewed
105
  *
156
  }
157
  }
158
 
159
+ /**
160
+ * Filter the available custom field meta keys
161
+ * If showing hidden fields is enabled, they are prefixed with "cpachidden" in the list
162
+ *
163
+ * @since 2.0.0
164
+ *
165
+ * @param array $keys Available custom field keys
166
+ * @param CPAC_Storage_Model $storage_model Storage model class instance
167
+ */
168
+ $keys = apply_filters( 'cac/storage_model/meta_keys', $keys, $this );
169
+
170
+ /**
171
+ * Filter the available custom field meta keys for this storage model type
172
+ *
173
+ * @since 2.0.0
174
+ * @see Filter cac/storage_model/meta_keys
175
+ */
176
+ return apply_filters( "cac/storage_model/meta_keys/storage_key={$this->key}", $keys, $this );
177
  }
178
 
179
  /**
248
 
249
  // Santize Label: Need to replace the url for images etc, so we do not have url problem on exports
250
  // this can not be done by CPAC_Column::sanitize_storage() because 3rd party plugins are not available there
251
+ $columns[ $name ]['label'] = stripslashes( str_replace( site_url(), '[cpac_site_url]', trim( $columns[ $name ]['label'] ) ) );
252
  }
253
 
254
  // store columns
284
 
285
  $columns = array(
286
  'CPAC_Column_Custom_Field' => CPAC_DIR . 'classes/column/custom-field.php',
287
+ 'CPAC_Column_Taxonomy' => CPAC_DIR . 'classes/column/taxonomy.php'
288
  );
289
 
290
+ // Directory to iterate
291
+ $columns_dir = CPAC_DIR . 'classes/column/' . $this->type;
292
 
293
+ // check if directory exists
294
+ if ( is_dir( $columns_dir ) ) {
295
 
296
+ $iterator = new DirectoryIterator( $columns_dir );
 
297
 
298
+ foreach( $iterator as $leaf ) {
299
+
300
+ if ( $leaf->isDot() || $leaf->isDir() )
301
+ continue;
302
 
303
+ // only allow php files, exclude .SVN .DS_STORE and such
304
+ if ( substr( $leaf->getFilename(), -4 ) !== '.php' )
305
+ continue;
306
 
307
+ // build classname from filename
308
+ $class_name = 'CPAC_Column_' . ucfirst( $this->type ) . '_' . implode( '_', array_map( 'ucfirst', explode( '-', basename( $leaf->getFilename(), '.php' ) ) ) );
309
+
310
+ // classname | filepath
311
+ $columns[ $class_name ] = $leaf->getPathname();
312
+ }
313
  }
314
 
315
  /**
476
  * Set Columns
477
  *
478
  * @since 2.0.2
479
+ *
480
+ * @param bool $ignore_check This will allow (3rd party plugins) to populate columns outside the approved screens.
481
  */
482
+ public function set_columns( $ignore_screen_check = false ) {
483
 
484
  // only set columns on allowed screens
485
  // @todo_minor: maybe add exception for AJAX calls
486
+ if ( ! $ignore_screen_check && ! $this->is_doing_ajax() && ! $this->is_columns_screen() && ! $this->is_settings_page() )
487
  return;
488
 
489
  $this->custom_columns = $this->get_custom_registered_columns();
514
 
515
  $columns = array();
516
 
 
 
 
 
517
  // get columns
518
  $default_columns = $this->default_columns;
519
  $custom_columns = $this->custom_columns;
623
  // add active stored headings
624
  foreach( $stored_columns as $column_name => $options ) {
625
 
626
+ /**
627
+ * Filter the column headers label for use in a WP_List_Table
628
+ * Label needs stripslashes() for HTML tagged labels, like icons and checkboxes
629
+ *
630
+ * @since 2.0.0
631
+ *
632
+ * @param string $label Label
633
+ * @param string $column_name Column name
634
+ * @param array $options Column options
635
+ * @param CPAC_Storage_Model $storage_model Storage model class instance
636
+ */
637
  $label = apply_filters( 'cac/headings/label', stripslashes( $options['label'] ), $column_name, $options, $this );
638
 
639
  // maybe need site_url replacement
724
  */
725
  function is_columns_screen() {
726
 
727
+ global $pagenow;
728
 
729
  if ( $this->page . '.php' != $pagenow )
730
  return false;
737
  return false;
738
  }
739
 
740
+ // taxonomy
741
+ if ( 'taxonomy' == $this->type ) {
742
+ $taxonomy = isset( $_GET['taxonomy'] ) ? $_GET['taxonomy'] : '';
743
+
744
+ if ( $this->taxonomy != $taxonomy )
745
+ return false;
746
+ }
747
 
748
  return true;
749
  }
classes/storage_model/comment.php CHANGED
@@ -13,17 +13,15 @@ class CPAC_Storage_Model_Comment extends CPAC_Storage_Model {
13
  $this->label = __( 'Comments' );
14
  $this->type = 'comment';
15
  $this->page = 'edit-comments';
16
-
17
- $this->set_columns_filepath();
18
-
19
- // populate columns variable
20
- add_action( 'admin_init', array( $this, 'set_columns' ) );
21
 
22
  // headings
23
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 100 );
24
 
25
  // values
26
  add_action( 'manage_comments_custom_column', array( $this, 'manage_value' ), 100, 2 );
 
 
27
  }
28
 
29
  /**
@@ -44,7 +42,7 @@ class CPAC_Storage_Model_Comment extends CPAC_Storage_Model {
44
 
45
  // get columns
46
  $table = _get_list_table( 'WP_Comments_List_Table', array( 'screen' => 'comments' ) );
47
- $columns = $table->get_columns();
48
 
49
  return $columns;
50
  }
13
  $this->label = __( 'Comments' );
14
  $this->type = 'comment';
15
  $this->page = 'edit-comments';
16
+ $this->menu_type = 'other';
 
 
 
 
17
 
18
  // headings
19
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 100 );
20
 
21
  // values
22
  add_action( 'manage_comments_custom_column', array( $this, 'manage_value' ), 100, 2 );
23
+
24
+ parent::__construct();
25
  }
26
 
27
  /**
42
 
43
  // get columns
44
  $table = _get_list_table( 'WP_Comments_List_Table', array( 'screen' => 'comments' ) );
45
+ $columns = (array) $table->get_columns();
46
 
47
  return $columns;
48
  }
classes/storage_model/link.php CHANGED
@@ -13,17 +13,15 @@ class CPAC_Storage_Model_Link extends CPAC_Storage_Model {
13
  $this->label = __( 'Links' );
14
  $this->type = 'link';
15
  $this->page = 'link-manager';
16
-
17
- $this->set_columns_filepath();
18
-
19
- // populate columns variable
20
- add_action( 'admin_init', array( $this, 'set_columns' ) );
21
 
22
  // headings
23
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 100 );
24
 
25
  // values
26
  add_action( 'manage_link_custom_column', array( $this, 'manage_value' ), 100, 2 );
 
 
27
  }
28
 
29
  /**
@@ -43,7 +41,7 @@ class CPAC_Storage_Model_Link extends CPAC_Storage_Model {
43
 
44
  // get columns
45
  $table = _get_list_table( 'WP_Links_List_Table', array( 'screen' => 'link-manager' ) );
46
- $columns = $table->get_columns();
47
 
48
  return $columns;
49
  }
13
  $this->label = __( 'Links' );
14
  $this->type = 'link';
15
  $this->page = 'link-manager';
16
+ $this->menu_type = 'other';
 
 
 
 
17
 
18
  // headings
19
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 100 );
20
 
21
  // values
22
  add_action( 'manage_link_custom_column', array( $this, 'manage_value' ), 100, 2 );
23
+
24
+ parent::__construct();
25
  }
26
 
27
  /**
41
 
42
  // get columns
43
  $table = _get_list_table( 'WP_Links_List_Table', array( 'screen' => 'link-manager' ) );
44
+ $columns = (array) $table->get_columns();
45
 
46
  return $columns;
47
  }
classes/storage_model/media.php CHANGED
@@ -14,11 +14,7 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
14
  $this->type = 'media';
15
  $this->page = 'upload';
16
  $this->post_type = 'attachment';
17
-
18
- $this->set_columns_filepath();
19
-
20
- // populate columns variable
21
- add_action( 'admin_init', array( $this, 'set_columns' ) );
22
 
23
  // headings
24
  // Increased the priority to overrule 3th party plugins such as Media Tags
@@ -26,6 +22,8 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
26
 
27
  // values
28
  add_action( 'manage_media_custom_column', array( $this, 'manage_value' ), 100, 2 );
 
 
29
  }
30
 
31
  /**
@@ -45,7 +43,7 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
45
 
46
  // get columns
47
  $table = _get_list_table ( 'WP_Media_List_Table', array( 'screen' => 'upload' ) );
48
- $columns = $table->get_columns();
49
 
50
  if ( $this->is_settings_page() )
51
  $columns = array_merge( get_column_headers( 'upload' ), $columns );
14
  $this->type = 'media';
15
  $this->page = 'upload';
16
  $this->post_type = 'attachment';
17
+ $this->menu_type = 'other';
 
 
 
 
18
 
19
  // headings
20
  // Increased the priority to overrule 3th party plugins such as Media Tags
22
 
23
  // values
24
  add_action( 'manage_media_custom_column', array( $this, 'manage_value' ), 100, 2 );
25
+
26
+ parent::__construct();
27
  }
28
 
29
  /**
43
 
44
  // get columns
45
  $table = _get_list_table ( 'WP_Media_List_Table', array( 'screen' => 'upload' ) );
46
+ $columns = (array) $table->get_columns();
47
 
48
  if ( $this->is_settings_page() )
49
  $columns = array_merge( get_column_headers( 'upload' ), $columns );
classes/storage_model/post.php CHANGED
@@ -14,21 +14,9 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
14
  $this->type = 'post';
15
  $this->page = 'edit';
16
  $this->post_type = $post_type;
17
-
18
- // @todo_minor
19
- // Add parent::__construct and move these two over:
20
- // $this->set_custom_columns()
21
- // add_action( 'admin_init', array( $this, 'set_columns' ) );
22
- // also for the other types
23
-
24
- $this->set_columns_filepath();
25
-
26
- // Populate columns variable.
27
- // This is used for manage_value. By storing these columns we greatly improve performance.
28
- add_action( 'admin_init', array( $this, 'set_columns' ) );
29
 
30
  // Headings
31
-
32
  // Since 3.1
33
  add_filter( "manage_{$post_type}_posts_columns", array( $this, 'add_headings' ), 100, 1 );
34
 
@@ -38,6 +26,8 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
38
 
39
  // values
40
  add_action( "manage_{$post_type}_posts_custom_column", array( $this, 'manage_value' ), 100, 2 );
 
 
41
  }
42
 
43
  /**
@@ -75,10 +65,8 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
75
  */
76
  public function get_default_columns() {
77
 
78
- if ( ! function_exists('_get_list_table') ) return array();
79
-
80
- //if ( ! $this->is_columns_screen() && ! $this->is_settings_page() )
81
- //return array();
82
 
83
  // You can use this filter to add thirdparty columns by hooking into this.
84
  // See classes/third_party.php for an example.
@@ -87,7 +75,7 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
87
 
88
  // Get the WP default columns
89
  $table = _get_list_table( 'WP_Posts_List_Table', array( 'screen' => $this->key ) );
90
- $columns = $table->get_columns();
91
 
92
  // Get columns that have been set by other plugins. If a plugin use the hook "manage_edit-{$post_type}_columns"
93
  // we know that the columns have been overwritten. Use these columns instead of the WP default ones.
@@ -95,7 +83,7 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
95
  // We have to make sure this filter only loads on the Admin Columns settings page. To prevent a loop
96
  // when it's being called by CPAC_Storage_Model::add_headings()
97
  if ( $this->is_settings_page() )
98
- $columns = array_merge( get_column_headers( 'edit-' . $this->key ), $columns );
99
 
100
  return array_filter( $columns );
101
  }
14
  $this->type = 'post';
15
  $this->page = 'edit';
16
  $this->post_type = $post_type;
17
+ $this->menu_type = 'post';
 
 
 
 
 
 
 
 
 
 
 
18
 
19
  // Headings
 
20
  // Since 3.1
21
  add_filter( "manage_{$post_type}_posts_columns", array( $this, 'add_headings' ), 100, 1 );
22
 
26
 
27
  // values
28
  add_action( "manage_{$post_type}_posts_custom_column", array( $this, 'manage_value' ), 100, 2 );
29
+
30
+ parent::__construct();
31
  }
32
 
33
  /**
65
  */
66
  public function get_default_columns() {
67
 
68
+ if ( ! function_exists('_get_list_table') )
69
+ return array();
 
 
70
 
71
  // You can use this filter to add thirdparty columns by hooking into this.
72
  // See classes/third_party.php for an example.
75
 
76
  // Get the WP default columns
77
  $table = _get_list_table( 'WP_Posts_List_Table', array( 'screen' => $this->key ) );
78
+ $columns = (array) $table->get_columns();
79
 
80
  // Get columns that have been set by other plugins. If a plugin use the hook "manage_edit-{$post_type}_columns"
81
  // we know that the columns have been overwritten. Use these columns instead of the WP default ones.
83
  // We have to make sure this filter only loads on the Admin Columns settings page. To prevent a loop
84
  // when it's being called by CPAC_Storage_Model::add_headings()
85
  if ( $this->is_settings_page() )
86
+ $columns = array_merge( get_column_headers( 'edit-' . $this->key ), $columns );
87
 
88
  return array_filter( $columns );
89
  }
classes/storage_model/user.php CHANGED
@@ -13,17 +13,15 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
13
  $this->label = __( 'Users' );
14
  $this->type = 'user';
15
  $this->page = 'users';
16
-
17
- $this->set_columns_filepath();
18
-
19
- // populate columns variable
20
- add_action( 'admin_init', array( $this, 'set_columns' ) );
21
 
22
  // headings
23
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 100 );
24
 
25
  // values
26
  add_filter( 'manage_users_custom_column', array( $this, 'manage_value_callback' ), 100, 3 );
 
 
27
  }
28
 
29
  /**
@@ -43,7 +41,7 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
43
 
44
  // get columns
45
  $table = _get_list_table( 'WP_Users_List_Table', array( 'screen' => 'users' ) );
46
- $columns = $table->get_columns();
47
 
48
  return $columns;
49
  }
13
  $this->label = __( 'Users' );
14
  $this->type = 'user';
15
  $this->page = 'users';
16
+ $this->menu_type = 'other';
 
 
 
 
17
 
18
  // headings
19
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 100 );
20
 
21
  // values
22
  add_filter( 'manage_users_custom_column', array( $this, 'manage_value_callback' ), 100, 3 );
23
+
24
+ parent::__construct();
25
  }
26
 
27
  /**
41
 
42
  // get columns
43
  $table = _get_list_table( 'WP_Users_List_Table', array( 'screen' => 'users' ) );
44
+ $columns = (array) $table->get_columns();
45
 
46
  return $columns;
47
  }
classes/third_party.php CHANGED
@@ -20,6 +20,7 @@ function pre_load_wordpress_seo_class_metabox() {
20
  ( defined('DOING_AJAX') && DOING_AJAX && ! empty( $_POST['type'] ) )
21
  ) {
22
  require_once WPSEO_PATH.'admin/class-metabox.php';
 
23
  }
24
  }
25
  }
20
  ( defined('DOING_AJAX') && DOING_AJAX && ! empty( $_POST['type'] ) )
21
  ) {
22
  require_once WPSEO_PATH.'admin/class-metabox.php';
23
+ new WPSEO_Metabox;
24
  }
25
  }
26
  }
codepress-admin-columns.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
- Version: 2.1.3
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.1.3' ); // 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__ ) );
@@ -81,24 +81,142 @@ class CPAC {
81
  // translations
82
  load_plugin_textdomain( 'cpac', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
83
 
84
- // styling & scripts
85
- add_action( 'admin_enqueue_scripts' , array( $this, 'column_styles') );
86
- add_filter( 'admin_body_class', array( $this, 'admin_class' ) );
87
- add_action( 'admin_head', array( $this, 'admin_scripts') );
88
-
89
  // add settings link
90
  add_filter( 'plugin_action_links', array( $this, 'add_settings_link'), 1, 2);
91
 
 
 
 
 
 
 
 
 
 
 
 
92
  // set storage models
93
  $this->set_storage_models();
94
 
95
- // ini controllers
96
- $this->init_controllers();
97
-
98
- // for third party plugins
 
 
 
 
 
 
 
99
  do_action( 'cac/loaded', $this );
100
  }
101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  /**
103
  * Add user capabilities
104
  *
@@ -109,8 +227,9 @@ class CPAC {
109
  public function set_capabilities() {
110
 
111
  // add capabilty to administrator to manage admin columns
112
- if ( $role = get_role( 'administrator' ) )
113
  $role->add_cap( 'manage_admin_columns' );
 
114
  }
115
 
116
  /**
@@ -119,9 +238,12 @@ class CPAC {
119
  * @since 2.0.0
120
  *
121
  */
122
- private function set_storage_models() {
 
 
 
123
 
124
- $this->storage_models = array();
125
 
126
  // include parent and childs
127
  require_once CPAC_DIR . 'classes/column.php';
@@ -135,28 +257,38 @@ class CPAC {
135
  // add Posts
136
  foreach ( $this->get_post_types() as $post_type ) {
137
  $storage_model = new CPAC_Storage_Model_Post( $post_type );
138
- $this->storage_models[ $storage_model->key ] = $storage_model;
139
  }
140
 
141
  // add User
142
  $storage_model = new CPAC_Storage_Model_User();
143
- $this->storage_models[ $storage_model->key ] = $storage_model;
144
 
145
  // add Media
146
  $storage_model = new CPAC_Storage_Model_Media();
147
- $this->storage_models[ $storage_model->key ] = $storage_model;
148
 
149
  // add Comment
150
  $storage_model = new CPAC_Storage_Model_Comment();
151
- $this->storage_models[ $storage_model->key ] = $storage_model;
152
 
153
  // add Link
154
  if ( apply_filters( 'pre_option_link_manager_enabled', false ) ) { // as of 3.5 link manager is removed
155
  $storage_model = new CPAC_Storage_Model_Link();
156
- $this->storage_models[ $storage_model->key ] = $storage_model;
157
  }
158
 
159
- // Hook to add more models
 
 
 
 
 
 
 
 
 
 
160
  do_action( 'cac/storage_models', $this->storage_models );
161
  }
162
 
@@ -175,25 +307,6 @@ class CPAC {
175
  return false;
176
  }
177
 
178
- /**
179
- * Init controllers
180
- *
181
- * @since 2.0.0
182
- *
183
- */
184
- function init_controllers() {
185
-
186
- do_action( 'cac/controllers', $this );
187
-
188
- // Settings
189
- include_once CPAC_DIR . 'classes/settings.php';
190
- new CPAC_Settings( $this );
191
-
192
- // Upgrade
193
- require_once CPAC_DIR . 'classes/upgrade.php';
194
- new CPAC_Upgrade( $this );
195
- }
196
-
197
  /**
198
  * Get post types - Utility Method
199
  *
@@ -216,6 +329,13 @@ class CPAC {
216
  'show_ui' => true
217
  )));
218
 
 
 
 
 
 
 
 
219
  return apply_filters( 'cac/post_types', $post_types );
220
  }
221
 
@@ -243,12 +363,7 @@ class CPAC {
243
  * @since 1.0.0
244
  */
245
  public function column_styles() {
246
-
247
- global $pagenow;
248
-
249
- if ( in_array( $pagenow, array( 'edit.php', 'upload.php', 'link-manager.php', 'edit-comments.php', 'users.php' ) ) ) {
250
- wp_enqueue_style( 'cpac-columns', CPAC_URL . 'assets/css/column.css', array(), CPAC_VERSION, 'all' );
251
- }
252
  }
253
 
254
  /**
@@ -262,30 +377,30 @@ class CPAC {
262
  * @return string
263
  */
264
  function admin_class( $classes ) {
265
- global $current_screen;
266
-
267
- // we dont need the 'edit-' part
268
- $screen = str_replace( 'edit-', '', $current_screen->id );
269
 
270
- // media library exception
271
- if ( $current_screen->base == 'upload' && $current_screen->id == 'upload' )
272
- $screen = 'media';
273
-
274
- // link exception
275
- if ( $current_screen->base == 'link-manager' && $current_screen->id == 'link-manager' )
276
- $screen = 'links';
277
-
278
- // loop the available types
279
- foreach ( $this->storage_models as $storage_model ) {
280
-
281
- // match against screen or wp-screen
282
- if ( $storage_model->key == $screen || $storage_model->key == "wp-{$screen}" )
283
- $classes .= " cp-{$storage_model->key}";
284
  }
285
 
286
  return $classes;
287
  }
288
 
 
 
 
 
 
 
 
 
 
 
 
 
289
 
290
  /**
291
  * Admin CSS for Column width and Settings Icon
@@ -293,18 +408,14 @@ class CPAC {
293
  * @since 1.4.0
294
  */
295
  function admin_scripts() {
296
- global $pagenow, $current_screen;
297
 
298
- // CSS column widths
299
- $css_column_width = '';
300
-
301
- // JS
302
- $edit_link = '';
303
 
304
  if ( $this->storage_models ) {
305
  foreach ( $this->storage_models as $storage_model ) {
306
 
307
- if ( $storage_model->page . '.php' !== $pagenow )
308
  continue;
309
 
310
  // CSS: columns width
@@ -318,47 +429,27 @@ class CPAC {
318
  }
319
 
320
  // JS: edit button
321
- if (
322
- // All types except Posts
323
- empty( $current_screen->post_type ) ||
324
- // Posts
325
- ( ! empty( $current_screen->post_type ) && $storage_model->key == $current_screen->post_type )
326
- )
327
- {
328
  $edit_link = $storage_model->get_edit_link();
329
  }
330
  }
331
  }
332
-
333
  ?>
 
334
  <style type="text/css">
335
  <?php echo $css_column_width; ?>
336
- #adminmenu #toplevel_page_codepress-admin-columns .wp-menu-image {
337
- background: transparent url("<?php echo CPAC_URL; ?>assets/images/icon_20.png") no-repeat 6px -24px;
338
- }
339
- #adminmenu #toplevel_page_codepress-admin-columns:hover .wp-menu-image,
340
- #adminmenu #toplevel_page_codepress-admin-columns.wp-menu-open .wp-menu-image {
341
- background-position: 6px 6px;
342
- }
343
- #menu-settings a[href="options-general.php?page=cpac-upgrade"],
344
- #adminmenu #toplevel_page_codepress-admin-columns a[href="admin.php?page=cpac-upgrade"] {
345
- display: none;
346
- }
347
- .cpac-edit { margin-right: 3px; vertical-align: middle; }
348
  </style>
349
-
350
- <?php
351
-
352
- $general_options = get_option( 'cpac_general_options' );
353
-
354
- if ( current_user_can( 'manage_admin_columns' ) && $edit_link && isset( $general_options['show_edit_button'] ) && '1' === $general_options['show_edit_button'] ) : ?>
355
  <script type="text/javascript">
356
  jQuery(document).ready(function() {
357
  jQuery('.tablenav.top .actions:last').append('<a href="<?php echo $edit_link; ?>" class="cpac-edit add-new-h2"><?php _e( 'Edit columns', 'cpac' ); ?></a>');
358
  });
359
  </script>
 
 
360
  <?php
361
- endif;
362
  }
363
  }
364
 
@@ -368,5 +459,3 @@ class CPAC {
368
  * @since 1.0.0
369
  */
370
  $cpac = new CPAC();
371
-
372
-
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
+ Version: 2.1.4
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.1.4' ); // 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__ ) );
81
  // translations
82
  load_plugin_textdomain( 'cpac', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
83
 
 
 
 
 
 
84
  // add settings link
85
  add_filter( 'plugin_action_links', array( $this, 'add_settings_link'), 1, 2);
86
 
87
+ // Settings
88
+ include_once CPAC_DIR . 'classes/settings.php';
89
+ new CPAC_Settings( $this );
90
+
91
+ // Upgrade
92
+ require_once CPAC_DIR . 'classes/upgrade.php';
93
+ new CPAC_Upgrade( $this );
94
+
95
+ // load scripts
96
+ $this->init_scripts();
97
+
98
  // set storage models
99
  $this->set_storage_models();
100
 
101
+ // @deprecated
102
+ do_action( 'cac/controllers', $this );
103
+
104
+ /**
105
+ * Fires when Admin Columns is fully loaded
106
+ * Use this for setting up addon functionality
107
+ *
108
+ * @since 2.0.0
109
+ *
110
+ * @param CPAC $cpac_instance Main Admin Columns plugin class instance
111
+ */
112
  do_action( 'cac/loaded', $this );
113
  }
114
 
115
+ /**
116
+ * Whether this request is an AJAX request
117
+ *
118
+ * @since 2.2
119
+ *
120
+ * @return bool Returns true if in an AJAX request, false otherwise
121
+ */
122
+ function is_doing_ajax() {
123
+
124
+ $doing_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
125
+
126
+ /**
127
+ * Filter whether the current request should be marked as an AJAX request
128
+ * Useful for custom AJAX calls
129
+ *
130
+ * @since 2.2
131
+ *
132
+ * @param bool $doing_ajax Whether the current request is an AJAX request
133
+ */
134
+ $doing_ajax = apply_filters( 'cac/is_doing_ajax', $doing_ajax );
135
+
136
+ return $doing_ajax;
137
+ }
138
+
139
+ /**
140
+ * Whether this request is a columns screen (i.e. a content overview page)
141
+ *
142
+ * @since 2.2
143
+ *
144
+ * @return bool Returns true if the current screen is a columns screen, false otherwise
145
+ */
146
+ function is_columns_screen() {
147
+
148
+ global $pagenow;
149
+
150
+ $columns_screen = in_array( $pagenow, array( 'edit.php', 'upload.php', 'link-manager.php', 'edit-comments.php', 'users.php', 'edit-tags.php' ) );
151
+
152
+ /**
153
+ * Filter whether the current screen is a columns screen (i.e. a content overview page)
154
+ * Useful for advanced used with custom content overview pages
155
+ *
156
+ * @since 2.2
157
+ *
158
+ * @param bool $columns_screen Whether the current request is a columns screen
159
+ */
160
+ $columns_screen = apply_filters( 'cac/is_columns_screen', $columns_screen );
161
+
162
+ return $columns_screen;
163
+ }
164
+
165
+ /**
166
+ * Whether the current screen is the Admin Columns settings screen
167
+ *
168
+ * @since 2.2
169
+ *
170
+ * @return bool True if the current screen is the settings screen, false otherwise
171
+ */
172
+ function is_settings_screen() {
173
+
174
+ global $pagenow;
175
+
176
+ if ( ! ( 'options-general.php' === $pagenow && isset( $_GET['page'] ) && ( 'codepress-admin-columns' === $_GET['page'] ) ) ) {
177
+ return false;
178
+ }
179
+
180
+ return true;
181
+ }
182
+
183
+ /**
184
+ * Whether the current screen is a screen in which Admin Columns is used
185
+ * Used to check whether storage models should be loaded
186
+ *
187
+ * @since 2.2
188
+ *
189
+ * @return bool Whether the current screen is an Admin Columns screen
190
+ */
191
+ function is_cac_screen() {
192
+ /**
193
+ * Filter whether the current screen is a screen in which Admin Columns is active
194
+ *
195
+ * @since 2.2
196
+ *
197
+ * @param bool $is_cac_screen Whether the current screen is an Admin Columns screen
198
+ */
199
+ return apply_filters( 'cac/is_cac_screen', $this->is_columns_screen() || $this->is_doing_ajax() || $this->is_settings_screen() );
200
+ }
201
+
202
+ /**
203
+ * Init scripts
204
+ *
205
+ * @since 2.1.1
206
+ */
207
+ public function init_scripts() {
208
+
209
+ add_action( 'admin_head', array( $this, 'global_head_scripts') );
210
+
211
+ if ( ! $this->is_columns_screen() )
212
+ return;
213
+
214
+ // styling & scripts
215
+ add_action( 'admin_enqueue_scripts' , array( $this, 'column_styles') );
216
+ add_filter( 'admin_body_class', array( $this, 'admin_class' ) );
217
+ add_action( 'admin_head', array( $this, 'admin_scripts') );
218
+ }
219
+
220
  /**
221
  * Add user capabilities
222
  *
227
  public function set_capabilities() {
228
 
229
  // add capabilty to administrator to manage admin columns
230
+ if ( $role = get_role( 'administrator' ) ) {
231
  $role->add_cap( 'manage_admin_columns' );
232
+ }
233
  }
234
 
235
  /**
238
  * @since 2.0.0
239
  *
240
  */
241
+ public function set_storage_models() {
242
+
243
+ if ( ! $this->is_cac_screen() )
244
+ return;
245
 
246
+ $storage_models = array();
247
 
248
  // include parent and childs
249
  require_once CPAC_DIR . 'classes/column.php';
257
  // add Posts
258
  foreach ( $this->get_post_types() as $post_type ) {
259
  $storage_model = new CPAC_Storage_Model_Post( $post_type );
260
+ $storage_models[ $storage_model->key ] = $storage_model;
261
  }
262
 
263
  // add User
264
  $storage_model = new CPAC_Storage_Model_User();
265
+ $storage_models[ $storage_model->key ] = $storage_model;
266
 
267
  // add Media
268
  $storage_model = new CPAC_Storage_Model_Media();
269
+ $storage_models[ $storage_model->key ] = $storage_model;
270
 
271
  // add Comment
272
  $storage_model = new CPAC_Storage_Model_Comment();
273
+ $storage_models[ $storage_model->key ] = $storage_model;
274
 
275
  // add Link
276
  if ( apply_filters( 'pre_option_link_manager_enabled', false ) ) { // as of 3.5 link manager is removed
277
  $storage_model = new CPAC_Storage_Model_Link();
278
+ $storage_models[ $storage_model->key ] = $storage_model;
279
  }
280
 
281
+ /**
282
+ * Filter the available storage models
283
+ * Used by external plugins to add additional storage models
284
+ *
285
+ * @since 2.0.0
286
+ *
287
+ * @param array $storage_models List of storage model class instances ( [key] => [CPAC_Storage_Model object], where [key] is the storage key, such as "user", "post" or "my_custom_post_type")
288
+ */
289
+ $this->storage_models = apply_filters( 'cac/storage_models', $storage_models );
290
+
291
+ // deprecated
292
  do_action( 'cac/storage_models', $this->storage_models );
293
  }
294
 
307
  return false;
308
  }
309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  /**
311
  * Get post types - Utility Method
312
  *
329
  'show_ui' => true
330
  )));
331
 
332
+ /**
333
+ * Filter the post types for which Admin Columns is active
334
+ *
335
+ * @since 2.0.0
336
+ *
337
+ * @param array $post_types List of active post type names
338
+ */
339
  return apply_filters( 'cac/post_types', $post_types );
340
  }
341
 
363
  * @since 1.0.0
364
  */
365
  public function column_styles() {
366
+ wp_enqueue_style( 'cpac-columns', CPAC_URL . 'assets/css/column.css', array(), CPAC_VERSION, 'all' );
 
 
 
 
 
367
  }
368
 
369
  /**
377
  * @return string
378
  */
379
  function admin_class( $classes ) {
 
 
 
 
380
 
381
+ if ( $this->storage_models ) {
382
+ foreach ( $this->storage_models as $storage_model ) {
383
+ if ( $storage_model->is_columns_screen() ) {
384
+ $classes .= " cp-{$storage_model->key}";
385
+ }
386
+ }
 
 
 
 
 
 
 
 
387
  }
388
 
389
  return $classes;
390
  }
391
 
392
+ /**
393
+ * Admin CSS to hide upgrade menu and place icon
394
+ *
395
+ * @since 1.4.0
396
+ */
397
+ function global_head_scripts() { ?>
398
+ <style type="text/css">
399
+ #menu-settings a[href="options-general.php?page=cpac-upgrade"] { display: none; }
400
+ </style>
401
+ <?php
402
+ }
403
+
404
 
405
  /**
406
  * Admin CSS for Column width and Settings Icon
408
  * @since 1.4.0
409
  */
410
  function admin_scripts() {
 
411
 
412
+ $css_column_width = '';
413
+ $edit_link = '';
 
 
 
414
 
415
  if ( $this->storage_models ) {
416
  foreach ( $this->storage_models as $storage_model ) {
417
 
418
+ if ( ! $storage_model->is_columns_screen() )
419
  continue;
420
 
421
  // CSS: columns width
429
  }
430
 
431
  // JS: edit button
432
+ $general_options = get_option( 'cpac_general_options' );
433
+ if ( current_user_can( 'manage_admin_columns' ) && isset( $general_options['show_edit_button'] ) && '1' === $general_options['show_edit_button'] ) {
 
 
 
 
 
434
  $edit_link = $storage_model->get_edit_link();
435
  }
436
  }
437
  }
 
438
  ?>
439
+ <?php if ( $css_column_width ) : ?>
440
  <style type="text/css">
441
  <?php echo $css_column_width; ?>
 
 
 
 
 
 
 
 
 
 
 
 
442
  </style>
443
+ <?php endif; ?>
444
+ <?php if ( $edit_link ) : ?>
 
 
 
 
445
  <script type="text/javascript">
446
  jQuery(document).ready(function() {
447
  jQuery('.tablenav.top .actions:last').append('<a href="<?php echo $edit_link; ?>" class="cpac-edit add-new-h2"><?php _e( 'Edit columns', 'cpac' ); ?></a>');
448
  });
449
  </script>
450
+ <?php endif; ?>
451
+
452
  <?php
 
453
  }
454
  }
455
 
459
  * @since 1.0.0
460
  */
461
  $cpac = new CPAC();
 
 
languages/cpac-ar.mo CHANGED
Binary file
languages/cpac-ar.po CHANGED
@@ -5,61 +5,53 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:55+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:227 ../classes/settings.php:535
27
- msgid "Settings"
28
- msgstr "إعدادات"
29
-
30
- #: ../codepress-admin-columns.php:350
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:774
51
  msgid "Date Format"
52
  msgstr "تنسيق التاريخ"
53
 
54
- #: ../classes/column.php:775
55
  msgid "This will determine how the date will be displayed."
56
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
57
 
58
- #: ../classes/column.php:781
59
  msgid "Example:"
60
  msgstr "مثال:"
61
 
62
- #: ../classes/column.php:783
63
  #, php-format
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -68,1138 +60,1115 @@ msgstr ""
68
  "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق "
69
  "التاريخ الخاص بك هنا</a>."
70
 
71
- #: ../classes/column.php:784
72
  msgid "Documentation on date and time formatting."
73
  msgstr "توثيق حول تنسيق التاريخ والوقت."
74
 
75
- #: ../classes/column.php:801
76
  msgid "Excerpt length"
77
  msgstr "طول المقتطف"
78
 
79
- #: ../classes/column.php:802
80
  msgid "Number of words"
81
  msgstr "عدد الكلمات"
82
 
83
- #: ../classes/column.php:824
84
  msgid "Preview size"
85
  msgstr "حجم المعاينة"
86
 
87
- #: ../classes/column.php:841 ../classes/column.php:897
88
  msgid "Custom"
89
  msgstr "مخصوص"
90
 
91
- #: ../classes/column.php:844
92
  msgid "width"
93
  msgstr "عرض"
94
 
95
- #: ../classes/column.php:847
96
  msgid "height"
97
  msgstr "إرتفاع"
98
 
99
- #: ../classes/column.php:898 ../classes/settings.php:224
100
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Default"
102
  msgstr "إفتراضي"
103
 
104
- #: ../classes/column.php:923 ../classes/column.php:984
105
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
106
  msgid "Remove"
107
  msgstr "إزالة"
108
 
109
- #: ../classes/column.php:942
110
  msgid "Type"
111
  msgstr "نوع"
112
 
113
- #: ../classes/column.php:942
114
  msgid "Choose a column type."
115
  msgstr "اختر نوع عمود"
116
 
117
- #: ../classes/column.php:952
 
 
 
 
 
 
118
  msgid "Label"
119
  msgstr "العنوان"
120
 
121
- #: ../classes/column.php:952
122
  msgid "This is the name which will appear as the column header."
123
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
124
 
125
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
126
  msgid "Width"
127
  msgstr "عرض"
128
 
129
- #: ../classes/column.php:961 ../classes/column.php:962
130
  msgid "default"
131
  msgstr "إفتراضي"
132
 
133
- #: ../classes/settings.php:68
134
- msgid "Admin Columns Settings"
135
- msgstr "إعدادات Admin Columns"
 
 
 
136
 
137
- #: ../classes/settings.php:68 ../classes/settings.php:534
138
- #: ../classes/upgrade.php:89
139
- msgid "Admin Columns"
140
- msgstr "Admin Columns"
141
 
142
- #: ../classes/settings.php:129
143
- #, php-format
144
- msgid "%s column is already present and can not be duplicated."
145
- msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
146
 
147
- #: ../classes/settings.php:184
148
- msgid "Default settings succesfully restored."
149
- msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
 
150
 
151
- #: ../classes/settings.php:202 ../classes/settings.php:457
152
- msgid "Overview"
153
- msgstr "نظرة عامة"
 
154
 
155
- #: ../classes/settings.php:205
156
- msgid ""
157
- "This plugin is for adding and removing additional columns to the "
158
- "administration screens for post(types), pages, media library, comments, "
159
- "links and users. Change the column's label and reorder them."
160
- msgstr ""
161
- "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) "
162
- "التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير "
163
- "تسمية الأعمدة وإعادة ترتيبها."
164
 
165
- #: ../classes/settings.php:208
166
- msgid "Basics"
167
- msgstr "مبادئ"
168
 
169
- #: ../classes/settings.php:210
170
- msgid "Change order"
171
- msgstr "تغيير الترتيب"
172
 
173
- #: ../classes/settings.php:211
174
- msgid ""
175
- "By dragging the columns you can change the order which they will appear in."
176
- msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
177
 
178
- #: ../classes/settings.php:212
179
- msgid "Change label"
180
- msgstr "تغيير العنوان"
181
 
182
- #: ../classes/settings.php:213
183
- msgid ""
184
- "By clicking on the triangle you will see the column options. Here you can "
185
- "change each label of the columns heading."
186
- msgstr ""
187
- "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
 
 
 
189
  #: ../classes/settings.php:214
190
- msgid "Change column width"
191
- msgstr "تغيير عرض العمود"
192
 
193
- #: ../classes/settings.php:215
194
- msgid ""
195
- "By clicking on the triangle you will see the column options. By using the "
196
- "draggable slider you can set the width of the columns in percentages."
197
- msgstr ""
198
- "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب "
199
- "يمكنك تعيين عرض الأعمدة بالنسب المئوية."
 
200
 
201
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
202
- #: ../classes/column/custom-field.php:324
203
  msgid "Custom Field"
204
  msgstr "حقل مخصوص"
205
 
206
- #: ../classes/settings.php:221
207
- msgid "'Custom Field' column"
208
- msgstr "عمود 'حقل مخصوص'"
209
 
210
- #: ../classes/settings.php:222
211
- msgid ""
212
- "The custom field colum uses the custom fields from posts and users. There "
213
- "are 10 types which you can set."
214
- msgstr ""
215
- "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 "
216
- "أنواع يمكنك تعيينها."
217
 
218
- #: ../classes/settings.php:224
219
- msgid ""
220
- "Value: Can be either a string or array. Arrays will be flattened and values "
221
- "are seperated by a ',' comma."
222
  msgstr ""
223
- "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
224
- "بـ '،' فاصلة."
225
 
226
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
227
- #: ../classes/column/link/image.php:12
228
  msgid "Image"
229
  msgstr "صورة"
230
 
231
- #: ../classes/settings.php:225
232
- msgid ""
233
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
234
- "comma )."
235
- msgstr ""
236
- "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
237
-
238
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
239
- #: ../classes/column/comment/excerpt.php:13
240
- #: ../classes/column/post/excerpt.php:13
241
- msgid "Excerpt"
242
- msgstr "مقتطف"
243
-
244
- #: ../classes/settings.php:226
245
- msgid "Value: This will show the first 20 words of the Post content."
246
- msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
247
 
248
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
249
  msgid "Multiple Values"
250
  msgstr "قيم متعددة"
251
 
252
- #: ../classes/settings.php:227
253
- msgid ""
254
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
255
- msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
256
-
257
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
258
  msgid "Numeric"
259
  msgstr "رقمي"
260
 
261
- #: ../classes/settings.php:228
262
- msgid ""
263
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
264
- "for sorting, so you can sort your posts on numeric (custom field) values."
265
- msgstr ""
266
- "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام "
267
- "هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
268
 
269
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
270
- #: ../classes/column/comment/date.php:12
271
- msgid "Date"
272
- msgstr "تاريخ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
- #: ../classes/settings.php:229
275
  #, php-format
276
  msgid ""
277
- "Value: Can be unix time stamp or a date format as described in the <a "
278
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
279
- "href='%s'>general settings</a> page."
280
  msgstr ""
281
- "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a "
282
- "href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a "
283
- "href='%s'>الإعدادات العامة</a>."
284
-
285
- #: ../classes/settings.php:230
286
- msgid "Post Titles"
287
- msgstr "عناوين تدوينات"
288
 
289
- #: ../classes/settings.php:230
290
- msgid "Value: can be one or more Post ID's (seperated by ',')."
291
- msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
292
 
293
- #: ../classes/settings.php:231
294
- msgid "Usernames"
295
- msgstr "أسماء مستخدمين"
 
 
296
 
297
- #: ../classes/settings.php:231
298
- msgid "Value: can be one or more User ID's (seperated by ',')."
299
- msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
300
 
301
- #: ../classes/settings.php:232
302
- msgid "Checkmark"
303
- msgstr "علامة اختيار"
304
 
305
- #: ../classes/settings.php:232
306
- msgid "Value: should be a 1 (one) or 0 (zero)."
307
- msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
308
 
309
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
310
- msgid "Color"
311
- msgstr "لون"
312
 
313
- #: ../classes/settings.php:233
314
- msgid "Value: hex value color, such as #808080."
315
- msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
316
 
317
- #: ../classes/settings.php:377
318
- msgid "Welcome to Admin Columns"
319
- msgstr "مرحبا في Admin Columns"
320
 
321
- #: ../classes/settings.php:380
322
- msgid "Thank you for updating to the latest version!"
323
- msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
324
 
325
- #: ../classes/settings.php:381
326
- msgid ""
327
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
328
- "like it."
329
- msgstr ""
330
- "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
331
 
332
- #: ../classes/settings.php:386
333
- msgid "What’s New"
334
- msgstr "ما الجديد"
 
335
 
336
- #: ../classes/settings.php:387
337
- msgid "Changelog"
338
- msgstr "سجل التغييرات"
339
 
340
- #: ../classes/settings.php:389
341
- msgid "Download Addons"
342
- msgstr "تنزيل الإضافات"
343
 
344
- #: ../classes/settings.php:395
345
- msgid "Addons"
346
- msgstr "إضافات"
347
 
348
- #: ../classes/settings.php:397
349
- msgid ""
350
- "Addons are now activated by downloading and installing individual plugins. "
351
- "Although these plugins will not be hosted on the wordpress.org repository, "
352
- "each Add-on will continue to receive updates in the usual way."
353
- msgstr ""
354
- "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من "
355
- "أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة "
356
- "بتلقي التحديثات بالطريقة المعتادة."
357
 
358
- #: ../classes/settings.php:400
359
- msgid ""
360
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
361
- msgstr "هذا الموقع يستخدم ملحق الترتيب. يجب تنزيل هذه الإضافة."
362
 
363
- #: ../classes/settings.php:403
364
- msgid "Addons are seperate plugins which need to be downloaded."
365
- msgstr "الملحقات هي إضافات منفصلة يجب تنزيلها."
366
 
367
- #: ../classes/settings.php:403
368
- msgid "Download your Addons"
369
- msgstr "قم بتنزيل إضافاتك"
370
 
371
- #: ../classes/settings.php:409
372
- msgid "This website does not use add-ons"
373
- msgstr "هذا الموقع لا يستخدم ملحقات"
374
 
375
- #: ../classes/settings.php:409
376
- msgid "See our website for the Pro-addon."
377
- msgstr "انظر موقعنا للملحق الإحترافي."
378
 
379
- #: ../classes/settings.php:416
380
- msgid "Important"
381
- msgstr "مهم"
382
 
383
- #: ../classes/settings.php:418
384
- msgid "Database Changes"
385
- msgstr "تغييرات قاعدة البيانات"
386
 
387
- #: ../classes/settings.php:419
388
- msgid ""
389
- "The database has been changed between versions 1 and 2. But we made sure you "
390
- "can still roll back to version 1x without any issues."
391
- msgstr ""
392
- "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك "
393
- "الرجوع إلى إصدار 1x دون أية مشاكل."
394
 
395
- #: ../classes/settings.php:422
396
- msgid "Make sure you backup your database and then click"
397
- msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
398
 
399
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
400
- msgid "Upgrade Database"
401
- msgstr "تحديث قاعدة البيانات"
402
 
403
- #: ../classes/settings.php:425
404
- msgid "Potential Issues"
405
- msgstr "مشاكل محتملة"
406
 
407
- #: ../classes/settings.php:426
408
- msgid ""
409
- "Do to the sizable refactoring the code, surounding Addons and action/"
410
- "filters, your website may not operate correctly. It is important that you "
411
- "read the full"
412
- msgstr ""
413
- "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا "
414
- "يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
415
 
416
- #: ../classes/settings.php:426
417
- msgid "Migrating from v1 to v2"
418
- msgstr "الانتقال من النسخة 1 إلى النسخة 2"
419
 
420
- #: ../classes/settings.php:426
421
- msgid "guide to view the full list of changes."
422
- msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
423
 
424
- #: ../classes/settings.php:426
425
- #, php-format
426
- msgid ""
427
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
428
- "can fix it in the next release."
429
- msgstr ""
430
- "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من "
431
- "إصلاحها في النسخة القادمة."
432
 
433
- #: ../classes/settings.php:429
434
- msgid "Important!"
435
- msgstr "مهم!"
436
 
437
- #: ../classes/settings.php:429
438
- msgid ""
439
- "If you updated the Admin Columns plugin without prior knowledge of such "
440
- "changes, Please roll back to the latest"
441
- msgstr ""
442
- "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع "
443
- "لآخر"
444
 
445
- #: ../classes/settings.php:429
446
- msgid "version 1"
447
- msgstr "النسخة 1"
448
 
449
- #: ../classes/settings.php:429
450
- msgid "of this plugin."
451
- msgstr "من هذه الإضافة"
 
452
 
453
- #: ../classes/settings.php:435
454
- msgid "Changelog for"
455
- msgstr "سجل التغييرات لـ"
456
 
457
- #: ../classes/settings.php:450
458
- msgid "Learn more"
459
- msgstr "تعلم المزيد"
 
460
 
461
- #: ../classes/settings.php:459
462
- msgid ""
463
- "New to v2, all Addons act as separate plugins which need to be individually "
464
- "downloaded, installed and updated."
465
- msgstr ""
466
- "جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، "
467
- "تركيبها وتحديثها بشكل فردي."
468
 
469
- #: ../classes/settings.php:460
470
- msgid ""
471
- "This page will assist you in downloading and installing each available Addon."
472
- msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
473
 
474
- #: ../classes/settings.php:461
475
- msgid "Available Addons"
476
- msgstr "الإضافات المتوفرة"
477
 
478
- #: ../classes/settings.php:466
479
- msgid "Name"
480
- msgstr "الاسم"
481
 
482
- #: ../classes/settings.php:467 ../classes/settings.php:475
483
- msgid "Download"
484
- msgstr "تنزيل"
485
 
486
- #: ../classes/settings.php:473
487
- msgid "Pro Add-on (includes Sortorder add-on)"
488
- msgstr "الملحق الإحترافي (يتضمن ملحق الترتيب)"
489
 
490
- #: ../classes/settings.php:483
491
- msgid "Installation"
492
- msgstr "تنصيب"
493
 
494
- #: ../classes/settings.php:485
495
- msgid "For each Add-on available, please perform the following:"
496
- msgstr "لكل ملحق متاح، يرجى القيام بما يلي:"
 
497
 
498
- #: ../classes/settings.php:487
499
- msgid "Download the Addon plugin (.zip file) to your desktop"
500
- msgstr "تنزيل إضافة الملحقات (ملف .zip) إلى سطح مكتبك"
501
 
502
- #: ../classes/settings.php:488
503
- msgid "Navigate to"
504
- msgstr "انتقل إلى"
505
 
506
- #: ../classes/settings.php:488
507
- msgid "Plugins > Add New > Upload"
508
- msgstr "إضافات > أضف جديد > تحميل"
509
 
510
- #: ../classes/settings.php:489
511
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
512
- msgstr "استخدام الرافع للتصفح واختيار وتثبيت (ملف .zip) الخاص بإضافتك"
513
 
514
- #: ../classes/settings.php:490
515
- msgid ""
516
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
517
- "link"
518
- msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
519
 
520
- #: ../classes/settings.php:491
521
- msgid "The Add-on is now installed and activated!"
522
- msgstr "تم تنصيب وتفعيل الملحق!"
523
 
524
- #: ../classes/settings.php:492
525
- #, php-format
526
- msgid ""
527
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
528
- msgstr "من أجل التحديثات الإضافية تأكد من <a href='%s'>إدخال مفتاح رخصتك</a>."
529
 
530
- #: ../classes/settings.php:502
531
- msgid "Start using Admin Columns"
532
- msgstr "البدء باستخدام Admin Columns"
533
 
534
- #: ../classes/settings.php:580
535
- msgid "Store settings"
536
- msgstr "حفظ الإعدادات"
537
 
538
- #: ../classes/settings.php:585
539
- msgid "Update"
540
- msgstr "تحديث"
541
 
542
- #: ../classes/settings.php:585
543
- msgid "Publish"
544
- msgstr "نشر"
 
545
 
546
- #: ../classes/settings.php:589
547
- #, php-format
548
- msgid ""
549
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
550
- "\\' to delete, \\'Cancel\\' to stop"
551
- msgstr ""
552
- "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' "
553
- "للحذف، \\'إلغاء\\' للإيقاف"
554
 
555
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
556
- #: ../classes/column/post/actions.php:53
557
- msgid "Restore"
558
- msgstr "استرجاع"
559
 
560
- #: ../classes/settings.php:590
561
- msgid "columns"
562
- msgstr "أعمدة"
563
 
564
- #: ../classes/settings.php:600
565
- msgid "Get the Pro Add-on"
566
- msgstr "احصل على الملحق الإحترافي"
567
 
568
- #: ../classes/settings.php:604
569
- msgid "Add Sorting"
570
- msgstr "أضف ترتيب"
571
 
572
- #: ../classes/settings.php:605
573
- msgid "Add Filtering"
574
- msgstr "أضف تصفية"
575
 
576
- #: ../classes/settings.php:606
577
- msgid "Add Import/Export"
578
- msgstr "أضف استيراد/تصدير"
579
 
580
- #: ../classes/settings.php:609
581
- #, php-format
582
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
583
- msgstr "تعرف على <a href=\"%s\">الملحق الإحترافي</a> للمزيد من التفاصيل!"
584
 
585
- #: ../classes/settings.php:617
586
- msgid "Support"
587
- msgstr "دعم"
588
 
589
- #: ../classes/settings.php:620
590
- msgid "Check the <strong>Help</strong> section in the top-right screen."
591
- msgstr ""
592
- "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
593
 
594
- #: ../classes/settings.php:622
595
- #, php-format
596
- msgid ""
597
- "For full documentation, bug reports, feature suggestions and other tips <a "
598
- "href='%s'>visit the Admin Columns website</a>"
599
- msgstr ""
600
- "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من "
601
- "النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
602
 
603
- #: ../classes/settings.php:642
604
- msgid "Drag and drop to reorder"
605
- msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
606
 
607
- #: ../classes/settings.php:645
608
- msgid "Add Column"
609
- msgstr "أضف عمود"
610
 
611
- #: ../classes/settings.php:696
612
- msgid "General Settings"
613
- msgstr "إعدادات عامة"
614
 
615
- #: ../classes/settings.php:697
616
- msgid "Customize your Admin Columns settings."
617
- msgstr "قم بتخصيص إعدادات Admin Columns."
618
 
619
- #: ../classes/settings.php:710
620
- msgid "Show hidden custom fields. Default is <code>off</code>."
621
- msgstr "إظهار الحقول المخصوصة المخفية. الإفتراضي هو <code>لا</code>."
622
 
623
- #: ../classes/settings.php:716
624
- msgid ""
625
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
626
- msgstr ""
627
- "إظهار زر \"تحرير الأعمدة\" على الشاشات الإدارية. الإفتراضي هو <code>لا</"
628
- "code>."
629
 
630
- #: ../classes/settings.php:723
631
- msgid "Save"
632
- msgstr "حفظ"
633
 
634
- #: ../classes/settings.php:763
635
- msgid "Restore Settings"
636
- msgstr "استرجاع الإعدادات"
637
 
638
- #: ../classes/settings.php:764
639
- msgid "This will delete all column settings and restore the default settings."
640
- msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
641
 
642
- #: ../classes/settings.php:770
643
- msgid "Restore default settings"
644
- msgstr "استرجاع الإعدادات الإفتراضية"
645
 
646
- #: ../classes/settings.php:770
647
- msgid ""
648
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
649
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
650
- msgstr ""
651
- "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. "
652
- "\\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
653
 
654
- #: ../classes/storage_model.php:167
655
- msgid "settings succesfully restored."
656
- msgstr "تمت إستعادة الإعدادات بنجاح."
657
 
658
- #: ../classes/storage_model.php:181
659
- msgid "No columns settings available."
660
- msgstr "لا توجد إعدادات أعمدة متوفرة."
661
 
662
- #: ../classes/storage_model.php:204
663
- #, php-format
664
- msgid "You are trying to store the same settings for %s."
665
- msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
666
 
667
- #: ../classes/storage_model.php:208
668
- #, php-format
669
- msgid "Settings for %s updated succesfully."
670
- msgstr "إعدادات %s تم تحديثها بنجاح."
671
 
672
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
673
- msgid "View"
674
- msgstr "عرض"
675
 
676
- #: ../classes/upgrade.php:45
677
- msgid "Upgrade"
678
- msgstr "تحديث"
 
679
 
680
- #: ../classes/upgrade.php:90
681
- msgid "requires a database upgrade"
682
- msgstr "يتطلب ترقية قاعدة البيانات"
 
683
 
684
- #: ../classes/upgrade.php:93
685
- msgid "why?"
686
- msgstr "لماذا؟"
687
 
688
- #: ../classes/upgrade.php:94
689
- msgid "Please"
690
- msgstr "فضلا"
691
 
692
- #: ../classes/upgrade.php:95
693
- msgid "backup your database"
694
- msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
 
 
 
 
 
 
695
 
696
- #: ../classes/upgrade.php:96
697
- msgid "then click"
698
- msgstr "ثم انقر"
699
 
700
- #: ../classes/upgrade.php:304
701
- msgid "Migrating Column Settings"
702
- msgstr "نقل إعدادات الأعمدة"
703
 
704
- #: ../classes/upgrade.php:340
705
- msgid "No Upgrade Required"
706
- msgstr "لا تحديث مطلوب"
 
707
 
708
- #: ../classes/upgrade.php:341
709
- msgid "Return to welcome screen."
710
- msgstr "رجوع إلى صفحة الترحيب."
711
 
712
- #: ../classes/upgrade.php:359
713
- msgid "Upgrade Complete!"
714
- msgstr "اكتمل التحديث"
 
 
 
715
 
716
- #: ../classes/upgrade.php:359
717
- msgid "Return to settings."
718
- msgstr "العودة للإعدادات."
719
-
720
- #: ../classes/upgrade.php:360
721
- msgid "Error"
722
- msgstr "خطأ"
723
 
724
- #: ../classes/upgrade.php:361
725
  msgid ""
726
- "Sorry. Something went wrong during the upgrade process. Please report this "
727
- "on the support forum."
728
  msgstr ""
729
- "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
730
-
731
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
732
- msgid "Media Library"
733
- msgstr "مكتبة الوسائط"
734
-
735
- #: ../classes/column/custom-field.php:79
736
- msgid "Post Title (Post ID's)"
737
- msgstr "عنوان تدوينة (أرقام تدوينات)"
738
-
739
- #: ../classes/column/custom-field.php:80
740
- msgid "Username (User ID's)"
741
- msgstr "اسم مستخدم (أرقام مستخدمين)"
742
-
743
- #: ../classes/column/custom-field.php:81
744
- msgid "Checkmark (true/false)"
745
- msgstr "علامة إختيار (صح/خطأ)"
746
-
747
- #: ../classes/column/custom-field.php:324
748
- msgid "Select your custom field."
749
- msgstr "اختر حقلك المخصوص"
750
-
751
- #: ../classes/column/custom-field.php:334
752
- msgid "No custom fields available."
753
- msgstr "لا توجد حقول مخصوصة متوفرة."
754
-
755
- #: ../classes/column/custom-field.php:341
756
- msgid "Field Type"
757
- msgstr "نوع الحقل"
758
-
759
- #: ../classes/column/custom-field.php:341
760
- msgid "This will determine how the value will be displayed."
761
- msgstr "هذا سيحدد كيف سيتم عرض القيمة."
762
-
763
- #: ../classes/column/custom-field.php:384
764
- msgid "Before"
765
- msgstr "قبل"
766
-
767
- #: ../classes/column/custom-field.php:384
768
- msgid "This text will appear before the custom field value."
769
- msgstr "هذا النص سيظهر قبل الحقل المخصوص."
770
-
771
- #: ../classes/column/custom-field.php:390
772
- msgid "After"
773
- msgstr "بعد"
774
-
775
- #: ../classes/column/custom-field.php:390
776
- msgid "This text will appear after the custom field value."
777
- msgstr "هذا النص سيظهر بعد الحقل المخصوص."
778
-
779
- #: ../classes/column/comment/actions.php:14
780
- #: ../classes/column/link/actions.php:14
781
- #: ../classes/column/media/actions.php:14
782
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
783
- msgid "Actions"
784
- msgstr "تطبيقات"
785
-
786
- #: ../classes/column/comment/actions.php:73
787
- #: ../classes/column/comment/actions.php:78
788
- msgid "Unapprove"
789
- msgstr "إلغاء الموافقة"
790
-
791
- #: ../classes/column/comment/actions.php:75
792
- #: ../classes/column/comment/actions.php:77
793
- msgid "Approve"
794
- msgstr "موافقة"
795
-
796
- #: ../classes/column/comment/actions.php:90
797
- #: ../classes/column/post/actions.php:57
798
- msgid "Delete Permanently"
799
- msgstr "حذف نهائي"
800
 
801
- #: ../classes/column/comment/actions.php:96
802
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
803
- #: ../classes/column/user/actions.php:57
804
- msgid "Edit"
805
- msgstr "تحرير"
806
 
807
- #: ../classes/column/comment/actions.php:97
808
- #: ../classes/column/post/actions.php:49
809
- msgid "Quick&nbsp;Edit"
810
- msgstr "تحرير سريع"
 
 
 
811
 
812
- #: ../classes/column/comment/actions.php:98
813
- msgid "Reply"
814
- msgstr "رد"
 
 
 
 
815
 
816
- #: ../classes/column/comment/agent.php:12
817
- msgid "Agent"
818
- msgstr "عميل"
 
 
 
819
 
820
- #: ../classes/column/comment/approved.php:12
821
- #: ../classes/column/post/comment-count.php:31
822
- msgid "Approved"
823
- msgstr "موافق عليه"
824
 
825
- #: ../classes/column/comment/author-avatar.php:12
826
- msgid "Avatar"
827
- msgstr "صورة"
 
828
 
829
- #: ../classes/column/comment/author-email.php:12
830
- msgid "Author email"
831
- msgstr "بريد الكاتب"
 
 
 
 
832
 
833
- #: ../classes/column/comment/author-ip.php:12
834
- msgid "Author IP"
835
- msgstr "عنوان آي بي الكاتب"
 
 
 
 
 
 
 
836
 
837
- #: ../classes/column/comment/author-url.php:12
838
- msgid "Author url"
839
- msgstr "عنوان موقع الكاتب"
840
 
841
- #: ../classes/column/comment/author.php:12
842
- msgid "Author"
843
- msgstr "الكاتب"
844
 
845
- #: ../classes/column/comment/date-gmt.php:12
846
- msgid "Date GMT"
847
- msgstr "تاريخ GMT"
848
 
849
- #: ../classes/column/comment/date-gmt.php:25
850
- #: ../classes/column/comment/date.php:25
851
- #, php-format
852
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
853
- msgstr "أرسل في <a href=\"%1$s\">%2$s في %3$s</a>"
854
 
855
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
856
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
857
- msgid "ID"
858
- msgstr "رقم"
859
 
860
- #: ../classes/column/comment/reply-to.php:12
861
- msgid "In Reply To"
862
- msgstr "ردا على"
863
 
864
- #: ../classes/column/comment/word-count.php:12
865
- #: ../classes/column/post/word-count.php:12
866
- msgid "Word count"
867
- msgstr "عدد الكلمات"
868
 
869
- #: ../classes/column/link/actions.php:46
870
- #, php-format
871
  msgid ""
872
- "You are about to delete this link '%s'\n"
873
- " 'Cancel' to stop, 'OK' to delete."
874
  msgstr ""
875
- "انت على وشك حذف هذا الرابط '%s'\n"
876
- " 'إلغاء' للإيقاف، 'موافق' للحذف."
877
-
878
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
879
- msgid "Delete"
880
- msgstr "مسح"
881
-
882
- #: ../classes/column/link/description.php:12
883
- #: ../classes/column/media/description.php:12
884
- #: ../classes/column/user/description.php:14
885
- msgid "Description"
886
- msgstr "وصف"
887
-
888
- #: ../classes/column/link/length.php:12
889
- msgid "Length"
890
- msgstr "طول"
891
 
892
- #: ../classes/column/link/notes.php:13
893
- msgid "Notes"
894
- msgstr "ملاحظات"
895
 
896
- #: ../classes/column/link/owner.php:12
897
- msgid "Owner"
898
- msgstr "مالك"
899
 
900
- #: ../classes/column/link/rss.php:12
901
- msgid "Rss"
902
- msgstr "Rss"
 
 
 
903
 
904
- #: ../classes/column/link/target.php:12
905
- msgid "Target"
906
- msgstr "هدف"
907
 
908
- #: ../classes/column/media/alternate-text.php:12
909
- msgid "Alt"
910
- msgstr "بديل"
911
 
912
- #: ../classes/column/media/available-sizes.php:14
913
- msgid "Available Sizes"
914
- msgstr "الأحجام المتوفرة"
915
 
916
- #: ../classes/column/media/available-sizes.php:37
917
- msgid "full size"
918
- msgstr "حجم كامل"
919
 
920
- #: ../classes/column/media/caption.php:12
921
- #: ../classes/column/media/exif-data.php:36
922
- msgid "Caption"
923
- msgstr "شرح"
 
 
 
 
 
924
 
925
- #: ../classes/column/media/dimensions.php:12
926
- msgid "Dimensions"
927
- msgstr "أبعاد"
 
928
 
929
- #: ../classes/column/media/exif-data.php:12
930
- msgid "EXIF data"
931
- msgstr "بيانات EXIF"
932
 
933
- #: ../classes/column/media/exif-data.php:33
934
- msgid "Aperture"
935
- msgstr "فتحة"
936
 
937
- #: ../classes/column/media/exif-data.php:34
938
- msgid "Credit"
939
- msgstr "شرف"
940
 
941
- #: ../classes/column/media/exif-data.php:35
942
- msgid "Camera"
943
- msgstr "كاميرا"
944
 
945
- #: ../classes/column/media/exif-data.php:37
946
- msgid "Timestamp"
947
- msgstr "طابع زمني"
948
 
949
- #: ../classes/column/media/exif-data.php:38
950
- msgid "Copyright EXIF"
951
- msgstr "بيانات EXIF حق النشر"
952
 
953
- #: ../classes/column/media/exif-data.php:39
954
- msgid "Focal Length"
955
- msgstr "بعد بؤري"
 
 
 
 
956
 
957
- #: ../classes/column/media/exif-data.php:40
958
- msgid "ISO"
959
- msgstr "ISO"
960
 
961
- #: ../classes/column/media/exif-data.php:41
962
- msgid "Shutter Speed"
963
- msgstr "سرعة مصراع"
964
 
965
- #: ../classes/column/media/exif-data.php:42
966
- msgid "Title"
967
- msgstr "عنوان"
968
 
969
- #: ../classes/column/media/file-name.php:12
970
- msgid "File name"
971
- msgstr "اسم ملف"
 
 
 
 
 
972
 
973
- #: ../classes/column/media/file-size.php:12
974
- msgid "File size"
975
- msgstr "حجم ملف"
976
 
977
- #: ../classes/column/media/full-path.php:12
978
- msgid "Full path"
979
- msgstr "مسار كامل"
980
 
981
- #: ../classes/column/media/height.php:12
982
- msgid "Height"
983
- msgstr "إرتفاع"
 
 
 
 
 
984
 
985
- #: ../classes/column/media/mime-type.php:12
986
- msgid "Mime type"
987
- msgstr "نوع Mime"
988
 
989
- #: ../classes/column/post/actions.php:48
990
- msgid "Edit this item"
991
- msgstr "تحرير هذا العنصر"
 
 
 
 
992
 
993
- #: ../classes/column/post/actions.php:49
994
- msgid "Edit this item inline"
995
- msgstr "تحرير هذا العنصر داخليا"
996
 
997
- #: ../classes/column/post/actions.php:53
998
- msgid "Restore this item from the Trash"
999
- msgstr "استعادة هذا العنصر من المهملات"
1000
 
1001
- #: ../classes/column/post/actions.php:55
1002
- msgid "Move this item to the Trash"
1003
- msgstr "نقل هذا العنصر إلى المهملات"
1004
 
1005
- #: ../classes/column/post/actions.php:55
1006
- #: ../classes/column/post/comment-count.php:34
1007
- #: ../classes/column/post/status.php:35
1008
- msgid "Trash"
1009
- msgstr "المهملات"
1010
 
1011
- #: ../classes/column/post/actions.php:57
1012
- msgid "Delete this item permanently"
1013
- msgstr "حذف هذا العنصر نهائيا"
 
 
 
 
1014
 
1015
- #: ../classes/column/post/actions.php:62
1016
- #, php-format
1017
- msgid "Preview &#8220;%s&#8221;"
1018
- msgstr "معاينة &#8220;%s&#8221;"
1019
 
1020
- #: ../classes/column/post/actions.php:62
1021
- msgid "Preview"
1022
- msgstr "معاينة"
1023
 
1024
- #: ../classes/column/post/actions.php:64
1025
- #, php-format
1026
- msgid "View &#8220;%s&#8221;"
1027
- msgstr "عرض &#8220;%s&#8221;"
1028
 
1029
- #: ../classes/column/post/attachment-count.php:12
1030
- msgid "No. of Attachments"
1031
- msgstr "عدد المرفقات"
1032
 
1033
- #: ../classes/column/post/attachment.php:12
1034
- msgid "Attachment"
1035
- msgstr "مرفق"
1036
 
1037
- #: ../classes/column/post/author-name.php:12
1038
- msgid "Display Author As"
1039
- msgstr "عرض الكاتب كـ"
1040
 
1041
- #: ../classes/column/post/author-name.php:33
1042
- msgid "Display Name"
1043
- msgstr "اسم العرض"
1044
 
1045
- #: ../classes/column/post/author-name.php:34
1046
- msgid "First Name"
1047
- msgstr "الاسم الأول"
1048
 
1049
- #: ../classes/column/post/author-name.php:35
1050
- msgid "Last Name"
1051
- msgstr "الاسم الأخير"
1052
 
1053
- #: ../classes/column/post/author-name.php:36
1054
- #: ../classes/column/user/nickname.php:14
1055
- msgid "Nickname"
1056
- msgstr "الاسم المستعار"
1057
 
1058
- #: ../classes/column/post/author-name.php:37
1059
- msgid "User Login"
1060
- msgstr "اسم الدخول"
1061
 
1062
- #: ../classes/column/post/author-name.php:38
1063
- msgid "User Email"
1064
- msgstr "بريد المستخدم"
 
 
1065
 
1066
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1067
- msgid "User ID"
1068
- msgstr "رقم المستخدم"
1069
 
1070
- #: ../classes/column/post/author-name.php:40
1071
- msgid "First and Last Name"
1072
- msgstr "الاسم الأول والأخير"
 
 
1073
 
1074
- #: ../classes/column/post/author-name.php:106
1075
- msgid "This is the format of the author name."
1076
- msgstr "هذا هو تنسيق اسم الكاتب."
1077
 
1078
- #: ../classes/column/post/before-moretag.php:14
1079
- msgid "Before More Tag"
1080
- msgstr "قبل وسم المزيد"
1081
 
1082
- #: ../classes/column/post/comment-count.php:14
1083
- msgid "Comment count"
1084
- msgstr "عدد التعليقات"
1085
 
1086
- #: ../classes/column/post/comment-count.php:30
1087
- msgid "Total"
1088
- msgstr "المجموع"
1089
 
1090
- #: ../classes/column/post/comment-count.php:32
1091
- msgid "Pending"
1092
- msgstr "بالانتظار"
 
 
 
1093
 
1094
- #: ../classes/column/post/comment-count.php:33
1095
- msgid "Spam"
1096
- msgstr "مزعج"
1097
 
1098
- #: ../classes/column/post/comment-count.php:78
1099
- #: ../classes/column/post/comment-status.php:14
1100
- msgid "Comment status"
1101
- msgstr "حالة التعليق"
1102
 
1103
- #: ../classes/column/post/comment-count.php:78
1104
- msgid "Select which comment status you like to display."
1105
- msgstr "اختر حالة التعليق الذي تريد عرضه."
1106
 
1107
- #: ../classes/column/post/featured-image.php:14
1108
- msgid "Featured Image"
1109
- msgstr "الصورة المميزة"
1110
 
1111
- #: ../classes/column/post/formats.php:14
1112
- msgid "Post Format"
1113
- msgstr "تنسيق التدوينة"
 
 
 
 
1114
 
1115
- #: ../classes/column/post/modified.php:14
1116
- msgid "Last modified"
1117
- msgstr "آخر تحديث"
1118
 
1119
- #: ../classes/column/post/order.php:14
1120
- msgid "Page Order"
1121
- msgstr "ترتيب الصفحة"
 
1122
 
1123
- #: ../classes/column/post/page-template.php:12
1124
- msgid "Page Template"
1125
- msgstr "قالب الصفحة"
1126
 
1127
- #: ../classes/column/post/parent.php:12
1128
- msgid "Parent"
1129
- msgstr "الأب"
 
1130
 
1131
- #: ../classes/column/post/ping-status.php:14
1132
- msgid "Ping status"
1133
- msgstr "حالة التنبيه"
1134
 
1135
- #: ../classes/column/post/roles.php:14
1136
- msgid "Roles"
1137
- msgstr "الأدوار"
1138
 
1139
- #: ../classes/column/post/slug.php:12
1140
- msgid "Slug"
1141
- msgstr "الاسم اللطيف"
 
 
 
 
 
1142
 
1143
- #: ../classes/column/post/status.php:14
1144
- msgid "Status"
1145
- msgstr "الحالة"
1146
 
1147
- #: ../classes/column/post/status.php:30
1148
- msgid "Published"
1149
- msgstr "منشور"
1150
 
1151
- #: ../classes/column/post/status.php:31
1152
- msgid "Draft"
1153
- msgstr "مسودة"
1154
 
1155
- #: ../classes/column/post/status.php:32
1156
- msgid "Scheduled"
1157
- msgstr "مجدول"
1158
 
1159
- #: ../classes/column/post/status.php:33
1160
- msgid "Private"
1161
- msgstr "خاص"
1162
 
1163
- #: ../classes/column/post/status.php:34
1164
- msgid "Pending Review"
1165
- msgstr "بانتظار المراجعة"
 
1166
 
1167
- #: ../classes/column/post/sticky.php:14
1168
- msgid "Sticky"
1169
- msgstr "لاصق"
1170
 
1171
- #: ../classes/column/post/taxonomy.php:12
1172
- #: ../classes/column/post/taxonomy.php:68
1173
- msgid "Taxonomy"
1174
- msgstr "التصنيف"
1175
 
1176
- #: ../classes/column/user/comment-count.php:14
1177
- msgid "Comment Count"
1178
- msgstr "عدد التعليقات"
 
 
 
 
 
1179
 
1180
- #: ../classes/column/user/first-name.php:14
1181
- msgid "First name"
1182
- msgstr "الاسم الأول"
1183
 
1184
- #: ../classes/column/user/last-name.php:14
1185
- msgid "Last name"
1186
- msgstr "الاسم الأخير"
1187
 
1188
- #: ../classes/column/user/post-count.php:14
1189
- msgid "Post Count"
1190
- msgstr "عدد التدوينات"
1191
 
1192
- #: ../classes/column/user/post-count.php:92
1193
- msgid "Post Type"
1194
- msgstr "نوع تدوبنة"
1195
 
1196
- #: ../classes/column/user/registered.php:14
1197
- msgid "Registered"
1198
- msgstr "مسجل"
 
1199
 
1200
- #: ../classes/column/user/url.php:14
1201
- msgid "Url"
1202
- msgstr "عنوان موقع"
 
1203
 
1204
  #: ../classes/storage_model/comment.php:13
1205
  msgid "Comments"
@@ -1212,3 +1181,65 @@ msgstr "وصلات"
1212
  #: ../classes/storage_model/user.php:13
1213
  msgid "Users"
1214
  msgstr "مستخدمون"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:44+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
+ "Language: ar\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\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.6.4\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
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
27
  msgid "Thumbnail"
28
  msgstr "صورة مصغرة"
29
 
30
+ #: ../classes/column.php:498
31
  msgid "Medium"
32
  msgstr "وسط"
33
 
34
+ #: ../classes/column.php:499
35
  msgid "Large"
36
  msgstr "كبير"
37
 
38
+ #: ../classes/column.php:500
39
  msgid "Full"
40
  msgstr "كامل"
41
 
42
+ #: ../classes/column.php:792
43
  msgid "Date Format"
44
  msgstr "تنسيق التاريخ"
45
 
46
+ #: ../classes/column.php:793
47
  msgid "This will determine how the date will be displayed."
48
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
49
 
50
+ #: ../classes/column.php:799
51
  msgid "Example:"
52
  msgstr "مثال:"
53
 
54
+ #: ../classes/column.php:801
55
  #, php-format
56
  msgid ""
57
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
60
  "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق "
61
  "التاريخ الخاص بك هنا</a>."
62
 
63
+ #: ../classes/column.php:802
64
  msgid "Documentation on date and time formatting."
65
  msgstr "توثيق حول تنسيق التاريخ والوقت."
66
 
67
+ #: ../classes/column.php:820
68
  msgid "Excerpt length"
69
  msgstr "طول المقتطف"
70
 
71
+ #: ../classes/column.php:821
72
  msgid "Number of words"
73
  msgstr "عدد الكلمات"
74
 
75
+ #: ../classes/column.php:843
76
  msgid "Preview size"
77
  msgstr "حجم المعاينة"
78
 
79
+ #: ../classes/column.php:860 ../classes/column.php:939
80
  msgid "Custom"
81
  msgstr "مخصوص"
82
 
83
+ #: ../classes/column.php:863
84
  msgid "width"
85
  msgstr "عرض"
86
 
87
+ #: ../classes/column.php:866
88
  msgid "height"
89
  msgstr "إرتفاع"
90
 
91
+ #: ../classes/column.php:882
92
+ msgid "Before"
93
+ msgstr "قبل"
94
+
95
+ #: ../classes/column.php:882
96
+ msgid "This text will appear before the custom field value."
97
+ msgstr "هذا النص سيظهر قبل الحقل المخصوص."
98
+
99
+ #: ../classes/column.php:888
100
+ msgid "After"
101
+ msgstr "بعد"
102
+
103
+ #: ../classes/column.php:888
104
+ msgid "This text will appear after the custom field value."
105
+ msgstr "هذا النص سيظهر بعد الحقل المخصوص."
106
+
107
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
108
+ #: ../classes/settings.php:212
109
  msgid "Default"
110
  msgstr "إفتراضي"
111
 
112
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
113
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
114
+ #: ../classes/column/user/actions.php:66
115
+ msgid "Edit"
116
+ msgstr "تحرير"
117
+
118
+ #: ../classes/column.php:963 ../classes/column.php:1024
119
+ #: ../classes/column/user/actions.php:74
120
  msgid "Remove"
121
  msgstr "إزالة"
122
 
123
+ #: ../classes/column.php:981
124
  msgid "Type"
125
  msgstr "نوع"
126
 
127
+ #: ../classes/column.php:981
128
  msgid "Choose a column type."
129
  msgstr "اختر نوع عمود"
130
 
131
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
132
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
133
+ #: ../classes/column/post/ID.php:12
134
+ msgid "ID"
135
+ msgstr "رقم"
136
+
137
+ #: ../classes/column.php:991
138
  msgid "Label"
139
  msgstr "العنوان"
140
 
141
+ #: ../classes/column.php:991
142
  msgid "This is the name which will appear as the column header."
143
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
144
 
145
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
146
  msgid "Width"
147
  msgstr "عرض"
148
 
149
+ #: ../classes/column.php:1000 ../classes/column.php:1001
150
  msgid "default"
151
  msgstr "إفتراضي"
152
 
153
+ #: ../classes/column/comment/actions.php:14
154
+ #: ../classes/column/link/actions.php:14
155
+ #: ../classes/column/media/actions.php:14
156
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
157
+ msgid "Actions"
158
+ msgstr "تطبيقات"
159
 
160
+ #: ../classes/column/comment/actions.php:73
161
+ #: ../classes/column/comment/actions.php:78
162
+ msgid "Unapprove"
163
+ msgstr "إلغاء الموافقة"
164
 
165
+ #: ../classes/column/comment/actions.php:75
166
+ #: ../classes/column/comment/actions.php:77
167
+ msgid "Approve"
168
+ msgstr "موافقة"
169
 
170
+ #: ../classes/column/comment/actions.php:86
171
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
172
+ msgid "Restore"
173
+ msgstr "استرجاع"
174
 
175
+ #: ../classes/column/comment/actions.php:90
176
+ #: ../classes/column/post/actions.php:57
177
+ msgid "Delete Permanently"
178
+ msgstr "حذف نهائي"
179
 
180
+ #: ../classes/column/comment/actions.php:97
181
+ #: ../classes/column/post/actions.php:49
182
+ msgid "Quick&nbsp;Edit"
183
+ msgstr "تحرير سريع"
 
 
 
 
 
184
 
185
+ #: ../classes/column/comment/actions.php:98
186
+ msgid "Reply"
187
+ msgstr "رد"
188
 
189
+ #: ../classes/column/comment/agent.php:12
190
+ msgid "Agent"
191
+ msgstr "عميل"
192
 
193
+ #: ../classes/column/comment/approved.php:12
194
+ #: ../classes/column/post/comment-count.php:31
195
+ msgid "Approved"
196
+ msgstr "موافق عليه"
197
 
198
+ #: ../classes/column/comment/author-avatar.php:12
199
+ msgid "Avatar"
200
+ msgstr "صورة"
201
 
202
+ #: ../classes/column/comment/author-email.php:12
203
+ msgid "Author email"
204
+ msgstr "بريد الكاتب"
205
+
206
+ #: ../classes/column/comment/author-ip.php:12
207
+ msgid "Author IP"
208
+ msgstr "عنوان آي بي الكاتب"
209
+
210
+ #: ../classes/column/comment/author-url.php:12
211
+ msgid "Author url"
212
+ msgstr "عنوان موقع الكاتب"
213
+
214
+ #: ../classes/column/comment/author.php:12
215
+ msgid "Author"
216
+ msgstr "الكاتب"
217
+
218
+ #: ../classes/column/comment/date-gmt.php:12
219
+ msgid "Date GMT"
220
+ msgstr "تاريخ GMT"
221
+
222
+ #: ../classes/column/comment/date-gmt.php:25
223
+ #: ../classes/column/comment/date.php:25
224
+ #, php-format
225
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
226
+ msgstr "أرسل في <a href=\"%1$s\">%2$s في %3$s</a>"
227
+
228
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
229
+ #: ../classes/settings.php:217
230
+ msgid "Date"
231
+ msgstr "تاريخ"
232
 
233
+ #: ../classes/column/comment/excerpt.php:13
234
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
235
  #: ../classes/settings.php:214
236
+ msgid "Excerpt"
237
+ msgstr "مقتطف"
238
 
239
+ #: ../classes/column/comment/reply-to.php:12
240
+ msgid "In Reply To"
241
+ msgstr "ردا على"
242
+
243
+ #: ../classes/column/comment/word-count.php:12
244
+ #: ../classes/column/post/word-count.php:12
245
+ msgid "Word count"
246
+ msgstr "عدد الكلمات"
247
 
248
+ #: ../classes/column/custom-field.php:16
249
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
250
  msgid "Custom Field"
251
  msgstr "حقل مخصوص"
252
 
253
+ #: ../classes/column/custom-field.php:66
254
+ msgid "Checkmark (true/false)"
255
+ msgstr "علامة إختيار (صح/خطأ)"
256
 
257
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
258
+ msgid "Color"
259
+ msgstr "لون"
 
 
 
 
260
 
261
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
262
+ msgid "Counter"
 
 
263
  msgstr ""
 
 
264
 
265
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
266
+ #: ../classes/settings.php:213
267
  msgid "Image"
268
  msgstr "صورة"
269
 
270
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
271
+ msgid "Media Library"
272
+ msgstr "مكتبة الوسائط"
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
275
  msgid "Multiple Values"
276
  msgstr "قيم متعددة"
277
 
278
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
279
  msgid "Numeric"
280
  msgstr "رقمي"
281
 
282
+ #: ../classes/column/custom-field.php:75
283
+ msgid "Post Title (Post ID's)"
284
+ msgstr "عنوان تدوينة (أرقام تدوينات)"
 
 
 
 
285
 
286
+ #: ../classes/column/custom-field.php:76
287
+ msgid "Username (User ID's)"
288
+ msgstr "اسم مستخدم (أرقام مستخدمين)"
289
+
290
+ #: ../classes/column/custom-field.php:377
291
+ msgid "Select your custom field."
292
+ msgstr "اختر حقلك المخصوص"
293
+
294
+ #: ../classes/column/custom-field.php:387
295
+ msgid "No custom fields available."
296
+ msgstr "لا توجد حقول مخصوصة متوفرة."
297
+
298
+ #: ../classes/column/custom-field.php:394
299
+ msgid "Field Type"
300
+ msgstr "نوع الحقل"
301
+
302
+ #: ../classes/column/custom-field.php:394
303
+ msgid "This will determine how the value will be displayed."
304
+ msgstr "هذا سيحدد كيف سيتم عرض القيمة."
305
 
306
+ #: ../classes/column/link/actions.php:46
307
  #, php-format
308
  msgid ""
309
+ "You are about to delete this link '%s'\n"
310
+ " 'Cancel' to stop, 'OK' to delete."
 
311
  msgstr ""
312
+ "انت على وشك حذف هذا الرابط '%s'\n"
313
+ " 'إلغاء' للإيقاف، 'موافق' للحذف."
 
 
 
 
 
314
 
315
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
316
+ msgid "Delete"
317
+ msgstr "مسح"
318
 
319
+ #: ../classes/column/link/description.php:12
320
+ #: ../classes/column/media/description.php:12
321
+ #: ../classes/column/user/description.php:14
322
+ msgid "Description"
323
+ msgstr "وصف"
324
 
325
+ #: ../classes/column/link/length.php:12
326
+ msgid "Length"
327
+ msgstr "طول"
328
 
329
+ #: ../classes/column/link/notes.php:13
330
+ msgid "Notes"
331
+ msgstr "ملاحظات"
332
 
333
+ #: ../classes/column/link/owner.php:12
334
+ msgid "Owner"
335
+ msgstr "مالك"
336
 
337
+ #: ../classes/column/link/rss.php:12
338
+ msgid "Rss"
339
+ msgstr "Rss"
340
 
341
+ #: ../classes/column/link/target.php:12
342
+ msgid "Target"
343
+ msgstr "هدف"
344
 
345
+ #: ../classes/column/media/alternate-text.php:12
346
+ msgid "Alt"
347
+ msgstr "بديل"
348
 
349
+ #: ../classes/column/media/available-sizes.php:14
350
+ msgid "Available Sizes"
351
+ msgstr "الأحجام المتوفرة"
352
 
353
+ #: ../classes/column/media/available-sizes.php:37
354
+ msgid "full size"
355
+ msgstr "حجم كامل"
 
 
 
356
 
357
+ #: ../classes/column/media/caption.php:12
358
+ #: ../classes/column/media/exif-data.php:36
359
+ msgid "Caption"
360
+ msgstr "شرح"
361
 
362
+ #: ../classes/column/media/dimensions.php:12
363
+ msgid "Dimensions"
364
+ msgstr "أبعاد"
365
 
366
+ #: ../classes/column/media/exif-data.php:12
367
+ msgid "EXIF data"
368
+ msgstr "بيانات EXIF"
369
 
370
+ #: ../classes/column/media/exif-data.php:33
371
+ msgid "Aperture"
372
+ msgstr "فتحة"
373
 
374
+ #: ../classes/column/media/exif-data.php:34
375
+ msgid "Credit"
376
+ msgstr "شرف"
 
 
 
 
 
 
377
 
378
+ #: ../classes/column/media/exif-data.php:35
379
+ msgid "Camera"
380
+ msgstr "كاميرا"
 
381
 
382
+ #: ../classes/column/media/exif-data.php:37
383
+ msgid "Timestamp"
384
+ msgstr "طابع زمني"
385
 
386
+ #: ../classes/column/media/exif-data.php:38
387
+ msgid "Copyright EXIF"
388
+ msgstr "بيانات EXIF حق النشر"
389
 
390
+ #: ../classes/column/media/exif-data.php:39
391
+ msgid "Focal Length"
392
+ msgstr "بعد بؤري"
393
 
394
+ #: ../classes/column/media/exif-data.php:40
395
+ msgid "ISO"
396
+ msgstr "ISO"
397
 
398
+ #: ../classes/column/media/exif-data.php:41
399
+ msgid "Shutter Speed"
400
+ msgstr "سرعة مصراع"
401
 
402
+ #: ../classes/column/media/exif-data.php:42
403
+ msgid "Title"
404
+ msgstr "عنوان"
405
 
406
+ #: ../classes/column/media/file-name.php:12
407
+ msgid "File name"
408
+ msgstr "اسم ملف"
 
 
 
 
409
 
410
+ #: ../classes/column/media/file-size.php:12
411
+ msgid "File size"
412
+ msgstr "حجم ملف"
413
 
414
+ #: ../classes/column/media/full-path.php:12
415
+ msgid "Full path"
416
+ msgstr "مسار كامل"
417
 
418
+ #: ../classes/column/media/height.php:12
419
+ msgid "Height"
420
+ msgstr "إرتفاع"
421
 
422
+ #: ../classes/column/media/mime-type.php:12
423
+ msgid "Mime type"
424
+ msgstr "نوع Mime"
 
 
 
 
 
425
 
426
+ #: ../classes/column/post/actions.php:48
427
+ msgid "Edit this item"
428
+ msgstr "تحرير هذا العنصر"
429
 
430
+ #: ../classes/column/post/actions.php:49
431
+ msgid "Edit this item inline"
432
+ msgstr "تحرير هذا العنصر داخليا"
433
 
434
+ #: ../classes/column/post/actions.php:53
435
+ msgid "Restore this item from the Trash"
436
+ msgstr "استعادة هذا العنصر من المهملات"
 
 
 
 
 
437
 
438
+ #: ../classes/column/post/actions.php:55
439
+ msgid "Move this item to the Trash"
440
+ msgstr "نقل هذا العنصر إلى المهملات"
441
 
442
+ #: ../classes/column/post/actions.php:55
443
+ #: ../classes/column/post/comment-count.php:34
444
+ #: ../classes/column/post/status.php:38
445
+ msgid "Trash"
446
+ msgstr "المهملات"
 
 
447
 
448
+ #: ../classes/column/post/actions.php:57
449
+ msgid "Delete this item permanently"
450
+ msgstr "حذف هذا العنصر نهائيا"
451
 
452
+ #: ../classes/column/post/actions.php:62
453
+ #, php-format
454
+ msgid "Preview &#8220;%s&#8221;"
455
+ msgstr "معاينة &#8220;%s&#8221;"
456
 
457
+ #: ../classes/column/post/actions.php:62
458
+ msgid "Preview"
459
+ msgstr "معاينة"
460
 
461
+ #: ../classes/column/post/actions.php:64
462
+ #, php-format
463
+ msgid "View &#8220;%s&#8221;"
464
+ msgstr "عرض &#8220;%s&#8221;"
465
 
466
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
467
+ msgid "View"
468
+ msgstr "عرض"
 
 
 
 
469
 
470
+ #: ../classes/column/post/attachment-count.php:12
471
+ msgid "No. of Attachments"
472
+ msgstr "عدد المرفقات"
 
473
 
474
+ #: ../classes/column/post/attachment.php:12
475
+ msgid "Attachment"
476
+ msgstr "مرفق"
477
 
478
+ #: ../classes/column/post/author-name.php:12
479
+ msgid "Display Author As"
480
+ msgstr "عرض الكاتب كـ"
481
 
482
+ #: ../classes/column/post/author-name.php:34
483
+ msgid "Display Name"
484
+ msgstr "اسم العرض"
485
 
486
+ #: ../classes/column/post/author-name.php:35
487
+ msgid "First Name"
488
+ msgstr "الاسم الأول"
489
 
490
+ #: ../classes/column/post/author-name.php:36
491
+ msgid "Last Name"
492
+ msgstr "الاسم الأخير"
493
 
494
+ #: ../classes/column/post/author-name.php:37
495
+ #: ../classes/column/user/nickname.php:14
496
+ msgid "Nickname"
497
+ msgstr "الاسم المستعار"
498
 
499
+ #: ../classes/column/post/author-name.php:38
500
+ msgid "User Login"
501
+ msgstr "اسم الدخول"
502
 
503
+ #: ../classes/column/post/author-name.php:39
504
+ msgid "User Email"
505
+ msgstr "بريد المستخدم"
506
 
507
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
508
+ msgid "User ID"
509
+ msgstr "رقم المستخدم"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
+ msgid "First and Last Name"
513
+ msgstr "الاسم الأول والأخير"
514
 
515
+ #: ../classes/column/post/author-name.php:118
516
+ msgid "This is the format of the author name."
517
+ msgstr "هذا هو تنسيق اسم الكاتب."
 
 
518
 
519
+ #: ../classes/column/post/before-moretag.php:14
520
+ msgid "Before More Tag"
521
+ msgstr "قبل وسم المزيد"
522
 
523
+ #: ../classes/column/post/comment-count.php:14
524
+ msgid "Comment count"
525
+ msgstr "عدد التعليقات"
 
 
526
 
527
+ #: ../classes/column/post/comment-count.php:30
528
+ msgid "Total"
529
+ msgstr "المجموع"
530
 
531
+ #: ../classes/column/post/comment-count.php:32
532
+ msgid "Pending"
533
+ msgstr "بالانتظار"
534
 
535
+ #: ../classes/column/post/comment-count.php:33
536
+ msgid "Spam"
537
+ msgstr "مزعج"
538
 
539
+ #: ../classes/column/post/comment-count.php:95
540
+ #: ../classes/column/post/comment-status.php:14
541
+ msgid "Comment status"
542
+ msgstr "حالة التعليق"
543
 
544
+ #: ../classes/column/post/comment-count.php:95
545
+ msgid "Select which comment status you like to display."
546
+ msgstr "اختر حالة التعليق الذي تريد عرضه."
 
 
 
 
 
547
 
548
+ #: ../classes/column/post/featured-image.php:14
549
+ msgid "Featured Image"
550
+ msgstr "الصورة المميزة"
 
551
 
552
+ #: ../classes/column/post/formats.php:14
553
+ msgid "Post Format"
554
+ msgstr "تنسيق التدوينة"
555
 
556
+ #: ../classes/column/post/modified.php:14
557
+ msgid "Last modified"
558
+ msgstr "آخر تحديث"
559
 
560
+ #: ../classes/column/post/order.php:14
561
+ msgid "Page Order"
562
+ msgstr "ترتيب الصفحة"
563
 
564
+ #: ../classes/column/post/page-template.php:12
565
+ msgid "Page Template"
566
+ msgstr "قالب الصفحة"
567
 
568
+ #: ../classes/column/post/parent.php:12
569
+ msgid "Parent"
570
+ msgstr "الأب"
571
 
572
+ #: ../classes/column/post/ping-status.php:14
573
+ msgid "Ping status"
574
+ msgstr "حالة التنبيه"
 
575
 
576
+ #: ../classes/column/post/roles.php:14
577
+ msgid "Roles"
578
+ msgstr "الأدوار"
579
 
580
+ #: ../classes/column/post/slug.php:12
581
+ msgid "Slug"
582
+ msgstr "الاسم اللطيف"
 
583
 
584
+ #: ../classes/column/post/status.php:14
585
+ msgid "Status"
586
+ msgstr "الحالة"
 
 
 
 
 
587
 
588
+ #: ../classes/column/post/status.php:32
589
+ msgid "Published"
590
+ msgstr "منشور"
591
 
592
+ #: ../classes/column/post/status.php:33
593
+ msgid "Draft"
594
+ msgstr "مسودة"
595
 
596
+ #: ../classes/column/post/status.php:34
597
+ msgid "Scheduled"
598
+ msgstr "مجدول"
599
 
600
+ #: ../classes/column/post/status.php:35
601
+ msgid "Private"
602
+ msgstr "خاص"
603
 
604
+ #: ../classes/column/post/status.php:36
605
+ msgid "Pending Review"
606
+ msgstr "بانتظار المراجعة"
607
 
608
+ #: ../classes/column/post/status.php:37
609
+ #, fuzzy
610
+ msgid "Auto Draft"
611
+ msgstr "مسودة"
 
 
612
 
613
+ #: ../classes/column/post/sticky.php:14
614
+ msgid "Sticky"
615
+ msgstr "لاصق"
616
 
617
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
618
+ msgid "Taxonomy"
619
+ msgstr "التصنيف"
620
 
621
+ #: ../classes/column/user/comment-count.php:14
622
+ msgid "Comment Count"
623
+ msgstr "عدد التعليقات"
624
 
625
+ #: ../classes/column/user/first-name.php:14
626
+ msgid "First name"
627
+ msgstr "الاسم الأول"
628
 
629
+ #: ../classes/column/user/last-name.php:14
630
+ msgid "Last name"
631
+ msgstr "الاسم الأخير"
 
 
 
 
632
 
633
+ #: ../classes/column/user/post-count.php:14
634
+ msgid "Post Count"
635
+ msgstr "عدد التدوينات"
636
 
637
+ #: ../classes/column/user/post-count.php:99
638
+ msgid "Post Type"
639
+ msgstr "نوع تدوبنة"
640
 
641
+ #: ../classes/column/user/registered.php:14
642
+ msgid "Registered"
643
+ msgstr "مسجل"
 
644
 
645
+ #: ../classes/column/user/url.php:14
646
+ msgid "Url"
647
+ msgstr "عنوان موقع"
 
648
 
649
+ #: ../classes/settings.php:64
650
+ msgid "Admin Columns Settings"
651
+ msgstr "إعدادات Admin Columns"
652
 
653
+ #: ../classes/settings.php:64 ../classes/settings.php:635
654
+ #: ../classes/upgrade.php:89
655
+ msgid "Admin Columns"
656
+ msgstr "Admin Columns"
657
 
658
+ #: ../classes/settings.php:116
659
+ #, php-format
660
+ msgid "%s column is already present and can not be duplicated."
661
+ msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
662
 
663
+ #: ../classes/settings.php:172
664
+ msgid "Default settings succesfully restored."
665
+ msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
666
 
667
+ #: ../classes/settings.php:190 ../classes/settings.php:447
668
+ msgid "Overview"
669
+ msgstr "نظرة عامة"
670
 
671
+ #: ../classes/settings.php:193
672
+ msgid ""
673
+ "This plugin is for adding and removing additional columns to the "
674
+ "administration screens for post(types), pages, media library, comments, "
675
+ "links and users. Change the column's label and reorder them."
676
+ msgstr ""
677
+ "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) "
678
+ "التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير "
679
+ "تسمية الأعمدة وإعادة ترتيبها."
680
 
681
+ #: ../classes/settings.php:196
682
+ msgid "Basics"
683
+ msgstr "مبادئ"
684
 
685
+ #: ../classes/settings.php:198
686
+ msgid "Change order"
687
+ msgstr "تغيير الترتيب"
688
 
689
+ #: ../classes/settings.php:199
690
+ msgid ""
691
+ "By dragging the columns you can change the order which they will appear in."
692
+ msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
693
 
694
+ #: ../classes/settings.php:200
695
+ msgid "Change label"
696
+ msgstr "تغيير العنوان"
697
 
698
+ #: ../classes/settings.php:201
699
+ msgid ""
700
+ "By clicking on the triangle you will see the column options. Here you can "
701
+ "change each label of the columns heading."
702
+ msgstr ""
703
+ "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
704
 
705
+ #: ../classes/settings.php:202
706
+ msgid "Change column width"
707
+ msgstr "تغيير عرض العمود"
 
 
 
 
708
 
709
+ #: ../classes/settings.php:203
710
  msgid ""
711
+ "By clicking on the triangle you will see the column options. By using the "
712
+ "draggable slider you can set the width of the columns in percentages."
713
  msgstr ""
714
+ "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب "
715
+ "يمكنك تعيين عرض الأعمدة بالنسب المئوية."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
716
 
717
+ #: ../classes/settings.php:209
718
+ msgid "'Custom Field' column"
719
+ msgstr "عمود 'حقل مخصوص'"
 
 
720
 
721
+ #: ../classes/settings.php:210
722
+ msgid ""
723
+ "The custom field colum uses the custom fields from posts and users. There "
724
+ "are 10 types which you can set."
725
+ msgstr ""
726
+ "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 "
727
+ "أنواع يمكنك تعيينها."
728
 
729
+ #: ../classes/settings.php:212
730
+ msgid ""
731
+ "Value: Can be either a string or array. Arrays will be flattened and values "
732
+ "are seperated by a ',' comma."
733
+ msgstr ""
734
+ "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
735
+ "بـ '،' فاصلة."
736
 
737
+ #: ../classes/settings.php:213
738
+ msgid ""
739
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
740
+ "comma )."
741
+ msgstr ""
742
+ "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
743
 
744
+ #: ../classes/settings.php:214
745
+ msgid "Value: This will show the first 20 words of the Post content."
746
+ msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
 
747
 
748
+ #: ../classes/settings.php:215
749
+ msgid ""
750
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
751
+ msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
752
 
753
+ #: ../classes/settings.php:216
754
+ msgid ""
755
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
756
+ "for sorting, so you can sort your posts on numeric (custom field) values."
757
+ msgstr ""
758
+ "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام "
759
+ "هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
760
 
761
+ #: ../classes/settings.php:217
762
+ #, php-format
763
+ msgid ""
764
+ "Value: Can be unix time stamp or a date format as described in the <a "
765
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
766
+ "href='%s'>general settings</a> page."
767
+ msgstr ""
768
+ "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a "
769
+ "href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a "
770
+ "href='%s'>الإعدادات العامة</a>."
771
 
772
+ #: ../classes/settings.php:218
773
+ msgid "Post Titles"
774
+ msgstr "عناوين تدوينات"
775
 
776
+ #: ../classes/settings.php:218
777
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
778
+ msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
779
 
780
+ #: ../classes/settings.php:219
781
+ msgid "Usernames"
782
+ msgstr "أسماء مستخدمين"
783
 
784
+ #: ../classes/settings.php:219
785
+ msgid "Value: can be one or more User ID's (seperated by ',')."
786
+ msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
 
 
787
 
788
+ #: ../classes/settings.php:220
789
+ msgid "Checkmark"
790
+ msgstr "علامة اختيار"
 
791
 
792
+ #: ../classes/settings.php:220
793
+ msgid "Value: should be a 1 (one) or 0 (zero)."
794
+ msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
795
 
796
+ #: ../classes/settings.php:221
797
+ msgid "Value: hex value color, such as #808080."
798
+ msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
 
799
 
800
+ #: ../classes/settings.php:222
801
+ #, fuzzy
802
  msgid ""
803
+ "Value: Can be either a string or array. This will display a count of the "
804
+ "number of times the meta key is used by the item."
805
  msgstr ""
806
+ "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
807
+ "بـ '،' فاصلة."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
 
809
+ #: ../classes/settings.php:367
810
+ msgid "Welcome to Admin Columns"
811
+ msgstr "مرحبا في Admin Columns"
812
 
813
+ #: ../classes/settings.php:370
814
+ msgid "Thank you for updating to the latest version!"
815
+ msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
816
 
817
+ #: ../classes/settings.php:371
818
+ msgid ""
819
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
820
+ "like it."
821
+ msgstr ""
822
+ "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
823
 
824
+ #: ../classes/settings.php:376
825
+ msgid "What’s New"
826
+ msgstr "ما الجديد"
827
 
828
+ #: ../classes/settings.php:377
829
+ msgid "Changelog"
830
+ msgstr "سجل التغييرات"
831
 
832
+ #: ../classes/settings.php:379
833
+ msgid "Download Addons"
834
+ msgstr "تنزيل الإضافات"
835
 
836
+ #: ../classes/settings.php:385
837
+ msgid "Addons"
838
+ msgstr "إضافات"
839
 
840
+ #: ../classes/settings.php:387
841
+ msgid ""
842
+ "Addons are now activated by downloading and installing individual plugins. "
843
+ "Although these plugins will not be hosted on the wordpress.org repository, "
844
+ "each Add-on will continue to receive updates in the usual way."
845
+ msgstr ""
846
+ "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من "
847
+ "أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة "
848
+ "بتلقي التحديثات بالطريقة المعتادة."
849
 
850
+ #: ../classes/settings.php:390
851
+ msgid ""
852
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
853
+ msgstr "هذا الموقع يستخدم ملحق الترتيب. يجب تنزيل هذه الإضافة."
854
 
855
+ #: ../classes/settings.php:393
856
+ msgid "Addons are seperate plugins which need to be downloaded."
857
+ msgstr "الملحقات هي إضافات منفصلة يجب تنزيلها."
858
 
859
+ #: ../classes/settings.php:393
860
+ msgid "Download your Addons"
861
+ msgstr "قم بتنزيل إضافاتك"
862
 
863
+ #: ../classes/settings.php:399
864
+ msgid "This website does not use add-ons"
865
+ msgstr "هذا الموقع لا يستخدم ملحقات"
866
 
867
+ #: ../classes/settings.php:399
868
+ msgid "See our website for the Pro-addon."
869
+ msgstr "انظر موقعنا للملحق الإحترافي."
870
 
871
+ #: ../classes/settings.php:406
872
+ msgid "Important"
873
+ msgstr "مهم"
874
 
875
+ #: ../classes/settings.php:408
876
+ msgid "Database Changes"
877
+ msgstr "تغييرات قاعدة البيانات"
878
 
879
+ #: ../classes/settings.php:409
880
+ msgid ""
881
+ "The database has been changed between versions 1 and 2. But we made sure you "
882
+ "can still roll back to version 1x without any issues."
883
+ msgstr ""
884
+ "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك "
885
+ "الرجوع إلى إصدار 1x دون أية مشاكل."
886
 
887
+ #: ../classes/settings.php:412
888
+ msgid "Make sure you backup your database and then click"
889
+ msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
890
 
891
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
892
+ msgid "Upgrade Database"
893
+ msgstr "تحديث قاعدة البيانات"
894
 
895
+ #: ../classes/settings.php:415
896
+ msgid "Potential Issues"
897
+ msgstr "مشاكل محتملة"
898
 
899
+ #: ../classes/settings.php:416
900
+ msgid ""
901
+ "Do to the sizable refactoring the code, surounding Addons and action/"
902
+ "filters, your website may not operate correctly. It is important that you "
903
+ "read the full"
904
+ msgstr ""
905
+ "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا "
906
+ "يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
907
 
908
+ #: ../classes/settings.php:416
909
+ msgid "Migrating from v1 to v2"
910
+ msgstr "الانتقال من النسخة 1 إلى النسخة 2"
911
 
912
+ #: ../classes/settings.php:416
913
+ msgid "guide to view the full list of changes."
914
+ msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
915
 
916
+ #: ../classes/settings.php:416
917
+ #, php-format
918
+ msgid ""
919
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
920
+ "can fix it in the next release."
921
+ msgstr ""
922
+ "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من "
923
+ "إصلاحها في النسخة القادمة."
924
 
925
+ #: ../classes/settings.php:419
926
+ msgid "Important!"
927
+ msgstr "مهم!"
928
 
929
+ #: ../classes/settings.php:419
930
+ msgid ""
931
+ "If you updated the Admin Columns plugin without prior knowledge of such "
932
+ "changes, Please roll back to the latest"
933
+ msgstr ""
934
+ "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع "
935
+ "لآخر"
936
 
937
+ #: ../classes/settings.php:419
938
+ msgid "version 1"
939
+ msgstr "النسخة 1"
940
 
941
+ #: ../classes/settings.php:419
942
+ msgid "of this plugin."
943
+ msgstr "من هذه الإضافة"
944
 
945
+ #: ../classes/settings.php:425
946
+ msgid "Changelog for"
947
+ msgstr "سجل التغييرات لـ"
948
 
949
+ #: ../classes/settings.php:440
950
+ msgid "Learn more"
951
+ msgstr "تعلم المزيد"
 
 
952
 
953
+ #: ../classes/settings.php:449
954
+ msgid ""
955
+ "New to v2, all Addons act as separate plugins which need to be individually "
956
+ "downloaded, installed and updated."
957
+ msgstr ""
958
+ "جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، "
959
+ "تركيبها وتحديثها بشكل فردي."
960
 
961
+ #: ../classes/settings.php:450
962
+ msgid ""
963
+ "This page will assist you in downloading and installing each available Addon."
964
+ msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
965
 
966
+ #: ../classes/settings.php:451
967
+ msgid "Available Addons"
968
+ msgstr "الإضافات المتوفرة"
969
 
970
+ #: ../classes/settings.php:456
971
+ msgid "Name"
972
+ msgstr "الاسم"
 
973
 
974
+ #: ../classes/settings.php:457 ../classes/settings.php:465
975
+ msgid "Download"
976
+ msgstr "تنزيل"
977
 
978
+ #: ../classes/settings.php:463
979
+ msgid "Pro Add-on (includes Sortorder add-on)"
980
+ msgstr "الملحق الإحترافي (يتضمن ملحق الترتيب)"
981
 
982
+ #: ../classes/settings.php:473
983
+ msgid "Installation"
984
+ msgstr "تنصيب"
985
 
986
+ #: ../classes/settings.php:475
987
+ msgid "For each Add-on available, please perform the following:"
988
+ msgstr "لكل ملحق متاح، يرجى القيام بما يلي:"
989
 
990
+ #: ../classes/settings.php:477
991
+ msgid "Download the Addon plugin (.zip file) to your desktop"
992
+ msgstr "تنزيل إضافة الملحقات (ملف .zip) إلى سطح مكتبك"
993
 
994
+ #: ../classes/settings.php:478
995
+ msgid "Navigate to"
996
+ msgstr "انتقل إلى"
997
 
998
+ #: ../classes/settings.php:478
999
+ msgid "Plugins > Add New > Upload"
1000
+ msgstr "إضافات > أضف جديد > تحميل"
 
1001
 
1002
+ #: ../classes/settings.php:479
1003
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1004
+ msgstr "استخدام الرافع للتصفح واختيار وتثبيت (ملف .zip) الخاص بإضافتك"
1005
 
1006
+ #: ../classes/settings.php:480
1007
+ msgid ""
1008
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
1009
+ "link"
1010
+ msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
1011
 
1012
+ #: ../classes/settings.php:481
1013
+ msgid "The Add-on is now installed and activated!"
1014
+ msgstr "تم تنصيب وتفعيل الملحق!"
1015
 
1016
+ #: ../classes/settings.php:482
1017
+ #, php-format
1018
+ msgid ""
1019
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1020
+ msgstr "من أجل التحديثات الإضافية تأكد من <a href='%s'>إدخال مفتاح رخصتك</a>."
1021
 
1022
+ #: ../classes/settings.php:492
1023
+ msgid "Start using Admin Columns"
1024
+ msgstr "البدء باستخدام Admin Columns"
1025
 
1026
+ #: ../classes/settings.php:539
1027
+ msgid "General Settings"
1028
+ msgstr "إعدادات عامة"
1029
 
1030
+ #: ../classes/settings.php:540
1031
+ msgid "Customize your Admin Columns settings."
1032
+ msgstr "قم بتخصيص إعدادات Admin Columns."
1033
 
1034
+ #: ../classes/settings.php:553
1035
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1036
+ msgstr "إظهار الحقول المخصوصة المخفية. الإفتراضي هو <code>لا</code>."
1037
 
1038
+ #: ../classes/settings.php:559
1039
+ msgid ""
1040
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1041
+ msgstr ""
1042
+ "إظهار زر \"تحرير الأعمدة\" على الشاشات الإدارية. الإفتراضي هو <code>لا</"
1043
+ "code>."
1044
 
1045
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1046
+ msgid "Save"
1047
+ msgstr "حفظ"
1048
 
1049
+ #: ../classes/settings.php:606
1050
+ msgid "Restore Settings"
1051
+ msgstr "استرجاع الإعدادات"
 
1052
 
1053
+ #: ../classes/settings.php:607
1054
+ msgid "This will delete all column settings and restore the default settings."
1055
+ msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
1056
 
1057
+ #: ../classes/settings.php:613
1058
+ msgid "Restore default settings"
1059
+ msgstr "استرجاع الإعدادات الإفتراضية"
1060
 
1061
+ #: ../classes/settings.php:613
1062
+ msgid ""
1063
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1064
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1065
+ msgstr ""
1066
+ "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. "
1067
+ "\\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
1068
 
1069
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1070
+ msgid "Settings"
1071
+ msgstr "إعدادات"
1072
 
1073
+ #: ../classes/settings.php:665
1074
+ #, fuzzy
1075
+ msgid "Posttypes"
1076
+ msgstr "نوع تدوبنة"
1077
 
1078
+ #: ../classes/settings.php:666
1079
+ msgid "Others"
1080
+ msgstr ""
1081
 
1082
+ #: ../classes/settings.php:667
1083
+ #, fuzzy
1084
+ msgid "Taxonomies"
1085
+ msgstr "التصنيف"
1086
 
1087
+ #: ../classes/settings.php:688
1088
+ msgid "Store settings"
1089
+ msgstr "حفظ الإعدادات"
1090
 
1091
+ #: ../classes/settings.php:692
1092
+ msgid "Update"
1093
+ msgstr "تحديث"
1094
 
1095
+ #: ../classes/settings.php:696
1096
+ #, php-format
1097
+ msgid ""
1098
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1099
+ "\\' to delete, \\'Cancel\\' to stop"
1100
+ msgstr ""
1101
+ "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' "
1102
+ "للحذف، \\'إلغاء\\' للإيقاف"
1103
 
1104
+ #: ../classes/settings.php:697
1105
+ msgid "columns"
1106
+ msgstr "أعمدة"
1107
 
1108
+ #: ../classes/settings.php:710
1109
+ msgid "Get the Pro Add-on"
1110
+ msgstr "احصل على الملحق الإحترافي"
1111
 
1112
+ #: ../classes/settings.php:714
1113
+ msgid "Add Sorting"
1114
+ msgstr "أضف ترتيب"
1115
 
1116
+ #: ../classes/settings.php:715
1117
+ msgid "Add Filtering"
1118
+ msgstr "أضف تصفية"
1119
 
1120
+ #: ../classes/settings.php:716
1121
+ msgid "Add Import/Export"
1122
+ msgstr "أضف استيراد/تصدير"
1123
 
1124
+ #: ../classes/settings.php:719
1125
+ #, php-format
1126
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1127
+ msgstr "تعرف على <a href=\"%s\">الملحق الإحترافي</a> للمزيد من التفاصيل!"
1128
 
1129
+ #: ../classes/settings.php:750
1130
+ msgid "Support"
1131
+ msgstr "دعم"
1132
 
1133
+ #: ../classes/settings.php:753
1134
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1135
+ msgstr ""
1136
+ "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
1137
 
1138
+ #: ../classes/settings.php:756
1139
+ #, php-format
1140
+ msgid ""
1141
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1142
+ "href='%s'>visit the Admin Columns website</a>"
1143
+ msgstr ""
1144
+ "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من "
1145
+ "النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
1146
 
1147
+ #: ../classes/settings.php:784
1148
+ msgid "Drag and drop to reorder"
1149
+ msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
1150
 
1151
+ #: ../classes/settings.php:787
1152
+ msgid "Add Column"
1153
+ msgstr "أضف عمود"
1154
 
1155
+ #: ../classes/storage_model.php:222
1156
+ msgid "settings succesfully restored."
1157
+ msgstr "تمت إستعادة الإعدادات بنجاح."
1158
 
1159
+ #: ../classes/storage_model.php:239
1160
+ msgid "No columns settings available."
1161
+ msgstr "لا توجد إعدادات أعمدة متوفرة."
1162
 
1163
+ #: ../classes/storage_model.php:262
1164
+ #, php-format
1165
+ msgid "You are trying to store the same settings for %s."
1166
+ msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
1167
 
1168
+ #: ../classes/storage_model.php:266
1169
+ #, php-format
1170
+ msgid "Settings for %s updated succesfully."
1171
+ msgstr "إعدادات %s تم تحديثها بنجاح."
1172
 
1173
  #: ../classes/storage_model/comment.php:13
1174
  msgid "Comments"
1181
  #: ../classes/storage_model/user.php:13
1182
  msgid "Users"
1183
  msgstr "مستخدمون"
1184
+
1185
+ #: ../classes/upgrade.php:45
1186
+ msgid "Upgrade"
1187
+ msgstr "تحديث"
1188
+
1189
+ #: ../classes/upgrade.php:90
1190
+ msgid "requires a database upgrade"
1191
+ msgstr "يتطلب ترقية قاعدة البيانات"
1192
+
1193
+ #: ../classes/upgrade.php:93
1194
+ msgid "why?"
1195
+ msgstr "لماذا؟"
1196
+
1197
+ #: ../classes/upgrade.php:94
1198
+ msgid "Please"
1199
+ msgstr "فضلا"
1200
+
1201
+ #: ../classes/upgrade.php:95
1202
+ msgid "backup your database"
1203
+ msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
1204
+
1205
+ #: ../classes/upgrade.php:96
1206
+ msgid "then click"
1207
+ msgstr "ثم انقر"
1208
+
1209
+ #: ../classes/upgrade.php:304
1210
+ msgid "Migrating Column Settings"
1211
+ msgstr "نقل إعدادات الأعمدة"
1212
+
1213
+ #: ../classes/upgrade.php:340
1214
+ msgid "No Upgrade Required"
1215
+ msgstr "لا تحديث مطلوب"
1216
+
1217
+ #: ../classes/upgrade.php:341
1218
+ msgid "Return to welcome screen."
1219
+ msgstr "رجوع إلى صفحة الترحيب."
1220
+
1221
+ #: ../classes/upgrade.php:359
1222
+ msgid "Upgrade Complete!"
1223
+ msgstr "اكتمل التحديث"
1224
+
1225
+ #: ../classes/upgrade.php:359
1226
+ msgid "Return to settings."
1227
+ msgstr "العودة للإعدادات."
1228
+
1229
+ #: ../classes/upgrade.php:360
1230
+ msgid "Error"
1231
+ msgstr "خطأ"
1232
+
1233
+ #: ../classes/upgrade.php:361
1234
+ msgid ""
1235
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1236
+ "on the support forum."
1237
+ msgstr ""
1238
+ "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
1239
+
1240
+ #: ../codepress-admin-columns.php:447
1241
+ msgid "Edit columns"
1242
+ msgstr "تحرير الأعمدة"
1243
+
1244
+ #~ msgid "Publish"
1245
+ #~ msgstr "نشر"
languages/cpac-da_DK.mo CHANGED
Binary file
languages/cpac-da_DK.po CHANGED
@@ -6,60 +6,52 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
10
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/da_DK/)\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: da_DK\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\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:227 ../classes/settings.php:535
27
- msgid "Settings"
28
- msgstr "Indstillinger"
29
-
30
- #: ../codepress-admin-columns.php:350
31
- msgid "Edit columns"
32
- msgstr "Rediger kolonner"
33
-
34
- #: ../classes/column.php:479
35
  msgid "Thumbnail"
36
  msgstr "Miniaturebillede"
37
 
38
- #: ../classes/column.php:480
39
  msgid "Medium"
40
  msgstr "Medium"
41
 
42
- #: ../classes/column.php:481
43
  msgid "Large"
44
  msgstr "Stor"
45
 
46
- #: ../classes/column.php:482
47
  msgid "Full"
48
  msgstr "Fuld"
49
 
50
- #: ../classes/column.php:774
51
  msgid "Date Format"
52
  msgstr "Datoformat"
53
 
54
- #: ../classes/column.php:775
55
  msgid "This will determine how the date will be displayed."
56
  msgstr "Dette vil bestmme hvordan datoen vil blive vist."
57
 
58
- #: ../classes/column.php:781
59
  msgid "Example:"
60
  msgstr "Eksempel:"
61
 
62
- #: ../classes/column.php:783
63
  #, php-format
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -68,1157 +60,1133 @@ msgstr ""
68
  "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s"
69
  "\">standard datoformat her</a>."
70
 
71
- #: ../classes/column.php:784
72
  msgid "Documentation on date and time formatting."
73
  msgstr "Dokumentation for dato- og tidsformattering."
74
 
75
- #: ../classes/column.php:801
76
  msgid "Excerpt length"
77
  msgstr "Længden for uddrag"
78
 
79
- #: ../classes/column.php:802
80
  msgid "Number of words"
81
  msgstr "Antal ord"
82
 
83
- #: ../classes/column.php:824
84
  msgid "Preview size"
85
  msgstr "Forhåndsvisningsstørrelse"
86
 
87
- #: ../classes/column.php:841 ../classes/column.php:897
88
  msgid "Custom"
89
  msgstr "Brugerdefineret"
90
 
91
- #: ../classes/column.php:844
92
  msgid "width"
93
  msgstr "bredde"
94
 
95
- #: ../classes/column.php:847
96
  msgid "height"
97
  msgstr "højde"
98
 
99
- #: ../classes/column.php:898 ../classes/settings.php:224
100
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Default"
102
  msgstr "Standard"
103
 
104
- #: ../classes/column.php:923 ../classes/column.php:984
105
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
106
  msgid "Remove"
107
  msgstr "Fjern"
108
 
109
- #: ../classes/column.php:942
110
  msgid "Type"
111
  msgstr "Type"
112
 
113
- #: ../classes/column.php:942
114
  msgid "Choose a column type."
115
  msgstr "Vælg en kolonne type."
116
 
117
- #: ../classes/column.php:952
 
 
 
 
 
 
118
  msgid "Label"
119
  msgstr "Etikette"
120
 
121
- #: ../classes/column.php:952
122
  msgid "This is the name which will appear as the column header."
123
  msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
124
 
125
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
126
  msgid "Width"
127
  msgstr "Bredde"
128
 
129
- #: ../classes/column.php:961 ../classes/column.php:962
130
  msgid "default"
131
  msgstr "standard"
132
 
133
- #: ../classes/settings.php:68
134
- msgid "Admin Columns Settings"
135
- msgstr "Admin Kolonne Indstillinger"
 
 
 
136
 
137
- #: ../classes/settings.php:68 ../classes/settings.php:534
138
- #: ../classes/upgrade.php:89
139
- msgid "Admin Columns"
140
- msgstr "Admin Columns"
141
 
142
- #: ../classes/settings.php:129
143
- #, php-format
144
- msgid "%s column is already present and can not be duplicated."
145
- msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
146
 
147
- #: ../classes/settings.php:184
148
- msgid "Default settings succesfully restored."
149
- msgstr "Standard indstillinger gendannet med success."
 
150
 
151
- #: ../classes/settings.php:202 ../classes/settings.php:457
152
- msgid "Overview"
153
- msgstr "Overblik"
 
154
 
155
- #: ../classes/settings.php:205
156
- msgid ""
157
- "This plugin is for adding and removing additional columns to the "
158
- "administration screens for post(types), pages, media library, comments, "
159
- "links and users. Change the column's label and reorder them."
160
- msgstr ""
161
- "Dette plugin er til at tilføje og fjerne tillægskolonner på "
162
- "administrationsskærme for indlægs(typer), sider, mediebibliotek, "
163
- "kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
164
 
165
- #: ../classes/settings.php:208
166
- msgid "Basics"
167
- msgstr "Grundlæggende"
168
 
169
- #: ../classes/settings.php:210
170
- msgid "Change order"
171
- msgstr "Ændre rækkefølge"
172
 
173
- #: ../classes/settings.php:211
174
- msgid ""
175
- "By dragging the columns you can change the order which they will appear in."
176
- msgstr ""
177
- "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
178
 
179
- #: ../classes/settings.php:212
180
- msgid "Change label"
181
- msgstr "Ændre etikette"
182
 
183
- #: ../classes/settings.php:213
184
- msgid ""
185
- "By clicking on the triangle you will see the column options. Here you can "
186
- "change each label of the columns heading."
187
- msgstr ""
188
- "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du "
189
- "vælge hver etikette for kolonnernes overskrift. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
 
 
191
  #: ../classes/settings.php:214
192
- msgid "Change column width"
193
- msgstr "Ændre kolonnebredden"
194
 
195
- #: ../classes/settings.php:215
196
- msgid ""
197
- "By clicking on the triangle you will see the column options. By using the "
198
- "draggable slider you can set the width of the columns in percentages."
199
- msgstr ""
200
- "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at "
201
- "indstille kolonnebredden."
 
202
 
203
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
204
- #: ../classes/column/custom-field.php:324
205
  msgid "Custom Field"
206
  msgstr "Brugerdefineret felt"
207
 
208
- #: ../classes/settings.php:221
209
- msgid "'Custom Field' column"
210
- msgstr "'Brugerdefineret felt' kolonne"
211
 
212
- #: ../classes/settings.php:222
213
- msgid ""
214
- "The custom field colum uses the custom fields from posts and users. There "
215
- "are 10 types which you can set."
216
- msgstr ""
217
- "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra "
218
- "indlæg og brugere. Der er 10 typer som du kan sætte."
219
 
220
- #: ../classes/settings.php:224
221
- msgid ""
222
- "Value: Can be either a string or array. Arrays will be flattened and values "
223
- "are seperated by a ',' comma."
224
  msgstr ""
225
- "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive "
226
- "fladtrykt og værdier separeret ved et ',' komma."
227
 
228
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
229
- #: ../classes/column/link/image.php:12
230
  msgid "Image"
231
  msgstr "Billede"
232
 
233
- #: ../classes/settings.php:225
234
- msgid ""
235
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
236
- "comma )."
237
- msgstr ""
238
- "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret "
239
- "ved et ',' komma )."
240
-
241
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
242
- #: ../classes/column/comment/excerpt.php:13
243
- #: ../classes/column/post/excerpt.php:13
244
- msgid "Excerpt"
245
- msgstr "Uddrag"
246
-
247
- #: ../classes/settings.php:226
248
- msgid "Value: This will show the first 20 words of the Post content."
249
- msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
250
 
251
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
252
  msgid "Multiple Values"
253
  msgstr "Flere værdier"
254
 
255
- #: ../classes/settings.php:227
256
- msgid ""
257
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
258
- msgstr ""
259
- "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) "
260
- "tabel."
261
-
262
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
263
  msgid "Numeric"
264
  msgstr "Numerisk"
265
 
266
- #: ../classes/settings.php:228
267
- msgid ""
268
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
269
- "for sorting, so you can sort your posts on numeric (custom field) values."
270
- msgstr ""
271
- "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt "
272
- "til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret "
273
- "felt) værdier."
274
 
275
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
276
- #: ../classes/column/comment/date.php:12
277
- msgid "Date"
278
- msgstr "Dato"
 
 
 
 
 
 
 
279
 
280
- #: ../classes/settings.php:229
 
 
 
 
 
 
 
 
281
  #, php-format
282
  msgid ""
283
- "Value: Can be unix time stamp or a date format as described in the <a "
284
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
285
- "href='%s'>general settings</a> page."
286
  msgstr ""
287
- "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a "
288
- "href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a "
289
- "href='%s'>generalle indstillinger</a> siden."
290
 
291
- #: ../classes/settings.php:230
292
- msgid "Post Titles"
293
- msgstr "Indlægstitler"
294
 
295
- #: ../classes/settings.php:230
296
- msgid "Value: can be one or more Post ID's (seperated by ',')."
297
- msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
 
 
298
 
299
- #: ../classes/settings.php:231
300
- msgid "Usernames"
301
- msgstr "Brugernavne"
302
 
303
- #: ../classes/settings.php:231
304
- msgid "Value: can be one or more User ID's (seperated by ',')."
305
- msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
306
 
307
- #: ../classes/settings.php:232
308
- msgid "Checkmark"
309
- msgstr "Flueben"
310
 
311
- #: ../classes/settings.php:232
312
- msgid "Value: should be a 1 (one) or 0 (zero)."
313
- msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
314
 
315
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
316
- msgid "Color"
317
- msgstr "Farve"
318
 
319
- #: ../classes/settings.php:233
320
- msgid "Value: hex value color, such as #808080."
321
- msgstr "Værdi: hex værdi farve, for eksempel #808080."
322
 
323
- #: ../classes/settings.php:377
324
- msgid "Welcome to Admin Columns"
325
- msgstr "Velkommen til Admin Columns"
326
 
327
- #: ../classes/settings.php:380
328
- msgid "Thank you for updating to the latest version!"
329
- msgstr "Tak fordi du opdaterede til den seneste version!"
330
 
331
- #: ../classes/settings.php:381
332
- msgid ""
333
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
334
- "like it."
335
- msgstr ""
336
- "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du "
337
- "kan lide det."
338
 
339
- #: ../classes/settings.php:386
340
- msgid "What’s New"
341
- msgstr "Hvad er nyt"
342
 
343
- #: ../classes/settings.php:387
344
- msgid "Changelog"
345
- msgstr "Ændringslog"
346
 
347
- #: ../classes/settings.php:389
348
- msgid "Download Addons"
349
- msgstr "Hent udvidelser"
350
 
351
- #: ../classes/settings.php:395
352
- msgid "Addons"
353
- msgstr "Udvidelsesmoduler"
354
 
355
- #: ../classes/settings.php:397
356
- msgid ""
357
- "Addons are now activated by downloading and installing individual plugins. "
358
- "Although these plugins will not be hosted on the wordpress.org repository, "
359
- "each Add-on will continue to receive updates in the usual way."
360
- msgstr ""
361
- "Udvidelser aktiveres nu ved hente og installere individuelle plugins. Selvom "
362
- "disse plugins ikke vil blive hosted på wordpress.org, vil disse udvidelser "
363
- "fortsat modtage opdatering på sædvanlig vis."
364
 
365
- #: ../classes/settings.php:400
366
- msgid ""
367
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
368
- msgstr ""
369
- "Denne hjemmeside benytter Sortorder udvidelse. Denne udvidelse skal hentes."
370
 
371
- #: ../classes/settings.php:403
372
- msgid "Addons are seperate plugins which need to be downloaded."
373
- msgstr "Udvidelser er separate plugins, der skal hentes."
374
 
375
- #: ../classes/settings.php:403
376
- msgid "Download your Addons"
377
- msgstr "Hent dine udvidelser"
378
 
379
- #: ../classes/settings.php:409
380
- msgid "This website does not use add-ons"
381
- msgstr "Denne hjemmeside benytter ikke udvidelser"
382
 
383
- #: ../classes/settings.php:409
384
- msgid "See our website for the Pro-addon."
385
- msgstr "Se vores hjemmeside for Pro udvidelsen."
386
 
387
- #: ../classes/settings.php:416
388
- msgid "Important"
389
- msgstr "Vigtigt"
390
 
391
- #: ../classes/settings.php:418
392
- msgid "Database Changes"
393
- msgstr "Database ændringer"
394
 
395
- #: ../classes/settings.php:419
396
- msgid ""
397
- "The database has been changed between versions 1 and 2. But we made sure you "
398
- "can still roll back to version 1x without any issues."
399
- msgstr ""
400
- "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du "
401
- "stadig kan gå tilbage til version 1x uden nogen problemer."
402
 
403
- #: ../classes/settings.php:422
404
- msgid "Make sure you backup your database and then click"
405
- msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
406
 
407
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
408
- msgid "Upgrade Database"
409
- msgstr "Opgradér database"
410
 
411
- #: ../classes/settings.php:425
412
- msgid "Potential Issues"
413
- msgstr "Mulige problemer"
414
 
415
- #: ../classes/settings.php:426
416
- msgid ""
417
- "Do to the sizable refactoring the code, surounding Addons and action/"
418
- "filters, your website may not operate correctly. It is important that you "
419
- "read the full"
420
- msgstr ""
421
- "På grund af den betydelige omstrukturering af koden omkring udvidelser og "
422
- "action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er "
423
- "vigtigt at du læser den fulde"
424
 
425
- #: ../classes/settings.php:426
426
- msgid "Migrating from v1 to v2"
427
- msgstr "Migration fra v1 til v2"
428
 
429
- #: ../classes/settings.php:426
430
- msgid "guide to view the full list of changes."
431
- msgstr "guide for at vise den fulde liste med ændringer."
432
 
433
- #: ../classes/settings.php:426
434
- #, php-format
435
- msgid ""
436
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
437
- "can fix it in the next release."
438
- msgstr ""
439
- "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> "
440
- "så vi kan rette det inden næste udgivelse."
441
 
442
- #: ../classes/settings.php:429
443
- msgid "Important!"
444
- msgstr "Vigtigt!"
 
 
445
 
446
- #: ../classes/settings.php:429
447
- msgid ""
448
- "If you updated the Admin Columns plugin without prior knowledge of such "
449
- "changes, Please roll back to the latest"
450
- msgstr ""
451
- "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne "
452
- "ændringer, venligst gå tilbage til den seneste"
453
 
454
- #: ../classes/settings.php:429
455
- msgid "version 1"
456
- msgstr "version 1"
 
457
 
458
- #: ../classes/settings.php:429
459
- msgid "of this plugin."
460
- msgstr "af dette plugin."
461
 
462
- #: ../classes/settings.php:435
463
- msgid "Changelog for"
464
- msgstr "Ændringslog for"
 
465
 
466
- #: ../classes/settings.php:450
467
- msgid "Learn more"
468
- msgstr "Lær mere"
469
 
470
- #: ../classes/settings.php:459
471
- msgid ""
472
- "New to v2, all Addons act as separate plugins which need to be individually "
473
- "downloaded, installed and updated."
474
- msgstr ""
475
- "Nyt i v2, alle udvidelser fungerer som separate plugins, der hver skal "
476
- "hentes, installeres og opdateres."
477
 
478
- #: ../classes/settings.php:460
479
- msgid ""
480
- "This page will assist you in downloading and installing each available Addon."
481
- msgstr ""
482
- "Denne side vil hjælpe dig med at hente og installere hver tilgængelig "
483
- "udvidelse."
484
 
485
- #: ../classes/settings.php:461
486
- msgid "Available Addons"
487
- msgstr "Tilgængelige udvidelser"
488
 
489
- #: ../classes/settings.php:466
490
- msgid "Name"
491
- msgstr "Navn"
492
 
493
- #: ../classes/settings.php:467 ../classes/settings.php:475
494
- msgid "Download"
495
- msgstr "Hent"
496
 
497
- #: ../classes/settings.php:473
498
- msgid "Pro Add-on (includes Sortorder add-on)"
499
- msgstr "Pro udvidelse (inkluderer Sortorder udvidelse)"
500
 
501
- #: ../classes/settings.php:483
502
- msgid "Installation"
503
- msgstr "Installation"
 
504
 
505
- #: ../classes/settings.php:485
506
- msgid "For each Add-on available, please perform the following:"
507
- msgstr "For hver tilgængelig udvidelse, gør venligst følgende:"
508
 
509
- #: ../classes/settings.php:487
510
- msgid "Download the Addon plugin (.zip file) to your desktop"
511
- msgstr "Hent udvidelsesplugin (.zip fil) til dit skrivebord"
512
-
513
- #: ../classes/settings.php:488
514
- msgid "Navigate to"
515
- msgstr "Gå til"
516
 
517
- #: ../classes/settings.php:488
518
- msgid "Plugins > Add New > Upload"
519
- msgstr "Plugins > Tilføj nyt > Upload"
520
 
521
- #: ../classes/settings.php:489
522
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
523
- msgstr ""
524
- "Brug uploadfunktionen til at gennemse, vælge og installere din udvidelse (."
525
- "zip fil)"
526
 
527
- #: ../classes/settings.php:490
528
- msgid ""
529
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
530
- "link"
531
- msgstr ""
532
- "Når pluginet er blevet uploadet og installeret, klik på 'Aktiver plugin' "
533
- "linket"
534
 
535
- #: ../classes/settings.php:491
536
- msgid "The Add-on is now installed and activated!"
537
- msgstr "Udvidelsen er nu installeret og aktiveret!"
538
 
539
- #: ../classes/settings.php:492
540
- #, php-format
541
- msgid ""
542
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
543
- msgstr ""
544
- "For automatisk opdatering, sikre at du har <a href='%s'>indtastet din "
545
- "licensnøgle</a>."
546
 
547
- #: ../classes/settings.php:502
548
- msgid "Start using Admin Columns"
549
- msgstr "Gå i gang med at bruge Admin Columns"
550
 
551
- #: ../classes/settings.php:580
552
- msgid "Store settings"
553
- msgstr "Gem indstillinger"
554
 
555
- #: ../classes/settings.php:585
556
- msgid "Update"
557
- msgstr "Opdater"
558
 
559
- #: ../classes/settings.php:585
560
- msgid "Publish"
561
- msgstr "Udgiv"
 
562
 
563
- #: ../classes/settings.php:589
564
- #, php-format
565
- msgid ""
566
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
567
- "\\' to delete, \\'Cancel\\' to stop"
568
- msgstr ""
569
- "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. "
570
- "\\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
571
 
572
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
573
- #: ../classes/column/post/actions.php:53
574
- msgid "Restore"
575
- msgstr "Gendan"
576
 
577
- #: ../classes/settings.php:590
578
- msgid "columns"
579
- msgstr "kolonner"
580
 
581
- #: ../classes/settings.php:600
582
- msgid "Get the Pro Add-on"
583
- msgstr " Pro udvidelsen"
584
 
585
- #: ../classes/settings.php:604
586
- msgid "Add Sorting"
587
- msgstr "Tilføj sortering"
588
 
589
- #: ../classes/settings.php:605
590
- msgid "Add Filtering"
591
- msgstr "Tilføj filtrering"
592
 
593
- #: ../classes/settings.php:606
594
- msgid "Add Import/Export"
595
- msgstr "Tilføj import/eksport"
596
 
597
- #: ../classes/settings.php:609
598
- #, php-format
599
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
600
- msgstr "Tjek <a href=\"%s\">Pro udvidelsen</a> for flere detaljer!"
601
 
602
- #: ../classes/settings.php:617
603
- msgid "Support"
604
- msgstr "Hjælp"
605
 
606
- #: ../classes/settings.php:620
607
- msgid "Check the <strong>Help</strong> section in the top-right screen."
608
- msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
609
 
610
- #: ../classes/settings.php:622
611
- #, php-format
612
- msgid ""
613
- "For full documentation, bug reports, feature suggestions and other tips <a "
614
- "href='%s'>visit the Admin Columns website</a>"
615
- msgstr ""
616
- "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips "
617
- "<a href='%s'>besøg Admin Columns hjemmeside</a>"
618
 
619
- #: ../classes/settings.php:642
620
- msgid "Drag and drop to reorder"
621
- msgstr "Træk og slip for at ændre rækkefølgen"
622
 
623
- #: ../classes/settings.php:645
624
- msgid "Add Column"
625
- msgstr "Tilføj kolonne"
626
 
627
- #: ../classes/settings.php:696
628
- msgid "General Settings"
629
- msgstr "Generelle indstillinger"
630
 
631
- #: ../classes/settings.php:697
632
- msgid "Customize your Admin Columns settings."
633
- msgstr "Tilpas din Admin Columns indstillinger."
634
 
635
- #: ../classes/settings.php:710
636
- msgid "Show hidden custom fields. Default is <code>off</code>."
637
- msgstr "Vis skjulte brugerdefineret felter. Standard er <code>fra</code>."
638
 
639
- #: ../classes/settings.php:716
640
- msgid ""
641
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
642
- msgstr ""
643
- "Vis \"Rediger kolonner\" knap på administrator skærme. Standard er "
644
- "<code>fra</code>."
645
 
646
- #: ../classes/settings.php:723
647
- msgid "Save"
648
- msgstr "Gem"
649
 
650
- #: ../classes/settings.php:763
651
- msgid "Restore Settings"
652
- msgstr "Gendan indstillinger"
653
 
654
- #: ../classes/settings.php:764
655
- msgid "This will delete all column settings and restore the default settings."
656
- msgstr ""
657
- "Dette vil slette alle kolonneindstillinger og gendanne "
658
- "standardindstillingerne."
659
 
660
- #: ../classes/settings.php:770
661
- msgid "Restore default settings"
662
- msgstr "Gendan standard indstillinger"
663
 
664
- #: ../classes/settings.php:770
665
- msgid ""
666
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
667
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
668
- msgstr ""
669
- "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke "
670
- "fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
671
 
672
- #: ../classes/storage_model.php:167
673
- msgid "settings succesfully restored."
674
- msgstr "indstillinger er gendannet med success."
675
 
676
- #: ../classes/storage_model.php:181
677
- msgid "No columns settings available."
678
- msgstr "Ingen kolonneindstillinger tilgængelige."
679
 
680
- #: ../classes/storage_model.php:204
681
- #, php-format
682
- msgid "You are trying to store the same settings for %s."
683
- msgstr "Du forsøger at gemme samme indstillinger for %s."
684
 
685
- #: ../classes/storage_model.php:208
686
- #, php-format
687
- msgid "Settings for %s updated succesfully."
688
- msgstr "Indstillinger for %s er opdateret med success."
689
 
690
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
691
- msgid "View"
692
- msgstr "Vis"
693
 
694
- #: ../classes/upgrade.php:45
695
- msgid "Upgrade"
696
- msgstr "Opgrader"
 
697
 
698
- #: ../classes/upgrade.php:90
699
- msgid "requires a database upgrade"
700
- msgstr "en opgradering af databasen er påkrævet"
 
701
 
702
- #: ../classes/upgrade.php:93
703
- msgid "why?"
704
- msgstr "hvorfor?"
705
 
706
- #: ../classes/upgrade.php:94
707
- msgid "Please"
708
- msgstr "Venligst"
709
 
710
- #: ../classes/upgrade.php:95
711
- msgid "backup your database"
712
- msgstr "tag backup af din database"
 
 
 
 
 
 
713
 
714
- #: ../classes/upgrade.php:96
715
- msgid "then click"
716
- msgstr "derefter klik"
717
 
718
- #: ../classes/upgrade.php:304
719
- msgid "Migrating Column Settings"
720
- msgstr "Migration af kolonne indstillinger"
721
 
722
- #: ../classes/upgrade.php:340
723
- msgid "No Upgrade Required"
724
- msgstr "Ingen opgradering er påkrævet"
725
-
726
- #: ../classes/upgrade.php:341
727
- msgid "Return to welcome screen."
728
- msgstr "Gå tilbage til velkomstskærmen."
729
-
730
- #: ../classes/upgrade.php:359
731
- msgid "Upgrade Complete!"
732
- msgstr "Opgradering fuldført!"
733
-
734
- #: ../classes/upgrade.php:359
735
- msgid "Return to settings."
736
- msgstr "Gå tilbage til indstillinger."
737
-
738
- #: ../classes/upgrade.php:360
739
- msgid "Error"
740
- msgstr "Fejl"
741
-
742
- #: ../classes/upgrade.php:361
743
  msgid ""
744
- "Sorry. Something went wrong during the upgrade process. Please report this "
745
- "on the support forum."
746
  msgstr ""
747
- "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i "
748
- "support forummet."
749
-
750
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
751
- msgid "Media Library"
752
- msgstr "Mediebibliotek"
753
-
754
- #: ../classes/column/custom-field.php:79
755
- msgid "Post Title (Post ID's)"
756
- msgstr "Indlæg titel (Indlæg ID)"
757
-
758
- #: ../classes/column/custom-field.php:80
759
- msgid "Username (User ID's)"
760
- msgstr "Brugernavn (Bruger ID'er)"
761
-
762
- #: ../classes/column/custom-field.php:81
763
- msgid "Checkmark (true/false)"
764
- msgstr "Flueben (ja/nej)"
765
-
766
- #: ../classes/column/custom-field.php:324
767
- msgid "Select your custom field."
768
- msgstr "Vælg dit brugerdefineret felt."
769
-
770
- #: ../classes/column/custom-field.php:334
771
- msgid "No custom fields available."
772
- msgstr "Ingen brugerdefineret felter tilgængelige."
773
-
774
- #: ../classes/column/custom-field.php:341
775
- msgid "Field Type"
776
- msgstr "Felttype"
777
-
778
- #: ../classes/column/custom-field.php:341
779
- msgid "This will determine how the value will be displayed."
780
- msgstr "Dette afgør hvordan værdien vil blive vist."
781
-
782
- #: ../classes/column/custom-field.php:384
783
- msgid "Before"
784
- msgstr "Før"
785
-
786
- #: ../classes/column/custom-field.php:384
787
- msgid "This text will appear before the custom field value."
788
- msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
789
-
790
- #: ../classes/column/custom-field.php:390
791
- msgid "After"
792
- msgstr "Efter"
793
-
794
- #: ../classes/column/custom-field.php:390
795
- msgid "This text will appear after the custom field value."
796
- msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
797
 
798
- #: ../classes/column/comment/actions.php:14
799
- #: ../classes/column/link/actions.php:14
800
- #: ../classes/column/media/actions.php:14
801
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
802
- msgid "Actions"
803
- msgstr "Handlinger"
804
 
805
- #: ../classes/column/comment/actions.php:73
806
- #: ../classes/column/comment/actions.php:78
807
- msgid "Unapprove"
808
- msgstr "Godkend ikke"
 
 
 
809
 
810
- #: ../classes/column/comment/actions.php:75
811
- #: ../classes/column/comment/actions.php:77
812
- msgid "Approve"
813
- msgstr "Godkende"
814
 
815
- #: ../classes/column/comment/actions.php:90
816
- #: ../classes/column/post/actions.php:57
817
- msgid "Delete Permanently"
818
- msgstr "Slet permanent"
 
 
 
819
 
820
- #: ../classes/column/comment/actions.php:96
821
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
822
- #: ../classes/column/user/actions.php:57
823
- msgid "Edit"
824
- msgstr "Rediger"
825
 
826
- #: ../classes/column/comment/actions.php:97
827
- #: ../classes/column/post/actions.php:49
828
- msgid "Quick&nbsp;Edit"
829
- msgstr "Hurtig rediger"
 
 
 
830
 
831
- #: ../classes/column/comment/actions.php:98
832
- msgid "Reply"
833
- msgstr "Besvar"
 
 
 
 
834
 
835
- #: ../classes/column/comment/agent.php:12
836
- msgid "Agent"
837
- msgstr "Agent"
 
 
 
 
838
 
839
- #: ../classes/column/comment/approved.php:12
840
- #: ../classes/column/post/comment-count.php:31
841
- msgid "Approved"
842
- msgstr "Godkendt"
843
 
844
- #: ../classes/column/comment/author-avatar.php:12
845
- msgid "Avatar"
846
- msgstr "Avatar"
 
 
 
847
 
848
- #: ../classes/column/comment/author-email.php:12
849
- msgid "Author email"
850
- msgstr "Forfatter email"
 
 
 
 
 
851
 
852
- #: ../classes/column/comment/author-ip.php:12
853
- msgid "Author IP"
854
- msgstr "Forfatter IP"
 
 
 
 
 
 
 
855
 
856
- #: ../classes/column/comment/author-url.php:12
857
- msgid "Author url"
858
- msgstr "Forfatter webadresse"
859
 
860
- #: ../classes/column/comment/author.php:12
861
- msgid "Author"
862
- msgstr "Forfatter"
863
 
864
- #: ../classes/column/comment/date-gmt.php:12
865
- msgid "Date GMT"
866
- msgstr "Dato GMT"
867
 
868
- #: ../classes/column/comment/date-gmt.php:25
869
- #: ../classes/column/comment/date.php:25
870
- #, php-format
871
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
872
- msgstr "Indsendt af <a href=\"%1$s\">%2$s at %3$s</a>"
873
 
874
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
875
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
876
- msgid "ID"
877
- msgstr "ID"
878
 
879
- #: ../classes/column/comment/reply-to.php:12
880
- msgid "In Reply To"
881
- msgstr "Som svar "
882
 
883
- #: ../classes/column/comment/word-count.php:12
884
- #: ../classes/column/post/word-count.php:12
885
- msgid "Word count"
886
- msgstr "Antal ord"
887
 
888
- #: ../classes/column/link/actions.php:46
889
- #, php-format
890
  msgid ""
891
- "You are about to delete this link '%s'\n"
892
- " 'Cancel' to stop, 'OK' to delete."
893
  msgstr ""
894
- "Du er ved at slette dette link '%s'\n"
895
- " 'Annuller' for at stoppe, 'OK' for at slette."
896
-
897
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
898
- msgid "Delete"
899
- msgstr "Slet"
900
-
901
- #: ../classes/column/link/description.php:12
902
- #: ../classes/column/media/description.php:12
903
- #: ../classes/column/user/description.php:14
904
- msgid "Description"
905
- msgstr "Beskrivelse"
906
-
907
- #: ../classes/column/link/length.php:12
908
- msgid "Length"
909
- msgstr "Længde"
910
 
911
- #: ../classes/column/link/notes.php:13
912
- msgid "Notes"
913
- msgstr "Noter"
914
 
915
- #: ../classes/column/link/owner.php:12
916
- msgid "Owner"
917
- msgstr "Ejer"
918
 
919
- #: ../classes/column/link/rss.php:12
920
- msgid "Rss"
921
- msgstr "Rss"
 
 
 
 
922
 
923
- #: ../classes/column/link/target.php:12
924
- msgid "Target"
925
- msgstr "Mål"
926
 
927
- #: ../classes/column/media/alternate-text.php:12
928
- msgid "Alt"
929
- msgstr "Alt"
930
 
931
- #: ../classes/column/media/available-sizes.php:14
932
- msgid "Available Sizes"
933
- msgstr "Tilgængelige størrelser"
934
 
935
- #: ../classes/column/media/available-sizes.php:37
936
- msgid "full size"
937
- msgstr "fuld størrelse"
938
 
939
- #: ../classes/column/media/caption.php:12
940
- #: ../classes/column/media/exif-data.php:36
941
- msgid "Caption"
942
- msgstr "Titeltekst"
 
 
 
 
 
943
 
944
- #: ../classes/column/media/dimensions.php:12
945
- msgid "Dimensions"
946
- msgstr "Mål"
 
 
947
 
948
- #: ../classes/column/media/exif-data.php:12
949
- msgid "EXIF data"
950
- msgstr "EXIF data"
951
 
952
- #: ../classes/column/media/exif-data.php:33
953
- msgid "Aperture"
954
- msgstr "Aperture"
955
 
956
- #: ../classes/column/media/exif-data.php:34
957
- msgid "Credit"
958
- msgstr "Credit"
959
 
960
- #: ../classes/column/media/exif-data.php:35
961
- msgid "Camera"
962
- msgstr "Kamera"
963
 
964
- #: ../classes/column/media/exif-data.php:37
965
- msgid "Timestamp"
966
- msgstr "Timestamp"
967
 
968
- #: ../classes/column/media/exif-data.php:38
969
- msgid "Copyright EXIF"
970
- msgstr "Copyright EXIF"
971
 
972
- #: ../classes/column/media/exif-data.php:39
973
- msgid "Focal Length"
974
- msgstr "Focal Length"
 
 
 
 
975
 
976
- #: ../classes/column/media/exif-data.php:40
977
- msgid "ISO"
978
- msgstr "ISO"
979
 
980
- #: ../classes/column/media/exif-data.php:41
981
- msgid "Shutter Speed"
982
- msgstr "Shutter Speed"
983
 
984
- #: ../classes/column/media/exif-data.php:42
985
- msgid "Title"
986
- msgstr "Title"
987
 
988
- #: ../classes/column/media/file-name.php:12
989
- msgid "File name"
990
- msgstr "Filnavn"
 
 
 
 
 
 
991
 
992
- #: ../classes/column/media/file-size.php:12
993
- msgid "File size"
994
- msgstr "Filstørrelse"
995
 
996
- #: ../classes/column/media/full-path.php:12
997
- msgid "Full path"
998
- msgstr "Fuld sti"
999
 
1000
- #: ../classes/column/media/height.php:12
1001
- msgid "Height"
1002
- msgstr "Højde"
 
 
 
 
 
1003
 
1004
- #: ../classes/column/media/mime-type.php:12
1005
- msgid "Mime type"
1006
- msgstr "Mime type"
1007
 
1008
- #: ../classes/column/post/actions.php:48
1009
- msgid "Edit this item"
1010
- msgstr "Rediger dette element"
 
 
 
 
1011
 
1012
- #: ../classes/column/post/actions.php:49
1013
- msgid "Edit this item inline"
1014
- msgstr "Rediger dette element på linje"
1015
 
1016
- #: ../classes/column/post/actions.php:53
1017
- msgid "Restore this item from the Trash"
1018
- msgstr "Gendan dette element fra papirkurven"
1019
 
1020
- #: ../classes/column/post/actions.php:55
1021
- msgid "Move this item to the Trash"
1022
- msgstr "Flyt dette element til papirkurven"
1023
 
1024
- #: ../classes/column/post/actions.php:55
1025
- #: ../classes/column/post/comment-count.php:34
1026
- #: ../classes/column/post/status.php:35
1027
- msgid "Trash"
1028
- msgstr "Papirkurv"
1029
 
1030
- #: ../classes/column/post/actions.php:57
1031
- msgid "Delete this item permanently"
1032
- msgstr "Slet dette element permanent"
 
 
 
 
1033
 
1034
- #: ../classes/column/post/actions.php:62
1035
- #, php-format
1036
- msgid "Preview &#8220;%s&#8221;"
1037
- msgstr "Eksempel &#8220;%s&#8221;"
 
 
1038
 
1039
- #: ../classes/column/post/actions.php:62
1040
- msgid "Preview"
1041
- msgstr "Eksempel"
1042
 
1043
- #: ../classes/column/post/actions.php:64
1044
- #, php-format
1045
- msgid "View &#8220;%s&#8221;"
1046
- msgstr "Vis &#8220;%s&#8221;"
1047
 
1048
- #: ../classes/column/post/attachment-count.php:12
1049
- msgid "No. of Attachments"
1050
- msgstr "Antal vedhæftede filer"
1051
 
1052
- #: ../classes/column/post/attachment.php:12
1053
- msgid "Attachment"
1054
- msgstr "Vedhæftet fil"
1055
 
1056
- #: ../classes/column/post/author-name.php:12
1057
- msgid "Display Author As"
1058
- msgstr "Vis forfatter som"
1059
 
1060
- #: ../classes/column/post/author-name.php:33
1061
- msgid "Display Name"
1062
- msgstr "Offentligt navn"
1063
 
1064
- #: ../classes/column/post/author-name.php:34
1065
- msgid "First Name"
1066
- msgstr "Fornavn"
1067
 
1068
- #: ../classes/column/post/author-name.php:35
1069
- msgid "Last Name"
1070
- msgstr "Efternavn"
1071
 
1072
- #: ../classes/column/post/author-name.php:36
1073
- #: ../classes/column/user/nickname.php:14
1074
- msgid "Nickname"
1075
- msgstr "Kaldenavn"
1076
 
1077
- #: ../classes/column/post/author-name.php:37
1078
- msgid "User Login"
1079
- msgstr "Brugerlogin"
 
 
1080
 
1081
- #: ../classes/column/post/author-name.php:38
1082
- msgid "User Email"
1083
- msgstr "Bruger e-mail"
 
 
 
 
1084
 
1085
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1086
- msgid "User ID"
1087
- msgstr "Bruger ID"
1088
 
1089
- #: ../classes/column/post/author-name.php:40
1090
- msgid "First and Last Name"
1091
- msgstr "For- og efternavn"
 
 
 
 
1092
 
1093
- #: ../classes/column/post/author-name.php:106
1094
- msgid "This is the format of the author name."
1095
- msgstr "Dette er formattet for forfatterens navn"
1096
 
1097
- #: ../classes/column/post/before-moretag.php:14
1098
- msgid "Before More Tag"
1099
- msgstr "Før mere-mærket"
1100
 
1101
- #: ../classes/column/post/comment-count.php:14
1102
- msgid "Comment count"
1103
- msgstr "Antal kommentare"
1104
 
1105
- #: ../classes/column/post/comment-count.php:30
1106
- msgid "Total"
1107
- msgstr "Total"
1108
 
1109
- #: ../classes/column/post/comment-count.php:32
1110
- msgid "Pending"
1111
- msgstr "Afventende"
 
 
 
1112
 
1113
- #: ../classes/column/post/comment-count.php:33
1114
- msgid "Spam"
1115
- msgstr "Spam"
1116
 
1117
- #: ../classes/column/post/comment-count.php:78
1118
- #: ../classes/column/post/comment-status.php:14
1119
- msgid "Comment status"
1120
- msgstr "Kommentar status"
1121
 
1122
- #: ../classes/column/post/comment-count.php:78
1123
- msgid "Select which comment status you like to display."
1124
- msgstr "Vælg hvilken kommentarstatus du vil vise."
 
 
1125
 
1126
- #: ../classes/column/post/featured-image.php:14
1127
- msgid "Featured Image"
1128
- msgstr "Udvalgt billede"
1129
 
1130
- #: ../classes/column/post/formats.php:14
1131
- msgid "Post Format"
1132
- msgstr "Indlæg format"
 
 
 
 
1133
 
1134
- #: ../classes/column/post/modified.php:14
1135
- msgid "Last modified"
1136
- msgstr "Sidst ændret"
1137
 
1138
- #: ../classes/column/post/order.php:14
1139
- msgid "Page Order"
1140
- msgstr "Siderækkefølge"
 
1141
 
1142
- #: ../classes/column/post/page-template.php:12
1143
- msgid "Page Template"
1144
- msgstr "Sideskabelon"
1145
 
1146
- #: ../classes/column/post/parent.php:12
1147
- msgid "Parent"
1148
- msgstr "Forældre"
 
1149
 
1150
- #: ../classes/column/post/ping-status.php:14
1151
- msgid "Ping status"
1152
- msgstr "Ping status"
1153
 
1154
- #: ../classes/column/post/roles.php:14
1155
- msgid "Roles"
1156
- msgstr "Roller"
1157
 
1158
- #: ../classes/column/post/slug.php:12
1159
- msgid "Slug"
1160
- msgstr "Kort titel"
 
 
 
 
 
1161
 
1162
- #: ../classes/column/post/status.php:14
1163
- msgid "Status"
1164
- msgstr "Status"
1165
 
1166
- #: ../classes/column/post/status.php:30
1167
- msgid "Published"
1168
- msgstr "Udgivet"
1169
 
1170
- #: ../classes/column/post/status.php:31
1171
- msgid "Draft"
1172
- msgstr "Klade"
1173
 
1174
- #: ../classes/column/post/status.php:32
1175
- msgid "Scheduled"
1176
- msgstr "Planlagt"
1177
 
1178
- #: ../classes/column/post/status.php:33
1179
- msgid "Private"
1180
- msgstr "Privat"
1181
 
1182
- #: ../classes/column/post/status.php:34
1183
- msgid "Pending Review"
1184
- msgstr "Afventer revision"
 
1185
 
1186
- #: ../classes/column/post/sticky.php:14
1187
- msgid "Sticky"
1188
- msgstr "Opslag"
1189
 
1190
- #: ../classes/column/post/taxonomy.php:12
1191
- #: ../classes/column/post/taxonomy.php:68
1192
- msgid "Taxonomy"
1193
- msgstr "Taksonomi"
1194
 
1195
- #: ../classes/column/user/comment-count.php:14
1196
- msgid "Comment Count"
1197
- msgstr "Antal kommentarer"
 
 
 
 
 
1198
 
1199
- #: ../classes/column/user/first-name.php:14
1200
- msgid "First name"
1201
- msgstr "Fornavn"
1202
 
1203
- #: ../classes/column/user/last-name.php:14
1204
- msgid "Last name"
1205
- msgstr "Efternavn"
1206
 
1207
- #: ../classes/column/user/post-count.php:14
1208
- msgid "Post Count"
1209
- msgstr "Antal indlæg"
1210
 
1211
- #: ../classes/column/user/post-count.php:92
1212
- msgid "Post Type"
1213
- msgstr "Indlægstype"
1214
 
1215
- #: ../classes/column/user/registered.php:14
1216
- msgid "Registered"
1217
- msgstr "Registreret"
 
1218
 
1219
- #: ../classes/column/user/url.php:14
1220
- msgid "Url"
1221
- msgstr "Webadresse"
 
1222
 
1223
  #: ../classes/storage_model/comment.php:13
1224
  msgid "Comments"
@@ -1231,3 +1199,66 @@ msgstr "Links"
1231
  #: ../classes/storage_model/user.php:13
1232
  msgid "Users"
1233
  msgstr "Brugere"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
10
+ "PO-Revision-Date: 2014-03-21 11:44+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/da_DK/)\n"
14
+ "Language: da_DK\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
 
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Generator: Poedit 1.6.4\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
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
27
  msgid "Thumbnail"
28
  msgstr "Miniaturebillede"
29
 
30
+ #: ../classes/column.php:498
31
  msgid "Medium"
32
  msgstr "Medium"
33
 
34
+ #: ../classes/column.php:499
35
  msgid "Large"
36
  msgstr "Stor"
37
 
38
+ #: ../classes/column.php:500
39
  msgid "Full"
40
  msgstr "Fuld"
41
 
42
+ #: ../classes/column.php:792
43
  msgid "Date Format"
44
  msgstr "Datoformat"
45
 
46
+ #: ../classes/column.php:793
47
  msgid "This will determine how the date will be displayed."
48
  msgstr "Dette vil bestmme hvordan datoen vil blive vist."
49
 
50
+ #: ../classes/column.php:799
51
  msgid "Example:"
52
  msgstr "Eksempel:"
53
 
54
+ #: ../classes/column.php:801
55
  #, php-format
56
  msgid ""
57
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
60
  "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s"
61
  "\">standard datoformat her</a>."
62
 
63
+ #: ../classes/column.php:802
64
  msgid "Documentation on date and time formatting."
65
  msgstr "Dokumentation for dato- og tidsformattering."
66
 
67
+ #: ../classes/column.php:820
68
  msgid "Excerpt length"
69
  msgstr "Længden for uddrag"
70
 
71
+ #: ../classes/column.php:821
72
  msgid "Number of words"
73
  msgstr "Antal ord"
74
 
75
+ #: ../classes/column.php:843
76
  msgid "Preview size"
77
  msgstr "Forhåndsvisningsstørrelse"
78
 
79
+ #: ../classes/column.php:860 ../classes/column.php:939
80
  msgid "Custom"
81
  msgstr "Brugerdefineret"
82
 
83
+ #: ../classes/column.php:863
84
  msgid "width"
85
  msgstr "bredde"
86
 
87
+ #: ../classes/column.php:866
88
  msgid "height"
89
  msgstr "højde"
90
 
91
+ #: ../classes/column.php:882
92
+ msgid "Before"
93
+ msgstr "Før"
94
+
95
+ #: ../classes/column.php:882
96
+ msgid "This text will appear before the custom field value."
97
+ msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
98
+
99
+ #: ../classes/column.php:888
100
+ msgid "After"
101
+ msgstr "Efter"
102
+
103
+ #: ../classes/column.php:888
104
+ msgid "This text will appear after the custom field value."
105
+ msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
106
+
107
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
108
+ #: ../classes/settings.php:212
109
  msgid "Default"
110
  msgstr "Standard"
111
 
112
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
113
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
114
+ #: ../classes/column/user/actions.php:66
115
+ msgid "Edit"
116
+ msgstr "Rediger"
117
+
118
+ #: ../classes/column.php:963 ../classes/column.php:1024
119
+ #: ../classes/column/user/actions.php:74
120
  msgid "Remove"
121
  msgstr "Fjern"
122
 
123
+ #: ../classes/column.php:981
124
  msgid "Type"
125
  msgstr "Type"
126
 
127
+ #: ../classes/column.php:981
128
  msgid "Choose a column type."
129
  msgstr "Vælg en kolonne type."
130
 
131
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
132
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
133
+ #: ../classes/column/post/ID.php:12
134
+ msgid "ID"
135
+ msgstr "ID"
136
+
137
+ #: ../classes/column.php:991
138
  msgid "Label"
139
  msgstr "Etikette"
140
 
141
+ #: ../classes/column.php:991
142
  msgid "This is the name which will appear as the column header."
143
  msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
144
 
145
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
146
  msgid "Width"
147
  msgstr "Bredde"
148
 
149
+ #: ../classes/column.php:1000 ../classes/column.php:1001
150
  msgid "default"
151
  msgstr "standard"
152
 
153
+ #: ../classes/column/comment/actions.php:14
154
+ #: ../classes/column/link/actions.php:14
155
+ #: ../classes/column/media/actions.php:14
156
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
157
+ msgid "Actions"
158
+ msgstr "Handlinger"
159
 
160
+ #: ../classes/column/comment/actions.php:73
161
+ #: ../classes/column/comment/actions.php:78
162
+ msgid "Unapprove"
163
+ msgstr "Godkend ikke"
164
 
165
+ #: ../classes/column/comment/actions.php:75
166
+ #: ../classes/column/comment/actions.php:77
167
+ msgid "Approve"
168
+ msgstr "Godkende"
169
 
170
+ #: ../classes/column/comment/actions.php:86
171
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
172
+ msgid "Restore"
173
+ msgstr "Gendan"
174
 
175
+ #: ../classes/column/comment/actions.php:90
176
+ #: ../classes/column/post/actions.php:57
177
+ msgid "Delete Permanently"
178
+ msgstr "Slet permanent"
179
 
180
+ #: ../classes/column/comment/actions.php:97
181
+ #: ../classes/column/post/actions.php:49
182
+ msgid "Quick&nbsp;Edit"
183
+ msgstr "Hurtig rediger"
 
 
 
 
 
184
 
185
+ #: ../classes/column/comment/actions.php:98
186
+ msgid "Reply"
187
+ msgstr "Besvar"
188
 
189
+ #: ../classes/column/comment/agent.php:12
190
+ msgid "Agent"
191
+ msgstr "Agent"
192
 
193
+ #: ../classes/column/comment/approved.php:12
194
+ #: ../classes/column/post/comment-count.php:31
195
+ msgid "Approved"
196
+ msgstr "Godkendt"
 
197
 
198
+ #: ../classes/column/comment/author-avatar.php:12
199
+ msgid "Avatar"
200
+ msgstr "Avatar"
201
 
202
+ #: ../classes/column/comment/author-email.php:12
203
+ msgid "Author email"
204
+ msgstr "Forfatter email"
205
+
206
+ #: ../classes/column/comment/author-ip.php:12
207
+ msgid "Author IP"
208
+ msgstr "Forfatter IP"
209
+
210
+ #: ../classes/column/comment/author-url.php:12
211
+ msgid "Author url"
212
+ msgstr "Forfatter webadresse"
213
+
214
+ #: ../classes/column/comment/author.php:12
215
+ msgid "Author"
216
+ msgstr "Forfatter"
217
+
218
+ #: ../classes/column/comment/date-gmt.php:12
219
+ msgid "Date GMT"
220
+ msgstr "Dato GMT"
221
+
222
+ #: ../classes/column/comment/date-gmt.php:25
223
+ #: ../classes/column/comment/date.php:25
224
+ #, php-format
225
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
226
+ msgstr "Indsendt af <a href=\"%1$s\">%2$s at %3$s</a>"
227
+
228
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
229
+ #: ../classes/settings.php:217
230
+ msgid "Date"
231
+ msgstr "Dato"
232
 
233
+ #: ../classes/column/comment/excerpt.php:13
234
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
235
  #: ../classes/settings.php:214
236
+ msgid "Excerpt"
237
+ msgstr "Uddrag"
238
 
239
+ #: ../classes/column/comment/reply-to.php:12
240
+ msgid "In Reply To"
241
+ msgstr "Som svar "
242
+
243
+ #: ../classes/column/comment/word-count.php:12
244
+ #: ../classes/column/post/word-count.php:12
245
+ msgid "Word count"
246
+ msgstr "Antal ord"
247
 
248
+ #: ../classes/column/custom-field.php:16
249
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
250
  msgid "Custom Field"
251
  msgstr "Brugerdefineret felt"
252
 
253
+ #: ../classes/column/custom-field.php:66
254
+ msgid "Checkmark (true/false)"
255
+ msgstr "Flueben (ja/nej)"
256
 
257
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
258
+ msgid "Color"
259
+ msgstr "Farve"
 
 
 
 
260
 
261
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
262
+ msgid "Counter"
 
 
263
  msgstr ""
 
 
264
 
265
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
266
+ #: ../classes/settings.php:213
267
  msgid "Image"
268
  msgstr "Billede"
269
 
270
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
271
+ msgid "Media Library"
272
+ msgstr "Mediebibliotek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
275
  msgid "Multiple Values"
276
  msgstr "Flere værdier"
277
 
278
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
 
 
279
  msgid "Numeric"
280
  msgstr "Numerisk"
281
 
282
+ #: ../classes/column/custom-field.php:75
283
+ msgid "Post Title (Post ID's)"
284
+ msgstr "Indlæg titel (Indlæg ID)"
 
 
 
 
 
285
 
286
+ #: ../classes/column/custom-field.php:76
287
+ msgid "Username (User ID's)"
288
+ msgstr "Brugernavn (Bruger ID'er)"
289
+
290
+ #: ../classes/column/custom-field.php:377
291
+ msgid "Select your custom field."
292
+ msgstr "Vælg dit brugerdefineret felt."
293
+
294
+ #: ../classes/column/custom-field.php:387
295
+ msgid "No custom fields available."
296
+ msgstr "Ingen brugerdefineret felter tilgængelige."
297
 
298
+ #: ../classes/column/custom-field.php:394
299
+ msgid "Field Type"
300
+ msgstr "Felttype"
301
+
302
+ #: ../classes/column/custom-field.php:394
303
+ msgid "This will determine how the value will be displayed."
304
+ msgstr "Dette afgør hvordan værdien vil blive vist."
305
+
306
+ #: ../classes/column/link/actions.php:46
307
  #, php-format
308
  msgid ""
309
+ "You are about to delete this link '%s'\n"
310
+ " 'Cancel' to stop, 'OK' to delete."
 
311
  msgstr ""
312
+ "Du er ved at slette dette link '%s'\n"
313
+ " 'Annuller' for at stoppe, 'OK' for at slette."
 
314
 
315
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
316
+ msgid "Delete"
317
+ msgstr "Slet"
318
 
319
+ #: ../classes/column/link/description.php:12
320
+ #: ../classes/column/media/description.php:12
321
+ #: ../classes/column/user/description.php:14
322
+ msgid "Description"
323
+ msgstr "Beskrivelse"
324
 
325
+ #: ../classes/column/link/length.php:12
326
+ msgid "Length"
327
+ msgstr "Længde"
328
 
329
+ #: ../classes/column/link/notes.php:13
330
+ msgid "Notes"
331
+ msgstr "Noter"
332
 
333
+ #: ../classes/column/link/owner.php:12
334
+ msgid "Owner"
335
+ msgstr "Ejer"
336
 
337
+ #: ../classes/column/link/rss.php:12
338
+ msgid "Rss"
339
+ msgstr "Rss"
340
 
341
+ #: ../classes/column/link/target.php:12
342
+ msgid "Target"
343
+ msgstr "Mål"
344
 
345
+ #: ../classes/column/media/alternate-text.php:12
346
+ msgid "Alt"
347
+ msgstr "Alt"
348
 
349
+ #: ../classes/column/media/available-sizes.php:14
350
+ msgid "Available Sizes"
351
+ msgstr "Tilgængelige størrelser"
352
 
353
+ #: ../classes/column/media/available-sizes.php:37
354
+ msgid "full size"
355
+ msgstr "fuld størrelse"
356
 
357
+ #: ../classes/column/media/caption.php:12
358
+ #: ../classes/column/media/exif-data.php:36
359
+ msgid "Caption"
360
+ msgstr "Titeltekst"
 
 
 
361
 
362
+ #: ../classes/column/media/dimensions.php:12
363
+ msgid "Dimensions"
364
+ msgstr "Mål"
365
 
366
+ #: ../classes/column/media/exif-data.php:12
367
+ msgid "EXIF data"
368
+ msgstr "EXIF data"
369
 
370
+ #: ../classes/column/media/exif-data.php:33
371
+ msgid "Aperture"
372
+ msgstr "Aperture"
373
 
374
+ #: ../classes/column/media/exif-data.php:34
375
+ msgid "Credit"
376
+ msgstr "Credit"
377
 
378
+ #: ../classes/column/media/exif-data.php:35
379
+ msgid "Camera"
380
+ msgstr "Kamera"
 
 
 
 
 
 
381
 
382
+ #: ../classes/column/media/exif-data.php:37
383
+ msgid "Timestamp"
384
+ msgstr "Timestamp"
 
 
385
 
386
+ #: ../classes/column/media/exif-data.php:38
387
+ msgid "Copyright EXIF"
388
+ msgstr "Copyright EXIF"
389
 
390
+ #: ../classes/column/media/exif-data.php:39
391
+ msgid "Focal Length"
392
+ msgstr "Focal Length"
393
 
394
+ #: ../classes/column/media/exif-data.php:40
395
+ msgid "ISO"
396
+ msgstr "ISO"
397
 
398
+ #: ../classes/column/media/exif-data.php:41
399
+ msgid "Shutter Speed"
400
+ msgstr "Shutter Speed"
401
 
402
+ #: ../classes/column/media/exif-data.php:42
403
+ msgid "Title"
404
+ msgstr "Title"
405
 
406
+ #: ../classes/column/media/file-name.php:12
407
+ msgid "File name"
408
+ msgstr "Filnavn"
409
 
410
+ #: ../classes/column/media/file-size.php:12
411
+ msgid "File size"
412
+ msgstr "Filstørrelse"
 
 
 
 
413
 
414
+ #: ../classes/column/media/full-path.php:12
415
+ msgid "Full path"
416
+ msgstr "Fuld sti"
417
 
418
+ #: ../classes/column/media/height.php:12
419
+ msgid "Height"
420
+ msgstr "Højde"
421
 
422
+ #: ../classes/column/media/mime-type.php:12
423
+ msgid "Mime type"
424
+ msgstr "Mime type"
425
 
426
+ #: ../classes/column/post/actions.php:48
427
+ msgid "Edit this item"
428
+ msgstr "Rediger dette element"
 
 
 
 
 
 
429
 
430
+ #: ../classes/column/post/actions.php:49
431
+ msgid "Edit this item inline"
432
+ msgstr "Rediger dette element linje"
433
 
434
+ #: ../classes/column/post/actions.php:53
435
+ msgid "Restore this item from the Trash"
436
+ msgstr "Gendan dette element fra papirkurven"
437
 
438
+ #: ../classes/column/post/actions.php:55
439
+ msgid "Move this item to the Trash"
440
+ msgstr "Flyt dette element til papirkurven"
 
 
 
 
 
441
 
442
+ #: ../classes/column/post/actions.php:55
443
+ #: ../classes/column/post/comment-count.php:34
444
+ #: ../classes/column/post/status.php:38
445
+ msgid "Trash"
446
+ msgstr "Papirkurv"
447
 
448
+ #: ../classes/column/post/actions.php:57
449
+ msgid "Delete this item permanently"
450
+ msgstr "Slet dette element permanent"
 
 
 
 
451
 
452
+ #: ../classes/column/post/actions.php:62
453
+ #, php-format
454
+ msgid "Preview &#8220;%s&#8221;"
455
+ msgstr "Eksempel &#8220;%s&#8221;"
456
 
457
+ #: ../classes/column/post/actions.php:62
458
+ msgid "Preview"
459
+ msgstr "Eksempel"
460
 
461
+ #: ../classes/column/post/actions.php:64
462
+ #, php-format
463
+ msgid "View &#8220;%s&#8221;"
464
+ msgstr "Vis &#8220;%s&#8221;"
465
 
466
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
467
+ msgid "View"
468
+ msgstr "Vis"
469
 
470
+ #: ../classes/column/post/attachment-count.php:12
471
+ msgid "No. of Attachments"
472
+ msgstr "Antal vedhæftede filer"
 
 
 
 
473
 
474
+ #: ../classes/column/post/attachment.php:12
475
+ msgid "Attachment"
476
+ msgstr "Vedhæftet fil"
 
 
 
477
 
478
+ #: ../classes/column/post/author-name.php:12
479
+ msgid "Display Author As"
480
+ msgstr "Vis forfatter som"
481
 
482
+ #: ../classes/column/post/author-name.php:34
483
+ msgid "Display Name"
484
+ msgstr "Offentligt navn"
485
 
486
+ #: ../classes/column/post/author-name.php:35
487
+ msgid "First Name"
488
+ msgstr "Fornavn"
489
 
490
+ #: ../classes/column/post/author-name.php:36
491
+ msgid "Last Name"
492
+ msgstr "Efternavn"
493
 
494
+ #: ../classes/column/post/author-name.php:37
495
+ #: ../classes/column/user/nickname.php:14
496
+ msgid "Nickname"
497
+ msgstr "Kaldenavn"
498
 
499
+ #: ../classes/column/post/author-name.php:38
500
+ msgid "User Login"
501
+ msgstr "Brugerlogin"
502
 
503
+ #: ../classes/column/post/author-name.php:39
504
+ msgid "User Email"
505
+ msgstr "Bruger e-mail"
 
 
 
 
506
 
507
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
508
+ msgid "User ID"
509
+ msgstr "Bruger ID"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
+ msgid "First and Last Name"
513
+ msgstr "For- og efternavn"
 
 
514
 
515
+ #: ../classes/column/post/author-name.php:118
516
+ msgid "This is the format of the author name."
517
+ msgstr "Dette er formattet for forfatterens navn"
 
 
 
 
518
 
519
+ #: ../classes/column/post/before-moretag.php:14
520
+ msgid "Before More Tag"
521
+ msgstr "Før mere-mærket"
522
 
523
+ #: ../classes/column/post/comment-count.php:14
524
+ msgid "Comment count"
525
+ msgstr "Antal kommentare"
 
 
 
 
526
 
527
+ #: ../classes/column/post/comment-count.php:30
528
+ msgid "Total"
529
+ msgstr "Total"
530
 
531
+ #: ../classes/column/post/comment-count.php:32
532
+ msgid "Pending"
533
+ msgstr "Afventende"
534
 
535
+ #: ../classes/column/post/comment-count.php:33
536
+ msgid "Spam"
537
+ msgstr "Spam"
538
 
539
+ #: ../classes/column/post/comment-count.php:95
540
+ #: ../classes/column/post/comment-status.php:14
541
+ msgid "Comment status"
542
+ msgstr "Kommentar status"
543
 
544
+ #: ../classes/column/post/comment-count.php:95
545
+ msgid "Select which comment status you like to display."
546
+ msgstr "Vælg hvilken kommentarstatus du vil vise."
 
 
 
 
 
547
 
548
+ #: ../classes/column/post/featured-image.php:14
549
+ msgid "Featured Image"
550
+ msgstr "Udvalgt billede"
 
551
 
552
+ #: ../classes/column/post/formats.php:14
553
+ msgid "Post Format"
554
+ msgstr "Indlæg format"
555
 
556
+ #: ../classes/column/post/modified.php:14
557
+ msgid "Last modified"
558
+ msgstr "Sidst ændret"
559
 
560
+ #: ../classes/column/post/order.php:14
561
+ msgid "Page Order"
562
+ msgstr "Siderækkefølge"
563
 
564
+ #: ../classes/column/post/page-template.php:12
565
+ msgid "Page Template"
566
+ msgstr "Sideskabelon"
567
 
568
+ #: ../classes/column/post/parent.php:12
569
+ msgid "Parent"
570
+ msgstr "Forældre"
571
 
572
+ #: ../classes/column/post/ping-status.php:14
573
+ msgid "Ping status"
574
+ msgstr "Ping status"
 
575
 
576
+ #: ../classes/column/post/roles.php:14
577
+ msgid "Roles"
578
+ msgstr "Roller"
579
 
580
+ #: ../classes/column/post/slug.php:12
581
+ msgid "Slug"
582
+ msgstr "Kort titel"
583
 
584
+ #: ../classes/column/post/status.php:14
585
+ msgid "Status"
586
+ msgstr "Status"
 
 
 
 
 
587
 
588
+ #: ../classes/column/post/status.php:32
589
+ msgid "Published"
590
+ msgstr "Udgivet"
591
 
592
+ #: ../classes/column/post/status.php:33
593
+ msgid "Draft"
594
+ msgstr "Klade"
595
 
596
+ #: ../classes/column/post/status.php:34
597
+ msgid "Scheduled"
598
+ msgstr "Planlagt"
599
 
600
+ #: ../classes/column/post/status.php:35
601
+ msgid "Private"
602
+ msgstr "Privat"
603
 
604
+ #: ../classes/column/post/status.php:36
605
+ msgid "Pending Review"
606
+ msgstr "Afventer revision"
607
 
608
+ #: ../classes/column/post/status.php:37
609
+ #, fuzzy
610
+ msgid "Auto Draft"
611
+ msgstr "Klade"
 
 
612
 
613
+ #: ../classes/column/post/sticky.php:14
614
+ msgid "Sticky"
615
+ msgstr "Opslag"
616
 
617
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
618
+ msgid "Taxonomy"
619
+ msgstr "Taksonomi"
620
 
621
+ #: ../classes/column/user/comment-count.php:14
622
+ msgid "Comment Count"
623
+ msgstr "Antal kommentarer"
 
 
624
 
625
+ #: ../classes/column/user/first-name.php:14
626
+ msgid "First name"
627
+ msgstr "Fornavn"
628
 
629
+ #: ../classes/column/user/last-name.php:14
630
+ msgid "Last name"
631
+ msgstr "Efternavn"
 
 
 
 
632
 
633
+ #: ../classes/column/user/post-count.php:14
634
+ msgid "Post Count"
635
+ msgstr "Antal indlæg"
636
 
637
+ #: ../classes/column/user/post-count.php:99
638
+ msgid "Post Type"
639
+ msgstr "Indlægstype"
640
 
641
+ #: ../classes/column/user/registered.php:14
642
+ msgid "Registered"
643
+ msgstr "Registreret"
 
644
 
645
+ #: ../classes/column/user/url.php:14
646
+ msgid "Url"
647
+ msgstr "Webadresse"
 
648
 
649
+ #: ../classes/settings.php:64
650
+ msgid "Admin Columns Settings"
651
+ msgstr "Admin Kolonne Indstillinger"
652
 
653
+ #: ../classes/settings.php:64 ../classes/settings.php:635
654
+ #: ../classes/upgrade.php:89
655
+ msgid "Admin Columns"
656
+ msgstr "Admin Columns"
657
 
658
+ #: ../classes/settings.php:116
659
+ #, php-format
660
+ msgid "%s column is already present and can not be duplicated."
661
+ msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
662
 
663
+ #: ../classes/settings.php:172
664
+ msgid "Default settings succesfully restored."
665
+ msgstr "Standard indstillinger gendannet med success."
666
 
667
+ #: ../classes/settings.php:190 ../classes/settings.php:447
668
+ msgid "Overview"
669
+ msgstr "Overblik"
670
 
671
+ #: ../classes/settings.php:193
672
+ msgid ""
673
+ "This plugin is for adding and removing additional columns to the "
674
+ "administration screens for post(types), pages, media library, comments, "
675
+ "links and users. Change the column's label and reorder them."
676
+ msgstr ""
677
+ "Dette plugin er til at tilføje og fjerne tillægskolonner på "
678
+ "administrationsskærme for indlægs(typer), sider, mediebibliotek, "
679
+ "kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
680
 
681
+ #: ../classes/settings.php:196
682
+ msgid "Basics"
683
+ msgstr "Grundlæggende"
684
 
685
+ #: ../classes/settings.php:198
686
+ msgid "Change order"
687
+ msgstr "Ændre rækkefølge"
688
 
689
+ #: ../classes/settings.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
690
  msgid ""
691
+ "By dragging the columns you can change the order which they will appear in."
 
692
  msgstr ""
693
+ "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
 
695
+ #: ../classes/settings.php:200
696
+ msgid "Change label"
697
+ msgstr "Ændre etikette"
 
 
 
698
 
699
+ #: ../classes/settings.php:201
700
+ msgid ""
701
+ "By clicking on the triangle you will see the column options. Here you can "
702
+ "change each label of the columns heading."
703
+ msgstr ""
704
+ "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du "
705
+ "vælge hver etikette for kolonnernes overskrift. "
706
 
707
+ #: ../classes/settings.php:202
708
+ msgid "Change column width"
709
+ msgstr "Ændre kolonnebredden"
 
710
 
711
+ #: ../classes/settings.php:203
712
+ msgid ""
713
+ "By clicking on the triangle you will see the column options. By using the "
714
+ "draggable slider you can set the width of the columns in percentages."
715
+ msgstr ""
716
+ "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at "
717
+ "indstille kolonnebredden."
718
 
719
+ #: ../classes/settings.php:209
720
+ msgid "'Custom Field' column"
721
+ msgstr "'Brugerdefineret felt' kolonne"
 
 
722
 
723
+ #: ../classes/settings.php:210
724
+ msgid ""
725
+ "The custom field colum uses the custom fields from posts and users. There "
726
+ "are 10 types which you can set."
727
+ msgstr ""
728
+ "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra "
729
+ "indlæg og brugere. Der er 10 typer som du kan sætte."
730
 
731
+ #: ../classes/settings.php:212
732
+ msgid ""
733
+ "Value: Can be either a string or array. Arrays will be flattened and values "
734
+ "are seperated by a ',' comma."
735
+ msgstr ""
736
+ "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive "
737
+ "fladtrykt og værdier separeret ved et ',' komma."
738
 
739
+ #: ../classes/settings.php:213
740
+ msgid ""
741
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
742
+ "comma )."
743
+ msgstr ""
744
+ "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret "
745
+ "ved et ',' komma )."
746
 
747
+ #: ../classes/settings.php:214
748
+ msgid "Value: This will show the first 20 words of the Post content."
749
+ msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
 
750
 
751
+ #: ../classes/settings.php:215
752
+ msgid ""
753
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
754
+ msgstr ""
755
+ "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) "
756
+ "tabel."
757
 
758
+ #: ../classes/settings.php:216
759
+ msgid ""
760
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
761
+ "for sorting, so you can sort your posts on numeric (custom field) values."
762
+ msgstr ""
763
+ "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt "
764
+ "til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret "
765
+ "felt) værdier."
766
 
767
+ #: ../classes/settings.php:217
768
+ #, php-format
769
+ msgid ""
770
+ "Value: Can be unix time stamp or a date format as described in the <a "
771
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
772
+ "href='%s'>general settings</a> page."
773
+ msgstr ""
774
+ "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a "
775
+ "href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a "
776
+ "href='%s'>generalle indstillinger</a> siden."
777
 
778
+ #: ../classes/settings.php:218
779
+ msgid "Post Titles"
780
+ msgstr "Indlægstitler"
781
 
782
+ #: ../classes/settings.php:218
783
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
784
+ msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
785
 
786
+ #: ../classes/settings.php:219
787
+ msgid "Usernames"
788
+ msgstr "Brugernavne"
789
 
790
+ #: ../classes/settings.php:219
791
+ msgid "Value: can be one or more User ID's (seperated by ',')."
792
+ msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
 
 
793
 
794
+ #: ../classes/settings.php:220
795
+ msgid "Checkmark"
796
+ msgstr "Flueben"
 
797
 
798
+ #: ../classes/settings.php:220
799
+ msgid "Value: should be a 1 (one) or 0 (zero)."
800
+ msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
801
 
802
+ #: ../classes/settings.php:221
803
+ msgid "Value: hex value color, such as #808080."
804
+ msgstr "Værdi: hex værdi farve, for eksempel #808080."
 
805
 
806
+ #: ../classes/settings.php:222
807
+ #, fuzzy
808
  msgid ""
809
+ "Value: Can be either a string or array. This will display a count of the "
810
+ "number of times the meta key is used by the item."
811
  msgstr ""
812
+ "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive "
813
+ "fladtrykt og værdier separeret ved et ',' komma."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
 
815
+ #: ../classes/settings.php:367
816
+ msgid "Welcome to Admin Columns"
817
+ msgstr "Velkommen til Admin Columns"
818
 
819
+ #: ../classes/settings.php:370
820
+ msgid "Thank you for updating to the latest version!"
821
+ msgstr "Tak fordi du opdaterede til den seneste version!"
822
 
823
+ #: ../classes/settings.php:371
824
+ msgid ""
825
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
826
+ "like it."
827
+ msgstr ""
828
+ "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du "
829
+ "kan lide det."
830
 
831
+ #: ../classes/settings.php:376
832
+ msgid "What’s New"
833
+ msgstr "Hvad er nyt"
834
 
835
+ #: ../classes/settings.php:377
836
+ msgid "Changelog"
837
+ msgstr "Ændringslog"
838
 
839
+ #: ../classes/settings.php:379
840
+ msgid "Download Addons"
841
+ msgstr "Hent udvidelser"
842
 
843
+ #: ../classes/settings.php:385
844
+ msgid "Addons"
845
+ msgstr "Udvidelsesmoduler"
846
 
847
+ #: ../classes/settings.php:387
848
+ msgid ""
849
+ "Addons are now activated by downloading and installing individual plugins. "
850
+ "Although these plugins will not be hosted on the wordpress.org repository, "
851
+ "each Add-on will continue to receive updates in the usual way."
852
+ msgstr ""
853
+ "Udvidelser aktiveres nu ved hente og installere individuelle plugins. Selvom "
854
+ "disse plugins ikke vil blive hosted på wordpress.org, vil disse udvidelser "
855
+ "fortsat modtage opdatering på sædvanlig vis."
856
 
857
+ #: ../classes/settings.php:390
858
+ msgid ""
859
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
860
+ msgstr ""
861
+ "Denne hjemmeside benytter Sortorder udvidelse. Denne udvidelse skal hentes."
862
 
863
+ #: ../classes/settings.php:393
864
+ msgid "Addons are seperate plugins which need to be downloaded."
865
+ msgstr "Udvidelser er separate plugins, der skal hentes."
866
 
867
+ #: ../classes/settings.php:393
868
+ msgid "Download your Addons"
869
+ msgstr "Hent dine udvidelser"
870
 
871
+ #: ../classes/settings.php:399
872
+ msgid "This website does not use add-ons"
873
+ msgstr "Denne hjemmeside benytter ikke udvidelser"
874
 
875
+ #: ../classes/settings.php:399
876
+ msgid "See our website for the Pro-addon."
877
+ msgstr "Se vores hjemmeside for Pro udvidelsen."
878
 
879
+ #: ../classes/settings.php:406
880
+ msgid "Important"
881
+ msgstr "Vigtigt"
882
 
883
+ #: ../classes/settings.php:408
884
+ msgid "Database Changes"
885
+ msgstr "Database ændringer"
886
 
887
+ #: ../classes/settings.php:409
888
+ msgid ""
889
+ "The database has been changed between versions 1 and 2. But we made sure you "
890
+ "can still roll back to version 1x without any issues."
891
+ msgstr ""
892
+ "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du "
893
+ "stadig kan gå tilbage til version 1x uden nogen problemer."
894
 
895
+ #: ../classes/settings.php:412
896
+ msgid "Make sure you backup your database and then click"
897
+ msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
898
 
899
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
900
+ msgid "Upgrade Database"
901
+ msgstr "Opgradér database"
902
 
903
+ #: ../classes/settings.php:415
904
+ msgid "Potential Issues"
905
+ msgstr "Mulige problemer"
906
 
907
+ #: ../classes/settings.php:416
908
+ msgid ""
909
+ "Do to the sizable refactoring the code, surounding Addons and action/"
910
+ "filters, your website may not operate correctly. It is important that you "
911
+ "read the full"
912
+ msgstr ""
913
+ "På grund af den betydelige omstrukturering af koden omkring udvidelser og "
914
+ "action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er "
915
+ "vigtigt at du læser den fulde"
916
 
917
+ #: ../classes/settings.php:416
918
+ msgid "Migrating from v1 to v2"
919
+ msgstr "Migration fra v1 til v2"
920
 
921
+ #: ../classes/settings.php:416
922
+ msgid "guide to view the full list of changes."
923
+ msgstr "guide for at vise den fulde liste med ændringer."
924
 
925
+ #: ../classes/settings.php:416
926
+ #, php-format
927
+ msgid ""
928
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
929
+ "can fix it in the next release."
930
+ msgstr ""
931
+ "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> "
932
+ "så vi kan rette det inden næste udgivelse."
933
 
934
+ #: ../classes/settings.php:419
935
+ msgid "Important!"
936
+ msgstr "Vigtigt!"
937
 
938
+ #: ../classes/settings.php:419
939
+ msgid ""
940
+ "If you updated the Admin Columns plugin without prior knowledge of such "
941
+ "changes, Please roll back to the latest"
942
+ msgstr ""
943
+ "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne "
944
+ "ændringer, venligst gå tilbage til den seneste"
945
 
946
+ #: ../classes/settings.php:419
947
+ msgid "version 1"
948
+ msgstr "version 1"
949
 
950
+ #: ../classes/settings.php:419
951
+ msgid "of this plugin."
952
+ msgstr "af dette plugin."
953
 
954
+ #: ../classes/settings.php:425
955
+ msgid "Changelog for"
956
+ msgstr "Ændringslog for"
957
 
958
+ #: ../classes/settings.php:440
959
+ msgid "Learn more"
960
+ msgstr "Lær mere"
 
 
961
 
962
+ #: ../classes/settings.php:449
963
+ msgid ""
964
+ "New to v2, all Addons act as separate plugins which need to be individually "
965
+ "downloaded, installed and updated."
966
+ msgstr ""
967
+ "Nyt i v2, alle udvidelser fungerer som separate plugins, der hver skal "
968
+ "hentes, installeres og opdateres."
969
 
970
+ #: ../classes/settings.php:450
971
+ msgid ""
972
+ "This page will assist you in downloading and installing each available Addon."
973
+ msgstr ""
974
+ "Denne side vil hjælpe dig med at hente og installere hver tilgængelig "
975
+ "udvidelse."
976
 
977
+ #: ../classes/settings.php:451
978
+ msgid "Available Addons"
979
+ msgstr "Tilgængelige udvidelser"
980
 
981
+ #: ../classes/settings.php:456
982
+ msgid "Name"
983
+ msgstr "Navn"
 
984
 
985
+ #: ../classes/settings.php:457 ../classes/settings.php:465
986
+ msgid "Download"
987
+ msgstr "Hent"
988
 
989
+ #: ../classes/settings.php:463
990
+ msgid "Pro Add-on (includes Sortorder add-on)"
991
+ msgstr "Pro udvidelse (inkluderer Sortorder udvidelse)"
992
 
993
+ #: ../classes/settings.php:473
994
+ msgid "Installation"
995
+ msgstr "Installation"
996
 
997
+ #: ../classes/settings.php:475
998
+ msgid "For each Add-on available, please perform the following:"
999
+ msgstr "For hver tilgængelig udvidelse, gør venligst følgende:"
1000
 
1001
+ #: ../classes/settings.php:477
1002
+ msgid "Download the Addon plugin (.zip file) to your desktop"
1003
+ msgstr "Hent udvidelsesplugin (.zip fil) til dit skrivebord"
1004
 
1005
+ #: ../classes/settings.php:478
1006
+ msgid "Navigate to"
1007
+ msgstr "Gå til"
1008
 
1009
+ #: ../classes/settings.php:478
1010
+ msgid "Plugins > Add New > Upload"
1011
+ msgstr "Plugins > Tilføj nyt > Upload"
 
1012
 
1013
+ #: ../classes/settings.php:479
1014
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1015
+ msgstr ""
1016
+ "Brug uploadfunktionen til at gennemse, vælge og installere din udvidelse (."
1017
+ "zip fil)"
1018
 
1019
+ #: ../classes/settings.php:480
1020
+ msgid ""
1021
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
1022
+ "link"
1023
+ msgstr ""
1024
+ "Når pluginet er blevet uploadet og installeret, klik på 'Aktiver plugin' "
1025
+ "linket"
1026
 
1027
+ #: ../classes/settings.php:481
1028
+ msgid "The Add-on is now installed and activated!"
1029
+ msgstr "Udvidelsen er nu installeret og aktiveret!"
1030
 
1031
+ #: ../classes/settings.php:482
1032
+ #, php-format
1033
+ msgid ""
1034
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1035
+ msgstr ""
1036
+ "For automatisk opdatering, sikre at du har <a href='%s'>indtastet din "
1037
+ "licensnøgle</a>."
1038
 
1039
+ #: ../classes/settings.php:492
1040
+ msgid "Start using Admin Columns"
1041
+ msgstr " i gang med at bruge Admin Columns"
1042
 
1043
+ #: ../classes/settings.php:539
1044
+ msgid "General Settings"
1045
+ msgstr "Generelle indstillinger"
1046
 
1047
+ #: ../classes/settings.php:540
1048
+ msgid "Customize your Admin Columns settings."
1049
+ msgstr "Tilpas din Admin Columns indstillinger."
1050
 
1051
+ #: ../classes/settings.php:553
1052
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1053
+ msgstr "Vis skjulte brugerdefineret felter. Standard er <code>fra</code>."
1054
 
1055
+ #: ../classes/settings.php:559
1056
+ msgid ""
1057
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1058
+ msgstr ""
1059
+ "Vis \"Rediger kolonner\" knap på administrator skærme. Standard er "
1060
+ "<code>fra</code>."
1061
 
1062
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1063
+ msgid "Save"
1064
+ msgstr "Gem"
1065
 
1066
+ #: ../classes/settings.php:606
1067
+ msgid "Restore Settings"
1068
+ msgstr "Gendan indstillinger"
 
1069
 
1070
+ #: ../classes/settings.php:607
1071
+ msgid "This will delete all column settings and restore the default settings."
1072
+ msgstr ""
1073
+ "Dette vil slette alle kolonneindstillinger og gendanne "
1074
+ "standardindstillingerne."
1075
 
1076
+ #: ../classes/settings.php:613
1077
+ msgid "Restore default settings"
1078
+ msgstr "Gendan standard indstillinger"
1079
 
1080
+ #: ../classes/settings.php:613
1081
+ msgid ""
1082
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1083
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1084
+ msgstr ""
1085
+ "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke "
1086
+ "fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
1087
 
1088
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1089
+ msgid "Settings"
1090
+ msgstr "Indstillinger"
1091
 
1092
+ #: ../classes/settings.php:665
1093
+ #, fuzzy
1094
+ msgid "Posttypes"
1095
+ msgstr "Indlægstype"
1096
 
1097
+ #: ../classes/settings.php:666
1098
+ msgid "Others"
1099
+ msgstr ""
1100
 
1101
+ #: ../classes/settings.php:667
1102
+ #, fuzzy
1103
+ msgid "Taxonomies"
1104
+ msgstr "Taksonomi"
1105
 
1106
+ #: ../classes/settings.php:688
1107
+ msgid "Store settings"
1108
+ msgstr "Gem indstillinger"
1109
 
1110
+ #: ../classes/settings.php:692
1111
+ msgid "Update"
1112
+ msgstr "Opdater"
1113
 
1114
+ #: ../classes/settings.php:696
1115
+ #, php-format
1116
+ msgid ""
1117
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1118
+ "\\' to delete, \\'Cancel\\' to stop"
1119
+ msgstr ""
1120
+ "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. "
1121
+ "\\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
1122
 
1123
+ #: ../classes/settings.php:697
1124
+ msgid "columns"
1125
+ msgstr "kolonner"
1126
 
1127
+ #: ../classes/settings.php:710
1128
+ msgid "Get the Pro Add-on"
1129
+ msgstr "Få Pro udvidelsen"
1130
 
1131
+ #: ../classes/settings.php:714
1132
+ msgid "Add Sorting"
1133
+ msgstr "Tilføj sortering"
1134
 
1135
+ #: ../classes/settings.php:715
1136
+ msgid "Add Filtering"
1137
+ msgstr "Tilføj filtrering"
1138
 
1139
+ #: ../classes/settings.php:716
1140
+ msgid "Add Import/Export"
1141
+ msgstr "Tilføj import/eksport"
1142
 
1143
+ #: ../classes/settings.php:719
1144
+ #, php-format
1145
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1146
+ msgstr "Tjek <a href=\"%s\">Pro udvidelsen</a> for flere detaljer!"
1147
 
1148
+ #: ../classes/settings.php:750
1149
+ msgid "Support"
1150
+ msgstr "Hjælp"
1151
 
1152
+ #: ../classes/settings.php:753
1153
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1154
+ msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
 
1155
 
1156
+ #: ../classes/settings.php:756
1157
+ #, php-format
1158
+ msgid ""
1159
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1160
+ "href='%s'>visit the Admin Columns website</a>"
1161
+ msgstr ""
1162
+ "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips "
1163
+ "<a href='%s'>besøg Admin Columns hjemmeside</a>"
1164
 
1165
+ #: ../classes/settings.php:784
1166
+ msgid "Drag and drop to reorder"
1167
+ msgstr "Træk og slip for at ændre rækkefølgen"
1168
 
1169
+ #: ../classes/settings.php:787
1170
+ msgid "Add Column"
1171
+ msgstr "Tilføj kolonne"
1172
 
1173
+ #: ../classes/storage_model.php:222
1174
+ msgid "settings succesfully restored."
1175
+ msgstr "indstillinger er gendannet med success."
1176
 
1177
+ #: ../classes/storage_model.php:239
1178
+ msgid "No columns settings available."
1179
+ msgstr "Ingen kolonneindstillinger tilgængelige."
1180
 
1181
+ #: ../classes/storage_model.php:262
1182
+ #, php-format
1183
+ msgid "You are trying to store the same settings for %s."
1184
+ msgstr "Du forsøger at gemme samme indstillinger for %s."
1185
 
1186
+ #: ../classes/storage_model.php:266
1187
+ #, php-format
1188
+ msgid "Settings for %s updated succesfully."
1189
+ msgstr "Indstillinger for %s er opdateret med success."
1190
 
1191
  #: ../classes/storage_model/comment.php:13
1192
  msgid "Comments"
1199
  #: ../classes/storage_model/user.php:13
1200
  msgid "Users"
1201
  msgstr "Brugere"
1202
+
1203
+ #: ../classes/upgrade.php:45
1204
+ msgid "Upgrade"
1205
+ msgstr "Opgrader"
1206
+
1207
+ #: ../classes/upgrade.php:90
1208
+ msgid "requires a database upgrade"
1209
+ msgstr "en opgradering af databasen er påkrævet"
1210
+
1211
+ #: ../classes/upgrade.php:93
1212
+ msgid "why?"
1213
+ msgstr "hvorfor?"
1214
+
1215
+ #: ../classes/upgrade.php:94
1216
+ msgid "Please"
1217
+ msgstr "Venligst"
1218
+
1219
+ #: ../classes/upgrade.php:95
1220
+ msgid "backup your database"
1221
+ msgstr "tag backup af din database"
1222
+
1223
+ #: ../classes/upgrade.php:96
1224
+ msgid "then click"
1225
+ msgstr "derefter klik"
1226
+
1227
+ #: ../classes/upgrade.php:304
1228
+ msgid "Migrating Column Settings"
1229
+ msgstr "Migration af kolonne indstillinger"
1230
+
1231
+ #: ../classes/upgrade.php:340
1232
+ msgid "No Upgrade Required"
1233
+ msgstr "Ingen opgradering er påkrævet"
1234
+
1235
+ #: ../classes/upgrade.php:341
1236
+ msgid "Return to welcome screen."
1237
+ msgstr "Gå tilbage til velkomstskærmen."
1238
+
1239
+ #: ../classes/upgrade.php:359
1240
+ msgid "Upgrade Complete!"
1241
+ msgstr "Opgradering fuldført!"
1242
+
1243
+ #: ../classes/upgrade.php:359
1244
+ msgid "Return to settings."
1245
+ msgstr "Gå tilbage til indstillinger."
1246
+
1247
+ #: ../classes/upgrade.php:360
1248
+ msgid "Error"
1249
+ msgstr "Fejl"
1250
+
1251
+ #: ../classes/upgrade.php:361
1252
+ msgid ""
1253
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1254
+ "on the support forum."
1255
+ msgstr ""
1256
+ "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i "
1257
+ "support forummet."
1258
+
1259
+ #: ../codepress-admin-columns.php:447
1260
+ msgid "Edit columns"
1261
+ msgstr "Rediger kolonner"
1262
+
1263
+ #~ msgid "Publish"
1264
+ #~ msgstr "Udgiv"
languages/cpac-de_DE.mo CHANGED
Binary file
languages/cpac-de_DE.po CHANGED
@@ -4,1162 +4,1128 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/admin-"
11
  "columns/language/de_DE/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "Language: de_DE\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: utf-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
- msgid "Settings"
26
- msgstr "Einstellungen"
27
-
28
- #: ../codepress-admin-columns.php:350
29
- msgid "Edit columns"
30
- msgstr ""
31
-
32
- #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
  msgstr ""
35
 
36
- #: ../classes/column.php:480
37
  msgid "Medium"
38
  msgstr ""
39
 
40
- #: ../classes/column.php:481
41
  msgid "Large"
42
  msgstr ""
43
 
44
- #: ../classes/column.php:482
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
- #: ../classes/column.php:801
72
  msgid "Excerpt length"
73
  msgstr ""
74
 
75
- #: ../classes/column.php:802
76
  msgid "Number of words"
77
  msgstr ""
78
 
79
- #: ../classes/column.php:824
80
  msgid "Preview size"
81
  msgstr ""
82
 
83
- #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
  msgstr "Benutzerdefiniert"
86
 
87
- #: ../classes/column.php:844
88
  msgid "width"
89
  msgstr ""
90
 
91
- #: ../classes/column.php:847
92
  msgid "height"
93
  msgstr ""
94
 
95
- #: ../classes/column.php:898 ../classes/settings.php:224
96
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  msgid "Default"
98
  msgstr "Vorgabe"
99
 
100
- #: ../classes/column.php:923 ../classes/column.php:984
101
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
102
  msgid "Remove"
103
  msgstr "Entfernen"
104
 
105
- #: ../classes/column.php:942
106
  msgid "Type"
107
  msgstr ""
108
 
109
- #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
  msgstr ""
112
 
113
- #: ../classes/column.php:952
 
 
 
 
 
 
114
  msgid "Label"
115
  msgstr ""
116
 
117
- #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
119
  msgstr ""
120
 
121
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
  msgid "Width"
123
  msgstr "Breite"
124
 
125
- #: ../classes/column.php:961 ../classes/column.php:962
126
  msgid "default"
127
  msgstr "Vorgabe"
128
 
129
- #: ../classes/settings.php:68
130
- msgid "Admin Columns Settings"
131
- msgstr ""
 
 
 
132
 
133
- #: ../classes/settings.php:68 ../classes/settings.php:534
134
- #: ../classes/upgrade.php:89
135
- msgid "Admin Columns"
136
- msgstr "Admin Spalten"
137
 
138
- #: ../classes/settings.php:129
139
- #, php-format
140
- msgid "%s column is already present and can not be duplicated."
141
- msgstr ""
142
 
143
- #: ../classes/settings.php:184
144
- msgid "Default settings succesfully restored."
145
- msgstr ""
 
146
 
147
- #: ../classes/settings.php:202 ../classes/settings.php:457
148
- msgid "Overview"
149
- msgstr ""
 
150
 
151
- #: ../classes/settings.php:205
152
- msgid ""
153
- "This plugin is for adding and removing additional columns to the "
154
- "administration screens for post(types), pages, media library, comments, "
155
- "links and users. Change the column's label and reorder them."
156
- msgstr ""
157
 
158
- #: ../classes/settings.php:208
159
- msgid "Basics"
160
- msgstr ""
161
 
162
- #: ../classes/settings.php:210
163
- msgid "Change order"
164
- msgstr ""
165
 
166
- #: ../classes/settings.php:211
167
- msgid ""
168
- "By dragging the columns you can change the order which they will appear in."
169
- msgstr ""
170
 
171
- #: ../classes/settings.php:212
172
- msgid "Change label"
173
- msgstr ""
174
 
175
- #: ../classes/settings.php:213
176
- msgid ""
177
- "By clicking on the triangle you will see the column options. Here you can "
178
- "change each label of the columns heading."
 
 
 
 
 
 
 
 
 
 
179
  msgstr ""
180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  #: ../classes/settings.php:214
182
- msgid "Change column width"
183
- msgstr ""
184
 
185
- #: ../classes/settings.php:215
186
- msgid ""
187
- "By clicking on the triangle you will see the column options. By using the "
188
- "draggable slider you can set the width of the columns in percentages."
189
- msgstr ""
 
 
 
190
 
191
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
- #: ../classes/column/custom-field.php:324
193
  msgid "Custom Field"
194
  msgstr "Benutzerdefiniertes Feld"
195
 
196
- #: ../classes/settings.php:221
197
- msgid "'Custom Field' column"
198
  msgstr ""
199
 
200
- #: ../classes/settings.php:222
201
- msgid ""
202
- "The custom field colum uses the custom fields from posts and users. There "
203
- "are 10 types which you can set."
204
  msgstr ""
205
 
206
- #: ../classes/settings.php:224
207
- msgid ""
208
- "Value: Can be either a string or array. Arrays will be flattened and values "
209
- "are seperated by a ',' comma."
210
  msgstr ""
211
 
212
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
- #: ../classes/column/link/image.php:12
214
  msgid "Image"
215
  msgstr "Bild"
216
 
217
- #: ../classes/settings.php:225
218
- msgid ""
219
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
- "comma )."
221
- msgstr ""
222
-
223
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
- #: ../classes/column/comment/excerpt.php:13
225
- #: ../classes/column/post/excerpt.php:13
226
- msgid "Excerpt"
227
- msgstr "Auszug"
228
-
229
- #: ../classes/settings.php:226
230
- msgid "Value: This will show the first 20 words of the Post content."
231
  msgstr ""
232
 
233
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
235
  msgstr "Multiple Werte"
236
 
237
- #: ../classes/settings.php:227
238
- msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
240
- msgstr ""
241
-
242
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
243
  msgid "Numeric"
244
  msgstr "Numerisch"
245
 
246
- #: ../classes/settings.php:228
247
- msgid ""
248
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
249
- "for sorting, so you can sort your posts on numeric (custom field) values."
250
- msgstr ""
251
-
252
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
253
- #: ../classes/column/comment/date.php:12
254
- msgid "Date"
255
- msgstr "Datum"
256
 
257
- #: ../classes/settings.php:229
258
- #, php-format
259
- msgid ""
260
- "Value: Can be unix time stamp or a date format as described in the <a "
261
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
262
- "href='%s'>general settings</a> page."
263
  msgstr ""
264
 
265
- #: ../classes/settings.php:230
266
- msgid "Post Titles"
267
  msgstr ""
268
 
269
- #: ../classes/settings.php:230
270
- msgid "Value: can be one or more Post ID's (seperated by ',')."
271
  msgstr ""
272
 
273
- #: ../classes/settings.php:231
274
- msgid "Usernames"
275
  msgstr ""
276
 
277
- #: ../classes/settings.php:231
278
- msgid "Value: can be one or more User ID's (seperated by ',')."
279
  msgstr ""
280
 
281
- #: ../classes/settings.php:232
282
- msgid "Checkmark"
 
 
 
283
  msgstr ""
 
 
284
 
285
- #: ../classes/settings.php:232
286
- msgid "Value: should be a 1 (one) or 0 (zero)."
287
- msgstr ""
288
 
289
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
290
- msgid "Color"
291
- msgstr ""
 
 
292
 
293
- #: ../classes/settings.php:233
294
- msgid "Value: hex value color, such as #808080."
295
- msgstr ""
296
 
297
- #: ../classes/settings.php:377
298
- msgid "Welcome to Admin Columns"
299
- msgstr ""
300
 
301
- #: ../classes/settings.php:380
302
- msgid "Thank you for updating to the latest version!"
303
- msgstr ""
304
 
305
- #: ../classes/settings.php:381
306
- msgid ""
307
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
308
- "like it."
309
- msgstr ""
310
 
311
- #: ../classes/settings.php:386
312
- msgid "What’s New"
313
- msgstr ""
314
 
315
- #: ../classes/settings.php:387
316
- msgid "Changelog"
 
 
 
 
317
  msgstr ""
318
 
319
- #: ../classes/settings.php:389
320
- msgid "Download Addons"
321
  msgstr ""
322
 
323
- #: ../classes/settings.php:395
324
- msgid "Addons"
325
- msgstr "Add Ons"
 
326
 
327
- #: ../classes/settings.php:397
328
- msgid ""
329
- "Addons are now activated by downloading and installing individual plugins. "
330
- "Although these plugins will not be hosted on the wordpress.org repository, "
331
- "each Add-on will continue to receive updates in the usual way."
332
- msgstr ""
333
 
334
- #: ../classes/settings.php:400
335
- msgid ""
336
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
337
  msgstr ""
338
 
339
- #: ../classes/settings.php:403
340
- msgid "Addons are seperate plugins which need to be downloaded."
341
- msgstr ""
342
 
343
- #: ../classes/settings.php:403
344
- msgid "Download your Addons"
345
- msgstr ""
346
 
347
- #: ../classes/settings.php:409
348
- msgid "This website does not use add-ons"
349
- msgstr ""
350
 
351
- #: ../classes/settings.php:409
352
- msgid "See our website for the Pro-addon."
353
- msgstr ""
354
 
355
- #: ../classes/settings.php:416
356
- msgid "Important"
357
- msgstr ""
358
 
359
- #: ../classes/settings.php:418
360
- msgid "Database Changes"
361
- msgstr ""
362
 
363
- #: ../classes/settings.php:419
364
- msgid ""
365
- "The database has been changed between versions 1 and 2. But we made sure you "
366
- "can still roll back to version 1x without any issues."
367
- msgstr ""
368
 
369
- #: ../classes/settings.php:422
370
- msgid "Make sure you backup your database and then click"
371
- msgstr ""
372
 
373
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
374
- msgid "Upgrade Database"
375
- msgstr ""
376
 
377
- #: ../classes/settings.php:425
378
- msgid "Potential Issues"
379
- msgstr ""
380
 
381
- #: ../classes/settings.php:426
382
- msgid ""
383
- "Do to the sizable refactoring the code, surounding Addons and action/"
384
- "filters, your website may not operate correctly. It is important that you "
385
- "read the full"
386
- msgstr ""
387
 
388
- #: ../classes/settings.php:426
389
- msgid "Migrating from v1 to v2"
390
  msgstr ""
391
 
392
- #: ../classes/settings.php:426
393
- msgid "guide to view the full list of changes."
394
- msgstr ""
395
 
396
- #: ../classes/settings.php:426
397
- #, php-format
398
- msgid ""
399
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
400
- "can fix it in the next release."
401
- msgstr ""
402
 
403
- #: ../classes/settings.php:429
404
- msgid "Important!"
405
- msgstr ""
406
 
407
- #: ../classes/settings.php:429
408
- msgid ""
409
- "If you updated the Admin Columns plugin without prior knowledge of such "
410
- "changes, Please roll back to the latest"
411
- msgstr ""
412
 
413
- #: ../classes/settings.php:429
414
- msgid "version 1"
415
- msgstr ""
416
 
417
- #: ../classes/settings.php:429
418
- msgid "of this plugin."
419
- msgstr ""
420
 
421
- #: ../classes/settings.php:435
422
- msgid "Changelog for"
423
- msgstr ""
 
 
424
 
425
- #: ../classes/settings.php:450
426
- msgid "Learn more"
427
- msgstr ""
428
 
429
- #: ../classes/settings.php:459
430
- msgid ""
431
- "New to v2, all Addons act as separate plugins which need to be individually "
432
- "downloaded, installed and updated."
433
- msgstr ""
434
 
435
- #: ../classes/settings.php:460
436
- msgid ""
437
- "This page will assist you in downloading and installing each available Addon."
438
- msgstr ""
439
 
440
- #: ../classes/settings.php:461
441
- msgid "Available Addons"
442
- msgstr ""
 
443
 
444
- #: ../classes/settings.php:466
445
- msgid "Name"
446
- msgstr ""
447
 
448
- #: ../classes/settings.php:467 ../classes/settings.php:475
449
- msgid "Download"
450
- msgstr ""
451
 
452
- #: ../classes/settings.php:473
453
- msgid "Pro Add-on (includes Sortorder add-on)"
454
- msgstr ""
455
 
456
- #: ../classes/settings.php:483
457
- msgid "Installation"
458
  msgstr ""
459
 
460
- #: ../classes/settings.php:485
461
- msgid "For each Add-on available, please perform the following:"
462
  msgstr ""
463
 
464
- #: ../classes/settings.php:487
465
- msgid "Download the Addon plugin (.zip file) to your desktop"
466
  msgstr ""
467
 
468
- #: ../classes/settings.php:488
469
- msgid "Navigate to"
470
  msgstr ""
471
 
472
- #: ../classes/settings.php:488
473
- msgid "Plugins > Add New > Upload"
474
- msgstr ""
 
475
 
476
- #: ../classes/settings.php:489
477
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
478
  msgstr ""
479
 
480
- #: ../classes/settings.php:490
481
- msgid ""
482
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
483
- "link"
484
  msgstr ""
485
 
486
- #: ../classes/settings.php:491
487
- msgid "The Add-on is now installed and activated!"
488
- msgstr ""
489
 
490
- #: ../classes/settings.php:492
491
- #, php-format
492
- msgid ""
493
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
494
  msgstr ""
495
 
496
- #: ../classes/settings.php:502
497
- msgid "Start using Admin Columns"
498
  msgstr ""
499
 
500
- #: ../classes/settings.php:580
501
- msgid "Store settings"
502
  msgstr ""
503
 
504
- #: ../classes/settings.php:585
505
- msgid "Update"
506
- msgstr ""
507
 
508
- #: ../classes/settings.php:585
509
- msgid "Publish"
510
  msgstr ""
511
 
512
- #: ../classes/settings.php:589
513
- #, php-format
514
- msgid ""
515
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
516
- "\\' to delete, \\'Cancel\\' to stop"
517
  msgstr ""
518
 
519
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
520
- #: ../classes/column/post/actions.php:53
521
- msgid "Restore"
522
- msgstr "Wiederherstellen"
523
-
524
- #: ../classes/settings.php:590
525
- msgid "columns"
526
  msgstr ""
527
 
528
- #: ../classes/settings.php:600
529
- msgid "Get the Pro Add-on"
530
- msgstr ""
 
531
 
532
- #: ../classes/settings.php:604
533
- msgid "Add Sorting"
534
  msgstr ""
535
 
536
- #: ../classes/settings.php:605
537
- msgid "Add Filtering"
538
- msgstr ""
539
 
540
- #: ../classes/settings.php:606
541
- msgid "Add Import/Export"
542
- msgstr ""
543
 
544
- #: ../classes/settings.php:609
545
- #, php-format
546
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
547
- msgstr ""
548
 
549
- #: ../classes/settings.php:617
550
- msgid "Support"
551
- msgstr ""
552
 
553
- #: ../classes/settings.php:620
554
- msgid "Check the <strong>Help</strong> section in the top-right screen."
555
- msgstr ""
556
 
557
- #: ../classes/settings.php:622
558
- #, php-format
559
- msgid ""
560
- "For full documentation, bug reports, feature suggestions and other tips <a "
561
- "href='%s'>visit the Admin Columns website</a>"
562
  msgstr ""
563
 
564
- #: ../classes/settings.php:642
565
- msgid "Drag and drop to reorder"
566
- msgstr ""
567
 
568
- #: ../classes/settings.php:645
569
- msgid "Add Column"
570
- msgstr ""
571
 
572
- #: ../classes/settings.php:696
573
- msgid "General Settings"
574
- msgstr ""
575
 
576
- #: ../classes/settings.php:697
577
- msgid "Customize your Admin Columns settings."
578
- msgstr ""
579
 
580
- #: ../classes/settings.php:710
581
- msgid "Show hidden custom fields. Default is <code>off</code>."
582
- msgstr ""
583
 
584
- #: ../classes/settings.php:716
585
- msgid ""
586
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
587
- msgstr ""
588
 
589
- #: ../classes/settings.php:723
590
- msgid "Save"
591
- msgstr ""
592
 
593
- #: ../classes/settings.php:763
594
- msgid "Restore Settings"
595
- msgstr ""
596
 
597
- #: ../classes/settings.php:764
598
- msgid "This will delete all column settings and restore the default settings."
599
- msgstr ""
600
- "Alle Einstellungen werden gelöscht und die Voreinstellungen "
601
- "wiederhergestellt."
602
 
603
- #: ../classes/settings.php:770
604
- msgid "Restore default settings"
605
- msgstr "Vorgabewerte wiederherstellen"
 
606
 
607
- #: ../classes/settings.php:770
608
- msgid ""
609
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr ""
612
- "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' "
613
- "zum Löschen, \\'Cancel\\' für Abbruch"
614
 
615
- #: ../classes/storage_model.php:167
616
- msgid "settings succesfully restored."
617
- msgstr ""
618
 
619
- #: ../classes/storage_model.php:181
620
- msgid "No columns settings available."
621
  msgstr ""
622
 
623
- #: ../classes/storage_model.php:204
624
- #, php-format
625
- msgid "You are trying to store the same settings for %s."
 
 
 
 
 
 
 
626
  msgstr ""
627
 
628
- #: ../classes/storage_model.php:208
629
- #, php-format
630
- msgid "Settings for %s updated succesfully."
631
  msgstr ""
632
 
633
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
634
- msgid "View"
635
- msgstr "Ansicht"
636
 
637
- #: ../classes/upgrade.php:45
638
- msgid "Upgrade"
639
- msgstr ""
640
 
641
- #: ../classes/upgrade.php:90
642
- msgid "requires a database upgrade"
643
  msgstr ""
644
 
645
- #: ../classes/upgrade.php:93
646
- msgid "why?"
 
 
 
 
 
 
647
  msgstr ""
648
 
649
- #: ../classes/upgrade.php:94
650
- msgid "Please"
651
  msgstr ""
652
 
653
- #: ../classes/upgrade.php:95
654
- msgid "backup your database"
655
  msgstr ""
656
 
657
- #: ../classes/upgrade.php:96
658
- msgid "then click"
 
 
 
659
  msgstr ""
660
 
661
- #: ../classes/upgrade.php:304
662
- msgid "Migrating Column Settings"
663
  msgstr ""
664
 
665
- #: ../classes/upgrade.php:340
666
- msgid "No Upgrade Required"
667
  msgstr ""
668
 
669
- #: ../classes/upgrade.php:341
670
- msgid "Return to welcome screen."
 
671
  msgstr ""
672
 
673
- #: ../classes/upgrade.php:359
674
- msgid "Upgrade Complete!"
675
  msgstr ""
676
 
677
- #: ../classes/upgrade.php:359
678
- msgid "Return to settings."
 
 
679
  msgstr ""
680
 
681
- #: ../classes/upgrade.php:360
682
- msgid "Error"
683
  msgstr ""
684
 
685
- #: ../classes/upgrade.php:361
686
  msgid ""
687
- "Sorry. Something went wrong during the upgrade process. Please report this "
688
- "on the support forum."
689
  msgstr ""
690
 
691
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
692
- msgid "Media Library"
693
  msgstr ""
694
 
695
- #: ../classes/column/custom-field.php:79
696
- msgid "Post Title (Post ID's)"
697
- msgstr "Post Titel (Post ID's)"
698
-
699
- #: ../classes/column/custom-field.php:80
700
- msgid "Username (User ID's)"
701
  msgstr ""
702
 
703
- #: ../classes/column/custom-field.php:81
704
- msgid "Checkmark (true/false)"
 
 
705
  msgstr ""
706
 
707
- #: ../classes/column/custom-field.php:324
708
- msgid "Select your custom field."
 
 
709
  msgstr ""
710
 
711
- #: ../classes/column/custom-field.php:334
712
- msgid "No custom fields available."
713
  msgstr ""
714
 
715
- #: ../classes/column/custom-field.php:341
716
- msgid "Field Type"
 
717
  msgstr ""
718
 
719
- #: ../classes/column/custom-field.php:341
720
- msgid "This will determine how the value will be displayed."
 
 
721
  msgstr ""
722
 
723
- #: ../classes/column/custom-field.php:384
724
- msgid "Before"
 
 
 
 
725
  msgstr ""
726
 
727
- #: ../classes/column/custom-field.php:384
728
- msgid "This text will appear before the custom field value."
729
  msgstr ""
730
 
731
- #: ../classes/column/custom-field.php:390
732
- msgid "After"
733
  msgstr ""
734
 
735
- #: ../classes/column/custom-field.php:390
736
- msgid "This text will appear after the custom field value."
737
  msgstr ""
738
 
739
- #: ../classes/column/comment/actions.php:14
740
- #: ../classes/column/link/actions.php:14
741
- #: ../classes/column/media/actions.php:14
742
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
743
- msgid "Actions"
744
- msgstr "Aktionen"
745
-
746
- #: ../classes/column/comment/actions.php:73
747
- #: ../classes/column/comment/actions.php:78
748
- msgid "Unapprove"
749
- msgstr "Nicht zustimmen"
750
-
751
- #: ../classes/column/comment/actions.php:75
752
- #: ../classes/column/comment/actions.php:77
753
- msgid "Approve"
754
- msgstr "Zustimmen"
755
-
756
- #: ../classes/column/comment/actions.php:90
757
- #: ../classes/column/post/actions.php:57
758
- msgid "Delete Permanently"
759
- msgstr "Endgültig Löschen"
760
-
761
- #: ../classes/column/comment/actions.php:96
762
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
763
- #: ../classes/column/user/actions.php:57
764
- msgid "Edit"
765
- msgstr "Editieren"
766
-
767
- #: ../classes/column/comment/actions.php:97
768
- #: ../classes/column/post/actions.php:49
769
- msgid "Quick&nbsp;Edit"
770
- msgstr "Schnelleinstellungen"
771
-
772
- #: ../classes/column/comment/actions.php:98
773
- msgid "Reply"
774
- msgstr "Antworten"
775
-
776
- #: ../classes/column/comment/agent.php:12
777
- msgid "Agent"
778
- msgstr "Verfasser"
779
-
780
- #: ../classes/column/comment/approved.php:12
781
- #: ../classes/column/post/comment-count.php:31
782
- msgid "Approved"
783
- msgstr "Genehmigt"
784
-
785
- #: ../classes/column/comment/author-avatar.php:12
786
- msgid "Avatar"
787
- msgstr "Avatar"
788
-
789
- #: ../classes/column/comment/author-email.php:12
790
- msgid "Author email"
791
- msgstr "Mail Adresse des Autors"
792
-
793
- #: ../classes/column/comment/author-ip.php:12
794
- msgid "Author IP"
795
- msgstr "IP des Autors"
796
-
797
- #: ../classes/column/comment/author-url.php:12
798
- msgid "Author url"
799
- msgstr "URL des Autors"
800
-
801
- #: ../classes/column/comment/author.php:12
802
- msgid "Author"
803
  msgstr ""
804
 
805
- #: ../classes/column/comment/date-gmt.php:12
806
- msgid "Date GMT"
807
- msgstr "Datum (GMT)"
808
-
809
- #: ../classes/column/comment/date-gmt.php:25
810
- #: ../classes/column/comment/date.php:25
811
- #, php-format
812
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
813
- msgstr "Übetragen per <a href=\"%1$s\">%2$s at %3$s</a>"
814
-
815
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
816
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
817
- msgid "ID"
818
- msgstr "ID"
819
 
820
- #: ../classes/column/comment/reply-to.php:12
821
- msgid "In Reply To"
822
- msgstr "In Beantwortung"
823
 
824
- #: ../classes/column/comment/word-count.php:12
825
- #: ../classes/column/post/word-count.php:12
826
- msgid "Word count"
827
- msgstr "Anzahl Worte"
828
 
829
- #: ../classes/column/link/actions.php:46
830
- #, php-format
831
  msgid ""
832
- "You are about to delete this link '%s'\n"
833
- " 'Cancel' to stop, 'OK' to delete."
834
  msgstr ""
835
- "Sie sind dabei diesen Link zu löschen '%s'\n"
836
- " 'Cancel' um Abzubrechen, 'OK' zum Löschen."
837
-
838
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
839
- msgid "Delete"
840
- msgstr "Löschen"
841
-
842
- #: ../classes/column/link/description.php:12
843
- #: ../classes/column/media/description.php:12
844
- #: ../classes/column/user/description.php:14
845
- msgid "Description"
846
- msgstr "Beschreibung"
847
-
848
- #: ../classes/column/link/length.php:12
849
- msgid "Length"
850
- msgstr "Länge"
851
-
852
- #: ../classes/column/link/notes.php:13
853
- msgid "Notes"
854
- msgstr "Notizen"
855
-
856
- #: ../classes/column/link/owner.php:12
857
- msgid "Owner"
858
- msgstr "Eigentümer"
859
 
860
- #: ../classes/column/link/rss.php:12
861
- msgid "Rss"
862
- msgstr "RSS"
863
 
864
- #: ../classes/column/link/target.php:12
865
- msgid "Target"
866
- msgstr "Ziel"
867
 
868
- #: ../classes/column/media/alternate-text.php:12
869
- msgid "Alt"
870
- msgstr "alt Attribut"
 
 
871
 
872
- #: ../classes/column/media/available-sizes.php:14
873
- msgid "Available Sizes"
874
  msgstr ""
875
 
876
- #: ../classes/column/media/available-sizes.php:37
877
- msgid "full size"
878
  msgstr ""
879
 
880
- #: ../classes/column/media/caption.php:12
881
- #: ../classes/column/media/exif-data.php:36
882
- msgid "Caption"
883
- msgstr "Untertitel"
884
 
885
- #: ../classes/column/media/dimensions.php:12
886
- msgid "Dimensions"
887
- msgstr "Abmessungen"
888
 
889
- #: ../classes/column/media/exif-data.php:12
890
- msgid "EXIF data"
 
 
 
891
  msgstr ""
892
 
893
- #: ../classes/column/media/exif-data.php:33
894
- msgid "Aperture"
895
- msgstr "Blende"
 
896
 
897
- #: ../classes/column/media/exif-data.php:34
898
- msgid "Credit"
899
- msgstr "Name"
900
 
901
- #: ../classes/column/media/exif-data.php:35
902
- msgid "Camera"
903
- msgstr "Kamera"
904
 
905
- #: ../classes/column/media/exif-data.php:37
906
- msgid "Timestamp"
907
- msgstr "Zeitangabe"
908
 
909
- #: ../classes/column/media/exif-data.php:38
910
- msgid "Copyright EXIF"
911
- msgstr "Copyright EXIF"
912
 
913
- #: ../classes/column/media/exif-data.php:39
914
- msgid "Focal Length"
915
- msgstr "Brennweite"
916
 
917
- #: ../classes/column/media/exif-data.php:40
918
- msgid "ISO"
919
- msgstr "ISO"
920
 
921
- #: ../classes/column/media/exif-data.php:41
922
- msgid "Shutter Speed"
923
- msgstr "Verschlusszeit"
 
 
924
 
925
- #: ../classes/column/media/exif-data.php:42
926
- msgid "Title"
927
- msgstr "Titel"
928
 
929
- #: ../classes/column/media/file-name.php:12
930
- msgid "File name"
931
- msgstr "File Name"
932
 
933
- #: ../classes/column/media/file-size.php:12
934
- msgid "File size"
935
- msgstr "File Größe"
936
 
937
- #: ../classes/column/media/full-path.php:12
938
- msgid "Full path"
 
 
 
939
  msgstr ""
940
 
941
- #: ../classes/column/media/height.php:12
942
- msgid "Height"
943
- msgstr "Höhe"
944
 
945
- #: ../classes/column/media/mime-type.php:12
946
- msgid "Mime type"
947
- msgstr "mime type"
948
 
949
- #: ../classes/column/post/actions.php:48
950
- msgid "Edit this item"
951
- msgstr "Dieses Element editieren"
 
 
 
952
 
953
- #: ../classes/column/post/actions.php:49
954
- msgid "Edit this item inline"
955
- msgstr "Element Inline editieren "
956
 
957
- #: ../classes/column/post/actions.php:53
958
- msgid "Restore this item from the Trash"
959
- msgstr "Element wiederherstellen"
 
 
960
 
961
- #: ../classes/column/post/actions.php:55
962
- msgid "Move this item to the Trash"
963
- msgstr "Element in den Papierkorb verschieben"
964
 
965
- #: ../classes/column/post/actions.php:55
966
- #: ../classes/column/post/comment-count.php:34
967
- #: ../classes/column/post/status.php:35
968
- msgid "Trash"
969
- msgstr "Papierkorb"
970
 
971
- #: ../classes/column/post/actions.php:57
972
- msgid "Delete this item permanently"
973
- msgstr "Element endgültig löschen"
974
 
975
- #: ../classes/column/post/actions.php:62
976
- #, php-format
977
- msgid "Preview &#8220;%s&#8221;"
978
- msgstr "Vorschau &#8220;%s&#8221;"
979
 
980
- #: ../classes/column/post/actions.php:62
981
- msgid "Preview"
982
- msgstr "Vorschau"
 
 
983
 
984
- #: ../classes/column/post/actions.php:64
985
- #, php-format
986
- msgid "View &#8220;%s&#8221;"
987
- msgstr "Ansicht &#8220;%s&#8221;"
988
 
989
- #: ../classes/column/post/attachment-count.php:12
990
- msgid "No. of Attachments"
991
- msgstr "Zahl der Anlagen"
992
 
993
- #: ../classes/column/post/attachment.php:12
994
- msgid "Attachment"
995
- msgstr "Anlage"
996
 
997
- #: ../classes/column/post/author-name.php:12
998
- msgid "Display Author As"
999
  msgstr ""
1000
 
1001
- #: ../classes/column/post/author-name.php:33
1002
- msgid "Display Name"
1003
  msgstr ""
1004
 
1005
- #: ../classes/column/post/author-name.php:34
1006
- msgid "First Name"
1007
  msgstr ""
1008
 
1009
- #: ../classes/column/post/author-name.php:35
1010
- msgid "Last Name"
1011
  msgstr ""
1012
 
1013
- #: ../classes/column/post/author-name.php:36
1014
- #: ../classes/column/user/nickname.php:14
1015
- msgid "Nickname"
1016
- msgstr "Nick"
1017
 
1018
- #: ../classes/column/post/author-name.php:37
1019
- msgid "User Login"
1020
  msgstr ""
1021
 
1022
- #: ../classes/column/post/author-name.php:38
1023
- msgid "User Email"
1024
  msgstr ""
1025
 
1026
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1027
- msgid "User ID"
1028
- msgstr "User ID"
1029
 
1030
- #: ../classes/column/post/author-name.php:40
1031
- msgid "First and Last Name"
 
 
1032
  msgstr ""
1033
 
1034
- #: ../classes/column/post/author-name.php:106
1035
- msgid "This is the format of the author name."
1036
  msgstr ""
1037
 
1038
- #: ../classes/column/post/before-moretag.php:14
1039
- msgid "Before More Tag"
 
 
1040
  msgstr ""
1041
 
1042
- #: ../classes/column/post/comment-count.php:14
1043
- msgid "Comment count"
1044
- msgstr "Anzahl Kommentare"
1045
 
1046
- #: ../classes/column/post/comment-count.php:30
1047
- msgid "Total"
1048
  msgstr ""
1049
 
1050
- #: ../classes/column/post/comment-count.php:32
1051
- msgid "Pending"
1052
  msgstr ""
1053
 
1054
- #: ../classes/column/post/comment-count.php:33
1055
- msgid "Spam"
1056
  msgstr ""
1057
 
1058
- #: ../classes/column/post/comment-count.php:78
1059
- #: ../classes/column/post/comment-status.php:14
1060
- msgid "Comment status"
1061
- msgstr "Kommentar Status"
1062
 
1063
- #: ../classes/column/post/comment-count.php:78
1064
- msgid "Select which comment status you like to display."
1065
  msgstr ""
1066
 
1067
- #: ../classes/column/post/featured-image.php:14
1068
- msgid "Featured Image"
1069
- msgstr "Benutzerdefiniertes Bild"
1070
 
1071
- #: ../classes/column/post/formats.php:14
1072
- msgid "Post Format"
1073
- msgstr "Post Format"
 
 
1074
 
1075
- #: ../classes/column/post/modified.php:14
1076
- msgid "Last modified"
1077
- msgstr "Zuletzt geändert"
1078
 
1079
- #: ../classes/column/post/order.php:14
1080
- msgid "Page Order"
1081
- msgstr "Seitenreihenfolge"
 
 
 
 
1082
 
1083
- #: ../classes/column/post/page-template.php:12
1084
- msgid "Page Template"
1085
- msgstr "Page Template"
1086
 
1087
- #: ../classes/column/post/parent.php:12
1088
- msgid "Parent"
1089
  msgstr ""
1090
 
1091
- #: ../classes/column/post/ping-status.php:14
1092
- msgid "Ping status"
1093
- msgstr "Ping Status"
1094
 
1095
- #: ../classes/column/post/roles.php:14
1096
- msgid "Roles"
1097
- msgstr "Rollen"
 
1098
 
1099
- #: ../classes/column/post/slug.php:12
1100
- msgid "Slug"
1101
- msgstr "Kurz URL"
1102
 
1103
- #: ../classes/column/post/status.php:14
1104
- msgid "Status"
1105
- msgstr "Status"
1106
 
1107
- #: ../classes/column/post/status.php:30
1108
- msgid "Published"
1109
- msgstr "Veröffentlicht"
 
 
 
1110
 
1111
- #: ../classes/column/post/status.php:31
1112
- msgid "Draft"
1113
- msgstr "Entwurf"
1114
 
1115
- #: ../classes/column/post/status.php:32
1116
- msgid "Scheduled"
1117
- msgstr "Geplant"
1118
 
1119
- #: ../classes/column/post/status.php:33
1120
- msgid "Private"
1121
- msgstr "Privat"
1122
 
1123
- #: ../classes/column/post/status.php:34
1124
- msgid "Pending Review"
1125
- msgstr "Ausstehende Revision"
1126
 
1127
- #: ../classes/column/post/sticky.php:14
1128
- msgid "Sticky"
1129
- msgstr "Sticky"
1130
 
1131
- #: ../classes/column/post/taxonomy.php:12
1132
- #: ../classes/column/post/taxonomy.php:68
1133
- msgid "Taxonomy"
1134
- msgstr "Klassifizierung"
1135
 
1136
- #: ../classes/column/user/comment-count.php:14
1137
- msgid "Comment Count"
1138
  msgstr ""
1139
 
1140
- #: ../classes/column/user/first-name.php:14
1141
- msgid "First name"
1142
- msgstr "Vorname"
1143
 
1144
- #: ../classes/column/user/last-name.php:14
1145
- msgid "Last name"
1146
- msgstr "Nachname"
 
 
 
1147
 
1148
- #: ../classes/column/user/post-count.php:14
1149
- msgid "Post Count"
1150
  msgstr ""
1151
 
1152
- #: ../classes/column/user/post-count.php:92
1153
- msgid "Post Type"
1154
  msgstr ""
1155
 
1156
- #: ../classes/column/user/registered.php:14
1157
- msgid "Registered"
1158
- msgstr "Registriert"
1159
 
1160
- #: ../classes/column/user/url.php:14
1161
- msgid "Url"
1162
- msgstr "URL"
 
 
 
 
 
 
 
 
 
 
1163
 
1164
  #: ../classes/storage_model/comment.php:13
1165
  msgid "Comments"
@@ -1172,3 +1138,61 @@ msgstr ""
1172
  #: ../classes/storage_model/user.php:13
1173
  msgid "Users"
1174
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
8
+ "PO-Revision-Date: 2014-03-21 11:44+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/admin-"
11
  "columns/language/de_DE/)\n"
12
+ "Language: de_DE\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
 
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.6.4\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: utf-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
25
  msgid "Thumbnail"
26
  msgstr ""
27
 
28
+ #: ../classes/column.php:498
29
  msgid "Medium"
30
  msgstr ""
31
 
32
+ #: ../classes/column.php:499
33
  msgid "Large"
34
  msgstr ""
35
 
36
+ #: ../classes/column.php:500
37
  msgid "Full"
38
  msgstr ""
39
 
40
+ #: ../classes/column.php:792
41
  msgid "Date Format"
42
  msgstr ""
43
 
44
+ #: ../classes/column.php:793
45
  msgid "This will determine how the date will be displayed."
46
  msgstr ""
47
 
48
+ #: ../classes/column.php:799
49
  msgid "Example:"
50
  msgstr ""
51
 
52
+ #: ../classes/column.php:801
53
  #, php-format
54
  msgid ""
55
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
56
  "date format here</a>."
57
  msgstr ""
58
 
59
+ #: ../classes/column.php:802
60
  msgid "Documentation on date and time formatting."
61
  msgstr ""
62
 
63
+ #: ../classes/column.php:820
64
  msgid "Excerpt length"
65
  msgstr ""
66
 
67
+ #: ../classes/column.php:821
68
  msgid "Number of words"
69
  msgstr ""
70
 
71
+ #: ../classes/column.php:843
72
  msgid "Preview size"
73
  msgstr ""
74
 
75
+ #: ../classes/column.php:860 ../classes/column.php:939
76
  msgid "Custom"
77
  msgstr "Benutzerdefiniert"
78
 
79
+ #: ../classes/column.php:863
80
  msgid "width"
81
  msgstr ""
82
 
83
+ #: ../classes/column.php:866
84
  msgid "height"
85
  msgstr ""
86
 
87
+ #: ../classes/column.php:882
88
+ msgid "Before"
89
+ msgstr ""
90
+
91
+ #: ../classes/column.php:882
92
+ msgid "This text will appear before the custom field value."
93
+ msgstr ""
94
+
95
+ #: ../classes/column.php:888
96
+ msgid "After"
97
+ msgstr ""
98
+
99
+ #: ../classes/column.php:888
100
+ msgid "This text will appear after the custom field value."
101
+ msgstr ""
102
+
103
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
104
+ #: ../classes/settings.php:212
105
  msgid "Default"
106
  msgstr "Vorgabe"
107
 
108
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
109
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
110
+ #: ../classes/column/user/actions.php:66
111
+ msgid "Edit"
112
+ msgstr "Editieren"
113
+
114
+ #: ../classes/column.php:963 ../classes/column.php:1024
115
+ #: ../classes/column/user/actions.php:74
116
  msgid "Remove"
117
  msgstr "Entfernen"
118
 
119
+ #: ../classes/column.php:981
120
  msgid "Type"
121
  msgstr ""
122
 
123
+ #: ../classes/column.php:981
124
  msgid "Choose a column type."
125
  msgstr ""
126
 
127
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
128
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
129
+ #: ../classes/column/post/ID.php:12
130
+ msgid "ID"
131
+ msgstr "ID"
132
+
133
+ #: ../classes/column.php:991
134
  msgid "Label"
135
  msgstr ""
136
 
137
+ #: ../classes/column.php:991
138
  msgid "This is the name which will appear as the column header."
139
  msgstr ""
140
 
141
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
142
  msgid "Width"
143
  msgstr "Breite"
144
 
145
+ #: ../classes/column.php:1000 ../classes/column.php:1001
146
  msgid "default"
147
  msgstr "Vorgabe"
148
 
149
+ #: ../classes/column/comment/actions.php:14
150
+ #: ../classes/column/link/actions.php:14
151
+ #: ../classes/column/media/actions.php:14
152
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
153
+ msgid "Actions"
154
+ msgstr "Aktionen"
155
 
156
+ #: ../classes/column/comment/actions.php:73
157
+ #: ../classes/column/comment/actions.php:78
158
+ msgid "Unapprove"
159
+ msgstr "Nicht zustimmen"
160
 
161
+ #: ../classes/column/comment/actions.php:75
162
+ #: ../classes/column/comment/actions.php:77
163
+ msgid "Approve"
164
+ msgstr "Zustimmen"
165
 
166
+ #: ../classes/column/comment/actions.php:86
167
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
168
+ msgid "Restore"
169
+ msgstr "Wiederherstellen"
170
 
171
+ #: ../classes/column/comment/actions.php:90
172
+ #: ../classes/column/post/actions.php:57
173
+ msgid "Delete Permanently"
174
+ msgstr "Endgültig Löschen"
175
 
176
+ #: ../classes/column/comment/actions.php:97
177
+ #: ../classes/column/post/actions.php:49
178
+ msgid "Quick&nbsp;Edit"
179
+ msgstr "Schnelleinstellungen"
 
 
180
 
181
+ #: ../classes/column/comment/actions.php:98
182
+ msgid "Reply"
183
+ msgstr "Antworten"
184
 
185
+ #: ../classes/column/comment/agent.php:12
186
+ msgid "Agent"
187
+ msgstr "Verfasser"
188
 
189
+ #: ../classes/column/comment/approved.php:12
190
+ #: ../classes/column/post/comment-count.php:31
191
+ msgid "Approved"
192
+ msgstr "Genehmigt"
193
 
194
+ #: ../classes/column/comment/author-avatar.php:12
195
+ msgid "Avatar"
196
+ msgstr "Avatar"
197
 
198
+ #: ../classes/column/comment/author-email.php:12
199
+ msgid "Author email"
200
+ msgstr "Mail Adresse des Autors"
201
+
202
+ #: ../classes/column/comment/author-ip.php:12
203
+ msgid "Author IP"
204
+ msgstr "IP des Autors"
205
+
206
+ #: ../classes/column/comment/author-url.php:12
207
+ msgid "Author url"
208
+ msgstr "URL des Autors"
209
+
210
+ #: ../classes/column/comment/author.php:12
211
+ msgid "Author"
212
  msgstr ""
213
 
214
+ #: ../classes/column/comment/date-gmt.php:12
215
+ msgid "Date GMT"
216
+ msgstr "Datum (GMT)"
217
+
218
+ #: ../classes/column/comment/date-gmt.php:25
219
+ #: ../classes/column/comment/date.php:25
220
+ #, php-format
221
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
222
+ msgstr "Übetragen per <a href=\"%1$s\">%2$s at %3$s</a>"
223
+
224
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
225
+ #: ../classes/settings.php:217
226
+ msgid "Date"
227
+ msgstr "Datum"
228
+
229
+ #: ../classes/column/comment/excerpt.php:13
230
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
231
  #: ../classes/settings.php:214
232
+ msgid "Excerpt"
233
+ msgstr "Auszug"
234
 
235
+ #: ../classes/column/comment/reply-to.php:12
236
+ msgid "In Reply To"
237
+ msgstr "In Beantwortung"
238
+
239
+ #: ../classes/column/comment/word-count.php:12
240
+ #: ../classes/column/post/word-count.php:12
241
+ msgid "Word count"
242
+ msgstr "Anzahl Worte"
243
 
244
+ #: ../classes/column/custom-field.php:16
245
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
246
  msgid "Custom Field"
247
  msgstr "Benutzerdefiniertes Feld"
248
 
249
+ #: ../classes/column/custom-field.php:66
250
+ msgid "Checkmark (true/false)"
251
  msgstr ""
252
 
253
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
254
+ msgid "Color"
 
 
255
  msgstr ""
256
 
257
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
258
+ msgid "Counter"
 
 
259
  msgstr ""
260
 
261
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
262
+ #: ../classes/settings.php:213
263
  msgid "Image"
264
  msgstr "Bild"
265
 
266
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
267
+ msgid "Media Library"
 
 
 
 
 
 
 
 
 
 
 
 
268
  msgstr ""
269
 
270
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
271
  msgid "Multiple Values"
272
  msgstr "Multiple Werte"
273
 
274
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
275
  msgid "Numeric"
276
  msgstr "Numerisch"
277
 
278
+ #: ../classes/column/custom-field.php:75
279
+ msgid "Post Title (Post ID's)"
280
+ msgstr "Post Titel (Post ID's)"
 
 
 
 
 
 
 
281
 
282
+ #: ../classes/column/custom-field.php:76
283
+ msgid "Username (User ID's)"
 
 
 
 
284
  msgstr ""
285
 
286
+ #: ../classes/column/custom-field.php:377
287
+ msgid "Select your custom field."
288
  msgstr ""
289
 
290
+ #: ../classes/column/custom-field.php:387
291
+ msgid "No custom fields available."
292
  msgstr ""
293
 
294
+ #: ../classes/column/custom-field.php:394
295
+ msgid "Field Type"
296
  msgstr ""
297
 
298
+ #: ../classes/column/custom-field.php:394
299
+ msgid "This will determine how the value will be displayed."
300
  msgstr ""
301
 
302
+ #: ../classes/column/link/actions.php:46
303
+ #, php-format
304
+ msgid ""
305
+ "You are about to delete this link '%s'\n"
306
+ " 'Cancel' to stop, 'OK' to delete."
307
  msgstr ""
308
+ "Sie sind dabei diesen Link zu löschen '%s'\n"
309
+ " 'Cancel' um Abzubrechen, 'OK' zum Löschen."
310
 
311
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
312
+ msgid "Delete"
313
+ msgstr "Löschen"
314
 
315
+ #: ../classes/column/link/description.php:12
316
+ #: ../classes/column/media/description.php:12
317
+ #: ../classes/column/user/description.php:14
318
+ msgid "Description"
319
+ msgstr "Beschreibung"
320
 
321
+ #: ../classes/column/link/length.php:12
322
+ msgid "Length"
323
+ msgstr "Länge"
324
 
325
+ #: ../classes/column/link/notes.php:13
326
+ msgid "Notes"
327
+ msgstr "Notizen"
328
 
329
+ #: ../classes/column/link/owner.php:12
330
+ msgid "Owner"
331
+ msgstr "Eigentümer"
332
 
333
+ #: ../classes/column/link/rss.php:12
334
+ msgid "Rss"
335
+ msgstr "RSS"
 
 
336
 
337
+ #: ../classes/column/link/target.php:12
338
+ msgid "Target"
339
+ msgstr "Ziel"
340
 
341
+ #: ../classes/column/media/alternate-text.php:12
342
+ msgid "Alt"
343
+ msgstr "alt Attribut"
344
+
345
+ #: ../classes/column/media/available-sizes.php:14
346
+ msgid "Available Sizes"
347
  msgstr ""
348
 
349
+ #: ../classes/column/media/available-sizes.php:37
350
+ msgid "full size"
351
  msgstr ""
352
 
353
+ #: ../classes/column/media/caption.php:12
354
+ #: ../classes/column/media/exif-data.php:36
355
+ msgid "Caption"
356
+ msgstr "Untertitel"
357
 
358
+ #: ../classes/column/media/dimensions.php:12
359
+ msgid "Dimensions"
360
+ msgstr "Abmessungen"
 
 
 
361
 
362
+ #: ../classes/column/media/exif-data.php:12
363
+ msgid "EXIF data"
 
364
  msgstr ""
365
 
366
+ #: ../classes/column/media/exif-data.php:33
367
+ msgid "Aperture"
368
+ msgstr "Blende"
369
 
370
+ #: ../classes/column/media/exif-data.php:34
371
+ msgid "Credit"
372
+ msgstr "Name"
373
 
374
+ #: ../classes/column/media/exif-data.php:35
375
+ msgid "Camera"
376
+ msgstr "Kamera"
377
 
378
+ #: ../classes/column/media/exif-data.php:37
379
+ msgid "Timestamp"
380
+ msgstr "Zeitangabe"
381
 
382
+ #: ../classes/column/media/exif-data.php:38
383
+ msgid "Copyright EXIF"
384
+ msgstr "Copyright EXIF"
385
 
386
+ #: ../classes/column/media/exif-data.php:39
387
+ msgid "Focal Length"
388
+ msgstr "Brennweite"
389
 
390
+ #: ../classes/column/media/exif-data.php:40
391
+ msgid "ISO"
392
+ msgstr "ISO"
 
 
393
 
394
+ #: ../classes/column/media/exif-data.php:41
395
+ msgid "Shutter Speed"
396
+ msgstr "Verschlusszeit"
397
 
398
+ #: ../classes/column/media/exif-data.php:42
399
+ msgid "Title"
400
+ msgstr "Titel"
401
 
402
+ #: ../classes/column/media/file-name.php:12
403
+ msgid "File name"
404
+ msgstr "File Name"
405
 
406
+ #: ../classes/column/media/file-size.php:12
407
+ msgid "File size"
408
+ msgstr "File Größe"
 
 
 
409
 
410
+ #: ../classes/column/media/full-path.php:12
411
+ msgid "Full path"
412
  msgstr ""
413
 
414
+ #: ../classes/column/media/height.php:12
415
+ msgid "Height"
416
+ msgstr "Höhe"
417
 
418
+ #: ../classes/column/media/mime-type.php:12
419
+ msgid "Mime type"
420
+ msgstr "mime type"
 
 
 
421
 
422
+ #: ../classes/column/post/actions.php:48
423
+ msgid "Edit this item"
424
+ msgstr "Dieses Element editieren"
425
 
426
+ #: ../classes/column/post/actions.php:49
427
+ msgid "Edit this item inline"
428
+ msgstr "Element Inline editieren "
 
 
429
 
430
+ #: ../classes/column/post/actions.php:53
431
+ msgid "Restore this item from the Trash"
432
+ msgstr "Element wiederherstellen"
433
 
434
+ #: ../classes/column/post/actions.php:55
435
+ msgid "Move this item to the Trash"
436
+ msgstr "Element in den Papierkorb verschieben"
437
 
438
+ #: ../classes/column/post/actions.php:55
439
+ #: ../classes/column/post/comment-count.php:34
440
+ #: ../classes/column/post/status.php:38
441
+ msgid "Trash"
442
+ msgstr "Papierkorb"
443
 
444
+ #: ../classes/column/post/actions.php:57
445
+ msgid "Delete this item permanently"
446
+ msgstr "Element endgültig löschen"
447
 
448
+ #: ../classes/column/post/actions.php:62
449
+ #, php-format
450
+ msgid "Preview &#8220;%s&#8221;"
451
+ msgstr "Vorschau &#8220;%s&#8221;"
 
452
 
453
+ #: ../classes/column/post/actions.php:62
454
+ msgid "Preview"
455
+ msgstr "Vorschau"
 
456
 
457
+ #: ../classes/column/post/actions.php:64
458
+ #, php-format
459
+ msgid "View &#8220;%s&#8221;"
460
+ msgstr "Ansicht &#8220;%s&#8221;"
461
 
462
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
463
+ msgid "View"
464
+ msgstr "Ansicht"
465
 
466
+ #: ../classes/column/post/attachment-count.php:12
467
+ msgid "No. of Attachments"
468
+ msgstr "Zahl der Anlagen"
469
 
470
+ #: ../classes/column/post/attachment.php:12
471
+ msgid "Attachment"
472
+ msgstr "Anlage"
473
 
474
+ #: ../classes/column/post/author-name.php:12
475
+ msgid "Display Author As"
476
  msgstr ""
477
 
478
+ #: ../classes/column/post/author-name.php:34
479
+ msgid "Display Name"
480
  msgstr ""
481
 
482
+ #: ../classes/column/post/author-name.php:35
483
+ msgid "First Name"
484
  msgstr ""
485
 
486
+ #: ../classes/column/post/author-name.php:36
487
+ msgid "Last Name"
488
  msgstr ""
489
 
490
+ #: ../classes/column/post/author-name.php:37
491
+ #: ../classes/column/user/nickname.php:14
492
+ msgid "Nickname"
493
+ msgstr "Nick"
494
 
495
+ #: ../classes/column/post/author-name.php:38
496
+ msgid "User Login"
497
  msgstr ""
498
 
499
+ #: ../classes/column/post/author-name.php:39
500
+ msgid "User Email"
 
 
501
  msgstr ""
502
 
503
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
504
+ msgid "User ID"
505
+ msgstr "User ID"
506
 
507
+ #: ../classes/column/post/author-name.php:41
508
+ msgid "First and Last Name"
 
 
509
  msgstr ""
510
 
511
+ #: ../classes/column/post/author-name.php:118
512
+ msgid "This is the format of the author name."
513
  msgstr ""
514
 
515
+ #: ../classes/column/post/before-moretag.php:14
516
+ msgid "Before More Tag"
517
  msgstr ""
518
 
519
+ #: ../classes/column/post/comment-count.php:14
520
+ msgid "Comment count"
521
+ msgstr "Anzahl Kommentare"
522
 
523
+ #: ../classes/column/post/comment-count.php:30
524
+ msgid "Total"
525
  msgstr ""
526
 
527
+ #: ../classes/column/post/comment-count.php:32
528
+ msgid "Pending"
 
 
 
529
  msgstr ""
530
 
531
+ #: ../classes/column/post/comment-count.php:33
532
+ msgid "Spam"
 
 
 
 
 
533
  msgstr ""
534
 
535
+ #: ../classes/column/post/comment-count.php:95
536
+ #: ../classes/column/post/comment-status.php:14
537
+ msgid "Comment status"
538
+ msgstr "Kommentar Status"
539
 
540
+ #: ../classes/column/post/comment-count.php:95
541
+ msgid "Select which comment status you like to display."
542
  msgstr ""
543
 
544
+ #: ../classes/column/post/featured-image.php:14
545
+ msgid "Featured Image"
546
+ msgstr "Benutzerdefiniertes Bild"
547
 
548
+ #: ../classes/column/post/formats.php:14
549
+ msgid "Post Format"
550
+ msgstr "Post Format"
551
 
552
+ #: ../classes/column/post/modified.php:14
553
+ msgid "Last modified"
554
+ msgstr "Zuletzt geändert"
 
555
 
556
+ #: ../classes/column/post/order.php:14
557
+ msgid "Page Order"
558
+ msgstr "Seitenreihenfolge"
559
 
560
+ #: ../classes/column/post/page-template.php:12
561
+ msgid "Page Template"
562
+ msgstr "Page Template"
563
 
564
+ #: ../classes/column/post/parent.php:12
565
+ msgid "Parent"
 
 
 
566
  msgstr ""
567
 
568
+ #: ../classes/column/post/ping-status.php:14
569
+ msgid "Ping status"
570
+ msgstr "Ping Status"
571
 
572
+ #: ../classes/column/post/roles.php:14
573
+ msgid "Roles"
574
+ msgstr "Rollen"
575
 
576
+ #: ../classes/column/post/slug.php:12
577
+ msgid "Slug"
578
+ msgstr "Kurz URL"
579
 
580
+ #: ../classes/column/post/status.php:14
581
+ msgid "Status"
582
+ msgstr "Status"
583
 
584
+ #: ../classes/column/post/status.php:32
585
+ msgid "Published"
586
+ msgstr "Veröffentlicht"
587
 
588
+ #: ../classes/column/post/status.php:33
589
+ msgid "Draft"
590
+ msgstr "Entwurf"
 
591
 
592
+ #: ../classes/column/post/status.php:34
593
+ msgid "Scheduled"
594
+ msgstr "Geplant"
595
 
596
+ #: ../classes/column/post/status.php:35
597
+ msgid "Private"
598
+ msgstr "Privat"
599
 
600
+ #: ../classes/column/post/status.php:36
601
+ msgid "Pending Review"
602
+ msgstr "Ausstehende Revision"
 
 
603
 
604
+ #: ../classes/column/post/status.php:37
605
+ #, fuzzy
606
+ msgid "Auto Draft"
607
+ msgstr "Entwurf"
608
 
609
+ #: ../classes/column/post/sticky.php:14
610
+ msgid "Sticky"
611
+ msgstr "Sticky"
 
 
 
 
612
 
613
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
614
+ msgid "Taxonomy"
615
+ msgstr "Klassifizierung"
616
 
617
+ #: ../classes/column/user/comment-count.php:14
618
+ msgid "Comment Count"
619
  msgstr ""
620
 
621
+ #: ../classes/column/user/first-name.php:14
622
+ msgid "First name"
623
+ msgstr "Vorname"
624
+
625
+ #: ../classes/column/user/last-name.php:14
626
+ msgid "Last name"
627
+ msgstr "Nachname"
628
+
629
+ #: ../classes/column/user/post-count.php:14
630
+ msgid "Post Count"
631
  msgstr ""
632
 
633
+ #: ../classes/column/user/post-count.php:99
634
+ msgid "Post Type"
 
635
  msgstr ""
636
 
637
+ #: ../classes/column/user/registered.php:14
638
+ msgid "Registered"
639
+ msgstr "Registriert"
640
 
641
+ #: ../classes/column/user/url.php:14
642
+ msgid "Url"
643
+ msgstr "URL"
644
 
645
+ #: ../classes/settings.php:64
646
+ msgid "Admin Columns Settings"
647
  msgstr ""
648
 
649
+ #: ../classes/settings.php:64 ../classes/settings.php:635
650
+ #: ../classes/upgrade.php:89
651
+ msgid "Admin Columns"
652
+ msgstr "Admin Spalten"
653
+
654
+ #: ../classes/settings.php:116
655
+ #, php-format
656
+ msgid "%s column is already present and can not be duplicated."
657
  msgstr ""
658
 
659
+ #: ../classes/settings.php:172
660
+ msgid "Default settings succesfully restored."
661
  msgstr ""
662
 
663
+ #: ../classes/settings.php:190 ../classes/settings.php:447
664
+ msgid "Overview"
665
  msgstr ""
666
 
667
+ #: ../classes/settings.php:193
668
+ msgid ""
669
+ "This plugin is for adding and removing additional columns to the "
670
+ "administration screens for post(types), pages, media library, comments, "
671
+ "links and users. Change the column's label and reorder them."
672
  msgstr ""
673
 
674
+ #: ../classes/settings.php:196
675
+ msgid "Basics"
676
  msgstr ""
677
 
678
+ #: ../classes/settings.php:198
679
+ msgid "Change order"
680
  msgstr ""
681
 
682
+ #: ../classes/settings.php:199
683
+ msgid ""
684
+ "By dragging the columns you can change the order which they will appear in."
685
  msgstr ""
686
 
687
+ #: ../classes/settings.php:200
688
+ msgid "Change label"
689
  msgstr ""
690
 
691
+ #: ../classes/settings.php:201
692
+ msgid ""
693
+ "By clicking on the triangle you will see the column options. Here you can "
694
+ "change each label of the columns heading."
695
  msgstr ""
696
 
697
+ #: ../classes/settings.php:202
698
+ msgid "Change column width"
699
  msgstr ""
700
 
701
+ #: ../classes/settings.php:203
702
  msgid ""
703
+ "By clicking on the triangle you will see the column options. By using the "
704
+ "draggable slider you can set the width of the columns in percentages."
705
  msgstr ""
706
 
707
+ #: ../classes/settings.php:209
708
+ msgid "'Custom Field' column"
709
  msgstr ""
710
 
711
+ #: ../classes/settings.php:210
712
+ msgid ""
713
+ "The custom field colum uses the custom fields from posts and users. There "
714
+ "are 10 types which you can set."
 
 
715
  msgstr ""
716
 
717
+ #: ../classes/settings.php:212
718
+ msgid ""
719
+ "Value: Can be either a string or array. Arrays will be flattened and values "
720
+ "are seperated by a ',' comma."
721
  msgstr ""
722
 
723
+ #: ../classes/settings.php:213
724
+ msgid ""
725
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
726
+ "comma )."
727
  msgstr ""
728
 
729
+ #: ../classes/settings.php:214
730
+ msgid "Value: This will show the first 20 words of the Post content."
731
  msgstr ""
732
 
733
+ #: ../classes/settings.php:215
734
+ msgid ""
735
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
736
  msgstr ""
737
 
738
+ #: ../classes/settings.php:216
739
+ msgid ""
740
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
741
+ "for sorting, so you can sort your posts on numeric (custom field) values."
742
  msgstr ""
743
 
744
+ #: ../classes/settings.php:217
745
+ #, php-format
746
+ msgid ""
747
+ "Value: Can be unix time stamp or a date format as described in the <a "
748
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
749
+ "href='%s'>general settings</a> page."
750
  msgstr ""
751
 
752
+ #: ../classes/settings.php:218
753
+ msgid "Post Titles"
754
  msgstr ""
755
 
756
+ #: ../classes/settings.php:218
757
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
758
  msgstr ""
759
 
760
+ #: ../classes/settings.php:219
761
+ msgid "Usernames"
762
  msgstr ""
763
 
764
+ #: ../classes/settings.php:219
765
+ msgid "Value: can be one or more User ID's (seperated by ',')."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  msgstr ""
767
 
768
+ #: ../classes/settings.php:220
769
+ msgid "Checkmark"
770
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
771
 
772
+ #: ../classes/settings.php:220
773
+ msgid "Value: should be a 1 (one) or 0 (zero)."
774
+ msgstr ""
775
 
776
+ #: ../classes/settings.php:221
777
+ msgid "Value: hex value color, such as #808080."
778
+ msgstr ""
 
779
 
780
+ #: ../classes/settings.php:222
 
781
  msgid ""
782
+ "Value: Can be either a string or array. This will display a count of the "
783
+ "number of times the meta key is used by the item."
784
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
785
 
786
+ #: ../classes/settings.php:367
787
+ msgid "Welcome to Admin Columns"
788
+ msgstr ""
789
 
790
+ #: ../classes/settings.php:370
791
+ msgid "Thank you for updating to the latest version!"
792
+ msgstr ""
793
 
794
+ #: ../classes/settings.php:371
795
+ msgid ""
796
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
797
+ "like it."
798
+ msgstr ""
799
 
800
+ #: ../classes/settings.php:376
801
+ msgid "What’s New"
802
  msgstr ""
803
 
804
+ #: ../classes/settings.php:377
805
+ msgid "Changelog"
806
  msgstr ""
807
 
808
+ #: ../classes/settings.php:379
809
+ msgid "Download Addons"
810
+ msgstr ""
 
811
 
812
+ #: ../classes/settings.php:385
813
+ msgid "Addons"
814
+ msgstr "Add Ons"
815
 
816
+ #: ../classes/settings.php:387
817
+ msgid ""
818
+ "Addons are now activated by downloading and installing individual plugins. "
819
+ "Although these plugins will not be hosted on the wordpress.org repository, "
820
+ "each Add-on will continue to receive updates in the usual way."
821
  msgstr ""
822
 
823
+ #: ../classes/settings.php:390
824
+ msgid ""
825
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
826
+ msgstr ""
827
 
828
+ #: ../classes/settings.php:393
829
+ msgid "Addons are seperate plugins which need to be downloaded."
830
+ msgstr ""
831
 
832
+ #: ../classes/settings.php:393
833
+ msgid "Download your Addons"
834
+ msgstr ""
835
 
836
+ #: ../classes/settings.php:399
837
+ msgid "This website does not use add-ons"
838
+ msgstr ""
839
 
840
+ #: ../classes/settings.php:399
841
+ msgid "See our website for the Pro-addon."
842
+ msgstr ""
843
 
844
+ #: ../classes/settings.php:406
845
+ msgid "Important"
846
+ msgstr ""
847
 
848
+ #: ../classes/settings.php:408
849
+ msgid "Database Changes"
850
+ msgstr ""
851
 
852
+ #: ../classes/settings.php:409
853
+ msgid ""
854
+ "The database has been changed between versions 1 and 2. But we made sure you "
855
+ "can still roll back to version 1x without any issues."
856
+ msgstr ""
857
 
858
+ #: ../classes/settings.php:412
859
+ msgid "Make sure you backup your database and then click"
860
+ msgstr ""
861
 
862
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
863
+ msgid "Upgrade Database"
864
+ msgstr ""
865
 
866
+ #: ../classes/settings.php:415
867
+ msgid "Potential Issues"
868
+ msgstr ""
869
 
870
+ #: ../classes/settings.php:416
871
+ msgid ""
872
+ "Do to the sizable refactoring the code, surounding Addons and action/"
873
+ "filters, your website may not operate correctly. It is important that you "
874
+ "read the full"
875
  msgstr ""
876
 
877
+ #: ../classes/settings.php:416
878
+ msgid "Migrating from v1 to v2"
879
+ msgstr ""
880
 
881
+ #: ../classes/settings.php:416
882
+ msgid "guide to view the full list of changes."
883
+ msgstr ""
884
 
885
+ #: ../classes/settings.php:416
886
+ #, php-format
887
+ msgid ""
888
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
889
+ "can fix it in the next release."
890
+ msgstr ""
891
 
892
+ #: ../classes/settings.php:419
893
+ msgid "Important!"
894
+ msgstr ""
895
 
896
+ #: ../classes/settings.php:419
897
+ msgid ""
898
+ "If you updated the Admin Columns plugin without prior knowledge of such "
899
+ "changes, Please roll back to the latest"
900
+ msgstr ""
901
 
902
+ #: ../classes/settings.php:419
903
+ msgid "version 1"
904
+ msgstr ""
905
 
906
+ #: ../classes/settings.php:419
907
+ msgid "of this plugin."
908
+ msgstr ""
 
 
909
 
910
+ #: ../classes/settings.php:425
911
+ msgid "Changelog for"
912
+ msgstr ""
913
 
914
+ #: ../classes/settings.php:440
915
+ msgid "Learn more"
916
+ msgstr ""
 
917
 
918
+ #: ../classes/settings.php:449
919
+ msgid ""
920
+ "New to v2, all Addons act as separate plugins which need to be individually "
921
+ "downloaded, installed and updated."
922
+ msgstr ""
923
 
924
+ #: ../classes/settings.php:450
925
+ msgid ""
926
+ "This page will assist you in downloading and installing each available Addon."
927
+ msgstr ""
928
 
929
+ #: ../classes/settings.php:451
930
+ msgid "Available Addons"
931
+ msgstr ""
932
 
933
+ #: ../classes/settings.php:456
934
+ msgid "Name"
935
+ msgstr ""
936
 
937
+ #: ../classes/settings.php:457 ../classes/settings.php:465
938
+ msgid "Download"
939
  msgstr ""
940
 
941
+ #: ../classes/settings.php:463
942
+ msgid "Pro Add-on (includes Sortorder add-on)"
943
  msgstr ""
944
 
945
+ #: ../classes/settings.php:473
946
+ msgid "Installation"
947
  msgstr ""
948
 
949
+ #: ../classes/settings.php:475
950
+ msgid "For each Add-on available, please perform the following:"
951
  msgstr ""
952
 
953
+ #: ../classes/settings.php:477
954
+ msgid "Download the Addon plugin (.zip file) to your desktop"
955
+ msgstr ""
 
956
 
957
+ #: ../classes/settings.php:478
958
+ msgid "Navigate to"
959
  msgstr ""
960
 
961
+ #: ../classes/settings.php:478
962
+ msgid "Plugins > Add New > Upload"
963
  msgstr ""
964
 
965
+ #: ../classes/settings.php:479
966
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
967
+ msgstr ""
968
 
969
+ #: ../classes/settings.php:480
970
+ msgid ""
971
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
972
+ "link"
973
  msgstr ""
974
 
975
+ #: ../classes/settings.php:481
976
+ msgid "The Add-on is now installed and activated!"
977
  msgstr ""
978
 
979
+ #: ../classes/settings.php:482
980
+ #, php-format
981
+ msgid ""
982
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
983
  msgstr ""
984
 
985
+ #: ../classes/settings.php:492
986
+ msgid "Start using Admin Columns"
987
+ msgstr ""
988
 
989
+ #: ../classes/settings.php:539
990
+ msgid "General Settings"
991
  msgstr ""
992
 
993
+ #: ../classes/settings.php:540
994
+ msgid "Customize your Admin Columns settings."
995
  msgstr ""
996
 
997
+ #: ../classes/settings.php:553
998
+ msgid "Show hidden custom fields. Default is <code>off</code>."
999
  msgstr ""
1000
 
1001
+ #: ../classes/settings.php:559
1002
+ msgid ""
1003
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1004
+ msgstr ""
1005
 
1006
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1007
+ msgid "Save"
1008
  msgstr ""
1009
 
1010
+ #: ../classes/settings.php:606
1011
+ msgid "Restore Settings"
1012
+ msgstr ""
1013
 
1014
+ #: ../classes/settings.php:607
1015
+ msgid "This will delete all column settings and restore the default settings."
1016
+ msgstr ""
1017
+ "Alle Einstellungen werden gelöscht und die Voreinstellungen "
1018
+ "wiederhergestellt."
1019
 
1020
+ #: ../classes/settings.php:613
1021
+ msgid "Restore default settings"
1022
+ msgstr "Vorgabewerte wiederherstellen"
1023
 
1024
+ #: ../classes/settings.php:613
1025
+ msgid ""
1026
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1027
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1028
+ msgstr ""
1029
+ "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' "
1030
+ "zum Löschen, \\'Cancel\\' für Abbruch"
1031
 
1032
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1033
+ msgid "Settings"
1034
+ msgstr "Einstellungen"
1035
 
1036
+ #: ../classes/settings.php:665
1037
+ msgid "Posttypes"
1038
  msgstr ""
1039
 
1040
+ #: ../classes/settings.php:666
1041
+ msgid "Others"
1042
+ msgstr ""
1043
 
1044
+ #: ../classes/settings.php:667
1045
+ #, fuzzy
1046
+ msgid "Taxonomies"
1047
+ msgstr "Klassifizierung"
1048
 
1049
+ #: ../classes/settings.php:688
1050
+ msgid "Store settings"
1051
+ msgstr ""
1052
 
1053
+ #: ../classes/settings.php:692
1054
+ msgid "Update"
1055
+ msgstr ""
1056
 
1057
+ #: ../classes/settings.php:696
1058
+ #, php-format
1059
+ msgid ""
1060
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1061
+ "\\' to delete, \\'Cancel\\' to stop"
1062
+ msgstr ""
1063
 
1064
+ #: ../classes/settings.php:697
1065
+ msgid "columns"
1066
+ msgstr ""
1067
 
1068
+ #: ../classes/settings.php:710
1069
+ msgid "Get the Pro Add-on"
1070
+ msgstr ""
1071
 
1072
+ #: ../classes/settings.php:714
1073
+ msgid "Add Sorting"
1074
+ msgstr ""
1075
 
1076
+ #: ../classes/settings.php:715
1077
+ msgid "Add Filtering"
1078
+ msgstr ""
1079
 
1080
+ #: ../classes/settings.php:716
1081
+ msgid "Add Import/Export"
1082
+ msgstr ""
1083
 
1084
+ #: ../classes/settings.php:719
1085
+ #, php-format
1086
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1087
+ msgstr ""
1088
 
1089
+ #: ../classes/settings.php:750
1090
+ msgid "Support"
1091
  msgstr ""
1092
 
1093
+ #: ../classes/settings.php:753
1094
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1095
+ msgstr ""
1096
 
1097
+ #: ../classes/settings.php:756
1098
+ #, php-format
1099
+ msgid ""
1100
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1101
+ "href='%s'>visit the Admin Columns website</a>"
1102
+ msgstr ""
1103
 
1104
+ #: ../classes/settings.php:784
1105
+ msgid "Drag and drop to reorder"
1106
  msgstr ""
1107
 
1108
+ #: ../classes/settings.php:787
1109
+ msgid "Add Column"
1110
  msgstr ""
1111
 
1112
+ #: ../classes/storage_model.php:222
1113
+ msgid "settings succesfully restored."
1114
+ msgstr ""
1115
 
1116
+ #: ../classes/storage_model.php:239
1117
+ msgid "No columns settings available."
1118
+ msgstr ""
1119
+
1120
+ #: ../classes/storage_model.php:262
1121
+ #, php-format
1122
+ msgid "You are trying to store the same settings for %s."
1123
+ msgstr ""
1124
+
1125
+ #: ../classes/storage_model.php:266
1126
+ #, php-format
1127
+ msgid "Settings for %s updated succesfully."
1128
+ msgstr ""
1129
 
1130
  #: ../classes/storage_model/comment.php:13
1131
  msgid "Comments"
1138
  #: ../classes/storage_model/user.php:13
1139
  msgid "Users"
1140
  msgstr ""
1141
+
1142
+ #: ../classes/upgrade.php:45
1143
+ msgid "Upgrade"
1144
+ msgstr ""
1145
+
1146
+ #: ../classes/upgrade.php:90
1147
+ msgid "requires a database upgrade"
1148
+ msgstr ""
1149
+
1150
+ #: ../classes/upgrade.php:93
1151
+ msgid "why?"
1152
+ msgstr ""
1153
+
1154
+ #: ../classes/upgrade.php:94
1155
+ msgid "Please"
1156
+ msgstr ""
1157
+
1158
+ #: ../classes/upgrade.php:95
1159
+ msgid "backup your database"
1160
+ msgstr ""
1161
+
1162
+ #: ../classes/upgrade.php:96
1163
+ msgid "then click"
1164
+ msgstr ""
1165
+
1166
+ #: ../classes/upgrade.php:304
1167
+ msgid "Migrating Column Settings"
1168
+ msgstr ""
1169
+
1170
+ #: ../classes/upgrade.php:340
1171
+ msgid "No Upgrade Required"
1172
+ msgstr ""
1173
+
1174
+ #: ../classes/upgrade.php:341
1175
+ msgid "Return to welcome screen."
1176
+ msgstr ""
1177
+
1178
+ #: ../classes/upgrade.php:359
1179
+ msgid "Upgrade Complete!"
1180
+ msgstr ""
1181
+
1182
+ #: ../classes/upgrade.php:359
1183
+ msgid "Return to settings."
1184
+ msgstr ""
1185
+
1186
+ #: ../classes/upgrade.php:360
1187
+ msgid "Error"
1188
+ msgstr ""
1189
+
1190
+ #: ../classes/upgrade.php:361
1191
+ msgid ""
1192
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1193
+ "on the support forum."
1194
+ msgstr ""
1195
+
1196
+ #: ../codepress-admin-columns.php:447
1197
+ msgid "Edit columns"
1198
+ msgstr ""
languages/cpac-es_ES.mo CHANGED
Binary file
languages/cpac-es_ES.po CHANGED
@@ -5,60 +5,52 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/es_ES/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
- msgid "Settings"
27
- msgstr "Ajustes"
28
-
29
- #: ../codepress-admin-columns.php:350
30
- msgid "Edit columns"
31
- msgstr "Editar columnas"
32
-
33
- #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
  msgstr "Miniatura"
36
 
37
- #: ../classes/column.php:480
38
  msgid "Medium"
39
  msgstr "Medio"
40
 
41
- #: ../classes/column.php:481
42
  msgid "Large"
43
  msgstr "Grande"
44
 
45
- #: ../classes/column.php:482
46
  msgid "Full"
47
  msgstr "Original"
48
 
49
- #: ../classes/column.php:774
50
  msgid "Date Format"
51
  msgstr "Formato de fecha"
52
 
53
- #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
55
  msgstr "Esto determinará como se mostrará la fecha."
56
 
57
- #: ../classes/column.php:781
58
  msgid "Example:"
59
  msgstr "Ejemplo:"
60
 
61
- #: ../classes/column.php:783
62
  #, php-format
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -67,1169 +59,1145 @@ msgstr ""
67
  "Dejar vacío para mantener el formato de fecha de WordPress. Se puede cambiar "
68
  "el <a href=\\\"%s\\\">formato predeterminado aquí</a>."
69
 
70
- #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
72
  msgstr "Documentación sobre formato de fecha y hora."
73
 
74
- #: ../classes/column.php:801
75
  msgid "Excerpt length"
76
  msgstr "Longitud del extracto"
77
 
78
- #: ../classes/column.php:802
79
  msgid "Number of words"
80
  msgstr "Número de palabras"
81
 
82
- #: ../classes/column.php:824
83
  msgid "Preview size"
84
  msgstr "Tamaño de previsualización"
85
 
86
- #: ../classes/column.php:841 ../classes/column.php:897
87
  msgid "Custom"
88
  msgstr "Personalizado"
89
 
90
- #: ../classes/column.php:844
91
  msgid "width"
92
  msgstr "ancho"
93
 
94
- #: ../classes/column.php:847
95
  msgid "height"
96
  msgstr "alto"
97
 
98
- #: ../classes/column.php:898 ../classes/settings.php:224
99
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Default"
101
  msgstr "Predeterminado"
102
 
103
- #: ../classes/column.php:923 ../classes/column.php:984
104
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
105
  msgid "Remove"
106
  msgstr "Eliminar"
107
 
108
- #: ../classes/column.php:942
109
  msgid "Type"
110
  msgstr "Tipo"
111
 
112
- #: ../classes/column.php:942
113
  msgid "Choose a column type."
114
  msgstr "Seleccionar un tipo de columna."
115
 
116
- #: ../classes/column.php:952
 
 
 
 
 
 
117
  msgid "Label"
118
  msgstr "Etiqueta"
119
 
120
- #: ../classes/column.php:952
121
  msgid "This is the name which will appear as the column header."
122
  msgstr "Este es el nombre que se mostrará en la cabecera de columna."
123
 
124
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
125
  msgid "Width"
126
  msgstr "Ancho"
127
 
128
- #: ../classes/column.php:961 ../classes/column.php:962
129
  msgid "default"
130
  msgstr "predeterminado"
131
 
132
- #: ../classes/settings.php:68
133
- msgid "Admin Columns Settings"
134
- msgstr "Ajustes de Columnas de administración"
 
 
 
135
 
136
- #: ../classes/settings.php:68 ../classes/settings.php:534
137
- #: ../classes/upgrade.php:89
138
- msgid "Admin Columns"
139
- msgstr "Columnas de administración"
140
 
141
- #: ../classes/settings.php:129
142
- #, php-format
143
- msgid "%s column is already present and can not be duplicated."
144
- msgstr "la columna %s ya está presente y no puede ser duplicada."
145
 
146
- #: ../classes/settings.php:184
147
- msgid "Default settings succesfully restored."
148
- msgstr "Restaurados los ajustes predeterminados"
 
149
 
150
- #: ../classes/settings.php:202 ../classes/settings.php:457
151
- msgid "Overview"
152
- msgstr "Resumen"
 
153
 
154
- #: ../classes/settings.php:205
155
- msgid ""
156
- "This plugin is for adding and removing additional columns to the "
157
- "administration screens for post(types), pages, media library, comments, "
158
- "links and users. Change the column's label and reorder them."
159
- msgstr ""
160
- "Este plugin es para agregar y quitar columnas adicionales a las pantallas de "
161
- "administración de entradas, entradas personalizadas, páginas, biblioteca "
162
- "multimedia, comentarios, enlaces y usuarios. Cambiar etiquetas de columnas y "
163
- "reordenarlas."
164
 
165
- #: ../classes/settings.php:208
166
- msgid "Basics"
167
- msgstr "Básico"
168
 
169
- #: ../classes/settings.php:210
170
- msgid "Change order"
171
- msgstr "Cambiar orden"
172
 
173
- #: ../classes/settings.php:211
174
- msgid ""
175
- "By dragging the columns you can change the order which they will appear in."
176
- msgstr "Arrastrando las columnas se puede cambiar el orden en que se muestran."
177
 
178
- #: ../classes/settings.php:212
179
- msgid "Change label"
180
- msgstr "Cambiar etiqueta"
181
 
182
- #: ../classes/settings.php:213
183
- msgid ""
184
- "By clicking on the triangle you will see the column options. Here you can "
185
- "change each label of the columns heading."
186
- msgstr ""
187
- "Al hacer clic en el triángulo verás las opciones de columna. Aquí se puede "
188
- "cambiar la etiqueta de cada una de las cabeceras de columna."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
 
 
 
190
  #: ../classes/settings.php:214
191
- msgid "Change column width"
192
- msgstr "Cambiar ancho de columna"
193
 
194
- #: ../classes/settings.php:215
195
- msgid ""
196
- "By clicking on the triangle you will see the column options. By using the "
197
- "draggable slider you can set the width of the columns in percentages."
198
- msgstr ""
199
- "Al hacer clic en el triángulo se mostrarán las opciones de columna. Al "
200
- "utilizar el control deslizante se puede ajustar el ancho de las columnas en "
201
- "porcentajes."
202
 
203
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
204
- #: ../classes/column/custom-field.php:324
 
 
 
 
 
205
  msgid "Custom Field"
206
  msgstr "Campo personalizado"
207
 
208
- #: ../classes/settings.php:221
209
- msgid "'Custom Field' column"
210
- msgstr "Columna 'Campo personalizado'"
211
 
212
- #: ../classes/settings.php:222
213
- msgid ""
214
- "The custom field colum uses the custom fields from posts and users. There "
215
- "are 10 types which you can set."
216
- msgstr ""
217
- "La columna de campo personalizado utiliza los campos personalizados de las "
218
- "entradas y usuarios. Hay 10 tipos que se pueden definir."
219
 
220
- #: ../classes/settings.php:224
221
- msgid ""
222
- "Value: Can be either a string or array. Arrays will be flattened and values "
223
- "are seperated by a ',' comma."
224
  msgstr ""
225
- "Valor: Puede ser una 'string' o un 'array'. Los 'arrays' se corrigen y los "
226
- "valores se separan por una coma ','."
227
 
228
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
229
- #: ../classes/column/link/image.php:12
230
  msgid "Image"
231
  msgstr "Imagen"
232
 
233
- #: ../classes/settings.php:225
234
- msgid ""
235
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
236
- "comma )."
237
- msgstr ""
238
- "Valor: debe contener una URL de imagen o ID del adjunto (separados por coma "
239
- "',')."
240
-
241
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
242
- #: ../classes/column/comment/excerpt.php:13
243
- #: ../classes/column/post/excerpt.php:13
244
- msgid "Excerpt"
245
- msgstr "Extracto"
246
-
247
- #: ../classes/settings.php:226
248
- msgid "Value: This will show the first 20 words of the Post content."
249
- msgstr ""
250
- "Valor: Esto mostrará las primeras 20 palabras del contenido de la entrada."
251
 
252
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
253
  msgid "Multiple Values"
254
  msgstr "Valores múltiples"
255
 
256
- #: ../classes/settings.php:227
257
- msgid ""
258
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
259
- msgstr ""
260
- "Valor: debe ser un 'array'. Esto corregirá cualquier "
261
- "'array' (multidimensional)."
262
-
263
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
264
  msgid "Numeric"
265
  msgstr "Numérico"
266
 
267
- #: ../classes/settings.php:228
268
- msgid ""
269
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
270
- "for sorting, so you can sort your posts on numeric (custom field) values."
271
- msgstr ""
272
- "Valor: Sólo enteros<br/>Si tiene el 'complemento de orden', será utilizado "
273
- "para la reordenación, así puede ordenar las entradas por los valores "
274
- "numéricos de los campos personalizados."
275
 
276
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
277
- #: ../classes/column/comment/date.php:12
278
- msgid "Date"
279
- msgstr "Fecha"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
 
281
- #: ../classes/settings.php:229
282
  #, php-format
283
  msgid ""
284
- "Value: Can be unix time stamp or a date format as described in the <a "
285
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
286
- "href='%s'>general settings</a> page."
287
  msgstr ""
288
- "Valor: Puede ser marcador de tiempo Unix o formato de fecha tal como se "
289
- "describe en el <a href='%s'>Codex</a>. Se puede cambiar el formato de fecha "
290
- "en la <a href='%s'>configuración general</a>."
291
 
292
- #: ../classes/settings.php:230
293
- msgid "Post Titles"
294
- msgstr "Títulos de entradas"
295
 
296
- #: ../classes/settings.php:230
297
- msgid "Value: can be one or more Post ID's (seperated by ',')."
298
- msgstr "Valor: pueden ser uno o más ID de entradas (separados por ',')."
 
 
299
 
300
- #: ../classes/settings.php:231
301
- msgid "Usernames"
302
- msgstr "Usuarios"
303
 
304
- #: ../classes/settings.php:231
305
- msgid "Value: can be one or more User ID's (seperated by ',')."
306
- msgstr "Valor: pueden ser uno o más ID de usuarios (separados por ',')."
307
 
308
- #: ../classes/settings.php:232
309
- msgid "Checkmark"
310
- msgstr "Casilla de verificación"
311
 
312
- #: ../classes/settings.php:232
313
- msgid "Value: should be a 1 (one) or 0 (zero)."
314
- msgstr "Valor: debe ser 1 (uno) ó 0 (cero)."
315
 
316
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
317
- msgid "Color"
318
- msgstr "Color"
319
 
320
- #: ../classes/settings.php:233
321
- msgid "Value: hex value color, such as #808080."
322
- msgstr "Valor: color hexadecimal, por ejemplo #808080."
323
 
324
- #: ../classes/settings.php:377
325
- msgid "Welcome to Admin Columns"
326
- msgstr "Bienvenido a Columnas de administración"
327
 
328
- #: ../classes/settings.php:380
329
- msgid "Thank you for updating to the latest version!"
330
- msgstr "¡Gracias por actualizar a la versión más reciente!"
331
 
332
- #: ../classes/settings.php:381
333
- msgid ""
334
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
335
- "like it."
336
- msgstr ""
337
- "Columnas de Administración está más pulido y práctico que nunca. Esperamos "
338
- "te guste."
339
 
340
- #: ../classes/settings.php:386
341
- msgid "What’s New"
342
- msgstr "Novedades"
343
 
344
- #: ../classes/settings.php:387
345
- msgid "Changelog"
346
- msgstr "Registro de cambios"
347
 
348
- #: ../classes/settings.php:389
349
- msgid "Download Addons"
350
- msgstr "Descargar Complementos"
351
 
352
- #: ../classes/settings.php:395
353
- msgid "Addons"
354
- msgstr "Complementos"
355
 
356
- #: ../classes/settings.php:397
357
- msgid ""
358
- "Addons are now activated by downloading and installing individual plugins. "
359
- "Although these plugins will not be hosted on the wordpress.org repository, "
360
- "each Add-on will continue to receive updates in the usual way."
361
- msgstr ""
362
- "Los complementos son ahora activados descargando e instalando los plugins "
363
- "independientes. Aunque estos plugins no estén alojados en el repositorio de "
364
- "wordpress.org, cada complemento continuará recibiendo actualizaciones de la "
365
- "forma habitual."
366
 
367
- #: ../classes/settings.php:400
368
- msgid ""
369
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
370
- msgstr ""
371
- "Este sitio web utiliza el Complemento de Ordenar. Este complemento necesita "
372
- "ser descargado."
373
 
374
- #: ../classes/settings.php:403
375
- msgid "Addons are seperate plugins which need to be downloaded."
376
- msgstr ""
377
- "Los complementos son plugins independientes que es necesario descargar."
378
 
379
- #: ../classes/settings.php:403
380
- msgid "Download your Addons"
381
- msgstr "Descargar tus complementos"
382
 
383
- #: ../classes/settings.php:409
384
- msgid "This website does not use add-ons"
385
- msgstr "Este sitio web no utiliza complementos"
386
 
387
- #: ../classes/settings.php:409
388
- msgid "See our website for the Pro-addon."
389
- msgstr "Consulte nuestra página web para el Complemento-Pro."
390
 
391
- #: ../classes/settings.php:416
392
- msgid "Important"
393
- msgstr "Importante"
394
 
395
- #: ../classes/settings.php:418
396
- msgid "Database Changes"
397
- msgstr "Cambios de la Base de datos"
398
 
399
- #: ../classes/settings.php:419
400
- msgid ""
401
- "The database has been changed between versions 1 and 2. But we made sure you "
402
- "can still roll back to version 1x without any issues."
403
- msgstr ""
404
- "La base de datos ha sufrido cambios entre las versiones 1 y 2. Pero nos "
405
- "hemos asegurado de que se pueda revertir a la versión 1x sin ningún problema."
406
 
407
- #: ../classes/settings.php:422
408
- msgid "Make sure you backup your database and then click"
409
- msgstr ""
410
- "Asegúrate de realizar copias de seguridad de tu base de datos antes de hacer "
411
- "clic"
412
 
413
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
414
- msgid "Upgrade Database"
415
- msgstr "Actualizar Base de datos"
416
 
417
- #: ../classes/settings.php:425
418
- msgid "Potential Issues"
419
- msgstr "Problemas potenciales"
420
 
421
- #: ../classes/settings.php:426
422
- msgid ""
423
- "Do to the sizable refactoring the code, surounding Addons and action/"
424
- "filters, your website may not operate correctly. It is important that you "
425
- "read the full"
426
- msgstr ""
427
- "Debido al considerable retoque del código, los complementos adicionales y "
428
- "acciones/filtros, puede que el sitio web no funcione correctamente. Es "
429
- "importante que leas completamente la"
430
 
431
- #: ../classes/settings.php:426
432
- msgid "Migrating from v1 to v2"
433
- msgstr "Migrando de la v1 a la v2"
434
 
435
- #: ../classes/settings.php:426
436
- msgid "guide to view the full list of changes."
437
- msgstr "guía para ver la lista completa de cambios."
438
 
439
- #: ../classes/settings.php:426
440
- #, php-format
441
- msgid ""
442
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
443
- "can fix it in the next release."
444
- msgstr ""
445
- "Cuando encuentres un error, por favor <a href=\"%s\">comunícanoslo</a> para "
446
- "que podamos solucionarlo en la siguiente versión."
447
 
448
- #: ../classes/settings.php:429
449
- msgid "Important!"
450
- msgstr "¡Importante!"
 
 
451
 
452
- #: ../classes/settings.php:429
453
- msgid ""
454
- "If you updated the Admin Columns plugin without prior knowledge of such "
455
- "changes, Please roll back to the latest"
456
- msgstr ""
457
- "Si has actualizado el plugin Columnas de administración sin conocimiento "
458
- "previo de estos cambios, por favor por favor revertir a la última"
459
 
460
- #: ../classes/settings.php:429
461
- msgid "version 1"
462
- msgstr "versión 1"
 
463
 
464
- #: ../classes/settings.php:429
465
- msgid "of this plugin."
466
- msgstr "de este plugin."
467
 
468
- #: ../classes/settings.php:435
469
- msgid "Changelog for"
470
- msgstr "Registro de cambios para"
 
471
 
472
- #: ../classes/settings.php:450
473
- msgid "Learn more"
474
- msgstr "Más información"
475
 
476
- #: ../classes/settings.php:459
477
- msgid ""
478
- "New to v2, all Addons act as separate plugins which need to be individually "
479
- "downloaded, installed and updated."
480
- msgstr ""
481
- "Nuevo en v2, todos los Complementos actúan como plugins separados que "
482
- "necesitan ser descargados, instalados y actualizados de forma independiente."
483
 
484
- #: ../classes/settings.php:460
485
- msgid ""
486
- "This page will assist you in downloading and installing each available Addon."
487
- msgstr ""
488
- "Esta página te ayudará a descargar e instalar los complementos disponibles."
489
 
490
- #: ../classes/settings.php:461
491
- msgid "Available Addons"
492
- msgstr "Complementos disponibles"
493
 
494
- #: ../classes/settings.php:466
495
- msgid "Name"
496
- msgstr "Nombre"
497
 
498
- #: ../classes/settings.php:467 ../classes/settings.php:475
499
- msgid "Download"
500
- msgstr "Descargar"
501
 
502
- #: ../classes/settings.php:473
503
- msgid "Pro Add-on (includes Sortorder add-on)"
504
- msgstr "Complemento-Pro (incluye el complemento Ordenar)"
505
 
506
- #: ../classes/settings.php:483
507
- msgid "Installation"
508
- msgstr "Instalación"
 
509
 
510
- #: ../classes/settings.php:485
511
- msgid "For each Add-on available, please perform the following:"
512
- msgstr "Para cada complemento disponible, por favor haz lo siguiente:"
513
 
514
- #: ../classes/settings.php:487
515
- msgid "Download the Addon plugin (.zip file) to your desktop"
516
- msgstr "Descarga el plugin del complemento (archivo .zip) a tu escritorio"
517
 
518
- #: ../classes/settings.php:488
519
- msgid "Navigate to"
520
- msgstr "Accede a"
521
 
522
- #: ../classes/settings.php:488
523
- msgid "Plugins > Add New > Upload"
524
- msgstr "Plugins > Añadir nuevo > Subir"
525
 
526
- #: ../classes/settings.php:489
527
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
528
- msgstr ""
529
- "Usa el cargador para navegar, seleccionar e instalar tu complemento "
530
- "(archivo .zip) "
531
 
532
- #: ../classes/settings.php:490
533
- msgid ""
534
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
535
- "link"
536
- msgstr ""
537
- "Una vez el plugin haya sido cargado e instalado, haz clic en el enlace "
538
- "'Activar Plugin'"
539
 
540
- #: ../classes/settings.php:491
541
- msgid "The Add-on is now installed and activated!"
542
- msgstr "El complemento ha sido cargado y activado"
543
 
544
- #: ../classes/settings.php:492
545
- #, php-format
546
- msgid ""
547
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
548
- msgstr ""
549
- "Para las actualizaciones automáticas asegúrate de <a href='%s'>introducir la "
550
- "clave de tu licencia</a>."
551
 
552
- #: ../classes/settings.php:502
553
- msgid "Start using Admin Columns"
554
- msgstr "Empieza a usar Columnas de administración"
555
 
556
- #: ../classes/settings.php:580
557
- msgid "Store settings"
558
- msgstr "Guardar ajustes"
559
 
560
- #: ../classes/settings.php:585
561
- msgid "Update"
562
- msgstr "Actualizar"
 
563
 
564
- #: ../classes/settings.php:585
565
- msgid "Publish"
566
- msgstr "Publicar"
567
 
568
- #: ../classes/settings.php:589
569
- #, php-format
570
- msgid ""
571
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
572
- "\\' to delete, \\'Cancel\\' to stop"
573
- msgstr ""
574
- "¡Advertencia! Se borrarán %s columnas de datos. Esto no se puede deshacer. "
575
- "\\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
576
 
577
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
578
- #: ../classes/column/post/actions.php:53
579
- msgid "Restore"
580
- msgstr "Restaurar"
581
 
582
- #: ../classes/settings.php:590
583
- msgid "columns"
584
- msgstr "columnas"
585
 
586
- #: ../classes/settings.php:600
587
- msgid "Get the Pro Add-on"
588
- msgstr "Obtener el Complemento-Pro."
589
 
590
- #: ../classes/settings.php:604
591
- msgid "Add Sorting"
592
- msgstr "Añadir ordenar"
593
 
594
- #: ../classes/settings.php:605
595
- msgid "Add Filtering"
596
- msgstr "Añadir filtrar"
597
 
598
- #: ../classes/settings.php:606
599
- msgid "Add Import/Export"
600
- msgstr "Añadir Importar/Exportar"
601
 
602
- #: ../classes/settings.php:609
603
- #, php-format
604
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
605
- msgstr "Ver más detalles del <a href=\"%s\">Complemento-Pro</a> "
606
 
607
- #: ../classes/settings.php:617
608
- msgid "Support"
609
- msgstr "Ayuda"
610
 
611
- #: ../classes/settings.php:620
612
- msgid "Check the <strong>Help</strong> section in the top-right screen."
613
- msgstr ""
614
- "Comprueba la sección de <strong>Ayuda</strong> arriba a la derecha de la "
615
- "pantalla."
616
 
617
- #: ../classes/settings.php:622
618
- #, php-format
619
- msgid ""
620
- "For full documentation, bug reports, feature suggestions and other tips <a "
621
- "href='%s'>visit the Admin Columns website</a>"
622
- msgstr ""
623
- "Para obtener la documentación completa, informes de errores, sugerencias y "
624
- "otros consejos, <a href='%s'>visitar la página web de Columnas de "
625
- "administración</a>"
626
 
627
- #: ../classes/settings.php:642
628
- msgid "Drag and drop to reorder"
629
- msgstr "Arrastrar y soltar para reordenar"
630
 
631
- #: ../classes/settings.php:645
632
- msgid "Add Column"
633
- msgstr "Añadir columna"
634
 
635
- #: ../classes/settings.php:696
636
- msgid "General Settings"
637
- msgstr "Ajustes generales"
638
 
639
- #: ../classes/settings.php:697
640
- msgid "Customize your Admin Columns settings."
641
- msgstr "Personaliza los ajustes de las Columnas de administración."
642
 
643
- #: ../classes/settings.php:710
644
- msgid "Show hidden custom fields. Default is <code>off</code>."
645
- msgstr ""
646
- "Mostrar campos personalizados ocultos. El valor predeterminado es <code>off</"
647
- "code>."
648
 
649
- #: ../classes/settings.php:716
650
- msgid ""
651
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
652
- msgstr ""
653
- "Mostrar el botón \"Editar columnas\" en la administración. El valor "
654
- "predeterminado es <code>off</code>."
655
 
656
- #: ../classes/settings.php:723
657
- msgid "Save"
658
- msgstr "Guardar"
659
 
660
- #: ../classes/settings.php:763
661
- msgid "Restore Settings"
662
- msgstr "Restaurar ajustes"
663
 
664
- #: ../classes/settings.php:764
665
- msgid "This will delete all column settings and restore the default settings."
666
- msgstr ""
667
- "Esto eliminará todos los ajustes de columnas y restaurará la configuración "
668
- "predeterminada."
669
 
670
- #: ../classes/settings.php:770
671
- msgid "Restore default settings"
672
- msgstr "Restaurar ajustes predeterminados"
673
 
674
- #: ../classes/settings.php:770
675
- msgid ""
676
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
677
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
678
- msgstr ""
679
- "¡Advertencia! Se borrarán todos los datos de columnas de administrador "
680
- "guardadas. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, "
681
- "\\'Cancelar\\' para detener"
682
 
683
- #: ../classes/storage_model.php:167
684
- msgid "settings succesfully restored."
685
- msgstr "ajustes restaurados."
686
 
687
- #: ../classes/storage_model.php:181
688
- msgid "No columns settings available."
689
- msgstr "No hay ajustes de columnas disponibles"
690
 
691
- #: ../classes/storage_model.php:204
692
- #, php-format
693
- msgid "You are trying to store the same settings for %s."
694
- msgstr "Estás intentando almacenar la misma configuración para %s."
695
 
696
- #: ../classes/storage_model.php:208
697
- #, php-format
698
- msgid "Settings for %s updated succesfully."
699
- msgstr "Ajustes para %s actualizados."
700
 
701
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
702
- msgid "View"
703
- msgstr "Ver"
 
704
 
705
- #: ../classes/upgrade.php:45
706
- msgid "Upgrade"
707
- msgstr "Actualizar"
 
708
 
709
- #: ../classes/upgrade.php:90
710
- msgid "requires a database upgrade"
711
- msgstr "necesita una actualización de la base de datos"
712
 
713
- #: ../classes/upgrade.php:93
714
- msgid "why?"
715
- msgstr "¿por qué?"
716
 
717
- #: ../classes/upgrade.php:94
718
- msgid "Please"
719
- msgstr "Por favor"
 
 
 
 
 
 
 
720
 
721
- #: ../classes/upgrade.php:95
722
- msgid "backup your database"
723
- msgstr "haz una copia de seguridad de tu base de datos"
724
 
725
- #: ../classes/upgrade.php:96
726
- msgid "then click"
727
- msgstr "después clic"
728
 
729
- #: ../classes/upgrade.php:304
730
- msgid "Migrating Column Settings"
731
- msgstr "Migración de ajustes de columnas"
 
732
 
733
- #: ../classes/upgrade.php:340
734
- msgid "No Upgrade Required"
735
- msgstr "No es necesario actualizar"
736
 
737
- #: ../classes/upgrade.php:341
738
- msgid "Return to welcome screen."
739
- msgstr "Volver a la pantalla de inicio."
 
 
 
 
740
 
741
- #: ../classes/upgrade.php:359
742
- msgid "Upgrade Complete!"
743
- msgstr "Actualización completada"
744
 
745
- #: ../classes/upgrade.php:359
746
- msgid "Return to settings."
747
- msgstr "Volver a ajustes."
 
 
 
 
 
748
 
749
- #: ../classes/upgrade.php:360
750
- msgid "Error"
751
- msgstr "Error"
752
 
753
- #: ../classes/upgrade.php:361
754
  msgid ""
755
- "Sorry. Something went wrong during the upgrade process. Please report this "
756
- "on the support forum."
757
  msgstr ""
758
- "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, "
759
- "informa de esto en el foro de soporte."
760
-
761
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
762
- msgid "Media Library"
763
- msgstr "Biblioteca multimedia"
764
 
765
- #: ../classes/column/custom-field.php:79
766
- msgid "Post Title (Post ID's)"
767
- msgstr "Título de entrada (ID de entrada)"
 
 
 
 
768
 
769
- #: ../classes/column/custom-field.php:80
770
- msgid "Username (User ID's)"
771
- msgstr "Usuario (ID de usuario)"
 
 
 
 
772
 
773
- #: ../classes/column/custom-field.php:81
774
- msgid "Checkmark (true/false)"
775
- msgstr "Casilla de verificación (true/false)"
 
776
 
777
- #: ../classes/column/custom-field.php:324
778
- msgid "Select your custom field."
779
- msgstr "Seleccionar el campo personalizado."
 
 
 
780
 
781
- #: ../classes/column/custom-field.php:334
782
- msgid "No custom fields available."
783
- msgstr "Ningún campo personalizado disponible."
 
 
 
 
 
784
 
785
- #: ../classes/column/custom-field.php:341
786
- msgid "Field Type"
787
- msgstr "Tipo de campo"
 
 
 
 
 
 
 
788
 
789
- #: ../classes/column/custom-field.php:341
790
- msgid "This will determine how the value will be displayed."
791
- msgstr "Esto determinará cómo se mostrará el valor."
792
 
793
- #: ../classes/column/custom-field.php:384
794
- msgid "Before"
795
- msgstr "Antes"
796
 
797
- #: ../classes/column/custom-field.php:384
798
- msgid "This text will appear before the custom field value."
799
- msgstr "Este texto aparecerá antes del valor del campo personalizado."
800
 
801
- #: ../classes/column/custom-field.php:390
802
- msgid "After"
803
- msgstr "Después"
804
 
805
- #: ../classes/column/custom-field.php:390
806
- msgid "This text will appear after the custom field value."
807
- msgstr "Este texto aparecerá detrás del valor del campo personalizado."
808
 
809
- #: ../classes/column/comment/actions.php:14
810
- #: ../classes/column/link/actions.php:14
811
- #: ../classes/column/media/actions.php:14
812
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
813
- msgid "Actions"
814
- msgstr "Acciones"
815
 
816
- #: ../classes/column/comment/actions.php:73
817
- #: ../classes/column/comment/actions.php:78
818
- msgid "Unapprove"
819
- msgstr "Rechazar"
820
 
821
- #: ../classes/column/comment/actions.php:75
822
- #: ../classes/column/comment/actions.php:77
823
- msgid "Approve"
824
- msgstr "Aprobar"
 
 
 
 
825
 
826
- #: ../classes/column/comment/actions.php:90
827
- #: ../classes/column/post/actions.php:57
828
- msgid "Delete Permanently"
829
- msgstr "Borrar permanentemente"
830
 
831
- #: ../classes/column/comment/actions.php:96
832
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
833
- #: ../classes/column/user/actions.php:57
834
- msgid "Edit"
835
- msgstr "Editar"
836
 
837
- #: ../classes/column/comment/actions.php:97
838
- #: ../classes/column/post/actions.php:49
839
- msgid "Quick&nbsp;Edit"
840
- msgstr "Edición&nbsp;rápida"
 
 
 
841
 
842
- #: ../classes/column/comment/actions.php:98
843
- msgid "Reply"
844
- msgstr "Responder"
845
 
846
- #: ../classes/column/comment/agent.php:12
847
- msgid "Agent"
848
- msgstr "Agente"
849
 
850
- #: ../classes/column/comment/approved.php:12
851
- #: ../classes/column/post/comment-count.php:31
852
- msgid "Approved"
853
- msgstr "Aprobado"
854
 
855
- #: ../classes/column/comment/author-avatar.php:12
856
- msgid "Avatar"
857
- msgstr "Avatar"
858
 
859
- #: ../classes/column/comment/author-email.php:12
860
- msgid "Author email"
861
- msgstr "Email del autor"
 
 
 
 
 
 
 
862
 
863
- #: ../classes/column/comment/author-ip.php:12
864
- msgid "Author IP"
865
- msgstr "IP del autor"
 
 
 
866
 
867
- #: ../classes/column/comment/author-url.php:12
868
- msgid "Author url"
869
- msgstr "Url del autor"
 
870
 
871
- #: ../classes/column/comment/author.php:12
872
- msgid "Author"
873
- msgstr "Autor"
874
 
875
- #: ../classes/column/comment/date-gmt.php:12
876
- msgid "Date GMT"
877
- msgstr "Fecha GMT"
878
 
879
- #: ../classes/column/comment/date-gmt.php:25
880
- #: ../classes/column/comment/date.php:25
881
- #, php-format
882
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
883
- msgstr "Enviado el <a href=\"%1$s\">%2$s a las %3$s</a>"
884
 
885
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
886
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
887
- msgid "ID"
888
- msgstr "ID"
889
 
890
- #: ../classes/column/comment/reply-to.php:12
891
- msgid "In Reply To"
892
- msgstr "En respuesta a"
893
 
894
- #: ../classes/column/comment/word-count.php:12
895
- #: ../classes/column/post/word-count.php:12
896
- msgid "Word count"
897
- msgstr "Número de palabras"
898
-
899
- #: ../classes/column/link/actions.php:46
900
- #, php-format
901
  msgid ""
902
- "You are about to delete this link '%s'\n"
903
- " 'Cancel' to stop, 'OK' to delete."
904
  msgstr ""
905
- "Estás a punto de borrar este enlace'%s⏎\n"
906
- "\\'Cancelar\\' para para detener, \\'Aceptar\\' para borrar."
907
-
908
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
909
- msgid "Delete"
910
- msgstr "Eliminar"
911
-
912
- #: ../classes/column/link/description.php:12
913
- #: ../classes/column/media/description.php:12
914
- #: ../classes/column/user/description.php:14
915
- msgid "Description"
916
- msgstr "Descripción"
917
-
918
- #: ../classes/column/link/length.php:12
919
- msgid "Length"
920
- msgstr "Longitud"
921
-
922
- #: ../classes/column/link/notes.php:13
923
- msgid "Notes"
924
- msgstr "Notas"
925
-
926
- #: ../classes/column/link/owner.php:12
927
- msgid "Owner"
928
- msgstr "Propietario"
929
-
930
- #: ../classes/column/link/rss.php:12
931
- msgid "Rss"
932
- msgstr "RSS"
933
-
934
- #: ../classes/column/link/target.php:12
935
- msgid "Target"
936
- msgstr "Destino"
937
-
938
- #: ../classes/column/media/alternate-text.php:12
939
- msgid "Alt"
940
- msgstr "Alt"
941
-
942
- #: ../classes/column/media/available-sizes.php:14
943
- msgid "Available Sizes"
944
- msgstr "Tamaños disponibles"
945
-
946
- #: ../classes/column/media/available-sizes.php:37
947
- msgid "full size"
948
- msgstr "Tamaño completo"
949
-
950
- #: ../classes/column/media/caption.php:12
951
- #: ../classes/column/media/exif-data.php:36
952
- msgid "Caption"
953
- msgstr "Leyenda"
954
-
955
- #: ../classes/column/media/dimensions.php:12
956
- msgid "Dimensions"
957
- msgstr "Dimensiones"
958
-
959
- #: ../classes/column/media/exif-data.php:12
960
- msgid "EXIF data"
961
- msgstr "EXIF data"
962
-
963
- #: ../classes/column/media/exif-data.php:33
964
- msgid "Aperture"
965
- msgstr "Apertura"
966
-
967
- #: ../classes/column/media/exif-data.php:34
968
- msgid "Credit"
969
- msgstr "Créditos"
970
-
971
- #: ../classes/column/media/exif-data.php:35
972
- msgid "Camera"
973
- msgstr "Cámara"
974
-
975
- #: ../classes/column/media/exif-data.php:37
976
- msgid "Timestamp"
977
- msgstr "Fecha y hora"
978
-
979
- #: ../classes/column/media/exif-data.php:38
980
- msgid "Copyright EXIF"
981
- msgstr "Copyright EXIF"
982
-
983
- #: ../classes/column/media/exif-data.php:39
984
- msgid "Focal Length"
985
- msgstr "Distancia focal"
986
-
987
- #: ../classes/column/media/exif-data.php:40
988
- msgid "ISO"
989
- msgstr "ISO"
990
 
991
- #: ../classes/column/media/exif-data.php:41
992
- msgid "Shutter Speed"
993
- msgstr "Velocidad de obturador"
 
 
994
 
995
- #: ../classes/column/media/exif-data.php:42
996
- msgid "Title"
997
- msgstr "Título"
998
 
999
- #: ../classes/column/media/file-name.php:12
1000
- msgid "File name"
1001
- msgstr "Nombre de archivo"
1002
 
1003
- #: ../classes/column/media/file-size.php:12
1004
- msgid "File size"
1005
- msgstr "Tamaño de archivo"
 
 
 
 
 
 
1006
 
1007
- #: ../classes/column/media/full-path.php:12
1008
- msgid "Full path"
1009
- msgstr "Ruta completa"
1010
 
1011
- #: ../classes/column/media/height.php:12
1012
- msgid "Height"
1013
- msgstr "Alto"
1014
 
1015
- #: ../classes/column/media/mime-type.php:12
1016
- msgid "Mime type"
1017
- msgstr "Tipo Mime"
 
 
 
 
 
1018
 
1019
- #: ../classes/column/post/actions.php:48
1020
- msgid "Edit this item"
1021
- msgstr "Editar este elemento"
1022
 
1023
- #: ../classes/column/post/actions.php:49
1024
- msgid "Edit this item inline"
1025
- msgstr "Editar este elemento en línea"
 
 
 
 
1026
 
1027
- #: ../classes/column/post/actions.php:53
1028
- msgid "Restore this item from the Trash"
1029
- msgstr "Restaurar este elemento de la Papelera"
1030
 
1031
- #: ../classes/column/post/actions.php:55
1032
- msgid "Move this item to the Trash"
1033
- msgstr "Enviar a la Papelera"
1034
 
1035
- #: ../classes/column/post/actions.php:55
1036
- #: ../classes/column/post/comment-count.php:34
1037
- #: ../classes/column/post/status.php:35
1038
- msgid "Trash"
1039
- msgstr "Papelera"
1040
 
1041
- #: ../classes/column/post/actions.php:57
1042
- msgid "Delete this item permanently"
1043
- msgstr "Eliminar elemento permanentemente"
1044
 
1045
- #: ../classes/column/post/actions.php:62
1046
- #, php-format
1047
- msgid "Preview &#8220;%s&#8221;"
1048
- msgstr "Previsualizar &#8220;%s&#8221;"
 
 
 
1049
 
1050
- #: ../classes/column/post/actions.php:62
1051
- msgid "Preview"
1052
- msgstr "Previsualizar"
 
 
1053
 
1054
- #: ../classes/column/post/actions.php:64
1055
- #, php-format
1056
- msgid "View &#8220;%s&#8221;"
1057
- msgstr "Ver &#8220;%s&#8221;"
1058
 
1059
- #: ../classes/column/post/attachment-count.php:12
1060
- msgid "No. of Attachments"
1061
- msgstr "Nº de adjuntos"
1062
 
1063
- #: ../classes/column/post/attachment.php:12
1064
- msgid "Attachment"
1065
- msgstr "Adjunto"
1066
 
1067
- #: ../classes/column/post/author-name.php:12
1068
- msgid "Display Author As"
1069
- msgstr "Mostrar autor como"
1070
 
1071
- #: ../classes/column/post/author-name.php:33
1072
- msgid "Display Name"
1073
- msgstr "Mostrar nombre"
1074
 
1075
- #: ../classes/column/post/author-name.php:34
1076
- msgid "First Name"
1077
- msgstr "Nombre"
1078
 
1079
- #: ../classes/column/post/author-name.php:35
1080
- msgid "Last Name"
1081
- msgstr "Apellidos"
1082
 
1083
- #: ../classes/column/post/author-name.php:36
1084
- #: ../classes/column/user/nickname.php:14
1085
- msgid "Nickname"
1086
- msgstr "Apodo"
1087
 
1088
- #: ../classes/column/post/author-name.php:37
1089
- msgid "User Login"
1090
- msgstr "Registro de usuario"
1091
 
1092
- #: ../classes/column/post/author-name.php:38
1093
- msgid "User Email"
1094
- msgstr "Email de usuario"
 
 
1095
 
1096
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1097
- msgid "User ID"
1098
- msgstr "ID de usuario"
 
 
 
 
1099
 
1100
- #: ../classes/column/post/author-name.php:40
1101
- msgid "First and Last Name"
1102
- msgstr "Nombre y apellidos"
1103
 
1104
- #: ../classes/column/post/author-name.php:106
1105
- msgid "This is the format of the author name."
1106
- msgstr "Esto es el formato del nombre de usuario."
 
 
 
 
1107
 
1108
- #: ../classes/column/post/before-moretag.php:14
1109
- msgid "Before More Tag"
1110
- msgstr "Antes de la etiqueta Más"
1111
 
1112
- #: ../classes/column/post/comment-count.php:14
1113
- msgid "Comment count"
1114
- msgstr "Recuento de comentarios"
1115
 
1116
- #: ../classes/column/post/comment-count.php:30
1117
- msgid "Total"
1118
- msgstr "Total"
1119
 
1120
- #: ../classes/column/post/comment-count.php:32
1121
- msgid "Pending"
1122
- msgstr "Pendientes"
 
 
1123
 
1124
- #: ../classes/column/post/comment-count.php:33
1125
- msgid "Spam"
1126
- msgstr "Spam"
 
 
 
1127
 
1128
- #: ../classes/column/post/comment-count.php:78
1129
- #: ../classes/column/post/comment-status.php:14
1130
- msgid "Comment status"
1131
- msgstr "Estado del comentario"
1132
 
1133
- #: ../classes/column/post/comment-count.php:78
1134
- msgid "Select which comment status you like to display."
1135
- msgstr "Seleccionar que estado de comentario deseas mostrar."
1136
 
1137
- #: ../classes/column/post/featured-image.php:14
1138
- msgid "Featured Image"
1139
- msgstr "Imagen destacada"
 
 
1140
 
1141
- #: ../classes/column/post/formats.php:14
1142
- msgid "Post Format"
1143
- msgstr "Formato de entrada"
1144
 
1145
- #: ../classes/column/post/modified.php:14
1146
- msgid "Last modified"
1147
- msgstr "Última modificación"
 
 
 
 
 
1148
 
1149
- #: ../classes/column/post/order.php:14
1150
- msgid "Page Order"
1151
- msgstr "Orden de página"
1152
 
1153
- #: ../classes/column/post/page-template.php:12
1154
- msgid "Page Template"
1155
- msgstr "Plantilla de página"
 
1156
 
1157
- #: ../classes/column/post/parent.php:12
1158
- msgid "Parent"
1159
- msgstr "Superior"
1160
 
1161
- #: ../classes/column/post/ping-status.php:14
1162
- msgid "Ping status"
1163
- msgstr "Estado Ping"
 
1164
 
1165
- #: ../classes/column/post/roles.php:14
1166
- msgid "Roles"
1167
- msgstr "Roles"
1168
 
1169
- #: ../classes/column/post/slug.php:12
1170
- msgid "Slug"
1171
- msgstr "Url Slug"
1172
 
1173
- #: ../classes/column/post/status.php:14
1174
- msgid "Status"
1175
- msgstr "Estado"
 
 
 
 
 
1176
 
1177
- #: ../classes/column/post/status.php:30
1178
- msgid "Published"
1179
- msgstr "Publicado"
1180
 
1181
- #: ../classes/column/post/status.php:31
1182
- msgid "Draft"
1183
- msgstr "Borrador"
1184
 
1185
- #: ../classes/column/post/status.php:32
1186
- msgid "Scheduled"
1187
- msgstr "Programado"
1188
 
1189
- #: ../classes/column/post/status.php:33
1190
- msgid "Private"
1191
- msgstr "Privado"
1192
 
1193
- #: ../classes/column/post/status.php:34
1194
- msgid "Pending Review"
1195
- msgstr "Pendiente"
1196
 
1197
- #: ../classes/column/post/sticky.php:14
1198
- msgid "Sticky"
1199
- msgstr "Destacado"
 
1200
 
1201
- #: ../classes/column/post/taxonomy.php:12
1202
- #: ../classes/column/post/taxonomy.php:68
1203
- msgid "Taxonomy"
1204
- msgstr "Taxonomía"
1205
 
1206
- #: ../classes/column/user/comment-count.php:14
1207
- msgid "Comment Count"
1208
- msgstr "Recuento de comentarios"
 
 
1209
 
1210
- #: ../classes/column/user/first-name.php:14
1211
- msgid "First name"
1212
- msgstr "Nombre"
 
 
 
 
 
 
1213
 
1214
- #: ../classes/column/user/last-name.php:14
1215
- msgid "Last name"
1216
- msgstr "Apellidos"
1217
 
1218
- #: ../classes/column/user/post-count.php:14
1219
- msgid "Post Count"
1220
- msgstr "Recuento de entradas"
1221
 
1222
- #: ../classes/column/user/post-count.php:92
1223
- msgid "Post Type"
1224
- msgstr "Tipo de entrada"
1225
 
1226
- #: ../classes/column/user/registered.php:14
1227
- msgid "Registered"
1228
- msgstr "Registrado"
1229
 
1230
- #: ../classes/column/user/url.php:14
1231
- msgid "Url"
1232
- msgstr "Url"
 
 
 
 
 
 
1233
 
1234
  #: ../classes/storage_model/comment.php:13
1235
  msgid "Comments"
@@ -1242,3 +1210,66 @@ msgstr "Enlaces"
1242
  #: ../classes/storage_model/user.php:13
1243
  msgid "Users"
1244
  msgstr "Usuarios"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:44+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/es_ES/)\n"
13
+ "Language: es_ES\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
26
  msgid "Thumbnail"
27
  msgstr "Miniatura"
28
 
29
+ #: ../classes/column.php:498
30
  msgid "Medium"
31
  msgstr "Medio"
32
 
33
+ #: ../classes/column.php:499
34
  msgid "Large"
35
  msgstr "Grande"
36
 
37
+ #: ../classes/column.php:500
38
  msgid "Full"
39
  msgstr "Original"
40
 
41
+ #: ../classes/column.php:792
42
  msgid "Date Format"
43
  msgstr "Formato de fecha"
44
 
45
+ #: ../classes/column.php:793
46
  msgid "This will determine how the date will be displayed."
47
  msgstr "Esto determinará como se mostrará la fecha."
48
 
49
+ #: ../classes/column.php:799
50
  msgid "Example:"
51
  msgstr "Ejemplo:"
52
 
53
+ #: ../classes/column.php:801
54
  #, php-format
55
  msgid ""
56
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
59
  "Dejar vacío para mantener el formato de fecha de WordPress. Se puede cambiar "
60
  "el <a href=\\\"%s\\\">formato predeterminado aquí</a>."
61
 
62
+ #: ../classes/column.php:802
63
  msgid "Documentation on date and time formatting."
64
  msgstr "Documentación sobre formato de fecha y hora."
65
 
66
+ #: ../classes/column.php:820
67
  msgid "Excerpt length"
68
  msgstr "Longitud del extracto"
69
 
70
+ #: ../classes/column.php:821
71
  msgid "Number of words"
72
  msgstr "Número de palabras"
73
 
74
+ #: ../classes/column.php:843
75
  msgid "Preview size"
76
  msgstr "Tamaño de previsualización"
77
 
78
+ #: ../classes/column.php:860 ../classes/column.php:939
79
  msgid "Custom"
80
  msgstr "Personalizado"
81
 
82
+ #: ../classes/column.php:863
83
  msgid "width"
84
  msgstr "ancho"
85
 
86
+ #: ../classes/column.php:866
87
  msgid "height"
88
  msgstr "alto"
89
 
90
+ #: ../classes/column.php:882
91
+ msgid "Before"
92
+ msgstr "Antes"
93
+
94
+ #: ../classes/column.php:882
95
+ msgid "This text will appear before the custom field value."
96
+ msgstr "Este texto aparecerá antes del valor del campo personalizado."
97
+
98
+ #: ../classes/column.php:888
99
+ msgid "After"
100
+ msgstr "Después"
101
+
102
+ #: ../classes/column.php:888
103
+ msgid "This text will appear after the custom field value."
104
+ msgstr "Este texto aparecerá detrás del valor del campo personalizado."
105
+
106
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
107
+ #: ../classes/settings.php:212
108
  msgid "Default"
109
  msgstr "Predeterminado"
110
 
111
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
112
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
113
+ #: ../classes/column/user/actions.php:66
114
+ msgid "Edit"
115
+ msgstr "Editar"
116
+
117
+ #: ../classes/column.php:963 ../classes/column.php:1024
118
+ #: ../classes/column/user/actions.php:74
119
  msgid "Remove"
120
  msgstr "Eliminar"
121
 
122
+ #: ../classes/column.php:981
123
  msgid "Type"
124
  msgstr "Tipo"
125
 
126
+ #: ../classes/column.php:981
127
  msgid "Choose a column type."
128
  msgstr "Seleccionar un tipo de columna."
129
 
130
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
131
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
132
+ #: ../classes/column/post/ID.php:12
133
+ msgid "ID"
134
+ msgstr "ID"
135
+
136
+ #: ../classes/column.php:991
137
  msgid "Label"
138
  msgstr "Etiqueta"
139
 
140
+ #: ../classes/column.php:991
141
  msgid "This is the name which will appear as the column header."
142
  msgstr "Este es el nombre que se mostrará en la cabecera de columna."
143
 
144
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
145
  msgid "Width"
146
  msgstr "Ancho"
147
 
148
+ #: ../classes/column.php:1000 ../classes/column.php:1001
149
  msgid "default"
150
  msgstr "predeterminado"
151
 
152
+ #: ../classes/column/comment/actions.php:14
153
+ #: ../classes/column/link/actions.php:14
154
+ #: ../classes/column/media/actions.php:14
155
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
156
+ msgid "Actions"
157
+ msgstr "Acciones"
158
 
159
+ #: ../classes/column/comment/actions.php:73
160
+ #: ../classes/column/comment/actions.php:78
161
+ msgid "Unapprove"
162
+ msgstr "Rechazar"
163
 
164
+ #: ../classes/column/comment/actions.php:75
165
+ #: ../classes/column/comment/actions.php:77
166
+ msgid "Approve"
167
+ msgstr "Aprobar"
168
 
169
+ #: ../classes/column/comment/actions.php:86
170
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
171
+ msgid "Restore"
172
+ msgstr "Restaurar"
173
 
174
+ #: ../classes/column/comment/actions.php:90
175
+ #: ../classes/column/post/actions.php:57
176
+ msgid "Delete Permanently"
177
+ msgstr "Borrar permanentemente"
178
 
179
+ #: ../classes/column/comment/actions.php:97
180
+ #: ../classes/column/post/actions.php:49
181
+ msgid "Quick&nbsp;Edit"
182
+ msgstr "Edición&nbsp;rápida"
 
 
 
 
 
 
183
 
184
+ #: ../classes/column/comment/actions.php:98
185
+ msgid "Reply"
186
+ msgstr "Responder"
187
 
188
+ #: ../classes/column/comment/agent.php:12
189
+ msgid "Agent"
190
+ msgstr "Agente"
191
 
192
+ #: ../classes/column/comment/approved.php:12
193
+ #: ../classes/column/post/comment-count.php:31
194
+ msgid "Approved"
195
+ msgstr "Aprobado"
196
 
197
+ #: ../classes/column/comment/author-avatar.php:12
198
+ msgid "Avatar"
199
+ msgstr "Avatar"
200
 
201
+ #: ../classes/column/comment/author-email.php:12
202
+ msgid "Author email"
203
+ msgstr "Email del autor"
204
+
205
+ #: ../classes/column/comment/author-ip.php:12
206
+ msgid "Author IP"
207
+ msgstr "IP del autor"
208
+
209
+ #: ../classes/column/comment/author-url.php:12
210
+ msgid "Author url"
211
+ msgstr "Url del autor"
212
+
213
+ #: ../classes/column/comment/author.php:12
214
+ msgid "Author"
215
+ msgstr "Autor"
216
+
217
+ #: ../classes/column/comment/date-gmt.php:12
218
+ msgid "Date GMT"
219
+ msgstr "Fecha GMT"
220
+
221
+ #: ../classes/column/comment/date-gmt.php:25
222
+ #: ../classes/column/comment/date.php:25
223
+ #, php-format
224
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
225
+ msgstr "Enviado el <a href=\"%1$s\">%2$s a las %3$s</a>"
226
+
227
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
228
+ #: ../classes/settings.php:217
229
+ msgid "Date"
230
+ msgstr "Fecha"
231
 
232
+ #: ../classes/column/comment/excerpt.php:13
233
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
234
  #: ../classes/settings.php:214
235
+ msgid "Excerpt"
236
+ msgstr "Extracto"
237
 
238
+ #: ../classes/column/comment/reply-to.php:12
239
+ msgid "In Reply To"
240
+ msgstr "En respuesta a"
 
 
 
 
 
241
 
242
+ #: ../classes/column/comment/word-count.php:12
243
+ #: ../classes/column/post/word-count.php:12
244
+ msgid "Word count"
245
+ msgstr "Número de palabras"
246
+
247
+ #: ../classes/column/custom-field.php:16
248
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
249
  msgid "Custom Field"
250
  msgstr "Campo personalizado"
251
 
252
+ #: ../classes/column/custom-field.php:66
253
+ msgid "Checkmark (true/false)"
254
+ msgstr "Casilla de verificación (true/false)"
255
 
256
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
257
+ msgid "Color"
258
+ msgstr "Color"
 
 
 
 
259
 
260
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
261
+ msgid "Counter"
 
 
262
  msgstr ""
 
 
263
 
264
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
265
+ #: ../classes/settings.php:213
266
  msgid "Image"
267
  msgstr "Imagen"
268
 
269
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
270
+ msgid "Media Library"
271
+ msgstr "Biblioteca multimedia"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
 
273
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
274
  msgid "Multiple Values"
275
  msgstr "Valores múltiples"
276
 
277
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
 
 
278
  msgid "Numeric"
279
  msgstr "Numérico"
280
 
281
+ #: ../classes/column/custom-field.php:75
282
+ msgid "Post Title (Post ID's)"
283
+ msgstr "Título de entrada (ID de entrada)"
 
 
 
 
 
284
 
285
+ #: ../classes/column/custom-field.php:76
286
+ msgid "Username (User ID's)"
287
+ msgstr "Usuario (ID de usuario)"
288
+
289
+ #: ../classes/column/custom-field.php:377
290
+ msgid "Select your custom field."
291
+ msgstr "Seleccionar el campo personalizado."
292
+
293
+ #: ../classes/column/custom-field.php:387
294
+ msgid "No custom fields available."
295
+ msgstr "Ningún campo personalizado disponible."
296
+
297
+ #: ../classes/column/custom-field.php:394
298
+ msgid "Field Type"
299
+ msgstr "Tipo de campo"
300
+
301
+ #: ../classes/column/custom-field.php:394
302
+ msgid "This will determine how the value will be displayed."
303
+ msgstr "Esto determinará cómo se mostrará el valor."
304
 
305
+ #: ../classes/column/link/actions.php:46
306
  #, php-format
307
  msgid ""
308
+ "You are about to delete this link '%s'\n"
309
+ " 'Cancel' to stop, 'OK' to delete."
 
310
  msgstr ""
311
+ "Estás a punto de borrar este enlace'%s⏎\n"
312
+ "\\'Cancelar\\' para para detener, \\'Aceptar\\' para borrar."
 
313
 
314
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
315
+ msgid "Delete"
316
+ msgstr "Eliminar"
317
 
318
+ #: ../classes/column/link/description.php:12
319
+ #: ../classes/column/media/description.php:12
320
+ #: ../classes/column/user/description.php:14
321
+ msgid "Description"
322
+ msgstr "Descripción"
323
 
324
+ #: ../classes/column/link/length.php:12
325
+ msgid "Length"
326
+ msgstr "Longitud"
327
 
328
+ #: ../classes/column/link/notes.php:13
329
+ msgid "Notes"
330
+ msgstr "Notas"
331
 
332
+ #: ../classes/column/link/owner.php:12
333
+ msgid "Owner"
334
+ msgstr "Propietario"
335
 
336
+ #: ../classes/column/link/rss.php:12
337
+ msgid "Rss"
338
+ msgstr "RSS"
339
 
340
+ #: ../classes/column/link/target.php:12
341
+ msgid "Target"
342
+ msgstr "Destino"
343
 
344
+ #: ../classes/column/media/alternate-text.php:12
345
+ msgid "Alt"
346
+ msgstr "Alt"
347
 
348
+ #: ../classes/column/media/available-sizes.php:14
349
+ msgid "Available Sizes"
350
+ msgstr "Tamaños disponibles"
351
 
352
+ #: ../classes/column/media/available-sizes.php:37
353
+ msgid "full size"
354
+ msgstr "Tamaño completo"
355
 
356
+ #: ../classes/column/media/caption.php:12
357
+ #: ../classes/column/media/exif-data.php:36
358
+ msgid "Caption"
359
+ msgstr "Leyenda"
 
 
 
360
 
361
+ #: ../classes/column/media/dimensions.php:12
362
+ msgid "Dimensions"
363
+ msgstr "Dimensiones"
364
 
365
+ #: ../classes/column/media/exif-data.php:12
366
+ msgid "EXIF data"
367
+ msgstr "EXIF data"
368
 
369
+ #: ../classes/column/media/exif-data.php:33
370
+ msgid "Aperture"
371
+ msgstr "Apertura"
372
 
373
+ #: ../classes/column/media/exif-data.php:34
374
+ msgid "Credit"
375
+ msgstr "Créditos"
376
 
377
+ #: ../classes/column/media/exif-data.php:35
378
+ msgid "Camera"
379
+ msgstr "Cámara"
 
 
 
 
 
 
 
380
 
381
+ #: ../classes/column/media/exif-data.php:37
382
+ msgid "Timestamp"
383
+ msgstr "Fecha y hora"
 
 
 
384
 
385
+ #: ../classes/column/media/exif-data.php:38
386
+ msgid "Copyright EXIF"
387
+ msgstr "Copyright EXIF"
 
388
 
389
+ #: ../classes/column/media/exif-data.php:39
390
+ msgid "Focal Length"
391
+ msgstr "Distancia focal"
392
 
393
+ #: ../classes/column/media/exif-data.php:40
394
+ msgid "ISO"
395
+ msgstr "ISO"
396
 
397
+ #: ../classes/column/media/exif-data.php:41
398
+ msgid "Shutter Speed"
399
+ msgstr "Velocidad de obturador"
400
 
401
+ #: ../classes/column/media/exif-data.php:42
402
+ msgid "Title"
403
+ msgstr "Título"
404
 
405
+ #: ../classes/column/media/file-name.php:12
406
+ msgid "File name"
407
+ msgstr "Nombre de archivo"
408
 
409
+ #: ../classes/column/media/file-size.php:12
410
+ msgid "File size"
411
+ msgstr "Tamaño de archivo"
 
 
 
 
412
 
413
+ #: ../classes/column/media/full-path.php:12
414
+ msgid "Full path"
415
+ msgstr "Ruta completa"
 
 
416
 
417
+ #: ../classes/column/media/height.php:12
418
+ msgid "Height"
419
+ msgstr "Alto"
420
 
421
+ #: ../classes/column/media/mime-type.php:12
422
+ msgid "Mime type"
423
+ msgstr "Tipo Mime"
424
 
425
+ #: ../classes/column/post/actions.php:48
426
+ msgid "Edit this item"
427
+ msgstr "Editar este elemento"
 
 
 
 
 
 
428
 
429
+ #: ../classes/column/post/actions.php:49
430
+ msgid "Edit this item inline"
431
+ msgstr "Editar este elemento en línea"
432
 
433
+ #: ../classes/column/post/actions.php:53
434
+ msgid "Restore this item from the Trash"
435
+ msgstr "Restaurar este elemento de la Papelera"
436
 
437
+ #: ../classes/column/post/actions.php:55
438
+ msgid "Move this item to the Trash"
439
+ msgstr "Enviar a la Papelera"
 
 
 
 
 
440
 
441
+ #: ../classes/column/post/actions.php:55
442
+ #: ../classes/column/post/comment-count.php:34
443
+ #: ../classes/column/post/status.php:38
444
+ msgid "Trash"
445
+ msgstr "Papelera"
446
 
447
+ #: ../classes/column/post/actions.php:57
448
+ msgid "Delete this item permanently"
449
+ msgstr "Eliminar elemento permanentemente"
 
 
 
 
450
 
451
+ #: ../classes/column/post/actions.php:62
452
+ #, php-format
453
+ msgid "Preview &#8220;%s&#8221;"
454
+ msgstr "Previsualizar &#8220;%s&#8221;"
455
 
456
+ #: ../classes/column/post/actions.php:62
457
+ msgid "Preview"
458
+ msgstr "Previsualizar"
459
 
460
+ #: ../classes/column/post/actions.php:64
461
+ #, php-format
462
+ msgid "View &#8220;%s&#8221;"
463
+ msgstr "Ver &#8220;%s&#8221;"
464
 
465
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
466
+ msgid "View"
467
+ msgstr "Ver"
468
 
469
+ #: ../classes/column/post/attachment-count.php:12
470
+ msgid "No. of Attachments"
471
+ msgstr " de adjuntos"
 
 
 
 
472
 
473
+ #: ../classes/column/post/attachment.php:12
474
+ msgid "Attachment"
475
+ msgstr "Adjunto"
 
 
476
 
477
+ #: ../classes/column/post/author-name.php:12
478
+ msgid "Display Author As"
479
+ msgstr "Mostrar autor como"
480
 
481
+ #: ../classes/column/post/author-name.php:34
482
+ msgid "Display Name"
483
+ msgstr "Mostrar nombre"
484
 
485
+ #: ../classes/column/post/author-name.php:35
486
+ msgid "First Name"
487
+ msgstr "Nombre"
488
 
489
+ #: ../classes/column/post/author-name.php:36
490
+ msgid "Last Name"
491
+ msgstr "Apellidos"
492
 
493
+ #: ../classes/column/post/author-name.php:37
494
+ #: ../classes/column/user/nickname.php:14
495
+ msgid "Nickname"
496
+ msgstr "Apodo"
497
 
498
+ #: ../classes/column/post/author-name.php:38
499
+ msgid "User Login"
500
+ msgstr "Registro de usuario"
501
 
502
+ #: ../classes/column/post/author-name.php:39
503
+ msgid "User Email"
504
+ msgstr "Email de usuario"
505
 
506
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
507
+ msgid "User ID"
508
+ msgstr "ID de usuario"
509
 
510
+ #: ../classes/column/post/author-name.php:41
511
+ msgid "First and Last Name"
512
+ msgstr "Nombre y apellidos"
513
 
514
+ #: ../classes/column/post/author-name.php:118
515
+ msgid "This is the format of the author name."
516
+ msgstr "Esto es el formato del nombre de usuario."
 
 
517
 
518
+ #: ../classes/column/post/before-moretag.php:14
519
+ msgid "Before More Tag"
520
+ msgstr "Antes de la etiqueta Más"
 
 
 
 
521
 
522
+ #: ../classes/column/post/comment-count.php:14
523
+ msgid "Comment count"
524
+ msgstr "Recuento de comentarios"
525
 
526
+ #: ../classes/column/post/comment-count.php:30
527
+ msgid "Total"
528
+ msgstr "Total"
 
 
 
 
529
 
530
+ #: ../classes/column/post/comment-count.php:32
531
+ msgid "Pending"
532
+ msgstr "Pendientes"
533
 
534
+ #: ../classes/column/post/comment-count.php:33
535
+ msgid "Spam"
536
+ msgstr "Spam"
537
 
538
+ #: ../classes/column/post/comment-count.php:95
539
+ #: ../classes/column/post/comment-status.php:14
540
+ msgid "Comment status"
541
+ msgstr "Estado del comentario"
542
 
543
+ #: ../classes/column/post/comment-count.php:95
544
+ msgid "Select which comment status you like to display."
545
+ msgstr "Seleccionar que estado de comentario deseas mostrar."
546
 
547
+ #: ../classes/column/post/featured-image.php:14
548
+ msgid "Featured Image"
549
+ msgstr "Imagen destacada"
 
 
 
 
 
550
 
551
+ #: ../classes/column/post/formats.php:14
552
+ msgid "Post Format"
553
+ msgstr "Formato de entrada"
 
554
 
555
+ #: ../classes/column/post/modified.php:14
556
+ msgid "Last modified"
557
+ msgstr "Última modificación"
558
 
559
+ #: ../classes/column/post/order.php:14
560
+ msgid "Page Order"
561
+ msgstr "Orden de página"
562
 
563
+ #: ../classes/column/post/page-template.php:12
564
+ msgid "Page Template"
565
+ msgstr "Plantilla de página"
566
 
567
+ #: ../classes/column/post/parent.php:12
568
+ msgid "Parent"
569
+ msgstr "Superior"
570
 
571
+ #: ../classes/column/post/ping-status.php:14
572
+ msgid "Ping status"
573
+ msgstr "Estado Ping"
574
 
575
+ #: ../classes/column/post/roles.php:14
576
+ msgid "Roles"
577
+ msgstr "Roles"
 
578
 
579
+ #: ../classes/column/post/slug.php:12
580
+ msgid "Slug"
581
+ msgstr "Url Slug"
582
 
583
+ #: ../classes/column/post/status.php:14
584
+ msgid "Status"
585
+ msgstr "Estado"
 
 
586
 
587
+ #: ../classes/column/post/status.php:32
588
+ msgid "Published"
589
+ msgstr "Publicado"
 
 
 
 
 
 
590
 
591
+ #: ../classes/column/post/status.php:33
592
+ msgid "Draft"
593
+ msgstr "Borrador"
594
 
595
+ #: ../classes/column/post/status.php:34
596
+ msgid "Scheduled"
597
+ msgstr "Programado"
598
 
599
+ #: ../classes/column/post/status.php:35
600
+ msgid "Private"
601
+ msgstr "Privado"
602
 
603
+ #: ../classes/column/post/status.php:36
604
+ msgid "Pending Review"
605
+ msgstr "Pendiente"
606
 
607
+ #: ../classes/column/post/status.php:37
608
+ #, fuzzy
609
+ msgid "Auto Draft"
610
+ msgstr "Borrador"
 
611
 
612
+ #: ../classes/column/post/sticky.php:14
613
+ msgid "Sticky"
614
+ msgstr "Destacado"
 
 
 
615
 
616
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
617
+ msgid "Taxonomy"
618
+ msgstr "Taxonomía"
619
 
620
+ #: ../classes/column/user/comment-count.php:14
621
+ msgid "Comment Count"
622
+ msgstr "Recuento de comentarios"
623
 
624
+ #: ../classes/column/user/first-name.php:14
625
+ msgid "First name"
626
+ msgstr "Nombre"
 
 
627
 
628
+ #: ../classes/column/user/last-name.php:14
629
+ msgid "Last name"
630
+ msgstr "Apellidos"
631
 
632
+ #: ../classes/column/user/post-count.php:14
633
+ msgid "Post Count"
634
+ msgstr "Recuento de entradas"
 
 
 
 
 
635
 
636
+ #: ../classes/column/user/post-count.php:99
637
+ msgid "Post Type"
638
+ msgstr "Tipo de entrada"
639
 
640
+ #: ../classes/column/user/registered.php:14
641
+ msgid "Registered"
642
+ msgstr "Registrado"
643
 
644
+ #: ../classes/column/user/url.php:14
645
+ msgid "Url"
646
+ msgstr "Url"
 
647
 
648
+ #: ../classes/settings.php:64
649
+ msgid "Admin Columns Settings"
650
+ msgstr "Ajustes de Columnas de administración"
 
651
 
652
+ #: ../classes/settings.php:64 ../classes/settings.php:635
653
+ #: ../classes/upgrade.php:89
654
+ msgid "Admin Columns"
655
+ msgstr "Columnas de administración"
656
 
657
+ #: ../classes/settings.php:116
658
+ #, php-format
659
+ msgid "%s column is already present and can not be duplicated."
660
+ msgstr "la columna %s ya está presente y no puede ser duplicada."
661
 
662
+ #: ../classes/settings.php:172
663
+ msgid "Default settings succesfully restored."
664
+ msgstr "Restaurados los ajustes predeterminados"
665
 
666
+ #: ../classes/settings.php:190 ../classes/settings.php:447
667
+ msgid "Overview"
668
+ msgstr "Resumen"
669
 
670
+ #: ../classes/settings.php:193
671
+ msgid ""
672
+ "This plugin is for adding and removing additional columns to the "
673
+ "administration screens for post(types), pages, media library, comments, "
674
+ "links and users. Change the column's label and reorder them."
675
+ msgstr ""
676
+ "Este plugin es para agregar y quitar columnas adicionales a las pantallas de "
677
+ "administración de entradas, entradas personalizadas, páginas, biblioteca "
678
+ "multimedia, comentarios, enlaces y usuarios. Cambiar etiquetas de columnas y "
679
+ "reordenarlas."
680
 
681
+ #: ../classes/settings.php:196
682
+ msgid "Basics"
683
+ msgstr "Básico"
684
 
685
+ #: ../classes/settings.php:198
686
+ msgid "Change order"
687
+ msgstr "Cambiar orden"
688
 
689
+ #: ../classes/settings.php:199
690
+ msgid ""
691
+ "By dragging the columns you can change the order which they will appear in."
692
+ msgstr "Arrastrando las columnas se puede cambiar el orden en que se muestran."
693
 
694
+ #: ../classes/settings.php:200
695
+ msgid "Change label"
696
+ msgstr "Cambiar etiqueta"
697
 
698
+ #: ../classes/settings.php:201
699
+ msgid ""
700
+ "By clicking on the triangle you will see the column options. Here you can "
701
+ "change each label of the columns heading."
702
+ msgstr ""
703
+ "Al hacer clic en el triángulo verás las opciones de columna. Aquí se puede "
704
+ "cambiar la etiqueta de cada una de las cabeceras de columna."
705
 
706
+ #: ../classes/settings.php:202
707
+ msgid "Change column width"
708
+ msgstr "Cambiar ancho de columna"
709
 
710
+ #: ../classes/settings.php:203
711
+ msgid ""
712
+ "By clicking on the triangle you will see the column options. By using the "
713
+ "draggable slider you can set the width of the columns in percentages."
714
+ msgstr ""
715
+ "Al hacer clic en el triángulo se mostrarán las opciones de columna. Al "
716
+ "utilizar el control deslizante se puede ajustar el ancho de las columnas en "
717
+ "porcentajes."
718
 
719
+ #: ../classes/settings.php:209
720
+ msgid "'Custom Field' column"
721
+ msgstr "Columna 'Campo personalizado'"
722
 
723
+ #: ../classes/settings.php:210
724
  msgid ""
725
+ "The custom field colum uses the custom fields from posts and users. There "
726
+ "are 10 types which you can set."
727
  msgstr ""
728
+ "La columna de campo personalizado utiliza los campos personalizados de las "
729
+ "entradas y usuarios. Hay 10 tipos que se pueden definir."
 
 
 
 
730
 
731
+ #: ../classes/settings.php:212
732
+ msgid ""
733
+ "Value: Can be either a string or array. Arrays will be flattened and values "
734
+ "are seperated by a ',' comma."
735
+ msgstr ""
736
+ "Valor: Puede ser una 'string' o un 'array'. Los 'arrays' se corrigen y los "
737
+ "valores se separan por una coma ','."
738
 
739
+ #: ../classes/settings.php:213
740
+ msgid ""
741
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
742
+ "comma )."
743
+ msgstr ""
744
+ "Valor: debe contener una URL de imagen o ID del adjunto (separados por coma "
745
+ "',')."
746
 
747
+ #: ../classes/settings.php:214
748
+ msgid "Value: This will show the first 20 words of the Post content."
749
+ msgstr ""
750
+ "Valor: Esto mostrará las primeras 20 palabras del contenido de la entrada."
751
 
752
+ #: ../classes/settings.php:215
753
+ msgid ""
754
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
755
+ msgstr ""
756
+ "Valor: debe ser un 'array'. Esto corregirá cualquier "
757
+ "'array' (multidimensional)."
758
 
759
+ #: ../classes/settings.php:216
760
+ msgid ""
761
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
762
+ "for sorting, so you can sort your posts on numeric (custom field) values."
763
+ msgstr ""
764
+ "Valor: Sólo enteros<br/>Si tiene el 'complemento de orden', será utilizado "
765
+ "para la reordenación, así puede ordenar las entradas por los valores "
766
+ "numéricos de los campos personalizados."
767
 
768
+ #: ../classes/settings.php:217
769
+ #, php-format
770
+ msgid ""
771
+ "Value: Can be unix time stamp or a date format as described in the <a "
772
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
773
+ "href='%s'>general settings</a> page."
774
+ msgstr ""
775
+ "Valor: Puede ser marcador de tiempo Unix o formato de fecha tal como se "
776
+ "describe en el <a href='%s'>Codex</a>. Se puede cambiar el formato de fecha "
777
+ "en la <a href='%s'>configuración general</a>."
778
 
779
+ #: ../classes/settings.php:218
780
+ msgid "Post Titles"
781
+ msgstr "Títulos de entradas"
782
 
783
+ #: ../classes/settings.php:218
784
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
785
+ msgstr "Valor: pueden ser uno o más ID de entradas (separados por ',')."
786
 
787
+ #: ../classes/settings.php:219
788
+ msgid "Usernames"
789
+ msgstr "Usuarios"
790
 
791
+ #: ../classes/settings.php:219
792
+ msgid "Value: can be one or more User ID's (seperated by ',')."
793
+ msgstr "Valor: pueden ser uno o más ID de usuarios (separados por ',')."
794
 
795
+ #: ../classes/settings.php:220
796
+ msgid "Checkmark"
797
+ msgstr "Casilla de verificación"
798
 
799
+ #: ../classes/settings.php:220
800
+ msgid "Value: should be a 1 (one) or 0 (zero)."
801
+ msgstr "Valor: debe ser 1 (uno) ó 0 (cero)."
 
 
 
802
 
803
+ #: ../classes/settings.php:221
804
+ msgid "Value: hex value color, such as #808080."
805
+ msgstr "Valor: color hexadecimal, por ejemplo #808080."
 
806
 
807
+ #: ../classes/settings.php:222
808
+ #, fuzzy
809
+ msgid ""
810
+ "Value: Can be either a string or array. This will display a count of the "
811
+ "number of times the meta key is used by the item."
812
+ msgstr ""
813
+ "Valor: Puede ser una 'string' o un 'array'. Los 'arrays' se corrigen y los "
814
+ "valores se separan por una coma ','."
815
 
816
+ #: ../classes/settings.php:367
817
+ msgid "Welcome to Admin Columns"
818
+ msgstr "Bienvenido a Columnas de administración"
 
819
 
820
+ #: ../classes/settings.php:370
821
+ msgid "Thank you for updating to the latest version!"
822
+ msgstr "¡Gracias por actualizar a la versión más reciente!"
 
 
823
 
824
+ #: ../classes/settings.php:371
825
+ msgid ""
826
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
827
+ "like it."
828
+ msgstr ""
829
+ "Columnas de Administración está más pulido y práctico que nunca. Esperamos "
830
+ "te guste."
831
 
832
+ #: ../classes/settings.php:376
833
+ msgid "What’s New"
834
+ msgstr "Novedades"
835
 
836
+ #: ../classes/settings.php:377
837
+ msgid "Changelog"
838
+ msgstr "Registro de cambios"
839
 
840
+ #: ../classes/settings.php:379
841
+ msgid "Download Addons"
842
+ msgstr "Descargar Complementos"
 
843
 
844
+ #: ../classes/settings.php:385
845
+ msgid "Addons"
846
+ msgstr "Complementos"
847
 
848
+ #: ../classes/settings.php:387
849
+ msgid ""
850
+ "Addons are now activated by downloading and installing individual plugins. "
851
+ "Although these plugins will not be hosted on the wordpress.org repository, "
852
+ "each Add-on will continue to receive updates in the usual way."
853
+ msgstr ""
854
+ "Los complementos son ahora activados descargando e instalando los plugins "
855
+ "independientes. Aunque estos plugins no estén alojados en el repositorio de "
856
+ "wordpress.org, cada complemento continuará recibiendo actualizaciones de la "
857
+ "forma habitual."
858
 
859
+ #: ../classes/settings.php:390
860
+ msgid ""
861
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
862
+ msgstr ""
863
+ "Este sitio web utiliza el Complemento de Ordenar. Este complemento necesita "
864
+ "ser descargado."
865
 
866
+ #: ../classes/settings.php:393
867
+ msgid "Addons are seperate plugins which need to be downloaded."
868
+ msgstr ""
869
+ "Los complementos son plugins independientes que es necesario descargar."
870
 
871
+ #: ../classes/settings.php:393
872
+ msgid "Download your Addons"
873
+ msgstr "Descargar tus complementos"
874
 
875
+ #: ../classes/settings.php:399
876
+ msgid "This website does not use add-ons"
877
+ msgstr "Este sitio web no utiliza complementos"
878
 
879
+ #: ../classes/settings.php:399
880
+ msgid "See our website for the Pro-addon."
881
+ msgstr "Consulte nuestra página web para el Complemento-Pro."
 
 
882
 
883
+ #: ../classes/settings.php:406
884
+ msgid "Important"
885
+ msgstr "Importante"
 
886
 
887
+ #: ../classes/settings.php:408
888
+ msgid "Database Changes"
889
+ msgstr "Cambios de la Base de datos"
890
 
891
+ #: ../classes/settings.php:409
 
 
 
 
 
 
892
  msgid ""
893
+ "The database has been changed between versions 1 and 2. But we made sure you "
894
+ "can still roll back to version 1x without any issues."
895
  msgstr ""
896
+ "La base de datos ha sufrido cambios entre las versiones 1 y 2. Pero nos "
897
+ "hemos asegurado de que se pueda revertir a la versión 1x sin ningún problema."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
898
 
899
+ #: ../classes/settings.php:412
900
+ msgid "Make sure you backup your database and then click"
901
+ msgstr ""
902
+ "Asegúrate de realizar copias de seguridad de tu base de datos antes de hacer "
903
+ "clic"
904
 
905
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
906
+ msgid "Upgrade Database"
907
+ msgstr "Actualizar Base de datos"
908
 
909
+ #: ../classes/settings.php:415
910
+ msgid "Potential Issues"
911
+ msgstr "Problemas potenciales"
912
 
913
+ #: ../classes/settings.php:416
914
+ msgid ""
915
+ "Do to the sizable refactoring the code, surounding Addons and action/"
916
+ "filters, your website may not operate correctly. It is important that you "
917
+ "read the full"
918
+ msgstr ""
919
+ "Debido al considerable retoque del código, los complementos adicionales y "
920
+ "acciones/filtros, puede que el sitio web no funcione correctamente. Es "
921
+ "importante que leas completamente la"
922
 
923
+ #: ../classes/settings.php:416
924
+ msgid "Migrating from v1 to v2"
925
+ msgstr "Migrando de la v1 a la v2"
926
 
927
+ #: ../classes/settings.php:416
928
+ msgid "guide to view the full list of changes."
929
+ msgstr "guía para ver la lista completa de cambios."
930
 
931
+ #: ../classes/settings.php:416
932
+ #, php-format
933
+ msgid ""
934
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
935
+ "can fix it in the next release."
936
+ msgstr ""
937
+ "Cuando encuentres un error, por favor <a href=\"%s\">comunícanoslo</a> para "
938
+ "que podamos solucionarlo en la siguiente versión."
939
 
940
+ #: ../classes/settings.php:419
941
+ msgid "Important!"
942
+ msgstr "¡Importante!"
943
 
944
+ #: ../classes/settings.php:419
945
+ msgid ""
946
+ "If you updated the Admin Columns plugin without prior knowledge of such "
947
+ "changes, Please roll back to the latest"
948
+ msgstr ""
949
+ "Si has actualizado el plugin Columnas de administración sin conocimiento "
950
+ "previo de estos cambios, por favor por favor revertir a la última"
951
 
952
+ #: ../classes/settings.php:419
953
+ msgid "version 1"
954
+ msgstr "versión 1"
955
 
956
+ #: ../classes/settings.php:419
957
+ msgid "of this plugin."
958
+ msgstr "de este plugin."
959
 
960
+ #: ../classes/settings.php:425
961
+ msgid "Changelog for"
962
+ msgstr "Registro de cambios para"
 
 
963
 
964
+ #: ../classes/settings.php:440
965
+ msgid "Learn more"
966
+ msgstr "Más información"
967
 
968
+ #: ../classes/settings.php:449
969
+ msgid ""
970
+ "New to v2, all Addons act as separate plugins which need to be individually "
971
+ "downloaded, installed and updated."
972
+ msgstr ""
973
+ "Nuevo en v2, todos los Complementos actúan como plugins separados que "
974
+ "necesitan ser descargados, instalados y actualizados de forma independiente."
975
 
976
+ #: ../classes/settings.php:450
977
+ msgid ""
978
+ "This page will assist you in downloading and installing each available Addon."
979
+ msgstr ""
980
+ "Esta página te ayudará a descargar e instalar los complementos disponibles."
981
 
982
+ #: ../classes/settings.php:451
983
+ msgid "Available Addons"
984
+ msgstr "Complementos disponibles"
 
985
 
986
+ #: ../classes/settings.php:456
987
+ msgid "Name"
988
+ msgstr "Nombre"
989
 
990
+ #: ../classes/settings.php:457 ../classes/settings.php:465
991
+ msgid "Download"
992
+ msgstr "Descargar"
993
 
994
+ #: ../classes/settings.php:463
995
+ msgid "Pro Add-on (includes Sortorder add-on)"
996
+ msgstr "Complemento-Pro (incluye el complemento Ordenar)"
997
 
998
+ #: ../classes/settings.php:473
999
+ msgid "Installation"
1000
+ msgstr "Instalación"
1001
 
1002
+ #: ../classes/settings.php:475
1003
+ msgid "For each Add-on available, please perform the following:"
1004
+ msgstr "Para cada complemento disponible, por favor haz lo siguiente:"
1005
 
1006
+ #: ../classes/settings.php:477
1007
+ msgid "Download the Addon plugin (.zip file) to your desktop"
1008
+ msgstr "Descarga el plugin del complemento (archivo .zip) a tu escritorio"
1009
 
1010
+ #: ../classes/settings.php:478
1011
+ msgid "Navigate to"
1012
+ msgstr "Accede a"
 
1013
 
1014
+ #: ../classes/settings.php:478
1015
+ msgid "Plugins > Add New > Upload"
1016
+ msgstr "Plugins > Añadir nuevo > Subir"
1017
 
1018
+ #: ../classes/settings.php:479
1019
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1020
+ msgstr ""
1021
+ "Usa el cargador para navegar, seleccionar e instalar tu complemento "
1022
+ "(archivo .zip) "
1023
 
1024
+ #: ../classes/settings.php:480
1025
+ msgid ""
1026
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
1027
+ "link"
1028
+ msgstr ""
1029
+ "Una vez el plugin haya sido cargado e instalado, haz clic en el enlace "
1030
+ "'Activar Plugin'"
1031
 
1032
+ #: ../classes/settings.php:481
1033
+ msgid "The Add-on is now installed and activated!"
1034
+ msgstr "El complemento ha sido cargado y activado"
1035
 
1036
+ #: ../classes/settings.php:482
1037
+ #, php-format
1038
+ msgid ""
1039
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1040
+ msgstr ""
1041
+ "Para las actualizaciones automáticas asegúrate de <a href='%s'>introducir la "
1042
+ "clave de tu licencia</a>."
1043
 
1044
+ #: ../classes/settings.php:492
1045
+ msgid "Start using Admin Columns"
1046
+ msgstr "Empieza a usar Columnas de administración"
1047
 
1048
+ #: ../classes/settings.php:539
1049
+ msgid "General Settings"
1050
+ msgstr "Ajustes generales"
1051
 
1052
+ #: ../classes/settings.php:540
1053
+ msgid "Customize your Admin Columns settings."
1054
+ msgstr "Personaliza los ajustes de las Columnas de administración."
1055
 
1056
+ #: ../classes/settings.php:553
1057
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1058
+ msgstr ""
1059
+ "Mostrar campos personalizados ocultos. El valor predeterminado es <code>off</"
1060
+ "code>."
1061
 
1062
+ #: ../classes/settings.php:559
1063
+ msgid ""
1064
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1065
+ msgstr ""
1066
+ "Mostrar el botón \"Editar columnas\" en la administración. El valor "
1067
+ "predeterminado es <code>off</code>."
1068
 
1069
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1070
+ msgid "Save"
1071
+ msgstr "Guardar"
 
1072
 
1073
+ #: ../classes/settings.php:606
1074
+ msgid "Restore Settings"
1075
+ msgstr "Restaurar ajustes"
1076
 
1077
+ #: ../classes/settings.php:607
1078
+ msgid "This will delete all column settings and restore the default settings."
1079
+ msgstr ""
1080
+ "Esto eliminará todos los ajustes de columnas y restaurará la configuración "
1081
+ "predeterminada."
1082
 
1083
+ #: ../classes/settings.php:613
1084
+ msgid "Restore default settings"
1085
+ msgstr "Restaurar ajustes predeterminados"
1086
 
1087
+ #: ../classes/settings.php:613
1088
+ msgid ""
1089
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1090
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1091
+ msgstr ""
1092
+ "¡Advertencia! Se borrarán todos los datos de columnas de administrador "
1093
+ "guardadas. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, "
1094
+ "\\'Cancelar\\' para detener"
1095
 
1096
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1097
+ msgid "Settings"
1098
+ msgstr "Ajustes"
1099
 
1100
+ #: ../classes/settings.php:665
1101
+ #, fuzzy
1102
+ msgid "Posttypes"
1103
+ msgstr "Tipo de entrada"
1104
 
1105
+ #: ../classes/settings.php:666
1106
+ msgid "Others"
1107
+ msgstr ""
1108
 
1109
+ #: ../classes/settings.php:667
1110
+ #, fuzzy
1111
+ msgid "Taxonomies"
1112
+ msgstr "Taxonomía"
1113
 
1114
+ #: ../classes/settings.php:688
1115
+ msgid "Store settings"
1116
+ msgstr "Guardar ajustes"
1117
 
1118
+ #: ../classes/settings.php:692
1119
+ msgid "Update"
1120
+ msgstr "Actualizar"
1121
 
1122
+ #: ../classes/settings.php:696
1123
+ #, php-format
1124
+ msgid ""
1125
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1126
+ "\\' to delete, \\'Cancel\\' to stop"
1127
+ msgstr ""
1128
+ "¡Advertencia! Se borrarán %s columnas de datos. Esto no se puede deshacer. "
1129
+ "\\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
1130
 
1131
+ #: ../classes/settings.php:697
1132
+ msgid "columns"
1133
+ msgstr "columnas"
1134
 
1135
+ #: ../classes/settings.php:710
1136
+ msgid "Get the Pro Add-on"
1137
+ msgstr "Obtener el Complemento-Pro."
1138
 
1139
+ #: ../classes/settings.php:714
1140
+ msgid "Add Sorting"
1141
+ msgstr "Añadir ordenar"
1142
 
1143
+ #: ../classes/settings.php:715
1144
+ msgid "Add Filtering"
1145
+ msgstr "Añadir filtrar"
1146
 
1147
+ #: ../classes/settings.php:716
1148
+ msgid "Add Import/Export"
1149
+ msgstr "Añadir Importar/Exportar"
1150
 
1151
+ #: ../classes/settings.php:719
1152
+ #, php-format
1153
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1154
+ msgstr "Ver más detalles del <a href=\"%s\">Complemento-Pro</a> "
1155
 
1156
+ #: ../classes/settings.php:750
1157
+ msgid "Support"
1158
+ msgstr "Ayuda"
 
1159
 
1160
+ #: ../classes/settings.php:753
1161
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1162
+ msgstr ""
1163
+ "Comprueba la sección de <strong>Ayuda</strong> arriba a la derecha de la "
1164
+ "pantalla."
1165
 
1166
+ #: ../classes/settings.php:756
1167
+ #, php-format
1168
+ msgid ""
1169
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1170
+ "href='%s'>visit the Admin Columns website</a>"
1171
+ msgstr ""
1172
+ "Para obtener la documentación completa, informes de errores, sugerencias y "
1173
+ "otros consejos, <a href='%s'>visitar la página web de Columnas de "
1174
+ "administración</a>"
1175
 
1176
+ #: ../classes/settings.php:784
1177
+ msgid "Drag and drop to reorder"
1178
+ msgstr "Arrastrar y soltar para reordenar"
1179
 
1180
+ #: ../classes/settings.php:787
1181
+ msgid "Add Column"
1182
+ msgstr "Añadir columna"
1183
 
1184
+ #: ../classes/storage_model.php:222
1185
+ msgid "settings succesfully restored."
1186
+ msgstr "ajustes restaurados."
1187
 
1188
+ #: ../classes/storage_model.php:239
1189
+ msgid "No columns settings available."
1190
+ msgstr "No hay ajustes de columnas disponibles"
1191
 
1192
+ #: ../classes/storage_model.php:262
1193
+ #, php-format
1194
+ msgid "You are trying to store the same settings for %s."
1195
+ msgstr "Estás intentando almacenar la misma configuración para %s."
1196
+
1197
+ #: ../classes/storage_model.php:266
1198
+ #, php-format
1199
+ msgid "Settings for %s updated succesfully."
1200
+ msgstr "Ajustes para %s actualizados."
1201
 
1202
  #: ../classes/storage_model/comment.php:13
1203
  msgid "Comments"
1210
  #: ../classes/storage_model/user.php:13
1211
  msgid "Users"
1212
  msgstr "Usuarios"
1213
+
1214
+ #: ../classes/upgrade.php:45
1215
+ msgid "Upgrade"
1216
+ msgstr "Actualizar"
1217
+
1218
+ #: ../classes/upgrade.php:90
1219
+ msgid "requires a database upgrade"
1220
+ msgstr "necesita una actualización de la base de datos"
1221
+
1222
+ #: ../classes/upgrade.php:93
1223
+ msgid "why?"
1224
+ msgstr "¿por qué?"
1225
+
1226
+ #: ../classes/upgrade.php:94
1227
+ msgid "Please"
1228
+ msgstr "Por favor"
1229
+
1230
+ #: ../classes/upgrade.php:95
1231
+ msgid "backup your database"
1232
+ msgstr "haz una copia de seguridad de tu base de datos"
1233
+
1234
+ #: ../classes/upgrade.php:96
1235
+ msgid "then click"
1236
+ msgstr "después clic"
1237
+
1238
+ #: ../classes/upgrade.php:304
1239
+ msgid "Migrating Column Settings"
1240
+ msgstr "Migración de ajustes de columnas"
1241
+
1242
+ #: ../classes/upgrade.php:340
1243
+ msgid "No Upgrade Required"
1244
+ msgstr "No es necesario actualizar"
1245
+
1246
+ #: ../classes/upgrade.php:341
1247
+ msgid "Return to welcome screen."
1248
+ msgstr "Volver a la pantalla de inicio."
1249
+
1250
+ #: ../classes/upgrade.php:359
1251
+ msgid "Upgrade Complete!"
1252
+ msgstr "Actualización completada"
1253
+
1254
+ #: ../classes/upgrade.php:359
1255
+ msgid "Return to settings."
1256
+ msgstr "Volver a ajustes."
1257
+
1258
+ #: ../classes/upgrade.php:360
1259
+ msgid "Error"
1260
+ msgstr "Error"
1261
+
1262
+ #: ../classes/upgrade.php:361
1263
+ msgid ""
1264
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1265
+ "on the support forum."
1266
+ msgstr ""
1267
+ "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, "
1268
+ "informa de esto en el foro de soporte."
1269
+
1270
+ #: ../codepress-admin-columns.php:447
1271
+ msgid "Edit columns"
1272
+ msgstr "Editar columnas"
1273
+
1274
+ #~ msgid "Publish"
1275
+ #~ msgstr "Publicar"
languages/cpac-it_IT.mo CHANGED
Binary file
languages/cpac-it_IT.po CHANGED
@@ -5,60 +5,52 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/it_IT/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: it_IT\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
- msgid "Settings"
27
- msgstr "Impostazioni"
28
-
29
- #: ../codepress-admin-columns.php:350
30
- msgid "Edit columns"
31
- msgstr "Modifica colonne"
32
-
33
- #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
  msgstr "Miniatura"
36
 
37
- #: ../classes/column.php:480
38
  msgid "Medium"
39
  msgstr "Media"
40
 
41
- #: ../classes/column.php:481
42
  msgid "Large"
43
  msgstr "Grande"
44
 
45
- #: ../classes/column.php:482
46
  msgid "Full"
47
  msgstr "Dimensione reale"
48
 
49
- #: ../classes/column.php:774
50
  msgid "Date Format"
51
  msgstr "Formato Data"
52
 
53
- #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
55
  msgstr "Questo determinerà il modo in cui verrà visualizzata la data."
56
 
57
- #: ../classes/column.php:781
58
  msgid "Example:"
59
  msgstr "Esempio:"
60
 
61
- #: ../classes/column.php:783
62
  #, php-format
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -67,1107 +59,1137 @@ msgstr ""
67
  "Lasciare vuoto per utilizzare il formato data di WordPress, o modifica <a "
68
  "href=\"%s\">qui il formato data</a>."
69
 
70
- #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
72
  msgstr "Documentazione sulla formattazione \"data e ora\"."
73
 
74
- #: ../classes/column.php:801
75
  msgid "Excerpt length"
76
  msgstr "Lunghezza riassunto"
77
 
78
- #: ../classes/column.php:802
79
  msgid "Number of words"
80
  msgstr "Numero di parole"
81
 
82
- #: ../classes/column.php:824
83
  msgid "Preview size"
84
  msgstr "Dimensione anteprima"
85
 
86
- #: ../classes/column.php:841 ../classes/column.php:897
87
  msgid "Custom"
88
  msgstr "Personalizzata"
89
 
90
- #: ../classes/column.php:844
91
  msgid "width"
92
  msgstr "larghezza"
93
 
94
- #: ../classes/column.php:847
95
  msgid "height"
96
  msgstr "altezza"
97
 
98
- #: ../classes/column.php:898 ../classes/settings.php:224
99
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Default"
101
  msgstr "Predefinito"
102
 
103
- #: ../classes/column.php:923 ../classes/column.php:984
104
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
105
  msgid "Remove"
106
  msgstr "Rimuovi"
107
 
108
- #: ../classes/column.php:942
109
  msgid "Type"
110
  msgstr "TIpo"
111
 
112
- #: ../classes/column.php:942
113
  msgid "Choose a column type."
114
  msgstr "Scegli un tipo di colonna."
115
 
116
- #: ../classes/column.php:952
 
 
 
 
 
 
117
  msgid "Label"
118
  msgstr "Etichetta"
119
 
120
- #: ../classes/column.php:952
121
  msgid "This is the name which will appear as the column header."
122
  msgstr "Questo è il nome che apparirà come intestazione della colonna."
123
 
124
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
125
  msgid "Width"
126
  msgstr "Larghezza"
127
 
128
- #: ../classes/column.php:961 ../classes/column.php:962
129
  msgid "default"
130
  msgstr "predefinito"
131
 
132
- #: ../classes/settings.php:68
133
- msgid "Admin Columns Settings"
134
- msgstr "Impostazioni Admin Columns"
135
-
136
- #: ../classes/settings.php:68 ../classes/settings.php:534
137
- #: ../classes/upgrade.php:89
138
- msgid "Admin Columns"
139
- msgstr "Admin Columns"
140
-
141
- #: ../classes/settings.php:129
142
- #, php-format
143
- msgid "%s column is already present and can not be duplicated."
144
  msgstr ""
145
 
146
- #: ../classes/settings.php:184
147
- msgid "Default settings succesfully restored."
148
- msgstr "Le impostazioni predefinite sono state ripristinate."
149
-
150
- #: ../classes/settings.php:202 ../classes/settings.php:457
151
- msgid "Overview"
152
- msgstr "Panoramica"
153
 
154
- #: ../classes/settings.php:205
155
- msgid ""
156
- "This plugin is for adding and removing additional columns to the "
157
- "administration screens for post(types), pages, media library, comments, "
158
- "links and users. Change the column's label and reorder them."
159
  msgstr ""
160
 
161
- #: ../classes/settings.php:208
162
- msgid "Basics"
 
163
  msgstr ""
164
 
165
- #: ../classes/settings.php:210
166
- msgid "Change order"
167
- msgstr "Cambia ordine"
 
168
 
169
- #: ../classes/settings.php:211
170
- msgid ""
171
- "By dragging the columns you can change the order which they will appear in."
172
- msgstr "Trascinando le colonne puoi modificare l'ordine in cui appariranno."
173
 
174
- #: ../classes/settings.php:212
175
- msgid "Change label"
176
- msgstr "Cambia etichetta"
177
 
178
- #: ../classes/settings.php:213
179
- msgid ""
180
- "By clicking on the triangle you will see the column options. Here you can "
181
- "change each label of the columns heading."
182
  msgstr ""
183
- "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi "
184
- "cambiare l'etichetta di ogni intestazione di colonna."
185
 
186
- #: ../classes/settings.php:214
187
- msgid "Change column width"
188
- msgstr "Cambia la larghezza della colonna"
 
189
 
190
- #: ../classes/settings.php:215
191
- msgid ""
192
- "By clicking on the triangle you will see the column options. By using the "
193
- "draggable slider you can set the width of the columns in percentages."
194
  msgstr ""
195
 
196
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
197
- #: ../classes/column/custom-field.php:324
198
- msgid "Custom Field"
199
- msgstr "Campo personalizzato"
200
 
201
- #: ../classes/settings.php:221
202
- msgid "'Custom Field' column"
203
- msgstr "Colonna 'Campo Personalizzato'"
204
 
205
- #: ../classes/settings.php:222
206
- msgid ""
207
- "The custom field colum uses the custom fields from posts and users. There "
208
- "are 10 types which you can set."
209
  msgstr ""
210
 
211
- #: ../classes/settings.php:224
212
- msgid ""
213
- "Value: Can be either a string or array. Arrays will be flattened and values "
214
- "are seperated by a ',' comma."
215
  msgstr ""
216
 
217
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
218
- #: ../classes/column/link/image.php:12
219
- msgid "Image"
220
- msgstr "Immagine"
221
 
222
- #: ../classes/settings.php:225
223
- msgid ""
224
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
225
- "comma )."
226
  msgstr ""
227
 
228
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
 
 
 
 
229
  #: ../classes/column/comment/excerpt.php:13
230
- #: ../classes/column/post/excerpt.php:13
 
231
  msgid "Excerpt"
232
  msgstr "Riassunto"
233
 
234
- #: ../classes/settings.php:226
235
- msgid "Value: This will show the first 20 words of the Post content."
236
- msgstr "Valore: Mostrerà le prime 20 parole del contenuto dell'Articolo."
237
-
238
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
239
- msgid "Multiple Values"
240
- msgstr "Valori Multipli"
241
-
242
- #: ../classes/settings.php:227
243
- msgid ""
244
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
245
- msgstr ""
246
-
247
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
248
- msgid "Numeric"
249
  msgstr ""
250
 
251
- #: ../classes/settings.php:228
252
- msgid ""
253
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
254
- "for sorting, so you can sort your posts on numeric (custom field) values."
255
  msgstr ""
256
 
257
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
258
- #: ../classes/column/comment/date.php:12
259
- msgid "Date"
260
- msgstr "Data"
261
 
262
- #: ../classes/settings.php:229
263
- #, php-format
264
- msgid ""
265
- "Value: Can be unix time stamp or a date format as described in the <a "
266
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
267
- "href='%s'>general settings</a> page."
268
  msgstr ""
269
 
270
- #: ../classes/settings.php:230
271
- msgid "Post Titles"
272
  msgstr ""
273
 
274
- #: ../classes/settings.php:230
275
- msgid "Value: can be one or more Post ID's (seperated by ',')."
276
  msgstr ""
277
 
278
- #: ../classes/settings.php:231
279
- msgid "Usernames"
280
- msgstr "Nomi utente"
 
281
 
282
- #: ../classes/settings.php:231
283
- msgid "Value: can be one or more User ID's (seperated by ',')."
284
  msgstr ""
285
 
286
- #: ../classes/settings.php:232
287
- msgid "Checkmark"
288
- msgstr ""
289
 
290
- #: ../classes/settings.php:232
291
- msgid "Value: should be a 1 (one) or 0 (zero)."
292
  msgstr ""
293
 
294
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
295
- msgid "Color"
296
  msgstr ""
297
 
298
- #: ../classes/settings.php:233
299
- msgid "Value: hex value color, such as #808080."
300
  msgstr ""
301
 
302
- #: ../classes/settings.php:377
303
- msgid "Welcome to Admin Columns"
304
  msgstr ""
305
 
306
- #: ../classes/settings.php:380
307
- msgid "Thank you for updating to the latest version!"
308
  msgstr ""
309
 
310
- #: ../classes/settings.php:381
311
- msgid ""
312
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
313
- "like it."
314
  msgstr ""
315
 
316
- #: ../classes/settings.php:386
317
- msgid "What’s New"
318
  msgstr ""
319
 
320
- #: ../classes/settings.php:387
321
- msgid "Changelog"
322
- msgstr "Changelog"
323
-
324
- #: ../classes/settings.php:389
325
- msgid "Download Addons"
326
- msgstr "Scarica i componenti aggiuntivi"
327
-
328
- #: ../classes/settings.php:395
329
- msgid "Addons"
330
- msgstr "Componenti aggiuntivi"
331
-
332
- #: ../classes/settings.php:397
333
  msgid ""
334
- "Addons are now activated by downloading and installing individual plugins. "
335
- "Although these plugins will not be hosted on the wordpress.org repository, "
336
- "each Add-on will continue to receive updates in the usual way."
337
  msgstr ""
338
 
339
- #: ../classes/settings.php:400
340
- msgid ""
341
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
342
  msgstr ""
343
 
344
- #: ../classes/settings.php:403
345
- msgid "Addons are seperate plugins which need to be downloaded."
 
 
346
  msgstr ""
347
 
348
- #: ../classes/settings.php:403
349
- msgid "Download your Addons"
350
  msgstr ""
351
 
352
- #: ../classes/settings.php:409
353
- msgid "This website does not use add-ons"
354
  msgstr ""
355
 
356
- #: ../classes/settings.php:409
357
- msgid "See our website for the Pro-addon."
358
  msgstr ""
359
 
360
- #: ../classes/settings.php:416
361
- msgid "Important"
362
  msgstr ""
363
 
364
- #: ../classes/settings.php:418
365
- msgid "Database Changes"
366
  msgstr ""
367
 
368
- #: ../classes/settings.php:419
369
- msgid ""
370
- "The database has been changed between versions 1 and 2. But we made sure you "
371
- "can still roll back to version 1x without any issues."
372
  msgstr ""
373
 
374
- #: ../classes/settings.php:422
375
- msgid "Make sure you backup your database and then click"
376
  msgstr ""
377
 
378
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
379
- msgid "Upgrade Database"
380
  msgstr ""
381
 
382
- #: ../classes/settings.php:425
383
- msgid "Potential Issues"
 
384
  msgstr ""
385
 
386
- #: ../classes/settings.php:426
387
- msgid ""
388
- "Do to the sizable refactoring the code, surounding Addons and action/"
389
- "filters, your website may not operate correctly. It is important that you "
390
- "read the full"
391
  msgstr ""
392
 
393
- #: ../classes/settings.php:426
394
- msgid "Migrating from v1 to v2"
395
  msgstr ""
396
 
397
- #: ../classes/settings.php:426
398
- msgid "guide to view the full list of changes."
399
  msgstr ""
400
 
401
- #: ../classes/settings.php:426
402
- #, php-format
403
- msgid ""
404
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
405
- "can fix it in the next release."
406
  msgstr ""
407
 
408
- #: ../classes/settings.php:429
409
- msgid "Important!"
410
  msgstr ""
411
 
412
- #: ../classes/settings.php:429
413
- msgid ""
414
- "If you updated the Admin Columns plugin without prior knowledge of such "
415
- "changes, Please roll back to the latest"
416
  msgstr ""
417
 
418
- #: ../classes/settings.php:429
419
- msgid "version 1"
420
- msgstr "versione 1"
421
-
422
- #: ../classes/settings.php:429
423
- msgid "of this plugin."
424
- msgstr "di questo plugin."
425
-
426
- #: ../classes/settings.php:435
427
- msgid "Changelog for"
428
- msgstr "Changelog per"
429
 
430
- #: ../classes/settings.php:450
431
- msgid "Learn more"
432
- msgstr "Leggi altro"
433
 
434
- #: ../classes/settings.php:459
435
- msgid ""
436
- "New to v2, all Addons act as separate plugins which need to be individually "
437
- "downloaded, installed and updated."
438
  msgstr ""
439
 
440
- #: ../classes/settings.php:460
441
- msgid ""
442
- "This page will assist you in downloading and installing each available Addon."
443
  msgstr ""
444
 
445
- #: ../classes/settings.php:461
446
- msgid "Available Addons"
447
  msgstr ""
448
 
449
- #: ../classes/settings.php:466
450
- msgid "Name"
451
  msgstr ""
452
 
453
- #: ../classes/settings.php:467 ../classes/settings.php:475
454
- msgid "Download"
455
  msgstr ""
456
 
457
- #: ../classes/settings.php:473
458
- msgid "Pro Add-on (includes Sortorder add-on)"
459
  msgstr ""
460
 
461
- #: ../classes/settings.php:483
462
- msgid "Installation"
463
  msgstr ""
464
 
465
- #: ../classes/settings.php:485
466
- msgid "For each Add-on available, please perform the following:"
467
  msgstr ""
468
 
469
- #: ../classes/settings.php:487
470
- msgid "Download the Addon plugin (.zip file) to your desktop"
471
  msgstr ""
472
 
473
- #: ../classes/settings.php:488
474
- msgid "Navigate to"
475
  msgstr ""
476
 
477
- #: ../classes/settings.php:488
478
- msgid "Plugins > Add New > Upload"
479
  msgstr ""
480
 
481
- #: ../classes/settings.php:489
482
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
483
  msgstr ""
484
 
485
- #: ../classes/settings.php:490
486
- msgid ""
487
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
488
- "link"
489
  msgstr ""
490
 
491
- #: ../classes/settings.php:491
492
- msgid "The Add-on is now installed and activated!"
493
  msgstr ""
494
 
495
- #: ../classes/settings.php:492
496
  #, php-format
497
- msgid ""
498
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
499
  msgstr ""
500
 
501
- #: ../classes/settings.php:502
502
- msgid "Start using Admin Columns"
503
  msgstr ""
504
 
505
- #: ../classes/settings.php:580
506
- msgid "Store settings"
 
507
  msgstr ""
508
 
509
- #: ../classes/settings.php:585
510
- msgid "Update"
511
  msgstr ""
512
 
513
- #: ../classes/settings.php:585
514
- msgid "Publish"
515
  msgstr ""
516
 
517
- #: ../classes/settings.php:589
518
- #, php-format
519
- msgid ""
520
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
521
- "\\' to delete, \\'Cancel\\' to stop"
522
  msgstr ""
523
 
524
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
525
- #: ../classes/column/post/actions.php:53
526
- msgid "Restore"
527
  msgstr ""
528
 
529
- #: ../classes/settings.php:590
530
- msgid "columns"
531
  msgstr ""
532
 
533
- #: ../classes/settings.php:600
534
- msgid "Get the Pro Add-on"
535
  msgstr ""
536
 
537
- #: ../classes/settings.php:604
538
- msgid "Add Sorting"
539
  msgstr ""
540
 
541
- #: ../classes/settings.php:605
542
- msgid "Add Filtering"
 
543
  msgstr ""
544
 
545
- #: ../classes/settings.php:606
546
- msgid "Add Import/Export"
547
  msgstr ""
548
 
549
- #: ../classes/settings.php:609
550
- #, php-format
551
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
552
  msgstr ""
553
 
554
- #: ../classes/settings.php:617
555
- msgid "Support"
556
  msgstr ""
557
 
558
- #: ../classes/settings.php:620
559
- msgid "Check the <strong>Help</strong> section in the top-right screen."
560
  msgstr ""
561
 
562
- #: ../classes/settings.php:622
563
- #, php-format
564
- msgid ""
565
- "For full documentation, bug reports, feature suggestions and other tips <a "
566
- "href='%s'>visit the Admin Columns website</a>"
567
  msgstr ""
568
 
569
- #: ../classes/settings.php:642
570
- msgid "Drag and drop to reorder"
571
  msgstr ""
572
 
573
- #: ../classes/settings.php:645
574
- msgid "Add Column"
575
  msgstr ""
576
 
577
- #: ../classes/settings.php:696
578
- msgid "General Settings"
579
  msgstr ""
580
 
581
- #: ../classes/settings.php:697
582
- msgid "Customize your Admin Columns settings."
583
  msgstr ""
584
 
585
- #: ../classes/settings.php:710
586
- msgid "Show hidden custom fields. Default is <code>off</code>."
587
  msgstr ""
588
 
589
- #: ../classes/settings.php:716
590
- msgid ""
591
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
592
  msgstr ""
593
 
594
- #: ../classes/settings.php:723
595
- msgid "Save"
596
  msgstr ""
597
 
598
- #: ../classes/settings.php:763
599
- msgid "Restore Settings"
600
  msgstr ""
601
 
602
- #: ../classes/settings.php:764
603
- msgid "This will delete all column settings and restore the default settings."
604
  msgstr ""
605
 
606
- #: ../classes/settings.php:770
607
- msgid "Restore default settings"
608
  msgstr ""
609
 
610
- #: ../classes/settings.php:770
611
- msgid ""
612
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
613
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
614
  msgstr ""
615
 
616
- #: ../classes/storage_model.php:167
617
- msgid "settings succesfully restored."
618
  msgstr ""
619
 
620
- #: ../classes/storage_model.php:181
621
- msgid "No columns settings available."
622
  msgstr ""
623
 
624
- #: ../classes/storage_model.php:204
625
- #, php-format
626
- msgid "You are trying to store the same settings for %s."
627
  msgstr ""
628
 
629
- #: ../classes/storage_model.php:208
630
- #, php-format
631
- msgid "Settings for %s updated succesfully."
632
  msgstr ""
633
 
634
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
635
- msgid "View"
636
  msgstr ""
637
 
638
- #: ../classes/upgrade.php:45
639
- msgid "Upgrade"
640
  msgstr ""
641
 
642
- #: ../classes/upgrade.php:90
643
- msgid "requires a database upgrade"
644
  msgstr ""
645
 
646
- #: ../classes/upgrade.php:93
647
- msgid "why?"
648
  msgstr ""
649
 
650
- #: ../classes/upgrade.php:94
651
- msgid "Please"
652
  msgstr ""
653
 
654
- #: ../classes/upgrade.php:95
655
- msgid "backup your database"
656
  msgstr ""
657
 
658
- #: ../classes/upgrade.php:96
659
- msgid "then click"
660
  msgstr ""
661
 
662
- #: ../classes/upgrade.php:304
663
- msgid "Migrating Column Settings"
664
  msgstr ""
665
 
666
- #: ../classes/upgrade.php:340
667
- msgid "No Upgrade Required"
668
  msgstr ""
669
 
670
- #: ../classes/upgrade.php:341
671
- msgid "Return to welcome screen."
672
  msgstr ""
673
 
674
- #: ../classes/upgrade.php:359
675
- msgid "Upgrade Complete!"
676
  msgstr ""
677
 
678
- #: ../classes/upgrade.php:359
679
- msgid "Return to settings."
680
  msgstr ""
681
 
682
- #: ../classes/upgrade.php:360
683
- msgid "Error"
684
  msgstr ""
685
 
686
- #: ../classes/upgrade.php:361
687
- msgid ""
688
- "Sorry. Something went wrong during the upgrade process. Please report this "
689
- "on the support forum."
690
  msgstr ""
691
 
692
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
693
- msgid "Media Library"
694
  msgstr ""
695
 
696
- #: ../classes/column/custom-field.php:79
697
- msgid "Post Title (Post ID's)"
698
  msgstr ""
699
 
700
- #: ../classes/column/custom-field.php:80
701
- msgid "Username (User ID's)"
702
  msgstr ""
703
 
704
- #: ../classes/column/custom-field.php:81
705
- msgid "Checkmark (true/false)"
706
- msgstr ""
707
 
708
- #: ../classes/column/custom-field.php:324
709
- msgid "Select your custom field."
710
- msgstr ""
 
711
 
712
- #: ../classes/column/custom-field.php:334
713
- msgid "No custom fields available."
 
714
  msgstr ""
715
 
716
- #: ../classes/column/custom-field.php:341
717
- msgid "Field Type"
718
- msgstr ""
719
 
720
- #: ../classes/column/custom-field.php:341
721
- msgid "This will determine how the value will be displayed."
722
- msgstr ""
723
 
724
- #: ../classes/column/custom-field.php:384
725
- msgid "Before"
 
 
 
726
  msgstr ""
727
 
728
- #: ../classes/column/custom-field.php:384
729
- msgid "This text will appear before the custom field value."
730
  msgstr ""
731
 
732
- #: ../classes/column/custom-field.php:390
733
- msgid "After"
734
- msgstr ""
735
 
736
- #: ../classes/column/custom-field.php:390
737
- msgid "This text will appear after the custom field value."
738
- msgstr ""
 
739
 
740
- #: ../classes/column/comment/actions.php:14
741
- #: ../classes/column/link/actions.php:14
742
- #: ../classes/column/media/actions.php:14
743
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
744
- msgid "Actions"
745
- msgstr ""
746
 
747
- #: ../classes/column/comment/actions.php:73
748
- #: ../classes/column/comment/actions.php:78
749
- msgid "Unapprove"
 
750
  msgstr ""
 
 
751
 
752
- #: ../classes/column/comment/actions.php:75
753
- #: ../classes/column/comment/actions.php:77
754
- msgid "Approve"
755
- msgstr ""
756
 
757
- #: ../classes/column/comment/actions.php:90
758
- #: ../classes/column/post/actions.php:57
759
- msgid "Delete Permanently"
 
760
  msgstr ""
761
 
762
- #: ../classes/column/comment/actions.php:96
763
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
764
- #: ../classes/column/user/actions.php:57
765
- msgid "Edit"
 
 
 
 
766
  msgstr ""
767
 
768
- #: ../classes/column/comment/actions.php:97
769
- #: ../classes/column/post/actions.php:49
770
- msgid "Quick&nbsp;Edit"
 
771
  msgstr ""
772
 
773
- #: ../classes/column/comment/actions.php:98
774
- msgid "Reply"
 
 
775
  msgstr ""
776
 
777
- #: ../classes/column/comment/agent.php:12
778
- msgid "Agent"
 
 
 
 
 
779
  msgstr ""
780
 
781
- #: ../classes/column/comment/approved.php:12
782
- #: ../classes/column/post/comment-count.php:31
783
- msgid "Approved"
 
784
  msgstr ""
785
 
786
- #: ../classes/column/comment/author-avatar.php:12
787
- msgid "Avatar"
 
 
 
 
788
  msgstr ""
789
 
790
- #: ../classes/column/comment/author-email.php:12
791
- msgid "Author email"
792
  msgstr ""
793
 
794
- #: ../classes/column/comment/author-ip.php:12
795
- msgid "Author IP"
796
  msgstr ""
797
 
798
- #: ../classes/column/comment/author-url.php:12
799
- msgid "Author url"
 
 
 
 
800
  msgstr ""
801
 
802
- #: ../classes/column/comment/author.php:12
803
- msgid "Author"
804
  msgstr ""
805
 
806
- #: ../classes/column/comment/date-gmt.php:12
807
- msgid "Date GMT"
808
  msgstr ""
809
 
810
- #: ../classes/column/comment/date-gmt.php:25
811
- #: ../classes/column/comment/date.php:25
812
- #, php-format
813
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
814
  msgstr ""
815
 
816
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
817
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
818
- msgid "ID"
 
819
  msgstr ""
820
 
821
- #: ../classes/column/comment/reply-to.php:12
822
- msgid "In Reply To"
823
  msgstr ""
824
 
825
- #: ../classes/column/comment/word-count.php:12
826
- #: ../classes/column/post/word-count.php:12
827
- msgid "Word count"
828
  msgstr ""
829
 
830
- #: ../classes/column/link/actions.php:46
831
- #, php-format
832
  msgid ""
833
- "You are about to delete this link '%s'\n"
834
- " 'Cancel' to stop, 'OK' to delete."
835
  msgstr ""
836
 
837
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
838
- msgid "Delete"
839
  msgstr ""
840
 
841
- #: ../classes/column/link/description.php:12
842
- #: ../classes/column/media/description.php:12
843
- #: ../classes/column/user/description.php:14
844
- msgid "Description"
 
 
 
 
 
 
 
 
 
 
 
 
 
845
  msgstr ""
846
 
847
- #: ../classes/column/link/length.php:12
848
- msgid "Length"
 
849
  msgstr ""
850
 
851
- #: ../classes/column/link/notes.php:13
852
- msgid "Notes"
853
  msgstr ""
854
 
855
- #: ../classes/column/link/owner.php:12
856
- msgid "Owner"
857
  msgstr ""
858
 
859
- #: ../classes/column/link/rss.php:12
860
- msgid "Rss"
861
  msgstr ""
862
 
863
- #: ../classes/column/link/target.php:12
864
- msgid "Target"
865
  msgstr ""
866
 
867
- #: ../classes/column/media/alternate-text.php:12
868
- msgid "Alt"
869
  msgstr ""
870
 
871
- #: ../classes/column/media/available-sizes.php:14
872
- msgid "Available Sizes"
873
  msgstr ""
874
 
875
- #: ../classes/column/media/available-sizes.php:37
876
- msgid "full size"
 
 
877
  msgstr ""
878
 
879
- #: ../classes/column/media/caption.php:12
880
- #: ../classes/column/media/exif-data.php:36
881
- msgid "Caption"
882
  msgstr ""
883
 
884
- #: ../classes/column/media/dimensions.php:12
885
- msgid "Dimensions"
886
  msgstr ""
887
 
888
- #: ../classes/column/media/exif-data.php:12
889
- msgid "EXIF data"
890
  msgstr ""
891
 
892
- #: ../classes/column/media/exif-data.php:33
893
- msgid "Aperture"
 
 
 
894
  msgstr ""
895
 
896
- #: ../classes/column/media/exif-data.php:34
897
- msgid "Credit"
898
  msgstr ""
899
 
900
- #: ../classes/column/media/exif-data.php:35
901
- msgid "Camera"
902
  msgstr ""
903
 
904
- #: ../classes/column/media/exif-data.php:37
905
- msgid "Timestamp"
 
 
 
906
  msgstr ""
907
 
908
- #: ../classes/column/media/exif-data.php:38
909
- msgid "Copyright EXIF"
910
  msgstr ""
911
 
912
- #: ../classes/column/media/exif-data.php:39
913
- msgid "Focal Length"
 
 
914
  msgstr ""
915
 
916
- #: ../classes/column/media/exif-data.php:40
917
- msgid "ISO"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
918
  msgstr ""
919
 
920
- #: ../classes/column/media/exif-data.php:41
921
- msgid "Shutter Speed"
 
922
  msgstr ""
923
 
924
- #: ../classes/column/media/exif-data.php:42
925
- msgid "Title"
926
  msgstr ""
927
 
928
- #: ../classes/column/media/file-name.php:12
929
- msgid "File name"
930
  msgstr ""
931
 
932
- #: ../classes/column/media/file-size.php:12
933
- msgid "File size"
934
  msgstr ""
935
 
936
- #: ../classes/column/media/full-path.php:12
937
- msgid "Full path"
938
  msgstr ""
939
 
940
- #: ../classes/column/media/height.php:12
941
- msgid "Height"
942
  msgstr ""
943
 
944
- #: ../classes/column/media/mime-type.php:12
945
- msgid "Mime type"
946
  msgstr ""
947
 
948
- #: ../classes/column/post/actions.php:48
949
- msgid "Edit this item"
950
  msgstr ""
951
 
952
- #: ../classes/column/post/actions.php:49
953
- msgid "Edit this item inline"
954
  msgstr ""
955
 
956
- #: ../classes/column/post/actions.php:53
957
- msgid "Restore this item from the Trash"
958
  msgstr ""
959
 
960
- #: ../classes/column/post/actions.php:55
961
- msgid "Move this item to the Trash"
962
  msgstr ""
963
 
964
- #: ../classes/column/post/actions.php:55
965
- #: ../classes/column/post/comment-count.php:34
966
- #: ../classes/column/post/status.php:35
967
- msgid "Trash"
968
  msgstr ""
969
 
970
- #: ../classes/column/post/actions.php:57
971
- msgid "Delete this item permanently"
972
  msgstr ""
973
 
974
- #: ../classes/column/post/actions.php:62
975
  #, php-format
976
- msgid "Preview &#8220;%s&#8221;"
 
977
  msgstr ""
978
 
979
- #: ../classes/column/post/actions.php:62
980
- msgid "Preview"
981
  msgstr ""
982
 
983
- #: ../classes/column/post/actions.php:64
984
- #, php-format
985
- msgid "View &#8220;%s&#8221;"
986
  msgstr ""
987
 
988
- #: ../classes/column/post/attachment-count.php:12
989
- msgid "No. of Attachments"
990
  msgstr ""
991
 
992
- #: ../classes/column/post/attachment.php:12
993
- msgid "Attachment"
994
  msgstr ""
995
 
996
- #: ../classes/column/post/author-name.php:12
997
- msgid "Display Author As"
 
998
  msgstr ""
999
 
1000
- #: ../classes/column/post/author-name.php:33
1001
- msgid "Display Name"
1002
  msgstr ""
1003
 
1004
- #: ../classes/column/post/author-name.php:34
1005
- msgid "First Name"
1006
  msgstr ""
1007
 
1008
- #: ../classes/column/post/author-name.php:35
1009
- msgid "Last Name"
1010
  msgstr ""
1011
 
1012
- #: ../classes/column/post/author-name.php:36
1013
- #: ../classes/column/user/nickname.php:14
1014
- msgid "Nickname"
1015
  msgstr ""
1016
 
1017
- #: ../classes/column/post/author-name.php:37
1018
- msgid "User Login"
 
 
1019
  msgstr ""
1020
 
1021
- #: ../classes/column/post/author-name.php:38
1022
- msgid "User Email"
1023
- msgstr ""
1024
 
1025
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1026
- msgid "User ID"
1027
  msgstr ""
1028
 
1029
- #: ../classes/column/post/author-name.php:40
1030
- msgid "First and Last Name"
1031
  msgstr ""
1032
 
1033
- #: ../classes/column/post/author-name.php:106
1034
- msgid "This is the format of the author name."
1035
  msgstr ""
1036
 
1037
- #: ../classes/column/post/before-moretag.php:14
1038
- msgid "Before More Tag"
1039
  msgstr ""
1040
 
1041
- #: ../classes/column/post/comment-count.php:14
1042
- msgid "Comment count"
1043
  msgstr ""
1044
 
1045
- #: ../classes/column/post/comment-count.php:30
1046
- msgid "Total"
 
 
 
1047
  msgstr ""
1048
 
1049
- #: ../classes/column/post/comment-count.php:32
1050
- msgid "Pending"
1051
  msgstr ""
1052
 
1053
- #: ../classes/column/post/comment-count.php:33
1054
- msgid "Spam"
1055
  msgstr ""
1056
 
1057
- #: ../classes/column/post/comment-count.php:78
1058
- #: ../classes/column/post/comment-status.php:14
1059
- msgid "Comment status"
1060
  msgstr ""
1061
 
1062
- #: ../classes/column/post/comment-count.php:78
1063
- msgid "Select which comment status you like to display."
1064
  msgstr ""
1065
 
1066
- #: ../classes/column/post/featured-image.php:14
1067
- msgid "Featured Image"
1068
  msgstr ""
1069
 
1070
- #: ../classes/column/post/formats.php:14
1071
- msgid "Post Format"
 
1072
  msgstr ""
1073
 
1074
- #: ../classes/column/post/modified.php:14
1075
- msgid "Last modified"
1076
  msgstr ""
1077
 
1078
- #: ../classes/column/post/order.php:14
1079
- msgid "Page Order"
1080
  msgstr ""
1081
 
1082
- #: ../classes/column/post/page-template.php:12
1083
- msgid "Page Template"
 
 
 
1084
  msgstr ""
1085
 
1086
- #: ../classes/column/post/parent.php:12
1087
- msgid "Parent"
1088
  msgstr ""
1089
 
1090
- #: ../classes/column/post/ping-status.php:14
1091
- msgid "Ping status"
1092
  msgstr ""
1093
 
1094
- #: ../classes/column/post/roles.php:14
1095
- msgid "Roles"
1096
  msgstr ""
1097
 
1098
- #: ../classes/column/post/slug.php:12
1099
- msgid "Slug"
1100
  msgstr ""
1101
 
1102
- #: ../classes/column/post/status.php:14
1103
- msgid "Status"
 
1104
  msgstr ""
1105
 
1106
- #: ../classes/column/post/status.php:30
1107
- msgid "Published"
 
1108
  msgstr ""
1109
 
1110
- #: ../classes/column/post/status.php:31
1111
- msgid "Draft"
1112
  msgstr ""
1113
 
1114
- #: ../classes/column/post/status.php:32
1115
- msgid "Scheduled"
1116
  msgstr ""
1117
 
1118
- #: ../classes/column/post/status.php:33
1119
- msgid "Private"
1120
  msgstr ""
1121
 
1122
- #: ../classes/column/post/status.php:34
1123
- msgid "Pending Review"
1124
  msgstr ""
1125
 
1126
- #: ../classes/column/post/sticky.php:14
1127
- msgid "Sticky"
1128
  msgstr ""
1129
 
1130
- #: ../classes/column/post/taxonomy.php:12
1131
- #: ../classes/column/post/taxonomy.php:68
1132
- msgid "Taxonomy"
1133
  msgstr ""
1134
 
1135
- #: ../classes/column/user/comment-count.php:14
1136
- msgid "Comment Count"
1137
  msgstr ""
1138
 
1139
- #: ../classes/column/user/first-name.php:14
1140
- msgid "First name"
1141
  msgstr ""
1142
 
1143
- #: ../classes/column/user/last-name.php:14
1144
- msgid "Last name"
1145
  msgstr ""
1146
 
1147
- #: ../classes/column/user/post-count.php:14
1148
- msgid "Post Count"
1149
  msgstr ""
1150
 
1151
- #: ../classes/column/user/post-count.php:92
1152
- msgid "Post Type"
1153
  msgstr ""
1154
 
1155
- #: ../classes/column/user/registered.php:14
1156
- msgid "Registered"
1157
  msgstr ""
1158
 
1159
- #: ../classes/column/user/url.php:14
1160
- msgid "Url"
1161
  msgstr ""
1162
 
1163
- #: ../classes/storage_model/comment.php:13
1164
- msgid "Comments"
1165
  msgstr ""
1166
 
1167
- #: ../classes/storage_model/link.php:13
1168
- msgid "Links"
1169
  msgstr ""
1170
 
1171
- #: ../classes/storage_model/user.php:13
1172
- msgid "Users"
 
 
1173
  msgstr ""
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:43+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:43+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/it_IT/)\n"
13
+ "Language: it_IT\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
26
  msgid "Thumbnail"
27
  msgstr "Miniatura"
28
 
29
+ #: ../classes/column.php:498
30
  msgid "Medium"
31
  msgstr "Media"
32
 
33
+ #: ../classes/column.php:499
34
  msgid "Large"
35
  msgstr "Grande"
36
 
37
+ #: ../classes/column.php:500
38
  msgid "Full"
39
  msgstr "Dimensione reale"
40
 
41
+ #: ../classes/column.php:792
42
  msgid "Date Format"
43
  msgstr "Formato Data"
44
 
45
+ #: ../classes/column.php:793
46
  msgid "This will determine how the date will be displayed."
47
  msgstr "Questo determinerà il modo in cui verrà visualizzata la data."
48
 
49
+ #: ../classes/column.php:799
50
  msgid "Example:"
51
  msgstr "Esempio:"
52
 
53
+ #: ../classes/column.php:801
54
  #, php-format
55
  msgid ""
56
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
59
  "Lasciare vuoto per utilizzare il formato data di WordPress, o modifica <a "
60
  "href=\"%s\">qui il formato data</a>."
61
 
62
+ #: ../classes/column.php:802
63
  msgid "Documentation on date and time formatting."
64
  msgstr "Documentazione sulla formattazione \"data e ora\"."
65
 
66
+ #: ../classes/column.php:820
67
  msgid "Excerpt length"
68
  msgstr "Lunghezza riassunto"
69
 
70
+ #: ../classes/column.php:821
71
  msgid "Number of words"
72
  msgstr "Numero di parole"
73
 
74
+ #: ../classes/column.php:843
75
  msgid "Preview size"
76
  msgstr "Dimensione anteprima"
77
 
78
+ #: ../classes/column.php:860 ../classes/column.php:939
79
  msgid "Custom"
80
  msgstr "Personalizzata"
81
 
82
+ #: ../classes/column.php:863
83
  msgid "width"
84
  msgstr "larghezza"
85
 
86
+ #: ../classes/column.php:866
87
  msgid "height"
88
  msgstr "altezza"
89
 
90
+ #: ../classes/column.php:882
91
+ msgid "Before"
92
+ msgstr ""
93
+
94
+ #: ../classes/column.php:882
95
+ msgid "This text will appear before the custom field value."
96
+ msgstr ""
97
+
98
+ #: ../classes/column.php:888
99
+ msgid "After"
100
+ msgstr ""
101
+
102
+ #: ../classes/column.php:888
103
+ msgid "This text will appear after the custom field value."
104
+ msgstr ""
105
+
106
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
107
+ #: ../classes/settings.php:212
108
  msgid "Default"
109
  msgstr "Predefinito"
110
 
111
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
112
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
113
+ #: ../classes/column/user/actions.php:66
114
+ msgid "Edit"
115
+ msgstr ""
116
+
117
+ #: ../classes/column.php:963 ../classes/column.php:1024
118
+ #: ../classes/column/user/actions.php:74
119
  msgid "Remove"
120
  msgstr "Rimuovi"
121
 
122
+ #: ../classes/column.php:981
123
  msgid "Type"
124
  msgstr "TIpo"
125
 
126
+ #: ../classes/column.php:981
127
  msgid "Choose a column type."
128
  msgstr "Scegli un tipo di colonna."
129
 
130
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
131
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
132
+ #: ../classes/column/post/ID.php:12
133
+ msgid "ID"
134
+ msgstr ""
135
+
136
+ #: ../classes/column.php:991
137
  msgid "Label"
138
  msgstr "Etichetta"
139
 
140
+ #: ../classes/column.php:991
141
  msgid "This is the name which will appear as the column header."
142
  msgstr "Questo è il nome che apparirà come intestazione della colonna."
143
 
144
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
145
  msgid "Width"
146
  msgstr "Larghezza"
147
 
148
+ #: ../classes/column.php:1000 ../classes/column.php:1001
149
  msgid "default"
150
  msgstr "predefinito"
151
 
152
+ #: ../classes/column/comment/actions.php:14
153
+ #: ../classes/column/link/actions.php:14
154
+ #: ../classes/column/media/actions.php:14
155
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
156
+ msgid "Actions"
 
 
 
 
 
 
 
157
  msgstr ""
158
 
159
+ #: ../classes/column/comment/actions.php:73
160
+ #: ../classes/column/comment/actions.php:78
161
+ msgid "Unapprove"
162
+ msgstr ""
 
 
 
163
 
164
+ #: ../classes/column/comment/actions.php:75
165
+ #: ../classes/column/comment/actions.php:77
166
+ msgid "Approve"
 
 
167
  msgstr ""
168
 
169
+ #: ../classes/column/comment/actions.php:86
170
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
171
+ msgid "Restore"
172
  msgstr ""
173
 
174
+ #: ../classes/column/comment/actions.php:90
175
+ #: ../classes/column/post/actions.php:57
176
+ msgid "Delete Permanently"
177
+ msgstr ""
178
 
179
+ #: ../classes/column/comment/actions.php:97
180
+ #: ../classes/column/post/actions.php:49
181
+ msgid "Quick&nbsp;Edit"
182
+ msgstr ""
183
 
184
+ #: ../classes/column/comment/actions.php:98
185
+ msgid "Reply"
186
+ msgstr ""
187
 
188
+ #: ../classes/column/comment/agent.php:12
189
+ msgid "Agent"
 
 
190
  msgstr ""
 
 
191
 
192
+ #: ../classes/column/comment/approved.php:12
193
+ #: ../classes/column/post/comment-count.php:31
194
+ msgid "Approved"
195
+ msgstr ""
196
 
197
+ #: ../classes/column/comment/author-avatar.php:12
198
+ msgid "Avatar"
 
 
199
  msgstr ""
200
 
201
+ #: ../classes/column/comment/author-email.php:12
202
+ msgid "Author email"
203
+ msgstr ""
 
204
 
205
+ #: ../classes/column/comment/author-ip.php:12
206
+ msgid "Author IP"
207
+ msgstr ""
208
 
209
+ #: ../classes/column/comment/author-url.php:12
210
+ msgid "Author url"
 
 
211
  msgstr ""
212
 
213
+ #: ../classes/column/comment/author.php:12
214
+ msgid "Author"
 
 
215
  msgstr ""
216
 
217
+ #: ../classes/column/comment/date-gmt.php:12
218
+ msgid "Date GMT"
219
+ msgstr ""
 
220
 
221
+ #: ../classes/column/comment/date-gmt.php:25
222
+ #: ../classes/column/comment/date.php:25
223
+ #, php-format
224
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
225
  msgstr ""
226
 
227
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
228
+ #: ../classes/settings.php:217
229
+ msgid "Date"
230
+ msgstr "Data"
231
+
232
  #: ../classes/column/comment/excerpt.php:13
233
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
234
+ #: ../classes/settings.php:214
235
  msgid "Excerpt"
236
  msgstr "Riassunto"
237
 
238
+ #: ../classes/column/comment/reply-to.php:12
239
+ msgid "In Reply To"
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  msgstr ""
241
 
242
+ #: ../classes/column/comment/word-count.php:12
243
+ #: ../classes/column/post/word-count.php:12
244
+ msgid "Word count"
 
245
  msgstr ""
246
 
247
+ #: ../classes/column/custom-field.php:16
248
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
249
+ msgid "Custom Field"
250
+ msgstr "Campo personalizzato"
251
 
252
+ #: ../classes/column/custom-field.php:66
253
+ msgid "Checkmark (true/false)"
 
 
 
 
254
  msgstr ""
255
 
256
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
257
+ msgid "Color"
258
  msgstr ""
259
 
260
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
261
+ msgid "Counter"
262
  msgstr ""
263
 
264
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
265
+ #: ../classes/settings.php:213
266
+ msgid "Image"
267
+ msgstr "Immagine"
268
 
269
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
270
+ msgid "Media Library"
271
  msgstr ""
272
 
273
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
274
+ msgid "Multiple Values"
275
+ msgstr "Valori Multipli"
276
 
277
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
278
+ msgid "Numeric"
279
  msgstr ""
280
 
281
+ #: ../classes/column/custom-field.php:75
282
+ msgid "Post Title (Post ID's)"
283
  msgstr ""
284
 
285
+ #: ../classes/column/custom-field.php:76
286
+ msgid "Username (User ID's)"
287
  msgstr ""
288
 
289
+ #: ../classes/column/custom-field.php:377
290
+ msgid "Select your custom field."
291
  msgstr ""
292
 
293
+ #: ../classes/column/custom-field.php:387
294
+ msgid "No custom fields available."
295
  msgstr ""
296
 
297
+ #: ../classes/column/custom-field.php:394
298
+ msgid "Field Type"
 
 
299
  msgstr ""
300
 
301
+ #: ../classes/column/custom-field.php:394
302
+ msgid "This will determine how the value will be displayed."
303
  msgstr ""
304
 
305
+ #: ../classes/column/link/actions.php:46
306
+ #, php-format
 
 
 
 
 
 
 
 
 
 
 
307
  msgid ""
308
+ "You are about to delete this link '%s'\n"
309
+ " 'Cancel' to stop, 'OK' to delete."
 
310
  msgstr ""
311
 
312
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
313
+ msgid "Delete"
 
314
  msgstr ""
315
 
316
+ #: ../classes/column/link/description.php:12
317
+ #: ../classes/column/media/description.php:12
318
+ #: ../classes/column/user/description.php:14
319
+ msgid "Description"
320
  msgstr ""
321
 
322
+ #: ../classes/column/link/length.php:12
323
+ msgid "Length"
324
  msgstr ""
325
 
326
+ #: ../classes/column/link/notes.php:13
327
+ msgid "Notes"
328
  msgstr ""
329
 
330
+ #: ../classes/column/link/owner.php:12
331
+ msgid "Owner"
332
  msgstr ""
333
 
334
+ #: ../classes/column/link/rss.php:12
335
+ msgid "Rss"
336
  msgstr ""
337
 
338
+ #: ../classes/column/link/target.php:12
339
+ msgid "Target"
340
  msgstr ""
341
 
342
+ #: ../classes/column/media/alternate-text.php:12
343
+ msgid "Alt"
 
 
344
  msgstr ""
345
 
346
+ #: ../classes/column/media/available-sizes.php:14
347
+ msgid "Available Sizes"
348
  msgstr ""
349
 
350
+ #: ../classes/column/media/available-sizes.php:37
351
+ msgid "full size"
352
  msgstr ""
353
 
354
+ #: ../classes/column/media/caption.php:12
355
+ #: ../classes/column/media/exif-data.php:36
356
+ msgid "Caption"
357
  msgstr ""
358
 
359
+ #: ../classes/column/media/dimensions.php:12
360
+ msgid "Dimensions"
 
 
 
361
  msgstr ""
362
 
363
+ #: ../classes/column/media/exif-data.php:12
364
+ msgid "EXIF data"
365
  msgstr ""
366
 
367
+ #: ../classes/column/media/exif-data.php:33
368
+ msgid "Aperture"
369
  msgstr ""
370
 
371
+ #: ../classes/column/media/exif-data.php:34
372
+ msgid "Credit"
 
 
 
373
  msgstr ""
374
 
375
+ #: ../classes/column/media/exif-data.php:35
376
+ msgid "Camera"
377
  msgstr ""
378
 
379
+ #: ../classes/column/media/exif-data.php:37
380
+ msgid "Timestamp"
 
 
381
  msgstr ""
382
 
383
+ #: ../classes/column/media/exif-data.php:38
384
+ msgid "Copyright EXIF"
385
+ msgstr ""
 
 
 
 
 
 
 
 
386
 
387
+ #: ../classes/column/media/exif-data.php:39
388
+ msgid "Focal Length"
389
+ msgstr ""
390
 
391
+ #: ../classes/column/media/exif-data.php:40
392
+ msgid "ISO"
 
 
393
  msgstr ""
394
 
395
+ #: ../classes/column/media/exif-data.php:41
396
+ msgid "Shutter Speed"
 
397
  msgstr ""
398
 
399
+ #: ../classes/column/media/exif-data.php:42
400
+ msgid "Title"
401
  msgstr ""
402
 
403
+ #: ../classes/column/media/file-name.php:12
404
+ msgid "File name"
405
  msgstr ""
406
 
407
+ #: ../classes/column/media/file-size.php:12
408
+ msgid "File size"
409
  msgstr ""
410
 
411
+ #: ../classes/column/media/full-path.php:12
412
+ msgid "Full path"
413
  msgstr ""
414
 
415
+ #: ../classes/column/media/height.php:12
416
+ msgid "Height"
417
  msgstr ""
418
 
419
+ #: ../classes/column/media/mime-type.php:12
420
+ msgid "Mime type"
421
  msgstr ""
422
 
423
+ #: ../classes/column/post/actions.php:48
424
+ msgid "Edit this item"
425
  msgstr ""
426
 
427
+ #: ../classes/column/post/actions.php:49
428
+ msgid "Edit this item inline"
429
  msgstr ""
430
 
431
+ #: ../classes/column/post/actions.php:53
432
+ msgid "Restore this item from the Trash"
433
  msgstr ""
434
 
435
+ #: ../classes/column/post/actions.php:55
436
+ msgid "Move this item to the Trash"
437
  msgstr ""
438
 
439
+ #: ../classes/column/post/actions.php:55
440
+ #: ../classes/column/post/comment-count.php:34
441
+ #: ../classes/column/post/status.php:38
442
+ msgid "Trash"
443
  msgstr ""
444
 
445
+ #: ../classes/column/post/actions.php:57
446
+ msgid "Delete this item permanently"
447
  msgstr ""
448
 
449
+ #: ../classes/column/post/actions.php:62
450
  #, php-format
451
+ msgid "Preview &#8220;%s&#8221;"
 
452
  msgstr ""
453
 
454
+ #: ../classes/column/post/actions.php:62
455
+ msgid "Preview"
456
  msgstr ""
457
 
458
+ #: ../classes/column/post/actions.php:64
459
+ #, php-format
460
+ msgid "View &#8220;%s&#8221;"
461
  msgstr ""
462
 
463
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
464
+ msgid "View"
465
  msgstr ""
466
 
467
+ #: ../classes/column/post/attachment-count.php:12
468
+ msgid "No. of Attachments"
469
  msgstr ""
470
 
471
+ #: ../classes/column/post/attachment.php:12
472
+ msgid "Attachment"
 
 
 
473
  msgstr ""
474
 
475
+ #: ../classes/column/post/author-name.php:12
476
+ msgid "Display Author As"
 
477
  msgstr ""
478
 
479
+ #: ../classes/column/post/author-name.php:34
480
+ msgid "Display Name"
481
  msgstr ""
482
 
483
+ #: ../classes/column/post/author-name.php:35
484
+ msgid "First Name"
485
  msgstr ""
486
 
487
+ #: ../classes/column/post/author-name.php:36
488
+ msgid "Last Name"
489
  msgstr ""
490
 
491
+ #: ../classes/column/post/author-name.php:37
492
+ #: ../classes/column/user/nickname.php:14
493
+ msgid "Nickname"
494
  msgstr ""
495
 
496
+ #: ../classes/column/post/author-name.php:38
497
+ msgid "User Login"
498
  msgstr ""
499
 
500
+ #: ../classes/column/post/author-name.php:39
501
+ msgid "User Email"
 
502
  msgstr ""
503
 
504
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
505
+ msgid "User ID"
506
  msgstr ""
507
 
508
+ #: ../classes/column/post/author-name.php:41
509
+ msgid "First and Last Name"
510
  msgstr ""
511
 
512
+ #: ../classes/column/post/author-name.php:118
513
+ msgid "This is the format of the author name."
 
 
 
514
  msgstr ""
515
 
516
+ #: ../classes/column/post/before-moretag.php:14
517
+ msgid "Before More Tag"
518
  msgstr ""
519
 
520
+ #: ../classes/column/post/comment-count.php:14
521
+ msgid "Comment count"
522
  msgstr ""
523
 
524
+ #: ../classes/column/post/comment-count.php:30
525
+ msgid "Total"
526
  msgstr ""
527
 
528
+ #: ../classes/column/post/comment-count.php:32
529
+ msgid "Pending"
530
  msgstr ""
531
 
532
+ #: ../classes/column/post/comment-count.php:33
533
+ msgid "Spam"
534
  msgstr ""
535
 
536
+ #: ../classes/column/post/comment-count.php:95
537
+ #: ../classes/column/post/comment-status.php:14
538
+ msgid "Comment status"
539
  msgstr ""
540
 
541
+ #: ../classes/column/post/comment-count.php:95
542
+ msgid "Select which comment status you like to display."
543
  msgstr ""
544
 
545
+ #: ../classes/column/post/featured-image.php:14
546
+ msgid "Featured Image"
547
  msgstr ""
548
 
549
+ #: ../classes/column/post/formats.php:14
550
+ msgid "Post Format"
551
  msgstr ""
552
 
553
+ #: ../classes/column/post/modified.php:14
554
+ msgid "Last modified"
555
  msgstr ""
556
 
557
+ #: ../classes/column/post/order.php:14
558
+ msgid "Page Order"
 
 
559
  msgstr ""
560
 
561
+ #: ../classes/column/post/page-template.php:12
562
+ msgid "Page Template"
563
  msgstr ""
564
 
565
+ #: ../classes/column/post/parent.php:12
566
+ msgid "Parent"
567
  msgstr ""
568
 
569
+ #: ../classes/column/post/ping-status.php:14
570
+ msgid "Ping status"
 
571
  msgstr ""
572
 
573
+ #: ../classes/column/post/roles.php:14
574
+ msgid "Roles"
 
575
  msgstr ""
576
 
577
+ #: ../classes/column/post/slug.php:12
578
+ msgid "Slug"
579
  msgstr ""
580
 
581
+ #: ../classes/column/post/status.php:14
582
+ msgid "Status"
583
  msgstr ""
584
 
585
+ #: ../classes/column/post/status.php:32
586
+ msgid "Published"
587
  msgstr ""
588
 
589
+ #: ../classes/column/post/status.php:33
590
+ msgid "Draft"
591
  msgstr ""
592
 
593
+ #: ../classes/column/post/status.php:34
594
+ msgid "Scheduled"
595
  msgstr ""
596
 
597
+ #: ../classes/column/post/status.php:35
598
+ msgid "Private"
599
  msgstr ""
600
 
601
+ #: ../classes/column/post/status.php:36
602
+ msgid "Pending Review"
603
  msgstr ""
604
 
605
+ #: ../classes/column/post/status.php:37
606
+ msgid "Auto Draft"
607
  msgstr ""
608
 
609
+ #: ../classes/column/post/sticky.php:14
610
+ msgid "Sticky"
611
  msgstr ""
612
 
613
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
614
+ msgid "Taxonomy"
615
  msgstr ""
616
 
617
+ #: ../classes/column/user/comment-count.php:14
618
+ msgid "Comment Count"
619
  msgstr ""
620
 
621
+ #: ../classes/column/user/first-name.php:14
622
+ msgid "First name"
623
  msgstr ""
624
 
625
+ #: ../classes/column/user/last-name.php:14
626
+ msgid "Last name"
627
  msgstr ""
628
 
629
+ #: ../classes/column/user/post-count.php:14
630
+ msgid "Post Count"
 
 
631
  msgstr ""
632
 
633
+ #: ../classes/column/user/post-count.php:99
634
+ msgid "Post Type"
635
  msgstr ""
636
 
637
+ #: ../classes/column/user/registered.php:14
638
+ msgid "Registered"
639
  msgstr ""
640
 
641
+ #: ../classes/column/user/url.php:14
642
+ msgid "Url"
643
  msgstr ""
644
 
645
+ #: ../classes/settings.php:64
646
+ msgid "Admin Columns Settings"
647
+ msgstr "Impostazioni Admin Columns"
648
 
649
+ #: ../classes/settings.php:64 ../classes/settings.php:635
650
+ #: ../classes/upgrade.php:89
651
+ msgid "Admin Columns"
652
+ msgstr "Admin Columns"
653
 
654
+ #: ../classes/settings.php:116
655
+ #, php-format
656
+ msgid "%s column is already present and can not be duplicated."
657
  msgstr ""
658
 
659
+ #: ../classes/settings.php:172
660
+ msgid "Default settings succesfully restored."
661
+ msgstr "Le impostazioni predefinite sono state ripristinate."
662
 
663
+ #: ../classes/settings.php:190 ../classes/settings.php:447
664
+ msgid "Overview"
665
+ msgstr "Panoramica"
666
 
667
+ #: ../classes/settings.php:193
668
+ msgid ""
669
+ "This plugin is for adding and removing additional columns to the "
670
+ "administration screens for post(types), pages, media library, comments, "
671
+ "links and users. Change the column's label and reorder them."
672
  msgstr ""
673
 
674
+ #: ../classes/settings.php:196
675
+ msgid "Basics"
676
  msgstr ""
677
 
678
+ #: ../classes/settings.php:198
679
+ msgid "Change order"
680
+ msgstr "Cambia ordine"
681
 
682
+ #: ../classes/settings.php:199
683
+ msgid ""
684
+ "By dragging the columns you can change the order which they will appear in."
685
+ msgstr "Trascinando le colonne puoi modificare l'ordine in cui appariranno."
686
 
687
+ #: ../classes/settings.php:200
688
+ msgid "Change label"
689
+ msgstr "Cambia etichetta"
 
 
 
690
 
691
+ #: ../classes/settings.php:201
692
+ msgid ""
693
+ "By clicking on the triangle you will see the column options. Here you can "
694
+ "change each label of the columns heading."
695
  msgstr ""
696
+ "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi "
697
+ "cambiare l'etichetta di ogni intestazione di colonna."
698
 
699
+ #: ../classes/settings.php:202
700
+ msgid "Change column width"
701
+ msgstr "Cambia la larghezza della colonna"
 
702
 
703
+ #: ../classes/settings.php:203
704
+ msgid ""
705
+ "By clicking on the triangle you will see the column options. By using the "
706
+ "draggable slider you can set the width of the columns in percentages."
707
  msgstr ""
708
 
709
+ #: ../classes/settings.php:209
710
+ msgid "'Custom Field' column"
711
+ msgstr "Colonna 'Campo Personalizzato'"
712
+
713
+ #: ../classes/settings.php:210
714
+ msgid ""
715
+ "The custom field colum uses the custom fields from posts and users. There "
716
+ "are 10 types which you can set."
717
  msgstr ""
718
 
719
+ #: ../classes/settings.php:212
720
+ msgid ""
721
+ "Value: Can be either a string or array. Arrays will be flattened and values "
722
+ "are seperated by a ',' comma."
723
  msgstr ""
724
 
725
+ #: ../classes/settings.php:213
726
+ msgid ""
727
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
728
+ "comma )."
729
  msgstr ""
730
 
731
+ #: ../classes/settings.php:214
732
+ msgid "Value: This will show the first 20 words of the Post content."
733
+ msgstr "Valore: Mostrerà le prime 20 parole del contenuto dell'Articolo."
734
+
735
+ #: ../classes/settings.php:215
736
+ msgid ""
737
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
738
  msgstr ""
739
 
740
+ #: ../classes/settings.php:216
741
+ msgid ""
742
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
743
+ "for sorting, so you can sort your posts on numeric (custom field) values."
744
  msgstr ""
745
 
746
+ #: ../classes/settings.php:217
747
+ #, php-format
748
+ msgid ""
749
+ "Value: Can be unix time stamp or a date format as described in the <a "
750
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
751
+ "href='%s'>general settings</a> page."
752
  msgstr ""
753
 
754
+ #: ../classes/settings.php:218
755
+ msgid "Post Titles"
756
  msgstr ""
757
 
758
+ #: ../classes/settings.php:218
759
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
760
  msgstr ""
761
 
762
+ #: ../classes/settings.php:219
763
+ msgid "Usernames"
764
+ msgstr "Nomi utente"
765
+
766
+ #: ../classes/settings.php:219
767
+ msgid "Value: can be one or more User ID's (seperated by ',')."
768
  msgstr ""
769
 
770
+ #: ../classes/settings.php:220
771
+ msgid "Checkmark"
772
  msgstr ""
773
 
774
+ #: ../classes/settings.php:220
775
+ msgid "Value: should be a 1 (one) or 0 (zero)."
776
  msgstr ""
777
 
778
+ #: ../classes/settings.php:221
779
+ msgid "Value: hex value color, such as #808080."
 
 
780
  msgstr ""
781
 
782
+ #: ../classes/settings.php:222
783
+ msgid ""
784
+ "Value: Can be either a string or array. This will display a count of the "
785
+ "number of times the meta key is used by the item."
786
  msgstr ""
787
 
788
+ #: ../classes/settings.php:367
789
+ msgid "Welcome to Admin Columns"
790
  msgstr ""
791
 
792
+ #: ../classes/settings.php:370
793
+ msgid "Thank you for updating to the latest version!"
 
794
  msgstr ""
795
 
796
+ #: ../classes/settings.php:371
 
797
  msgid ""
798
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
799
+ "like it."
800
  msgstr ""
801
 
802
+ #: ../classes/settings.php:376
803
+ msgid "What’s New"
804
  msgstr ""
805
 
806
+ #: ../classes/settings.php:377
807
+ msgid "Changelog"
808
+ msgstr "Changelog"
809
+
810
+ #: ../classes/settings.php:379
811
+ msgid "Download Addons"
812
+ msgstr "Scarica i componenti aggiuntivi"
813
+
814
+ #: ../classes/settings.php:385
815
+ msgid "Addons"
816
+ msgstr "Componenti aggiuntivi"
817
+
818
+ #: ../classes/settings.php:387
819
+ msgid ""
820
+ "Addons are now activated by downloading and installing individual plugins. "
821
+ "Although these plugins will not be hosted on the wordpress.org repository, "
822
+ "each Add-on will continue to receive updates in the usual way."
823
  msgstr ""
824
 
825
+ #: ../classes/settings.php:390
826
+ msgid ""
827
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
828
  msgstr ""
829
 
830
+ #: ../classes/settings.php:393
831
+ msgid "Addons are seperate plugins which need to be downloaded."
832
  msgstr ""
833
 
834
+ #: ../classes/settings.php:393
835
+ msgid "Download your Addons"
836
  msgstr ""
837
 
838
+ #: ../classes/settings.php:399
839
+ msgid "This website does not use add-ons"
840
  msgstr ""
841
 
842
+ #: ../classes/settings.php:399
843
+ msgid "See our website for the Pro-addon."
844
  msgstr ""
845
 
846
+ #: ../classes/settings.php:406
847
+ msgid "Important"
848
  msgstr ""
849
 
850
+ #: ../classes/settings.php:408
851
+ msgid "Database Changes"
852
  msgstr ""
853
 
854
+ #: ../classes/settings.php:409
855
+ msgid ""
856
+ "The database has been changed between versions 1 and 2. But we made sure you "
857
+ "can still roll back to version 1x without any issues."
858
  msgstr ""
859
 
860
+ #: ../classes/settings.php:412
861
+ msgid "Make sure you backup your database and then click"
 
862
  msgstr ""
863
 
864
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
865
+ msgid "Upgrade Database"
866
  msgstr ""
867
 
868
+ #: ../classes/settings.php:415
869
+ msgid "Potential Issues"
870
  msgstr ""
871
 
872
+ #: ../classes/settings.php:416
873
+ msgid ""
874
+ "Do to the sizable refactoring the code, surounding Addons and action/"
875
+ "filters, your website may not operate correctly. It is important that you "
876
+ "read the full"
877
  msgstr ""
878
 
879
+ #: ../classes/settings.php:416
880
+ msgid "Migrating from v1 to v2"
881
  msgstr ""
882
 
883
+ #: ../classes/settings.php:416
884
+ msgid "guide to view the full list of changes."
885
  msgstr ""
886
 
887
+ #: ../classes/settings.php:416
888
+ #, php-format
889
+ msgid ""
890
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
891
+ "can fix it in the next release."
892
  msgstr ""
893
 
894
+ #: ../classes/settings.php:419
895
+ msgid "Important!"
896
  msgstr ""
897
 
898
+ #: ../classes/settings.php:419
899
+ msgid ""
900
+ "If you updated the Admin Columns plugin without prior knowledge of such "
901
+ "changes, Please roll back to the latest"
902
  msgstr ""
903
 
904
+ #: ../classes/settings.php:419
905
+ msgid "version 1"
906
+ msgstr "versione 1"
907
+
908
+ #: ../classes/settings.php:419
909
+ msgid "of this plugin."
910
+ msgstr "di questo plugin."
911
+
912
+ #: ../classes/settings.php:425
913
+ msgid "Changelog for"
914
+ msgstr "Changelog per"
915
+
916
+ #: ../classes/settings.php:440
917
+ msgid "Learn more"
918
+ msgstr "Leggi altro"
919
+
920
+ #: ../classes/settings.php:449
921
+ msgid ""
922
+ "New to v2, all Addons act as separate plugins which need to be individually "
923
+ "downloaded, installed and updated."
924
  msgstr ""
925
 
926
+ #: ../classes/settings.php:450
927
+ msgid ""
928
+ "This page will assist you in downloading and installing each available Addon."
929
  msgstr ""
930
 
931
+ #: ../classes/settings.php:451
932
+ msgid "Available Addons"
933
  msgstr ""
934
 
935
+ #: ../classes/settings.php:456
936
+ msgid "Name"
937
  msgstr ""
938
 
939
+ #: ../classes/settings.php:457 ../classes/settings.php:465
940
+ msgid "Download"
941
  msgstr ""
942
 
943
+ #: ../classes/settings.php:463
944
+ msgid "Pro Add-on (includes Sortorder add-on)"
945
  msgstr ""
946
 
947
+ #: ../classes/settings.php:473
948
+ msgid "Installation"
949
  msgstr ""
950
 
951
+ #: ../classes/settings.php:475
952
+ msgid "For each Add-on available, please perform the following:"
953
  msgstr ""
954
 
955
+ #: ../classes/settings.php:477
956
+ msgid "Download the Addon plugin (.zip file) to your desktop"
957
  msgstr ""
958
 
959
+ #: ../classes/settings.php:478
960
+ msgid "Navigate to"
961
  msgstr ""
962
 
963
+ #: ../classes/settings.php:478
964
+ msgid "Plugins > Add New > Upload"
965
  msgstr ""
966
 
967
+ #: ../classes/settings.php:479
968
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
969
  msgstr ""
970
 
971
+ #: ../classes/settings.php:480
972
+ msgid ""
973
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
974
+ "link"
975
  msgstr ""
976
 
977
+ #: ../classes/settings.php:481
978
+ msgid "The Add-on is now installed and activated!"
979
  msgstr ""
980
 
981
+ #: ../classes/settings.php:482
982
  #, php-format
983
+ msgid ""
984
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
985
  msgstr ""
986
 
987
+ #: ../classes/settings.php:492
988
+ msgid "Start using Admin Columns"
989
  msgstr ""
990
 
991
+ #: ../classes/settings.php:539
992
+ msgid "General Settings"
 
993
  msgstr ""
994
 
995
+ #: ../classes/settings.php:540
996
+ msgid "Customize your Admin Columns settings."
997
  msgstr ""
998
 
999
+ #: ../classes/settings.php:553
1000
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1001
  msgstr ""
1002
 
1003
+ #: ../classes/settings.php:559
1004
+ msgid ""
1005
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1006
  msgstr ""
1007
 
1008
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1009
+ msgid "Save"
1010
  msgstr ""
1011
 
1012
+ #: ../classes/settings.php:606
1013
+ msgid "Restore Settings"
1014
  msgstr ""
1015
 
1016
+ #: ../classes/settings.php:607
1017
+ msgid "This will delete all column settings and restore the default settings."
1018
  msgstr ""
1019
 
1020
+ #: ../classes/settings.php:613
1021
+ msgid "Restore default settings"
 
1022
  msgstr ""
1023
 
1024
+ #: ../classes/settings.php:613
1025
+ msgid ""
1026
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1027
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1028
  msgstr ""
1029
 
1030
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1031
+ msgid "Settings"
1032
+ msgstr "Impostazioni"
1033
 
1034
+ #: ../classes/settings.php:665
1035
+ msgid "Posttypes"
1036
  msgstr ""
1037
 
1038
+ #: ../classes/settings.php:666
1039
+ msgid "Others"
1040
  msgstr ""
1041
 
1042
+ #: ../classes/settings.php:667
1043
+ msgid "Taxonomies"
1044
  msgstr ""
1045
 
1046
+ #: ../classes/settings.php:688
1047
+ msgid "Store settings"
1048
  msgstr ""
1049
 
1050
+ #: ../classes/settings.php:692
1051
+ msgid "Update"
1052
  msgstr ""
1053
 
1054
+ #: ../classes/settings.php:696
1055
+ #, php-format
1056
+ msgid ""
1057
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1058
+ "\\' to delete, \\'Cancel\\' to stop"
1059
  msgstr ""
1060
 
1061
+ #: ../classes/settings.php:697
1062
+ msgid "columns"
1063
  msgstr ""
1064
 
1065
+ #: ../classes/settings.php:710
1066
+ msgid "Get the Pro Add-on"
1067
  msgstr ""
1068
 
1069
+ #: ../classes/settings.php:714
1070
+ msgid "Add Sorting"
 
1071
  msgstr ""
1072
 
1073
+ #: ../classes/settings.php:715
1074
+ msgid "Add Filtering"
1075
  msgstr ""
1076
 
1077
+ #: ../classes/settings.php:716
1078
+ msgid "Add Import/Export"
1079
  msgstr ""
1080
 
1081
+ #: ../classes/settings.php:719
1082
+ #, php-format
1083
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1084
  msgstr ""
1085
 
1086
+ #: ../classes/settings.php:750
1087
+ msgid "Support"
1088
  msgstr ""
1089
 
1090
+ #: ../classes/settings.php:753
1091
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1092
  msgstr ""
1093
 
1094
+ #: ../classes/settings.php:756
1095
+ #, php-format
1096
+ msgid ""
1097
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1098
+ "href='%s'>visit the Admin Columns website</a>"
1099
  msgstr ""
1100
 
1101
+ #: ../classes/settings.php:784
1102
+ msgid "Drag and drop to reorder"
1103
  msgstr ""
1104
 
1105
+ #: ../classes/settings.php:787
1106
+ msgid "Add Column"
1107
  msgstr ""
1108
 
1109
+ #: ../classes/storage_model.php:222
1110
+ msgid "settings succesfully restored."
1111
  msgstr ""
1112
 
1113
+ #: ../classes/storage_model.php:239
1114
+ msgid "No columns settings available."
1115
  msgstr ""
1116
 
1117
+ #: ../classes/storage_model.php:262
1118
+ #, php-format
1119
+ msgid "You are trying to store the same settings for %s."
1120
  msgstr ""
1121
 
1122
+ #: ../classes/storage_model.php:266
1123
+ #, php-format
1124
+ msgid "Settings for %s updated succesfully."
1125
  msgstr ""
1126
 
1127
+ #: ../classes/storage_model/comment.php:13
1128
+ msgid "Comments"
1129
  msgstr ""
1130
 
1131
+ #: ../classes/storage_model/link.php:13
1132
+ msgid "Links"
1133
  msgstr ""
1134
 
1135
+ #: ../classes/storage_model/user.php:13
1136
+ msgid "Users"
1137
  msgstr ""
1138
 
1139
+ #: ../classes/upgrade.php:45
1140
+ msgid "Upgrade"
1141
  msgstr ""
1142
 
1143
+ #: ../classes/upgrade.php:90
1144
+ msgid "requires a database upgrade"
1145
  msgstr ""
1146
 
1147
+ #: ../classes/upgrade.php:93
1148
+ msgid "why?"
 
1149
  msgstr ""
1150
 
1151
+ #: ../classes/upgrade.php:94
1152
+ msgid "Please"
1153
  msgstr ""
1154
 
1155
+ #: ../classes/upgrade.php:95
1156
+ msgid "backup your database"
1157
  msgstr ""
1158
 
1159
+ #: ../classes/upgrade.php:96
1160
+ msgid "then click"
1161
  msgstr ""
1162
 
1163
+ #: ../classes/upgrade.php:304
1164
+ msgid "Migrating Column Settings"
1165
  msgstr ""
1166
 
1167
+ #: ../classes/upgrade.php:340
1168
+ msgid "No Upgrade Required"
1169
  msgstr ""
1170
 
1171
+ #: ../classes/upgrade.php:341
1172
+ msgid "Return to welcome screen."
1173
  msgstr ""
1174
 
1175
+ #: ../classes/upgrade.php:359
1176
+ msgid "Upgrade Complete!"
1177
  msgstr ""
1178
 
1179
+ #: ../classes/upgrade.php:359
1180
+ msgid "Return to settings."
1181
  msgstr ""
1182
 
1183
+ #: ../classes/upgrade.php:360
1184
+ msgid "Error"
1185
  msgstr ""
1186
 
1187
+ #: ../classes/upgrade.php:361
1188
+ msgid ""
1189
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1190
+ "on the support forum."
1191
  msgstr ""
1192
+
1193
+ #: ../codepress-admin-columns.php:447
1194
+ msgid "Edit columns"
1195
+ msgstr "Modifica colonne"
languages/cpac-nl_NL.mo CHANGED
Binary file
languages/cpac-nl_NL.po CHANGED
@@ -5,60 +5,52 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/nl_NL/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: nl_NL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
- msgid "Settings"
27
- msgstr "Instellingen"
28
-
29
- #: ../codepress-admin-columns.php:350
30
- msgid "Edit columns"
31
- msgstr "Wijzig kolommen"
32
-
33
- #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
  msgstr "Thumbnail"
36
 
37
- #: ../classes/column.php:480
38
  msgid "Medium"
39
  msgstr "Gemiddeld"
40
 
41
- #: ../classes/column.php:481
42
  msgid "Large"
43
  msgstr "Groot"
44
 
45
- #: ../classes/column.php:482
46
  msgid "Full"
47
  msgstr "Volledig"
48
 
49
- #: ../classes/column.php:774
50
  msgid "Date Format"
51
  msgstr "Datumnotatie"
52
 
53
- #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
55
  msgstr "Dit bepaald hoe de datum wordt weergegeven."
56
 
57
- #: ../classes/column.php:781
58
  msgid "Example:"
59
  msgstr "Voorbeeld:"
60
 
61
- #: ../classes/column.php:783
62
  #, php-format
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -67,1115 +59,1100 @@ msgstr ""
67
  "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard "
68
  "datumformaat </a>."
69
 
70
- #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
72
  msgstr "Documentatie over datum en tijd opmaak."
73
 
74
- #: ../classes/column.php:801
75
  msgid "Excerpt length"
76
  msgstr "Samenvatting lengte"
77
 
78
- #: ../classes/column.php:802
79
  msgid "Number of words"
80
  msgstr "Aantal woorden"
81
 
82
- #: ../classes/column.php:824
83
  msgid "Preview size"
84
  msgstr "Voorbeeldformaat"
85
 
86
- #: ../classes/column.php:841 ../classes/column.php:897
87
  msgid "Custom"
88
  msgstr "Aangepast"
89
 
90
- #: ../classes/column.php:844
91
  msgid "width"
92
  msgstr "breedte"
93
 
94
- #: ../classes/column.php:847
95
  msgid "height"
96
  msgstr "hoogte"
97
 
98
- #: ../classes/column.php:898 ../classes/settings.php:224
99
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Default"
101
  msgstr "Standaard"
102
 
103
- #: ../classes/column.php:923 ../classes/column.php:984
104
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
105
  msgid "Remove"
106
  msgstr "Verwijderen"
107
 
108
- #: ../classes/column.php:942
109
  msgid "Type"
110
  msgstr "Type"
111
 
112
- #: ../classes/column.php:942
113
  msgid "Choose a column type."
114
  msgstr "Kies een kolom type."
115
 
116
- #: ../classes/column.php:952
 
 
 
 
 
 
117
  msgid "Label"
118
  msgstr "Label"
119
 
120
- #: ../classes/column.php:952
121
  msgid "This is the name which will appear as the column header."
122
  msgstr "Deze naam zal verschijnen als kolom kop."
123
 
124
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
125
  msgid "Width"
126
  msgstr "Breedte"
127
 
128
- #: ../classes/column.php:961 ../classes/column.php:962
129
  msgid "default"
130
  msgstr "standaard"
131
 
132
- #: ../classes/settings.php:68
133
- msgid "Admin Columns Settings"
134
- msgstr "Admin Columns Instellingen"
 
 
 
135
 
136
- #: ../classes/settings.php:68 ../classes/settings.php:534
137
- #: ../classes/upgrade.php:89
138
- msgid "Admin Columns"
139
- msgstr "Admin Columns"
140
 
141
- #: ../classes/settings.php:129
142
- #, php-format
143
- msgid "%s column is already present and can not be duplicated."
144
- msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
145
 
146
- #: ../classes/settings.php:184
147
- msgid "Default settings succesfully restored."
148
- msgstr "Standaard instellingen succesvol hersteld."
 
149
 
150
- #: ../classes/settings.php:202 ../classes/settings.php:457
151
- msgid "Overview"
152
- msgstr "Overzicht"
 
153
 
154
- #: ../classes/settings.php:205
155
- msgid ""
156
- "This plugin is for adding and removing additional columns to the "
157
- "administration screens for post(types), pages, media library, comments, "
158
- "links and users. Change the column's label and reorder them."
159
- msgstr ""
160
 
161
- #: ../classes/settings.php:208
162
- msgid "Basics"
163
- msgstr "Basisinfo"
164
 
165
- #: ../classes/settings.php:210
166
- msgid "Change order"
167
- msgstr "Verander volgorde"
168
 
169
- #: ../classes/settings.php:211
170
- msgid ""
171
- "By dragging the columns you can change the order which they will appear in."
172
- msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
173
 
174
- #: ../classes/settings.php:212
175
- msgid "Change label"
176
- msgstr "Wijzig label"
177
 
178
- #: ../classes/settings.php:213
179
- msgid ""
180
- "By clicking on the triangle you will see the column options. Here you can "
181
- "change each label of the columns heading."
182
- msgstr ""
183
- "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de "
184
- "kolom label aanpassen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
 
 
186
  #: ../classes/settings.php:214
187
- msgid "Change column width"
188
- msgstr "Verander kolom breedte"
189
 
190
- #: ../classes/settings.php:215
191
- msgid ""
192
- "By clicking on the triangle you will see the column options. By using the "
193
- "draggable slider you can set the width of the columns in percentages."
194
- msgstr ""
 
 
 
195
 
196
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
197
- #: ../classes/column/custom-field.php:324
198
  msgid "Custom Field"
199
  msgstr "Custom veld"
200
 
201
- #: ../classes/settings.php:221
202
- msgid "'Custom Field' column"
203
- msgstr "'Custom veld' kolom"
204
 
205
- #: ../classes/settings.php:222
206
- msgid ""
207
- "The custom field colum uses the custom fields from posts and users. There "
208
- "are 10 types which you can set."
209
- msgstr ""
210
- "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. "
211
- "Er zijn 10 typen welke je kan gebruiken."
212
 
213
- #: ../classes/settings.php:224
214
- msgid ""
215
- "Value: Can be either a string or array. Arrays will be flattened and values "
216
- "are seperated by a ',' comma."
217
  msgstr ""
218
- "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de "
219
- "waarden gescheiden door een ',' komma."
220
 
221
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
222
- #: ../classes/column/link/image.php:12
223
  msgid "Image"
224
  msgstr "Afbeelding"
225
 
226
- #: ../classes/settings.php:225
227
- msgid ""
228
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
229
- "comma )."
230
- msgstr ""
231
- "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' "
232
- "komma )."
233
-
234
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
235
- #: ../classes/column/comment/excerpt.php:13
236
- #: ../classes/column/post/excerpt.php:13
237
- msgid "Excerpt"
238
- msgstr "Samenvatting"
239
-
240
- #: ../classes/settings.php:226
241
- msgid "Value: This will show the first 20 words of the Post content."
242
- msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
243
 
244
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
245
  msgid "Multiple Values"
246
  msgstr "Meerdere waarden"
247
 
248
- #: ../classes/settings.php:227
249
- msgid ""
250
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
251
- msgstr ""
252
-
253
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
254
  msgid "Numeric"
255
  msgstr "Numerieke"
256
 
257
- #: ../classes/settings.php:228
258
- msgid ""
259
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
260
- "for sorting, so you can sort your posts on numeric (custom field) values."
261
- msgstr ""
262
 
263
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
264
- #: ../classes/column/comment/date.php:12
265
- msgid "Date"
266
- msgstr "Datum"
 
 
 
 
 
 
 
 
 
 
 
267
 
268
- #: ../classes/settings.php:229
 
 
 
 
269
  #, php-format
270
  msgid ""
271
- "Value: Can be unix time stamp or a date format as described in the <a "
272
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
273
- "href='%s'>general settings</a> page."
274
  msgstr ""
275
 
276
- #: ../classes/settings.php:230
277
- msgid "Post Titles"
278
- msgstr "Post titels"
279
-
280
- #: ../classes/settings.php:230
281
- msgid "Value: can be one or more Post ID's (seperated by ',')."
282
- msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
283
 
284
- #: ../classes/settings.php:231
285
- msgid "Usernames"
286
- msgstr "Gebruikersnamen"
 
 
287
 
288
- #: ../classes/settings.php:231
289
- msgid "Value: can be one or more User ID's (seperated by ',')."
290
- msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
291
 
292
- #: ../classes/settings.php:232
293
- msgid "Checkmark"
294
- msgstr "Checkmark"
295
 
296
- #: ../classes/settings.php:232
297
- msgid "Value: should be a 1 (one) or 0 (zero)."
298
- msgstr "Waarde: moet 1 of 0 zijn."
299
 
300
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
301
- msgid "Color"
302
- msgstr "Kleur"
303
 
304
- #: ../classes/settings.php:233
305
- msgid "Value: hex value color, such as #808080."
306
- msgstr "Waarde: hex waarde kleur, vb: #808080"
307
 
308
- #: ../classes/settings.php:377
309
- msgid "Welcome to Admin Columns"
310
- msgstr "Welkom bij Admin Columns"
311
 
312
- #: ../classes/settings.php:380
313
- msgid "Thank you for updating to the latest version!"
314
- msgstr "Bedankt voor het updaten naar de laatste versie!"
315
 
316
- #: ../classes/settings.php:381
317
- msgid ""
318
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
319
- "like it."
320
- msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
321
 
322
- #: ../classes/settings.php:386
323
- msgid "What’s New"
324
- msgstr "What is nieuw"
 
325
 
326
- #: ../classes/settings.php:387
327
- msgid "Changelog"
328
- msgstr "Changelog"
329
 
330
- #: ../classes/settings.php:389
331
- msgid "Download Addons"
332
- msgstr "Download Addons"
333
 
334
- #: ../classes/settings.php:395
335
- msgid "Addons"
336
- msgstr "Addons"
337
 
338
- #: ../classes/settings.php:397
339
- msgid ""
340
- "Addons are now activated by downloading and installing individual plugins. "
341
- "Although these plugins will not be hosted on the wordpress.org repository, "
342
- "each Add-on will continue to receive updates in the usual way."
343
- msgstr ""
344
- "Addons worden vanaf nu geactiveer door ze te downloaden en te installeren "
345
- "als individuele plugins. Deze plugins zullen niet worden gehost op wordpress."
346
- "org, maar ze blijven wel automatische updates ontvangen zoals gewoonlijk."
347
 
348
- #: ../classes/settings.php:400
349
- msgid ""
350
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
351
- msgstr ""
352
 
353
- #: ../classes/settings.php:403
354
- msgid "Addons are seperate plugins which need to be downloaded."
355
- msgstr ""
356
 
357
- #: ../classes/settings.php:403
358
- msgid "Download your Addons"
359
- msgstr "Download je Addons"
360
 
361
- #: ../classes/settings.php:409
362
- msgid "This website does not use add-ons"
363
- msgstr ""
 
364
 
365
- #: ../classes/settings.php:409
366
- msgid "See our website for the Pro-addon."
367
  msgstr ""
368
 
369
- #: ../classes/settings.php:416
370
- msgid "Important"
371
- msgstr "Belangrijk"
372
-
373
- #: ../classes/settings.php:418
374
- msgid "Database Changes"
375
- msgstr "Database Aanpassingen"
376
-
377
- #: ../classes/settings.php:419
378
- msgid ""
379
- "The database has been changed between versions 1 and 2. But we made sure you "
380
- "can still roll back to version 1x without any issues."
381
  msgstr ""
382
 
383
- #: ../classes/settings.php:422
384
- msgid "Make sure you backup your database and then click"
385
- msgstr "Backup je database and klik dan"
386
 
387
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
388
- msgid "Upgrade Database"
389
- msgstr "Werk Database bij"
390
 
391
- #: ../classes/settings.php:425
392
- msgid "Potential Issues"
393
- msgstr "Potentiele problemen"
394
 
395
- #: ../classes/settings.php:426
396
- msgid ""
397
- "Do to the sizable refactoring the code, surounding Addons and action/"
398
- "filters, your website may not operate correctly. It is important that you "
399
- "read the full"
400
- msgstr ""
401
 
402
- #: ../classes/settings.php:426
403
- msgid "Migrating from v1 to v2"
404
- msgstr "Migratie van v1 naar v2"
405
 
406
- #: ../classes/settings.php:426
407
- msgid "guide to view the full list of changes."
408
- msgstr "overzicht van alle aanpassingen."
409
 
410
- #: ../classes/settings.php:426
411
- #, php-format
412
- msgid ""
413
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
414
- "can fix it in the next release."
415
- msgstr ""
416
 
417
- #: ../classes/settings.php:429
418
- msgid "Important!"
419
- msgstr "Belangrijk!"
420
 
421
- #: ../classes/settings.php:429
422
- msgid ""
423
- "If you updated the Admin Columns plugin without prior knowledge of such "
424
- "changes, Please roll back to the latest"
425
  msgstr ""
426
 
427
- #: ../classes/settings.php:429
428
- msgid "version 1"
429
- msgstr "versie 1"
 
430
 
431
- #: ../classes/settings.php:429
432
- msgid "of this plugin."
433
- msgstr "van deze plugin."
 
 
434
 
435
- #: ../classes/settings.php:435
436
- msgid "Changelog for"
437
- msgstr "Changelog voor"
438
 
439
- #: ../classes/settings.php:450
440
- msgid "Learn more"
441
- msgstr "Leer meer"
 
442
 
443
- #: ../classes/settings.php:459
444
- msgid ""
445
- "New to v2, all Addons act as separate plugins which need to be individually "
446
- "downloaded, installed and updated."
447
- msgstr ""
448
 
449
- #: ../classes/settings.php:460
450
- msgid ""
451
- "This page will assist you in downloading and installing each available Addon."
452
- msgstr ""
453
- "De pagina help je met het downloaden en installeren van elke beschikbare "
454
- "Addon."
455
 
456
- #: ../classes/settings.php:461
457
- msgid "Available Addons"
458
- msgstr "Beschikbare Addons"
459
 
460
- #: ../classes/settings.php:466
461
- msgid "Name"
462
- msgstr "Naam"
463
 
464
- #: ../classes/settings.php:467 ../classes/settings.php:475
465
- msgid "Download"
466
- msgstr "Download"
467
 
468
- #: ../classes/settings.php:473
469
- msgid "Pro Add-on (includes Sortorder add-on)"
470
- msgstr ""
471
 
472
- #: ../classes/settings.php:483
473
- msgid "Installation"
474
- msgstr "Installatie"
 
475
 
476
- #: ../classes/settings.php:485
477
- msgid "For each Add-on available, please perform the following:"
478
- msgstr "Voor elke addo-on, doe het volgende:"
479
 
480
- #: ../classes/settings.php:487
481
- msgid "Download the Addon plugin (.zip file) to your desktop"
482
- msgstr "Download de Addon plugin (.zip bestand) naar je desktop"
483
 
484
- #: ../classes/settings.php:488
485
- msgid "Navigate to"
486
- msgstr "Navigeer naar"
 
487
 
488
- #: ../classes/settings.php:488
489
- msgid "Plugins > Add New > Upload"
490
- msgstr "Plugins > Voeg toe > Upload"
491
 
492
- #: ../classes/settings.php:489
493
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
494
- msgstr "Gebruik de uploader om de Add-on te installeren (.zip bestand)"
495
 
496
- #: ../classes/settings.php:490
497
- msgid ""
498
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
499
- "link"
500
- msgstr ""
501
- "Waanner de plugin is geupload and geinstalleerd, klik de 'Activeer Plugin' "
502
- "link"
503
 
504
- #: ../classes/settings.php:491
505
- msgid "The Add-on is now installed and activated!"
506
- msgstr "De Add-on is nu geinstalleerd en actief!"
507
 
508
- #: ../classes/settings.php:492
509
- #, php-format
510
- msgid ""
511
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
512
- msgstr ""
513
 
514
- #: ../classes/settings.php:502
515
- msgid "Start using Admin Columns"
516
- msgstr "Start met Admin Columns"
517
 
518
- #: ../classes/settings.php:580
519
- msgid "Store settings"
520
- msgstr "Opslaan"
521
-
522
- #: ../classes/settings.php:585
523
- msgid "Update"
524
- msgstr "Bijwerken"
525
-
526
- #: ../classes/settings.php:585
527
- msgid "Publish"
528
- msgstr "Publiceren"
529
-
530
- #: ../classes/settings.php:589
531
- #, php-format
532
- msgid ""
533
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
534
- "\\' to delete, \\'Cancel\\' to stop"
535
- msgstr ""
536
-
537
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
538
- #: ../classes/column/post/actions.php:53
539
- msgid "Restore"
540
- msgstr "Herstellen"
541
-
542
- #: ../classes/settings.php:590
543
- msgid "columns"
544
- msgstr "kolommen"
545
 
546
- #: ../classes/settings.php:600
547
- msgid "Get the Pro Add-on"
548
- msgstr "Neem de Pro Add-on"
549
 
550
- #: ../classes/settings.php:604
551
- msgid "Add Sorting"
552
- msgstr "Voeg sorting toe"
553
 
554
- #: ../classes/settings.php:605
555
- msgid "Add Filtering"
556
- msgstr "Voeg filtering toe"
557
 
558
- #: ../classes/settings.php:606
559
- msgid "Add Import/Export"
560
- msgstr "Voeg import/export toe"
 
561
 
562
- #: ../classes/settings.php:609
563
- #, php-format
564
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
565
  msgstr ""
566
 
567
- #: ../classes/settings.php:617
568
- msgid "Support"
569
- msgstr "Hulp nodig?"
570
-
571
- #: ../classes/settings.php:620
572
- msgid "Check the <strong>Help</strong> section in the top-right screen."
573
- msgstr ""
574
 
575
- #: ../classes/settings.php:622
576
- #, php-format
577
- msgid ""
578
- "For full documentation, bug reports, feature suggestions and other tips <a "
579
- "href='%s'>visit the Admin Columns website</a>"
580
- msgstr ""
581
 
582
- #: ../classes/settings.php:642
583
- msgid "Drag and drop to reorder"
584
- msgstr "Sleep om te herordenen"
585
 
586
- #: ../classes/settings.php:645
587
- msgid "Add Column"
588
- msgstr "Voeg Kolom toe"
589
 
590
- #: ../classes/settings.php:696
591
- msgid "General Settings"
592
- msgstr "Algemene Instellingen"
593
 
594
- #: ../classes/settings.php:697
595
- msgid "Customize your Admin Columns settings."
596
- msgstr "Pas uw Admin Column instellingen aan."
 
597
 
598
- #: ../classes/settings.php:710
599
- msgid "Show hidden custom fields. Default is <code>off</code>."
600
- msgstr "Toon verborgen custom fields. Standaard waarde is <code>uit</code>."
601
 
602
- #: ../classes/settings.php:716
603
- msgid ""
604
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
605
- msgstr ""
606
 
607
- #: ../classes/settings.php:723
608
- msgid "Save"
609
- msgstr "Opslaan"
610
 
611
- #: ../classes/settings.php:763
612
- msgid "Restore Settings"
613
- msgstr "Herstel Instellingen"
614
 
615
- #: ../classes/settings.php:764
616
- msgid "This will delete all column settings and restore the default settings."
617
- msgstr ""
618
- "Hiermee worden alle kolommen instellingen verwijderd en de "
619
- "standaardinstellingen hersteld."
620
 
621
- #: ../classes/settings.php:770
622
- msgid "Restore default settings"
623
- msgstr "Herstel standaard instellingen"
624
 
625
- #: ../classes/settings.php:770
626
- msgid ""
627
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
628
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
629
- msgstr ""
630
- "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
631
- "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
632
 
633
- #: ../classes/storage_model.php:167
634
- msgid "settings succesfully restored."
635
- msgstr "instellingen succesvol hersteld."
636
 
637
- #: ../classes/storage_model.php:181
638
- msgid "No columns settings available."
639
- msgstr "Geen kolom instellingen beschikbaar."
640
 
641
- #: ../classes/storage_model.php:204
642
- #, php-format
643
- msgid "You are trying to store the same settings for %s."
644
- msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
645
 
646
- #: ../classes/storage_model.php:208
647
- #, php-format
648
- msgid "Settings for %s updated succesfully."
649
- msgstr "Instellingen voor %s succesvol bijgewerkt."
650
 
651
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
652
- msgid "View"
653
- msgstr "Bekijk"
654
 
655
- #: ../classes/upgrade.php:45
656
- msgid "Upgrade"
657
- msgstr "Upgrade"
 
658
 
659
- #: ../classes/upgrade.php:90
660
- msgid "requires a database upgrade"
661
- msgstr "verreist een database upgrade"
662
 
663
- #: ../classes/upgrade.php:93
664
- msgid "why?"
665
- msgstr "waarom?"
666
 
667
- #: ../classes/upgrade.php:94
668
- msgid "Please"
669
- msgstr "Alstublieft"
670
 
671
- #: ../classes/upgrade.php:95
672
- msgid "backup your database"
673
- msgstr "backup van uw database"
674
 
675
- #: ../classes/upgrade.php:96
676
- msgid "then click"
677
- msgstr "daarna klik"
678
 
679
- #: ../classes/upgrade.php:304
680
- msgid "Migrating Column Settings"
681
- msgstr "Migreer Kolom Instellingen"
682
 
683
- #: ../classes/upgrade.php:340
684
- msgid "No Upgrade Required"
685
- msgstr "Geen upgrade verreist"
686
 
687
- #: ../classes/upgrade.php:341
688
- msgid "Return to welcome screen."
689
- msgstr "Ga terug naar het welkomst scherm."
 
690
 
691
- #: ../classes/upgrade.php:359
692
- msgid "Upgrade Complete!"
693
- msgstr "Upgrade voltooid!"
 
694
 
695
- #: ../classes/upgrade.php:359
696
- msgid "Return to settings."
697
- msgstr "Herstel standaard instellingen"
698
 
699
- #: ../classes/upgrade.php:360
700
- msgid "Error"
701
- msgstr "Fout"
702
 
703
- #: ../classes/upgrade.php:361
704
  msgid ""
705
- "Sorry. Something went wrong during the upgrade process. Please report this "
706
- "on the support forum."
 
707
  msgstr ""
708
 
709
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
710
- msgid "Media Library"
711
- msgstr "Mediabibliotheek"
712
-
713
- #: ../classes/column/custom-field.php:79
714
- msgid "Post Title (Post ID's)"
715
- msgstr "Post Titel (Post ID's)"
716
-
717
- #: ../classes/column/custom-field.php:80
718
- msgid "Username (User ID's)"
719
- msgstr "Gebruikersnaam ( Gebruiker ID's )"
720
-
721
- #: ../classes/column/custom-field.php:81
722
- msgid "Checkmark (true/false)"
723
- msgstr "Vinkje (true/false)"
724
-
725
- #: ../classes/column/custom-field.php:324
726
- msgid "Select your custom field."
727
- msgstr "Selecteer uw custom field."
728
-
729
- #: ../classes/column/custom-field.php:334
730
- msgid "No custom fields available."
731
- msgstr "Geen custom fields beschikbaar."
732
-
733
- #: ../classes/column/custom-field.php:341
734
- msgid "Field Type"
735
- msgstr "Veld type"
736
-
737
- #: ../classes/column/custom-field.php:341
738
- msgid "This will determine how the value will be displayed."
739
- msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
740
-
741
- #: ../classes/column/custom-field.php:384
742
- msgid "Before"
743
- msgstr "Voor"
744
-
745
- #: ../classes/column/custom-field.php:384
746
- msgid "This text will appear before the custom field value."
747
- msgstr "Deze tekst wordt getoond voor de custom field waarde."
748
-
749
- #: ../classes/column/custom-field.php:390
750
- msgid "After"
751
- msgstr "Na"
752
-
753
- #: ../classes/column/custom-field.php:390
754
- msgid "This text will appear after the custom field value."
755
- msgstr "Deze tekst wordt getoond na de custom field waarde."
756
-
757
- #: ../classes/column/comment/actions.php:14
758
- #: ../classes/column/link/actions.php:14
759
- #: ../classes/column/media/actions.php:14
760
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
761
- msgid "Actions"
762
- msgstr "Acties"
763
-
764
- #: ../classes/column/comment/actions.php:73
765
- #: ../classes/column/comment/actions.php:78
766
- msgid "Unapprove"
767
- msgstr "Afgekeurd"
768
-
769
- #: ../classes/column/comment/actions.php:75
770
- #: ../classes/column/comment/actions.php:77
771
- msgid "Approve"
772
- msgstr "Goedgekeurd"
773
-
774
- #: ../classes/column/comment/actions.php:90
775
- #: ../classes/column/post/actions.php:57
776
- msgid "Delete Permanently"
777
- msgstr "Permanent verwijderen"
778
-
779
- #: ../classes/column/comment/actions.php:96
780
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
781
- #: ../classes/column/user/actions.php:57
782
- msgid "Edit"
783
- msgstr "Bewerken"
784
-
785
- #: ../classes/column/comment/actions.php:97
786
- #: ../classes/column/post/actions.php:49
787
- msgid "Quick&nbsp;Edit"
788
- msgstr "Snel&nbsp;Bewerken"
789
-
790
- #: ../classes/column/comment/actions.php:98
791
- msgid "Reply"
792
- msgstr "Beantwoorden"
793
-
794
- #: ../classes/column/comment/agent.php:12
795
- msgid "Agent"
796
- msgstr "Agent"
797
 
798
- #: ../classes/column/comment/approved.php:12
799
- #: ../classes/column/post/comment-count.php:31
800
- msgid "Approved"
801
- msgstr "Goedgekeurd"
802
 
803
- #: ../classes/column/comment/author-avatar.php:12
804
- msgid "Avatar"
805
- msgstr "Avatar"
 
806
 
807
- #: ../classes/column/comment/author-email.php:12
808
- msgid "Author email"
809
- msgstr "Auteurs email"
810
 
811
- #: ../classes/column/comment/author-ip.php:12
812
- msgid "Author IP"
813
- msgstr "Auteur IP"
 
 
 
 
814
 
815
- #: ../classes/column/comment/author-url.php:12
816
- msgid "Author url"
817
- msgstr "Auteurs url"
818
 
819
- #: ../classes/column/comment/author.php:12
820
- msgid "Author"
821
- msgstr "Auteur"
 
 
822
 
823
- #: ../classes/column/comment/date-gmt.php:12
824
- msgid "Date GMT"
825
- msgstr "Datum GMT"
826
 
827
- #: ../classes/column/comment/date-gmt.php:25
828
- #: ../classes/column/comment/date.php:25
829
- #, php-format
830
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
831
- msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
 
 
832
 
833
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
834
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
835
- msgid "ID"
836
- msgstr "ID"
 
 
 
837
 
838
- #: ../classes/column/comment/reply-to.php:12
839
- msgid "In Reply To"
840
- msgstr "Antwoord op"
 
 
 
 
841
 
842
- #: ../classes/column/comment/word-count.php:12
843
- #: ../classes/column/post/word-count.php:12
844
- msgid "Word count"
845
- msgstr "Aantal woorden"
846
 
847
- #: ../classes/column/link/actions.php:46
848
- #, php-format
849
  msgid ""
850
- "You are about to delete this link '%s'\n"
851
- " 'Cancel' to stop, 'OK' to delete."
852
  msgstr ""
853
 
854
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
855
- msgid "Delete"
856
- msgstr "Verwijder"
857
-
858
- #: ../classes/column/link/description.php:12
859
- #: ../classes/column/media/description.php:12
860
- #: ../classes/column/user/description.php:14
861
- msgid "Description"
862
- msgstr "Beschrijving"
863
 
864
- #: ../classes/column/link/length.php:12
865
- msgid "Length"
866
- msgstr "Lengte"
 
 
 
 
867
 
868
- #: ../classes/column/link/notes.php:13
869
- msgid "Notes"
870
- msgstr "Beschrijving"
871
 
872
- #: ../classes/column/link/owner.php:12
873
- msgid "Owner"
874
- msgstr "Eigenaar"
875
 
876
- #: ../classes/column/link/rss.php:12
877
- msgid "Rss"
878
- msgstr "Rss"
879
 
880
- #: ../classes/column/link/target.php:12
881
- msgid "Target"
882
- msgstr "Doel"
883
 
884
- #: ../classes/column/media/alternate-text.php:12
885
- msgid "Alt"
886
- msgstr "Alt"
887
 
888
- #: ../classes/column/media/available-sizes.php:14
889
- msgid "Available Sizes"
890
- msgstr "Beschikbare Afmetingen"
891
 
892
- #: ../classes/column/media/available-sizes.php:37
893
- msgid "full size"
894
- msgstr "Volledige grootte"
895
 
896
- #: ../classes/column/media/caption.php:12
897
- #: ../classes/column/media/exif-data.php:36
898
- msgid "Caption"
899
- msgstr "Onderschrift"
 
 
 
 
900
 
901
- #: ../classes/column/media/dimensions.php:12
902
- msgid "Dimensions"
903
- msgstr "Afmetingen"
904
 
905
- #: ../classes/column/media/exif-data.php:12
906
- msgid "EXIF data"
907
- msgstr "EXIF data"
908
 
909
- #: ../classes/column/media/exif-data.php:33
910
- msgid "Aperture"
911
- msgstr "Aperture"
 
 
912
 
913
- #: ../classes/column/media/exif-data.php:34
914
- msgid "Credit"
915
- msgstr "Credit"
916
 
917
- #: ../classes/column/media/exif-data.php:35
918
- msgid "Camera"
919
- msgstr "Camera"
920
 
921
- #: ../classes/column/media/exif-data.php:37
922
- msgid "Timestamp"
923
- msgstr "Timestamp"
924
 
925
- #: ../classes/column/media/exif-data.php:38
926
- msgid "Copyright EXIF"
927
- msgstr "Copyright EXIF"
928
 
929
- #: ../classes/column/media/exif-data.php:39
930
- msgid "Focal Length"
 
 
 
931
  msgstr ""
 
 
 
932
 
933
- #: ../classes/column/media/exif-data.php:40
934
- msgid "ISO"
 
935
  msgstr ""
936
 
937
- #: ../classes/column/media/exif-data.php:41
938
- msgid "Shutter Speed"
939
  msgstr ""
940
 
941
- #: ../classes/column/media/exif-data.php:42
942
- msgid "Title"
943
- msgstr "Titel"
944
 
945
- #: ../classes/column/media/file-name.php:12
946
- msgid "File name"
947
- msgstr "Bestandsnaam"
948
 
949
- #: ../classes/column/media/file-size.php:12
950
- msgid "File size"
951
- msgstr "Bestandsgrootte"
952
 
953
- #: ../classes/column/media/full-path.php:12
954
- msgid "Full path"
955
- msgstr "Volledige pad"
956
 
957
- #: ../classes/column/media/height.php:12
958
- msgid "Height"
959
- msgstr "Hoogte"
960
 
961
- #: ../classes/column/media/mime-type.php:12
962
- msgid "Mime type"
963
- msgstr "Mimi type"
 
 
964
 
965
- #: ../classes/column/post/actions.php:48
966
- msgid "Edit this item"
967
- msgstr "Bewerk dit item"
968
 
969
- #: ../classes/column/post/actions.php:49
970
- msgid "Edit this item inline"
971
- msgstr "Bijwerken van dit item"
972
 
973
- #: ../classes/column/post/actions.php:53
974
- msgid "Restore this item from the Trash"
975
- msgstr ""
976
 
977
- #: ../classes/column/post/actions.php:55
978
- msgid "Move this item to the Trash"
 
 
 
979
  msgstr ""
980
 
981
- #: ../classes/column/post/actions.php:55
982
- #: ../classes/column/post/comment-count.php:34
983
- #: ../classes/column/post/status.php:35
984
- msgid "Trash"
985
- msgstr "Prullenbak"
986
 
987
- #: ../classes/column/post/actions.php:57
988
- msgid "Delete this item permanently"
989
- msgstr "Verwijder permanent"
990
 
991
- #: ../classes/column/post/actions.php:62
992
  #, php-format
993
- msgid "Preview &#8220;%s&#8221;"
 
 
994
  msgstr ""
995
 
996
- #: ../classes/column/post/actions.php:62
997
- msgid "Preview"
998
- msgstr "Voorbeeld"
999
 
1000
- #: ../classes/column/post/actions.php:64
1001
- #, php-format
1002
- msgid "View &#8220;%s&#8221;"
1003
- msgstr "Bekijk &#8220;%s&#8221;"
 
1004
 
1005
- #: ../classes/column/post/attachment-count.php:12
1006
- msgid "No. of Attachments"
1007
- msgstr "Aantal attachments"
1008
 
1009
- #: ../classes/column/post/attachment.php:12
1010
- msgid "Attachment"
1011
- msgstr "Bijlage"
1012
 
1013
- #: ../classes/column/post/author-name.php:12
1014
- msgid "Display Author As"
1015
- msgstr "Toon auteur als"
1016
 
1017
- #: ../classes/column/post/author-name.php:33
1018
- msgid "Display Name"
 
 
 
 
 
 
1019
  msgstr ""
1020
 
1021
- #: ../classes/column/post/author-name.php:34
1022
- msgid "First Name"
1023
- msgstr "Voornaam"
 
 
 
1024
 
1025
- #: ../classes/column/post/author-name.php:35
1026
- msgid "Last Name"
1027
- msgstr "Achternaam"
1028
 
1029
- #: ../classes/column/post/author-name.php:36
1030
- #: ../classes/column/user/nickname.php:14
1031
- msgid "Nickname"
1032
- msgstr "Nickname"
1033
 
1034
- #: ../classes/column/post/author-name.php:37
1035
- msgid "User Login"
1036
- msgstr "Gebruikers login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
 
1038
- #: ../classes/column/post/author-name.php:38
1039
- msgid "User Email"
1040
- msgstr "Gebruiker Email"
1041
 
1042
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1043
- msgid "User ID"
1044
- msgstr "Gebruiker ID"
1045
 
1046
- #: ../classes/column/post/author-name.php:40
1047
- msgid "First and Last Name"
1048
- msgstr "Voor- en achternaam"
1049
 
1050
- #: ../classes/column/post/author-name.php:106
1051
- msgid "This is the format of the author name."
1052
- msgstr "Dit is het formaat van de auteursnaam"
 
 
 
 
1053
 
1054
- #: ../classes/column/post/before-moretag.php:14
1055
- msgid "Before More Tag"
1056
- msgstr "Voor de meer-tag"
1057
 
1058
- #: ../classes/column/post/comment-count.php:14
1059
- msgid "Comment count"
1060
- msgstr "Aantal reacties"
 
 
1061
 
1062
- #: ../classes/column/post/comment-count.php:30
1063
- msgid "Total"
1064
- msgstr "Totaal"
1065
 
1066
- #: ../classes/column/post/comment-count.php:32
1067
- msgid "Pending"
1068
- msgstr "Pending"
1069
 
1070
- #: ../classes/column/post/comment-count.php:33
1071
- msgid "Spam"
1072
- msgstr "Spam"
1073
 
1074
- #: ../classes/column/post/comment-count.php:78
1075
- #: ../classes/column/post/comment-status.php:14
1076
- msgid "Comment status"
1077
- msgstr "Comment status"
1078
 
1079
- #: ../classes/column/post/comment-count.php:78
1080
- msgid "Select which comment status you like to display."
 
1081
  msgstr ""
1082
 
1083
- #: ../classes/column/post/featured-image.php:14
1084
- msgid "Featured Image"
1085
- msgstr "Uitgelichte afbeelding"
1086
 
1087
- #: ../classes/column/post/formats.php:14
1088
- msgid "Post Format"
1089
- msgstr "Post formaat"
1090
 
1091
- #: ../classes/column/post/modified.php:14
1092
- msgid "Last modified"
1093
- msgstr "Laatst gewijzigd"
 
 
1094
 
1095
- #: ../classes/column/post/order.php:14
1096
- msgid "Page Order"
1097
- msgstr "Pagina Volgorde"
1098
 
1099
- #: ../classes/column/post/page-template.php:12
1100
- msgid "Page Template"
1101
- msgstr "Pagina Template"
 
 
 
 
1102
 
1103
- #: ../classes/column/post/parent.php:12
1104
- msgid "Parent"
 
 
 
 
 
 
 
 
 
1105
  msgstr ""
1106
 
1107
- #: ../classes/column/post/ping-status.php:14
1108
- msgid "Ping status"
1109
- msgstr "Ping status"
 
1110
 
1111
- #: ../classes/column/post/roles.php:14
1112
- msgid "Roles"
1113
- msgstr "Rollen"
1114
 
1115
- #: ../classes/column/post/slug.php:12
1116
- msgid "Slug"
1117
- msgstr "Slug"
1118
 
1119
- #: ../classes/column/post/status.php:14
1120
- msgid "Status"
1121
- msgstr "Status"
 
 
 
 
 
1122
 
1123
- #: ../classes/column/post/status.php:30
1124
- msgid "Published"
1125
- msgstr "Gepubliceerd"
1126
 
1127
- #: ../classes/column/post/status.php:31
1128
- msgid "Draft"
1129
- msgstr "Concept"
1130
 
1131
- #: ../classes/column/post/status.php:32
1132
- msgid "Scheduled"
1133
- msgstr "Gepland"
1134
 
1135
- #: ../classes/column/post/status.php:33
1136
- msgid "Private"
1137
- msgstr "Priv&#233;"
1138
 
1139
- #: ../classes/column/post/status.php:34
1140
- msgid "Pending Review"
1141
- msgstr "Wachtend op review"
1142
 
1143
- #: ../classes/column/post/sticky.php:14
1144
- msgid "Sticky"
1145
- msgstr "Sticky"
 
1146
 
1147
- #: ../classes/column/post/taxonomy.php:12
1148
- #: ../classes/column/post/taxonomy.php:68
1149
- msgid "Taxonomy"
1150
- msgstr "Taxonomy"
1151
 
1152
- #: ../classes/column/user/comment-count.php:14
1153
- msgid "Comment Count"
1154
  msgstr ""
1155
 
1156
- #: ../classes/column/user/first-name.php:14
1157
- msgid "First name"
1158
- msgstr "Voornaam"
 
 
 
1159
 
1160
- #: ../classes/column/user/last-name.php:14
1161
- msgid "Last name"
1162
- msgstr "Achternaam"
1163
 
1164
- #: ../classes/column/user/post-count.php:14
1165
- msgid "Post Count"
1166
- msgstr "Aantal posts"
1167
 
1168
- #: ../classes/column/user/post-count.php:92
1169
- msgid "Post Type"
1170
- msgstr "Post Type"
1171
 
1172
- #: ../classes/column/user/registered.php:14
1173
- msgid "Registered"
1174
- msgstr "Registratie"
1175
 
1176
- #: ../classes/column/user/url.php:14
1177
- msgid "Url"
1178
- msgstr "Url"
 
 
 
 
 
 
1179
 
1180
  #: ../classes/storage_model/comment.php:13
1181
  msgid "Comments"
@@ -1188,3 +1165,64 @@ msgstr "Links"
1188
  #: ../classes/storage_model/user.php:13
1189
  msgid "Users"
1190
  msgstr "Gebruikers"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:44+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/nl_NL/)\n"
13
+ "Language: nl_NL\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
26
  msgid "Thumbnail"
27
  msgstr "Thumbnail"
28
 
29
+ #: ../classes/column.php:498
30
  msgid "Medium"
31
  msgstr "Gemiddeld"
32
 
33
+ #: ../classes/column.php:499
34
  msgid "Large"
35
  msgstr "Groot"
36
 
37
+ #: ../classes/column.php:500
38
  msgid "Full"
39
  msgstr "Volledig"
40
 
41
+ #: ../classes/column.php:792
42
  msgid "Date Format"
43
  msgstr "Datumnotatie"
44
 
45
+ #: ../classes/column.php:793
46
  msgid "This will determine how the date will be displayed."
47
  msgstr "Dit bepaald hoe de datum wordt weergegeven."
48
 
49
+ #: ../classes/column.php:799
50
  msgid "Example:"
51
  msgstr "Voorbeeld:"
52
 
53
+ #: ../classes/column.php:801
54
  #, php-format
55
  msgid ""
56
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
59
  "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard "
60
  "datumformaat </a>."
61
 
62
+ #: ../classes/column.php:802
63
  msgid "Documentation on date and time formatting."
64
  msgstr "Documentatie over datum en tijd opmaak."
65
 
66
+ #: ../classes/column.php:820
67
  msgid "Excerpt length"
68
  msgstr "Samenvatting lengte"
69
 
70
+ #: ../classes/column.php:821
71
  msgid "Number of words"
72
  msgstr "Aantal woorden"
73
 
74
+ #: ../classes/column.php:843
75
  msgid "Preview size"
76
  msgstr "Voorbeeldformaat"
77
 
78
+ #: ../classes/column.php:860 ../classes/column.php:939
79
  msgid "Custom"
80
  msgstr "Aangepast"
81
 
82
+ #: ../classes/column.php:863
83
  msgid "width"
84
  msgstr "breedte"
85
 
86
+ #: ../classes/column.php:866
87
  msgid "height"
88
  msgstr "hoogte"
89
 
90
+ #: ../classes/column.php:882
91
+ msgid "Before"
92
+ msgstr "Voor"
93
+
94
+ #: ../classes/column.php:882
95
+ msgid "This text will appear before the custom field value."
96
+ msgstr "Deze tekst wordt getoond voor de custom field waarde."
97
+
98
+ #: ../classes/column.php:888
99
+ msgid "After"
100
+ msgstr "Na"
101
+
102
+ #: ../classes/column.php:888
103
+ msgid "This text will appear after the custom field value."
104
+ msgstr "Deze tekst wordt getoond na de custom field waarde."
105
+
106
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
107
+ #: ../classes/settings.php:212
108
  msgid "Default"
109
  msgstr "Standaard"
110
 
111
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
112
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
113
+ #: ../classes/column/user/actions.php:66
114
+ msgid "Edit"
115
+ msgstr "Bewerken"
116
+
117
+ #: ../classes/column.php:963 ../classes/column.php:1024
118
+ #: ../classes/column/user/actions.php:74
119
  msgid "Remove"
120
  msgstr "Verwijderen"
121
 
122
+ #: ../classes/column.php:981
123
  msgid "Type"
124
  msgstr "Type"
125
 
126
+ #: ../classes/column.php:981
127
  msgid "Choose a column type."
128
  msgstr "Kies een kolom type."
129
 
130
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
131
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
132
+ #: ../classes/column/post/ID.php:12
133
+ msgid "ID"
134
+ msgstr "ID"
135
+
136
+ #: ../classes/column.php:991
137
  msgid "Label"
138
  msgstr "Label"
139
 
140
+ #: ../classes/column.php:991
141
  msgid "This is the name which will appear as the column header."
142
  msgstr "Deze naam zal verschijnen als kolom kop."
143
 
144
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
145
  msgid "Width"
146
  msgstr "Breedte"
147
 
148
+ #: ../classes/column.php:1000 ../classes/column.php:1001
149
  msgid "default"
150
  msgstr "standaard"
151
 
152
+ #: ../classes/column/comment/actions.php:14
153
+ #: ../classes/column/link/actions.php:14
154
+ #: ../classes/column/media/actions.php:14
155
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
156
+ msgid "Actions"
157
+ msgstr "Acties"
158
 
159
+ #: ../classes/column/comment/actions.php:73
160
+ #: ../classes/column/comment/actions.php:78
161
+ msgid "Unapprove"
162
+ msgstr "Afgekeurd"
163
 
164
+ #: ../classes/column/comment/actions.php:75
165
+ #: ../classes/column/comment/actions.php:77
166
+ msgid "Approve"
167
+ msgstr "Goedgekeurd"
168
 
169
+ #: ../classes/column/comment/actions.php:86
170
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
171
+ msgid "Restore"
172
+ msgstr "Herstellen"
173
 
174
+ #: ../classes/column/comment/actions.php:90
175
+ #: ../classes/column/post/actions.php:57
176
+ msgid "Delete Permanently"
177
+ msgstr "Permanent verwijderen"
178
 
179
+ #: ../classes/column/comment/actions.php:97
180
+ #: ../classes/column/post/actions.php:49
181
+ msgid "Quick&nbsp;Edit"
182
+ msgstr "Snel&nbsp;Bewerken"
 
 
183
 
184
+ #: ../classes/column/comment/actions.php:98
185
+ msgid "Reply"
186
+ msgstr "Beantwoorden"
187
 
188
+ #: ../classes/column/comment/agent.php:12
189
+ msgid "Agent"
190
+ msgstr "Agent"
191
 
192
+ #: ../classes/column/comment/approved.php:12
193
+ #: ../classes/column/post/comment-count.php:31
194
+ msgid "Approved"
195
+ msgstr "Goedgekeurd"
196
 
197
+ #: ../classes/column/comment/author-avatar.php:12
198
+ msgid "Avatar"
199
+ msgstr "Avatar"
200
 
201
+ #: ../classes/column/comment/author-email.php:12
202
+ msgid "Author email"
203
+ msgstr "Auteurs email"
204
+
205
+ #: ../classes/column/comment/author-ip.php:12
206
+ msgid "Author IP"
207
+ msgstr "Auteur IP"
208
+
209
+ #: ../classes/column/comment/author-url.php:12
210
+ msgid "Author url"
211
+ msgstr "Auteurs url"
212
+
213
+ #: ../classes/column/comment/author.php:12
214
+ msgid "Author"
215
+ msgstr "Auteur"
216
+
217
+ #: ../classes/column/comment/date-gmt.php:12
218
+ msgid "Date GMT"
219
+ msgstr "Datum GMT"
220
+
221
+ #: ../classes/column/comment/date-gmt.php:25
222
+ #: ../classes/column/comment/date.php:25
223
+ #, php-format
224
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
225
+ msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
226
+
227
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
228
+ #: ../classes/settings.php:217
229
+ msgid "Date"
230
+ msgstr "Datum"
231
 
232
+ #: ../classes/column/comment/excerpt.php:13
233
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
234
  #: ../classes/settings.php:214
235
+ msgid "Excerpt"
236
+ msgstr "Samenvatting"
237
 
238
+ #: ../classes/column/comment/reply-to.php:12
239
+ msgid "In Reply To"
240
+ msgstr "Antwoord op"
241
+
242
+ #: ../classes/column/comment/word-count.php:12
243
+ #: ../classes/column/post/word-count.php:12
244
+ msgid "Word count"
245
+ msgstr "Aantal woorden"
246
 
247
+ #: ../classes/column/custom-field.php:16
248
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
249
  msgid "Custom Field"
250
  msgstr "Custom veld"
251
 
252
+ #: ../classes/column/custom-field.php:66
253
+ msgid "Checkmark (true/false)"
254
+ msgstr "Vinkje (true/false)"
255
 
256
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
257
+ msgid "Color"
258
+ msgstr "Kleur"
 
 
 
 
259
 
260
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
261
+ msgid "Counter"
 
 
262
  msgstr ""
 
 
263
 
264
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
265
+ #: ../classes/settings.php:213
266
  msgid "Image"
267
  msgstr "Afbeelding"
268
 
269
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
270
+ msgid "Media Library"
271
+ msgstr "Mediabibliotheek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
 
273
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
274
  msgid "Multiple Values"
275
  msgstr "Meerdere waarden"
276
 
277
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
278
  msgid "Numeric"
279
  msgstr "Numerieke"
280
 
281
+ #: ../classes/column/custom-field.php:75
282
+ msgid "Post Title (Post ID's)"
283
+ msgstr "Post Titel (Post ID's)"
 
 
284
 
285
+ #: ../classes/column/custom-field.php:76
286
+ msgid "Username (User ID's)"
287
+ msgstr "Gebruikersnaam ( Gebruiker ID's )"
288
+
289
+ #: ../classes/column/custom-field.php:377
290
+ msgid "Select your custom field."
291
+ msgstr "Selecteer uw custom field."
292
+
293
+ #: ../classes/column/custom-field.php:387
294
+ msgid "No custom fields available."
295
+ msgstr "Geen custom fields beschikbaar."
296
+
297
+ #: ../classes/column/custom-field.php:394
298
+ msgid "Field Type"
299
+ msgstr "Veld type"
300
 
301
+ #: ../classes/column/custom-field.php:394
302
+ msgid "This will determine how the value will be displayed."
303
+ msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
304
+
305
+ #: ../classes/column/link/actions.php:46
306
  #, php-format
307
  msgid ""
308
+ "You are about to delete this link '%s'\n"
309
+ " 'Cancel' to stop, 'OK' to delete."
 
310
  msgstr ""
311
 
312
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
313
+ msgid "Delete"
314
+ msgstr "Verwijder"
 
 
 
 
315
 
316
+ #: ../classes/column/link/description.php:12
317
+ #: ../classes/column/media/description.php:12
318
+ #: ../classes/column/user/description.php:14
319
+ msgid "Description"
320
+ msgstr "Beschrijving"
321
 
322
+ #: ../classes/column/link/length.php:12
323
+ msgid "Length"
324
+ msgstr "Lengte"
325
 
326
+ #: ../classes/column/link/notes.php:13
327
+ msgid "Notes"
328
+ msgstr "Beschrijving"
329
 
330
+ #: ../classes/column/link/owner.php:12
331
+ msgid "Owner"
332
+ msgstr "Eigenaar"
333
 
334
+ #: ../classes/column/link/rss.php:12
335
+ msgid "Rss"
336
+ msgstr "Rss"
337
 
338
+ #: ../classes/column/link/target.php:12
339
+ msgid "Target"
340
+ msgstr "Doel"
341
 
342
+ #: ../classes/column/media/alternate-text.php:12
343
+ msgid "Alt"
344
+ msgstr "Alt"
345
 
346
+ #: ../classes/column/media/available-sizes.php:14
347
+ msgid "Available Sizes"
348
+ msgstr "Beschikbare Afmetingen"
349
 
350
+ #: ../classes/column/media/available-sizes.php:37
351
+ msgid "full size"
352
+ msgstr "Volledige grootte"
 
 
353
 
354
+ #: ../classes/column/media/caption.php:12
355
+ #: ../classes/column/media/exif-data.php:36
356
+ msgid "Caption"
357
+ msgstr "Onderschrift"
358
 
359
+ #: ../classes/column/media/dimensions.php:12
360
+ msgid "Dimensions"
361
+ msgstr "Afmetingen"
362
 
363
+ #: ../classes/column/media/exif-data.php:12
364
+ msgid "EXIF data"
365
+ msgstr "EXIF data"
366
 
367
+ #: ../classes/column/media/exif-data.php:33
368
+ msgid "Aperture"
369
+ msgstr "Aperture"
370
 
371
+ #: ../classes/column/media/exif-data.php:34
372
+ msgid "Credit"
373
+ msgstr "Credit"
 
 
 
 
 
 
374
 
375
+ #: ../classes/column/media/exif-data.php:35
376
+ msgid "Camera"
377
+ msgstr "Camera"
 
378
 
379
+ #: ../classes/column/media/exif-data.php:37
380
+ msgid "Timestamp"
381
+ msgstr "Timestamp"
382
 
383
+ #: ../classes/column/media/exif-data.php:38
384
+ msgid "Copyright EXIF"
385
+ msgstr "Copyright EXIF"
386
 
387
+ #: ../classes/column/media/exif-data.php:39
388
+ #, fuzzy
389
+ msgid "Focal Length"
390
+ msgstr "Lengte"
391
 
392
+ #: ../classes/column/media/exif-data.php:40
393
+ msgid "ISO"
394
  msgstr ""
395
 
396
+ #: ../classes/column/media/exif-data.php:41
397
+ msgid "Shutter Speed"
 
 
 
 
 
 
 
 
 
 
398
  msgstr ""
399
 
400
+ #: ../classes/column/media/exif-data.php:42
401
+ msgid "Title"
402
+ msgstr "Titel"
403
 
404
+ #: ../classes/column/media/file-name.php:12
405
+ msgid "File name"
406
+ msgstr "Bestandsnaam"
407
 
408
+ #: ../classes/column/media/file-size.php:12
409
+ msgid "File size"
410
+ msgstr "Bestandsgrootte"
411
 
412
+ #: ../classes/column/media/full-path.php:12
413
+ msgid "Full path"
414
+ msgstr "Volledige pad"
 
 
 
415
 
416
+ #: ../classes/column/media/height.php:12
417
+ msgid "Height"
418
+ msgstr "Hoogte"
419
 
420
+ #: ../classes/column/media/mime-type.php:12
421
+ msgid "Mime type"
422
+ msgstr "Mimi type"
423
 
424
+ #: ../classes/column/post/actions.php:48
425
+ msgid "Edit this item"
426
+ msgstr "Bewerk dit item"
 
 
 
427
 
428
+ #: ../classes/column/post/actions.php:49
429
+ msgid "Edit this item inline"
430
+ msgstr "Bijwerken van dit item"
431
 
432
+ #: ../classes/column/post/actions.php:53
433
+ msgid "Restore this item from the Trash"
 
 
434
  msgstr ""
435
 
436
+ #: ../classes/column/post/actions.php:55
437
+ #, fuzzy
438
+ msgid "Move this item to the Trash"
439
+ msgstr "Prullenbak"
440
 
441
+ #: ../classes/column/post/actions.php:55
442
+ #: ../classes/column/post/comment-count.php:34
443
+ #: ../classes/column/post/status.php:38
444
+ msgid "Trash"
445
+ msgstr "Prullenbak"
446
 
447
+ #: ../classes/column/post/actions.php:57
448
+ msgid "Delete this item permanently"
449
+ msgstr "Verwijder permanent"
450
 
451
+ #: ../classes/column/post/actions.php:62
452
+ #, fuzzy, php-format
453
+ msgid "Preview &#8220;%s&#8221;"
454
+ msgstr "Bekijk &#8220;%s&#8221;"
455
 
456
+ #: ../classes/column/post/actions.php:62
457
+ msgid "Preview"
458
+ msgstr "Voorbeeld"
 
 
459
 
460
+ #: ../classes/column/post/actions.php:64
461
+ #, php-format
462
+ msgid "View &#8220;%s&#8221;"
463
+ msgstr "Bekijk &#8220;%s&#8221;"
 
 
464
 
465
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
466
+ msgid "View"
467
+ msgstr "Bekijk"
468
 
469
+ #: ../classes/column/post/attachment-count.php:12
470
+ msgid "No. of Attachments"
471
+ msgstr "Aantal attachments"
472
 
473
+ #: ../classes/column/post/attachment.php:12
474
+ msgid "Attachment"
475
+ msgstr "Bijlage"
476
 
477
+ #: ../classes/column/post/author-name.php:12
478
+ msgid "Display Author As"
479
+ msgstr "Toon auteur als"
480
 
481
+ #: ../classes/column/post/author-name.php:34
482
+ #, fuzzy
483
+ msgid "Display Name"
484
+ msgstr "Toon auteur als"
485
 
486
+ #: ../classes/column/post/author-name.php:35
487
+ msgid "First Name"
488
+ msgstr "Voornaam"
489
 
490
+ #: ../classes/column/post/author-name.php:36
491
+ msgid "Last Name"
492
+ msgstr "Achternaam"
493
 
494
+ #: ../classes/column/post/author-name.php:37
495
+ #: ../classes/column/user/nickname.php:14
496
+ msgid "Nickname"
497
+ msgstr "Nickname"
498
 
499
+ #: ../classes/column/post/author-name.php:38
500
+ msgid "User Login"
501
+ msgstr "Gebruikers login"
502
 
503
+ #: ../classes/column/post/author-name.php:39
504
+ msgid "User Email"
505
+ msgstr "Gebruiker Email"
506
 
507
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
508
+ msgid "User ID"
509
+ msgstr "Gebruiker ID"
 
 
 
 
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
+ msgid "First and Last Name"
513
+ msgstr "Voor- en achternaam"
514
 
515
+ #: ../classes/column/post/author-name.php:118
516
+ msgid "This is the format of the author name."
517
+ msgstr "Dit is het formaat van de auteursnaam"
 
 
518
 
519
+ #: ../classes/column/post/before-moretag.php:14
520
+ msgid "Before More Tag"
521
+ msgstr "Voor de meer-tag"
522
 
523
+ #: ../classes/column/post/comment-count.php:14
524
+ msgid "Comment count"
525
+ msgstr "Aantal reacties"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
 
527
+ #: ../classes/column/post/comment-count.php:30
528
+ msgid "Total"
529
+ msgstr "Totaal"
530
 
531
+ #: ../classes/column/post/comment-count.php:32
532
+ msgid "Pending"
533
+ msgstr "Pending"
534
 
535
+ #: ../classes/column/post/comment-count.php:33
536
+ msgid "Spam"
537
+ msgstr "Spam"
538
 
539
+ #: ../classes/column/post/comment-count.php:95
540
+ #: ../classes/column/post/comment-status.php:14
541
+ msgid "Comment status"
542
+ msgstr "Comment status"
543
 
544
+ #: ../classes/column/post/comment-count.php:95
545
+ msgid "Select which comment status you like to display."
 
546
  msgstr ""
547
 
548
+ #: ../classes/column/post/featured-image.php:14
549
+ msgid "Featured Image"
550
+ msgstr "Uitgelichte afbeelding"
 
 
 
 
551
 
552
+ #: ../classes/column/post/formats.php:14
553
+ msgid "Post Format"
554
+ msgstr "Post formaat"
 
 
 
555
 
556
+ #: ../classes/column/post/modified.php:14
557
+ msgid "Last modified"
558
+ msgstr "Laatst gewijzigd"
559
 
560
+ #: ../classes/column/post/order.php:14
561
+ msgid "Page Order"
562
+ msgstr "Pagina Volgorde"
563
 
564
+ #: ../classes/column/post/page-template.php:12
565
+ msgid "Page Template"
566
+ msgstr "Pagina Template"
567
 
568
+ #: ../classes/column/post/parent.php:12
569
+ #, fuzzy
570
+ msgid "Parent"
571
+ msgstr "Hoofd %s"
572
 
573
+ #: ../classes/column/post/ping-status.php:14
574
+ msgid "Ping status"
575
+ msgstr "Ping status"
576
 
577
+ #: ../classes/column/post/roles.php:14
578
+ msgid "Roles"
579
+ msgstr "Rollen"
 
580
 
581
+ #: ../classes/column/post/slug.php:12
582
+ msgid "Slug"
583
+ msgstr "Slug"
584
 
585
+ #: ../classes/column/post/status.php:14
586
+ msgid "Status"
587
+ msgstr "Status"
588
 
589
+ #: ../classes/column/post/status.php:32
590
+ msgid "Published"
591
+ msgstr "Gepubliceerd"
 
 
592
 
593
+ #: ../classes/column/post/status.php:33
594
+ msgid "Draft"
595
+ msgstr "Concept"
596
 
597
+ #: ../classes/column/post/status.php:34
598
+ msgid "Scheduled"
599
+ msgstr "Gepland"
 
 
 
 
600
 
601
+ #: ../classes/column/post/status.php:35
602
+ msgid "Private"
603
+ msgstr "Priv&#233;"
604
 
605
+ #: ../classes/column/post/status.php:36
606
+ msgid "Pending Review"
607
+ msgstr "Wachtend op review"
608
 
609
+ #: ../classes/column/post/status.php:37
610
+ #, fuzzy
611
+ msgid "Auto Draft"
612
+ msgstr "Concept"
613
 
614
+ #: ../classes/column/post/sticky.php:14
615
+ msgid "Sticky"
616
+ msgstr "Sticky"
 
617
 
618
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
619
+ msgid "Taxonomy"
620
+ msgstr "Taxonomy"
621
 
622
+ #: ../classes/column/user/comment-count.php:14
623
+ #, fuzzy
624
+ msgid "Comment Count"
625
+ msgstr "Aantal reacties"
626
 
627
+ #: ../classes/column/user/first-name.php:14
628
+ msgid "First name"
629
+ msgstr "Voornaam"
630
 
631
+ #: ../classes/column/user/last-name.php:14
632
+ msgid "Last name"
633
+ msgstr "Achternaam"
634
 
635
+ #: ../classes/column/user/post-count.php:14
636
+ msgid "Post Count"
637
+ msgstr "Aantal posts"
638
 
639
+ #: ../classes/column/user/post-count.php:99
640
+ msgid "Post Type"
641
+ msgstr "Post Type"
642
 
643
+ #: ../classes/column/user/registered.php:14
644
+ msgid "Registered"
645
+ msgstr "Registratie"
646
 
647
+ #: ../classes/column/user/url.php:14
648
+ msgid "Url"
649
+ msgstr "Url"
650
 
651
+ #: ../classes/settings.php:64
652
+ msgid "Admin Columns Settings"
653
+ msgstr "Admin Columns Instellingen"
654
 
655
+ #: ../classes/settings.php:64 ../classes/settings.php:635
656
+ #: ../classes/upgrade.php:89
657
+ msgid "Admin Columns"
658
+ msgstr "Admin Columns"
659
 
660
+ #: ../classes/settings.php:116
661
+ #, php-format
662
+ msgid "%s column is already present and can not be duplicated."
663
+ msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
664
 
665
+ #: ../classes/settings.php:172
666
+ msgid "Default settings succesfully restored."
667
+ msgstr "Standaard instellingen succesvol hersteld."
668
 
669
+ #: ../classes/settings.php:190 ../classes/settings.php:447
670
+ msgid "Overview"
671
+ msgstr "Overzicht"
672
 
673
+ #: ../classes/settings.php:193
674
  msgid ""
675
+ "This plugin is for adding and removing additional columns to the "
676
+ "administration screens for post(types), pages, media library, comments, "
677
+ "links and users. Change the column's label and reorder them."
678
  msgstr ""
679
 
680
+ #: ../classes/settings.php:196
681
+ msgid "Basics"
682
+ msgstr "Basisinfo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
 
684
+ #: ../classes/settings.php:198
685
+ msgid "Change order"
686
+ msgstr "Verander volgorde"
 
687
 
688
+ #: ../classes/settings.php:199
689
+ msgid ""
690
+ "By dragging the columns you can change the order which they will appear in."
691
+ msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
692
 
693
+ #: ../classes/settings.php:200
694
+ msgid "Change label"
695
+ msgstr "Wijzig label"
696
 
697
+ #: ../classes/settings.php:201
698
+ msgid ""
699
+ "By clicking on the triangle you will see the column options. Here you can "
700
+ "change each label of the columns heading."
701
+ msgstr ""
702
+ "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de "
703
+ "kolom label aanpassen."
704
 
705
+ #: ../classes/settings.php:202
706
+ msgid "Change column width"
707
+ msgstr "Verander kolom breedte"
708
 
709
+ #: ../classes/settings.php:203
710
+ msgid ""
711
+ "By clicking on the triangle you will see the column options. By using the "
712
+ "draggable slider you can set the width of the columns in percentages."
713
+ msgstr ""
714
 
715
+ #: ../classes/settings.php:209
716
+ msgid "'Custom Field' column"
717
+ msgstr "'Custom veld' kolom"
718
 
719
+ #: ../classes/settings.php:210
720
+ msgid ""
721
+ "The custom field colum uses the custom fields from posts and users. There "
722
+ "are 10 types which you can set."
723
+ msgstr ""
724
+ "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. "
725
+ "Er zijn 10 typen welke je kan gebruiken."
726
 
727
+ #: ../classes/settings.php:212
728
+ msgid ""
729
+ "Value: Can be either a string or array. Arrays will be flattened and values "
730
+ "are seperated by a ',' comma."
731
+ msgstr ""
732
+ "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de "
733
+ "waarden gescheiden door een ',' komma."
734
 
735
+ #: ../classes/settings.php:213
736
+ msgid ""
737
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
738
+ "comma )."
739
+ msgstr ""
740
+ "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' "
741
+ "komma )."
742
 
743
+ #: ../classes/settings.php:214
744
+ msgid "Value: This will show the first 20 words of the Post content."
745
+ msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
 
746
 
747
+ #: ../classes/settings.php:215
 
748
  msgid ""
749
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
750
  msgstr ""
751
 
752
+ #: ../classes/settings.php:216
753
+ msgid ""
754
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
755
+ "for sorting, so you can sort your posts on numeric (custom field) values."
756
+ msgstr ""
 
 
 
 
757
 
758
+ #: ../classes/settings.php:217
759
+ #, php-format
760
+ msgid ""
761
+ "Value: Can be unix time stamp or a date format as described in the <a "
762
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
763
+ "href='%s'>general settings</a> page."
764
+ msgstr ""
765
 
766
+ #: ../classes/settings.php:218
767
+ msgid "Post Titles"
768
+ msgstr "Post titels"
769
 
770
+ #: ../classes/settings.php:218
771
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
772
+ msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
773
 
774
+ #: ../classes/settings.php:219
775
+ msgid "Usernames"
776
+ msgstr "Gebruikersnamen"
777
 
778
+ #: ../classes/settings.php:219
779
+ msgid "Value: can be one or more User ID's (seperated by ',')."
780
+ msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
781
 
782
+ #: ../classes/settings.php:220
783
+ msgid "Checkmark"
784
+ msgstr "Checkmark"
785
 
786
+ #: ../classes/settings.php:220
787
+ msgid "Value: should be a 1 (one) or 0 (zero)."
788
+ msgstr "Waarde: moet 1 of 0 zijn."
789
 
790
+ #: ../classes/settings.php:221
791
+ msgid "Value: hex value color, such as #808080."
792
+ msgstr "Waarde: hex waarde kleur, vb: #808080"
793
 
794
+ #: ../classes/settings.php:222
795
+ #, fuzzy
796
+ msgid ""
797
+ "Value: Can be either a string or array. This will display a count of the "
798
+ "number of times the meta key is used by the item."
799
+ msgstr ""
800
+ "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de "
801
+ "waarden gescheiden door een ',' komma."
802
 
803
+ #: ../classes/settings.php:367
804
+ msgid "Welcome to Admin Columns"
805
+ msgstr "Welkom bij Admin Columns"
806
 
807
+ #: ../classes/settings.php:370
808
+ msgid "Thank you for updating to the latest version!"
809
+ msgstr "Bedankt voor het updaten naar de laatste versie!"
810
 
811
+ #: ../classes/settings.php:371
812
+ msgid ""
813
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
814
+ "like it."
815
+ msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
816
 
817
+ #: ../classes/settings.php:376
818
+ msgid "What’s New"
819
+ msgstr "What is nieuw"
820
 
821
+ #: ../classes/settings.php:377
822
+ msgid "Changelog"
823
+ msgstr "Changelog"
824
 
825
+ #: ../classes/settings.php:379
826
+ msgid "Download Addons"
827
+ msgstr "Download Addons"
828
 
829
+ #: ../classes/settings.php:385
830
+ msgid "Addons"
831
+ msgstr "Addons"
832
 
833
+ #: ../classes/settings.php:387
834
+ msgid ""
835
+ "Addons are now activated by downloading and installing individual plugins. "
836
+ "Although these plugins will not be hosted on the wordpress.org repository, "
837
+ "each Add-on will continue to receive updates in the usual way."
838
  msgstr ""
839
+ "Addons worden vanaf nu geactiveer door ze te downloaden en te installeren "
840
+ "als individuele plugins. Deze plugins zullen niet worden gehost op wordpress."
841
+ "org, maar ze blijven wel automatische updates ontvangen zoals gewoonlijk."
842
 
843
+ #: ../classes/settings.php:390
844
+ msgid ""
845
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
846
  msgstr ""
847
 
848
+ #: ../classes/settings.php:393
849
+ msgid "Addons are seperate plugins which need to be downloaded."
850
  msgstr ""
851
 
852
+ #: ../classes/settings.php:393
853
+ msgid "Download your Addons"
854
+ msgstr "Download je Addons"
855
 
856
+ #: ../classes/settings.php:399
857
+ msgid "This website does not use add-ons"
858
+ msgstr ""
859
 
860
+ #: ../classes/settings.php:399
861
+ msgid "See our website for the Pro-addon."
862
+ msgstr ""
863
 
864
+ #: ../classes/settings.php:406
865
+ msgid "Important"
866
+ msgstr "Belangrijk"
867
 
868
+ #: ../classes/settings.php:408
869
+ msgid "Database Changes"
870
+ msgstr "Database Aanpassingen"
871
 
872
+ #: ../classes/settings.php:409
873
+ msgid ""
874
+ "The database has been changed between versions 1 and 2. But we made sure you "
875
+ "can still roll back to version 1x without any issues."
876
+ msgstr ""
877
 
878
+ #: ../classes/settings.php:412
879
+ msgid "Make sure you backup your database and then click"
880
+ msgstr "Backup je database and klik dan"
881
 
882
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
883
+ msgid "Upgrade Database"
884
+ msgstr "Werk Database bij"
885
 
886
+ #: ../classes/settings.php:415
887
+ msgid "Potential Issues"
888
+ msgstr "Potentiele problemen"
889
 
890
+ #: ../classes/settings.php:416
891
+ msgid ""
892
+ "Do to the sizable refactoring the code, surounding Addons and action/"
893
+ "filters, your website may not operate correctly. It is important that you "
894
+ "read the full"
895
  msgstr ""
896
 
897
+ #: ../classes/settings.php:416
898
+ msgid "Migrating from v1 to v2"
899
+ msgstr "Migratie van v1 naar v2"
 
 
900
 
901
+ #: ../classes/settings.php:416
902
+ msgid "guide to view the full list of changes."
903
+ msgstr "overzicht van alle aanpassingen."
904
 
905
+ #: ../classes/settings.php:416
906
  #, php-format
907
+ msgid ""
908
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
909
+ "can fix it in the next release."
910
  msgstr ""
911
 
912
+ #: ../classes/settings.php:419
913
+ msgid "Important!"
914
+ msgstr "Belangrijk!"
915
 
916
+ #: ../classes/settings.php:419
917
+ msgid ""
918
+ "If you updated the Admin Columns plugin without prior knowledge of such "
919
+ "changes, Please roll back to the latest"
920
+ msgstr ""
921
 
922
+ #: ../classes/settings.php:419
923
+ msgid "version 1"
924
+ msgstr "versie 1"
925
 
926
+ #: ../classes/settings.php:419
927
+ msgid "of this plugin."
928
+ msgstr "van deze plugin."
929
 
930
+ #: ../classes/settings.php:425
931
+ msgid "Changelog for"
932
+ msgstr "Changelog voor"
933
 
934
+ #: ../classes/settings.php:440
935
+ msgid "Learn more"
936
+ msgstr "Leer meer"
937
+
938
+ #: ../classes/settings.php:449
939
+ msgid ""
940
+ "New to v2, all Addons act as separate plugins which need to be individually "
941
+ "downloaded, installed and updated."
942
  msgstr ""
943
 
944
+ #: ../classes/settings.php:450
945
+ msgid ""
946
+ "This page will assist you in downloading and installing each available Addon."
947
+ msgstr ""
948
+ "De pagina help je met het downloaden en installeren van elke beschikbare "
949
+ "Addon."
950
 
951
+ #: ../classes/settings.php:451
952
+ msgid "Available Addons"
953
+ msgstr "Beschikbare Addons"
954
 
955
+ #: ../classes/settings.php:456
956
+ msgid "Name"
957
+ msgstr "Naam"
 
958
 
959
+ #: ../classes/settings.php:457 ../classes/settings.php:465
960
+ msgid "Download"
961
+ msgstr "Download"
962
+
963
+ #: ../classes/settings.php:463
964
+ msgid "Pro Add-on (includes Sortorder add-on)"
965
+ msgstr ""
966
+
967
+ #: ../classes/settings.php:473
968
+ msgid "Installation"
969
+ msgstr "Installatie"
970
+
971
+ #: ../classes/settings.php:475
972
+ msgid "For each Add-on available, please perform the following:"
973
+ msgstr "Voor elke addo-on, doe het volgende:"
974
+
975
+ #: ../classes/settings.php:477
976
+ msgid "Download the Addon plugin (.zip file) to your desktop"
977
+ msgstr "Download de Addon plugin (.zip bestand) naar je desktop"
978
 
979
+ #: ../classes/settings.php:478
980
+ msgid "Navigate to"
981
+ msgstr "Navigeer naar"
982
 
983
+ #: ../classes/settings.php:478
984
+ msgid "Plugins > Add New > Upload"
985
+ msgstr "Plugins > Voeg toe > Upload"
986
 
987
+ #: ../classes/settings.php:479
988
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
989
+ msgstr "Gebruik de uploader om de Add-on te installeren (.zip bestand)"
990
 
991
+ #: ../classes/settings.php:480
992
+ msgid ""
993
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
994
+ "link"
995
+ msgstr ""
996
+ "Waanner de plugin is geupload and geinstalleerd, klik de 'Activeer Plugin' "
997
+ "link"
998
 
999
+ #: ../classes/settings.php:481
1000
+ msgid "The Add-on is now installed and activated!"
1001
+ msgstr "De Add-on is nu geinstalleerd en actief!"
1002
 
1003
+ #: ../classes/settings.php:482
1004
+ #, php-format
1005
+ msgid ""
1006
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1007
+ msgstr ""
1008
 
1009
+ #: ../classes/settings.php:492
1010
+ msgid "Start using Admin Columns"
1011
+ msgstr "Start met Admin Columns"
1012
 
1013
+ #: ../classes/settings.php:539
1014
+ msgid "General Settings"
1015
+ msgstr "Algemene Instellingen"
1016
 
1017
+ #: ../classes/settings.php:540
1018
+ msgid "Customize your Admin Columns settings."
1019
+ msgstr "Pas uw Admin Column instellingen aan."
1020
 
1021
+ #: ../classes/settings.php:553
1022
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1023
+ msgstr "Toon verborgen custom fields. Standaard waarde is <code>uit</code>."
 
1024
 
1025
+ #: ../classes/settings.php:559
1026
+ msgid ""
1027
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1028
  msgstr ""
1029
 
1030
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1031
+ msgid "Save"
1032
+ msgstr "Opslaan"
1033
 
1034
+ #: ../classes/settings.php:606
1035
+ msgid "Restore Settings"
1036
+ msgstr "Herstel Instellingen"
1037
 
1038
+ #: ../classes/settings.php:607
1039
+ msgid "This will delete all column settings and restore the default settings."
1040
+ msgstr ""
1041
+ "Hiermee worden alle kolommen instellingen verwijderd en de "
1042
+ "standaardinstellingen hersteld."
1043
 
1044
+ #: ../classes/settings.php:613
1045
+ msgid "Restore default settings"
1046
+ msgstr "Herstel standaard instellingen"
1047
 
1048
+ #: ../classes/settings.php:613
1049
+ msgid ""
1050
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1051
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1052
+ msgstr ""
1053
+ "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
1054
+ "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
1055
 
1056
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1057
+ msgid "Settings"
1058
+ msgstr "Instellingen"
1059
+
1060
+ #: ../classes/settings.php:665
1061
+ #, fuzzy
1062
+ msgid "Posttypes"
1063
+ msgstr "Post Type"
1064
+
1065
+ #: ../classes/settings.php:666
1066
+ msgid "Others"
1067
  msgstr ""
1068
 
1069
+ #: ../classes/settings.php:667
1070
+ #, fuzzy
1071
+ msgid "Taxonomies"
1072
+ msgstr "Taxonomy"
1073
 
1074
+ #: ../classes/settings.php:688
1075
+ msgid "Store settings"
1076
+ msgstr "Opslaan"
1077
 
1078
+ #: ../classes/settings.php:692
1079
+ msgid "Update"
1080
+ msgstr "Bijwerken"
1081
 
1082
+ #: ../classes/settings.php:696
1083
+ #, fuzzy, php-format
1084
+ msgid ""
1085
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1086
+ "\\' to delete, \\'Cancel\\' to stop"
1087
+ msgstr ""
1088
+ "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
1089
+ "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
1090
 
1091
+ #: ../classes/settings.php:697
1092
+ msgid "columns"
1093
+ msgstr "kolommen"
1094
 
1095
+ #: ../classes/settings.php:710
1096
+ msgid "Get the Pro Add-on"
1097
+ msgstr "Neem de Pro Add-on"
1098
 
1099
+ #: ../classes/settings.php:714
1100
+ msgid "Add Sorting"
1101
+ msgstr "Voeg sorting toe"
1102
 
1103
+ #: ../classes/settings.php:715
1104
+ msgid "Add Filtering"
1105
+ msgstr "Voeg filtering toe"
1106
 
1107
+ #: ../classes/settings.php:716
1108
+ msgid "Add Import/Export"
1109
+ msgstr "Voeg import/export toe"
1110
 
1111
+ #: ../classes/settings.php:719
1112
+ #, php-format
1113
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1114
+ msgstr ""
1115
 
1116
+ #: ../classes/settings.php:750
1117
+ msgid "Support"
1118
+ msgstr "Hulp nodig?"
 
1119
 
1120
+ #: ../classes/settings.php:753
1121
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1122
  msgstr ""
1123
 
1124
+ #: ../classes/settings.php:756
1125
+ #, php-format
1126
+ msgid ""
1127
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1128
+ "href='%s'>visit the Admin Columns website</a>"
1129
+ msgstr ""
1130
 
1131
+ #: ../classes/settings.php:784
1132
+ msgid "Drag and drop to reorder"
1133
+ msgstr "Sleep om te herordenen"
1134
 
1135
+ #: ../classes/settings.php:787
1136
+ msgid "Add Column"
1137
+ msgstr "Voeg Kolom toe"
1138
 
1139
+ #: ../classes/storage_model.php:222
1140
+ msgid "settings succesfully restored."
1141
+ msgstr "instellingen succesvol hersteld."
1142
 
1143
+ #: ../classes/storage_model.php:239
1144
+ msgid "No columns settings available."
1145
+ msgstr "Geen kolom instellingen beschikbaar."
1146
 
1147
+ #: ../classes/storage_model.php:262
1148
+ #, php-format
1149
+ msgid "You are trying to store the same settings for %s."
1150
+ msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
1151
+
1152
+ #: ../classes/storage_model.php:266
1153
+ #, php-format
1154
+ msgid "Settings for %s updated succesfully."
1155
+ msgstr "Instellingen voor %s succesvol bijgewerkt."
1156
 
1157
  #: ../classes/storage_model/comment.php:13
1158
  msgid "Comments"
1165
  #: ../classes/storage_model/user.php:13
1166
  msgid "Users"
1167
  msgstr "Gebruikers"
1168
+
1169
+ #: ../classes/upgrade.php:45
1170
+ msgid "Upgrade"
1171
+ msgstr "Upgrade"
1172
+
1173
+ #: ../classes/upgrade.php:90
1174
+ msgid "requires a database upgrade"
1175
+ msgstr "verreist een database upgrade"
1176
+
1177
+ #: ../classes/upgrade.php:93
1178
+ msgid "why?"
1179
+ msgstr "waarom?"
1180
+
1181
+ #: ../classes/upgrade.php:94
1182
+ msgid "Please"
1183
+ msgstr "Alstublieft"
1184
+
1185
+ #: ../classes/upgrade.php:95
1186
+ msgid "backup your database"
1187
+ msgstr "backup van uw database"
1188
+
1189
+ #: ../classes/upgrade.php:96
1190
+ msgid "then click"
1191
+ msgstr "daarna klik"
1192
+
1193
+ #: ../classes/upgrade.php:304
1194
+ msgid "Migrating Column Settings"
1195
+ msgstr "Migreer Kolom Instellingen"
1196
+
1197
+ #: ../classes/upgrade.php:340
1198
+ msgid "No Upgrade Required"
1199
+ msgstr "Geen upgrade verreist"
1200
+
1201
+ #: ../classes/upgrade.php:341
1202
+ msgid "Return to welcome screen."
1203
+ msgstr "Ga terug naar het welkomst scherm."
1204
+
1205
+ #: ../classes/upgrade.php:359
1206
+ msgid "Upgrade Complete!"
1207
+ msgstr "Upgrade voltooid!"
1208
+
1209
+ #: ../classes/upgrade.php:359
1210
+ msgid "Return to settings."
1211
+ msgstr "Herstel standaard instellingen"
1212
+
1213
+ #: ../classes/upgrade.php:360
1214
+ msgid "Error"
1215
+ msgstr "Fout"
1216
+
1217
+ #: ../classes/upgrade.php:361
1218
+ msgid ""
1219
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1220
+ "on the support forum."
1221
+ msgstr ""
1222
+
1223
+ #: ../codepress-admin-columns.php:447
1224
+ msgid "Edit columns"
1225
+ msgstr "Wijzig kolommen"
1226
+
1227
+ #~ msgid "Publish"
1228
+ #~ msgstr "Publiceren"
languages/cpac-pl_PL.mo CHANGED
Binary file
languages/cpac-pl_PL.po CHANGED
@@ -5,61 +5,53 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/pl_PL/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: pl_PL\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\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:227 ../classes/settings.php:535
27
- msgid "Settings"
28
- msgstr "Ustawienia"
29
-
30
- #: ../codepress-admin-columns.php:350
31
- msgid "Edit columns"
32
- msgstr "Edytuj kolumny"
33
-
34
- #: ../classes/column.php:479
35
  msgid "Thumbnail"
36
  msgstr "Miniatura"
37
 
38
- #: ../classes/column.php:480
39
  msgid "Medium"
40
  msgstr "Średni"
41
 
42
- #: ../classes/column.php:481
43
  msgid "Large"
44
  msgstr "Duży"
45
 
46
- #: ../classes/column.php:482
47
  msgid "Full"
48
  msgstr "Pełny"
49
 
50
- #: ../classes/column.php:774
51
  msgid "Date Format"
52
  msgstr "Format daty"
53
 
54
- #: ../classes/column.php:775
55
  msgid "This will determine how the date will be displayed."
56
  msgstr "Określi to sposób wyświetlania daty."
57
 
58
- #: ../classes/column.php:781
59
  msgid "Example:"
60
  msgstr "Przykład:"
61
 
62
- #: ../classes/column.php:783
63
  #, php-format
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -68,1154 +60,1130 @@ msgstr ""
68
  "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s"
69
  "\">domyślny format daty</a>."
70
 
71
- #: ../classes/column.php:784
72
  msgid "Documentation on date and time formatting."
73
  msgstr "Dokumentacja dotycząca formatowania daty i godziny."
74
 
75
- #: ../classes/column.php:801
76
  msgid "Excerpt length"
77
  msgstr "Długość wypisu"
78
 
79
- #: ../classes/column.php:802
80
  msgid "Number of words"
81
  msgstr "Liczba słów"
82
 
83
- #: ../classes/column.php:824
84
  msgid "Preview size"
85
  msgstr "Wielkość podglądu"
86
 
87
- #: ../classes/column.php:841 ../classes/column.php:897
88
  msgid "Custom"
89
  msgstr "Włąsne"
90
 
91
- #: ../classes/column.php:844
92
  msgid "width"
93
  msgstr "szerokość"
94
 
95
- #: ../classes/column.php:847
96
  msgid "height"
97
  msgstr "wysokość"
98
 
99
- #: ../classes/column.php:898 ../classes/settings.php:224
100
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Default"
102
  msgstr "Domyślny"
103
 
104
- #: ../classes/column.php:923 ../classes/column.php:984
105
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
106
  msgid "Remove"
107
  msgstr "Usuń"
108
 
109
- #: ../classes/column.php:942
110
  msgid "Type"
111
  msgstr "Typ"
112
 
113
- #: ../classes/column.php:942
114
  msgid "Choose a column type."
115
  msgstr "Wybierz typ kolumny."
116
 
117
- #: ../classes/column.php:952
 
 
 
 
 
 
118
  msgid "Label"
119
  msgstr "Etykieta"
120
 
121
- #: ../classes/column.php:952
122
  msgid "This is the name which will appear as the column header."
123
  msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
124
 
125
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
126
  msgid "Width"
127
  msgstr "Szerokość"
128
 
129
- #: ../classes/column.php:961 ../classes/column.php:962
130
  msgid "default"
131
  msgstr "domyśłny"
132
 
133
- #: ../classes/settings.php:68
134
- msgid "Admin Columns Settings"
135
- msgstr "Ustawienia edytora kolumn"
 
 
 
136
 
137
- #: ../classes/settings.php:68 ../classes/settings.php:534
138
- #: ../classes/upgrade.php:89
139
- msgid "Admin Columns"
140
- msgstr "Edytor kolumn"
141
 
142
- #: ../classes/settings.php:129
143
- #, php-format
144
- msgid "%s column is already present and can not be duplicated."
145
- msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
146
 
147
- #: ../classes/settings.php:184
148
- msgid "Default settings succesfully restored."
149
- msgstr "Domyślne ustawienia zostały przywrócone."
 
150
 
151
- #: ../classes/settings.php:202 ../classes/settings.php:457
152
- msgid "Overview"
153
- msgstr "Przegląd"
 
154
 
155
- #: ../classes/settings.php:205
156
- msgid ""
157
- "This plugin is for adding and removing additional columns to the "
158
- "administration screens for post(types), pages, media library, comments, "
159
- "links and users. Change the column's label and reorder them."
160
- msgstr ""
161
- "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, "
162
- "stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić "
163
- "nazwy kolumn i ich kolejność."
164
 
165
- #: ../classes/settings.php:208
166
- msgid "Basics"
167
- msgstr "Podstawy"
168
 
169
- #: ../classes/settings.php:210
170
- msgid "Change order"
171
- msgstr "Zmień kolejność"
172
 
173
- #: ../classes/settings.php:211
174
- msgid ""
175
- "By dragging the columns you can change the order which they will appear in."
176
- msgstr ""
177
- "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
178
 
179
- #: ../classes/settings.php:212
180
- msgid "Change label"
181
- msgstr "Zmień etykietę"
182
 
183
- #: ../classes/settings.php:213
184
- msgid ""
185
- "By clicking on the triangle you will see the column options. Here you can "
186
- "change each label of the columns heading."
187
- msgstr ""
188
- "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z "
189
- "nich."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
 
 
191
  #: ../classes/settings.php:214
192
- msgid "Change column width"
193
- msgstr "Zmień szerokość kolumn"
194
 
195
- #: ../classes/settings.php:215
196
- msgid ""
197
- "By clicking on the triangle you will see the column options. By using the "
198
- "draggable slider you can set the width of the columns in percentages."
199
- msgstr ""
200
- "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w "
201
- "slajderze możesz ustawić w procentach szerokość kolumn."
 
202
 
203
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
204
- #: ../classes/column/custom-field.php:324
205
  msgid "Custom Field"
206
  msgstr "Własne pole"
207
 
208
- #: ../classes/settings.php:221
209
- msgid "'Custom Field' column"
210
- msgstr "Kolumna 'Własne pole'"
211
 
212
- #: ../classes/settings.php:222
213
- msgid ""
214
- "The custom field colum uses the custom fields from posts and users. There "
215
- "are 10 types which you can set."
216
- msgstr ""
217
- "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz "
218
- "wybrać 1 z 10 typów."
219
 
220
- #: ../classes/settings.php:224
221
- msgid ""
222
- "Value: Can be either a string or array. Arrays will be flattened and values "
223
- "are seperated by a ',' comma."
224
  msgstr ""
225
- "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a "
226
- "warości oddzielone przecinkami."
227
 
228
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
229
- #: ../classes/column/link/image.php:12
230
  msgid "Image"
231
  msgstr "Obrazek"
232
 
233
- #: ../classes/settings.php:225
234
- msgid ""
235
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
236
- "comma )."
237
- msgstr ""
238
- "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone "
239
- "przecinkami)."
240
-
241
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
242
- #: ../classes/column/comment/excerpt.php:13
243
- #: ../classes/column/post/excerpt.php:13
244
- msgid "Excerpt"
245
- msgstr "Wypis"
246
-
247
- #: ../classes/settings.php:226
248
- msgid "Value: This will show the first 20 words of the Post content."
249
- msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
250
 
251
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
252
  msgid "Multiple Values"
253
  msgstr "Wielokrotne wartości"
254
 
255
- #: ../classes/settings.php:227
256
- msgid ""
257
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
258
- msgstr ""
259
- "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
260
-
261
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
262
  msgid "Numeric"
263
  msgstr "Numeryczny"
264
 
265
- #: ../classes/settings.php:228
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
- "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to "
271
- "zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych "
272
- "pól)."
273
 
274
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
275
- #: ../classes/column/comment/date.php:12
276
- msgid "Date"
277
- msgstr "Data"
278
 
279
- #: ../classes/settings.php:229
280
- #, php-format
281
- msgid ""
282
- "Value: Can be unix time stamp or a date format as described in the <a "
283
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
284
- "href='%s'>general settings</a> page."
285
- msgstr ""
286
- "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a "
287
- "href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a "
288
- "href='%s'>Ustawień głównych</a>."
289
 
290
- #: ../classes/settings.php:230
291
- msgid "Post Titles"
292
- msgstr "Tytyły wpisu"
293
 
294
- #: ../classes/settings.php:230
295
- msgid "Value: can be one or more Post ID's (seperated by ',')."
296
- msgstr ""
297
- "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
298
 
299
- #: ../classes/settings.php:231
300
- msgid "Usernames"
301
- msgstr "Nazwy użytkowników"
302
 
303
- #: ../classes/settings.php:231
304
- msgid "Value: can be one or more User ID's (seperated by ',')."
 
 
 
305
  msgstr ""
306
- "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone "
307
- "przecinkami)."
308
 
309
- #: ../classes/settings.php:232
310
- msgid "Checkmark"
311
- msgstr "Znak tak/nie"
312
 
313
- #: ../classes/settings.php:232
314
- msgid "Value: should be a 1 (one) or 0 (zero)."
315
- msgstr "Wartość: Powinno to być 1 lub 0."
 
 
316
 
317
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
318
- msgid "Color"
319
- msgstr "Kolor"
320
 
321
- #: ../classes/settings.php:233
322
- msgid "Value: hex value color, such as #808080."
323
- msgstr "Wartość: Kolor w HEX, np. #808080."
324
 
325
- #: ../classes/settings.php:377
326
- msgid "Welcome to Admin Columns"
327
- msgstr "Witaj w Edytorze kolumn"
328
 
329
- #: ../classes/settings.php:380
330
- msgid "Thank you for updating to the latest version!"
331
- msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
332
 
333
- #: ../classes/settings.php:381
334
- msgid ""
335
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
336
- "like it."
337
- msgstr ""
338
- "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy "
339
- "nadzięję że Ci się spodoba."
340
 
341
- #: ../classes/settings.php:386
342
- msgid "What’s New"
343
- msgstr "Co nowego"
344
 
345
- #: ../classes/settings.php:387
346
- msgid "Changelog"
347
- msgstr "Dziennik zmian"
348
 
349
- #: ../classes/settings.php:389
350
- msgid "Download Addons"
351
- msgstr "Pobierz dodatki"
352
 
353
- #: ../classes/settings.php:395
354
- msgid "Addons"
355
- msgstr "Dodatki"
 
356
 
357
- #: ../classes/settings.php:397
358
- msgid ""
359
- "Addons are now activated by downloading and installing individual plugins. "
360
- "Although these plugins will not be hosted on the wordpress.org repository, "
361
- "each Add-on will continue to receive updates in the usual way."
362
- msgstr ""
363
- "Dodatki są aktywowane poprzez wczytanie i instalację oddzielnych wtyczek. "
364
- "Chociaż niektóre wtyczki nie będą utrzymywane w repozytorium wordpress.org, "
365
- "każdy z dodatków będzie mógł być automatycznie aktualizowany."
366
 
367
- #: ../classes/settings.php:400
368
- msgid ""
369
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
370
- msgstr "Ta strona korzysta z dodatku sortowania. Musisz go pobrać."
371
 
372
- #: ../classes/settings.php:403
373
- msgid "Addons are seperate plugins which need to be downloaded."
374
- msgstr "Dodatki są oddzielnymi wtyczkami, które muszą być pobrane."
375
 
376
- #: ../classes/settings.php:403
377
- msgid "Download your Addons"
378
- msgstr "Pobierz swoje dodatki"
379
 
380
- #: ../classes/settings.php:409
381
- msgid "This website does not use add-ons"
382
- msgstr "Ta strona nie korzysta z dodatków"
383
 
384
- #: ../classes/settings.php:409
385
- msgid "See our website for the Pro-addon."
386
- msgstr "Przejdź do naszej strony aby pobrać dodatek."
387
 
388
- #: ../classes/settings.php:416
389
- msgid "Important"
390
- msgstr "Ważne"
391
 
392
- #: ../classes/settings.php:418
393
- msgid "Database Changes"
394
- msgstr "Zmiany w bazie danych"
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
- "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do "
402
- "wersji 1 bez żadnych problemów."
403
 
404
- #: ../classes/settings.php:422
405
- msgid "Make sure you backup your database and then click"
406
- msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
407
 
408
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
409
- msgid "Upgrade Database"
410
- msgstr "Aktualizuj bazę danych"
411
 
412
- #: ../classes/settings.php:425
413
- msgid "Potential Issues"
414
- msgstr "Potencjalne problemy"
415
 
416
- #: ../classes/settings.php:426
417
- msgid ""
418
- "Do to the sizable refactoring the code, surounding Addons and action/"
419
- "filters, your website may not operate correctly. It is important that you "
420
- "read the full"
421
- msgstr ""
422
- "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i "
423
- "akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać "
424
- "pełną"
425
 
426
- #: ../classes/settings.php:426
427
- msgid "Migrating from v1 to v2"
428
- msgstr "Migracja z wersji 1 do 2"
429
 
430
- #: ../classes/settings.php:426
431
- msgid "guide to view the full list of changes."
432
- msgstr "dokumentację i zapoznać się z listą zmian."
433
 
434
- #: ../classes/settings.php:426
435
- #, php-format
436
- msgid ""
437
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
438
- "can fix it in the next release."
439
- msgstr ""
440
- "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w "
441
- "kolejnej wersji."
442
 
443
- #: ../classes/settings.php:429
444
- msgid "Important!"
445
- msgstr "Ważne!"
446
 
447
- #: ../classes/settings.php:429
448
- msgid ""
449
- "If you updated the Admin Columns plugin without prior knowledge of such "
450
- "changes, Please roll back to the latest"
451
- msgstr ""
452
- "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz "
453
- "powrócić do poprzedniej"
454
 
455
- #: ../classes/settings.php:429
456
- msgid "version 1"
457
- msgstr "wersja 1"
458
 
459
- #: ../classes/settings.php:429
460
- msgid "of this plugin."
461
- msgstr "tej wtyczki."
462
 
463
- #: ../classes/settings.php:435
464
- msgid "Changelog for"
465
- msgstr "Dziennik zmian dla"
 
 
466
 
467
- #: ../classes/settings.php:450
468
- msgid "Learn more"
469
- msgstr "Dowiedz się więcej"
470
 
471
- #: ../classes/settings.php:459
472
- msgid ""
473
- "New to v2, all Addons act as separate plugins which need to be individually "
474
- "downloaded, installed and updated."
475
- msgstr ""
476
- "Nowość w wersji 2, wszystkie dodatki funkcjonują jako oddzielne wtyczki, "
477
- "które muszą być oddzielnie wgrywane, instalowane i aktualizowane."
478
 
479
- #: ../classes/settings.php:460
480
- msgid ""
481
- "This page will assist you in downloading and installing each available Addon."
482
- msgstr "Ta strona pomoże Ci w pobraniu i instalacji dostępnych dodatków."
483
 
484
- #: ../classes/settings.php:461
485
- msgid "Available Addons"
486
- msgstr "Dostępne dodatki"
 
487
 
488
- #: ../classes/settings.php:466
489
- msgid "Name"
490
- msgstr "Nazwa"
491
 
492
- #: ../classes/settings.php:467 ../classes/settings.php:475
493
- msgid "Download"
494
- msgstr "Pobierz"
495
 
496
- #: ../classes/settings.php:473
497
- msgid "Pro Add-on (includes Sortorder add-on)"
498
- msgstr "Dodatek (w tym sortowanie)"
499
 
500
- #: ../classes/settings.php:483
501
- msgid "Installation"
502
- msgstr "Instalacja"
503
 
504
- #: ../classes/settings.php:485
505
- msgid "For each Add-on available, please perform the following:"
506
- msgstr "Dla każdego dodatku wykonaj następujące czynności:"
507
 
508
- #: ../classes/settings.php:487
509
- msgid "Download the Addon plugin (.zip file) to your desktop"
510
- msgstr "Pobierz dodatek na swój komputer"
511
 
512
- #: ../classes/settings.php:488
513
- msgid "Navigate to"
514
- msgstr "Przejdź do"
515
 
516
- #: ../classes/settings.php:488
517
- msgid "Plugins > Add New > Upload"
518
- msgstr "Wtyczki > Dodaj nową > Wgraj"
 
519
 
520
- #: ../classes/settings.php:489
521
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
522
- msgstr "Użyj instalacji dodatku z pliku .zip"
523
 
524
- #: ../classes/settings.php:490
525
- msgid ""
526
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
527
- "link"
528
- msgstr "Po wczytaniu i instalacji wtyczki kliknij link 'Aktywacja wtyczki'"
529
 
530
- #: ../classes/settings.php:491
531
- msgid "The Add-on is now installed and activated!"
532
- msgstr "Dodatek został zaktualizowany i włączony."
533
 
534
- #: ../classes/settings.php:492
535
- #, php-format
536
- msgid ""
537
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
538
- msgstr ""
539
- "Aby uzyskać automatyczne aktualizacje podaj swój <a href='%s'>klucz "
540
- "licencji</a>."
541
 
542
- #: ../classes/settings.php:502
543
- msgid "Start using Admin Columns"
544
- msgstr "Zacznij korzystać z Edytora kolumn"
545
 
546
- #: ../classes/settings.php:580
547
- msgid "Store settings"
548
- msgstr "Zapisz ustawienia"
549
 
550
- #: ../classes/settings.php:585
551
- msgid "Update"
552
- msgstr "Aktualizuj"
553
 
554
- #: ../classes/settings.php:585
555
- msgid "Publish"
556
- msgstr "Opublikuj"
557
 
558
- #: ../classes/settings.php:589
559
- #, php-format
560
- msgid ""
561
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
562
- "\\' to delete, \\'Cancel\\' to stop"
563
- msgstr ""
564
- "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można "
565
- "przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
566
 
567
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
568
- #: ../classes/column/post/actions.php:53
569
- msgid "Restore"
570
- msgstr "Przywróć"
571
 
572
- #: ../classes/settings.php:590
573
- msgid "columns"
574
- msgstr "kolumny"
 
575
 
576
- #: ../classes/settings.php:600
577
- msgid "Get the Pro Add-on"
578
- msgstr "Kup dodatek"
579
 
580
- #: ../classes/settings.php:604
581
- msgid "Add Sorting"
582
- msgstr "Dodaj sortowanie"
583
 
584
- #: ../classes/settings.php:605
585
- msgid "Add Filtering"
586
- msgstr "Dodaj filtrowanie"
587
 
588
- #: ../classes/settings.php:606
589
- msgid "Add Import/Export"
590
- msgstr "Dodaj Import/Export"
591
 
592
- #: ../classes/settings.php:609
593
- #, php-format
594
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
595
- msgstr "Sprawdź <a href=\"%s\">Dodatki Pro</a> aby dowiedzieć się więcej!!"
596
 
597
- #: ../classes/settings.php:617
598
- msgid "Support"
599
- msgstr "Pomocy"
600
 
601
- #: ../classes/settings.php:620
602
- msgid "Check the <strong>Help</strong> section in the top-right screen."
603
- msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
604
 
605
- #: ../classes/settings.php:622
606
- #, php-format
607
- msgid ""
608
- "For full documentation, bug reports, feature suggestions and other tips <a "
609
- "href='%s'>visit the Admin Columns website</a>"
610
- msgstr ""
611
- "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych "
612
- "funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora "
613
- "kolumn</a>"
614
 
615
- #: ../classes/settings.php:642
616
- msgid "Drag and drop to reorder"
617
- msgstr "Przeciągnij i opuść aby zmienić kolejność"
618
 
619
- #: ../classes/settings.php:645
620
- msgid "Add Column"
621
- msgstr "Dodaj kolumnę"
622
 
623
- #: ../classes/settings.php:696
624
- msgid "General Settings"
625
- msgstr "Ustawienia ogólne"
626
 
627
- #: ../classes/settings.php:697
628
- msgid "Customize your Admin Columns settings."
629
- msgstr "Zmodyfikuj ustawienia Edytora kolumn."
630
 
631
- #: ../classes/settings.php:710
632
- msgid "Show hidden custom fields. Default is <code>off</code>."
633
- msgstr "Wyświetl ukryte własne pola. Domyślnie jest <code>wyłączone</code>."
634
 
635
- #: ../classes/settings.php:716
636
- msgid ""
637
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
638
- msgstr ""
639
- "Wyświetl przycisk \"Edytuj kolumny\" na ekranie edycji. Domyślnie jest "
640
- "<code>wyłączone</code>."
641
 
642
- #: ../classes/settings.php:723
643
- msgid "Save"
644
- msgstr "Zapisz"
645
 
646
- #: ../classes/settings.php:763
647
- msgid "Restore Settings"
648
- msgstr "Przywróć ustawienia"
649
 
650
- #: ../classes/settings.php:764
651
- msgid "This will delete all column settings and restore the default settings."
652
- msgstr ""
653
- "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień "
654
- "domyślnych."
655
 
656
- #: ../classes/settings.php:770
657
- msgid "Restore default settings"
658
- msgstr "Przywróć ustawienia domyślne"
659
 
660
- #: ../classes/settings.php:770
661
- msgid ""
662
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
663
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
664
- msgstr ""
665
- "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji "
666
- "nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby "
667
- "przerwać."
668
 
669
- #: ../classes/storage_model.php:167
670
- msgid "settings succesfully restored."
671
- msgstr "ustawienia zostały przywrócone."
672
 
673
- #: ../classes/storage_model.php:181
674
- msgid "No columns settings available."
675
- msgstr "Brak dostępnych ustawień kolumn."
676
 
677
- #: ../classes/storage_model.php:204
678
- #, php-format
679
- msgid "You are trying to store the same settings for %s."
680
- msgstr "Próbujesz przywrócić te same ustawienia dla %s."
681
 
682
- #: ../classes/storage_model.php:208
683
- #, php-format
684
- msgid "Settings for %s updated succesfully."
685
- msgstr "Ustawienia dla %s zostały zaktualizowane."
686
 
687
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
688
- msgid "View"
689
- msgstr "Zobacz"
690
 
691
- #: ../classes/upgrade.php:45
692
- msgid "Upgrade"
693
- msgstr "Aktualizuj"
694
 
695
- #: ../classes/upgrade.php:90
696
- msgid "requires a database upgrade"
697
- msgstr "wymaga aktualizacji bazy danych"
698
 
699
- #: ../classes/upgrade.php:93
700
- msgid "why?"
701
- msgstr "dlaczego?"
702
 
703
- #: ../classes/upgrade.php:94
704
- msgid "Please"
705
- msgstr "Proszę"
 
706
 
707
- #: ../classes/upgrade.php:95
708
- msgid "backup your database"
709
- msgstr "zrobić kopię zapasową bazy danych"
 
710
 
711
- #: ../classes/upgrade.php:96
712
- msgid "then click"
713
- msgstr "a następnie kliknąć"
714
 
715
- #: ../classes/upgrade.php:304
716
- msgid "Migrating Column Settings"
717
- msgstr "Migracja ustawień kolumn"
718
 
719
- #: ../classes/upgrade.php:340
720
- msgid "No Upgrade Required"
721
- msgstr "Aktualizacja nie jest wymagana"
 
 
 
 
 
 
722
 
723
- #: ../classes/upgrade.php:341
724
- msgid "Return to welcome screen."
725
- msgstr "Powróć do ekranu powitalnego"
726
 
727
- #: ../classes/upgrade.php:359
728
- msgid "Upgrade Complete!"
729
- msgstr "Aktualizacja zakończona"
730
-
731
- #: ../classes/upgrade.php:359
732
- msgid "Return to settings."
733
- msgstr "Przywróć do ustawień"
734
-
735
- #: ../classes/upgrade.php:360
736
- msgid "Error"
737
- msgstr "Błąd"
738
 
739
- #: ../classes/upgrade.php:361
740
  msgid ""
741
- "Sorry. Something went wrong during the upgrade process. Please report this "
742
- "on the support forum."
743
  msgstr ""
744
- "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym "
745
- "na forum pomocy."
746
-
747
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
748
- msgid "Media Library"
749
- msgstr "Biblioteka mediów"
750
-
751
- #: ../classes/column/custom-field.php:79
752
- msgid "Post Title (Post ID's)"
753
- msgstr "Tytył wpisu (ID wpisu)"
754
-
755
- #: ../classes/column/custom-field.php:80
756
- msgid "Username (User ID's)"
757
- msgstr "Użytkownik (ID użytkownika)"
758
-
759
- #: ../classes/column/custom-field.php:81
760
- msgid "Checkmark (true/false)"
761
- msgstr "Znak (prawda/fałsz)"
762
-
763
- #: ../classes/column/custom-field.php:324
764
- msgid "Select your custom field."
765
- msgstr "Wybierz własne pole."
766
-
767
- #: ../classes/column/custom-field.php:334
768
- msgid "No custom fields available."
769
- msgstr "Brak dostępnych własnych pól."
770
-
771
- #: ../classes/column/custom-field.php:341
772
- msgid "Field Type"
773
- msgstr "Rodzaj pola"
774
-
775
- #: ../classes/column/custom-field.php:341
776
- msgid "This will determine how the value will be displayed."
777
- msgstr "Określi to sposób wyświetlania wartości."
778
-
779
- #: ../classes/column/custom-field.php:384
780
- msgid "Before"
781
- msgstr "Przed"
782
-
783
- #: ../classes/column/custom-field.php:384
784
- msgid "This text will appear before the custom field value."
785
- msgstr "Ten tekst pojawi się przed wartością własnego pola."
786
-
787
- #: ../classes/column/custom-field.php:390
788
- msgid "After"
789
- msgstr "Po"
790
-
791
- #: ../classes/column/custom-field.php:390
792
- msgid "This text will appear after the custom field value."
793
- msgstr "Ten tekst pojawi się po wartości własnego pola."
794
 
795
- #: ../classes/column/comment/actions.php:14
796
- #: ../classes/column/link/actions.php:14
797
- #: ../classes/column/media/actions.php:14
798
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
799
- msgid "Actions"
800
- msgstr "Działania"
801
 
802
- #: ../classes/column/comment/actions.php:73
803
- #: ../classes/column/comment/actions.php:78
804
- msgid "Unapprove"
805
- msgstr "Odrzuć"
 
 
 
806
 
807
- #: ../classes/column/comment/actions.php:75
808
- #: ../classes/column/comment/actions.php:77
809
- msgid "Approve"
810
- msgstr "Zatwierdź"
811
 
812
- #: ../classes/column/comment/actions.php:90
813
- #: ../classes/column/post/actions.php:57
814
- msgid "Delete Permanently"
815
- msgstr "Usuń na zawsze"
 
 
 
816
 
817
- #: ../classes/column/comment/actions.php:96
818
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
819
- #: ../classes/column/user/actions.php:57
820
- msgid "Edit"
821
- msgstr "Edytuj"
822
 
823
- #: ../classes/column/comment/actions.php:97
824
- #: ../classes/column/post/actions.php:49
825
- msgid "Quick&nbsp;Edit"
826
- msgstr "Szybka&nbsp;edycja"
 
 
 
827
 
828
- #: ../classes/column/comment/actions.php:98
829
- msgid "Reply"
830
- msgstr "Odpowiedź"
 
 
 
 
831
 
832
- #: ../classes/column/comment/agent.php:12
833
- msgid "Agent"
834
- msgstr "Przeglądarka"
 
 
 
 
835
 
836
- #: ../classes/column/comment/approved.php:12
837
- #: ../classes/column/post/comment-count.php:31
838
- msgid "Approved"
839
- msgstr "Zatwierdzony"
840
 
841
- #: ../classes/column/comment/author-avatar.php:12
842
- msgid "Avatar"
843
- msgstr "Avatar"
 
 
844
 
845
- #: ../classes/column/comment/author-email.php:12
846
- msgid "Author email"
847
- msgstr "Email Autora"
 
 
 
 
 
848
 
849
- #: ../classes/column/comment/author-ip.php:12
850
- msgid "Author IP"
851
- msgstr "IP Autora"
 
 
 
 
 
 
 
852
 
853
- #: ../classes/column/comment/author-url.php:12
854
- msgid "Author url"
855
- msgstr "URL Autora"
856
 
857
- #: ../classes/column/comment/author.php:12
858
- msgid "Author"
859
- msgstr "Autor"
 
860
 
861
- #: ../classes/column/comment/date-gmt.php:12
862
- msgid "Date GMT"
863
- msgstr "Data GMT"
864
 
865
- #: ../classes/column/comment/date-gmt.php:25
866
- #: ../classes/column/comment/date.php:25
867
- #, php-format
868
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
869
- msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
870
 
871
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
872
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
873
- msgid "ID"
874
- msgstr "ID"
875
 
876
- #: ../classes/column/comment/reply-to.php:12
877
- msgid "In Reply To"
878
- msgstr "W odpowiedzi na"
879
 
880
- #: ../classes/column/comment/word-count.php:12
881
- #: ../classes/column/post/word-count.php:12
882
- msgid "Word count"
883
- msgstr "Liczba słów"
884
 
885
- #: ../classes/column/link/actions.php:46
886
- #, php-format
887
  msgid ""
888
- "You are about to delete this link '%s'\n"
889
- " 'Cancel' to stop, 'OK' to delete."
890
  msgstr ""
891
- "Zamierzasz usunąć ten link link '%s'\n"
892
- " 'Cancel' to stop, 'OK' to delete."
893
-
894
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
895
- msgid "Delete"
896
- msgstr "Usuń"
897
-
898
- #: ../classes/column/link/description.php:12
899
- #: ../classes/column/media/description.php:12
900
- #: ../classes/column/user/description.php:14
901
- msgid "Description"
902
- msgstr "Opis"
903
-
904
- #: ../classes/column/link/length.php:12
905
- msgid "Length"
906
- msgstr "Długość"
907
 
908
- #: ../classes/column/link/notes.php:13
909
- msgid "Notes"
910
- msgstr "Notatki"
911
 
912
- #: ../classes/column/link/owner.php:12
913
- msgid "Owner"
914
- msgstr "Właściciel"
915
 
916
- #: ../classes/column/link/rss.php:12
917
- msgid "Rss"
918
- msgstr "Rss"
 
 
 
 
919
 
920
- #: ../classes/column/link/target.php:12
921
- msgid "Target"
922
- msgstr "Cel"
923
 
924
- #: ../classes/column/media/alternate-text.php:12
925
- msgid "Alt"
926
- msgstr "Tekst alternatywny"
927
 
928
- #: ../classes/column/media/available-sizes.php:14
929
- msgid "Available Sizes"
930
- msgstr "Dostępne rozmiary"
931
 
932
- #: ../classes/column/media/available-sizes.php:37
933
- msgid "full size"
934
- msgstr "pełny rozmiar"
935
 
936
- #: ../classes/column/media/caption.php:12
937
- #: ../classes/column/media/exif-data.php:36
938
- msgid "Caption"
939
- msgstr "Tytuł"
 
 
 
 
 
940
 
941
- #: ../classes/column/media/dimensions.php:12
942
- msgid "Dimensions"
943
- msgstr "Wymiary"
 
944
 
945
- #: ../classes/column/media/exif-data.php:12
946
- msgid "EXIF data"
947
- msgstr "Dane EXIF"
948
 
949
- #: ../classes/column/media/exif-data.php:33
950
- msgid "Aperture"
951
- msgstr "Przysłona"
952
 
953
- #: ../classes/column/media/exif-data.php:34
954
- msgid "Credit"
955
- msgstr "Autor"
956
 
957
- #: ../classes/column/media/exif-data.php:35
958
- msgid "Camera"
959
- msgstr "Aparat"
960
 
961
- #: ../classes/column/media/exif-data.php:37
962
- msgid "Timestamp"
963
- msgstr "Data"
964
 
965
- #: ../classes/column/media/exif-data.php:38
966
- msgid "Copyright EXIF"
967
- msgstr "Prawa autorskie EXIF"
968
 
969
- #: ../classes/column/media/exif-data.php:39
970
- msgid "Focal Length"
971
- msgstr "Ogniskowa"
 
 
 
 
972
 
973
- #: ../classes/column/media/exif-data.php:40
974
- msgid "ISO"
975
- msgstr "ISO"
976
 
977
- #: ../classes/column/media/exif-data.php:41
978
- msgid "Shutter Speed"
979
- msgstr "Szybkość migawki"
980
 
981
- #: ../classes/column/media/exif-data.php:42
982
- msgid "Title"
983
- msgstr "Tytuł"
984
 
985
- #: ../classes/column/media/file-name.php:12
986
- msgid "File name"
987
- msgstr "Nazwa pliku"
 
 
 
 
 
 
988
 
989
- #: ../classes/column/media/file-size.php:12
990
- msgid "File size"
991
- msgstr "Wielkość pliku"
992
 
993
- #: ../classes/column/media/full-path.php:12
994
- msgid "Full path"
995
- msgstr "Pełna ścieżka"
996
 
997
- #: ../classes/column/media/height.php:12
998
- msgid "Height"
999
- msgstr "Wysokość"
 
 
 
 
 
1000
 
1001
- #: ../classes/column/media/mime-type.php:12
1002
- msgid "Mime type"
1003
- msgstr "Typ pliku"
1004
 
1005
- #: ../classes/column/post/actions.php:48
1006
- msgid "Edit this item"
1007
- msgstr "Edytuj element"
 
 
 
 
1008
 
1009
- #: ../classes/column/post/actions.php:49
1010
- msgid "Edit this item inline"
1011
- msgstr "Edytuj element"
1012
 
1013
- #: ../classes/column/post/actions.php:53
1014
- msgid "Restore this item from the Trash"
1015
- msgstr "Przywróć ten element z kosza"
1016
 
1017
- #: ../classes/column/post/actions.php:55
1018
- msgid "Move this item to the Trash"
1019
- msgstr "Przenieś ten element do kosza"
1020
 
1021
- #: ../classes/column/post/actions.php:55
1022
- #: ../classes/column/post/comment-count.php:34
1023
- #: ../classes/column/post/status.php:35
1024
- msgid "Trash"
1025
- msgstr "Kosz"
1026
 
1027
- #: ../classes/column/post/actions.php:57
1028
- msgid "Delete this item permanently"
1029
- msgstr "Usuń ten element na zawsze"
 
 
 
 
1030
 
1031
- #: ../classes/column/post/actions.php:62
1032
- #, php-format
1033
- msgid "Preview &#8220;%s&#8221;"
1034
- msgstr "Podejrzyj &#8220;%s&#8221;"
1035
 
1036
- #: ../classes/column/post/actions.php:62
1037
- msgid "Preview"
1038
- msgstr "Podejrzyj"
1039
 
1040
- #: ../classes/column/post/actions.php:64
1041
- #, php-format
1042
- msgid "View &#8220;%s&#8221;"
1043
- msgstr "Zobacz &#8220;%s&#8221;"
1044
 
1045
- #: ../classes/column/post/attachment-count.php:12
1046
- msgid "No. of Attachments"
1047
- msgstr "Liczba załączników"
1048
 
1049
- #: ../classes/column/post/attachment.php:12
1050
- msgid "Attachment"
1051
- msgstr "Załącznik"
1052
 
1053
- #: ../classes/column/post/author-name.php:12
1054
- msgid "Display Author As"
1055
- msgstr "Wyświetla autora jako"
1056
 
1057
- #: ../classes/column/post/author-name.php:33
1058
- msgid "Display Name"
1059
- msgstr "Pseudonim"
1060
 
1061
- #: ../classes/column/post/author-name.php:34
1062
- msgid "First Name"
1063
- msgstr "Imię"
1064
 
1065
- #: ../classes/column/post/author-name.php:35
1066
- msgid "Last Name"
1067
- msgstr "Nazwisko"
1068
 
1069
- #: ../classes/column/post/author-name.php:36
1070
- #: ../classes/column/user/nickname.php:14
1071
- msgid "Nickname"
1072
- msgstr "Pseudonim"
1073
 
1074
- #: ../classes/column/post/author-name.php:37
1075
- msgid "User Login"
1076
- msgstr "Login użytkownika"
1077
 
1078
- #: ../classes/column/post/author-name.php:38
1079
- msgid "User Email"
1080
- msgstr "Email użytkownika"
 
 
1081
 
1082
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1083
- msgid "User ID"
1084
- msgstr "ID użytkownika"
1085
 
1086
- #: ../classes/column/post/author-name.php:40
1087
- msgid "First and Last Name"
1088
- msgstr "Imię i nazwisko"
 
 
 
 
1089
 
1090
- #: ../classes/column/post/author-name.php:106
1091
- msgid "This is the format of the author name."
1092
- msgstr "To jest format autora"
1093
 
1094
- #: ../classes/column/post/before-moretag.php:14
1095
- msgid "Before More Tag"
1096
- msgstr "Przed tagiem Czytaj dalej"
1097
 
1098
- #: ../classes/column/post/comment-count.php:14
1099
- msgid "Comment count"
1100
- msgstr "Liczba komentarzy"
1101
 
1102
- #: ../classes/column/post/comment-count.php:30
1103
- msgid "Total"
1104
- msgstr "Ogółem"
1105
 
1106
- #: ../classes/column/post/comment-count.php:32
1107
- msgid "Pending"
1108
- msgstr "Oczekujący"
 
 
 
1109
 
1110
- #: ../classes/column/post/comment-count.php:33
1111
- msgid "Spam"
1112
- msgstr "Spam"
1113
 
1114
- #: ../classes/column/post/comment-count.php:78
1115
- #: ../classes/column/post/comment-status.php:14
1116
- msgid "Comment status"
1117
- msgstr "Status komentarza"
1118
 
1119
- #: ../classes/column/post/comment-count.php:78
1120
- msgid "Select which comment status you like to display."
1121
- msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
 
 
1122
 
1123
- #: ../classes/column/post/featured-image.php:14
1124
- msgid "Featured Image"
1125
- msgstr "Ikona wpisu"
1126
 
1127
- #: ../classes/column/post/formats.php:14
1128
- msgid "Post Format"
1129
- msgstr "Format wpisu"
 
 
 
 
 
1130
 
1131
- #: ../classes/column/post/modified.php:14
1132
- msgid "Last modified"
1133
- msgstr "Ostatnia modyfikacja"
1134
 
1135
- #: ../classes/column/post/order.php:14
1136
- msgid "Page Order"
1137
- msgstr "Kolejność stron"
 
1138
 
1139
- #: ../classes/column/post/page-template.php:12
1140
- msgid "Page Template"
1141
- msgstr "Szablon strony"
1142
 
1143
- #: ../classes/column/post/parent.php:12
1144
- msgid "Parent"
1145
- msgstr "Rodzic"
 
1146
 
1147
- #: ../classes/column/post/ping-status.php:14
1148
- msgid "Ping status"
1149
- msgstr "Status ping"
1150
 
1151
- #: ../classes/column/post/roles.php:14
1152
- msgid "Roles"
1153
- msgstr "Role"
1154
 
1155
- #: ../classes/column/post/slug.php:12
1156
- msgid "Slug"
1157
- msgstr "Bezpośredni odnośnik"
 
 
 
 
 
1158
 
1159
- #: ../classes/column/post/status.php:14
1160
- msgid "Status"
1161
- msgstr "Status"
1162
 
1163
- #: ../classes/column/post/status.php:30
1164
- msgid "Published"
1165
- msgstr "Opublikowany"
1166
 
1167
- #: ../classes/column/post/status.php:31
1168
- msgid "Draft"
1169
- msgstr "Szkic"
1170
 
1171
- #: ../classes/column/post/status.php:32
1172
- msgid "Scheduled"
1173
- msgstr "Zaplanowany"
1174
 
1175
- #: ../classes/column/post/status.php:33
1176
- msgid "Private"
1177
- msgstr "Prywatny"
1178
 
1179
- #: ../classes/column/post/status.php:34
1180
- msgid "Pending Review"
1181
- msgstr "Oczekujący na przegląd"
 
1182
 
1183
- #: ../classes/column/post/sticky.php:14
1184
- msgid "Sticky"
1185
- msgstr "Przyklejone"
1186
 
1187
- #: ../classes/column/post/taxonomy.php:12
1188
- #: ../classes/column/post/taxonomy.php:68
1189
- msgid "Taxonomy"
1190
- msgstr "Taksonomia"
1191
 
1192
- #: ../classes/column/user/comment-count.php:14
1193
- msgid "Comment Count"
1194
- msgstr "Liczba komentarzy"
 
 
 
 
 
 
1195
 
1196
- #: ../classes/column/user/first-name.php:14
1197
- msgid "First name"
1198
- msgstr "Imię"
1199
 
1200
- #: ../classes/column/user/last-name.php:14
1201
- msgid "Last name"
1202
- msgstr "Nazwisko"
1203
 
1204
- #: ../classes/column/user/post-count.php:14
1205
- msgid "Post Count"
1206
- msgstr "Liczba wpisów"
1207
 
1208
- #: ../classes/column/user/post-count.php:92
1209
- msgid "Post Type"
1210
- msgstr "Typ wpisu"
1211
 
1212
- #: ../classes/column/user/registered.php:14
1213
- msgid "Registered"
1214
- msgstr "Zarejestrowany"
 
1215
 
1216
- #: ../classes/column/user/url.php:14
1217
- msgid "Url"
1218
- msgstr "Adres URL"
 
1219
 
1220
  #: ../classes/storage_model/comment.php:13
1221
  msgid "Comments"
@@ -1228,3 +1196,66 @@ msgstr "Linki"
1228
  #: ../classes/storage_model/user.php:13
1229
  msgid "Users"
1230
  msgstr "Użytkownicy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:44+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/pl_PL/)\n"
13
+ "Language: pl_PL\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\n"
19
+ "X-Generator: Poedit 1.6.4\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
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
27
  msgid "Thumbnail"
28
  msgstr "Miniatura"
29
 
30
+ #: ../classes/column.php:498
31
  msgid "Medium"
32
  msgstr "Średni"
33
 
34
+ #: ../classes/column.php:499
35
  msgid "Large"
36
  msgstr "Duży"
37
 
38
+ #: ../classes/column.php:500
39
  msgid "Full"
40
  msgstr "Pełny"
41
 
42
+ #: ../classes/column.php:792
43
  msgid "Date Format"
44
  msgstr "Format daty"
45
 
46
+ #: ../classes/column.php:793
47
  msgid "This will determine how the date will be displayed."
48
  msgstr "Określi to sposób wyświetlania daty."
49
 
50
+ #: ../classes/column.php:799
51
  msgid "Example:"
52
  msgstr "Przykład:"
53
 
54
+ #: ../classes/column.php:801
55
  #, php-format
56
  msgid ""
57
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
60
  "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s"
61
  "\">domyślny format daty</a>."
62
 
63
+ #: ../classes/column.php:802
64
  msgid "Documentation on date and time formatting."
65
  msgstr "Dokumentacja dotycząca formatowania daty i godziny."
66
 
67
+ #: ../classes/column.php:820
68
  msgid "Excerpt length"
69
  msgstr "Długość wypisu"
70
 
71
+ #: ../classes/column.php:821
72
  msgid "Number of words"
73
  msgstr "Liczba słów"
74
 
75
+ #: ../classes/column.php:843
76
  msgid "Preview size"
77
  msgstr "Wielkość podglądu"
78
 
79
+ #: ../classes/column.php:860 ../classes/column.php:939
80
  msgid "Custom"
81
  msgstr "Włąsne"
82
 
83
+ #: ../classes/column.php:863
84
  msgid "width"
85
  msgstr "szerokość"
86
 
87
+ #: ../classes/column.php:866
88
  msgid "height"
89
  msgstr "wysokość"
90
 
91
+ #: ../classes/column.php:882
92
+ msgid "Before"
93
+ msgstr "Przed"
94
+
95
+ #: ../classes/column.php:882
96
+ msgid "This text will appear before the custom field value."
97
+ msgstr "Ten tekst pojawi się przed wartością własnego pola."
98
+
99
+ #: ../classes/column.php:888
100
+ msgid "After"
101
+ msgstr "Po"
102
+
103
+ #: ../classes/column.php:888
104
+ msgid "This text will appear after the custom field value."
105
+ msgstr "Ten tekst pojawi się po wartości własnego pola."
106
+
107
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
108
+ #: ../classes/settings.php:212
109
  msgid "Default"
110
  msgstr "Domyślny"
111
 
112
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
113
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
114
+ #: ../classes/column/user/actions.php:66
115
+ msgid "Edit"
116
+ msgstr "Edytuj"
117
+
118
+ #: ../classes/column.php:963 ../classes/column.php:1024
119
+ #: ../classes/column/user/actions.php:74
120
  msgid "Remove"
121
  msgstr "Usuń"
122
 
123
+ #: ../classes/column.php:981
124
  msgid "Type"
125
  msgstr "Typ"
126
 
127
+ #: ../classes/column.php:981
128
  msgid "Choose a column type."
129
  msgstr "Wybierz typ kolumny."
130
 
131
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
132
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
133
+ #: ../classes/column/post/ID.php:12
134
+ msgid "ID"
135
+ msgstr "ID"
136
+
137
+ #: ../classes/column.php:991
138
  msgid "Label"
139
  msgstr "Etykieta"
140
 
141
+ #: ../classes/column.php:991
142
  msgid "This is the name which will appear as the column header."
143
  msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
144
 
145
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
146
  msgid "Width"
147
  msgstr "Szerokość"
148
 
149
+ #: ../classes/column.php:1000 ../classes/column.php:1001
150
  msgid "default"
151
  msgstr "domyśłny"
152
 
153
+ #: ../classes/column/comment/actions.php:14
154
+ #: ../classes/column/link/actions.php:14
155
+ #: ../classes/column/media/actions.php:14
156
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
157
+ msgid "Actions"
158
+ msgstr "Działania"
159
 
160
+ #: ../classes/column/comment/actions.php:73
161
+ #: ../classes/column/comment/actions.php:78
162
+ msgid "Unapprove"
163
+ msgstr "Odrzuć"
164
 
165
+ #: ../classes/column/comment/actions.php:75
166
+ #: ../classes/column/comment/actions.php:77
167
+ msgid "Approve"
168
+ msgstr "Zatwierdź"
169
 
170
+ #: ../classes/column/comment/actions.php:86
171
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
172
+ msgid "Restore"
173
+ msgstr "Przywróć"
174
 
175
+ #: ../classes/column/comment/actions.php:90
176
+ #: ../classes/column/post/actions.php:57
177
+ msgid "Delete Permanently"
178
+ msgstr "Usuń na zawsze"
179
 
180
+ #: ../classes/column/comment/actions.php:97
181
+ #: ../classes/column/post/actions.php:49
182
+ msgid "Quick&nbsp;Edit"
183
+ msgstr "Szybka&nbsp;edycja"
 
 
 
 
 
184
 
185
+ #: ../classes/column/comment/actions.php:98
186
+ msgid "Reply"
187
+ msgstr "Odpowiedź"
188
 
189
+ #: ../classes/column/comment/agent.php:12
190
+ msgid "Agent"
191
+ msgstr "Przeglądarka"
192
 
193
+ #: ../classes/column/comment/approved.php:12
194
+ #: ../classes/column/post/comment-count.php:31
195
+ msgid "Approved"
196
+ msgstr "Zatwierdzony"
 
197
 
198
+ #: ../classes/column/comment/author-avatar.php:12
199
+ msgid "Avatar"
200
+ msgstr "Avatar"
201
 
202
+ #: ../classes/column/comment/author-email.php:12
203
+ msgid "Author email"
204
+ msgstr "Email Autora"
205
+
206
+ #: ../classes/column/comment/author-ip.php:12
207
+ msgid "Author IP"
208
+ msgstr "IP Autora"
209
+
210
+ #: ../classes/column/comment/author-url.php:12
211
+ msgid "Author url"
212
+ msgstr "URL Autora"
213
+
214
+ #: ../classes/column/comment/author.php:12
215
+ msgid "Author"
216
+ msgstr "Autor"
217
+
218
+ #: ../classes/column/comment/date-gmt.php:12
219
+ msgid "Date GMT"
220
+ msgstr "Data GMT"
221
+
222
+ #: ../classes/column/comment/date-gmt.php:25
223
+ #: ../classes/column/comment/date.php:25
224
+ #, php-format
225
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
226
+ msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
227
+
228
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
229
+ #: ../classes/settings.php:217
230
+ msgid "Date"
231
+ msgstr "Data"
232
 
233
+ #: ../classes/column/comment/excerpt.php:13
234
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
235
  #: ../classes/settings.php:214
236
+ msgid "Excerpt"
237
+ msgstr "Wypis"
238
 
239
+ #: ../classes/column/comment/reply-to.php:12
240
+ msgid "In Reply To"
241
+ msgstr "W odpowiedzi na"
242
+
243
+ #: ../classes/column/comment/word-count.php:12
244
+ #: ../classes/column/post/word-count.php:12
245
+ msgid "Word count"
246
+ msgstr "Liczba słów"
247
 
248
+ #: ../classes/column/custom-field.php:16
249
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
250
  msgid "Custom Field"
251
  msgstr "Własne pole"
252
 
253
+ #: ../classes/column/custom-field.php:66
254
+ msgid "Checkmark (true/false)"
255
+ msgstr "Znak (prawda/fałsz)"
256
 
257
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
258
+ msgid "Color"
259
+ msgstr "Kolor"
 
 
 
 
260
 
261
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
262
+ msgid "Counter"
 
 
263
  msgstr ""
 
 
264
 
265
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
266
+ #: ../classes/settings.php:213
267
  msgid "Image"
268
  msgstr "Obrazek"
269
 
270
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
271
+ msgid "Media Library"
272
+ msgstr "Biblioteka mediów"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
275
  msgid "Multiple Values"
276
  msgstr "Wielokrotne wartości"
277
 
278
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
 
279
  msgid "Numeric"
280
  msgstr "Numeryczny"
281
 
282
+ #: ../classes/column/custom-field.php:75
283
+ msgid "Post Title (Post ID's)"
284
+ msgstr "Tytył wpisu (ID wpisu)"
 
 
 
 
 
285
 
286
+ #: ../classes/column/custom-field.php:76
287
+ msgid "Username (User ID's)"
288
+ msgstr "Użytkownik (ID użytkownika)"
 
289
 
290
+ #: ../classes/column/custom-field.php:377
291
+ msgid "Select your custom field."
292
+ msgstr "Wybierz własne pole."
 
 
 
 
 
 
 
293
 
294
+ #: ../classes/column/custom-field.php:387
295
+ msgid "No custom fields available."
296
+ msgstr "Brak dostępnych własnych pól."
297
 
298
+ #: ../classes/column/custom-field.php:394
299
+ msgid "Field Type"
300
+ msgstr "Rodzaj pola"
 
301
 
302
+ #: ../classes/column/custom-field.php:394
303
+ msgid "This will determine how the value will be displayed."
304
+ msgstr "Określi to sposób wyświetlania wartości."
305
 
306
+ #: ../classes/column/link/actions.php:46
307
+ #, php-format
308
+ msgid ""
309
+ "You are about to delete this link '%s'\n"
310
+ " 'Cancel' to stop, 'OK' to delete."
311
  msgstr ""
312
+ "Zamierzasz usunąć ten link link '%s'\n"
313
+ " 'Cancel' to stop, 'OK' to delete."
314
 
315
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
316
+ msgid "Delete"
317
+ msgstr "Usuń"
318
 
319
+ #: ../classes/column/link/description.php:12
320
+ #: ../classes/column/media/description.php:12
321
+ #: ../classes/column/user/description.php:14
322
+ msgid "Description"
323
+ msgstr "Opis"
324
 
325
+ #: ../classes/column/link/length.php:12
326
+ msgid "Length"
327
+ msgstr "Długość"
328
 
329
+ #: ../classes/column/link/notes.php:13
330
+ msgid "Notes"
331
+ msgstr "Notatki"
332
 
333
+ #: ../classes/column/link/owner.php:12
334
+ msgid "Owner"
335
+ msgstr "Właściciel"
336
 
337
+ #: ../classes/column/link/rss.php:12
338
+ msgid "Rss"
339
+ msgstr "Rss"
340
 
341
+ #: ../classes/column/link/target.php:12
342
+ msgid "Target"
343
+ msgstr "Cel"
 
 
 
 
344
 
345
+ #: ../classes/column/media/alternate-text.php:12
346
+ msgid "Alt"
347
+ msgstr "Tekst alternatywny"
348
 
349
+ #: ../classes/column/media/available-sizes.php:14
350
+ msgid "Available Sizes"
351
+ msgstr "Dostępne rozmiary"
352
 
353
+ #: ../classes/column/media/available-sizes.php:37
354
+ msgid "full size"
355
+ msgstr "pełny rozmiar"
356
 
357
+ #: ../classes/column/media/caption.php:12
358
+ #: ../classes/column/media/exif-data.php:36
359
+ msgid "Caption"
360
+ msgstr "Tytuł"
361
 
362
+ #: ../classes/column/media/dimensions.php:12
363
+ msgid "Dimensions"
364
+ msgstr "Wymiary"
 
 
 
 
 
 
365
 
366
+ #: ../classes/column/media/exif-data.php:12
367
+ msgid "EXIF data"
368
+ msgstr "Dane EXIF"
 
369
 
370
+ #: ../classes/column/media/exif-data.php:33
371
+ msgid "Aperture"
372
+ msgstr "Przysłona"
373
 
374
+ #: ../classes/column/media/exif-data.php:34
375
+ msgid "Credit"
376
+ msgstr "Autor"
377
 
378
+ #: ../classes/column/media/exif-data.php:35
379
+ msgid "Camera"
380
+ msgstr "Aparat"
381
 
382
+ #: ../classes/column/media/exif-data.php:37
383
+ msgid "Timestamp"
384
+ msgstr "Data"
385
 
386
+ #: ../classes/column/media/exif-data.php:38
387
+ msgid "Copyright EXIF"
388
+ msgstr "Prawa autorskie EXIF"
389
 
390
+ #: ../classes/column/media/exif-data.php:39
391
+ msgid "Focal Length"
392
+ msgstr "Ogniskowa"
393
 
394
+ #: ../classes/column/media/exif-data.php:40
395
+ msgid "ISO"
396
+ msgstr "ISO"
 
 
 
 
397
 
398
+ #: ../classes/column/media/exif-data.php:41
399
+ msgid "Shutter Speed"
400
+ msgstr "Szybkość migawki"
401
 
402
+ #: ../classes/column/media/exif-data.php:42
403
+ msgid "Title"
404
+ msgstr "Tytuł"
405
 
406
+ #: ../classes/column/media/file-name.php:12
407
+ msgid "File name"
408
+ msgstr "Nazwa pliku"
409
 
410
+ #: ../classes/column/media/file-size.php:12
411
+ msgid "File size"
412
+ msgstr "Wielkość pliku"
 
 
 
 
 
 
413
 
414
+ #: ../classes/column/media/full-path.php:12
415
+ msgid "Full path"
416
+ msgstr "Pełna ścieżka"
417
 
418
+ #: ../classes/column/media/height.php:12
419
+ msgid "Height"
420
+ msgstr "Wysokość"
421
 
422
+ #: ../classes/column/media/mime-type.php:12
423
+ msgid "Mime type"
424
+ msgstr "Typ pliku"
 
 
 
 
 
425
 
426
+ #: ../classes/column/post/actions.php:48
427
+ msgid "Edit this item"
428
+ msgstr "Edytuj element"
429
 
430
+ #: ../classes/column/post/actions.php:49
431
+ msgid "Edit this item inline"
432
+ msgstr "Edytuj element"
 
 
 
 
433
 
434
+ #: ../classes/column/post/actions.php:53
435
+ msgid "Restore this item from the Trash"
436
+ msgstr "Przywróć ten element z kosza"
437
 
438
+ #: ../classes/column/post/actions.php:55
439
+ msgid "Move this item to the Trash"
440
+ msgstr "Przenieś ten element do kosza"
441
 
442
+ #: ../classes/column/post/actions.php:55
443
+ #: ../classes/column/post/comment-count.php:34
444
+ #: ../classes/column/post/status.php:38
445
+ msgid "Trash"
446
+ msgstr "Kosz"
447
 
448
+ #: ../classes/column/post/actions.php:57
449
+ msgid "Delete this item permanently"
450
+ msgstr "Usuń ten element na zawsze"
451
 
452
+ #: ../classes/column/post/actions.php:62
453
+ #, php-format
454
+ msgid "Preview &#8220;%s&#8221;"
455
+ msgstr "Podejrzyj &#8220;%s&#8221;"
 
 
 
456
 
457
+ #: ../classes/column/post/actions.php:62
458
+ msgid "Preview"
459
+ msgstr "Podejrzyj"
 
460
 
461
+ #: ../classes/column/post/actions.php:64
462
+ #, php-format
463
+ msgid "View &#8220;%s&#8221;"
464
+ msgstr "Zobacz &#8220;%s&#8221;"
465
 
466
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
467
+ msgid "View"
468
+ msgstr "Zobacz"
469
 
470
+ #: ../classes/column/post/attachment-count.php:12
471
+ msgid "No. of Attachments"
472
+ msgstr "Liczba załączników"
473
 
474
+ #: ../classes/column/post/attachment.php:12
475
+ msgid "Attachment"
476
+ msgstr "Załącznik"
477
 
478
+ #: ../classes/column/post/author-name.php:12
479
+ msgid "Display Author As"
480
+ msgstr "Wyświetla autora jako"
481
 
482
+ #: ../classes/column/post/author-name.php:34
483
+ msgid "Display Name"
484
+ msgstr "Pseudonim"
485
 
486
+ #: ../classes/column/post/author-name.php:35
487
+ msgid "First Name"
488
+ msgstr "Imię"
489
 
490
+ #: ../classes/column/post/author-name.php:36
491
+ msgid "Last Name"
492
+ msgstr "Nazwisko"
493
 
494
+ #: ../classes/column/post/author-name.php:37
495
+ #: ../classes/column/user/nickname.php:14
496
+ msgid "Nickname"
497
+ msgstr "Pseudonim"
498
 
499
+ #: ../classes/column/post/author-name.php:38
500
+ msgid "User Login"
501
+ msgstr "Login użytkownika"
502
 
503
+ #: ../classes/column/post/author-name.php:39
504
+ msgid "User Email"
505
+ msgstr "Email użytkownika"
 
 
506
 
507
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
508
+ msgid "User ID"
509
+ msgstr "ID użytkownika"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
+ msgid "First and Last Name"
513
+ msgstr "Imię i nazwisko"
 
 
 
 
514
 
515
+ #: ../classes/column/post/author-name.php:118
516
+ msgid "This is the format of the author name."
517
+ msgstr "To jest format autora"
518
 
519
+ #: ../classes/column/post/before-moretag.php:14
520
+ msgid "Before More Tag"
521
+ msgstr "Przed tagiem Czytaj dalej"
522
 
523
+ #: ../classes/column/post/comment-count.php:14
524
+ msgid "Comment count"
525
+ msgstr "Liczba komentarzy"
526
 
527
+ #: ../classes/column/post/comment-count.php:30
528
+ msgid "Total"
529
+ msgstr "Ogółem"
530
 
531
+ #: ../classes/column/post/comment-count.php:32
532
+ msgid "Pending"
533
+ msgstr "Oczekujący"
 
 
 
 
 
534
 
535
+ #: ../classes/column/post/comment-count.php:33
536
+ msgid "Spam"
537
+ msgstr "Spam"
 
538
 
539
+ #: ../classes/column/post/comment-count.php:95
540
+ #: ../classes/column/post/comment-status.php:14
541
+ msgid "Comment status"
542
+ msgstr "Status komentarza"
543
 
544
+ #: ../classes/column/post/comment-count.php:95
545
+ msgid "Select which comment status you like to display."
546
+ msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
547
 
548
+ #: ../classes/column/post/featured-image.php:14
549
+ msgid "Featured Image"
550
+ msgstr "Ikona wpisu"
551
 
552
+ #: ../classes/column/post/formats.php:14
553
+ msgid "Post Format"
554
+ msgstr "Format wpisu"
555
 
556
+ #: ../classes/column/post/modified.php:14
557
+ msgid "Last modified"
558
+ msgstr "Ostatnia modyfikacja"
559
 
560
+ #: ../classes/column/post/order.php:14
561
+ msgid "Page Order"
562
+ msgstr "Kolejność stron"
 
563
 
564
+ #: ../classes/column/post/page-template.php:12
565
+ msgid "Page Template"
566
+ msgstr "Szablon strony"
567
 
568
+ #: ../classes/column/post/parent.php:12
569
+ msgid "Parent"
570
+ msgstr "Rodzic"
571
 
572
+ #: ../classes/column/post/ping-status.php:14
573
+ msgid "Ping status"
574
+ msgstr "Status ping"
 
 
 
 
 
 
575
 
576
+ #: ../classes/column/post/roles.php:14
577
+ msgid "Roles"
578
+ msgstr "Role"
579
 
580
+ #: ../classes/column/post/slug.php:12
581
+ msgid "Slug"
582
+ msgstr "Bezpośredni odnośnik"
583
 
584
+ #: ../classes/column/post/status.php:14
585
+ msgid "Status"
586
+ msgstr "Status"
587
 
588
+ #: ../classes/column/post/status.php:32
589
+ msgid "Published"
590
+ msgstr "Opublikowany"
591
 
592
+ #: ../classes/column/post/status.php:33
593
+ msgid "Draft"
594
+ msgstr "Szkic"
595
 
596
+ #: ../classes/column/post/status.php:34
597
+ msgid "Scheduled"
598
+ msgstr "Zaplanowany"
 
 
 
599
 
600
+ #: ../classes/column/post/status.php:35
601
+ msgid "Private"
602
+ msgstr "Prywatny"
603
 
604
+ #: ../classes/column/post/status.php:36
605
+ msgid "Pending Review"
606
+ msgstr "Oczekujący na przegląd"
607
 
608
+ #: ../classes/column/post/status.php:37
609
+ #, fuzzy
610
+ msgid "Auto Draft"
611
+ msgstr "Szkic"
 
612
 
613
+ #: ../classes/column/post/sticky.php:14
614
+ msgid "Sticky"
615
+ msgstr "Przyklejone"
616
 
617
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
618
+ msgid "Taxonomy"
619
+ msgstr "Taksonomia"
 
 
 
 
 
620
 
621
+ #: ../classes/column/user/comment-count.php:14
622
+ msgid "Comment Count"
623
+ msgstr "Liczba komentarzy"
624
 
625
+ #: ../classes/column/user/first-name.php:14
626
+ msgid "First name"
627
+ msgstr "Imię"
628
 
629
+ #: ../classes/column/user/last-name.php:14
630
+ msgid "Last name"
631
+ msgstr "Nazwisko"
 
632
 
633
+ #: ../classes/column/user/post-count.php:14
634
+ msgid "Post Count"
635
+ msgstr "Liczba wpisów"
 
636
 
637
+ #: ../classes/column/user/post-count.php:99
638
+ msgid "Post Type"
639
+ msgstr "Typ wpisu"
640
 
641
+ #: ../classes/column/user/registered.php:14
642
+ msgid "Registered"
643
+ msgstr "Zarejestrowany"
644
 
645
+ #: ../classes/column/user/url.php:14
646
+ msgid "Url"
647
+ msgstr "Adres URL"
648
 
649
+ #: ../classes/settings.php:64
650
+ msgid "Admin Columns Settings"
651
+ msgstr "Ustawienia edytora kolumn"
652
 
653
+ #: ../classes/settings.php:64 ../classes/settings.php:635
654
+ #: ../classes/upgrade.php:89
655
+ msgid "Admin Columns"
656
+ msgstr "Edytor kolumn"
657
 
658
+ #: ../classes/settings.php:116
659
+ #, php-format
660
+ msgid "%s column is already present and can not be duplicated."
661
+ msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
662
 
663
+ #: ../classes/settings.php:172
664
+ msgid "Default settings succesfully restored."
665
+ msgstr "Domyślne ustawienia zostały przywrócone."
666
 
667
+ #: ../classes/settings.php:190 ../classes/settings.php:447
668
+ msgid "Overview"
669
+ msgstr "Przegląd"
670
 
671
+ #: ../classes/settings.php:193
672
+ msgid ""
673
+ "This plugin is for adding and removing additional columns to the "
674
+ "administration screens for post(types), pages, media library, comments, "
675
+ "links and users. Change the column's label and reorder them."
676
+ msgstr ""
677
+ "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, "
678
+ "stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić "
679
+ "nazwy kolumn i ich kolejność."
680
 
681
+ #: ../classes/settings.php:196
682
+ msgid "Basics"
683
+ msgstr "Podstawy"
684
 
685
+ #: ../classes/settings.php:198
686
+ msgid "Change order"
687
+ msgstr "Zmień kolejność"
 
 
 
 
 
 
 
 
688
 
689
+ #: ../classes/settings.php:199
690
  msgid ""
691
+ "By dragging the columns you can change the order which they will appear in."
 
692
  msgstr ""
693
+ "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
 
695
+ #: ../classes/settings.php:200
696
+ msgid "Change label"
697
+ msgstr "Zmień etykietę"
 
 
 
698
 
699
+ #: ../classes/settings.php:201
700
+ msgid ""
701
+ "By clicking on the triangle you will see the column options. Here you can "
702
+ "change each label of the columns heading."
703
+ msgstr ""
704
+ "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z "
705
+ "nich."
706
 
707
+ #: ../classes/settings.php:202
708
+ msgid "Change column width"
709
+ msgstr "Zmień szerokość kolumn"
 
710
 
711
+ #: ../classes/settings.php:203
712
+ msgid ""
713
+ "By clicking on the triangle you will see the column options. By using the "
714
+ "draggable slider you can set the width of the columns in percentages."
715
+ msgstr ""
716
+ "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w "
717
+ "slajderze możesz ustawić w procentach szerokość kolumn."
718
 
719
+ #: ../classes/settings.php:209
720
+ msgid "'Custom Field' column"
721
+ msgstr "Kolumna 'Własne pole'"
 
 
722
 
723
+ #: ../classes/settings.php:210
724
+ msgid ""
725
+ "The custom field colum uses the custom fields from posts and users. There "
726
+ "are 10 types which you can set."
727
+ msgstr ""
728
+ "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz "
729
+ "wybrać 1 z 10 typów."
730
 
731
+ #: ../classes/settings.php:212
732
+ msgid ""
733
+ "Value: Can be either a string or array. Arrays will be flattened and values "
734
+ "are seperated by a ',' comma."
735
+ msgstr ""
736
+ "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a "
737
+ "warości oddzielone przecinkami."
738
 
739
+ #: ../classes/settings.php:213
740
+ msgid ""
741
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
742
+ "comma )."
743
+ msgstr ""
744
+ "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone "
745
+ "przecinkami)."
746
 
747
+ #: ../classes/settings.php:214
748
+ msgid "Value: This will show the first 20 words of the Post content."
749
+ msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
 
750
 
751
+ #: ../classes/settings.php:215
752
+ msgid ""
753
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
754
+ msgstr ""
755
+ "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
756
 
757
+ #: ../classes/settings.php:216
758
+ msgid ""
759
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
760
+ "for sorting, so you can sort your posts on numeric (custom field) values."
761
+ msgstr ""
762
+ "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to "
763
+ "zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych "
764
+ "pól)."
765
 
766
+ #: ../classes/settings.php:217
767
+ #, php-format
768
+ msgid ""
769
+ "Value: Can be unix time stamp or a date format as described in the <a "
770
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
771
+ "href='%s'>general settings</a> page."
772
+ msgstr ""
773
+ "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a "
774
+ "href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a "
775
+ "href='%s'>Ustawień głównych</a>."
776
 
777
+ #: ../classes/settings.php:218
778
+ msgid "Post Titles"
779
+ msgstr "Tytyły wpisu"
780
 
781
+ #: ../classes/settings.php:218
782
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
783
+ msgstr ""
784
+ "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
785
 
786
+ #: ../classes/settings.php:219
787
+ msgid "Usernames"
788
+ msgstr "Nazwy użytkowników"
789
 
790
+ #: ../classes/settings.php:219
791
+ msgid "Value: can be one or more User ID's (seperated by ',')."
792
+ msgstr ""
793
+ "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone "
794
+ "przecinkami)."
795
 
796
+ #: ../classes/settings.php:220
797
+ msgid "Checkmark"
798
+ msgstr "Znak tak/nie"
 
799
 
800
+ #: ../classes/settings.php:220
801
+ msgid "Value: should be a 1 (one) or 0 (zero)."
802
+ msgstr "Wartość: Powinno to być 1 lub 0."
803
 
804
+ #: ../classes/settings.php:221
805
+ msgid "Value: hex value color, such as #808080."
806
+ msgstr "Wartość: Kolor w HEX, np. #808080."
 
807
 
808
+ #: ../classes/settings.php:222
809
+ #, fuzzy
810
  msgid ""
811
+ "Value: Can be either a string or array. This will display a count of the "
812
+ "number of times the meta key is used by the item."
813
  msgstr ""
814
+ "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a "
815
+ "warości oddzielone przecinkami."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
 
817
+ #: ../classes/settings.php:367
818
+ msgid "Welcome to Admin Columns"
819
+ msgstr "Witaj w Edytorze kolumn"
820
 
821
+ #: ../classes/settings.php:370
822
+ msgid "Thank you for updating to the latest version!"
823
+ msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
824
 
825
+ #: ../classes/settings.php:371
826
+ msgid ""
827
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
828
+ "like it."
829
+ msgstr ""
830
+ "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy "
831
+ "nadzięję że Ci się spodoba."
832
 
833
+ #: ../classes/settings.php:376
834
+ msgid "What’s New"
835
+ msgstr "Co nowego"
836
 
837
+ #: ../classes/settings.php:377
838
+ msgid "Changelog"
839
+ msgstr "Dziennik zmian"
840
 
841
+ #: ../classes/settings.php:379
842
+ msgid "Download Addons"
843
+ msgstr "Pobierz dodatki"
844
 
845
+ #: ../classes/settings.php:385
846
+ msgid "Addons"
847
+ msgstr "Dodatki"
848
 
849
+ #: ../classes/settings.php:387
850
+ msgid ""
851
+ "Addons are now activated by downloading and installing individual plugins. "
852
+ "Although these plugins will not be hosted on the wordpress.org repository, "
853
+ "each Add-on will continue to receive updates in the usual way."
854
+ msgstr ""
855
+ "Dodatki są aktywowane poprzez wczytanie i instalację oddzielnych wtyczek. "
856
+ "Chociaż niektóre wtyczki nie będą utrzymywane w repozytorium wordpress.org, "
857
+ "każdy z dodatków będzie mógł być automatycznie aktualizowany."
858
 
859
+ #: ../classes/settings.php:390
860
+ msgid ""
861
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
862
+ msgstr "Ta strona korzysta z dodatku sortowania. Musisz go pobrać."
863
 
864
+ #: ../classes/settings.php:393
865
+ msgid "Addons are seperate plugins which need to be downloaded."
866
+ msgstr "Dodatki są oddzielnymi wtyczkami, które muszą być pobrane."
867
 
868
+ #: ../classes/settings.php:393
869
+ msgid "Download your Addons"
870
+ msgstr "Pobierz swoje dodatki"
871
 
872
+ #: ../classes/settings.php:399
873
+ msgid "This website does not use add-ons"
874
+ msgstr "Ta strona nie korzysta z dodatków"
875
 
876
+ #: ../classes/settings.php:399
877
+ msgid "See our website for the Pro-addon."
878
+ msgstr "Przejdź do naszej strony aby pobrać dodatek."
879
 
880
+ #: ../classes/settings.php:406
881
+ msgid "Important"
882
+ msgstr "Ważne"
883
 
884
+ #: ../classes/settings.php:408
885
+ msgid "Database Changes"
886
+ msgstr "Zmiany w bazie danych"
887
 
888
+ #: ../classes/settings.php:409
889
+ msgid ""
890
+ "The database has been changed between versions 1 and 2. But we made sure you "
891
+ "can still roll back to version 1x without any issues."
892
+ msgstr ""
893
+ "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do "
894
+ "wersji 1 bez żadnych problemów."
895
 
896
+ #: ../classes/settings.php:412
897
+ msgid "Make sure you backup your database and then click"
898
+ msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
899
 
900
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
901
+ msgid "Upgrade Database"
902
+ msgstr "Aktualizuj bazę danych"
903
 
904
+ #: ../classes/settings.php:415
905
+ msgid "Potential Issues"
906
+ msgstr "Potencjalne problemy"
907
 
908
+ #: ../classes/settings.php:416
909
+ msgid ""
910
+ "Do to the sizable refactoring the code, surounding Addons and action/"
911
+ "filters, your website may not operate correctly. It is important that you "
912
+ "read the full"
913
+ msgstr ""
914
+ "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i "
915
+ "akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać "
916
+ "pełną"
917
 
918
+ #: ../classes/settings.php:416
919
+ msgid "Migrating from v1 to v2"
920
+ msgstr "Migracja z wersji 1 do 2"
921
 
922
+ #: ../classes/settings.php:416
923
+ msgid "guide to view the full list of changes."
924
+ msgstr "dokumentację i zapoznać się z listą zmian."
925
 
926
+ #: ../classes/settings.php:416
927
+ #, php-format
928
+ msgid ""
929
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
930
+ "can fix it in the next release."
931
+ msgstr ""
932
+ "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w "
933
+ "kolejnej wersji."
934
 
935
+ #: ../classes/settings.php:419
936
+ msgid "Important!"
937
+ msgstr "Ważne!"
938
 
939
+ #: ../classes/settings.php:419
940
+ msgid ""
941
+ "If you updated the Admin Columns plugin without prior knowledge of such "
942
+ "changes, Please roll back to the latest"
943
+ msgstr ""
944
+ "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz "
945
+ "powrócić do poprzedniej"
946
 
947
+ #: ../classes/settings.php:419
948
+ msgid "version 1"
949
+ msgstr "wersja 1"
950
 
951
+ #: ../classes/settings.php:419
952
+ msgid "of this plugin."
953
+ msgstr "tej wtyczki."
954
 
955
+ #: ../classes/settings.php:425
956
+ msgid "Changelog for"
957
+ msgstr "Dziennik zmian dla"
958
 
959
+ #: ../classes/settings.php:440
960
+ msgid "Learn more"
961
+ msgstr "Dowiedz się więcej"
 
 
962
 
963
+ #: ../classes/settings.php:449
964
+ msgid ""
965
+ "New to v2, all Addons act as separate plugins which need to be individually "
966
+ "downloaded, installed and updated."
967
+ msgstr ""
968
+ "Nowość w wersji 2, wszystkie dodatki funkcjonują jako oddzielne wtyczki, "
969
+ "które muszą być oddzielnie wgrywane, instalowane i aktualizowane."
970
 
971
+ #: ../classes/settings.php:450
972
+ msgid ""
973
+ "This page will assist you in downloading and installing each available Addon."
974
+ msgstr "Ta strona pomoże Ci w pobraniu i instalacji dostępnych dodatków."
975
 
976
+ #: ../classes/settings.php:451
977
+ msgid "Available Addons"
978
+ msgstr "Dostępne dodatki"
979
 
980
+ #: ../classes/settings.php:456
981
+ msgid "Name"
982
+ msgstr "Nazwa"
 
983
 
984
+ #: ../classes/settings.php:457 ../classes/settings.php:465
985
+ msgid "Download"
986
+ msgstr "Pobierz"
987
 
988
+ #: ../classes/settings.php:463
989
+ msgid "Pro Add-on (includes Sortorder add-on)"
990
+ msgstr "Dodatek (w tym sortowanie)"
991
 
992
+ #: ../classes/settings.php:473
993
+ msgid "Installation"
994
+ msgstr "Instalacja"
995
 
996
+ #: ../classes/settings.php:475
997
+ msgid "For each Add-on available, please perform the following:"
998
+ msgstr "Dla każdego dodatku wykonaj następujące czynności:"
999
 
1000
+ #: ../classes/settings.php:477
1001
+ msgid "Download the Addon plugin (.zip file) to your desktop"
1002
+ msgstr "Pobierz dodatek na swój komputer"
1003
 
1004
+ #: ../classes/settings.php:478
1005
+ msgid "Navigate to"
1006
+ msgstr "Przejdź do"
1007
 
1008
+ #: ../classes/settings.php:478
1009
+ msgid "Plugins > Add New > Upload"
1010
+ msgstr "Wtyczki > Dodaj nową > Wgraj"
 
1011
 
1012
+ #: ../classes/settings.php:479
1013
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1014
+ msgstr "Użyj instalacji dodatku z pliku .zip"
1015
 
1016
+ #: ../classes/settings.php:480
1017
+ msgid ""
1018
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
1019
+ "link"
1020
+ msgstr "Po wczytaniu i instalacji wtyczki kliknij link 'Aktywacja wtyczki'"
1021
 
1022
+ #: ../classes/settings.php:481
1023
+ msgid "The Add-on is now installed and activated!"
1024
+ msgstr "Dodatek został zaktualizowany i włączony."
1025
 
1026
+ #: ../classes/settings.php:482
1027
+ #, php-format
1028
+ msgid ""
1029
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1030
+ msgstr ""
1031
+ "Aby uzyskać automatyczne aktualizacje podaj swój <a href='%s'>klucz "
1032
+ "licencji</a>."
1033
 
1034
+ #: ../classes/settings.php:492
1035
+ msgid "Start using Admin Columns"
1036
+ msgstr "Zacznij korzystać z Edytora kolumn"
1037
 
1038
+ #: ../classes/settings.php:539
1039
+ msgid "General Settings"
1040
+ msgstr "Ustawienia ogólne"
1041
 
1042
+ #: ../classes/settings.php:540
1043
+ msgid "Customize your Admin Columns settings."
1044
+ msgstr "Zmodyfikuj ustawienia Edytora kolumn."
1045
 
1046
+ #: ../classes/settings.php:553
1047
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1048
+ msgstr "Wyświetl ukryte własne pola. Domyślnie jest <code>wyłączone</code>."
1049
 
1050
+ #: ../classes/settings.php:559
1051
+ msgid ""
1052
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1053
+ msgstr ""
1054
+ "Wyświetl przycisk \"Edytuj kolumny\" na ekranie edycji. Domyślnie jest "
1055
+ "<code>wyłączone</code>."
1056
 
1057
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1058
+ msgid "Save"
1059
+ msgstr "Zapisz"
1060
 
1061
+ #: ../classes/settings.php:606
1062
+ msgid "Restore Settings"
1063
+ msgstr "Przywróć ustawienia"
 
1064
 
1065
+ #: ../classes/settings.php:607
1066
+ msgid "This will delete all column settings and restore the default settings."
1067
+ msgstr ""
1068
+ "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień "
1069
+ "domyślnych."
1070
 
1071
+ #: ../classes/settings.php:613
1072
+ msgid "Restore default settings"
1073
+ msgstr "Przywróć ustawienia domyślne"
1074
 
1075
+ #: ../classes/settings.php:613
1076
+ msgid ""
1077
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1078
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1079
+ msgstr ""
1080
+ "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji "
1081
+ "nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby "
1082
+ "przerwać."
1083
 
1084
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1085
+ msgid "Settings"
1086
+ msgstr "Ustawienia"
1087
 
1088
+ #: ../classes/settings.php:665
1089
+ #, fuzzy
1090
+ msgid "Posttypes"
1091
+ msgstr "Typ wpisu"
1092
 
1093
+ #: ../classes/settings.php:666
1094
+ msgid "Others"
1095
+ msgstr ""
1096
 
1097
+ #: ../classes/settings.php:667
1098
+ #, fuzzy
1099
+ msgid "Taxonomies"
1100
+ msgstr "Taksonomia"
1101
 
1102
+ #: ../classes/settings.php:688
1103
+ msgid "Store settings"
1104
+ msgstr "Zapisz ustawienia"
1105
 
1106
+ #: ../classes/settings.php:692
1107
+ msgid "Update"
1108
+ msgstr "Aktualizuj"
1109
 
1110
+ #: ../classes/settings.php:696
1111
+ #, php-format
1112
+ msgid ""
1113
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1114
+ "\\' to delete, \\'Cancel\\' to stop"
1115
+ msgstr ""
1116
+ "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można "
1117
+ "przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
1118
 
1119
+ #: ../classes/settings.php:697
1120
+ msgid "columns"
1121
+ msgstr "kolumny"
1122
 
1123
+ #: ../classes/settings.php:710
1124
+ msgid "Get the Pro Add-on"
1125
+ msgstr "Kup dodatek"
1126
 
1127
+ #: ../classes/settings.php:714
1128
+ msgid "Add Sorting"
1129
+ msgstr "Dodaj sortowanie"
1130
 
1131
+ #: ../classes/settings.php:715
1132
+ msgid "Add Filtering"
1133
+ msgstr "Dodaj filtrowanie"
1134
 
1135
+ #: ../classes/settings.php:716
1136
+ msgid "Add Import/Export"
1137
+ msgstr "Dodaj Import/Export"
1138
 
1139
+ #: ../classes/settings.php:719
1140
+ #, php-format
1141
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1142
+ msgstr "Sprawdź <a href=\"%s\">Dodatki Pro</a> aby dowiedzieć się więcej!!"
1143
 
1144
+ #: ../classes/settings.php:750
1145
+ msgid "Support"
1146
+ msgstr "Pomocy"
1147
 
1148
+ #: ../classes/settings.php:753
1149
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1150
+ msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
 
1151
 
1152
+ #: ../classes/settings.php:756
1153
+ #, php-format
1154
+ msgid ""
1155
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1156
+ "href='%s'>visit the Admin Columns website</a>"
1157
+ msgstr ""
1158
+ "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych "
1159
+ "funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora "
1160
+ "kolumn</a>"
1161
 
1162
+ #: ../classes/settings.php:784
1163
+ msgid "Drag and drop to reorder"
1164
+ msgstr "Przeciągnij i opuść aby zmienić kolejność"
1165
 
1166
+ #: ../classes/settings.php:787
1167
+ msgid "Add Column"
1168
+ msgstr "Dodaj kolumnę"
1169
 
1170
+ #: ../classes/storage_model.php:222
1171
+ msgid "settings succesfully restored."
1172
+ msgstr "ustawienia zostały przywrócone."
1173
 
1174
+ #: ../classes/storage_model.php:239
1175
+ msgid "No columns settings available."
1176
+ msgstr "Brak dostępnych ustawień kolumn."
1177
 
1178
+ #: ../classes/storage_model.php:262
1179
+ #, php-format
1180
+ msgid "You are trying to store the same settings for %s."
1181
+ msgstr "Próbujesz przywrócić te same ustawienia dla %s."
1182
 
1183
+ #: ../classes/storage_model.php:266
1184
+ #, php-format
1185
+ msgid "Settings for %s updated succesfully."
1186
+ msgstr "Ustawienia dla %s zostały zaktualizowane."
1187
 
1188
  #: ../classes/storage_model/comment.php:13
1189
  msgid "Comments"
1196
  #: ../classes/storage_model/user.php:13
1197
  msgid "Users"
1198
  msgstr "Użytkownicy"
1199
+
1200
+ #: ../classes/upgrade.php:45
1201
+ msgid "Upgrade"
1202
+ msgstr "Aktualizuj"
1203
+
1204
+ #: ../classes/upgrade.php:90
1205
+ msgid "requires a database upgrade"
1206
+ msgstr "wymaga aktualizacji bazy danych"
1207
+
1208
+ #: ../classes/upgrade.php:93
1209
+ msgid "why?"
1210
+ msgstr "dlaczego?"
1211
+
1212
+ #: ../classes/upgrade.php:94
1213
+ msgid "Please"
1214
+ msgstr "Proszę"
1215
+
1216
+ #: ../classes/upgrade.php:95
1217
+ msgid "backup your database"
1218
+ msgstr "zrobić kopię zapasową bazy danych"
1219
+
1220
+ #: ../classes/upgrade.php:96
1221
+ msgid "then click"
1222
+ msgstr "a następnie kliknąć"
1223
+
1224
+ #: ../classes/upgrade.php:304
1225
+ msgid "Migrating Column Settings"
1226
+ msgstr "Migracja ustawień kolumn"
1227
+
1228
+ #: ../classes/upgrade.php:340
1229
+ msgid "No Upgrade Required"
1230
+ msgstr "Aktualizacja nie jest wymagana"
1231
+
1232
+ #: ../classes/upgrade.php:341
1233
+ msgid "Return to welcome screen."
1234
+ msgstr "Powróć do ekranu powitalnego"
1235
+
1236
+ #: ../classes/upgrade.php:359
1237
+ msgid "Upgrade Complete!"
1238
+ msgstr "Aktualizacja zakończona"
1239
+
1240
+ #: ../classes/upgrade.php:359
1241
+ msgid "Return to settings."
1242
+ msgstr "Przywróć do ustawień"
1243
+
1244
+ #: ../classes/upgrade.php:360
1245
+ msgid "Error"
1246
+ msgstr "Błąd"
1247
+
1248
+ #: ../classes/upgrade.php:361
1249
+ msgid ""
1250
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1251
+ "on the support forum."
1252
+ msgstr ""
1253
+ "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym "
1254
+ "na forum pomocy."
1255
+
1256
+ #: ../codepress-admin-columns.php:447
1257
+ msgid "Edit columns"
1258
+ msgstr "Edytuj kolumny"
1259
+
1260
+ #~ msgid "Publish"
1261
+ #~ msgstr "Opublikuj"
languages/cpac-pt_BR.mo CHANGED
Binary file
languages/cpac-pt_BR.po CHANGED
@@ -5,1165 +5,1188 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/pt_BR/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: pt_BR\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
- "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
- msgid "Settings"
27
- msgstr "Configurações"
28
-
29
- #: ../codepress-admin-columns.php:350
30
- msgid "Edit columns"
31
- msgstr "Editar Colunas"
32
-
33
- #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
  msgstr "Miniaturas"
36
 
37
- #: ../classes/column.php:480
38
  msgid "Medium"
39
  msgstr "Médio"
40
 
41
- #: ../classes/column.php:481
42
  msgid "Large"
43
  msgstr "Grande"
44
 
45
- #: ../classes/column.php:482
46
  msgid "Full"
47
  msgstr "Original"
48
 
49
- #: ../classes/column.php:774
50
  msgid "Date Format"
51
  msgstr "Formato de Data"
52
 
53
- #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
55
  msgstr "Determina como a data será mostrada"
56
 
57
- #: ../classes/column.php:781
58
  msgid "Example:"
59
  msgstr "Exemplo"
60
 
61
- #: ../classes/column.php:783
62
  #, php-format
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
  msgstr ""
67
 
68
- #: ../classes/column.php:784
69
  msgid "Documentation on date and time formatting."
70
  msgstr "Documentação para formatos de data e hora"
71
 
72
- #: ../classes/column.php:801
73
  msgid "Excerpt length"
74
  msgstr "Tamanho do Resumo"
75
 
76
- #: ../classes/column.php:802
77
  msgid "Number of words"
78
  msgstr "Número de Palavras"
79
 
80
- #: ../classes/column.php:824
81
  msgid "Preview size"
82
  msgstr "Tamanho do preview"
83
 
84
- #: ../classes/column.php:841 ../classes/column.php:897
85
  msgid "Custom"
86
  msgstr "Personalizado"
87
 
88
- #: ../classes/column.php:844
89
  msgid "width"
90
  msgstr "largura"
91
 
92
- #: ../classes/column.php:847
93
  msgid "height"
94
  msgstr "altura"
95
 
96
- #: ../classes/column.php:898 ../classes/settings.php:224
97
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Default"
99
  msgstr "Padrão"
100
 
101
- #: ../classes/column.php:923 ../classes/column.php:984
102
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
103
  msgid "Remove"
104
  msgstr "Remover"
105
 
106
- #: ../classes/column.php:942
107
  msgid "Type"
108
  msgstr "Tipo"
109
 
110
- #: ../classes/column.php:942
111
  msgid "Choose a column type."
112
  msgstr "Escolha um tipo"
113
 
114
- #: ../classes/column.php:952
 
 
 
 
 
 
115
  msgid "Label"
116
  msgstr "Titulo"
117
 
118
- #: ../classes/column.php:952
119
  msgid "This is the name which will appear as the column header."
120
  msgstr ""
121
 
122
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
123
  msgid "Width"
124
  msgstr ""
125
 
126
- #: ../classes/column.php:961 ../classes/column.php:962
127
  msgid "default"
128
  msgstr ""
129
 
130
- #: ../classes/settings.php:68
131
- msgid "Admin Columns Settings"
132
- msgstr ""
133
-
134
- #: ../classes/settings.php:68 ../classes/settings.php:534
135
- #: ../classes/upgrade.php:89
136
- msgid "Admin Columns"
137
  msgstr ""
138
 
139
- #: ../classes/settings.php:129
140
- #, php-format
141
- msgid "%s column is already present and can not be duplicated."
142
  msgstr ""
143
 
144
- #: ../classes/settings.php:184
145
- msgid "Default settings succesfully restored."
 
146
  msgstr ""
147
 
148
- #: ../classes/settings.php:202 ../classes/settings.php:457
149
- msgid "Overview"
 
150
  msgstr ""
151
 
152
- #: ../classes/settings.php:205
153
- msgid ""
154
- "This plugin is for adding and removing additional columns to the "
155
- "administration screens for post(types), pages, media library, comments, "
156
- "links and users. Change the column's label and reorder them."
157
  msgstr ""
158
 
159
- #: ../classes/settings.php:208
160
- msgid "Basics"
 
161
  msgstr ""
162
 
163
- #: ../classes/settings.php:210
164
- msgid "Change order"
165
- msgstr "Alterar ordem"
166
-
167
- #: ../classes/settings.php:211
168
- msgid ""
169
- "By dragging the columns you can change the order which they will appear in."
170
  msgstr ""
171
 
172
- #: ../classes/settings.php:212
173
- msgid "Change label"
174
  msgstr ""
175
 
176
- #: ../classes/settings.php:213
177
- msgid ""
178
- "By clicking on the triangle you will see the column options. Here you can "
179
- "change each label of the columns heading."
180
  msgstr ""
181
 
182
- #: ../classes/settings.php:214
183
- msgid "Change column width"
184
  msgstr ""
185
 
186
- #: ../classes/settings.php:215
187
- msgid ""
188
- "By clicking on the triangle you will see the column options. By using the "
189
- "draggable slider you can set the width of the columns in percentages."
190
  msgstr ""
191
 
192
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
193
- #: ../classes/column/custom-field.php:324
194
- msgid "Custom Field"
195
  msgstr ""
196
 
197
- #: ../classes/settings.php:221
198
- msgid "'Custom Field' column"
199
  msgstr ""
200
 
201
- #: ../classes/settings.php:222
202
- msgid ""
203
- "The custom field colum uses the custom fields from posts and users. There "
204
- "are 10 types which you can set."
205
  msgstr ""
206
 
207
- #: ../classes/settings.php:224
208
- msgid ""
209
- "Value: Can be either a string or array. Arrays will be flattened and values "
210
- "are seperated by a ',' comma."
211
  msgstr ""
212
 
213
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
214
- #: ../classes/column/link/image.php:12
215
- msgid "Image"
 
216
  msgstr ""
217
 
218
- #: ../classes/settings.php:225
219
- msgid ""
220
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
221
- "comma )."
222
  msgstr ""
223
 
224
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
225
  #: ../classes/column/comment/excerpt.php:13
226
- #: ../classes/column/post/excerpt.php:13
 
227
  msgid "Excerpt"
228
  msgstr ""
229
 
230
- #: ../classes/settings.php:226
231
- msgid "Value: This will show the first 20 words of the Post content."
232
- msgstr ""
233
-
234
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
235
- msgid "Multiple Values"
236
  msgstr ""
237
 
238
- #: ../classes/settings.php:227
239
- msgid ""
240
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
241
  msgstr ""
242
 
243
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
- msgid "Numeric"
 
245
  msgstr ""
246
 
247
- #: ../classes/settings.php:228
248
- msgid ""
249
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
- "for sorting, so you can sort your posts on numeric (custom field) values."
251
  msgstr ""
252
 
253
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
- #: ../classes/column/comment/date.php:12
255
- msgid "Date"
256
  msgstr ""
257
 
258
- #: ../classes/settings.php:229
259
- #, php-format
260
- msgid ""
261
- "Value: Can be unix time stamp or a date format as described in the <a "
262
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
- "href='%s'>general settings</a> page."
264
  msgstr ""
265
 
266
- #: ../classes/settings.php:230
267
- msgid "Post Titles"
 
268
  msgstr ""
269
 
270
- #: ../classes/settings.php:230
271
- msgid "Value: can be one or more Post ID's (seperated by ',')."
272
  msgstr ""
273
 
274
- #: ../classes/settings.php:231
275
- msgid "Usernames"
276
  msgstr ""
277
 
278
- #: ../classes/settings.php:231
279
- msgid "Value: can be one or more User ID's (seperated by ',')."
280
  msgstr ""
281
 
282
- #: ../classes/settings.php:232
283
- msgid "Checkmark"
284
  msgstr ""
285
 
286
- #: ../classes/settings.php:232
287
- msgid "Value: should be a 1 (one) or 0 (zero)."
288
  msgstr ""
289
 
290
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
- msgid "Color"
292
  msgstr ""
293
 
294
- #: ../classes/settings.php:233
295
- msgid "Value: hex value color, such as #808080."
296
  msgstr ""
297
 
298
- #: ../classes/settings.php:377
299
- msgid "Welcome to Admin Columns"
300
  msgstr ""
301
 
302
- #: ../classes/settings.php:380
303
- msgid "Thank you for updating to the latest version!"
304
  msgstr ""
305
 
306
- #: ../classes/settings.php:381
 
307
  msgid ""
308
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
- "like it."
310
  msgstr ""
311
 
312
- #: ../classes/settings.php:386
313
- msgid "What’s New"
314
  msgstr ""
315
 
316
- #: ../classes/settings.php:387
317
- msgid "Changelog"
 
 
318
  msgstr ""
319
 
320
- #: ../classes/settings.php:389
321
- msgid "Download Addons"
322
  msgstr ""
323
 
324
- #: ../classes/settings.php:395
325
- msgid "Addons"
326
  msgstr ""
327
 
328
- #: ../classes/settings.php:397
329
- msgid ""
330
- "Addons are now activated by downloading and installing individual plugins. "
331
- "Although these plugins will not be hosted on the wordpress.org repository, "
332
- "each Add-on will continue to receive updates in the usual way."
333
  msgstr ""
334
 
335
- #: ../classes/settings.php:400
336
- msgid ""
337
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
  msgstr ""
339
 
340
- #: ../classes/settings.php:403
341
- msgid "Addons are seperate plugins which need to be downloaded."
342
  msgstr ""
343
 
344
- #: ../classes/settings.php:403
345
- msgid "Download your Addons"
346
  msgstr ""
347
 
348
- #: ../classes/settings.php:409
349
- msgid "This website does not use add-ons"
350
  msgstr ""
351
 
352
- #: ../classes/settings.php:409
353
- msgid "See our website for the Pro-addon."
354
  msgstr ""
355
 
356
- #: ../classes/settings.php:416
357
- msgid "Important"
 
358
  msgstr ""
359
 
360
- #: ../classes/settings.php:418
361
- msgid "Database Changes"
362
  msgstr ""
363
 
364
- #: ../classes/settings.php:419
365
- msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you "
367
- "can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
- #: ../classes/settings.php:422
371
- msgid "Make sure you backup your database and then click"
372
  msgstr ""
373
 
374
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
- msgid "Upgrade Database"
376
  msgstr ""
377
 
378
- #: ../classes/settings.php:425
379
- msgid "Potential Issues"
380
  msgstr ""
381
 
382
- #: ../classes/settings.php:426
383
- msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and action/"
385
- "filters, your website may not operate correctly. It is important that you "
386
- "read the full"
387
  msgstr ""
388
 
389
- #: ../classes/settings.php:426
390
- msgid "Migrating from v1 to v2"
391
  msgstr ""
392
 
393
- #: ../classes/settings.php:426
394
- msgid "guide to view the full list of changes."
395
  msgstr ""
396
 
397
- #: ../classes/settings.php:426
398
- #, php-format
399
- msgid ""
400
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
- "can fix it in the next release."
402
  msgstr ""
403
 
404
- #: ../classes/settings.php:429
405
- msgid "Important!"
406
  msgstr ""
407
 
408
- #: ../classes/settings.php:429
409
- msgid ""
410
- "If you updated the Admin Columns plugin without prior knowledge of such "
411
- "changes, Please roll back to the latest"
412
  msgstr ""
413
 
414
- #: ../classes/settings.php:429
415
- msgid "version 1"
416
  msgstr ""
417
 
418
- #: ../classes/settings.php:429
419
- msgid "of this plugin."
420
  msgstr ""
421
 
422
- #: ../classes/settings.php:435
423
- msgid "Changelog for"
424
  msgstr ""
425
 
426
- #: ../classes/settings.php:450
427
- msgid "Learn more"
428
  msgstr ""
429
 
430
- #: ../classes/settings.php:459
431
- msgid ""
432
- "New to v2, all Addons act as separate plugins which need to be individually "
433
- "downloaded, installed and updated."
434
  msgstr ""
435
 
436
- #: ../classes/settings.php:460
437
- msgid ""
438
- "This page will assist you in downloading and installing each available Addon."
439
  msgstr ""
440
 
441
- #: ../classes/settings.php:461
442
- msgid "Available Addons"
443
  msgstr ""
444
 
445
- #: ../classes/settings.php:466
446
- msgid "Name"
447
  msgstr ""
448
 
449
- #: ../classes/settings.php:467 ../classes/settings.php:475
450
- msgid "Download"
451
  msgstr ""
452
 
453
- #: ../classes/settings.php:473
454
- msgid "Pro Add-on (includes Sortorder add-on)"
 
 
455
  msgstr ""
456
 
457
- #: ../classes/settings.php:483
458
- msgid "Installation"
459
  msgstr ""
460
 
461
- #: ../classes/settings.php:485
462
- msgid "For each Add-on available, please perform the following:"
 
463
  msgstr ""
464
 
465
- #: ../classes/settings.php:487
466
- msgid "Download the Addon plugin (.zip file) to your desktop"
467
  msgstr ""
468
 
469
- #: ../classes/settings.php:488
470
- msgid "Navigate to"
 
471
  msgstr ""
472
 
473
- #: ../classes/settings.php:488
474
- msgid "Plugins > Add New > Upload"
475
  msgstr ""
476
 
477
- #: ../classes/settings.php:489
478
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
479
  msgstr ""
480
 
481
- #: ../classes/settings.php:490
482
- msgid ""
483
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
484
- "link"
485
  msgstr ""
486
 
487
- #: ../classes/settings.php:491
488
- msgid "The Add-on is now installed and activated!"
489
  msgstr ""
490
 
491
- #: ../classes/settings.php:492
492
- #, php-format
493
- msgid ""
494
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
495
  msgstr ""
496
 
497
- #: ../classes/settings.php:502
498
- msgid "Start using Admin Columns"
499
  msgstr ""
500
 
501
- #: ../classes/settings.php:580
502
- msgid "Store settings"
503
  msgstr ""
504
 
505
- #: ../classes/settings.php:585
506
- msgid "Update"
 
507
  msgstr ""
508
 
509
- #: ../classes/settings.php:585
510
- msgid "Publish"
511
  msgstr ""
512
 
513
- #: ../classes/settings.php:589
514
- #, php-format
515
- msgid ""
516
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
517
- "\\' to delete, \\'Cancel\\' to stop"
518
  msgstr ""
519
 
520
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
521
- #: ../classes/column/post/actions.php:53
522
- msgid "Restore"
523
  msgstr ""
524
 
525
- #: ../classes/settings.php:590
526
- msgid "columns"
527
  msgstr ""
528
 
529
- #: ../classes/settings.php:600
530
- msgid "Get the Pro Add-on"
531
  msgstr ""
532
 
533
- #: ../classes/settings.php:604
534
- msgid "Add Sorting"
535
  msgstr ""
536
 
537
- #: ../classes/settings.php:605
538
- msgid "Add Filtering"
539
  msgstr ""
540
 
541
- #: ../classes/settings.php:606
542
- msgid "Add Import/Export"
543
- msgstr ""
544
 
545
- #: ../classes/settings.php:609
546
- #, php-format
547
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
548
  msgstr ""
549
 
550
- #: ../classes/settings.php:617
551
- msgid "Support"
552
  msgstr ""
553
 
554
- #: ../classes/settings.php:620
555
- msgid "Check the <strong>Help</strong> section in the top-right screen."
 
556
  msgstr ""
557
 
558
- #: ../classes/settings.php:622
559
- #, php-format
560
- msgid ""
561
- "For full documentation, bug reports, feature suggestions and other tips <a "
562
- "href='%s'>visit the Admin Columns website</a>"
563
  msgstr ""
564
 
565
- #: ../classes/settings.php:642
566
- msgid "Drag and drop to reorder"
567
  msgstr ""
568
 
569
- #: ../classes/settings.php:645
570
- msgid "Add Column"
571
  msgstr ""
572
 
573
- #: ../classes/settings.php:696
574
- msgid "General Settings"
575
  msgstr ""
576
 
577
- #: ../classes/settings.php:697
578
- msgid "Customize your Admin Columns settings."
579
  msgstr ""
580
 
581
- #: ../classes/settings.php:710
582
- msgid "Show hidden custom fields. Default is <code>off</code>."
583
  msgstr ""
584
 
585
- #: ../classes/settings.php:716
586
- msgid ""
587
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
588
  msgstr ""
589
 
590
- #: ../classes/settings.php:723
591
- msgid "Save"
592
  msgstr ""
593
 
594
- #: ../classes/settings.php:763
595
- msgid "Restore Settings"
596
  msgstr ""
597
 
598
- #: ../classes/settings.php:764
599
- msgid "This will delete all column settings and restore the default settings."
600
  msgstr ""
601
 
602
- #: ../classes/settings.php:770
603
- msgid "Restore default settings"
604
- msgstr ""
605
 
606
- #: ../classes/settings.php:770
607
- msgid ""
608
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
609
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
610
- msgstr ""
611
 
612
- #: ../classes/storage_model.php:167
613
- msgid "settings succesfully restored."
614
- msgstr ""
615
 
616
- #: ../classes/storage_model.php:181
617
- msgid "No columns settings available."
618
  msgstr ""
619
 
620
- #: ../classes/storage_model.php:204
621
- #, php-format
622
- msgid "You are trying to store the same settings for %s."
623
  msgstr ""
624
 
625
- #: ../classes/storage_model.php:208
626
- #, php-format
627
- msgid "Settings for %s updated succesfully."
 
 
 
 
 
 
 
 
628
  msgstr ""
629
 
630
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
631
- msgid "View"
632
  msgstr ""
633
 
634
- #: ../classes/upgrade.php:45
635
- msgid "Upgrade"
636
  msgstr ""
637
 
638
- #: ../classes/upgrade.php:90
639
- msgid "requires a database upgrade"
640
  msgstr ""
641
 
642
- #: ../classes/upgrade.php:93
643
- msgid "why?"
644
  msgstr ""
645
 
646
- #: ../classes/upgrade.php:94
647
- msgid "Please"
648
  msgstr ""
649
 
650
- #: ../classes/upgrade.php:95
651
- msgid "backup your database"
652
  msgstr ""
653
 
654
- #: ../classes/upgrade.php:96
655
- msgid "then click"
656
  msgstr ""
657
 
658
- #: ../classes/upgrade.php:304
659
- msgid "Migrating Column Settings"
660
  msgstr ""
661
 
662
- #: ../classes/upgrade.php:340
663
- msgid "No Upgrade Required"
664
  msgstr ""
665
 
666
- #: ../classes/upgrade.php:341
667
- msgid "Return to welcome screen."
 
668
  msgstr ""
669
 
670
- #: ../classes/upgrade.php:359
671
- msgid "Upgrade Complete!"
 
672
  msgstr ""
673
 
674
- #: ../classes/upgrade.php:359
675
- msgid "Return to settings."
676
  msgstr ""
677
 
678
- #: ../classes/upgrade.php:360
679
- msgid "Error"
680
  msgstr ""
681
 
682
- #: ../classes/upgrade.php:361
683
  msgid ""
684
- "Sorry. Something went wrong during the upgrade process. Please report this "
685
- "on the support forum."
 
686
  msgstr ""
687
 
688
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
689
- msgid "Media Library"
690
  msgstr ""
691
 
692
- #: ../classes/column/custom-field.php:79
693
- msgid "Post Title (Post ID's)"
 
 
 
 
 
694
  msgstr ""
695
 
696
- #: ../classes/column/custom-field.php:80
697
- msgid "Username (User ID's)"
698
  msgstr ""
699
 
700
- #: ../classes/column/custom-field.php:81
701
- msgid "Checkmark (true/false)"
 
 
702
  msgstr ""
703
 
704
- #: ../classes/column/custom-field.php:324
705
- msgid "Select your custom field."
706
  msgstr ""
707
 
708
- #: ../classes/column/custom-field.php:334
709
- msgid "No custom fields available."
 
 
710
  msgstr ""
711
 
712
- #: ../classes/column/custom-field.php:341
713
- msgid "Field Type"
714
  msgstr ""
715
 
716
- #: ../classes/column/custom-field.php:341
717
- msgid "This will determine how the value will be displayed."
 
 
718
  msgstr ""
719
 
720
- #: ../classes/column/custom-field.php:384
721
- msgid "Before"
 
 
722
  msgstr ""
723
 
724
- #: ../classes/column/custom-field.php:384
725
- msgid "This text will appear before the custom field value."
 
 
726
  msgstr ""
727
 
728
- #: ../classes/column/custom-field.php:390
729
- msgid "After"
730
  msgstr ""
731
 
732
- #: ../classes/column/custom-field.php:390
733
- msgid "This text will appear after the custom field value."
 
734
  msgstr ""
735
 
736
- #: ../classes/column/comment/actions.php:14
737
- #: ../classes/column/link/actions.php:14
738
- #: ../classes/column/media/actions.php:14
739
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
740
- msgid "Actions"
741
  msgstr ""
742
 
743
- #: ../classes/column/comment/actions.php:73
744
- #: ../classes/column/comment/actions.php:78
745
- msgid "Unapprove"
 
 
 
746
  msgstr ""
747
 
748
- #: ../classes/column/comment/actions.php:75
749
- #: ../classes/column/comment/actions.php:77
750
- msgid "Approve"
751
  msgstr ""
752
 
753
- #: ../classes/column/comment/actions.php:90
754
- #: ../classes/column/post/actions.php:57
755
- msgid "Delete Permanently"
756
  msgstr ""
757
 
758
- #: ../classes/column/comment/actions.php:96
759
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
760
- #: ../classes/column/user/actions.php:57
761
- msgid "Edit"
762
  msgstr ""
763
 
764
- #: ../classes/column/comment/actions.php:97
765
- #: ../classes/column/post/actions.php:49
766
- msgid "Quick&nbsp;Edit"
767
  msgstr ""
768
 
769
- #: ../classes/column/comment/actions.php:98
770
- msgid "Reply"
771
  msgstr ""
772
 
773
- #: ../classes/column/comment/agent.php:12
774
- msgid "Agent"
775
  msgstr ""
776
 
777
- #: ../classes/column/comment/approved.php:12
778
- #: ../classes/column/post/comment-count.php:31
779
- msgid "Approved"
780
  msgstr ""
781
 
782
- #: ../classes/column/comment/author-avatar.php:12
783
- msgid "Avatar"
 
 
784
  msgstr ""
785
 
786
- #: ../classes/column/comment/author-email.php:12
787
- msgid "Author email"
788
  msgstr ""
789
 
790
- #: ../classes/column/comment/author-ip.php:12
791
- msgid "Author IP"
792
  msgstr ""
793
 
794
- #: ../classes/column/comment/author-url.php:12
795
- msgid "Author url"
 
 
796
  msgstr ""
797
 
798
- #: ../classes/column/comment/author.php:12
799
- msgid "Author"
800
  msgstr ""
801
 
802
- #: ../classes/column/comment/date-gmt.php:12
803
- msgid "Date GMT"
804
  msgstr ""
805
 
806
- #: ../classes/column/comment/date-gmt.php:25
807
- #: ../classes/column/comment/date.php:25
808
- #, php-format
809
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
810
  msgstr ""
811
 
812
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
813
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
814
- msgid "ID"
815
  msgstr ""
816
 
817
- #: ../classes/column/comment/reply-to.php:12
818
- msgid "In Reply To"
 
 
 
819
  msgstr ""
820
 
821
- #: ../classes/column/comment/word-count.php:12
822
- #: ../classes/column/post/word-count.php:12
823
- msgid "Word count"
824
  msgstr ""
825
 
826
- #: ../classes/column/link/actions.php:46
827
- #, php-format
828
- msgid ""
829
- "You are about to delete this link '%s'\n"
830
- " 'Cancel' to stop, 'OK' to delete."
831
  msgstr ""
832
 
833
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
834
- msgid "Delete"
835
  msgstr ""
836
 
837
- #: ../classes/column/link/description.php:12
838
- #: ../classes/column/media/description.php:12
839
- #: ../classes/column/user/description.php:14
840
- msgid "Description"
841
  msgstr ""
842
 
843
- #: ../classes/column/link/length.php:12
844
- msgid "Length"
845
  msgstr ""
846
 
847
- #: ../classes/column/link/notes.php:13
848
- msgid "Notes"
849
  msgstr ""
850
 
851
- #: ../classes/column/link/owner.php:12
852
- msgid "Owner"
853
  msgstr ""
854
 
855
- #: ../classes/column/link/rss.php:12
856
- msgid "Rss"
 
 
857
  msgstr ""
858
 
859
- #: ../classes/column/link/target.php:12
860
- msgid "Target"
861
  msgstr ""
862
 
863
- #: ../classes/column/media/alternate-text.php:12
864
- msgid "Alt"
865
  msgstr ""
866
 
867
- #: ../classes/column/media/available-sizes.php:14
868
- msgid "Available Sizes"
869
  msgstr ""
870
 
871
- #: ../classes/column/media/available-sizes.php:37
872
- msgid "full size"
 
 
 
873
  msgstr ""
874
 
875
- #: ../classes/column/media/caption.php:12
876
- #: ../classes/column/media/exif-data.php:36
877
- msgid "Caption"
878
  msgstr ""
879
 
880
- #: ../classes/column/media/dimensions.php:12
881
- msgid "Dimensions"
882
  msgstr ""
883
 
884
- #: ../classes/column/media/exif-data.php:12
885
- msgid "EXIF data"
 
 
 
886
  msgstr ""
887
 
888
- #: ../classes/column/media/exif-data.php:33
889
- msgid "Aperture"
890
  msgstr ""
891
 
892
- #: ../classes/column/media/exif-data.php:34
893
- msgid "Credit"
 
 
894
  msgstr ""
895
 
896
- #: ../classes/column/media/exif-data.php:35
897
- msgid "Camera"
898
  msgstr ""
899
 
900
- #: ../classes/column/media/exif-data.php:37
901
- msgid "Timestamp"
902
  msgstr ""
903
 
904
- #: ../classes/column/media/exif-data.php:38
905
- msgid "Copyright EXIF"
906
  msgstr ""
907
 
908
- #: ../classes/column/media/exif-data.php:39
909
- msgid "Focal Length"
910
  msgstr ""
911
 
912
- #: ../classes/column/media/exif-data.php:40
913
- msgid "ISO"
 
 
914
  msgstr ""
915
 
916
- #: ../classes/column/media/exif-data.php:41
917
- msgid "Shutter Speed"
 
918
  msgstr ""
919
 
920
- #: ../classes/column/media/exif-data.php:42
921
- msgid "Title"
922
  msgstr ""
923
 
924
- #: ../classes/column/media/file-name.php:12
925
- msgid "File name"
926
  msgstr ""
927
 
928
- #: ../classes/column/media/file-size.php:12
929
- msgid "File size"
930
  msgstr ""
931
 
932
- #: ../classes/column/media/full-path.php:12
933
- msgid "Full path"
934
  msgstr ""
935
 
936
- #: ../classes/column/media/height.php:12
937
- msgid "Height"
938
  msgstr ""
939
 
940
- #: ../classes/column/media/mime-type.php:12
941
- msgid "Mime type"
942
  msgstr ""
943
 
944
- #: ../classes/column/post/actions.php:48
945
- msgid "Edit this item"
946
  msgstr ""
947
 
948
- #: ../classes/column/post/actions.php:49
949
- msgid "Edit this item inline"
950
  msgstr ""
951
 
952
- #: ../classes/column/post/actions.php:53
953
- msgid "Restore this item from the Trash"
954
  msgstr ""
955
 
956
- #: ../classes/column/post/actions.php:55
957
- msgid "Move this item to the Trash"
958
  msgstr ""
959
 
960
- #: ../classes/column/post/actions.php:55
961
- #: ../classes/column/post/comment-count.php:34
962
- #: ../classes/column/post/status.php:35
963
- msgid "Trash"
964
  msgstr ""
965
 
966
- #: ../classes/column/post/actions.php:57
967
- msgid "Delete this item permanently"
968
  msgstr ""
969
 
970
- #: ../classes/column/post/actions.php:62
971
  #, php-format
972
- msgid "Preview &#8220;%s&#8221;"
 
973
  msgstr ""
974
 
975
- #: ../classes/column/post/actions.php:62
976
- msgid "Preview"
977
  msgstr ""
978
 
979
- #: ../classes/column/post/actions.php:64
980
- #, php-format
981
- msgid "View &#8220;%s&#8221;"
982
  msgstr ""
983
 
984
- #: ../classes/column/post/attachment-count.php:12
985
- msgid "No. of Attachments"
986
  msgstr ""
987
 
988
- #: ../classes/column/post/attachment.php:12
989
- msgid "Attachment"
990
  msgstr ""
991
 
992
- #: ../classes/column/post/author-name.php:12
993
- msgid "Display Author As"
 
994
  msgstr ""
995
 
996
- #: ../classes/column/post/author-name.php:33
997
- msgid "Display Name"
998
  msgstr ""
999
 
1000
- #: ../classes/column/post/author-name.php:34
1001
- msgid "First Name"
1002
  msgstr ""
1003
 
1004
- #: ../classes/column/post/author-name.php:35
1005
- msgid "Last Name"
1006
  msgstr ""
1007
 
1008
- #: ../classes/column/post/author-name.php:36
1009
- #: ../classes/column/user/nickname.php:14
1010
- msgid "Nickname"
1011
  msgstr ""
1012
 
1013
- #: ../classes/column/post/author-name.php:37
1014
- msgid "User Login"
 
 
1015
  msgstr ""
1016
 
1017
- #: ../classes/column/post/author-name.php:38
1018
- msgid "User Email"
1019
- msgstr ""
1020
 
1021
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1022
- msgid "User ID"
1023
  msgstr ""
1024
 
1025
- #: ../classes/column/post/author-name.php:40
1026
- msgid "First and Last Name"
1027
  msgstr ""
1028
 
1029
- #: ../classes/column/post/author-name.php:106
1030
- msgid "This is the format of the author name."
1031
  msgstr ""
1032
 
1033
- #: ../classes/column/post/before-moretag.php:14
1034
- msgid "Before More Tag"
1035
  msgstr ""
1036
 
1037
- #: ../classes/column/post/comment-count.php:14
1038
- msgid "Comment count"
1039
  msgstr ""
1040
 
1041
- #: ../classes/column/post/comment-count.php:30
1042
- msgid "Total"
1043
- msgstr "Total"
 
 
 
1044
 
1045
- #: ../classes/column/post/comment-count.php:32
1046
- msgid "Pending"
1047
  msgstr ""
1048
 
1049
- #: ../classes/column/post/comment-count.php:33
1050
- msgid "Spam"
1051
  msgstr ""
1052
 
1053
- #: ../classes/column/post/comment-count.php:78
1054
- #: ../classes/column/post/comment-status.php:14
1055
- msgid "Comment status"
1056
  msgstr ""
1057
 
1058
- #: ../classes/column/post/comment-count.php:78
1059
- msgid "Select which comment status you like to display."
1060
  msgstr ""
1061
 
1062
- #: ../classes/column/post/featured-image.php:14
1063
- msgid "Featured Image"
1064
  msgstr ""
1065
 
1066
- #: ../classes/column/post/formats.php:14
1067
- msgid "Post Format"
 
1068
  msgstr ""
1069
 
1070
- #: ../classes/column/post/modified.php:14
1071
- msgid "Last modified"
1072
  msgstr ""
1073
 
1074
- #: ../classes/column/post/order.php:14
1075
- msgid "Page Order"
1076
  msgstr ""
1077
 
1078
- #: ../classes/column/post/page-template.php:12
1079
- msgid "Page Template"
 
 
 
1080
  msgstr ""
1081
 
1082
- #: ../classes/column/post/parent.php:12
1083
- msgid "Parent"
1084
  msgstr ""
1085
 
1086
- #: ../classes/column/post/ping-status.php:14
1087
- msgid "Ping status"
1088
  msgstr ""
1089
 
1090
- #: ../classes/column/post/roles.php:14
1091
- msgid "Roles"
1092
  msgstr ""
1093
 
1094
- #: ../classes/column/post/slug.php:12
1095
- msgid "Slug"
1096
  msgstr ""
1097
 
1098
- #: ../classes/column/post/status.php:14
1099
- msgid "Status"
1100
- msgstr "Status"
 
1101
 
1102
- #: ../classes/column/post/status.php:30
1103
- msgid "Published"
1104
- msgstr "Publicado"
 
1105
 
1106
- #: ../classes/column/post/status.php:31
1107
- msgid "Draft"
1108
- msgstr "Rascunho"
1109
 
1110
- #: ../classes/column/post/status.php:32
1111
- msgid "Scheduled"
1112
  msgstr ""
1113
 
1114
- #: ../classes/column/post/status.php:33
1115
- msgid "Private"
1116
  msgstr ""
1117
 
1118
- #: ../classes/column/post/status.php:34
1119
- msgid "Pending Review"
1120
- msgstr "Aguardando Revisão"
1121
 
1122
- #: ../classes/column/post/sticky.php:14
1123
- msgid "Sticky"
1124
  msgstr ""
1125
 
1126
- #: ../classes/column/post/taxonomy.php:12
1127
- #: ../classes/column/post/taxonomy.php:68
1128
- msgid "Taxonomy"
1129
  msgstr ""
1130
 
1131
- #: ../classes/column/user/comment-count.php:14
1132
- msgid "Comment Count"
1133
  msgstr ""
1134
 
1135
- #: ../classes/column/user/first-name.php:14
1136
- msgid "First name"
1137
  msgstr ""
1138
 
1139
- #: ../classes/column/user/last-name.php:14
1140
- msgid "Last name"
1141
  msgstr ""
1142
 
1143
- #: ../classes/column/user/post-count.php:14
1144
- msgid "Post Count"
1145
  msgstr ""
1146
 
1147
- #: ../classes/column/user/post-count.php:92
1148
- msgid "Post Type"
1149
  msgstr ""
1150
 
1151
- #: ../classes/column/user/registered.php:14
1152
- msgid "Registered"
1153
  msgstr ""
1154
 
1155
- #: ../classes/column/user/url.php:14
1156
- msgid "Url"
1157
  msgstr ""
1158
 
1159
- #: ../classes/storage_model/comment.php:13
1160
- msgid "Comments"
1161
  msgstr ""
1162
 
1163
- #: ../classes/storage_model/link.php:13
1164
- msgid "Links"
1165
  msgstr ""
1166
 
1167
- #: ../classes/storage_model/user.php:13
1168
- msgid "Users"
 
 
1169
  msgstr ""
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:44+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:44+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/pt_BR/)\n"
13
+ "Language: pt_BR\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
26
  msgid "Thumbnail"
27
  msgstr "Miniaturas"
28
 
29
+ #: ../classes/column.php:498
30
  msgid "Medium"
31
  msgstr "Médio"
32
 
33
+ #: ../classes/column.php:499
34
  msgid "Large"
35
  msgstr "Grande"
36
 
37
+ #: ../classes/column.php:500
38
  msgid "Full"
39
  msgstr "Original"
40
 
41
+ #: ../classes/column.php:792
42
  msgid "Date Format"
43
  msgstr "Formato de Data"
44
 
45
+ #: ../classes/column.php:793
46
  msgid "This will determine how the date will be displayed."
47
  msgstr "Determina como a data será mostrada"
48
 
49
+ #: ../classes/column.php:799
50
  msgid "Example:"
51
  msgstr "Exemplo"
52
 
53
+ #: ../classes/column.php:801
54
  #, php-format
55
  msgid ""
56
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
57
  "date format here</a>."
58
  msgstr ""
59
 
60
+ #: ../classes/column.php:802
61
  msgid "Documentation on date and time formatting."
62
  msgstr "Documentação para formatos de data e hora"
63
 
64
+ #: ../classes/column.php:820
65
  msgid "Excerpt length"
66
  msgstr "Tamanho do Resumo"
67
 
68
+ #: ../classes/column.php:821
69
  msgid "Number of words"
70
  msgstr "Número de Palavras"
71
 
72
+ #: ../classes/column.php:843
73
  msgid "Preview size"
74
  msgstr "Tamanho do preview"
75
 
76
+ #: ../classes/column.php:860 ../classes/column.php:939
77
  msgid "Custom"
78
  msgstr "Personalizado"
79
 
80
+ #: ../classes/column.php:863
81
  msgid "width"
82
  msgstr "largura"
83
 
84
+ #: ../classes/column.php:866
85
  msgid "height"
86
  msgstr "altura"
87
 
88
+ #: ../classes/column.php:882
89
+ msgid "Before"
90
+ msgstr ""
91
+
92
+ #: ../classes/column.php:882
93
+ msgid "This text will appear before the custom field value."
94
+ msgstr ""
95
+
96
+ #: ../classes/column.php:888
97
+ msgid "After"
98
+ msgstr ""
99
+
100
+ #: ../classes/column.php:888
101
+ msgid "This text will appear after the custom field value."
102
+ msgstr ""
103
+
104
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
105
+ #: ../classes/settings.php:212
106
  msgid "Default"
107
  msgstr "Padrão"
108
 
109
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
110
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
111
+ #: ../classes/column/user/actions.php:66
112
+ msgid "Edit"
113
+ msgstr ""
114
+
115
+ #: ../classes/column.php:963 ../classes/column.php:1024
116
+ #: ../classes/column/user/actions.php:74
117
  msgid "Remove"
118
  msgstr "Remover"
119
 
120
+ #: ../classes/column.php:981
121
  msgid "Type"
122
  msgstr "Tipo"
123
 
124
+ #: ../classes/column.php:981
125
  msgid "Choose a column type."
126
  msgstr "Escolha um tipo"
127
 
128
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
129
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
130
+ #: ../classes/column/post/ID.php:12
131
+ msgid "ID"
132
+ msgstr ""
133
+
134
+ #: ../classes/column.php:991
135
  msgid "Label"
136
  msgstr "Titulo"
137
 
138
+ #: ../classes/column.php:991
139
  msgid "This is the name which will appear as the column header."
140
  msgstr ""
141
 
142
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
143
  msgid "Width"
144
  msgstr ""
145
 
146
+ #: ../classes/column.php:1000 ../classes/column.php:1001
147
  msgid "default"
148
  msgstr ""
149
 
150
+ #: ../classes/column/comment/actions.php:14
151
+ #: ../classes/column/link/actions.php:14
152
+ #: ../classes/column/media/actions.php:14
153
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
154
+ msgid "Actions"
 
 
155
  msgstr ""
156
 
157
+ #: ../classes/column/comment/actions.php:73
158
+ #: ../classes/column/comment/actions.php:78
159
+ msgid "Unapprove"
160
  msgstr ""
161
 
162
+ #: ../classes/column/comment/actions.php:75
163
+ #: ../classes/column/comment/actions.php:77
164
+ msgid "Approve"
165
  msgstr ""
166
 
167
+ #: ../classes/column/comment/actions.php:86
168
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
169
+ msgid "Restore"
170
  msgstr ""
171
 
172
+ #: ../classes/column/comment/actions.php:90
173
+ #: ../classes/column/post/actions.php:57
174
+ msgid "Delete Permanently"
 
 
175
  msgstr ""
176
 
177
+ #: ../classes/column/comment/actions.php:97
178
+ #: ../classes/column/post/actions.php:49
179
+ msgid "Quick&nbsp;Edit"
180
  msgstr ""
181
 
182
+ #: ../classes/column/comment/actions.php:98
183
+ msgid "Reply"
 
 
 
 
 
184
  msgstr ""
185
 
186
+ #: ../classes/column/comment/agent.php:12
187
+ msgid "Agent"
188
  msgstr ""
189
 
190
+ #: ../classes/column/comment/approved.php:12
191
+ #: ../classes/column/post/comment-count.php:31
192
+ msgid "Approved"
 
193
  msgstr ""
194
 
195
+ #: ../classes/column/comment/author-avatar.php:12
196
+ msgid "Avatar"
197
  msgstr ""
198
 
199
+ #: ../classes/column/comment/author-email.php:12
200
+ msgid "Author email"
 
 
201
  msgstr ""
202
 
203
+ #: ../classes/column/comment/author-ip.php:12
204
+ msgid "Author IP"
 
205
  msgstr ""
206
 
207
+ #: ../classes/column/comment/author-url.php:12
208
+ msgid "Author url"
209
  msgstr ""
210
 
211
+ #: ../classes/column/comment/author.php:12
212
+ msgid "Author"
 
 
213
  msgstr ""
214
 
215
+ #: ../classes/column/comment/date-gmt.php:12
216
+ msgid "Date GMT"
 
 
217
  msgstr ""
218
 
219
+ #: ../classes/column/comment/date-gmt.php:25
220
+ #: ../classes/column/comment/date.php:25
221
+ #, php-format
222
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
223
  msgstr ""
224
 
225
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
226
+ #: ../classes/settings.php:217
227
+ msgid "Date"
 
228
  msgstr ""
229
 
 
230
  #: ../classes/column/comment/excerpt.php:13
231
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
232
+ #: ../classes/settings.php:214
233
  msgid "Excerpt"
234
  msgstr ""
235
 
236
+ #: ../classes/column/comment/reply-to.php:12
237
+ msgid "In Reply To"
 
 
 
 
238
  msgstr ""
239
 
240
+ #: ../classes/column/comment/word-count.php:12
241
+ #: ../classes/column/post/word-count.php:12
242
+ msgid "Word count"
243
  msgstr ""
244
 
245
+ #: ../classes/column/custom-field.php:16
246
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
247
+ msgid "Custom Field"
248
  msgstr ""
249
 
250
+ #: ../classes/column/custom-field.php:66
251
+ msgid "Checkmark (true/false)"
 
 
252
  msgstr ""
253
 
254
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
255
+ msgid "Color"
 
256
  msgstr ""
257
 
258
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
259
+ msgid "Counter"
 
 
 
 
260
  msgstr ""
261
 
262
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
263
+ #: ../classes/settings.php:213
264
+ msgid "Image"
265
  msgstr ""
266
 
267
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
268
+ msgid "Media Library"
269
  msgstr ""
270
 
271
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
272
+ msgid "Multiple Values"
273
  msgstr ""
274
 
275
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
276
+ msgid "Numeric"
277
  msgstr ""
278
 
279
+ #: ../classes/column/custom-field.php:75
280
+ msgid "Post Title (Post ID's)"
281
  msgstr ""
282
 
283
+ #: ../classes/column/custom-field.php:76
284
+ msgid "Username (User ID's)"
285
  msgstr ""
286
 
287
+ #: ../classes/column/custom-field.php:377
288
+ msgid "Select your custom field."
289
  msgstr ""
290
 
291
+ #: ../classes/column/custom-field.php:387
292
+ msgid "No custom fields available."
293
  msgstr ""
294
 
295
+ #: ../classes/column/custom-field.php:394
296
+ msgid "Field Type"
297
  msgstr ""
298
 
299
+ #: ../classes/column/custom-field.php:394
300
+ msgid "This will determine how the value will be displayed."
301
  msgstr ""
302
 
303
+ #: ../classes/column/link/actions.php:46
304
+ #, php-format
305
  msgid ""
306
+ "You are about to delete this link '%s'\n"
307
+ " 'Cancel' to stop, 'OK' to delete."
308
  msgstr ""
309
 
310
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
311
+ msgid "Delete"
312
  msgstr ""
313
 
314
+ #: ../classes/column/link/description.php:12
315
+ #: ../classes/column/media/description.php:12
316
+ #: ../classes/column/user/description.php:14
317
+ msgid "Description"
318
  msgstr ""
319
 
320
+ #: ../classes/column/link/length.php:12
321
+ msgid "Length"
322
  msgstr ""
323
 
324
+ #: ../classes/column/link/notes.php:13
325
+ msgid "Notes"
326
  msgstr ""
327
 
328
+ #: ../classes/column/link/owner.php:12
329
+ msgid "Owner"
 
 
 
330
  msgstr ""
331
 
332
+ #: ../classes/column/link/rss.php:12
333
+ msgid "Rss"
 
334
  msgstr ""
335
 
336
+ #: ../classes/column/link/target.php:12
337
+ msgid "Target"
338
  msgstr ""
339
 
340
+ #: ../classes/column/media/alternate-text.php:12
341
+ msgid "Alt"
342
  msgstr ""
343
 
344
+ #: ../classes/column/media/available-sizes.php:14
345
+ msgid "Available Sizes"
346
  msgstr ""
347
 
348
+ #: ../classes/column/media/available-sizes.php:37
349
+ msgid "full size"
350
  msgstr ""
351
 
352
+ #: ../classes/column/media/caption.php:12
353
+ #: ../classes/column/media/exif-data.php:36
354
+ msgid "Caption"
355
  msgstr ""
356
 
357
+ #: ../classes/column/media/dimensions.php:12
358
+ msgid "Dimensions"
359
  msgstr ""
360
 
361
+ #: ../classes/column/media/exif-data.php:12
362
+ msgid "EXIF data"
 
 
363
  msgstr ""
364
 
365
+ #: ../classes/column/media/exif-data.php:33
366
+ msgid "Aperture"
367
  msgstr ""
368
 
369
+ #: ../classes/column/media/exif-data.php:34
370
+ msgid "Credit"
371
  msgstr ""
372
 
373
+ #: ../classes/column/media/exif-data.php:35
374
+ msgid "Camera"
375
  msgstr ""
376
 
377
+ #: ../classes/column/media/exif-data.php:37
378
+ msgid "Timestamp"
 
 
 
379
  msgstr ""
380
 
381
+ #: ../classes/column/media/exif-data.php:38
382
+ msgid "Copyright EXIF"
383
  msgstr ""
384
 
385
+ #: ../classes/column/media/exif-data.php:39
386
+ msgid "Focal Length"
387
  msgstr ""
388
 
389
+ #: ../classes/column/media/exif-data.php:40
390
+ msgid "ISO"
 
 
 
391
  msgstr ""
392
 
393
+ #: ../classes/column/media/exif-data.php:41
394
+ msgid "Shutter Speed"
395
  msgstr ""
396
 
397
+ #: ../classes/column/media/exif-data.php:42
398
+ msgid "Title"
 
 
399
  msgstr ""
400
 
401
+ #: ../classes/column/media/file-name.php:12
402
+ msgid "File name"
403
  msgstr ""
404
 
405
+ #: ../classes/column/media/file-size.php:12
406
+ msgid "File size"
407
  msgstr ""
408
 
409
+ #: ../classes/column/media/full-path.php:12
410
+ msgid "Full path"
411
  msgstr ""
412
 
413
+ #: ../classes/column/media/height.php:12
414
+ msgid "Height"
415
  msgstr ""
416
 
417
+ #: ../classes/column/media/mime-type.php:12
418
+ msgid "Mime type"
 
 
419
  msgstr ""
420
 
421
+ #: ../classes/column/post/actions.php:48
422
+ msgid "Edit this item"
 
423
  msgstr ""
424
 
425
+ #: ../classes/column/post/actions.php:49
426
+ msgid "Edit this item inline"
427
  msgstr ""
428
 
429
+ #: ../classes/column/post/actions.php:53
430
+ msgid "Restore this item from the Trash"
431
  msgstr ""
432
 
433
+ #: ../classes/column/post/actions.php:55
434
+ msgid "Move this item to the Trash"
435
  msgstr ""
436
 
437
+ #: ../classes/column/post/actions.php:55
438
+ #: ../classes/column/post/comment-count.php:34
439
+ #: ../classes/column/post/status.php:38
440
+ msgid "Trash"
441
  msgstr ""
442
 
443
+ #: ../classes/column/post/actions.php:57
444
+ msgid "Delete this item permanently"
445
  msgstr ""
446
 
447
+ #: ../classes/column/post/actions.php:62
448
+ #, php-format
449
+ msgid "Preview &#8220;%s&#8221;"
450
  msgstr ""
451
 
452
+ #: ../classes/column/post/actions.php:62
453
+ msgid "Preview"
454
  msgstr ""
455
 
456
+ #: ../classes/column/post/actions.php:64
457
+ #, php-format
458
+ msgid "View &#8220;%s&#8221;"
459
  msgstr ""
460
 
461
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
462
+ msgid "View"
463
  msgstr ""
464
 
465
+ #: ../classes/column/post/attachment-count.php:12
466
+ msgid "No. of Attachments"
467
  msgstr ""
468
 
469
+ #: ../classes/column/post/attachment.php:12
470
+ msgid "Attachment"
 
 
471
  msgstr ""
472
 
473
+ #: ../classes/column/post/author-name.php:12
474
+ msgid "Display Author As"
475
  msgstr ""
476
 
477
+ #: ../classes/column/post/author-name.php:34
478
+ msgid "Display Name"
 
 
479
  msgstr ""
480
 
481
+ #: ../classes/column/post/author-name.php:35
482
+ msgid "First Name"
483
  msgstr ""
484
 
485
+ #: ../classes/column/post/author-name.php:36
486
+ msgid "Last Name"
487
  msgstr ""
488
 
489
+ #: ../classes/column/post/author-name.php:37
490
+ #: ../classes/column/user/nickname.php:14
491
+ msgid "Nickname"
492
  msgstr ""
493
 
494
+ #: ../classes/column/post/author-name.php:38
495
+ msgid "User Login"
496
  msgstr ""
497
 
498
+ #: ../classes/column/post/author-name.php:39
499
+ msgid "User Email"
 
 
 
500
  msgstr ""
501
 
502
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
503
+ msgid "User ID"
 
504
  msgstr ""
505
 
506
+ #: ../classes/column/post/author-name.php:41
507
+ msgid "First and Last Name"
508
  msgstr ""
509
 
510
+ #: ../classes/column/post/author-name.php:118
511
+ msgid "This is the format of the author name."
512
  msgstr ""
513
 
514
+ #: ../classes/column/post/before-moretag.php:14
515
+ msgid "Before More Tag"
516
  msgstr ""
517
 
518
+ #: ../classes/column/post/comment-count.php:14
519
+ msgid "Comment count"
520
  msgstr ""
521
 
522
+ #: ../classes/column/post/comment-count.php:30
523
+ msgid "Total"
524
+ msgstr "Total"
525
 
526
+ #: ../classes/column/post/comment-count.php:32
527
+ msgid "Pending"
 
528
  msgstr ""
529
 
530
+ #: ../classes/column/post/comment-count.php:33
531
+ msgid "Spam"
532
  msgstr ""
533
 
534
+ #: ../classes/column/post/comment-count.php:95
535
+ #: ../classes/column/post/comment-status.php:14
536
+ msgid "Comment status"
537
  msgstr ""
538
 
539
+ #: ../classes/column/post/comment-count.php:95
540
+ msgid "Select which comment status you like to display."
 
 
 
541
  msgstr ""
542
 
543
+ #: ../classes/column/post/featured-image.php:14
544
+ msgid "Featured Image"
545
  msgstr ""
546
 
547
+ #: ../classes/column/post/formats.php:14
548
+ msgid "Post Format"
549
  msgstr ""
550
 
551
+ #: ../classes/column/post/modified.php:14
552
+ msgid "Last modified"
553
  msgstr ""
554
 
555
+ #: ../classes/column/post/order.php:14
556
+ msgid "Page Order"
557
  msgstr ""
558
 
559
+ #: ../classes/column/post/page-template.php:12
560
+ msgid "Page Template"
561
  msgstr ""
562
 
563
+ #: ../classes/column/post/parent.php:12
564
+ msgid "Parent"
 
565
  msgstr ""
566
 
567
+ #: ../classes/column/post/ping-status.php:14
568
+ msgid "Ping status"
569
  msgstr ""
570
 
571
+ #: ../classes/column/post/roles.php:14
572
+ msgid "Roles"
573
  msgstr ""
574
 
575
+ #: ../classes/column/post/slug.php:12
576
+ msgid "Slug"
577
  msgstr ""
578
 
579
+ #: ../classes/column/post/status.php:14
580
+ msgid "Status"
581
+ msgstr "Status"
582
 
583
+ #: ../classes/column/post/status.php:32
584
+ msgid "Published"
585
+ msgstr "Publicado"
 
 
586
 
587
+ #: ../classes/column/post/status.php:33
588
+ msgid "Draft"
589
+ msgstr "Rascunho"
590
 
591
+ #: ../classes/column/post/status.php:34
592
+ msgid "Scheduled"
593
  msgstr ""
594
 
595
+ #: ../classes/column/post/status.php:35
596
+ msgid "Private"
 
597
  msgstr ""
598
 
599
+ #: ../classes/column/post/status.php:36
600
+ msgid "Pending Review"
601
+ msgstr "Aguardando Revisão"
602
+
603
+ #: ../classes/column/post/status.php:37
604
+ #, fuzzy
605
+ msgid "Auto Draft"
606
+ msgstr "Rascunho"
607
+
608
+ #: ../classes/column/post/sticky.php:14
609
+ msgid "Sticky"
610
  msgstr ""
611
 
612
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
613
+ msgid "Taxonomy"
614
  msgstr ""
615
 
616
+ #: ../classes/column/user/comment-count.php:14
617
+ msgid "Comment Count"
618
  msgstr ""
619
 
620
+ #: ../classes/column/user/first-name.php:14
621
+ msgid "First name"
622
  msgstr ""
623
 
624
+ #: ../classes/column/user/last-name.php:14
625
+ msgid "Last name"
626
  msgstr ""
627
 
628
+ #: ../classes/column/user/post-count.php:14
629
+ msgid "Post Count"
630
  msgstr ""
631
 
632
+ #: ../classes/column/user/post-count.php:99
633
+ msgid "Post Type"
634
  msgstr ""
635
 
636
+ #: ../classes/column/user/registered.php:14
637
+ msgid "Registered"
638
  msgstr ""
639
 
640
+ #: ../classes/column/user/url.php:14
641
+ msgid "Url"
642
  msgstr ""
643
 
644
+ #: ../classes/settings.php:64
645
+ msgid "Admin Columns Settings"
646
  msgstr ""
647
 
648
+ #: ../classes/settings.php:64 ../classes/settings.php:635
649
+ #: ../classes/upgrade.php:89
650
+ msgid "Admin Columns"
651
  msgstr ""
652
 
653
+ #: ../classes/settings.php:116
654
+ #, php-format
655
+ msgid "%s column is already present and can not be duplicated."
656
  msgstr ""
657
 
658
+ #: ../classes/settings.php:172
659
+ msgid "Default settings succesfully restored."
660
  msgstr ""
661
 
662
+ #: ../classes/settings.php:190 ../classes/settings.php:447
663
+ msgid "Overview"
664
  msgstr ""
665
 
666
+ #: ../classes/settings.php:193
667
  msgid ""
668
+ "This plugin is for adding and removing additional columns to the "
669
+ "administration screens for post(types), pages, media library, comments, "
670
+ "links and users. Change the column's label and reorder them."
671
  msgstr ""
672
 
673
+ #: ../classes/settings.php:196
674
+ msgid "Basics"
675
  msgstr ""
676
 
677
+ #: ../classes/settings.php:198
678
+ msgid "Change order"
679
+ msgstr "Alterar ordem"
680
+
681
+ #: ../classes/settings.php:199
682
+ msgid ""
683
+ "By dragging the columns you can change the order which they will appear in."
684
  msgstr ""
685
 
686
+ #: ../classes/settings.php:200
687
+ msgid "Change label"
688
  msgstr ""
689
 
690
+ #: ../classes/settings.php:201
691
+ msgid ""
692
+ "By clicking on the triangle you will see the column options. Here you can "
693
+ "change each label of the columns heading."
694
  msgstr ""
695
 
696
+ #: ../classes/settings.php:202
697
+ msgid "Change column width"
698
  msgstr ""
699
 
700
+ #: ../classes/settings.php:203
701
+ msgid ""
702
+ "By clicking on the triangle you will see the column options. By using the "
703
+ "draggable slider you can set the width of the columns in percentages."
704
  msgstr ""
705
 
706
+ #: ../classes/settings.php:209
707
+ msgid "'Custom Field' column"
708
  msgstr ""
709
 
710
+ #: ../classes/settings.php:210
711
+ msgid ""
712
+ "The custom field colum uses the custom fields from posts and users. There "
713
+ "are 10 types which you can set."
714
  msgstr ""
715
 
716
+ #: ../classes/settings.php:212
717
+ msgid ""
718
+ "Value: Can be either a string or array. Arrays will be flattened and values "
719
+ "are seperated by a ',' comma."
720
  msgstr ""
721
 
722
+ #: ../classes/settings.php:213
723
+ msgid ""
724
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
725
+ "comma )."
726
  msgstr ""
727
 
728
+ #: ../classes/settings.php:214
729
+ msgid "Value: This will show the first 20 words of the Post content."
730
  msgstr ""
731
 
732
+ #: ../classes/settings.php:215
733
+ msgid ""
734
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
735
  msgstr ""
736
 
737
+ #: ../classes/settings.php:216
738
+ msgid ""
739
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
740
+ "for sorting, so you can sort your posts on numeric (custom field) values."
 
741
  msgstr ""
742
 
743
+ #: ../classes/settings.php:217
744
+ #, php-format
745
+ msgid ""
746
+ "Value: Can be unix time stamp or a date format as described in the <a "
747
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
748
+ "href='%s'>general settings</a> page."
749
  msgstr ""
750
 
751
+ #: ../classes/settings.php:218
752
+ msgid "Post Titles"
 
753
  msgstr ""
754
 
755
+ #: ../classes/settings.php:218
756
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
 
757
  msgstr ""
758
 
759
+ #: ../classes/settings.php:219
760
+ msgid "Usernames"
 
 
761
  msgstr ""
762
 
763
+ #: ../classes/settings.php:219
764
+ msgid "Value: can be one or more User ID's (seperated by ',')."
 
765
  msgstr ""
766
 
767
+ #: ../classes/settings.php:220
768
+ msgid "Checkmark"
769
  msgstr ""
770
 
771
+ #: ../classes/settings.php:220
772
+ msgid "Value: should be a 1 (one) or 0 (zero)."
773
  msgstr ""
774
 
775
+ #: ../classes/settings.php:221
776
+ msgid "Value: hex value color, such as #808080."
 
777
  msgstr ""
778
 
779
+ #: ../classes/settings.php:222
780
+ msgid ""
781
+ "Value: Can be either a string or array. This will display a count of the "
782
+ "number of times the meta key is used by the item."
783
  msgstr ""
784
 
785
+ #: ../classes/settings.php:367
786
+ msgid "Welcome to Admin Columns"
787
  msgstr ""
788
 
789
+ #: ../classes/settings.php:370
790
+ msgid "Thank you for updating to the latest version!"
791
  msgstr ""
792
 
793
+ #: ../classes/settings.php:371
794
+ msgid ""
795
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
796
+ "like it."
797
  msgstr ""
798
 
799
+ #: ../classes/settings.php:376
800
+ msgid "What’s New"
801
  msgstr ""
802
 
803
+ #: ../classes/settings.php:377
804
+ msgid "Changelog"
805
  msgstr ""
806
 
807
+ #: ../classes/settings.php:379
808
+ msgid "Download Addons"
 
 
809
  msgstr ""
810
 
811
+ #: ../classes/settings.php:385
812
+ msgid "Addons"
 
813
  msgstr ""
814
 
815
+ #: ../classes/settings.php:387
816
+ msgid ""
817
+ "Addons are now activated by downloading and installing individual plugins. "
818
+ "Although these plugins will not be hosted on the wordpress.org repository, "
819
+ "each Add-on will continue to receive updates in the usual way."
820
  msgstr ""
821
 
822
+ #: ../classes/settings.php:390
823
+ msgid ""
824
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
825
  msgstr ""
826
 
827
+ #: ../classes/settings.php:393
828
+ msgid "Addons are seperate plugins which need to be downloaded."
 
 
 
829
  msgstr ""
830
 
831
+ #: ../classes/settings.php:393
832
+ msgid "Download your Addons"
833
  msgstr ""
834
 
835
+ #: ../classes/settings.php:399
836
+ msgid "This website does not use add-ons"
 
 
837
  msgstr ""
838
 
839
+ #: ../classes/settings.php:399
840
+ msgid "See our website for the Pro-addon."
841
  msgstr ""
842
 
843
+ #: ../classes/settings.php:406
844
+ msgid "Important"
845
  msgstr ""
846
 
847
+ #: ../classes/settings.php:408
848
+ msgid "Database Changes"
849
  msgstr ""
850
 
851
+ #: ../classes/settings.php:409
852
+ msgid ""
853
+ "The database has been changed between versions 1 and 2. But we made sure you "
854
+ "can still roll back to version 1x without any issues."
855
  msgstr ""
856
 
857
+ #: ../classes/settings.php:412
858
+ msgid "Make sure you backup your database and then click"
859
  msgstr ""
860
 
861
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
862
+ msgid "Upgrade Database"
863
  msgstr ""
864
 
865
+ #: ../classes/settings.php:415
866
+ msgid "Potential Issues"
867
  msgstr ""
868
 
869
+ #: ../classes/settings.php:416
870
+ msgid ""
871
+ "Do to the sizable refactoring the code, surounding Addons and action/"
872
+ "filters, your website may not operate correctly. It is important that you "
873
+ "read the full"
874
  msgstr ""
875
 
876
+ #: ../classes/settings.php:416
877
+ msgid "Migrating from v1 to v2"
 
878
  msgstr ""
879
 
880
+ #: ../classes/settings.php:416
881
+ msgid "guide to view the full list of changes."
882
  msgstr ""
883
 
884
+ #: ../classes/settings.php:416
885
+ #, php-format
886
+ msgid ""
887
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
888
+ "can fix it in the next release."
889
  msgstr ""
890
 
891
+ #: ../classes/settings.php:419
892
+ msgid "Important!"
893
  msgstr ""
894
 
895
+ #: ../classes/settings.php:419
896
+ msgid ""
897
+ "If you updated the Admin Columns plugin without prior knowledge of such "
898
+ "changes, Please roll back to the latest"
899
  msgstr ""
900
 
901
+ #: ../classes/settings.php:419
902
+ msgid "version 1"
903
  msgstr ""
904
 
905
+ #: ../classes/settings.php:419
906
+ msgid "of this plugin."
907
  msgstr ""
908
 
909
+ #: ../classes/settings.php:425
910
+ msgid "Changelog for"
911
  msgstr ""
912
 
913
+ #: ../classes/settings.php:440
914
+ msgid "Learn more"
915
  msgstr ""
916
 
917
+ #: ../classes/settings.php:449
918
+ msgid ""
919
+ "New to v2, all Addons act as separate plugins which need to be individually "
920
+ "downloaded, installed and updated."
921
  msgstr ""
922
 
923
+ #: ../classes/settings.php:450
924
+ msgid ""
925
+ "This page will assist you in downloading and installing each available Addon."
926
  msgstr ""
927
 
928
+ #: ../classes/settings.php:451
929
+ msgid "Available Addons"
930
  msgstr ""
931
 
932
+ #: ../classes/settings.php:456
933
+ msgid "Name"
934
  msgstr ""
935
 
936
+ #: ../classes/settings.php:457 ../classes/settings.php:465
937
+ msgid "Download"
938
  msgstr ""
939
 
940
+ #: ../classes/settings.php:463
941
+ msgid "Pro Add-on (includes Sortorder add-on)"
942
  msgstr ""
943
 
944
+ #: ../classes/settings.php:473
945
+ msgid "Installation"
946
  msgstr ""
947
 
948
+ #: ../classes/settings.php:475
949
+ msgid "For each Add-on available, please perform the following:"
950
  msgstr ""
951
 
952
+ #: ../classes/settings.php:477
953
+ msgid "Download the Addon plugin (.zip file) to your desktop"
954
  msgstr ""
955
 
956
+ #: ../classes/settings.php:478
957
+ msgid "Navigate to"
958
  msgstr ""
959
 
960
+ #: ../classes/settings.php:478
961
+ msgid "Plugins > Add New > Upload"
962
  msgstr ""
963
 
964
+ #: ../classes/settings.php:479
965
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
966
  msgstr ""
967
 
968
+ #: ../classes/settings.php:480
969
+ msgid ""
970
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
971
+ "link"
972
  msgstr ""
973
 
974
+ #: ../classes/settings.php:481
975
+ msgid "The Add-on is now installed and activated!"
976
  msgstr ""
977
 
978
+ #: ../classes/settings.php:482
979
  #, php-format
980
+ msgid ""
981
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
982
  msgstr ""
983
 
984
+ #: ../classes/settings.php:492
985
+ msgid "Start using Admin Columns"
986
  msgstr ""
987
 
988
+ #: ../classes/settings.php:539
989
+ msgid "General Settings"
 
990
  msgstr ""
991
 
992
+ #: ../classes/settings.php:540
993
+ msgid "Customize your Admin Columns settings."
994
  msgstr ""
995
 
996
+ #: ../classes/settings.php:553
997
+ msgid "Show hidden custom fields. Default is <code>off</code>."
998
  msgstr ""
999
 
1000
+ #: ../classes/settings.php:559
1001
+ msgid ""
1002
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1003
  msgstr ""
1004
 
1005
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1006
+ msgid "Save"
1007
  msgstr ""
1008
 
1009
+ #: ../classes/settings.php:606
1010
+ msgid "Restore Settings"
1011
  msgstr ""
1012
 
1013
+ #: ../classes/settings.php:607
1014
+ msgid "This will delete all column settings and restore the default settings."
1015
  msgstr ""
1016
 
1017
+ #: ../classes/settings.php:613
1018
+ msgid "Restore default settings"
 
1019
  msgstr ""
1020
 
1021
+ #: ../classes/settings.php:613
1022
+ msgid ""
1023
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1024
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1025
  msgstr ""
1026
 
1027
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1028
+ msgid "Settings"
1029
+ msgstr "Configurações"
1030
 
1031
+ #: ../classes/settings.php:665
1032
+ msgid "Posttypes"
1033
  msgstr ""
1034
 
1035
+ #: ../classes/settings.php:666
1036
+ msgid "Others"
1037
  msgstr ""
1038
 
1039
+ #: ../classes/settings.php:667
1040
+ msgid "Taxonomies"
1041
  msgstr ""
1042
 
1043
+ #: ../classes/settings.php:688
1044
+ msgid "Store settings"
1045
  msgstr ""
1046
 
1047
+ #: ../classes/settings.php:692
1048
+ msgid "Update"
1049
  msgstr ""
1050
 
1051
+ #: ../classes/settings.php:696
1052
+ #, php-format
1053
+ msgid ""
1054
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1055
+ "\\' to delete, \\'Cancel\\' to stop"
1056
+ msgstr ""
1057
 
1058
+ #: ../classes/settings.php:697
1059
+ msgid "columns"
1060
  msgstr ""
1061
 
1062
+ #: ../classes/settings.php:710
1063
+ msgid "Get the Pro Add-on"
1064
  msgstr ""
1065
 
1066
+ #: ../classes/settings.php:714
1067
+ msgid "Add Sorting"
 
1068
  msgstr ""
1069
 
1070
+ #: ../classes/settings.php:715
1071
+ msgid "Add Filtering"
1072
  msgstr ""
1073
 
1074
+ #: ../classes/settings.php:716
1075
+ msgid "Add Import/Export"
1076
  msgstr ""
1077
 
1078
+ #: ../classes/settings.php:719
1079
+ #, php-format
1080
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1081
  msgstr ""
1082
 
1083
+ #: ../classes/settings.php:750
1084
+ msgid "Support"
1085
  msgstr ""
1086
 
1087
+ #: ../classes/settings.php:753
1088
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1089
  msgstr ""
1090
 
1091
+ #: ../classes/settings.php:756
1092
+ #, php-format
1093
+ msgid ""
1094
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1095
+ "href='%s'>visit the Admin Columns website</a>"
1096
  msgstr ""
1097
 
1098
+ #: ../classes/settings.php:784
1099
+ msgid "Drag and drop to reorder"
1100
  msgstr ""
1101
 
1102
+ #: ../classes/settings.php:787
1103
+ msgid "Add Column"
1104
  msgstr ""
1105
 
1106
+ #: ../classes/storage_model.php:222
1107
+ msgid "settings succesfully restored."
1108
  msgstr ""
1109
 
1110
+ #: ../classes/storage_model.php:239
1111
+ msgid "No columns settings available."
1112
  msgstr ""
1113
 
1114
+ #: ../classes/storage_model.php:262
1115
+ #, php-format
1116
+ msgid "You are trying to store the same settings for %s."
1117
+ msgstr ""
1118
 
1119
+ #: ../classes/storage_model.php:266
1120
+ #, php-format
1121
+ msgid "Settings for %s updated succesfully."
1122
+ msgstr ""
1123
 
1124
+ #: ../classes/storage_model/comment.php:13
1125
+ msgid "Comments"
1126
+ msgstr ""
1127
 
1128
+ #: ../classes/storage_model/link.php:13
1129
+ msgid "Links"
1130
  msgstr ""
1131
 
1132
+ #: ../classes/storage_model/user.php:13
1133
+ msgid "Users"
1134
  msgstr ""
1135
 
1136
+ #: ../classes/upgrade.php:45
1137
+ msgid "Upgrade"
1138
+ msgstr ""
1139
 
1140
+ #: ../classes/upgrade.php:90
1141
+ msgid "requires a database upgrade"
1142
  msgstr ""
1143
 
1144
+ #: ../classes/upgrade.php:93
1145
+ msgid "why?"
 
1146
  msgstr ""
1147
 
1148
+ #: ../classes/upgrade.php:94
1149
+ msgid "Please"
1150
  msgstr ""
1151
 
1152
+ #: ../classes/upgrade.php:95
1153
+ msgid "backup your database"
1154
  msgstr ""
1155
 
1156
+ #: ../classes/upgrade.php:96
1157
+ msgid "then click"
1158
  msgstr ""
1159
 
1160
+ #: ../classes/upgrade.php:304
1161
+ msgid "Migrating Column Settings"
1162
  msgstr ""
1163
 
1164
+ #: ../classes/upgrade.php:340
1165
+ msgid "No Upgrade Required"
1166
  msgstr ""
1167
 
1168
+ #: ../classes/upgrade.php:341
1169
+ msgid "Return to welcome screen."
1170
  msgstr ""
1171
 
1172
+ #: ../classes/upgrade.php:359
1173
+ msgid "Upgrade Complete!"
1174
  msgstr ""
1175
 
1176
+ #: ../classes/upgrade.php:359
1177
+ msgid "Return to settings."
1178
  msgstr ""
1179
 
1180
+ #: ../classes/upgrade.php:360
1181
+ msgid "Error"
1182
  msgstr ""
1183
 
1184
+ #: ../classes/upgrade.php:361
1185
+ msgid ""
1186
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1187
+ "on the support forum."
1188
  msgstr ""
1189
+
1190
+ #: ../codepress-admin-columns.php:447
1191
+ msgid "Edit columns"
1192
+ msgstr "Editar Colunas"
languages/cpac-sv_SE.mo CHANGED
Binary file
languages/cpac-sv_SE.po CHANGED
@@ -6,60 +6,52 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2013-11-14 16:56+0100\n"
10
- "PO-Revision-Date: 2013-11-19 09:44+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/sv_SE/)\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: sv_SE\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\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:236 ../classes/settings.php:536
27
- msgid "Settings"
28
- msgstr "Inställningar"
29
-
30
- #: ../codepress-admin-columns.php:357
31
- msgid "Edit columns"
32
- msgstr "Redigera kolumner"
33
-
34
- #: ../classes/column.php:489
35
  msgid "Thumbnail"
36
  msgstr "Miniatyrer"
37
 
38
- #: ../classes/column.php:490
39
  msgid "Medium"
40
  msgstr "Mellan"
41
 
42
- #: ../classes/column.php:491
43
  msgid "Large"
44
  msgstr "Stor"
45
 
46
- #: ../classes/column.php:492
47
  msgid "Full"
48
  msgstr "Hel"
49
 
50
- #: ../classes/column.php:784
51
  msgid "Date Format"
52
  msgstr "Datumformat"
53
 
54
- #: ../classes/column.php:785
55
  msgid "This will determine how the date will be displayed."
56
  msgstr "Detta kommer att avgöra hur datumet ska visas."
57
 
58
- #: ../classes/column.php:791
59
  msgid "Example:"
60
  msgstr "Exempel:"
61
 
62
- #: ../classes/column.php:793
63
  #, php-format
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -68,1179 +60,1129 @@ msgstr ""
68
  "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard "
69
  "datumformat här</a>."
70
 
71
- #: ../classes/column.php:794
72
  msgid "Documentation on date and time formatting."
73
  msgstr "Dokumentation om datum och tid formatering."
74
 
75
- #: ../classes/column.php:811
76
  msgid "Excerpt length"
77
  msgstr "Utdragens längd"
78
 
79
- #: ../classes/column.php:812
80
  msgid "Number of words"
81
  msgstr "Antal ord"
82
 
83
- #: ../classes/column.php:834
84
  msgid "Preview size"
85
  msgstr "Förhandsgranska storlek"
86
 
87
- #: ../classes/column.php:851 ../classes/column.php:908
88
  msgid "Custom"
89
  msgstr "Anpassad"
90
 
91
- #: ../classes/column.php:854
92
  msgid "width"
93
  msgstr "bredd"
94
 
95
- #: ../classes/column.php:857
96
  msgid "height"
97
  msgstr "höjd"
98
 
99
- #: ../classes/column.php:909 ../classes/settings.php:222
100
- #: ../classes/column/custom-field.php:70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Default"
102
  msgstr "Standard"
103
 
104
- #: ../classes/column.php:934 ../classes/column.php:996
 
 
 
 
 
 
105
  #: ../classes/column/user/actions.php:74
106
  msgid "Remove"
107
  msgstr "Ta bort"
108
 
109
- #: ../classes/column.php:953
110
  msgid "Type"
111
  msgstr "Typ"
112
 
113
- #: ../classes/column.php:953
114
  msgid "Choose a column type."
115
  msgstr "Välj en kolumntyp."
116
 
117
- #: ../classes/column.php:953 ../classes/column/comment/ID.php:12
118
  #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
119
  #: ../classes/column/post/ID.php:12
120
  msgid "ID"
121
  msgstr "ID"
122
 
123
- #: ../classes/column.php:963
124
  msgid "Label"
125
  msgstr "Etikett"
126
 
127
- #: ../classes/column.php:963
128
  msgid "This is the name which will appear as the column header."
129
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
130
 
131
- #: ../classes/column.php:970 ../classes/column/media/width.php:12
132
  msgid "Width"
133
  msgstr "Bredd"
134
 
135
- #: ../classes/column.php:972 ../classes/column.php:973
136
  msgid "default"
137
  msgstr "standard"
138
 
139
- #: ../classes/column.php:997
140
- msgid "type"
141
- msgstr ""
 
 
 
142
 
143
- #: ../classes/settings.php:64
144
- msgid "Admin Columns Settings"
145
- msgstr "Admin Columns Inställningar"
 
146
 
147
- #: ../classes/settings.php:64 ../classes/settings.php:535
148
- #: ../classes/upgrade.php:89
149
- msgid "Admin Columns"
150
- msgstr "Admin Columns"
151
 
152
- #: ../classes/settings.php:126
153
- #, php-format
154
- msgid "%s column is already present and can not be duplicated."
155
- msgstr "%s kolumn finns redan och kan inte dupliceras."
156
 
157
- #: ../classes/settings.php:182
158
- msgid "Default settings succesfully restored."
159
- msgstr "Standardinställningar återställdes framgångsrikt."
 
160
 
161
- #: ../classes/settings.php:200 ../classes/settings.php:457
162
- msgid "Overview"
163
- msgstr "Översikt"
 
164
 
165
- #: ../classes/settings.php:203
166
- msgid ""
167
- "This plugin is for adding and removing additional columns to the "
168
- "administration screens for post(types), pages, media library, comments, "
169
- "links and users. Change the column's label and reorder them."
170
- msgstr ""
171
- "Denna plugin är för att lägga till och ta bort ytterligare kolumner till "
172
- "administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, "
173
- "länkar och användare. Ändra kolumens etikett och ändra ordningen."
174
 
175
- #: ../classes/settings.php:206
176
- msgid "Basics"
177
- msgstr "Grundläggande"
178
 
179
- #: ../classes/settings.php:208
180
- msgid "Change order"
181
- msgstr "Ändra ordning"
 
182
 
183
- #: ../classes/settings.php:209
184
- msgid ""
185
- "By dragging the columns you can change the order which they will appear in."
186
- msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
187
 
188
- #: ../classes/settings.php:210
189
- msgid "Change label"
190
- msgstr "Ändra etikett"
191
 
192
- #: ../classes/settings.php:211
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
- "Genom att klicka på triangeln kommer du att se kolumnalternativ. Här kan du "
198
- "ändra varje etikett av kolumnernas rubrik."
199
 
200
- #: ../classes/settings.php:212
201
- msgid "Change column width"
202
- msgstr "Ändra kolumnens bredd"
203
 
204
- #: ../classes/settings.php:213
205
- msgid ""
206
- "By clicking on the triangle you will see the column options. By using the "
207
- "draggable slider you can set the width of the columns in percentages."
208
- msgstr ""
209
- "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att "
210
- "använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
 
212
- #: ../classes/settings.php:217 ../classes/column/custom-field.php:16
213
- #: ../classes/column/custom-field.php:379
 
 
 
 
 
 
 
 
 
214
  msgid "Custom Field"
215
  msgstr "Anpassat fält"
216
 
217
- #: ../classes/settings.php:219
218
- msgid "'Custom Field' column"
219
- msgstr "'Anpassat fält' kolumn "
220
 
221
- #: ../classes/settings.php:220
222
- msgid ""
223
- "The custom field colum uses the custom fields from posts and users. There "
224
- "are 10 types which you can set."
225
- msgstr ""
226
- "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och "
227
- "användare. Det fins 10 typer som du kan ange."
228
 
229
- #: ../classes/settings.php:222
230
- msgid ""
231
- "Value: Can be either a string or array. Arrays will be flattened and values "
232
- "are seperated by a ',' comma."
233
  msgstr ""
234
- "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och "
235
- "värden åtskilda av en ',' kommatecken."
236
 
237
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:76
238
- #: ../classes/column/link/image.php:12
239
  msgid "Image"
240
  msgstr "Bild"
241
 
242
- #: ../classes/settings.php:223
243
- msgid ""
244
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
245
- "comma )."
246
- msgstr ""
247
- "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' "
248
- "kommatecken )."
249
-
250
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:75
251
- #: ../classes/column/comment/excerpt.php:13
252
- #: ../classes/column/post/excerpt.php:13
253
- msgid "Excerpt"
254
- msgstr "Utdrag"
255
-
256
- #: ../classes/settings.php:224
257
- msgid "Value: This will show the first 20 words of the Post content."
258
- msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
259
 
260
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:78
261
  msgid "Multiple Values"
262
  msgstr "Flera värden"
263
 
264
- #: ../classes/settings.php:225
265
- msgid ""
266
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
267
- msgstr ""
268
- "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
269
-
270
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:79
271
  msgid "Numeric"
272
  msgstr "Numerisk"
273
 
274
- #: ../classes/settings.php:226
275
- msgid ""
276
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
277
- "for sorting, so you can sort your posts on numeric (custom field) values."
278
- msgstr ""
279
- "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta "
280
- "att användas för sortering, så att du kan sortera dina inlägg på numeriska "
281
- "(anpassade fält) värden."
282
 
283
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:74
284
- #: ../classes/column/comment/date.php:12
285
- msgid "Date"
286
- msgstr "Datum"
287
 
288
- #: ../classes/settings.php:227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  #, php-format
290
  msgid ""
291
- "Value: Can be unix time stamp or a date format as described in the <a "
292
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
293
- "href='%s'>general settings</a> page."
294
  msgstr ""
295
- "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a "
296
- "href='%s'>Codex</a>. Du kan ändra hur datumformatet ska visas på <a "
297
- "href='%s'>generella inställningar</a> sidan."
298
-
299
- #: ../classes/settings.php:228
300
- msgid "Post Titles"
301
- msgstr "Titel på inlägg"
302
 
303
- #: ../classes/settings.php:228
304
- msgid "Value: can be one or more Post ID's (seperated by ',')."
305
- msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
306
 
307
- #: ../classes/settings.php:229
308
- msgid "Usernames"
309
- msgstr "Användarnamn"
 
 
310
 
311
- #: ../classes/settings.php:229
312
- msgid "Value: can be one or more User ID's (seperated by ',')."
313
- msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
314
 
315
- #: ../classes/settings.php:230
316
- msgid "Checkmark"
317
- msgstr "Checkmark"
318
 
319
- #: ../classes/settings.php:230
320
- msgid "Value: should be a 1 (one) or 0 (zero)."
321
- msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
322
-
323
- #: ../classes/settings.php:231 ../classes/column/custom-field.php:72
324
- msgid "Color"
325
- msgstr "Färg"
326
 
327
- #: ../classes/settings.php:231
328
- msgid "Value: hex value color, such as #808080."
329
- msgstr "Värde: hex värde färg, som #808080."
330
 
331
- #: ../classes/settings.php:232 ../classes/column/custom-field.php:73
332
- msgid "Counter"
333
- msgstr ""
334
 
335
- #: ../classes/settings.php:232
336
- msgid ""
337
- "Value: Can be either a string or array. This will display a count of the "
338
- "number of times the meta key is used by the item."
339
- msgstr ""
340
 
341
- #: ../classes/settings.php:377
342
- msgid "Welcome to Admin Columns"
343
- msgstr "Välkommen till Admin Columns"
344
 
345
- #: ../classes/settings.php:380
346
- msgid "Thank you for updating to the latest version!"
347
- msgstr "Tack för att du uppdaterar till den senaste versionen!"
348
 
349
- #: ../classes/settings.php:381
350
- msgid ""
351
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
352
- "like it."
353
- msgstr ""
354
- "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas "
355
- "att du gillar det."
356
 
357
- #: ../classes/settings.php:386
358
- msgid "What’s New"
359
- msgstr "Vad som är nytt"
360
 
361
- #: ../classes/settings.php:387
362
- msgid "Changelog"
363
- msgstr "Ändringslogg"
364
 
365
- #: ../classes/settings.php:389
366
- msgid "Download Addons"
367
- msgstr "Hämta tillägget"
368
 
369
- #: ../classes/settings.php:395
370
- msgid "Addons"
371
- msgstr "Tillägg"
372
 
373
- #: ../classes/settings.php:397
374
- msgid ""
375
- "Addons are now activated by downloading and installing individual plugins. "
376
- "Although these plugins will not be hosted on the wordpress.org repository, "
377
- "each Add-on will continue to receive updates in the usual way."
378
- msgstr ""
379
- "Tillägg aktiveras nu genom att hämta och installera dem individuellt. Även "
380
- "om dessa tillägg inte kommer att finnas på wordpress.org förvaret, kommer "
381
- "varje tillägg kommer att fortsätta uppdateras som vanligt."
382
 
383
- #: ../classes/settings.php:400
384
- msgid ""
385
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
386
- msgstr ""
387
- "Denna webbplats användar Sortorder tillägg. Detta tillägg behöver hämtas."
388
 
389
- #: ../classes/settings.php:403
390
- msgid "Addons are seperate plugins which need to be downloaded."
391
- msgstr "Tillägg är separata och behöver därför hämtas."
392
 
393
- #: ../classes/settings.php:403
394
- msgid "Download your Addons"
395
- msgstr "Hämta dina tillägg"
396
 
397
- #: ../classes/settings.php:409
398
- msgid "This website does not use add-ons"
399
- msgstr "Denna webbsida använder inte tillägg"
400
 
401
- #: ../classes/settings.php:409
402
- msgid "See our website for the Pro-addon."
403
- msgstr "Besök vår webbplats för Pro tillägget."
404
 
405
- #: ../classes/settings.php:416
406
- msgid "Important"
407
- msgstr "Viktigt"
408
 
409
- #: ../classes/settings.php:418
410
- msgid "Database Changes"
411
- msgstr "Databas ändringar"
412
 
413
- #: ../classes/settings.php:419
414
- msgid ""
415
- "The database has been changed between versions 1 and 2. But we made sure you "
416
- "can still roll back to version 1x without any issues."
417
- msgstr ""
418
- "Databasen har ändrats mellan versionerna 1 och 2. Men vi såg till att du "
419
- "fortfarande kan rulla tillbaka till version 1x utan några problem."
420
 
421
- #: ../classes/settings.php:422
422
- msgid "Make sure you backup your database and then click"
423
- msgstr "Se till att du säkerhetskopiera din databas och klicka sen på"
424
 
425
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
426
- msgid "Upgrade Database"
427
- msgstr "Uppgradera databasen"
428
 
429
- #: ../classes/settings.php:425
430
- msgid "Potential Issues"
431
- msgstr "Potentiella problem"
432
 
433
- #: ../classes/settings.php:426
434
- msgid ""
435
- "Do to the sizable refactoring the code, surounding Addons and action/"
436
- "filters, your website may not operate correctly. It is important that you "
437
- "read the full"
438
- msgstr ""
439
- "För den betydande refactoring koden, omgivande tillägg och action/filters, "
440
- "så kanske din webbplats inte fungerar korrekt. Det är viktigt att du läser "
441
- "hela"
442
 
443
- #: ../classes/settings.php:426
444
- msgid "Migrating from v1 to v2"
445
- msgstr "Migrera från v1 till v2"
446
 
447
- #: ../classes/settings.php:426
448
- msgid "guide to view the full list of changes."
449
- msgstr "guide för att visa en komplett lista på förändringar."
450
 
451
- #: ../classes/settings.php:426
452
- #, php-format
453
- msgid ""
454
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
455
- "can fix it in the next release."
456
- msgstr ""
457
- "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</"
458
- "a> så att vi kan åtgärda det i kommande utgåva."
459
 
460
- #: ../classes/settings.php:429
461
- msgid "Important!"
462
- msgstr "Viktigt!"
 
 
463
 
464
- #: ../classes/settings.php:429
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
- "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana "
470
- "ändringar, vänligen rulla tillbaka till den senaste"
471
 
472
- #: ../classes/settings.php:429
473
- msgid "version 1"
474
- msgstr "version 1"
 
475
 
476
- #: ../classes/settings.php:429
477
- msgid "of this plugin."
478
- msgstr "av detta tillägg."
479
 
480
- #: ../classes/settings.php:435
481
- msgid "Changelog for"
482
- msgstr "Ändringslogg för"
 
483
 
484
- #: ../classes/settings.php:450
485
- msgid "Learn more"
486
- msgstr "Lära dig mer"
487
 
488
- #: ../classes/settings.php:459
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
- "Nytt på v2, alla tillägg agerar separat som behöver hämtas individuellt, "
494
- "installeras och uppdateras."
495
 
496
- #: ../classes/settings.php:460
497
- msgid ""
498
- "This page will assist you in downloading and installing each available Addon."
499
- msgstr ""
500
- "Denna sida kommer att hjälpa dig att hämta och installera varje tillgängligt "
501
- "tillägg."
502
 
503
- #: ../classes/settings.php:461
504
- msgid "Available Addons"
505
- msgstr "Tillgängliga tillägg"
506
 
507
- #: ../classes/settings.php:466
508
- msgid "Name"
509
- msgstr "Namn"
510
 
511
- #: ../classes/settings.php:467 ../classes/settings.php:475
512
- msgid "Download"
513
- msgstr "Nerladdning"
514
 
515
- #: ../classes/settings.php:473
516
- msgid "Pro Add-on (includes Sortorder add-on)"
517
- msgstr "Pro tillägg (inkluderar Sortorder tillägg)"
518
 
519
- #: ../classes/settings.php:483
520
- msgid "Installation"
521
- msgstr "Installation"
 
522
 
523
- #: ../classes/settings.php:485
524
- msgid "For each Add-on available, please perform the following:"
525
- msgstr "För varje tillägg som är tillgängligt, vänligen utför följande:"
526
 
527
- #: ../classes/settings.php:487
528
- msgid "Download the Addon plugin (.zip file) to your desktop"
529
- msgstr "Hämta Addon tilläget (.zip fil) till ditt skrivbord"
530
 
531
- #: ../classes/settings.php:488
532
- msgid "Navigate to"
533
- msgstr "Navigera till"
534
 
535
- #: ../classes/settings.php:488
536
- msgid "Plugins > Add New > Upload"
537
- msgstr "Tillägg - > Lägg till -> Ladda upp"
538
 
539
- #: ../classes/settings.php:489
540
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
541
- msgstr ""
542
- "Använd uppladdaren för att bläddra, välja och installera ditt tillägg (.zip "
543
- "fil)"
544
 
545
- #: ../classes/settings.php:490
546
- msgid ""
547
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
548
- "link"
549
- msgstr ""
550
- "När tillägget har laddas upp och installerats, klicka på 'Aktivera tillägg' "
551
- "länken"
552
 
553
- #: ../classes/settings.php:491
554
- msgid "The Add-on is now installed and activated!"
555
- msgstr "Tillägget är nu installerat och aktiverat!"
556
 
557
- #: ../classes/settings.php:492
558
- #, php-format
559
- msgid ""
560
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
561
- msgstr ""
562
- "För automatiska uppdatering se till att <a href='%s'>ange din licensnyckel</"
563
- "a>."
564
 
565
- #: ../classes/settings.php:502
566
- msgid "Start using Admin Columns"
567
- msgstr "Börja med att använda Admin Columns"
568
 
569
- #: ../classes/settings.php:577
570
- msgid "Store settings"
571
- msgstr "Spara inställningar"
572
 
573
- #: ../classes/settings.php:581
574
- msgid "Update"
575
- msgstr "Uppdatera"
 
576
 
577
- #: ../classes/settings.php:581
578
- msgid "Publish"
579
- msgstr "Publicera"
580
 
581
- #: ../classes/settings.php:585
582
- #, php-format
583
- msgid ""
584
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
585
- "\\' to delete, \\'Cancel\\' to stop"
586
- msgstr ""
587
- "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. "
588
- "\\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
589
 
590
- #: ../classes/settings.php:586 ../classes/column/comment/actions.php:86
591
- #: ../classes/column/post/actions.php:53
592
- msgid "Restore"
593
- msgstr "Återställ"
594
 
595
- #: ../classes/settings.php:586
596
- msgid "columns"
597
- msgstr "kolumner"
598
 
599
- #: ../classes/settings.php:599
600
- msgid "Get the Pro Add-on"
601
- msgstr "Skaffa Pro tillägget"
602
 
603
- #: ../classes/settings.php:603
604
- msgid "Add Sorting"
605
- msgstr "Lägg till sortering"
606
 
607
- #: ../classes/settings.php:604
608
- msgid "Add Filtering"
609
- msgstr "Lägg till filtrering"
610
 
611
- #: ../classes/settings.php:605
612
- msgid "Add Import/Export"
613
- msgstr "Lägg till Import/Export"
614
 
615
- #: ../classes/settings.php:608
616
- #, php-format
617
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
618
- msgstr "Titta på <a href=\"%s\">Pro tillägg</a> för mer information!"
619
 
620
- #: ../classes/settings.php:617
621
- msgid "Subscribe to receive news &amp; updates below."
622
- msgstr ""
623
 
624
- #: ../classes/settings.php:620 ../classes/column/post/author-name.php:35
625
- msgid "First Name"
626
- msgstr "Förnamn"
627
 
628
- #: ../classes/settings.php:624
629
- msgid "Your Email"
630
- msgstr ""
631
 
632
- #: ../classes/settings.php:635
633
- msgid "Support"
634
- msgstr "Support"
635
 
636
- #: ../classes/settings.php:638
637
- msgid "Check the <strong>Help</strong> section in the top-right screen."
638
- msgstr ""
639
- "Kolla på <strong>Hjälp</ strong> sektionen i den övre högra delen av skärmen."
640
 
641
- #: ../classes/settings.php:641
642
- #, php-format
643
- msgid ""
644
- "For full documentation, bug reports, feature suggestions and other tips <a "
645
- "href='%s'>visit the Admin Columns website</a>"
646
- msgstr ""
647
- "För fullständig dokumentation, felrapporter, förslag på funktioner och andra "
648
- "tips <a href='%s'>besök Admin Columns webbsida</a>"
649
 
650
- #: ../classes/settings.php:669
651
- msgid "Drag and drop to reorder"
652
- msgstr "Drag och släpp för att ändra ordning"
653
 
654
- #: ../classes/settings.php:672
655
- msgid "Add Column"
656
- msgstr "Lägg till kolumn"
 
657
 
658
- #: ../classes/settings.php:720
659
- msgid "General Settings"
660
- msgstr "Allmänna inställningar"
661
 
662
- #: ../classes/settings.php:721
663
- msgid "Customize your Admin Columns settings."
664
- msgstr "Anpassa dina Admin Columns inställningar."
665
 
666
- #: ../classes/settings.php:734
667
- msgid "Show hidden custom fields. Default is <code>off</code>."
668
- msgstr "Visa dolda anpassade fält. Standard är <code>av</code>."
669
 
670
- #: ../classes/settings.php:740
671
- msgid ""
672
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
673
- msgstr ""
674
- "Visa \"Redigera kolumner\" knappen på admin skärmen. Standard är <code>av</"
675
- "code>."
676
 
677
- #: ../classes/settings.php:747
678
- msgid "Save"
679
- msgstr "Spara"
680
 
681
- #: ../classes/settings.php:787
682
- msgid "Restore Settings"
683
- msgstr "Återställ inställningar"
684
 
685
- #: ../classes/settings.php:788
686
- msgid "This will delete all column settings and restore the default settings."
687
- msgstr ""
688
- "Detta kommer att radera alla kolumner inställningar och återställa till "
689
- "standardinställningarna"
690
 
691
- #: ../classes/settings.php:794
692
- msgid "Restore default settings"
693
- msgstr "Återställ till standardinställningar"
694
 
695
- #: ../classes/settings.php:794
696
- msgid ""
697
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
698
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
699
- msgstr ""
700
- "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte "
701
- "ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
702
 
703
- #: ../classes/storage_model.php:181
704
- msgid "settings succesfully restored."
705
- msgstr "inställningar återställdes framgångsrikt."
706
 
707
- #: ../classes/storage_model.php:198
708
- msgid "No columns settings available."
709
- msgstr "Inga inställningar för kolumner är tillgängliga."
 
710
 
711
- #: ../classes/storage_model.php:221
712
  #, php-format
713
- msgid "You are trying to store the same settings for %s."
714
- msgstr "Du försöker lagra samma inställningar för %s."
715
 
716
- #: ../classes/storage_model.php:225
717
- #, php-format
718
- msgid "Settings for %s updated succesfully."
719
- msgstr "Inställningar för %s uppdaterades med framgång."
720
 
721
- #: ../classes/storage_model.php:604 ../classes/column/post/actions.php:64
722
- msgid "View"
723
- msgstr "Visa"
724
 
725
- #: ../classes/upgrade.php:45
726
- msgid "Upgrade"
727
- msgstr "Uppgradera"
 
 
 
 
 
 
728
 
729
- #: ../classes/upgrade.php:90
730
- msgid "requires a database upgrade"
731
- msgstr "krävs en databas uppgradering"
732
 
733
- #: ../classes/upgrade.php:93
734
- msgid "why?"
735
- msgstr "varför?"
736
 
737
- #: ../classes/upgrade.php:94
738
- msgid "Please"
739
- msgstr "Vänligen"
740
-
741
- #: ../classes/upgrade.php:95
742
- msgid "backup your database"
743
- msgstr "säkerhetskopiera din databas"
744
-
745
- #: ../classes/upgrade.php:96
746
- msgid "then click"
747
- msgstr "klicka sedan"
748
-
749
- #: ../classes/upgrade.php:304
750
- msgid "Migrating Column Settings"
751
- msgstr "Migrera kolumninställningar"
752
-
753
- #: ../classes/upgrade.php:340
754
- msgid "No Upgrade Required"
755
- msgstr "Ingen uppgradering krävs"
756
-
757
- #: ../classes/upgrade.php:341
758
- msgid "Return to welcome screen."
759
- msgstr "Återgå till välkomstskärmen."
760
-
761
- #: ../classes/upgrade.php:359
762
- msgid "Upgrade Complete!"
763
- msgstr "Uppgradering klar!"
764
-
765
- #: ../classes/upgrade.php:359
766
- msgid "Return to settings."
767
- msgstr "Återgå till inställningar."
768
 
769
- #: ../classes/upgrade.php:360
770
- msgid "Error"
771
- msgstr "Fel"
772
 
773
- #: ../classes/upgrade.php:361
774
  msgid ""
775
- "Sorry. Something went wrong during the upgrade process. Please report this "
776
- "on the support forum."
777
  msgstr ""
778
- "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta "
779
- "support forumet. "
780
-
781
- #: ../classes/column/custom-field.php:71
782
- msgid "Checkmark (true/false)"
783
- msgstr "Checkmark (sant/falskt)"
784
-
785
- #: ../classes/column/custom-field.php:77 ../classes/storage_model/media.php:13
786
- msgid "Media Library"
787
- msgstr "Mediabibliotek"
788
-
789
- #: ../classes/column/custom-field.php:80
790
- msgid "Post Title (Post ID's)"
791
- msgstr "Titel"
792
-
793
- #: ../classes/column/custom-field.php:81
794
- msgid "Username (User ID's)"
795
- msgstr "Användarnamn (Användar-ID)"
796
-
797
- #: ../classes/column/custom-field.php:379
798
- msgid "Select your custom field."
799
- msgstr "Välj ditt anpassade fält."
800
-
801
- #: ../classes/column/custom-field.php:389
802
- msgid "No custom fields available."
803
- msgstr "Inget anpassat fält är tillgängligt."
804
-
805
- #: ../classes/column/custom-field.php:396
806
- msgid "Field Type"
807
- msgstr "Fälttyp"
808
-
809
- #: ../classes/column/custom-field.php:396
810
- msgid "This will determine how the value will be displayed."
811
- msgstr "Detta avgör hur värdet kommer att visas."
812
-
813
- #: ../classes/column/custom-field.php:439
814
- msgid "Before"
815
- msgstr "Innan"
816
-
817
- #: ../classes/column/custom-field.php:439
818
- msgid "This text will appear before the custom field value."
819
- msgstr "Denna text kommer att visas innan det anpassade fältet värde."
820
-
821
- #: ../classes/column/custom-field.php:445
822
- msgid "After"
823
- msgstr "Efter"
824
-
825
- #: ../classes/column/custom-field.php:445
826
- msgid "This text will appear after the custom field value."
827
- msgstr "Denna text kommer att visas efter det anpassade fältet värde."
828
-
829
- #: ../classes/column/comment/actions.php:14
830
- #: ../classes/column/link/actions.php:14
831
- #: ../classes/column/media/actions.php:14
832
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
833
- msgid "Actions"
834
- msgstr "Åtgärder"
835
 
836
- #: ../classes/column/comment/actions.php:73
837
- #: ../classes/column/comment/actions.php:78
838
- msgid "Unapprove"
839
- msgstr "Förkastad"
840
 
841
- #: ../classes/column/comment/actions.php:75
842
- #: ../classes/column/comment/actions.php:77
843
- msgid "Approve"
844
- msgstr "Godkänn"
 
 
 
845
 
846
- #: ../classes/column/comment/actions.php:90
847
- #: ../classes/column/post/actions.php:57
848
- msgid "Delete Permanently"
849
- msgstr "Radera permanent"
850
 
851
- #: ../classes/column/comment/actions.php:96
852
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
853
- #: ../classes/column/user/actions.php:66
854
- msgid "Edit"
855
- msgstr "Redigera"
 
 
856
 
857
- #: ../classes/column/comment/actions.php:97
858
- #: ../classes/column/post/actions.php:49
859
- msgid "Quick&nbsp;Edit"
860
- msgstr "Snabbt&nbsp;Redigera"
 
 
 
861
 
862
- #: ../classes/column/comment/actions.php:98
863
- msgid "Reply"
864
- msgstr "Svara"
 
 
 
 
865
 
866
- #: ../classes/column/comment/agent.php:12
867
- msgid "Agent"
868
- msgstr "Agent"
869
 
870
- #: ../classes/column/comment/approved.php:12
871
- #: ../classes/column/post/comment-count.php:31
872
- msgid "Approved"
873
- msgstr "Godkänd"
 
874
 
875
- #: ../classes/column/comment/author-avatar.php:12
876
- msgid "Avatar"
877
- msgstr "Avatar"
 
 
 
 
 
878
 
879
- #: ../classes/column/comment/author-email.php:12
880
- msgid "Author email"
881
- msgstr "Författare mail"
 
 
 
 
 
 
 
882
 
883
- #: ../classes/column/comment/author-ip.php:12
884
- msgid "Author IP"
885
- msgstr "Författare IP"
886
 
887
- #: ../classes/column/comment/author-url.php:12
888
- msgid "Author url"
889
- msgstr "Författare url"
890
 
891
- #: ../classes/column/comment/author.php:12
892
- msgid "Author"
893
- msgstr "Författare"
894
 
895
- #: ../classes/column/comment/date-gmt.php:12
896
- msgid "Date GMT"
897
- msgstr "Datum GMT"
898
 
899
- #: ../classes/column/comment/date-gmt.php:25
900
- #: ../classes/column/comment/date.php:25
901
- #, php-format
902
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
903
- msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
904
 
905
- #: ../classes/column/comment/reply-to.php:12
906
- msgid "In Reply To"
907
- msgstr "Som svar "
908
 
909
- #: ../classes/column/comment/word-count.php:12
910
- #: ../classes/column/post/word-count.php:12
911
- msgid "Word count"
912
- msgstr "Antal ord"
913
 
914
- #: ../classes/column/link/actions.php:46
915
- #, php-format
916
  msgid ""
917
- "You are about to delete this link '%s'\n"
918
- " 'Cancel' to stop, 'OK' to delete."
919
  msgstr ""
920
- "Du är på väg att radera denna länk '%s'\n"
921
- " 'Avbryt' för att avbryta, 'OK' för att radera"
922
-
923
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
924
- msgid "Delete"
925
- msgstr "Radera"
926
-
927
- #: ../classes/column/link/description.php:12
928
- #: ../classes/column/media/description.php:12
929
- #: ../classes/column/user/description.php:14
930
- msgid "Description"
931
- msgstr "Beskrivning"
932
 
933
- #: ../classes/column/link/length.php:12
934
- msgid "Length"
935
- msgstr "Längd"
936
 
937
- #: ../classes/column/link/notes.php:13
938
- msgid "Notes"
939
- msgstr "Anteckningar"
940
 
941
- #: ../classes/column/link/owner.php:12
942
- msgid "Owner"
943
- msgstr "Ägare"
 
 
 
 
944
 
945
- #: ../classes/column/link/rss.php:12
946
- msgid "Rss"
947
- msgstr "RSS"
948
 
949
- #: ../classes/column/link/target.php:12
950
- msgid "Target"
951
- msgstr "Mål"
952
 
953
- #: ../classes/column/media/alternate-text.php:12
954
- msgid "Alt"
955
- msgstr "Alt"
956
 
957
- #: ../classes/column/media/available-sizes.php:14
958
- msgid "Available Sizes"
959
- msgstr "Tillgängliga storlekar"
960
 
961
- #: ../classes/column/media/available-sizes.php:37
962
- msgid "full size"
963
- msgstr "full storlek"
 
 
 
 
 
 
964
 
965
- #: ../classes/column/media/caption.php:12
966
- #: ../classes/column/media/exif-data.php:36
967
- msgid "Caption"
968
- msgstr "Bildtext"
 
969
 
970
- #: ../classes/column/media/dimensions.php:12
971
- msgid "Dimensions"
972
- msgstr "Dimensioner"
973
 
974
- #: ../classes/column/media/exif-data.php:12
975
- msgid "EXIF data"
976
- msgstr "EXIF data"
977
 
978
- #: ../classes/column/media/exif-data.php:33
979
- msgid "Aperture"
980
- msgstr "Bländare"
981
 
982
- #: ../classes/column/media/exif-data.php:34
983
- msgid "Credit"
984
- msgstr "Erkännande"
985
 
986
- #: ../classes/column/media/exif-data.php:35
987
- msgid "Camera"
988
- msgstr "Kamera"
989
 
990
- #: ../classes/column/media/exif-data.php:37
991
- msgid "Timestamp"
992
- msgstr "Tidsstämpel"
993
 
994
- #: ../classes/column/media/exif-data.php:38
995
- msgid "Copyright EXIF"
996
- msgstr "Upphovsrätt EXIF"
 
 
 
 
997
 
998
- #: ../classes/column/media/exif-data.php:39
999
- msgid "Focal Length"
1000
- msgstr "Bränvidd"
1001
 
1002
- #: ../classes/column/media/exif-data.php:40
1003
- msgid "ISO"
1004
- msgstr "ISO"
1005
 
1006
- #: ../classes/column/media/exif-data.php:41
1007
- msgid "Shutter Speed"
1008
- msgstr "Slutartid"
1009
 
1010
- #: ../classes/column/media/exif-data.php:42
1011
- msgid "Title"
1012
- msgstr "Titel"
 
 
 
 
 
 
1013
 
1014
- #: ../classes/column/media/file-name.php:12
1015
- msgid "File name"
1016
- msgstr "Filnamn"
1017
 
1018
- #: ../classes/column/media/file-size.php:12
1019
- msgid "File size"
1020
- msgstr "Filstorlek"
1021
 
1022
- #: ../classes/column/media/full-path.php:12
1023
- msgid "Full path"
1024
- msgstr "Full path"
 
 
 
 
 
1025
 
1026
- #: ../classes/column/media/height.php:12
1027
- msgid "Height"
1028
- msgstr "Höjd"
1029
 
1030
- #: ../classes/column/media/mime-type.php:12
1031
- msgid "Mime type"
1032
- msgstr "Mime typ"
 
 
 
 
1033
 
1034
- #: ../classes/column/post/actions.php:48
1035
- msgid "Edit this item"
1036
- msgstr "Redigera detta objekt"
1037
 
1038
- #: ../classes/column/post/actions.php:49
1039
- msgid "Edit this item inline"
1040
- msgstr "Redigera detta objekt inbäddat"
1041
 
1042
- #: ../classes/column/post/actions.php:53
1043
- msgid "Restore this item from the Trash"
1044
- msgstr "Återställ detta objekt från papperskorgen"
1045
 
1046
- #: ../classes/column/post/actions.php:55
1047
- msgid "Move this item to the Trash"
1048
- msgstr "Flytta detta objekt till papperskorgen"
1049
 
1050
- #: ../classes/column/post/actions.php:55
1051
- #: ../classes/column/post/comment-count.php:34
1052
- #: ../classes/column/post/status.php:37
1053
- msgid "Trash"
1054
- msgstr "Papperskorg"
 
 
1055
 
1056
- #: ../classes/column/post/actions.php:57
1057
- msgid "Delete this item permanently"
1058
- msgstr "Ta bort detta objeckt permanent"
 
 
 
1059
 
1060
- #: ../classes/column/post/actions.php:62
1061
- #, php-format
1062
- msgid "Preview &#8220;%s&#8221;"
1063
- msgstr "Förhandsgranska &#8220;%s&#8221;"
1064
 
1065
- #: ../classes/column/post/actions.php:62
1066
- msgid "Preview"
1067
- msgstr "Förhandsgranska"
1068
 
1069
- #: ../classes/column/post/actions.php:64
1070
- #, php-format
1071
- msgid "View &#8220;%s&#8221;"
1072
- msgstr "Visa &#8220;%s&#8221;"
1073
 
1074
- #: ../classes/column/post/attachment-count.php:12
1075
- msgid "No. of Attachments"
1076
- msgstr "No. av bilagor"
1077
 
1078
- #: ../classes/column/post/attachment.php:12
1079
- msgid "Attachment"
1080
- msgstr "Bilaga"
1081
 
1082
- #: ../classes/column/post/author-name.php:12
1083
- msgid "Display Author As"
1084
- msgstr "Visa som författare"
1085
 
1086
- #: ../classes/column/post/author-name.php:34
1087
- msgid "Display Name"
1088
- msgstr "Visa namn"
1089
 
1090
- #: ../classes/column/post/author-name.php:36
1091
- msgid "Last Name"
1092
- msgstr "Efternamn"
1093
 
1094
- #: ../classes/column/post/author-name.php:37
1095
- #: ../classes/column/user/nickname.php:14
1096
- msgid "Nickname"
1097
- msgstr "Smeknamn"
1098
 
1099
- #: ../classes/column/post/author-name.php:38
1100
- msgid "User Login"
1101
- msgstr "Användare Loggin"
 
 
1102
 
1103
- #: ../classes/column/post/author-name.php:39
1104
- msgid "User Email"
1105
- msgstr "Användare Email"
 
 
 
 
1106
 
1107
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
1108
- msgid "User ID"
1109
- msgstr "Användar-ID"
1110
 
1111
- #: ../classes/column/post/author-name.php:41
1112
- msgid "First and Last Name"
1113
- msgstr "Förnamn och efternamn"
 
 
 
 
1114
 
1115
- #: ../classes/column/post/author-name.php:116
1116
- msgid "This is the format of the author name."
1117
- msgstr "Detta är formatet författarens namn."
1118
 
1119
- #: ../classes/column/post/before-moretag.php:14
1120
- msgid "Before More Tag"
1121
- msgstr "Innan mer tagg"
1122
 
1123
- #: ../classes/column/post/comment-count.php:14
1124
- msgid "Comment count"
1125
- msgstr "Antal kommentarer"
1126
 
1127
- #: ../classes/column/post/comment-count.php:30
1128
- msgid "Total"
1129
- msgstr "Totalt"
1130
 
1131
- #: ../classes/column/post/comment-count.php:32
1132
- msgid "Pending"
1133
- msgstr "Avvaktan"
 
 
 
1134
 
1135
- #: ../classes/column/post/comment-count.php:33
1136
- msgid "Spam"
1137
- msgstr "Spam"
1138
 
1139
- #: ../classes/column/post/comment-count.php:95
1140
- #: ../classes/column/post/comment-status.php:14
1141
- msgid "Comment status"
1142
- msgstr "Kommentarsstatus"
1143
 
1144
- #: ../classes/column/post/comment-count.php:95
1145
- msgid "Select which comment status you like to display."
1146
- msgstr "Välj vilken kommentarsstatus du vill visa."
 
 
1147
 
1148
- #: ../classes/column/post/featured-image.php:14
1149
- msgid "Featured Image"
1150
- msgstr "Utvald bild"
1151
 
1152
- #: ../classes/column/post/formats.php:14
1153
- msgid "Post Format"
1154
- msgstr "Inläggsformat"
 
 
 
 
1155
 
1156
- #: ../classes/column/post/modified.php:14
1157
- msgid "Last modified"
1158
- msgstr "Senast ändrad"
1159
 
1160
- #: ../classes/column/post/order.php:14
1161
- msgid "Page Order"
1162
- msgstr "Sidordning"
 
1163
 
1164
- #: ../classes/column/post/page-template.php:12
1165
- msgid "Page Template"
1166
- msgstr "Sidmallen"
1167
 
1168
- #: ../classes/column/post/parent.php:12
1169
- msgid "Parent"
1170
- msgstr "Förälder"
 
1171
 
1172
- #: ../classes/column/post/ping-status.php:14
1173
- msgid "Ping status"
1174
- msgstr "Ping status"
1175
 
1176
- #: ../classes/column/post/roles.php:14
1177
- msgid "Roles"
1178
- msgstr "Roller"
1179
 
1180
- #: ../classes/column/post/slug.php:12
1181
- msgid "Slug"
1182
- msgstr "Permalänk"
 
 
 
 
 
1183
 
1184
- #: ../classes/column/post/status.php:14
1185
- msgid "Status"
1186
- msgstr "Status"
1187
 
1188
- #: ../classes/column/post/status.php:32
1189
- msgid "Published"
1190
- msgstr "Publicerad"
1191
 
1192
- #: ../classes/column/post/status.php:33
1193
- msgid "Draft"
1194
- msgstr "Utkast"
1195
 
1196
- #: ../classes/column/post/status.php:34
1197
- msgid "Scheduled"
1198
- msgstr "Planerat"
1199
 
1200
- #: ../classes/column/post/status.php:35
1201
- msgid "Private"
1202
- msgstr "Privat"
1203
 
1204
- #: ../classes/column/post/status.php:36
1205
- msgid "Pending Review"
1206
- msgstr "Väntar granskning"
 
1207
 
1208
- #: ../classes/column/post/sticky.php:14
1209
- msgid "Sticky"
1210
- msgstr "Klistrad"
1211
 
1212
- #: ../classes/column/post/taxonomy.php:12
1213
- #: ../classes/column/post/taxonomy.php:74
1214
- msgid "Taxonomy"
1215
- msgstr "Taxonomi"
1216
 
1217
- #: ../classes/column/user/comment-count.php:14
1218
- msgid "Comment Count"
1219
- msgstr "Antal kommentarer"
 
 
 
 
 
1220
 
1221
- #: ../classes/column/user/first-name.php:14
1222
- msgid "First name"
1223
- msgstr "Förnamn"
1224
 
1225
- #: ../classes/column/user/last-name.php:14
1226
- msgid "Last name"
1227
- msgstr "Efternamn"
1228
 
1229
- #: ../classes/column/user/post-count.php:14
1230
- msgid "Post Count"
1231
- msgstr "Inläggsräknare"
1232
 
1233
- #: ../classes/column/user/post-count.php:99
1234
- msgid "Post Type"
1235
- msgstr "Inläggstyp"
1236
 
1237
- #: ../classes/column/user/registered.php:14
1238
- msgid "Registered"
1239
- msgstr "Registrerad"
 
1240
 
1241
- #: ../classes/column/user/url.php:14
1242
- msgid "Url"
1243
- msgstr "Url"
 
1244
 
1245
  #: ../classes/storage_model/comment.php:13
1246
  msgid "Comments"
@@ -1253,3 +1195,66 @@ msgstr "Länkar"
1253
  #: ../classes/storage_model/user.php:13
1254
  msgid "Users"
1255
  msgstr "Användare"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2014-03-21 11:45+0100\n"
10
+ "PO-Revision-Date: 2014-03-21 11:45+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/sv_SE/)\n"
14
+ "Language: sv_SE\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
 
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Generator: Poedit 1.6.4\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
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
27
  msgid "Thumbnail"
28
  msgstr "Miniatyrer"
29
 
30
+ #: ../classes/column.php:498
31
  msgid "Medium"
32
  msgstr "Mellan"
33
 
34
+ #: ../classes/column.php:499
35
  msgid "Large"
36
  msgstr "Stor"
37
 
38
+ #: ../classes/column.php:500
39
  msgid "Full"
40
  msgstr "Hel"
41
 
42
+ #: ../classes/column.php:792
43
  msgid "Date Format"
44
  msgstr "Datumformat"
45
 
46
+ #: ../classes/column.php:793
47
  msgid "This will determine how the date will be displayed."
48
  msgstr "Detta kommer att avgöra hur datumet ska visas."
49
 
50
+ #: ../classes/column.php:799
51
  msgid "Example:"
52
  msgstr "Exempel:"
53
 
54
+ #: ../classes/column.php:801
55
  #, php-format
56
  msgid ""
57
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
60
  "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard "
61
  "datumformat här</a>."
62
 
63
+ #: ../classes/column.php:802
64
  msgid "Documentation on date and time formatting."
65
  msgstr "Dokumentation om datum och tid formatering."
66
 
67
+ #: ../classes/column.php:820
68
  msgid "Excerpt length"
69
  msgstr "Utdragens längd"
70
 
71
+ #: ../classes/column.php:821
72
  msgid "Number of words"
73
  msgstr "Antal ord"
74
 
75
+ #: ../classes/column.php:843
76
  msgid "Preview size"
77
  msgstr "Förhandsgranska storlek"
78
 
79
+ #: ../classes/column.php:860 ../classes/column.php:939
80
  msgid "Custom"
81
  msgstr "Anpassad"
82
 
83
+ #: ../classes/column.php:863
84
  msgid "width"
85
  msgstr "bredd"
86
 
87
+ #: ../classes/column.php:866
88
  msgid "height"
89
  msgstr "höjd"
90
 
91
+ #: ../classes/column.php:882
92
+ msgid "Before"
93
+ msgstr "Innan"
94
+
95
+ #: ../classes/column.php:882
96
+ msgid "This text will appear before the custom field value."
97
+ msgstr "Denna text kommer att visas innan det anpassade fältet värde."
98
+
99
+ #: ../classes/column.php:888
100
+ msgid "After"
101
+ msgstr "Efter"
102
+
103
+ #: ../classes/column.php:888
104
+ msgid "This text will appear after the custom field value."
105
+ msgstr "Denna text kommer att visas efter det anpassade fältet värde."
106
+
107
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
108
+ #: ../classes/settings.php:212
109
  msgid "Default"
110
  msgstr "Standard"
111
 
112
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
113
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
114
+ #: ../classes/column/user/actions.php:66
115
+ msgid "Edit"
116
+ msgstr "Redigera"
117
+
118
+ #: ../classes/column.php:963 ../classes/column.php:1024
119
  #: ../classes/column/user/actions.php:74
120
  msgid "Remove"
121
  msgstr "Ta bort"
122
 
123
+ #: ../classes/column.php:981
124
  msgid "Type"
125
  msgstr "Typ"
126
 
127
+ #: ../classes/column.php:981
128
  msgid "Choose a column type."
129
  msgstr "Välj en kolumntyp."
130
 
131
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
132
  #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
133
  #: ../classes/column/post/ID.php:12
134
  msgid "ID"
135
  msgstr "ID"
136
 
137
+ #: ../classes/column.php:991
138
  msgid "Label"
139
  msgstr "Etikett"
140
 
141
+ #: ../classes/column.php:991
142
  msgid "This is the name which will appear as the column header."
143
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
144
 
145
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
146
  msgid "Width"
147
  msgstr "Bredd"
148
 
149
+ #: ../classes/column.php:1000 ../classes/column.php:1001
150
  msgid "default"
151
  msgstr "standard"
152
 
153
+ #: ../classes/column/comment/actions.php:14
154
+ #: ../classes/column/link/actions.php:14
155
+ #: ../classes/column/media/actions.php:14
156
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
157
+ msgid "Actions"
158
+ msgstr "Åtgärder"
159
 
160
+ #: ../classes/column/comment/actions.php:73
161
+ #: ../classes/column/comment/actions.php:78
162
+ msgid "Unapprove"
163
+ msgstr "Förkastad"
164
 
165
+ #: ../classes/column/comment/actions.php:75
166
+ #: ../classes/column/comment/actions.php:77
167
+ msgid "Approve"
168
+ msgstr "Godkänn"
169
 
170
+ #: ../classes/column/comment/actions.php:86
171
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
172
+ msgid "Restore"
173
+ msgstr "Återställ"
174
 
175
+ #: ../classes/column/comment/actions.php:90
176
+ #: ../classes/column/post/actions.php:57
177
+ msgid "Delete Permanently"
178
+ msgstr "Radera permanent"
179
 
180
+ #: ../classes/column/comment/actions.php:97
181
+ #: ../classes/column/post/actions.php:49
182
+ msgid "Quick&nbsp;Edit"
183
+ msgstr "Snabbt&nbsp;Redigera"
184
 
185
+ #: ../classes/column/comment/actions.php:98
186
+ msgid "Reply"
187
+ msgstr "Svara"
 
 
 
 
 
 
188
 
189
+ #: ../classes/column/comment/agent.php:12
190
+ msgid "Agent"
191
+ msgstr "Agent"
192
 
193
+ #: ../classes/column/comment/approved.php:12
194
+ #: ../classes/column/post/comment-count.php:31
195
+ msgid "Approved"
196
+ msgstr "Godkänd"
197
 
198
+ #: ../classes/column/comment/author-avatar.php:12
199
+ msgid "Avatar"
200
+ msgstr "Avatar"
 
201
 
202
+ #: ../classes/column/comment/author-email.php:12
203
+ msgid "Author email"
204
+ msgstr "Författare mail"
205
 
206
+ #: ../classes/column/comment/author-ip.php:12
207
+ msgid "Author IP"
208
+ msgstr "Författare IP"
 
 
 
 
209
 
210
+ #: ../classes/column/comment/author-url.php:12
211
+ msgid "Author url"
212
+ msgstr "Författare url"
213
 
214
+ #: ../classes/column/comment/author.php:12
215
+ msgid "Author"
216
+ msgstr "Författare"
217
+
218
+ #: ../classes/column/comment/date-gmt.php:12
219
+ msgid "Date GMT"
220
+ msgstr "Datum GMT"
221
+
222
+ #: ../classes/column/comment/date-gmt.php:25
223
+ #: ../classes/column/comment/date.php:25
224
+ #, php-format
225
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
226
+ msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
227
+
228
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
229
+ #: ../classes/settings.php:217
230
+ msgid "Date"
231
+ msgstr "Datum"
232
+
233
+ #: ../classes/column/comment/excerpt.php:13
234
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
235
+ #: ../classes/settings.php:214
236
+ msgid "Excerpt"
237
+ msgstr "Utdrag"
238
 
239
+ #: ../classes/column/comment/reply-to.php:12
240
+ msgid "In Reply To"
241
+ msgstr "Som svar på"
242
+
243
+ #: ../classes/column/comment/word-count.php:12
244
+ #: ../classes/column/post/word-count.php:12
245
+ msgid "Word count"
246
+ msgstr "Antal ord"
247
+
248
+ #: ../classes/column/custom-field.php:16
249
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
250
  msgid "Custom Field"
251
  msgstr "Anpassat fält"
252
 
253
+ #: ../classes/column/custom-field.php:66
254
+ msgid "Checkmark (true/false)"
255
+ msgstr "Checkmark (sant/falskt)"
256
 
257
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
258
+ msgid "Color"
259
+ msgstr "Färg"
 
 
 
 
260
 
261
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
262
+ msgid "Counter"
 
 
263
  msgstr ""
 
 
264
 
265
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
266
+ #: ../classes/settings.php:213
267
  msgid "Image"
268
  msgstr "Bild"
269
 
270
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
271
+ msgid "Media Library"
272
+ msgstr "Mediabibliotek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
275
  msgid "Multiple Values"
276
  msgstr "Flera värden"
277
 
278
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
 
279
  msgid "Numeric"
280
  msgstr "Numerisk"
281
 
282
+ #: ../classes/column/custom-field.php:75
283
+ msgid "Post Title (Post ID's)"
284
+ msgstr "Titel"
 
 
 
 
 
285
 
286
+ #: ../classes/column/custom-field.php:76
287
+ msgid "Username (User ID's)"
288
+ msgstr "Användarnamn (Användar-ID)"
 
289
 
290
+ #: ../classes/column/custom-field.php:377
291
+ msgid "Select your custom field."
292
+ msgstr "Välj ditt anpassade fält."
293
+
294
+ #: ../classes/column/custom-field.php:387
295
+ msgid "No custom fields available."
296
+ msgstr "Inget anpassat fält är tillgängligt."
297
+
298
+ #: ../classes/column/custom-field.php:394
299
+ msgid "Field Type"
300
+ msgstr "Fälttyp"
301
+
302
+ #: ../classes/column/custom-field.php:394
303
+ msgid "This will determine how the value will be displayed."
304
+ msgstr "Detta avgör hur värdet kommer att visas."
305
+
306
+ #: ../classes/column/link/actions.php:46
307
  #, php-format
308
  msgid ""
309
+ "You are about to delete this link '%s'\n"
310
+ " 'Cancel' to stop, 'OK' to delete."
 
311
  msgstr ""
312
+ "Du är väg att radera denna länk '%s'\n"
313
+ " 'Avbryt' för att avbryta, 'OK' för att radera"
 
 
 
 
 
314
 
315
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
316
+ msgid "Delete"
317
+ msgstr "Radera"
318
 
319
+ #: ../classes/column/link/description.php:12
320
+ #: ../classes/column/media/description.php:12
321
+ #: ../classes/column/user/description.php:14
322
+ msgid "Description"
323
+ msgstr "Beskrivning"
324
 
325
+ #: ../classes/column/link/length.php:12
326
+ msgid "Length"
327
+ msgstr "Längd"
328
 
329
+ #: ../classes/column/link/notes.php:13
330
+ msgid "Notes"
331
+ msgstr "Anteckningar"
332
 
333
+ #: ../classes/column/link/owner.php:12
334
+ msgid "Owner"
335
+ msgstr "Ägare"
 
 
 
 
336
 
337
+ #: ../classes/column/link/rss.php:12
338
+ msgid "Rss"
339
+ msgstr "RSS"
340
 
341
+ #: ../classes/column/link/target.php:12
342
+ msgid "Target"
343
+ msgstr "Mål"
344
 
345
+ #: ../classes/column/media/alternate-text.php:12
346
+ msgid "Alt"
347
+ msgstr "Alt"
 
 
348
 
349
+ #: ../classes/column/media/available-sizes.php:14
350
+ msgid "Available Sizes"
351
+ msgstr "Tillgängliga storlekar"
352
 
353
+ #: ../classes/column/media/available-sizes.php:37
354
+ msgid "full size"
355
+ msgstr "full storlek"
356
 
357
+ #: ../classes/column/media/caption.php:12
358
+ #: ../classes/column/media/exif-data.php:36
359
+ msgid "Caption"
360
+ msgstr "Bildtext"
 
 
 
361
 
362
+ #: ../classes/column/media/dimensions.php:12
363
+ msgid "Dimensions"
364
+ msgstr "Dimensioner"
365
 
366
+ #: ../classes/column/media/exif-data.php:12
367
+ msgid "EXIF data"
368
+ msgstr "EXIF data"
369
 
370
+ #: ../classes/column/media/exif-data.php:33
371
+ msgid "Aperture"
372
+ msgstr "Bländare"
373
 
374
+ #: ../classes/column/media/exif-data.php:34
375
+ msgid "Credit"
376
+ msgstr "Erkännande"
377
 
378
+ #: ../classes/column/media/exif-data.php:35
379
+ msgid "Camera"
380
+ msgstr "Kamera"
 
 
 
 
 
 
381
 
382
+ #: ../classes/column/media/exif-data.php:37
383
+ msgid "Timestamp"
384
+ msgstr "Tidsstämpel"
 
 
385
 
386
+ #: ../classes/column/media/exif-data.php:38
387
+ msgid "Copyright EXIF"
388
+ msgstr "Upphovsrätt EXIF"
389
 
390
+ #: ../classes/column/media/exif-data.php:39
391
+ msgid "Focal Length"
392
+ msgstr "Bränvidd"
393
 
394
+ #: ../classes/column/media/exif-data.php:40
395
+ msgid "ISO"
396
+ msgstr "ISO"
397
 
398
+ #: ../classes/column/media/exif-data.php:41
399
+ msgid "Shutter Speed"
400
+ msgstr "Slutartid"
401
 
402
+ #: ../classes/column/media/exif-data.php:42
403
+ msgid "Title"
404
+ msgstr "Titel"
405
 
406
+ #: ../classes/column/media/file-name.php:12
407
+ msgid "File name"
408
+ msgstr "Filnamn"
409
 
410
+ #: ../classes/column/media/file-size.php:12
411
+ msgid "File size"
412
+ msgstr "Filstorlek"
 
 
 
 
413
 
414
+ #: ../classes/column/media/full-path.php:12
415
+ msgid "Full path"
416
+ msgstr "Full path"
417
 
418
+ #: ../classes/column/media/height.php:12
419
+ msgid "Height"
420
+ msgstr "Höjd"
421
 
422
+ #: ../classes/column/media/mime-type.php:12
423
+ msgid "Mime type"
424
+ msgstr "Mime typ"
425
 
426
+ #: ../classes/column/post/actions.php:48
427
+ msgid "Edit this item"
428
+ msgstr "Redigera detta objekt"
 
 
 
 
 
 
429
 
430
+ #: ../classes/column/post/actions.php:49
431
+ msgid "Edit this item inline"
432
+ msgstr "Redigera detta objekt inbäddat"
433
 
434
+ #: ../classes/column/post/actions.php:53
435
+ msgid "Restore this item from the Trash"
436
+ msgstr "Återställ detta objekt från papperskorgen"
437
 
438
+ #: ../classes/column/post/actions.php:55
439
+ msgid "Move this item to the Trash"
440
+ msgstr "Flytta detta objekt till papperskorgen"
 
 
 
 
 
441
 
442
+ #: ../classes/column/post/actions.php:55
443
+ #: ../classes/column/post/comment-count.php:34
444
+ #: ../classes/column/post/status.php:38
445
+ msgid "Trash"
446
+ msgstr "Papperskorg"
447
 
448
+ #: ../classes/column/post/actions.php:57
449
+ msgid "Delete this item permanently"
450
+ msgstr "Ta bort detta objeckt permanent"
 
 
 
 
451
 
452
+ #: ../classes/column/post/actions.php:62
453
+ #, php-format
454
+ msgid "Preview &#8220;%s&#8221;"
455
+ msgstr "Förhandsgranska &#8220;%s&#8221;"
456
 
457
+ #: ../classes/column/post/actions.php:62
458
+ msgid "Preview"
459
+ msgstr "Förhandsgranska"
460
 
461
+ #: ../classes/column/post/actions.php:64
462
+ #, php-format
463
+ msgid "View &#8220;%s&#8221;"
464
+ msgstr "Visa &#8220;%s&#8221;"
465
 
466
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
467
+ msgid "View"
468
+ msgstr "Visa"
469
 
470
+ #: ../classes/column/post/attachment-count.php:12
471
+ msgid "No. of Attachments"
472
+ msgstr "No. av bilagor"
 
 
 
 
473
 
474
+ #: ../classes/column/post/attachment.php:12
475
+ msgid "Attachment"
476
+ msgstr "Bilaga"
 
 
 
477
 
478
+ #: ../classes/column/post/author-name.php:12
479
+ msgid "Display Author As"
480
+ msgstr "Visa som författare"
481
 
482
+ #: ../classes/column/post/author-name.php:34
483
+ msgid "Display Name"
484
+ msgstr "Visa namn"
485
 
486
+ #: ../classes/column/post/author-name.php:35
487
+ msgid "First Name"
488
+ msgstr "Förnamn"
489
 
490
+ #: ../classes/column/post/author-name.php:36
491
+ msgid "Last Name"
492
+ msgstr "Efternamn"
493
 
494
+ #: ../classes/column/post/author-name.php:37
495
+ #: ../classes/column/user/nickname.php:14
496
+ msgid "Nickname"
497
+ msgstr "Smeknamn"
498
 
499
+ #: ../classes/column/post/author-name.php:38
500
+ msgid "User Login"
501
+ msgstr "Användare Loggin"
502
 
503
+ #: ../classes/column/post/author-name.php:39
504
+ msgid "User Email"
505
+ msgstr "Användare Email"
506
 
507
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
508
+ msgid "User ID"
509
+ msgstr "Användar-ID"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
+ msgid "First and Last Name"
513
+ msgstr "Förnamn och efternamn"
514
 
515
+ #: ../classes/column/post/author-name.php:118
516
+ msgid "This is the format of the author name."
517
+ msgstr "Detta är formatet på författarens namn."
 
 
518
 
519
+ #: ../classes/column/post/before-moretag.php:14
520
+ msgid "Before More Tag"
521
+ msgstr "Innan mer tagg"
 
 
 
 
522
 
523
+ #: ../classes/column/post/comment-count.php:14
524
+ msgid "Comment count"
525
+ msgstr "Antal kommentarer"
526
 
527
+ #: ../classes/column/post/comment-count.php:30
528
+ msgid "Total"
529
+ msgstr "Totalt"
 
 
 
 
530
 
531
+ #: ../classes/column/post/comment-count.php:32
532
+ msgid "Pending"
533
+ msgstr "Avvaktan"
534
 
535
+ #: ../classes/column/post/comment-count.php:33
536
+ msgid "Spam"
537
+ msgstr "Spam"
538
 
539
+ #: ../classes/column/post/comment-count.php:95
540
+ #: ../classes/column/post/comment-status.php:14
541
+ msgid "Comment status"
542
+ msgstr "Kommentarsstatus"
543
 
544
+ #: ../classes/column/post/comment-count.php:95
545
+ msgid "Select which comment status you like to display."
546
+ msgstr "Välj vilken kommentarsstatus du vill visa."
547
 
548
+ #: ../classes/column/post/featured-image.php:14
549
+ msgid "Featured Image"
550
+ msgstr "Utvald bild"
 
 
 
 
 
551
 
552
+ #: ../classes/column/post/formats.php:14
553
+ msgid "Post Format"
554
+ msgstr "Inläggsformat"
 
555
 
556
+ #: ../classes/column/post/modified.php:14
557
+ msgid "Last modified"
558
+ msgstr "Senast ändrad"
559
 
560
+ #: ../classes/column/post/order.php:14
561
+ msgid "Page Order"
562
+ msgstr "Sidordning"
563
 
564
+ #: ../classes/column/post/page-template.php:12
565
+ msgid "Page Template"
566
+ msgstr "Sidmallen"
567
 
568
+ #: ../classes/column/post/parent.php:12
569
+ msgid "Parent"
570
+ msgstr "Förälder"
571
 
572
+ #: ../classes/column/post/ping-status.php:14
573
+ msgid "Ping status"
574
+ msgstr "Ping status"
575
 
576
+ #: ../classes/column/post/roles.php:14
577
+ msgid "Roles"
578
+ msgstr "Roller"
 
579
 
580
+ #: ../classes/column/post/slug.php:12
581
+ msgid "Slug"
582
+ msgstr "Permalänk"
583
 
584
+ #: ../classes/column/post/status.php:14
585
+ msgid "Status"
586
+ msgstr "Status"
587
 
588
+ #: ../classes/column/post/status.php:32
589
+ msgid "Published"
590
+ msgstr "Publicerad"
591
 
592
+ #: ../classes/column/post/status.php:33
593
+ msgid "Draft"
594
+ msgstr "Utkast"
595
 
596
+ #: ../classes/column/post/status.php:34
597
+ msgid "Scheduled"
598
+ msgstr "Planerat"
 
599
 
600
+ #: ../classes/column/post/status.php:35
601
+ msgid "Private"
602
+ msgstr "Privat"
 
 
 
 
 
603
 
604
+ #: ../classes/column/post/status.php:36
605
+ msgid "Pending Review"
606
+ msgstr "Väntar granskning"
607
 
608
+ #: ../classes/column/post/status.php:37
609
+ #, fuzzy
610
+ msgid "Auto Draft"
611
+ msgstr "Utkast"
612
 
613
+ #: ../classes/column/post/sticky.php:14
614
+ msgid "Sticky"
615
+ msgstr "Klistrad"
616
 
617
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
618
+ msgid "Taxonomy"
619
+ msgstr "Taxonomi"
620
 
621
+ #: ../classes/column/user/comment-count.php:14
622
+ msgid "Comment Count"
623
+ msgstr "Antal kommentarer"
624
 
625
+ #: ../classes/column/user/first-name.php:14
626
+ msgid "First name"
627
+ msgstr "Förnamn"
 
 
 
628
 
629
+ #: ../classes/column/user/last-name.php:14
630
+ msgid "Last name"
631
+ msgstr "Efternamn"
632
 
633
+ #: ../classes/column/user/post-count.php:14
634
+ msgid "Post Count"
635
+ msgstr "Inläggsräknare"
636
 
637
+ #: ../classes/column/user/post-count.php:99
638
+ msgid "Post Type"
639
+ msgstr "Inläggstyp"
 
 
640
 
641
+ #: ../classes/column/user/registered.php:14
642
+ msgid "Registered"
643
+ msgstr "Registrerad"
644
 
645
+ #: ../classes/column/user/url.php:14
646
+ msgid "Url"
647
+ msgstr "Url"
 
 
 
 
648
 
649
+ #: ../classes/settings.php:64
650
+ msgid "Admin Columns Settings"
651
+ msgstr "Admin Columns Inställningar"
652
 
653
+ #: ../classes/settings.php:64 ../classes/settings.php:635
654
+ #: ../classes/upgrade.php:89
655
+ msgid "Admin Columns"
656
+ msgstr "Admin Columns"
657
 
658
+ #: ../classes/settings.php:116
659
  #, php-format
660
+ msgid "%s column is already present and can not be duplicated."
661
+ msgstr "%s kolumn finns redan och kan inte dupliceras."
662
 
663
+ #: ../classes/settings.php:172
664
+ msgid "Default settings succesfully restored."
665
+ msgstr "Standardinställningar återställdes framgångsrikt."
 
666
 
667
+ #: ../classes/settings.php:190 ../classes/settings.php:447
668
+ msgid "Overview"
669
+ msgstr "Översikt"
670
 
671
+ #: ../classes/settings.php:193
672
+ msgid ""
673
+ "This plugin is for adding and removing additional columns to the "
674
+ "administration screens for post(types), pages, media library, comments, "
675
+ "links and users. Change the column's label and reorder them."
676
+ msgstr ""
677
+ "Denna plugin är för att lägga till och ta bort ytterligare kolumner till "
678
+ "administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, "
679
+ "länkar och användare. Ändra kolumens etikett och ändra ordningen."
680
 
681
+ #: ../classes/settings.php:196
682
+ msgid "Basics"
683
+ msgstr "Grundläggande"
684
 
685
+ #: ../classes/settings.php:198
686
+ msgid "Change order"
687
+ msgstr "Ändra ordning"
688
 
689
+ #: ../classes/settings.php:199
690
+ msgid ""
691
+ "By dragging the columns you can change the order which they will appear in."
692
+ msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
 
694
+ #: ../classes/settings.php:200
695
+ msgid "Change label"
696
+ msgstr "Ändra etikett"
697
 
698
+ #: ../classes/settings.php:201
699
  msgid ""
700
+ "By clicking on the triangle you will see the column options. Here you can "
701
+ "change each label of the columns heading."
702
  msgstr ""
703
+ "Genom att klicka triangeln kommer du att se kolumnalternativ. Här kan du "
704
+ "ändra varje etikett av kolumnernas rubrik."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
705
 
706
+ #: ../classes/settings.php:202
707
+ msgid "Change column width"
708
+ msgstr "Ändra kolumnens bredd"
 
709
 
710
+ #: ../classes/settings.php:203
711
+ msgid ""
712
+ "By clicking on the triangle you will see the column options. By using the "
713
+ "draggable slider you can set the width of the columns in percentages."
714
+ msgstr ""
715
+ "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att "
716
+ "använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
717
 
718
+ #: ../classes/settings.php:209
719
+ msgid "'Custom Field' column"
720
+ msgstr "'Anpassat fält' kolumn "
 
721
 
722
+ #: ../classes/settings.php:210
723
+ msgid ""
724
+ "The custom field colum uses the custom fields from posts and users. There "
725
+ "are 10 types which you can set."
726
+ msgstr ""
727
+ "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och "
728
+ "användare. Det fins 10 typer som du kan ange."
729
 
730
+ #: ../classes/settings.php:212
731
+ msgid ""
732
+ "Value: Can be either a string or array. Arrays will be flattened and values "
733
+ "are seperated by a ',' comma."
734
+ msgstr ""
735
+ "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och "
736
+ "värden åtskilda av en ',' kommatecken."
737
 
738
+ #: ../classes/settings.php:213
739
+ msgid ""
740
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
741
+ "comma )."
742
+ msgstr ""
743
+ "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' "
744
+ "kommatecken )."
745
 
746
+ #: ../classes/settings.php:214
747
+ msgid "Value: This will show the first 20 words of the Post content."
748
+ msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
749
 
750
+ #: ../classes/settings.php:215
751
+ msgid ""
752
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
753
+ msgstr ""
754
+ "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
755
 
756
+ #: ../classes/settings.php:216
757
+ msgid ""
758
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
759
+ "for sorting, so you can sort your posts on numeric (custom field) values."
760
+ msgstr ""
761
+ "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta "
762
+ "att användas för sortering, så att du kan sortera dina inlägg på numeriska "
763
+ "(anpassade fält) värden."
764
 
765
+ #: ../classes/settings.php:217
766
+ #, php-format
767
+ msgid ""
768
+ "Value: Can be unix time stamp or a date format as described in the <a "
769
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
770
+ "href='%s'>general settings</a> page."
771
+ msgstr ""
772
+ "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a "
773
+ "href='%s'>Codex</a>. Du kan ändra hur datumformatet ska visas på <a "
774
+ "href='%s'>generella inställningar</a> sidan."
775
 
776
+ #: ../classes/settings.php:218
777
+ msgid "Post Titles"
778
+ msgstr "Titel på inlägg"
779
 
780
+ #: ../classes/settings.php:218
781
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
782
+ msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
783
 
784
+ #: ../classes/settings.php:219
785
+ msgid "Usernames"
786
+ msgstr "Användarnamn"
787
 
788
+ #: ../classes/settings.php:219
789
+ msgid "Value: can be one or more User ID's (seperated by ',')."
790
+ msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
791
 
792
+ #: ../classes/settings.php:220
793
+ msgid "Checkmark"
794
+ msgstr "Checkmark"
 
 
795
 
796
+ #: ../classes/settings.php:220
797
+ msgid "Value: should be a 1 (one) or 0 (zero)."
798
+ msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
799
 
800
+ #: ../classes/settings.php:221
801
+ msgid "Value: hex value color, such as #808080."
802
+ msgstr "Värde: hex värde färg, som #808080."
 
803
 
804
+ #: ../classes/settings.php:222
 
805
  msgid ""
806
+ "Value: Can be either a string or array. This will display a count of the "
807
+ "number of times the meta key is used by the item."
808
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
809
 
810
+ #: ../classes/settings.php:367
811
+ msgid "Welcome to Admin Columns"
812
+ msgstr "Välkommen till Admin Columns"
813
 
814
+ #: ../classes/settings.php:370
815
+ msgid "Thank you for updating to the latest version!"
816
+ msgstr "Tack för att du uppdaterar till den senaste versionen!"
817
 
818
+ #: ../classes/settings.php:371
819
+ msgid ""
820
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
821
+ "like it."
822
+ msgstr ""
823
+ "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas "
824
+ "att du gillar det."
825
 
826
+ #: ../classes/settings.php:376
827
+ msgid "What’s New"
828
+ msgstr "Vad som är nytt"
829
 
830
+ #: ../classes/settings.php:377
831
+ msgid "Changelog"
832
+ msgstr "Ändringslogg"
833
 
834
+ #: ../classes/settings.php:379
835
+ msgid "Download Addons"
836
+ msgstr "Hämta tillägget"
837
 
838
+ #: ../classes/settings.php:385
839
+ msgid "Addons"
840
+ msgstr "Tillägg"
841
 
842
+ #: ../classes/settings.php:387
843
+ msgid ""
844
+ "Addons are now activated by downloading and installing individual plugins. "
845
+ "Although these plugins will not be hosted on the wordpress.org repository, "
846
+ "each Add-on will continue to receive updates in the usual way."
847
+ msgstr ""
848
+ "Tillägg aktiveras nu genom att hämta och installera dem individuellt. Även "
849
+ "om dessa tillägg inte kommer att finnas på wordpress.org förvaret, kommer "
850
+ "varje tillägg kommer att fortsätta uppdateras som vanligt."
851
 
852
+ #: ../classes/settings.php:390
853
+ msgid ""
854
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
855
+ msgstr ""
856
+ "Denna webbplats användar Sortorder tillägg. Detta tillägg behöver hämtas."
857
 
858
+ #: ../classes/settings.php:393
859
+ msgid "Addons are seperate plugins which need to be downloaded."
860
+ msgstr "Tillägg är separata och behöver därför hämtas."
861
 
862
+ #: ../classes/settings.php:393
863
+ msgid "Download your Addons"
864
+ msgstr "Hämta dina tillägg"
865
 
866
+ #: ../classes/settings.php:399
867
+ msgid "This website does not use add-ons"
868
+ msgstr "Denna webbsida använder inte tillägg"
869
 
870
+ #: ../classes/settings.php:399
871
+ msgid "See our website for the Pro-addon."
872
+ msgstr "Besök vår webbplats för Pro tillägget."
873
 
874
+ #: ../classes/settings.php:406
875
+ msgid "Important"
876
+ msgstr "Viktigt"
877
 
878
+ #: ../classes/settings.php:408
879
+ msgid "Database Changes"
880
+ msgstr "Databas ändringar"
881
 
882
+ #: ../classes/settings.php:409
883
+ msgid ""
884
+ "The database has been changed between versions 1 and 2. But we made sure you "
885
+ "can still roll back to version 1x without any issues."
886
+ msgstr ""
887
+ "Databasen har ändrats mellan versionerna 1 och 2. Men vi såg till att du "
888
+ "fortfarande kan rulla tillbaka till version 1x utan några problem."
889
 
890
+ #: ../classes/settings.php:412
891
+ msgid "Make sure you backup your database and then click"
892
+ msgstr "Se till att du säkerhetskopiera din databas och klicka sen på"
893
 
894
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
895
+ msgid "Upgrade Database"
896
+ msgstr "Uppgradera databasen"
897
 
898
+ #: ../classes/settings.php:415
899
+ msgid "Potential Issues"
900
+ msgstr "Potentiella problem"
901
 
902
+ #: ../classes/settings.php:416
903
+ msgid ""
904
+ "Do to the sizable refactoring the code, surounding Addons and action/"
905
+ "filters, your website may not operate correctly. It is important that you "
906
+ "read the full"
907
+ msgstr ""
908
+ "För den betydande refactoring koden, omgivande tillägg och action/filters, "
909
+ "så kanske din webbplats inte fungerar korrekt. Det är viktigt att du läser "
910
+ "hela"
911
 
912
+ #: ../classes/settings.php:416
913
+ msgid "Migrating from v1 to v2"
914
+ msgstr "Migrera från v1 till v2"
915
 
916
+ #: ../classes/settings.php:416
917
+ msgid "guide to view the full list of changes."
918
+ msgstr "guide för att visa en komplett lista på förändringar."
919
 
920
+ #: ../classes/settings.php:416
921
+ #, php-format
922
+ msgid ""
923
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
924
+ "can fix it in the next release."
925
+ msgstr ""
926
+ "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</"
927
+ "a> så att vi kan åtgärda det i kommande utgåva."
928
 
929
+ #: ../classes/settings.php:419
930
+ msgid "Important!"
931
+ msgstr "Viktigt!"
932
 
933
+ #: ../classes/settings.php:419
934
+ msgid ""
935
+ "If you updated the Admin Columns plugin without prior knowledge of such "
936
+ "changes, Please roll back to the latest"
937
+ msgstr ""
938
+ "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana "
939
+ "ändringar, vänligen rulla tillbaka till den senaste"
940
 
941
+ #: ../classes/settings.php:419
942
+ msgid "version 1"
943
+ msgstr "version 1"
944
 
945
+ #: ../classes/settings.php:419
946
+ msgid "of this plugin."
947
+ msgstr "av detta tillägg."
948
 
949
+ #: ../classes/settings.php:425
950
+ msgid "Changelog for"
951
+ msgstr "Ändringslogg för"
952
 
953
+ #: ../classes/settings.php:440
954
+ msgid "Learn more"
955
+ msgstr "Lära dig mer"
956
 
957
+ #: ../classes/settings.php:449
958
+ msgid ""
959
+ "New to v2, all Addons act as separate plugins which need to be individually "
960
+ "downloaded, installed and updated."
961
+ msgstr ""
962
+ "Nytt på v2, alla tillägg agerar separat som behöver hämtas individuellt, "
963
+ "installeras och uppdateras."
964
 
965
+ #: ../classes/settings.php:450
966
+ msgid ""
967
+ "This page will assist you in downloading and installing each available Addon."
968
+ msgstr ""
969
+ "Denna sida kommer att hjälpa dig att hämta och installera varje tillgängligt "
970
+ "tillägg."
971
 
972
+ #: ../classes/settings.php:451
973
+ msgid "Available Addons"
974
+ msgstr "Tillgängliga tillägg"
 
975
 
976
+ #: ../classes/settings.php:456
977
+ msgid "Name"
978
+ msgstr "Namn"
979
 
980
+ #: ../classes/settings.php:457 ../classes/settings.php:465
981
+ msgid "Download"
982
+ msgstr "Nerladdning"
 
983
 
984
+ #: ../classes/settings.php:463
985
+ msgid "Pro Add-on (includes Sortorder add-on)"
986
+ msgstr "Pro tillägg (inkluderar Sortorder tillägg)"
987
 
988
+ #: ../classes/settings.php:473
989
+ msgid "Installation"
990
+ msgstr "Installation"
991
 
992
+ #: ../classes/settings.php:475
993
+ msgid "For each Add-on available, please perform the following:"
994
+ msgstr "För varje tillägg som är tillgängligt, vänligen utför följande:"
995
 
996
+ #: ../classes/settings.php:477
997
+ msgid "Download the Addon plugin (.zip file) to your desktop"
998
+ msgstr "Hämta Addon tilläget (.zip fil) till ditt skrivbord"
999
 
1000
+ #: ../classes/settings.php:478
1001
+ msgid "Navigate to"
1002
+ msgstr "Navigera till"
1003
 
1004
+ #: ../classes/settings.php:478
1005
+ msgid "Plugins > Add New > Upload"
1006
+ msgstr "Tillägg - > Lägg till -> Ladda upp"
 
1007
 
1008
+ #: ../classes/settings.php:479
1009
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1010
+ msgstr ""
1011
+ "Använd uppladdaren för att bläddra, välja och installera ditt tillägg (.zip "
1012
+ "fil)"
1013
 
1014
+ #: ../classes/settings.php:480
1015
+ msgid ""
1016
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
1017
+ "link"
1018
+ msgstr ""
1019
+ "När tillägget har laddas upp och installerats, klicka på 'Aktivera tillägg' "
1020
+ "länken"
1021
 
1022
+ #: ../classes/settings.php:481
1023
+ msgid "The Add-on is now installed and activated!"
1024
+ msgstr "Tillägget är nu installerat och aktiverat!"
1025
 
1026
+ #: ../classes/settings.php:482
1027
+ #, php-format
1028
+ msgid ""
1029
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1030
+ msgstr ""
1031
+ "För automatiska uppdatering se till att <a href='%s'>ange din licensnyckel</"
1032
+ "a>."
1033
 
1034
+ #: ../classes/settings.php:492
1035
+ msgid "Start using Admin Columns"
1036
+ msgstr "Börja med att använda Admin Columns"
1037
 
1038
+ #: ../classes/settings.php:539
1039
+ msgid "General Settings"
1040
+ msgstr "Allmänna inställningar"
1041
 
1042
+ #: ../classes/settings.php:540
1043
+ msgid "Customize your Admin Columns settings."
1044
+ msgstr "Anpassa dina Admin Columns inställningar."
1045
 
1046
+ #: ../classes/settings.php:553
1047
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1048
+ msgstr "Visa dolda anpassade fält. Standard är <code>av</code>."
1049
 
1050
+ #: ../classes/settings.php:559
1051
+ msgid ""
1052
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1053
+ msgstr ""
1054
+ "Visa \"Redigera kolumner\" knappen på admin skärmen. Standard är <code>av</"
1055
+ "code>."
1056
 
1057
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1058
+ msgid "Save"
1059
+ msgstr "Spara"
1060
 
1061
+ #: ../classes/settings.php:606
1062
+ msgid "Restore Settings"
1063
+ msgstr "Återställ inställningar"
 
1064
 
1065
+ #: ../classes/settings.php:607
1066
+ msgid "This will delete all column settings and restore the default settings."
1067
+ msgstr ""
1068
+ "Detta kommer att radera alla kolumner inställningar och återställa till "
1069
+ "standardinställningarna"
1070
 
1071
+ #: ../classes/settings.php:613
1072
+ msgid "Restore default settings"
1073
+ msgstr "Återställ till standardinställningar"
1074
 
1075
+ #: ../classes/settings.php:613
1076
+ msgid ""
1077
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1078
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1079
+ msgstr ""
1080
+ "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte "
1081
+ "ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
1082
 
1083
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1084
+ msgid "Settings"
1085
+ msgstr "Inställningar"
1086
 
1087
+ #: ../classes/settings.php:665
1088
+ #, fuzzy
1089
+ msgid "Posttypes"
1090
+ msgstr "Inläggstyp"
1091
 
1092
+ #: ../classes/settings.php:666
1093
+ msgid "Others"
1094
+ msgstr ""
1095
 
1096
+ #: ../classes/settings.php:667
1097
+ #, fuzzy
1098
+ msgid "Taxonomies"
1099
+ msgstr "Taxonomi"
1100
 
1101
+ #: ../classes/settings.php:688
1102
+ msgid "Store settings"
1103
+ msgstr "Spara inställningar"
1104
 
1105
+ #: ../classes/settings.php:692
1106
+ msgid "Update"
1107
+ msgstr "Uppdatera"
1108
 
1109
+ #: ../classes/settings.php:696
1110
+ #, php-format
1111
+ msgid ""
1112
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1113
+ "\\' to delete, \\'Cancel\\' to stop"
1114
+ msgstr ""
1115
+ "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. "
1116
+ "\\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
1117
 
1118
+ #: ../classes/settings.php:697
1119
+ msgid "columns"
1120
+ msgstr "kolumner"
1121
 
1122
+ #: ../classes/settings.php:710
1123
+ msgid "Get the Pro Add-on"
1124
+ msgstr "Skaffa Pro tillägget"
1125
 
1126
+ #: ../classes/settings.php:714
1127
+ msgid "Add Sorting"
1128
+ msgstr "Lägg till sortering"
1129
 
1130
+ #: ../classes/settings.php:715
1131
+ msgid "Add Filtering"
1132
+ msgstr "Lägg till filtrering"
1133
 
1134
+ #: ../classes/settings.php:716
1135
+ msgid "Add Import/Export"
1136
+ msgstr "Lägg till Import/Export"
1137
 
1138
+ #: ../classes/settings.php:719
1139
+ #, php-format
1140
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1141
+ msgstr "Titta på <a href=\"%s\">Pro tillägg</a> för mer information!"
1142
 
1143
+ #: ../classes/settings.php:750
1144
+ msgid "Support"
1145
+ msgstr "Support"
1146
 
1147
+ #: ../classes/settings.php:753
1148
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1149
+ msgstr ""
1150
+ "Kolla på <strong>Hjälp</ strong> sektionen i den övre högra delen av skärmen."
1151
 
1152
+ #: ../classes/settings.php:756
1153
+ #, php-format
1154
+ msgid ""
1155
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1156
+ "href='%s'>visit the Admin Columns website</a>"
1157
+ msgstr ""
1158
+ "För fullständig dokumentation, felrapporter, förslag på funktioner och andra "
1159
+ "tips <a href='%s'>besök Admin Columns webbsida</a>"
1160
 
1161
+ #: ../classes/settings.php:784
1162
+ msgid "Drag and drop to reorder"
1163
+ msgstr "Drag och släpp för att ändra ordning"
1164
 
1165
+ #: ../classes/settings.php:787
1166
+ msgid "Add Column"
1167
+ msgstr "Lägg till kolumn"
1168
 
1169
+ #: ../classes/storage_model.php:222
1170
+ msgid "settings succesfully restored."
1171
+ msgstr "inställningar återställdes framgångsrikt."
1172
 
1173
+ #: ../classes/storage_model.php:239
1174
+ msgid "No columns settings available."
1175
+ msgstr "Inga inställningar för kolumner är tillgängliga."
1176
 
1177
+ #: ../classes/storage_model.php:262
1178
+ #, php-format
1179
+ msgid "You are trying to store the same settings for %s."
1180
+ msgstr "Du försöker lagra samma inställningar för %s."
1181
 
1182
+ #: ../classes/storage_model.php:266
1183
+ #, php-format
1184
+ msgid "Settings for %s updated succesfully."
1185
+ msgstr "Inställningar för %s uppdaterades med framgång."
1186
 
1187
  #: ../classes/storage_model/comment.php:13
1188
  msgid "Comments"
1195
  #: ../classes/storage_model/user.php:13
1196
  msgid "Users"
1197
  msgstr "Användare"
1198
+
1199
+ #: ../classes/upgrade.php:45
1200
+ msgid "Upgrade"
1201
+ msgstr "Uppgradera"
1202
+
1203
+ #: ../classes/upgrade.php:90
1204
+ msgid "requires a database upgrade"
1205
+ msgstr "krävs en databas uppgradering"
1206
+
1207
+ #: ../classes/upgrade.php:93
1208
+ msgid "why?"
1209
+ msgstr "varför?"
1210
+
1211
+ #: ../classes/upgrade.php:94
1212
+ msgid "Please"
1213
+ msgstr "Vänligen"
1214
+
1215
+ #: ../classes/upgrade.php:95
1216
+ msgid "backup your database"
1217
+ msgstr "säkerhetskopiera din databas"
1218
+
1219
+ #: ../classes/upgrade.php:96
1220
+ msgid "then click"
1221
+ msgstr "klicka sedan"
1222
+
1223
+ #: ../classes/upgrade.php:304
1224
+ msgid "Migrating Column Settings"
1225
+ msgstr "Migrera kolumninställningar"
1226
+
1227
+ #: ../classes/upgrade.php:340
1228
+ msgid "No Upgrade Required"
1229
+ msgstr "Ingen uppgradering krävs"
1230
+
1231
+ #: ../classes/upgrade.php:341
1232
+ msgid "Return to welcome screen."
1233
+ msgstr "Återgå till välkomstskärmen."
1234
+
1235
+ #: ../classes/upgrade.php:359
1236
+ msgid "Upgrade Complete!"
1237
+ msgstr "Uppgradering klar!"
1238
+
1239
+ #: ../classes/upgrade.php:359
1240
+ msgid "Return to settings."
1241
+ msgstr "Återgå till inställningar."
1242
+
1243
+ #: ../classes/upgrade.php:360
1244
+ msgid "Error"
1245
+ msgstr "Fel"
1246
+
1247
+ #: ../classes/upgrade.php:361
1248
+ msgid ""
1249
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1250
+ "on the support forum."
1251
+ msgstr ""
1252
+ "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta på "
1253
+ "support forumet. "
1254
+
1255
+ #: ../codepress-admin-columns.php:447
1256
+ msgid "Edit columns"
1257
+ msgstr "Redigera kolumner"
1258
+
1259
+ #~ msgid "Publish"
1260
+ #~ msgstr "Publicera"
languages/cpac-zh_CN.mo CHANGED
Binary file
languages/cpac-zh_CN.po CHANGED
@@ -5,60 +5,52 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-14 15:56+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/zh_CN/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: zh_CN\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
- msgid "Settings"
27
- msgstr "设置"
28
-
29
- #: ../codepress-admin-columns.php:350
30
- msgid "Edit columns"
31
- msgstr "编辑列"
32
-
33
- #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
  msgstr "缩略图"
36
 
37
- #: ../classes/column.php:480
38
  msgid "Medium"
39
  msgstr "中等大小"
40
 
41
- #: ../classes/column.php:481
42
  msgid "Large"
43
  msgstr "大尺寸"
44
 
45
- #: ../classes/column.php:482
46
  msgid "Full"
47
  msgstr "原始大小"
48
 
49
- #: ../classes/column.php:774
50
  msgid "Date Format"
51
  msgstr "日期格式"
52
 
53
- #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
55
  msgstr "用来决定如何显示日期"
56
 
57
- #: ../classes/column.php:781
58
  msgid "Example:"
59
  msgstr "例如:"
60
 
61
- #: ../classes/column.php:783
62
  #, php-format
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
@@ -67,1120 +59,1098 @@ msgstr ""
67
  "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期"
68
  "格式。"
69
 
70
- #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
72
  msgstr "日期和时间格式的文档。"
73
 
74
- #: ../classes/column.php:801
75
  msgid "Excerpt length"
76
  msgstr "摘要长度"
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
- #: ../classes/column.php:841 ../classes/column.php:897
87
  msgid "Custom"
88
  msgstr "自定义"
89
 
90
- #: ../classes/column.php:844
91
  msgid "width"
92
  msgstr "宽度"
93
 
94
- #: ../classes/column.php:847
95
  msgid "height"
96
  msgstr "高度"
97
 
98
- #: ../classes/column.php:898 ../classes/settings.php:224
99
- #: ../classes/column/custom-field.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Default"
101
  msgstr "默认"
102
 
103
- #: ../classes/column.php:923 ../classes/column.php:984
104
- #: ../classes/column/user/actions.php:65
 
 
 
 
 
 
105
  msgid "Remove"
106
  msgstr "删除"
107
 
108
- #: ../classes/column.php:942
109
  msgid "Type"
110
  msgstr "类型"
111
 
112
- #: ../classes/column.php:942
113
  msgid "Choose a column type."
114
  msgstr "选择一个列类型。"
115
 
116
- #: ../classes/column.php:952
 
 
 
 
 
 
117
  msgid "Label"
118
  msgstr "标签"
119
 
120
- #: ../classes/column.php:952
121
  msgid "This is the name which will appear as the column header."
122
  msgstr "该名称将显示为列标题。"
123
 
124
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
125
  msgid "Width"
126
  msgstr "宽度"
127
 
128
- #: ../classes/column.php:961 ../classes/column.php:962
129
  msgid "default"
130
  msgstr "默认"
131
 
132
- #: ../classes/settings.php:68
133
- msgid "Admin Columns Settings"
134
- msgstr "Admin Columns 设置"
 
 
 
135
 
136
- #: ../classes/settings.php:68 ../classes/settings.php:534
137
- #: ../classes/upgrade.php:89
138
- msgid "Admin Columns"
139
- msgstr "Admin Columns"
140
 
141
- #: ../classes/settings.php:129
142
- #, php-format
143
- msgid "%s column is already present and can not be duplicated."
144
- msgstr "%s 这个列已经存在,不能被复制。"
145
 
146
- #: ../classes/settings.php:184
147
- msgid "Default settings succesfully restored."
148
- msgstr "已成功恢复默认设置。"
 
149
 
150
- #: ../classes/settings.php:202 ../classes/settings.php:457
151
- msgid "Overview"
152
- msgstr "预览"
 
153
 
154
- #: ../classes/settings.php:205
155
- msgid ""
156
- "This plugin is for adding and removing additional columns to the "
157
- "administration screens for post(types), pages, media library, comments, "
158
- "links and users. Change the column's label and reorder them."
159
- msgstr ""
160
- "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、"
161
- "媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
162
 
163
- #: ../classes/settings.php:208
164
- msgid "Basics"
165
- msgstr "基础"
166
 
167
- #: ../classes/settings.php:210
168
- msgid "Change order"
169
- msgstr "更改排序"
170
 
171
- #: ../classes/settings.php:211
172
- msgid ""
173
- "By dragging the columns you can change the order which they will appear in."
174
- msgstr "拖动排序这些列,你可以重新排列它们显示的顺序。"
175
 
176
- #: ../classes/settings.php:212
177
- msgid "Change label"
178
- msgstr "更改标签"
179
 
180
- #: ../classes/settings.php:213
181
- msgid ""
182
- "By clicking on the triangle you will see the column options. Here you can "
183
- "change each label of the columns heading."
184
- msgstr "点击三角形,你会看到列的选项。在这里,你可以改变每个标签的列标题栏。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
 
 
186
  #: ../classes/settings.php:214
187
- msgid "Change column width"
188
- msgstr "更改列宽"
189
 
190
- #: ../classes/settings.php:215
191
- msgid ""
192
- "By clicking on the triangle you will see the column options. By using the "
193
- "draggable slider you can set the width of the columns in percentages."
194
- msgstr "点击三角形,你会看到列的选项。你可以通过拖动滑块设置列的百分比宽度。"
 
 
 
195
 
196
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
197
- #: ../classes/column/custom-field.php:324
198
  msgid "Custom Field"
199
  msgstr "自定义字段"
200
 
201
- #: ../classes/settings.php:221
202
- msgid "'Custom Field' column"
203
- msgstr "“自定义字段”列"
204
 
205
- #: ../classes/settings.php:222
206
- msgid ""
207
- "The custom field colum uses the custom fields from posts and users. There "
208
- "are 10 types which you can set."
209
- msgstr "自定义字段列使用文章和用户的自定义字段,你可以设置10中类型。"
210
 
211
- #: ../classes/settings.php:224
212
- msgid ""
213
- "Value: Can be either a string or array. Arrays will be flattened and values "
214
- "are seperated by a ',' comma."
215
  msgstr ""
216
- "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间"
217
- "用逗号“,”隔开。"
218
 
219
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
220
- #: ../classes/column/link/image.php:12
221
  msgid "Image"
222
  msgstr "图像"
223
 
224
- #: ../classes/settings.php:225
225
- msgid ""
226
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
227
- "comma )."
228
- msgstr "值:应该包括一个图像URL或附件ID(使用逗号“,”隔开)"
229
-
230
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
231
- #: ../classes/column/comment/excerpt.php:13
232
- #: ../classes/column/post/excerpt.php:13
233
- msgid "Excerpt"
234
- msgstr "摘要"
235
-
236
- #: ../classes/settings.php:226
237
- msgid "Value: This will show the first 20 words of the Post content."
238
- msgstr "值:将显示文章内容的前 20 个字。"
239
 
240
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
241
  msgid "Multiple Values"
242
  msgstr "多个值"
243
 
244
- #: ../classes/settings.php:227
245
- msgid ""
246
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
247
- msgstr "值:应该是一个数组。这将被压平(多维)数组"
248
-
249
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
250
  msgid "Numeric"
251
  msgstr "数字"
252
 
253
- #: ../classes/settings.php:228
254
- msgid ""
255
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
256
- "for sorting, so you can sort your posts on numeric (custom field) values."
257
- msgstr ""
258
- "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个"
259
- "数字(自定义字段)值来排序文章。"
260
 
261
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
262
- #: ../classes/column/comment/date.php:12
263
- msgid "Date"
264
- msgstr "日期"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
 
266
- #: ../classes/settings.php:229
267
  #, php-format
268
  msgid ""
269
- "Value: Can be unix time stamp or a date format as described in the <a "
270
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
271
- "href='%s'>general settings</a> page."
272
  msgstr ""
273
- "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 "
274
- "<a href='%s'>常规设置</a> 页面修改输出的日期格式。"
275
 
276
- #: ../classes/settings.php:230
277
- msgid "Post Titles"
278
- msgstr "文章标题"
279
 
280
- #: ../classes/settings.php:230
281
- msgid "Value: can be one or more Post ID's (seperated by ',')."
282
- msgstr "值:可以是一个或多个文章ID(使用逗号“,”隔开)"
 
 
283
 
284
- #: ../classes/settings.php:231
285
- msgid "Usernames"
286
- msgstr "用户名"
287
 
288
- #: ../classes/settings.php:231
289
- msgid "Value: can be one or more User ID's (seperated by ',')."
290
- msgstr "值:可以是一个或多个用户ID(使用逗号“,”隔开)"
291
 
292
- #: ../classes/settings.php:232
293
- msgid "Checkmark"
294
- msgstr "判断"
295
 
296
- #: ../classes/settings.php:232
297
- msgid "Value: should be a 1 (one) or 0 (zero)."
298
- msgstr "值:应该是 1 (一)或 0 (零)"
299
 
300
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
301
- msgid "Color"
302
- msgstr "颜色"
303
 
304
- #: ../classes/settings.php:233
305
- msgid "Value: hex value color, such as #808080."
306
- msgstr "值:十六进制值的颜色,如#808080。"
307
-
308
- #: ../classes/settings.php:377
309
- msgid "Welcome to Admin Columns"
310
- msgstr "欢迎使用Admin Columns插件。"
311
 
312
- #: ../classes/settings.php:380
313
- msgid "Thank you for updating to the latest version!"
314
- msgstr "感谢您更新到最新版本!"
315
 
316
- #: ../classes/settings.php:381
317
- msgid ""
318
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
319
- "like it."
320
- msgstr "Admin Columns插件比以往任何时候都更加精致,愉快。我们希望你喜欢它。"
321
 
322
- #: ../classes/settings.php:386
323
- msgid "What’s New"
324
- msgstr "最近更新"
 
325
 
326
- #: ../classes/settings.php:387
327
- msgid "Changelog"
328
- msgstr "更新记录"
329
 
330
- #: ../classes/settings.php:389
331
- msgid "Download Addons"
332
- msgstr "下载扩展"
333
 
334
- #: ../classes/settings.php:395
335
- msgid "Addons"
336
- msgstr "扩展"
337
 
338
- #: ../classes/settings.php:397
339
- msgid ""
340
- "Addons are now activated by downloading and installing individual plugins. "
341
- "Although these plugins will not be hosted on the wordpress.org repository, "
342
- "each Add-on will continue to receive updates in the usual way."
343
- msgstr ""
344
- "通过下载和安装插件可以启用扩展。尽管这些扩展插件不再托管于 wordpress.org,但"
345
- "是它们都可以通过通常的方式获得更新。"
346
 
347
- #: ../classes/settings.php:400
348
- msgid ""
349
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
350
- msgstr "该网站使用了排序扩展,该扩展需要下载。"
351
 
352
- #: ../classes/settings.php:403
353
- msgid "Addons are seperate plugins which need to be downloaded."
354
- msgstr "扩展是需要下载的单独插件。"
355
 
356
- #: ../classes/settings.php:403
357
- msgid "Download your Addons"
358
- msgstr "下载你的扩展"
359
 
360
- #: ../classes/settings.php:409
361
- msgid "This website does not use add-ons"
362
- msgstr "该网站没有使用扩展"
363
 
364
- #: ../classes/settings.php:409
365
- msgid "See our website for the Pro-addon."
366
- msgstr "访问我们的网站了解收费扩展"
367
 
368
- #: ../classes/settings.php:416
369
- msgid "Important"
370
- msgstr "重要"
371
 
372
- #: ../classes/settings.php:418
373
- msgid "Database Changes"
374
- msgstr "数据库更改"
375
 
376
- #: ../classes/settings.php:419
377
- msgid ""
378
- "The database has been changed between versions 1 and 2. But we made sure you "
379
- "can still roll back to version 1x without any issues."
380
- msgstr ""
381
- "该数据库已在版本1和2之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没"
382
- "有任何问题的。"
383
 
384
- #: ../classes/settings.php:422
385
- msgid "Make sure you backup your database and then click"
386
- msgstr "确保你已经备份了数据库,然后点击"
387
 
388
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
389
- msgid "Upgrade Database"
390
- msgstr "升级数据库"
391
 
392
- #: ../classes/settings.php:425
393
- msgid "Potential Issues"
394
- msgstr "潜在问题"
395
 
396
- #: ../classes/settings.php:426
397
- msgid ""
398
- "Do to the sizable refactoring the code, surounding Addons and action/"
399
- "filters, your website may not operate correctly. It is important that you "
400
- "read the full"
401
- msgstr ""
402
- "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议"
403
- "你阅读完整的 "
404
 
405
- #: ../classes/settings.php:426
406
- msgid "Migrating from v1 to v2"
407
- msgstr "从 v1 迁移到 v2"
408
 
409
- #: ../classes/settings.php:426
410
- msgid "guide to view the full list of changes."
411
- msgstr "引导查看完整的更改列表。"
412
 
413
- #: ../classes/settings.php:426
414
- #, php-format
415
- msgid ""
416
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
417
- "can fix it in the next release."
418
- msgstr ""
419
- "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修"
420
- "复。"
421
 
422
- #: ../classes/settings.php:429
423
- msgid "Important!"
424
- msgstr "重要!"
425
 
426
- #: ../classes/settings.php:429
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 "如果你更新了 Admin Columns 插件没有另行通知这些变更,请回滚到最新版本"
431
 
432
- #: ../classes/settings.php:429
433
- msgid "version 1"
434
- msgstr "版本 1"
435
 
436
- #: ../classes/settings.php:429
437
- msgid "of this plugin."
438
- msgstr "这个插件。"
 
439
 
440
- #: ../classes/settings.php:435
441
- msgid "Changelog for"
442
- msgstr "更新记录 for"
443
 
444
- #: ../classes/settings.php:450
445
- msgid "Learn more"
446
- msgstr "了解更多"
 
447
 
448
- #: ../classes/settings.php:459
449
- msgid ""
450
- "New to v2, all Addons act as separate plugins which need to be individually "
451
- "downloaded, installed and updated."
452
- msgstr "版本v2以后,所有扩展将作为单独的插件,需要单独下载,安装和更新。"
453
 
454
- #: ../classes/settings.php:460
455
- msgid ""
456
- "This page will assist you in downloading and installing each available Addon."
457
- msgstr "该页面将帮助您下载和安装每个可用的扩展。"
458
 
459
- #: ../classes/settings.php:461
460
- msgid "Available Addons"
461
- msgstr "可用扩展"
462
 
463
- #: ../classes/settings.php:466
464
- msgid "Name"
465
- msgstr "名称"
466
 
467
- #: ../classes/settings.php:467 ../classes/settings.php:475
468
- msgid "Download"
469
- msgstr "下载"
470
 
471
- #: ../classes/settings.php:473
472
- msgid "Pro Add-on (includes Sortorder add-on)"
473
- msgstr "收费扩展(包括排序扩展)"
474
 
475
- #: ../classes/settings.php:483
476
- msgid "Installation"
477
- msgstr "安装"
478
 
479
- #: ../classes/settings.php:485
480
- msgid "For each Add-on available, please perform the following:"
481
- msgstr "要使扩展可用,请执行以下操作:"
 
482
 
483
- #: ../classes/settings.php:487
484
- msgid "Download the Addon plugin (.zip file) to your desktop"
485
- msgstr "下载扩展插件(.zip文件)到你的桌面"
486
 
487
- #: ../classes/settings.php:488
488
- msgid "Navigate to"
489
- msgstr "访问 "
490
 
491
- #: ../classes/settings.php:488
492
- msgid "Plugins > Add New > Upload"
493
- msgstr "插件 > 安装插件 > 上传"
494
 
495
- #: ../classes/settings.php:489
496
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
497
- msgstr "使用浏览上传,选择和安装你的扩展(.zip文件)"
498
 
499
- #: ../classes/settings.php:490
500
- msgid ""
501
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
502
- "link"
503
- msgstr "一旦插件已经上传和安装,点击“启用插件”链接。"
504
 
505
- #: ../classes/settings.php:491
506
- msgid "The Add-on is now installed and activated!"
507
- msgstr "扩展已安装并启用!"
508
 
509
- #: ../classes/settings.php:492
510
- #, php-format
511
- msgid ""
512
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
513
- msgstr "要想自动更新,请确保 <a href='%s'>填写你的许可密钥</a>"
514
-
515
- #: ../classes/settings.php:502
516
- msgid "Start using Admin Columns"
517
- msgstr "开始使用Admin Columns"
518
 
519
- #: ../classes/settings.php:580
520
- msgid "Store settings"
521
- msgstr "保存设置"
522
 
523
- #: ../classes/settings.php:585
524
- msgid "Update"
525
- msgstr "更新"
526
 
527
- #: ../classes/settings.php:585
528
- msgid "Publish"
529
- msgstr "发布"
530
 
531
- #: ../classes/settings.php:589
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
- "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
538
 
539
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
540
- #: ../classes/column/post/actions.php:53
541
- msgid "Restore"
542
- msgstr "恢复"
543
 
544
- #: ../classes/settings.php:590
545
- msgid "columns"
546
- msgstr ""
547
 
548
- #: ../classes/settings.php:600
549
- msgid "Get the Pro Add-on"
550
- msgstr "获取收费扩展"
551
 
552
- #: ../classes/settings.php:604
553
- msgid "Add Sorting"
554
- msgstr "添加排序"
555
 
556
- #: ../classes/settings.php:605
557
- msgid "Add Filtering"
558
- msgstr "添加过滤器"
559
 
560
- #: ../classes/settings.php:606
561
- msgid "Add Import/Export"
562
- msgstr "添加 导入/导出"
563
 
564
- #: ../classes/settings.php:609
565
- #, php-format
566
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
567
- msgstr "查看 <a href=\"%s\">收费扩展</a> 了解更多详情!"
568
 
569
- #: ../classes/settings.php:617
570
- msgid "Support"
571
- msgstr "支持"
572
 
573
- #: ../classes/settings.php:620
574
- msgid "Check the <strong>Help</strong> section in the top-right screen."
575
- msgstr "查看右上角的 <strong>帮助</strong>"
576
 
577
- #: ../classes/settings.php:622
578
- #, php-format
579
- msgid ""
580
- "For full documentation, bug reports, feature suggestions and other tips <a "
581
- "href='%s'>visit the Admin Columns website</a>"
582
- msgstr ""
583
- "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</"
584
- "p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站"
585
- "资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
586
 
587
- #: ../classes/settings.php:642
588
- msgid "Drag and drop to reorder"
589
- msgstr "拖动排序"
590
 
591
- #: ../classes/settings.php:645
592
- msgid "Add Column"
593
- msgstr "添加列"
594
 
595
- #: ../classes/settings.php:696
596
- msgid "General Settings"
597
- msgstr "常规设置"
598
 
599
- #: ../classes/settings.php:697
600
- msgid "Customize your Admin Columns settings."
601
- msgstr "自定义Admin Columns的设置"
602
 
603
- #: ../classes/settings.php:710
604
- msgid "Show hidden custom fields. Default is <code>off</code>."
605
- msgstr "显示隐藏的自定义字段,默认为<code>不显示</code>"
606
 
607
- #: ../classes/settings.php:716
608
- msgid ""
609
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
610
- msgstr "在管理界面显示“编辑列”按钮,默认为<code>不显示</code>"
611
 
612
- #: ../classes/settings.php:723
613
- msgid "Save"
614
- msgstr "保存"
 
615
 
616
- #: ../classes/settings.php:763
617
- msgid "Restore Settings"
618
- msgstr "恢复设置"
619
 
620
- #: ../classes/settings.php:764
621
- msgid "This will delete all column settings and restore the default settings."
622
- msgstr "这将删除所有列的设置和恢复到默认设置。"
623
 
624
- #: ../classes/settings.php:770
625
- msgid "Restore default settings"
626
- msgstr "恢复默认设置"
627
 
628
- #: ../classes/settings.php:770
629
- msgid ""
630
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
631
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
632
- msgstr ""
633
- "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将"
634
- "停止。"
635
 
636
- #: ../classes/storage_model.php:167
637
- msgid "settings succesfully restored."
638
- msgstr "设置已成功恢复!"
639
 
640
- #: ../classes/storage_model.php:181
641
- msgid "No columns settings available."
642
- msgstr "没有可用的列设置。"
643
 
644
- #: ../classes/storage_model.php:204
645
- #, php-format
646
- msgid "You are trying to store the same settings for %s."
647
- msgstr "你正在尝试为 %s 保存同样设置"
648
 
649
- #: ../classes/storage_model.php:208
650
- #, php-format
651
- msgid "Settings for %s updated succesfully."
652
- msgstr "%s 的设置已保存!"
653
 
654
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
655
- msgid "View"
656
- msgstr "查看"
657
 
658
- #: ../classes/upgrade.php:45
659
- msgid "Upgrade"
660
- msgstr "升级"
661
 
662
- #: ../classes/upgrade.php:90
663
- msgid "requires a database upgrade"
664
- msgstr "需要升级数据库"
 
665
 
666
- #: ../classes/upgrade.php:93
667
- msgid "why?"
668
- msgstr "为什么?"
 
669
 
670
- #: ../classes/upgrade.php:94
671
- msgid "Please"
672
- msgstr ""
673
 
674
- #: ../classes/upgrade.php:95
675
- msgid "backup your database"
676
- msgstr "备份数据库"
677
 
678
- #: ../classes/upgrade.php:96
679
- msgid "then click"
680
- msgstr "然后点击"
 
 
 
 
 
681
 
682
- #: ../classes/upgrade.php:304
683
- msgid "Migrating Column Settings"
684
- msgstr "迁移列设置"
685
 
686
- #: ../classes/upgrade.php:340
687
- msgid "No Upgrade Required"
688
- msgstr "无需升级"
689
 
690
- #: ../classes/upgrade.php:341
691
- msgid "Return to welcome screen."
692
- msgstr "返回欢迎界面"
 
693
 
694
- #: ../classes/upgrade.php:359
695
- msgid "Upgrade Complete!"
696
- msgstr "升级完成!"
697
 
698
- #: ../classes/upgrade.php:359
699
- msgid "Return to settings."
700
- msgstr "返回设置。"
 
 
701
 
702
- #: ../classes/upgrade.php:360
703
- msgid "Error"
704
- msgstr "错误"
705
 
706
- #: ../classes/upgrade.php:361
707
  msgid ""
708
- "Sorry. Something went wrong during the upgrade process. Please report this "
709
- "on the support forum."
710
- msgstr "抱歉,升级过程中出错了,请在论坛中反馈。"
711
-
712
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
713
- msgid "Media Library"
714
- msgstr "媒体库"
715
 
716
- #: ../classes/column/custom-field.php:79
717
- msgid "Post Title (Post ID's)"
718
- msgstr "文章标题(文章ID)"
719
-
720
- #: ../classes/column/custom-field.php:80
721
- msgid "Username (User ID's)"
722
- msgstr "用户名(用户ID)"
723
-
724
- #: ../classes/column/custom-field.php:81
725
- msgid "Checkmark (true/false)"
726
- msgstr "判断(true/false)"
727
-
728
- #: ../classes/column/custom-field.php:324
729
- msgid "Select your custom field."
730
- msgstr "选择自定义字段"
731
-
732
- #: ../classes/column/custom-field.php:334
733
- msgid "No custom fields available."
734
- msgstr "没有可用的自定义字段"
735
-
736
- #: ../classes/column/custom-field.php:341
737
- msgid "Field Type"
738
- msgstr "字段类型"
739
-
740
- #: ../classes/column/custom-field.php:341
741
- msgid "This will determine how the value will be displayed."
742
- msgstr "用来确定如何显示值"
743
-
744
- #: ../classes/column/custom-field.php:384
745
- msgid "Before"
746
- msgstr "前"
747
-
748
- #: ../classes/column/custom-field.php:384
749
- msgid "This text will appear before the custom field value."
750
- msgstr "该文本将显示在自定义字段的值的前面"
751
-
752
- #: ../classes/column/custom-field.php:390
753
- msgid "After"
754
- msgstr "后"
755
-
756
- #: ../classes/column/custom-field.php:390
757
- msgid "This text will appear after the custom field value."
758
- msgstr "该文本将显示在自定义字段的值的后面"
759
-
760
- #: ../classes/column/comment/actions.php:14
761
- #: ../classes/column/link/actions.php:14
762
- #: ../classes/column/media/actions.php:14
763
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
764
- msgid "Actions"
765
- msgstr "操作"
766
-
767
- #: ../classes/column/comment/actions.php:73
768
- #: ../classes/column/comment/actions.php:78
769
- msgid "Unapprove"
770
- msgstr "驳回"
771
-
772
- #: ../classes/column/comment/actions.php:75
773
- #: ../classes/column/comment/actions.php:77
774
- msgid "Approve"
775
- msgstr "通过"
776
-
777
- #: ../classes/column/comment/actions.php:90
778
- #: ../classes/column/post/actions.php:57
779
- msgid "Delete Permanently"
780
- msgstr "永久删除"
781
-
782
- #: ../classes/column/comment/actions.php:96
783
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
784
- #: ../classes/column/user/actions.php:57
785
- msgid "Edit"
786
- msgstr "编辑"
787
 
788
- #: ../classes/column/comment/actions.php:97
789
- #: ../classes/column/post/actions.php:49
790
- msgid "Quick&nbsp;Edit"
791
- msgstr "Quick&nbsp;Edit"
 
792
 
793
- #: ../classes/column/comment/actions.php:98
794
- msgid "Reply"
795
- msgstr "回复"
 
 
 
 
796
 
797
- #: ../classes/column/comment/agent.php:12
798
- msgid "Agent"
799
- msgstr "代理(Agent)"
 
 
800
 
801
- #: ../classes/column/comment/approved.php:12
802
- #: ../classes/column/post/comment-count.php:31
803
- msgid "Approved"
804
- msgstr "已通过"
805
 
806
- #: ../classes/column/comment/author-avatar.php:12
807
- msgid "Avatar"
808
- msgstr "头像"
 
809
 
810
- #: ../classes/column/comment/author-email.php:12
811
- msgid "Author email"
812
- msgstr "作者邮箱"
 
 
 
 
813
 
814
- #: ../classes/column/comment/author-ip.php:12
815
- msgid "Author IP"
816
- msgstr "作者IP"
 
 
 
 
 
 
817
 
818
- #: ../classes/column/comment/author-url.php:12
819
- msgid "Author url"
820
- msgstr "作者url"
821
 
822
- #: ../classes/column/comment/author.php:12
823
- msgid "Author"
824
- msgstr "作者"
825
 
826
- #: ../classes/column/comment/date-gmt.php:12
827
- msgid "Date GMT"
828
- msgstr "日期GMT"
829
 
830
- #: ../classes/column/comment/date-gmt.php:25
831
- #: ../classes/column/comment/date.php:25
832
- #, php-format
833
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
834
- msgstr "提交于 <a href=\"%1$s\">%2$s at %3$s</a>"
835
 
836
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
837
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
838
- msgid "ID"
839
- msgstr "ID"
840
 
841
- #: ../classes/column/comment/reply-to.php:12
842
- msgid "In Reply To"
843
- msgstr "回应给"
844
 
845
- #: ../classes/column/comment/word-count.php:12
846
- #: ../classes/column/post/word-count.php:12
847
- msgid "Word count"
848
- msgstr "字数"
849
 
850
- #: ../classes/column/link/actions.php:46
851
- #, php-format
852
  msgid ""
853
- "You are about to delete this link '%s'\n"
854
- " 'Cancel' to stop, 'OK' to delete."
855
  msgstr ""
856
- "你将要删除这个链接“%s”\n"
857
- "“取消”将停止,“确定”将删除。"
858
-
859
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
860
- msgid "Delete"
861
- msgstr "删除"
862
-
863
- #: ../classes/column/link/description.php:12
864
- #: ../classes/column/media/description.php:12
865
- #: ../classes/column/user/description.php:14
866
- msgid "Description"
867
- msgstr "描述"
868
-
869
- #: ../classes/column/link/length.php:12
870
- msgid "Length"
871
- msgstr "长度"
872
 
873
- #: ../classes/column/link/notes.php:13
874
- msgid "Notes"
875
- msgstr "笔记"
876
 
877
- #: ../classes/column/link/owner.php:12
878
- msgid "Owner"
879
- msgstr "所有者"
880
 
881
- #: ../classes/column/link/rss.php:12
882
- msgid "Rss"
883
- msgstr "Rss"
 
 
884
 
885
- #: ../classes/column/link/target.php:12
886
- msgid "Target"
887
- msgstr "Target"
888
 
889
- #: ../classes/column/media/alternate-text.php:12
890
- msgid "Alt"
891
- msgstr "Alt"
892
 
893
- #: ../classes/column/media/available-sizes.php:14
894
- msgid "Available Sizes"
895
- msgstr "可用尺寸"
896
 
897
- #: ../classes/column/media/available-sizes.php:37
898
- msgid "full size"
899
- msgstr "全尺寸"
900
 
901
- #: ../classes/column/media/caption.php:12
902
- #: ../classes/column/media/exif-data.php:36
903
- msgid "Caption"
904
- msgstr "标题"
 
 
 
 
905
 
906
- #: ../classes/column/media/dimensions.php:12
907
- msgid "Dimensions"
908
- msgstr "尺寸"
 
909
 
910
- #: ../classes/column/media/exif-data.php:12
911
- msgid "EXIF data"
912
- msgstr "EXIF数据"
913
 
914
- #: ../classes/column/media/exif-data.php:33
915
- msgid "Aperture"
916
- msgstr "光圈"
917
 
918
- #: ../classes/column/media/exif-data.php:34
919
- msgid "Credit"
920
- msgstr "信用"
921
 
922
- #: ../classes/column/media/exif-data.php:35
923
- msgid "Camera"
924
- msgstr "相机"
925
 
926
- #: ../classes/column/media/exif-data.php:37
927
- msgid "Timestamp"
928
- msgstr "时间戳"
929
 
930
- #: ../classes/column/media/exif-data.php:38
931
- msgid "Copyright EXIF"
932
- msgstr "版权EXIF"
933
 
934
- #: ../classes/column/media/exif-data.php:39
935
- msgid "Focal Length"
936
- msgstr "焦距"
 
 
 
 
937
 
938
- #: ../classes/column/media/exif-data.php:40
939
- msgid "ISO"
940
- msgstr "ISO"
941
 
942
- #: ../classes/column/media/exif-data.php:41
943
- msgid "Shutter Speed"
944
- msgstr "快门速度"
945
 
946
- #: ../classes/column/media/exif-data.php:42
947
- msgid "Title"
948
- msgstr "标题"
949
 
950
- #: ../classes/column/media/file-name.php:12
951
- msgid "File name"
952
- msgstr "名字"
 
 
 
 
 
953
 
954
- #: ../classes/column/media/file-size.php:12
955
- msgid "File size"
956
- msgstr "文件大小"
957
 
958
- #: ../classes/column/media/full-path.php:12
959
- msgid "Full path"
960
- msgstr "完整路径"
961
 
962
- #: ../classes/column/media/height.php:12
963
- msgid "Height"
964
- msgstr "高度"
 
 
 
 
 
965
 
966
- #: ../classes/column/media/mime-type.php:12
967
- msgid "Mime type"
968
- msgstr "Mime类型"
969
 
970
- #: ../classes/column/post/actions.php:48
971
- msgid "Edit this item"
972
- msgstr "编辑该项目"
 
 
973
 
974
- #: ../classes/column/post/actions.php:49
975
- msgid "Edit this item inline"
976
- msgstr "编辑该项目的联"
977
 
978
- #: ../classes/column/post/actions.php:53
979
- msgid "Restore this item from the Trash"
980
- msgstr "从回收站中还原"
981
 
982
- #: ../classes/column/post/actions.php:55
983
- msgid "Move this item to the Trash"
984
- msgstr "移至回收站"
985
 
986
- #: ../classes/column/post/actions.php:55
987
- #: ../classes/column/post/comment-count.php:34
988
- #: ../classes/column/post/status.php:35
989
- msgid "Trash"
990
- msgstr "回收站"
991
 
992
- #: ../classes/column/post/actions.php:57
993
- msgid "Delete this item permanently"
994
- msgstr "永久删除改项目"
 
 
995
 
996
- #: ../classes/column/post/actions.php:62
997
- #, php-format
998
- msgid "Preview &#8220;%s&#8221;"
999
- msgstr "预览 &#8220;%s&#8221;"
1000
 
1001
- #: ../classes/column/post/actions.php:62
1002
- msgid "Preview"
1003
- msgstr "预览"
1004
 
1005
- #: ../classes/column/post/actions.php:64
1006
- #, php-format
1007
- msgid "View &#8220;%s&#8221;"
1008
- msgstr "查看 &#8220;%s&#8221;"
1009
 
1010
- #: ../classes/column/post/attachment-count.php:12
1011
- msgid "No. of Attachments"
1012
- msgstr "附件数量"
1013
 
1014
- #: ../classes/column/post/attachment.php:12
1015
- msgid "Attachment"
1016
- msgstr "附件"
1017
 
1018
- #: ../classes/column/post/author-name.php:12
1019
- msgid "Display Author As"
1020
- msgstr "显示作者为"
1021
 
1022
- #: ../classes/column/post/author-name.php:33
1023
- msgid "Display Name"
1024
- msgstr "公开显示为"
1025
 
1026
- #: ../classes/column/post/author-name.php:34
1027
- msgid "First Name"
1028
- msgstr "名字"
1029
 
1030
- #: ../classes/column/post/author-name.php:35
1031
- msgid "Last Name"
1032
- msgstr "姓氏"
1033
 
1034
- #: ../classes/column/post/author-name.php:36
1035
- #: ../classes/column/user/nickname.php:14
1036
- msgid "Nickname"
1037
- msgstr "昵称"
1038
 
1039
- #: ../classes/column/post/author-name.php:37
1040
- msgid "User Login"
1041
- msgstr "用户名"
1042
 
1043
- #: ../classes/column/post/author-name.php:38
1044
- msgid "User Email"
1045
- msgstr "用户邮箱"
 
 
1046
 
1047
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1048
- msgid "User ID"
1049
- msgstr "用户ID"
1050
 
1051
- #: ../classes/column/post/author-name.php:40
1052
- msgid "First and Last Name"
1053
- msgstr "姓名"
 
 
1054
 
1055
- #: ../classes/column/post/author-name.php:106
1056
- msgid "This is the format of the author name."
1057
- msgstr "作者名字的格式"
1058
 
1059
- #: ../classes/column/post/before-moretag.php:14
1060
- msgid "Before More Tag"
1061
- msgstr "More标签前"
1062
 
1063
- #: ../classes/column/post/comment-count.php:14
1064
- msgid "Comment count"
1065
- msgstr "评论数量"
1066
 
1067
- #: ../classes/column/post/comment-count.php:30
1068
- msgid "Total"
1069
- msgstr "所有"
1070
 
1071
- #: ../classes/column/post/comment-count.php:32
1072
- msgid "Pending"
1073
- msgstr "待审"
 
1074
 
1075
- #: ../classes/column/post/comment-count.php:33
1076
- msgid "Spam"
1077
- msgstr "垃圾评论"
1078
 
1079
- #: ../classes/column/post/comment-count.php:78
1080
- #: ../classes/column/post/comment-status.php:14
1081
- msgid "Comment status"
1082
- msgstr "评论状态"
1083
 
1084
- #: ../classes/column/post/comment-count.php:78
1085
- msgid "Select which comment status you like to display."
1086
- msgstr "选择你要显示的评论状态"
1087
 
1088
- #: ../classes/column/post/featured-image.php:14
1089
- msgid "Featured Image"
1090
- msgstr "特色图像"
1091
 
1092
- #: ../classes/column/post/formats.php:14
1093
- msgid "Post Format"
1094
- msgstr "文章形式"
 
 
 
 
1095
 
1096
- #: ../classes/column/post/modified.php:14
1097
- msgid "Last modified"
1098
- msgstr "最后修订"
1099
 
1100
- #: ../classes/column/post/order.php:14
1101
- msgid "Page Order"
1102
- msgstr "页面排序"
 
1103
 
1104
- #: ../classes/column/post/page-template.php:12
1105
- msgid "Page Template"
1106
- msgstr "页面模板"
1107
 
1108
- #: ../classes/column/post/parent.php:12
1109
- msgid "Parent"
1110
- msgstr "父级"
 
1111
 
1112
- #: ../classes/column/post/ping-status.php:14
1113
- msgid "Ping status"
1114
- msgstr "Ping状态"
1115
 
1116
- #: ../classes/column/post/roles.php:14
1117
- msgid "Roles"
1118
- msgstr "角色"
1119
 
1120
- #: ../classes/column/post/slug.php:12
1121
- msgid "Slug"
1122
- msgstr "别名"
 
 
 
 
1123
 
1124
- #: ../classes/column/post/status.php:14
1125
- msgid "Status"
1126
- msgstr "状态"
1127
 
1128
- #: ../classes/column/post/status.php:30
1129
- msgid "Published"
1130
- msgstr "已发布"
1131
 
1132
- #: ../classes/column/post/status.php:31
1133
- msgid "Draft"
1134
- msgstr "草稿"
1135
 
1136
- #: ../classes/column/post/status.php:32
1137
- msgid "Scheduled"
1138
- msgstr "定时"
1139
 
1140
- #: ../classes/column/post/status.php:33
1141
- msgid "Private"
1142
- msgstr "私密"
1143
 
1144
- #: ../classes/column/post/status.php:34
1145
- msgid "Pending Review"
1146
- msgstr "待审核"
 
1147
 
1148
- #: ../classes/column/post/sticky.php:14
1149
- msgid "Sticky"
1150
- msgstr "置顶"
1151
 
1152
- #: ../classes/column/post/taxonomy.php:12
1153
- #: ../classes/column/post/taxonomy.php:68
1154
- msgid "Taxonomy"
1155
- msgstr "分类法"
1156
 
1157
- #: ../classes/column/user/comment-count.php:14
1158
- msgid "Comment Count"
1159
- msgstr "评论数量"
 
 
 
 
 
 
1160
 
1161
- #: ../classes/column/user/first-name.php:14
1162
- msgid "First name"
1163
- msgstr "名字"
1164
 
1165
- #: ../classes/column/user/last-name.php:14
1166
- msgid "Last name"
1167
- msgstr "姓氏"
1168
 
1169
- #: ../classes/column/user/post-count.php:14
1170
- msgid "Post Count"
1171
- msgstr "文章数量"
1172
 
1173
- #: ../classes/column/user/post-count.php:92
1174
- msgid "Post Type"
1175
- msgstr "文章类型"
1176
 
1177
- #: ../classes/column/user/registered.php:14
1178
- msgid "Registered"
1179
- msgstr "注册"
 
1180
 
1181
- #: ../classes/column/user/url.php:14
1182
- msgid "Url"
1183
- msgstr "Url"
 
1184
 
1185
  #: ../classes/storage_model/comment.php:13
1186
  msgid "Comments"
@@ -1193,3 +1163,64 @@ msgstr "链接"
1193
  #: ../classes/storage_model/user.php:13
1194
  msgid "Users"
1195
  msgstr "用户"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-03-21 11:45+0100\n"
9
+ "PO-Revision-Date: 2014-03-21 11:45+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/zh_CN/)\n"
13
+ "Language: zh_CN\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: utf-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
26
  msgid "Thumbnail"
27
  msgstr "缩略图"
28
 
29
+ #: ../classes/column.php:498
30
  msgid "Medium"
31
  msgstr "中等大小"
32
 
33
+ #: ../classes/column.php:499
34
  msgid "Large"
35
  msgstr "大尺寸"
36
 
37
+ #: ../classes/column.php:500
38
  msgid "Full"
39
  msgstr "原始大小"
40
 
41
+ #: ../classes/column.php:792
42
  msgid "Date Format"
43
  msgstr "日期格式"
44
 
45
+ #: ../classes/column.php:793
46
  msgid "This will determine how the date will be displayed."
47
  msgstr "用来决定如何显示日期"
48
 
49
+ #: ../classes/column.php:799
50
  msgid "Example:"
51
  msgstr "例如:"
52
 
53
+ #: ../classes/column.php:801
54
  #, php-format
55
  msgid ""
56
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
59
  "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期"
60
  "格式。"
61
 
62
+ #: ../classes/column.php:802
63
  msgid "Documentation on date and time formatting."
64
  msgstr "日期和时间格式的文档。"
65
 
66
+ #: ../classes/column.php:820
67
  msgid "Excerpt length"
68
  msgstr "摘要长度"
69
 
70
+ #: ../classes/column.php:821
71
  msgid "Number of words"
72
  msgstr "字数"
73
 
74
+ #: ../classes/column.php:843
75
  msgid "Preview size"
76
  msgstr "预览大小"
77
 
78
+ #: ../classes/column.php:860 ../classes/column.php:939
79
  msgid "Custom"
80
  msgstr "自定义"
81
 
82
+ #: ../classes/column.php:863
83
  msgid "width"
84
  msgstr "宽度"
85
 
86
+ #: ../classes/column.php:866
87
  msgid "height"
88
  msgstr "高度"
89
 
90
+ #: ../classes/column.php:882
91
+ msgid "Before"
92
+ msgstr "前"
93
+
94
+ #: ../classes/column.php:882
95
+ msgid "This text will appear before the custom field value."
96
+ msgstr "该文本将显示在自定义字段的值的前面"
97
+
98
+ #: ../classes/column.php:888
99
+ msgid "After"
100
+ msgstr "后"
101
+
102
+ #: ../classes/column.php:888
103
+ msgid "This text will appear after the custom field value."
104
+ msgstr "该文本将显示在自定义字段的值的后面"
105
+
106
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
107
+ #: ../classes/settings.php:212
108
  msgid "Default"
109
  msgstr "默认"
110
 
111
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
112
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
113
+ #: ../classes/column/user/actions.php:66
114
+ msgid "Edit"
115
+ msgstr "编辑"
116
+
117
+ #: ../classes/column.php:963 ../classes/column.php:1024
118
+ #: ../classes/column/user/actions.php:74
119
  msgid "Remove"
120
  msgstr "删除"
121
 
122
+ #: ../classes/column.php:981
123
  msgid "Type"
124
  msgstr "类型"
125
 
126
+ #: ../classes/column.php:981
127
  msgid "Choose a column type."
128
  msgstr "选择一个列类型。"
129
 
130
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
131
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
132
+ #: ../classes/column/post/ID.php:12
133
+ msgid "ID"
134
+ msgstr "ID"
135
+
136
+ #: ../classes/column.php:991
137
  msgid "Label"
138
  msgstr "标签"
139
 
140
+ #: ../classes/column.php:991
141
  msgid "This is the name which will appear as the column header."
142
  msgstr "该名称将显示为列标题。"
143
 
144
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
145
  msgid "Width"
146
  msgstr "宽度"
147
 
148
+ #: ../classes/column.php:1000 ../classes/column.php:1001
149
  msgid "default"
150
  msgstr "默认"
151
 
152
+ #: ../classes/column/comment/actions.php:14
153
+ #: ../classes/column/link/actions.php:14
154
+ #: ../classes/column/media/actions.php:14
155
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
156
+ msgid "Actions"
157
+ msgstr "操作"
158
 
159
+ #: ../classes/column/comment/actions.php:73
160
+ #: ../classes/column/comment/actions.php:78
161
+ msgid "Unapprove"
162
+ msgstr "驳回"
163
 
164
+ #: ../classes/column/comment/actions.php:75
165
+ #: ../classes/column/comment/actions.php:77
166
+ msgid "Approve"
167
+ msgstr "通过"
168
 
169
+ #: ../classes/column/comment/actions.php:86
170
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
171
+ msgid "Restore"
172
+ msgstr "恢复"
173
 
174
+ #: ../classes/column/comment/actions.php:90
175
+ #: ../classes/column/post/actions.php:57
176
+ msgid "Delete Permanently"
177
+ msgstr "永久删除"
178
 
179
+ #: ../classes/column/comment/actions.php:97
180
+ #: ../classes/column/post/actions.php:49
181
+ msgid "Quick&nbsp;Edit"
182
+ msgstr "Quick&nbsp;Edit"
 
 
 
 
183
 
184
+ #: ../classes/column/comment/actions.php:98
185
+ msgid "Reply"
186
+ msgstr "回复"
187
 
188
+ #: ../classes/column/comment/agent.php:12
189
+ msgid "Agent"
190
+ msgstr "代理(Agent)"
191
 
192
+ #: ../classes/column/comment/approved.php:12
193
+ #: ../classes/column/post/comment-count.php:31
194
+ msgid "Approved"
195
+ msgstr "已通过"
196
 
197
+ #: ../classes/column/comment/author-avatar.php:12
198
+ msgid "Avatar"
199
+ msgstr "头像"
200
 
201
+ #: ../classes/column/comment/author-email.php:12
202
+ msgid "Author email"
203
+ msgstr "作者邮箱"
204
+
205
+ #: ../classes/column/comment/author-ip.php:12
206
+ msgid "Author IP"
207
+ msgstr "作者IP"
208
+
209
+ #: ../classes/column/comment/author-url.php:12
210
+ msgid "Author url"
211
+ msgstr "作者url"
212
+
213
+ #: ../classes/column/comment/author.php:12
214
+ msgid "Author"
215
+ msgstr "作者"
216
+
217
+ #: ../classes/column/comment/date-gmt.php:12
218
+ msgid "Date GMT"
219
+ msgstr "日期GMT"
220
+
221
+ #: ../classes/column/comment/date-gmt.php:25
222
+ #: ../classes/column/comment/date.php:25
223
+ #, php-format
224
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
225
+ msgstr "提交于 <a href=\"%1$s\">%2$s at %3$s</a>"
226
+
227
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
228
+ #: ../classes/settings.php:217
229
+ msgid "Date"
230
+ msgstr "日期"
231
 
232
+ #: ../classes/column/comment/excerpt.php:13
233
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
234
  #: ../classes/settings.php:214
235
+ msgid "Excerpt"
236
+ msgstr "摘要"
237
 
238
+ #: ../classes/column/comment/reply-to.php:12
239
+ msgid "In Reply To"
240
+ msgstr "回应给"
241
+
242
+ #: ../classes/column/comment/word-count.php:12
243
+ #: ../classes/column/post/word-count.php:12
244
+ msgid "Word count"
245
+ msgstr "字数"
246
 
247
+ #: ../classes/column/custom-field.php:16
248
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
249
  msgid "Custom Field"
250
  msgstr "自定义字段"
251
 
252
+ #: ../classes/column/custom-field.php:66
253
+ msgid "Checkmark (true/false)"
254
+ msgstr "判断(true/false)"
255
 
256
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
257
+ msgid "Color"
258
+ msgstr "颜色"
 
 
259
 
260
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
261
+ msgid "Counter"
 
 
262
  msgstr ""
 
 
263
 
264
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
265
+ #: ../classes/settings.php:213
266
  msgid "Image"
267
  msgstr "图像"
268
 
269
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
270
+ msgid "Media Library"
271
+ msgstr "媒体库"
 
 
 
 
 
 
 
 
 
 
 
 
272
 
273
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
274
  msgid "Multiple Values"
275
  msgstr "多个值"
276
 
277
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
 
 
 
 
 
278
  msgid "Numeric"
279
  msgstr "数字"
280
 
281
+ #: ../classes/column/custom-field.php:75
282
+ msgid "Post Title (Post ID's)"
283
+ msgstr "文章标题(文章ID)"
 
 
 
 
284
 
285
+ #: ../classes/column/custom-field.php:76
286
+ msgid "Username (User ID's)"
287
+ msgstr "用户名(用户ID)"
288
+
289
+ #: ../classes/column/custom-field.php:377
290
+ msgid "Select your custom field."
291
+ msgstr "选择自定义字段"
292
+
293
+ #: ../classes/column/custom-field.php:387
294
+ msgid "No custom fields available."
295
+ msgstr "没有可用的自定义字段"
296
+
297
+ #: ../classes/column/custom-field.php:394
298
+ msgid "Field Type"
299
+ msgstr "字段类型"
300
+
301
+ #: ../classes/column/custom-field.php:394
302
+ msgid "This will determine how the value will be displayed."
303
+ msgstr "用来确定如何显示值"
304
 
305
+ #: ../classes/column/link/actions.php:46
306
  #, php-format
307
  msgid ""
308
+ "You are about to delete this link '%s'\n"
309
+ " 'Cancel' to stop, 'OK' to delete."
 
310
  msgstr ""
311
+ "你将要删除这个链接“%s”\n"
312
+ "“取消”将停止,“确定”将删除。"
313
 
314
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
315
+ msgid "Delete"
316
+ msgstr "删除"
317
 
318
+ #: ../classes/column/link/description.php:12
319
+ #: ../classes/column/media/description.php:12
320
+ #: ../classes/column/user/description.php:14
321
+ msgid "Description"
322
+ msgstr "描述"
323
 
324
+ #: ../classes/column/link/length.php:12
325
+ msgid "Length"
326
+ msgstr "长度"
327
 
328
+ #: ../classes/column/link/notes.php:13
329
+ msgid "Notes"
330
+ msgstr "笔记"
331
 
332
+ #: ../classes/column/link/owner.php:12
333
+ msgid "Owner"
334
+ msgstr "所有者"
335
 
336
+ #: ../classes/column/link/rss.php:12
337
+ msgid "Rss"
338
+ msgstr "Rss"
339
 
340
+ #: ../classes/column/link/target.php:12
341
+ msgid "Target"
342
+ msgstr "Target"
343
 
344
+ #: ../classes/column/media/alternate-text.php:12
345
+ msgid "Alt"
346
+ msgstr "Alt"
 
 
 
 
347
 
348
+ #: ../classes/column/media/available-sizes.php:14
349
+ msgid "Available Sizes"
350
+ msgstr "可用尺寸"
351
 
352
+ #: ../classes/column/media/available-sizes.php:37
353
+ msgid "full size"
354
+ msgstr "全尺寸"
 
 
355
 
356
+ #: ../classes/column/media/caption.php:12
357
+ #: ../classes/column/media/exif-data.php:36
358
+ msgid "Caption"
359
+ msgstr "标题"
360
 
361
+ #: ../classes/column/media/dimensions.php:12
362
+ msgid "Dimensions"
363
+ msgstr "尺寸"
364
 
365
+ #: ../classes/column/media/exif-data.php:12
366
+ msgid "EXIF data"
367
+ msgstr "EXIF数据"
368
 
369
+ #: ../classes/column/media/exif-data.php:33
370
+ msgid "Aperture"
371
+ msgstr "光圈"
372
 
373
+ #: ../classes/column/media/exif-data.php:34
374
+ msgid "Credit"
375
+ msgstr "信用"
 
 
 
 
 
376
 
377
+ #: ../classes/column/media/exif-data.php:35
378
+ msgid "Camera"
379
+ msgstr "相机"
 
380
 
381
+ #: ../classes/column/media/exif-data.php:37
382
+ msgid "Timestamp"
383
+ msgstr "时间戳"
384
 
385
+ #: ../classes/column/media/exif-data.php:38
386
+ msgid "Copyright EXIF"
387
+ msgstr "版权EXIF"
388
 
389
+ #: ../classes/column/media/exif-data.php:39
390
+ msgid "Focal Length"
391
+ msgstr "焦距"
392
 
393
+ #: ../classes/column/media/exif-data.php:40
394
+ msgid "ISO"
395
+ msgstr "ISO"
396
 
397
+ #: ../classes/column/media/exif-data.php:41
398
+ msgid "Shutter Speed"
399
+ msgstr "快门速度"
400
 
401
+ #: ../classes/column/media/exif-data.php:42
402
+ msgid "Title"
403
+ msgstr "标题"
404
 
405
+ #: ../classes/column/media/file-name.php:12
406
+ msgid "File name"
407
+ msgstr "名字"
 
 
 
 
408
 
409
+ #: ../classes/column/media/file-size.php:12
410
+ msgid "File size"
411
+ msgstr "文件大小"
412
 
413
+ #: ../classes/column/media/full-path.php:12
414
+ msgid "Full path"
415
+ msgstr "完整路径"
416
 
417
+ #: ../classes/column/media/height.php:12
418
+ msgid "Height"
419
+ msgstr "高度"
420
 
421
+ #: ../classes/column/media/mime-type.php:12
422
+ msgid "Mime type"
423
+ msgstr "Mime类型"
 
 
 
 
 
424
 
425
+ #: ../classes/column/post/actions.php:48
426
+ msgid "Edit this item"
427
+ msgstr "编辑该项目"
428
 
429
+ #: ../classes/column/post/actions.php:49
430
+ msgid "Edit this item inline"
431
+ msgstr "编辑该项目的联"
432
 
433
+ #: ../classes/column/post/actions.php:53
434
+ msgid "Restore this item from the Trash"
435
+ msgstr "从回收站中还原"
 
 
 
 
 
436
 
437
+ #: ../classes/column/post/actions.php:55
438
+ msgid "Move this item to the Trash"
439
+ msgstr "移至回收站"
440
 
441
+ #: ../classes/column/post/actions.php:55
442
+ #: ../classes/column/post/comment-count.php:34
443
+ #: ../classes/column/post/status.php:38
444
+ msgid "Trash"
445
+ msgstr "回收站"
446
 
447
+ #: ../classes/column/post/actions.php:57
448
+ msgid "Delete this item permanently"
449
+ msgstr "永久删除改项目"
450
 
451
+ #: ../classes/column/post/actions.php:62
452
+ #, php-format
453
+ msgid "Preview &#8220;%s&#8221;"
454
+ msgstr "预览 &#8220;%s&#8221;"
455
 
456
+ #: ../classes/column/post/actions.php:62
457
+ msgid "Preview"
458
+ msgstr "预览"
459
 
460
+ #: ../classes/column/post/actions.php:64
461
+ #, php-format
462
+ msgid "View &#8220;%s&#8221;"
463
+ msgstr "查看 &#8220;%s&#8221;"
464
 
465
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
466
+ msgid "View"
467
+ msgstr "查看"
 
 
468
 
469
+ #: ../classes/column/post/attachment-count.php:12
470
+ msgid "No. of Attachments"
471
+ msgstr "附件数量"
 
472
 
473
+ #: ../classes/column/post/attachment.php:12
474
+ msgid "Attachment"
475
+ msgstr "附件"
476
 
477
+ #: ../classes/column/post/author-name.php:12
478
+ msgid "Display Author As"
479
+ msgstr "显示作者为"
480
 
481
+ #: ../classes/column/post/author-name.php:34
482
+ msgid "Display Name"
483
+ msgstr "公开显示为"
484
 
485
+ #: ../classes/column/post/author-name.php:35
486
+ msgid "First Name"
487
+ msgstr "名字"
488
 
489
+ #: ../classes/column/post/author-name.php:36
490
+ msgid "Last Name"
491
+ msgstr "姓氏"
492
 
493
+ #: ../classes/column/post/author-name.php:37
494
+ #: ../classes/column/user/nickname.php:14
495
+ msgid "Nickname"
496
+ msgstr "昵称"
497
 
498
+ #: ../classes/column/post/author-name.php:38
499
+ msgid "User Login"
500
+ msgstr "用户名"
501
 
502
+ #: ../classes/column/post/author-name.php:39
503
+ msgid "User Email"
504
+ msgstr "用户邮箱"
505
 
506
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
507
+ msgid "User ID"
508
+ msgstr "用户ID"
509
 
510
+ #: ../classes/column/post/author-name.php:41
511
+ msgid "First and Last Name"
512
+ msgstr "姓名"
513
 
514
+ #: ../classes/column/post/author-name.php:118
515
+ msgid "This is the format of the author name."
516
+ msgstr "作者名字的格式"
 
 
517
 
518
+ #: ../classes/column/post/before-moretag.php:14
519
+ msgid "Before More Tag"
520
+ msgstr "More标签前"
521
 
522
+ #: ../classes/column/post/comment-count.php:14
523
+ msgid "Comment count"
524
+ msgstr "评论数量"
 
 
 
 
 
 
525
 
526
+ #: ../classes/column/post/comment-count.php:30
527
+ msgid "Total"
528
+ msgstr "所有"
529
 
530
+ #: ../classes/column/post/comment-count.php:32
531
+ msgid "Pending"
532
+ msgstr "待审"
533
 
534
+ #: ../classes/column/post/comment-count.php:33
535
+ msgid "Spam"
536
+ msgstr "垃圾评论"
537
 
538
+ #: ../classes/column/post/comment-count.php:95
539
+ #: ../classes/column/post/comment-status.php:14
540
+ msgid "Comment status"
541
+ msgstr "评论状态"
 
 
 
542
 
543
+ #: ../classes/column/post/comment-count.php:95
544
+ msgid "Select which comment status you like to display."
545
+ msgstr "选择你要显示的评论状态"
 
546
 
547
+ #: ../classes/column/post/featured-image.php:14
548
+ msgid "Featured Image"
549
+ msgstr "特色图像"
550
 
551
+ #: ../classes/column/post/formats.php:14
552
+ msgid "Post Format"
553
+ msgstr "文章形式"
554
 
555
+ #: ../classes/column/post/modified.php:14
556
+ msgid "Last modified"
557
+ msgstr "最后修订"
558
 
559
+ #: ../classes/column/post/order.php:14
560
+ msgid "Page Order"
561
+ msgstr "页面排序"
562
 
563
+ #: ../classes/column/post/page-template.php:12
564
+ msgid "Page Template"
565
+ msgstr "页面模板"
566
 
567
+ #: ../classes/column/post/parent.php:12
568
+ msgid "Parent"
569
+ msgstr "父级"
 
570
 
571
+ #: ../classes/column/post/ping-status.php:14
572
+ msgid "Ping status"
573
+ msgstr "Ping状态"
574
 
575
+ #: ../classes/column/post/roles.php:14
576
+ msgid "Roles"
577
+ msgstr "角色"
578
 
579
+ #: ../classes/column/post/slug.php:12
580
+ msgid "Slug"
581
+ msgstr "别名"
 
 
 
 
 
 
582
 
583
+ #: ../classes/column/post/status.php:14
584
+ msgid "Status"
585
+ msgstr "状态"
586
 
587
+ #: ../classes/column/post/status.php:32
588
+ msgid "Published"
589
+ msgstr "已发布"
590
 
591
+ #: ../classes/column/post/status.php:33
592
+ msgid "Draft"
593
+ msgstr "草稿"
594
 
595
+ #: ../classes/column/post/status.php:34
596
+ msgid "Scheduled"
597
+ msgstr "定时"
598
 
599
+ #: ../classes/column/post/status.php:35
600
+ msgid "Private"
601
+ msgstr "私密"
602
 
603
+ #: ../classes/column/post/status.php:36
604
+ msgid "Pending Review"
605
+ msgstr "待审核"
 
606
 
607
+ #: ../classes/column/post/status.php:37
608
+ #, fuzzy
609
+ msgid "Auto Draft"
610
+ msgstr "草稿"
611
 
612
+ #: ../classes/column/post/sticky.php:14
613
+ msgid "Sticky"
614
+ msgstr "置顶"
615
 
616
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
617
+ msgid "Taxonomy"
618
+ msgstr "分类法"
619
 
620
+ #: ../classes/column/user/comment-count.php:14
621
+ msgid "Comment Count"
622
+ msgstr "评论数量"
623
 
624
+ #: ../classes/column/user/first-name.php:14
625
+ msgid "First name"
626
+ msgstr "名字"
 
 
 
 
627
 
628
+ #: ../classes/column/user/last-name.php:14
629
+ msgid "Last name"
630
+ msgstr "姓氏"
631
 
632
+ #: ../classes/column/user/post-count.php:14
633
+ msgid "Post Count"
634
+ msgstr "文章数量"
635
 
636
+ #: ../classes/column/user/post-count.php:99
637
+ msgid "Post Type"
638
+ msgstr "文章类型"
 
639
 
640
+ #: ../classes/column/user/registered.php:14
641
+ msgid "Registered"
642
+ msgstr "注册"
 
643
 
644
+ #: ../classes/column/user/url.php:14
645
+ msgid "Url"
646
+ msgstr "Url"
647
 
648
+ #: ../classes/settings.php:64
649
+ msgid "Admin Columns Settings"
650
+ msgstr "Admin Columns 设置"
651
 
652
+ #: ../classes/settings.php:64 ../classes/settings.php:635
653
+ #: ../classes/upgrade.php:89
654
+ msgid "Admin Columns"
655
+ msgstr "Admin Columns"
656
 
657
+ #: ../classes/settings.php:116
658
+ #, php-format
659
+ msgid "%s column is already present and can not be duplicated."
660
+ msgstr "%s 这个列已经存在,不能被复制。"
661
 
662
+ #: ../classes/settings.php:172
663
+ msgid "Default settings succesfully restored."
664
+ msgstr "已成功恢复默认设置。"
665
 
666
+ #: ../classes/settings.php:190 ../classes/settings.php:447
667
+ msgid "Overview"
668
+ msgstr "预览"
669
 
670
+ #: ../classes/settings.php:193
671
+ msgid ""
672
+ "This plugin is for adding and removing additional columns to the "
673
+ "administration screens for post(types), pages, media library, comments, "
674
+ "links and users. Change the column's label and reorder them."
675
+ msgstr ""
676
+ "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、"
677
+ "媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
678
 
679
+ #: ../classes/settings.php:196
680
+ msgid "Basics"
681
+ msgstr "基础"
682
 
683
+ #: ../classes/settings.php:198
684
+ msgid "Change order"
685
+ msgstr "更改排序"
686
 
687
+ #: ../classes/settings.php:199
688
+ msgid ""
689
+ "By dragging the columns you can change the order which they will appear in."
690
+ msgstr "拖动排序这些列,你可以重新排列它们显示的顺序。"
691
 
692
+ #: ../classes/settings.php:200
693
+ msgid "Change label"
694
+ msgstr "更改标签"
695
 
696
+ #: ../classes/settings.php:201
697
+ msgid ""
698
+ "By clicking on the triangle you will see the column options. Here you can "
699
+ "change each label of the columns heading."
700
+ msgstr "点击三角形,你会看到列的选项。在这里,你可以改变每个标签的列标题栏。"
701
 
702
+ #: ../classes/settings.php:202
703
+ msgid "Change column width"
704
+ msgstr "更改列宽"
705
 
706
+ #: ../classes/settings.php:203
707
  msgid ""
708
+ "By clicking on the triangle you will see the column options. By using the "
709
+ "draggable slider you can set the width of the columns in percentages."
710
+ msgstr "点击三角形,你会看到列的选项。你可以通过拖动滑块设置列的百分比宽度。"
 
 
 
 
711
 
712
+ #: ../classes/settings.php:209
713
+ msgid "'Custom Field' column"
714
+ msgstr "“自定义字段”列"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
 
716
+ #: ../classes/settings.php:210
717
+ msgid ""
718
+ "The custom field colum uses the custom fields from posts and users. There "
719
+ "are 10 types which you can set."
720
+ msgstr "自定义字段列使用文章和用户的自定义字段,你可以设置10中类型。"
721
 
722
+ #: ../classes/settings.php:212
723
+ msgid ""
724
+ "Value: Can be either a string or array. Arrays will be flattened and values "
725
+ "are seperated by a ',' comma."
726
+ msgstr ""
727
+ "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间"
728
+ "用逗号“,”隔开。"
729
 
730
+ #: ../classes/settings.php:213
731
+ msgid ""
732
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
733
+ "comma )."
734
+ msgstr "值:应该包括一个图像URL或附件ID(使用逗号“,”隔开)"
735
 
736
+ #: ../classes/settings.php:214
737
+ msgid "Value: This will show the first 20 words of the Post content."
738
+ msgstr "值:将显示文章内容的前 20 个字。"
 
739
 
740
+ #: ../classes/settings.php:215
741
+ msgid ""
742
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
743
+ msgstr "值:应该是一个数组。这将被压平(多维)数组"
744
 
745
+ #: ../classes/settings.php:216
746
+ msgid ""
747
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
748
+ "for sorting, so you can sort your posts on numeric (custom field) values."
749
+ msgstr ""
750
+ "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个"
751
+ "数字(自定义字段)值来排序文章。"
752
 
753
+ #: ../classes/settings.php:217
754
+ #, php-format
755
+ msgid ""
756
+ "Value: Can be unix time stamp or a date format as described in the <a "
757
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
758
+ "href='%s'>general settings</a> page."
759
+ msgstr ""
760
+ "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 "
761
+ "<a href='%s'>常规设置</a> 页面修改输出的日期格式。"
762
 
763
+ #: ../classes/settings.php:218
764
+ msgid "Post Titles"
765
+ msgstr "文章标题"
766
 
767
+ #: ../classes/settings.php:218
768
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
769
+ msgstr "值:可以是一个或多个文章ID(使用逗号“,”隔开)"
770
 
771
+ #: ../classes/settings.php:219
772
+ msgid "Usernames"
773
+ msgstr "用户名"
774
 
775
+ #: ../classes/settings.php:219
776
+ msgid "Value: can be one or more User ID's (seperated by ',')."
777
+ msgstr "值:可以是一个或多个用户ID(使用逗号“,”隔开)"
 
 
778
 
779
+ #: ../classes/settings.php:220
780
+ msgid "Checkmark"
781
+ msgstr "判断"
 
782
 
783
+ #: ../classes/settings.php:220
784
+ msgid "Value: should be a 1 (one) or 0 (zero)."
785
+ msgstr "值:应该是 1 (一)或 0 (零)"
786
 
787
+ #: ../classes/settings.php:221
788
+ msgid "Value: hex value color, such as #808080."
789
+ msgstr "值:十六进制值的颜色,如#808080。"
 
790
 
791
+ #: ../classes/settings.php:222
792
+ #, fuzzy
793
  msgid ""
794
+ "Value: Can be either a string or array. This will display a count of the "
795
+ "number of times the meta key is used by the item."
796
  msgstr ""
797
+ "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间"
798
+ "用逗号“,”隔开。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
 
800
+ #: ../classes/settings.php:367
801
+ msgid "Welcome to Admin Columns"
802
+ msgstr "欢迎使用Admin Columns插件。"
803
 
804
+ #: ../classes/settings.php:370
805
+ msgid "Thank you for updating to the latest version!"
806
+ msgstr "感谢您更新到最新版本!"
807
 
808
+ #: ../classes/settings.php:371
809
+ msgid ""
810
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
811
+ "like it."
812
+ msgstr "Admin Columns插件比以往任何时候都更加精致,愉快。我们希望你喜欢它。"
813
 
814
+ #: ../classes/settings.php:376
815
+ msgid "What’s New"
816
+ msgstr "最近更新"
817
 
818
+ #: ../classes/settings.php:377
819
+ msgid "Changelog"
820
+ msgstr "更新记录"
821
 
822
+ #: ../classes/settings.php:379
823
+ msgid "Download Addons"
824
+ msgstr "下载扩展"
825
 
826
+ #: ../classes/settings.php:385
827
+ msgid "Addons"
828
+ msgstr "扩展"
829
 
830
+ #: ../classes/settings.php:387
831
+ msgid ""
832
+ "Addons are now activated by downloading and installing individual plugins. "
833
+ "Although these plugins will not be hosted on the wordpress.org repository, "
834
+ "each Add-on will continue to receive updates in the usual way."
835
+ msgstr ""
836
+ "通过下载和安装插件可以启用扩展。尽管这些扩展插件不再托管于 wordpress.org,但"
837
+ "是它们都可以通过通常的方式获得更新。"
838
 
839
+ #: ../classes/settings.php:390
840
+ msgid ""
841
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
842
+ msgstr "该网站使用了排序扩展,该扩展需要下载。"
843
 
844
+ #: ../classes/settings.php:393
845
+ msgid "Addons are seperate plugins which need to be downloaded."
846
+ msgstr "扩展是需要下载的单独插件。"
847
 
848
+ #: ../classes/settings.php:393
849
+ msgid "Download your Addons"
850
+ msgstr "下载你的扩展"
851
 
852
+ #: ../classes/settings.php:399
853
+ msgid "This website does not use add-ons"
854
+ msgstr "该网站没有使用扩展"
855
 
856
+ #: ../classes/settings.php:399
857
+ msgid "See our website for the Pro-addon."
858
+ msgstr "访问我们的网站了解收费扩展"
859
 
860
+ #: ../classes/settings.php:406
861
+ msgid "Important"
862
+ msgstr "重要"
863
 
864
+ #: ../classes/settings.php:408
865
+ msgid "Database Changes"
866
+ msgstr "数据库更改"
867
 
868
+ #: ../classes/settings.php:409
869
+ msgid ""
870
+ "The database has been changed between versions 1 and 2. But we made sure you "
871
+ "can still roll back to version 1x without any issues."
872
+ msgstr ""
873
+ "该数据库已在版本1和2之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没"
874
+ "有任何问题的。"
875
 
876
+ #: ../classes/settings.php:412
877
+ msgid "Make sure you backup your database and then click"
878
+ msgstr "确保你已经备份了数据库,然后点击"
879
 
880
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
881
+ msgid "Upgrade Database"
882
+ msgstr "升级数据库"
883
 
884
+ #: ../classes/settings.php:415
885
+ msgid "Potential Issues"
886
+ msgstr "潜在问题"
887
 
888
+ #: ../classes/settings.php:416
889
+ msgid ""
890
+ "Do to the sizable refactoring the code, surounding Addons and action/"
891
+ "filters, your website may not operate correctly. It is important that you "
892
+ "read the full"
893
+ msgstr ""
894
+ "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议"
895
+ "你阅读完整的 "
896
 
897
+ #: ../classes/settings.php:416
898
+ msgid "Migrating from v1 to v2"
899
+ msgstr "从 v1 迁移到 v2"
900
 
901
+ #: ../classes/settings.php:416
902
+ msgid "guide to view the full list of changes."
903
+ msgstr "引导查看完整的更改列表。"
904
 
905
+ #: ../classes/settings.php:416
906
+ #, php-format
907
+ msgid ""
908
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
909
+ "can fix it in the next release."
910
+ msgstr ""
911
+ "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修"
912
+ "复。"
913
 
914
+ #: ../classes/settings.php:419
915
+ msgid "Important!"
916
+ msgstr "重要!"
917
 
918
+ #: ../classes/settings.php:419
919
+ msgid ""
920
+ "If you updated the Admin Columns plugin without prior knowledge of such "
921
+ "changes, Please roll back to the latest"
922
+ msgstr "如果你更新了 Admin Columns 插件没有另行通知这些变更,请回滚到最新版本"
923
 
924
+ #: ../classes/settings.php:419
925
+ msgid "version 1"
926
+ msgstr "版本 1"
927
 
928
+ #: ../classes/settings.php:419
929
+ msgid "of this plugin."
930
+ msgstr "这个插件。"
931
 
932
+ #: ../classes/settings.php:425
933
+ msgid "Changelog for"
934
+ msgstr "更新记录 for"
935
 
936
+ #: ../classes/settings.php:440
937
+ msgid "Learn more"
938
+ msgstr "了解更多"
 
 
939
 
940
+ #: ../classes/settings.php:449
941
+ msgid ""
942
+ "New to v2, all Addons act as separate plugins which need to be individually "
943
+ "downloaded, installed and updated."
944
+ msgstr "版本v2以后,所有扩展将作为单独的插件,需要单独下载,安装和更新。"
945
 
946
+ #: ../classes/settings.php:450
947
+ msgid ""
948
+ "This page will assist you in downloading and installing each available Addon."
949
+ msgstr "该页面将帮助您下载和安装每个可用的扩展。"
950
 
951
+ #: ../classes/settings.php:451
952
+ msgid "Available Addons"
953
+ msgstr "可用扩展"
954
 
955
+ #: ../classes/settings.php:456
956
+ msgid "Name"
957
+ msgstr "名称"
 
958
 
959
+ #: ../classes/settings.php:457 ../classes/settings.php:465
960
+ msgid "Download"
961
+ msgstr "下载"
962
 
963
+ #: ../classes/settings.php:463
964
+ msgid "Pro Add-on (includes Sortorder add-on)"
965
+ msgstr "收费扩展(包括排序扩展)"
966
 
967
+ #: ../classes/settings.php:473
968
+ msgid "Installation"
969
+ msgstr "安装"
970
 
971
+ #: ../classes/settings.php:475
972
+ msgid "For each Add-on available, please perform the following:"
973
+ msgstr "要使扩展可用,请执行以下操作:"
974
 
975
+ #: ../classes/settings.php:477
976
+ msgid "Download the Addon plugin (.zip file) to your desktop"
977
+ msgstr "下载扩展插件(.zip文件)到你的桌面"
978
 
979
+ #: ../classes/settings.php:478
980
+ msgid "Navigate to"
981
+ msgstr "访问 "
982
 
983
+ #: ../classes/settings.php:478
984
+ msgid "Plugins > Add New > Upload"
985
+ msgstr "插件 > 安装插件 > 上传"
 
986
 
987
+ #: ../classes/settings.php:479
988
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
989
+ msgstr "使用浏览上传,选择和安装你的扩展(.zip文件)"
990
 
991
+ #: ../classes/settings.php:480
992
+ msgid ""
993
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
994
+ "link"
995
+ msgstr "一旦插件已经上传和安装,点击“启用插件”链接。"
996
 
997
+ #: ../classes/settings.php:481
998
+ msgid "The Add-on is now installed and activated!"
999
+ msgstr "扩展已安装并启用!"
1000
 
1001
+ #: ../classes/settings.php:482
1002
+ #, php-format
1003
+ msgid ""
1004
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
1005
+ msgstr "要想自动更新,请确保 <a href='%s'>填写你的许可密钥</a>"
1006
 
1007
+ #: ../classes/settings.php:492
1008
+ msgid "Start using Admin Columns"
1009
+ msgstr "开始使用Admin Columns"
1010
 
1011
+ #: ../classes/settings.php:539
1012
+ msgid "General Settings"
1013
+ msgstr "常规设置"
1014
 
1015
+ #: ../classes/settings.php:540
1016
+ msgid "Customize your Admin Columns settings."
1017
+ msgstr "自定义Admin Columns的设置"
1018
 
1019
+ #: ../classes/settings.php:553
1020
+ msgid "Show hidden custom fields. Default is <code>off</code>."
1021
+ msgstr "显示隐藏的自定义字段,默认为<code>不显示</code>"
1022
 
1023
+ #: ../classes/settings.php:559
1024
+ msgid ""
1025
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1026
+ msgstr "在管理界面显示“编辑列”按钮,默认为<code>不显示</code>"
1027
 
1028
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1029
+ msgid "Save"
1030
+ msgstr "保存"
1031
 
1032
+ #: ../classes/settings.php:606
1033
+ msgid "Restore Settings"
1034
+ msgstr "恢复设置"
 
1035
 
1036
+ #: ../classes/settings.php:607
1037
+ msgid "This will delete all column settings and restore the default settings."
1038
+ msgstr "这将删除所有列的设置和恢复到默认设置。"
1039
 
1040
+ #: ../classes/settings.php:613
1041
+ msgid "Restore default settings"
1042
+ msgstr "恢复默认设置"
1043
 
1044
+ #: ../classes/settings.php:613
1045
+ msgid ""
1046
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1047
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1048
+ msgstr ""
1049
+ "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将"
1050
+ "停止。"
1051
 
1052
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1053
+ msgid "Settings"
1054
+ msgstr "设置"
1055
 
1056
+ #: ../classes/settings.php:665
1057
+ #, fuzzy
1058
+ msgid "Posttypes"
1059
+ msgstr "文章类型"
1060
 
1061
+ #: ../classes/settings.php:666
1062
+ msgid "Others"
1063
+ msgstr ""
1064
 
1065
+ #: ../classes/settings.php:667
1066
+ #, fuzzy
1067
+ msgid "Taxonomies"
1068
+ msgstr "分类法"
1069
 
1070
+ #: ../classes/settings.php:688
1071
+ msgid "Store settings"
1072
+ msgstr "保存设置"
1073
 
1074
+ #: ../classes/settings.php:692
1075
+ msgid "Update"
1076
+ msgstr "更新"
1077
 
1078
+ #: ../classes/settings.php:696
1079
+ #, php-format
1080
+ msgid ""
1081
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1082
+ "\\' to delete, \\'Cancel\\' to stop"
1083
+ msgstr ""
1084
+ "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
1085
 
1086
+ #: ../classes/settings.php:697
1087
+ msgid "columns"
1088
+ msgstr ""
1089
 
1090
+ #: ../classes/settings.php:710
1091
+ msgid "Get the Pro Add-on"
1092
+ msgstr "获取收费扩展"
1093
 
1094
+ #: ../classes/settings.php:714
1095
+ msgid "Add Sorting"
1096
+ msgstr "添加排序"
1097
 
1098
+ #: ../classes/settings.php:715
1099
+ msgid "Add Filtering"
1100
+ msgstr "添加过滤器"
1101
 
1102
+ #: ../classes/settings.php:716
1103
+ msgid "Add Import/Export"
1104
+ msgstr "添加 导入/导出"
1105
 
1106
+ #: ../classes/settings.php:719
1107
+ #, php-format
1108
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1109
+ msgstr "查看 <a href=\"%s\">收费扩展</a> 了解更多详情!"
1110
 
1111
+ #: ../classes/settings.php:750
1112
+ msgid "Support"
1113
+ msgstr "支持"
1114
 
1115
+ #: ../classes/settings.php:753
1116
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1117
+ msgstr "查看右上角的 <strong>帮助</strong>"
 
1118
 
1119
+ #: ../classes/settings.php:756
1120
+ #, php-format
1121
+ msgid ""
1122
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1123
+ "href='%s'>visit the Admin Columns website</a>"
1124
+ msgstr ""
1125
+ "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</"
1126
+ "p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站"
1127
+ "资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
1128
 
1129
+ #: ../classes/settings.php:784
1130
+ msgid "Drag and drop to reorder"
1131
+ msgstr "拖动排序"
1132
 
1133
+ #: ../classes/settings.php:787
1134
+ msgid "Add Column"
1135
+ msgstr "添加列"
1136
 
1137
+ #: ../classes/storage_model.php:222
1138
+ msgid "settings succesfully restored."
1139
+ msgstr "设置已成功恢复!"
1140
 
1141
+ #: ../classes/storage_model.php:239
1142
+ msgid "No columns settings available."
1143
+ msgstr "没有可用的列设置。"
1144
 
1145
+ #: ../classes/storage_model.php:262
1146
+ #, php-format
1147
+ msgid "You are trying to store the same settings for %s."
1148
+ msgstr "你正在尝试为 %s 保存同样设置"
1149
 
1150
+ #: ../classes/storage_model.php:266
1151
+ #, php-format
1152
+ msgid "Settings for %s updated succesfully."
1153
+ msgstr "%s 的设置已保存!"
1154
 
1155
  #: ../classes/storage_model/comment.php:13
1156
  msgid "Comments"
1163
  #: ../classes/storage_model/user.php:13
1164
  msgid "Users"
1165
  msgstr "用户"
1166
+
1167
+ #: ../classes/upgrade.php:45
1168
+ msgid "Upgrade"
1169
+ msgstr "升级"
1170
+
1171
+ #: ../classes/upgrade.php:90
1172
+ msgid "requires a database upgrade"
1173
+ msgstr "需要升级数据库"
1174
+
1175
+ #: ../classes/upgrade.php:93
1176
+ msgid "why?"
1177
+ msgstr "为什么?"
1178
+
1179
+ #: ../classes/upgrade.php:94
1180
+ msgid "Please"
1181
+ msgstr "请"
1182
+
1183
+ #: ../classes/upgrade.php:95
1184
+ msgid "backup your database"
1185
+ msgstr "备份数据库"
1186
+
1187
+ #: ../classes/upgrade.php:96
1188
+ msgid "then click"
1189
+ msgstr "然后点击"
1190
+
1191
+ #: ../classes/upgrade.php:304
1192
+ msgid "Migrating Column Settings"
1193
+ msgstr "迁移列设置"
1194
+
1195
+ #: ../classes/upgrade.php:340
1196
+ msgid "No Upgrade Required"
1197
+ msgstr "无需升级"
1198
+
1199
+ #: ../classes/upgrade.php:341
1200
+ msgid "Return to welcome screen."
1201
+ msgstr "返回欢迎界面"
1202
+
1203
+ #: ../classes/upgrade.php:359
1204
+ msgid "Upgrade Complete!"
1205
+ msgstr "升级完成!"
1206
+
1207
+ #: ../classes/upgrade.php:359
1208
+ msgid "Return to settings."
1209
+ msgstr "返回设置。"
1210
+
1211
+ #: ../classes/upgrade.php:360
1212
+ msgid "Error"
1213
+ msgstr "错误"
1214
+
1215
+ #: ../classes/upgrade.php:361
1216
+ msgid ""
1217
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1218
+ "on the support forum."
1219
+ msgstr "抱歉,升级过程中出错了,请在论坛中反馈。"
1220
+
1221
+ #: ../codepress-admin-columns.php:447
1222
+ msgid "Edit columns"
1223
+ msgstr "编辑列"
1224
+
1225
+ #~ msgid "Publish"
1226
+ #~ msgstr "发布"
languages/cpac.mo CHANGED
Binary file
languages/cpac.po CHANGED
@@ -2,1185 +2,1186 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-14 16:56+0100\n"
6
- "PO-Revision-Date: 2013-11-14 16:56+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
  "Language-Team: Codepress <info@codepress.nl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.5.7\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
- #: ../codepress-admin-columns.php:236 ../classes/settings.php:536
20
- msgid "Settings"
21
- msgstr ""
22
-
23
- #: ../codepress-admin-columns.php:357
24
- msgid "Edit columns"
25
- msgstr ""
26
-
27
- #: ../classes/column.php:489
28
  msgid "Thumbnail"
29
  msgstr ""
30
 
31
- #: ../classes/column.php:490
32
  msgid "Medium"
33
  msgstr ""
34
 
35
- #: ../classes/column.php:491
36
  msgid "Large"
37
  msgstr ""
38
 
39
- #: ../classes/column.php:492
40
  msgid "Full"
41
  msgstr ""
42
 
43
- #: ../classes/column.php:784
44
  msgid "Date Format"
45
  msgstr ""
46
 
47
- #: ../classes/column.php:785
48
  msgid "This will determine how the date will be displayed."
49
  msgstr ""
50
 
51
- #: ../classes/column.php:791
52
  msgid "Example:"
53
  msgstr ""
54
 
55
- #: ../classes/column.php:793
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:794
63
  msgid "Documentation on date and time formatting."
64
  msgstr ""
65
 
66
- #: ../classes/column.php:811
67
  msgid "Excerpt length"
68
  msgstr ""
69
 
70
- #: ../classes/column.php:812
71
  msgid "Number of words"
72
  msgstr ""
73
 
74
- #: ../classes/column.php:834
75
  msgid "Preview size"
76
  msgstr ""
77
 
78
- #: ../classes/column.php:851 ../classes/column.php:908
79
  msgid "Custom"
80
  msgstr ""
81
 
82
- #: ../classes/column.php:854
83
  msgid "width"
84
  msgstr ""
85
 
86
- #: ../classes/column.php:857
87
  msgid "height"
88
  msgstr ""
89
 
90
- #: ../classes/column.php:909 ../classes/settings.php:222
91
- #: ../classes/column/custom-field.php:70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgid "Default"
93
  msgstr ""
94
 
95
- #: ../classes/column.php:934 ../classes/column.php:996
 
 
 
 
 
 
96
  #: ../classes/column/user/actions.php:74
97
  msgid "Remove"
98
  msgstr ""
99
 
100
- #: ../classes/column.php:953
101
  msgid "Type"
102
  msgstr ""
103
 
104
- #: ../classes/column.php:953
105
  msgid "Choose a column type."
106
  msgstr ""
107
 
108
- #: ../classes/column.php:953 ../classes/column/comment/ID.php:12
109
  #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
110
  #: ../classes/column/post/ID.php:12
111
  msgid "ID"
112
  msgstr ""
113
 
114
- #: ../classes/column.php:963
115
  msgid "Label"
116
  msgstr ""
117
 
118
- #: ../classes/column.php:963
119
  msgid "This is the name which will appear as the column header."
120
  msgstr ""
121
 
122
- #: ../classes/column.php:970 ../classes/column/media/width.php:12
123
  msgid "Width"
124
  msgstr ""
125
 
126
- #: ../classes/column.php:972 ../classes/column.php:973
127
  msgid "default"
128
  msgstr ""
129
 
130
- #: ../classes/column.php:997
131
- msgid "type"
132
- msgstr ""
133
-
134
- #: ../classes/settings.php:64
135
- msgid "Admin Columns Settings"
136
- msgstr ""
137
-
138
- #: ../classes/settings.php:64 ../classes/settings.php:535
139
- #: ../classes/upgrade.php:89
140
- msgid "Admin Columns"
141
- msgstr ""
142
-
143
- #: ../classes/settings.php:126
144
- #, php-format
145
- msgid "%s column is already present and can not be duplicated."
146
  msgstr ""
147
 
148
- #: ../classes/settings.php:182
149
- msgid "Default settings succesfully restored."
 
150
  msgstr ""
151
 
152
- #: ../classes/settings.php:200 ../classes/settings.php:457
153
- msgid "Overview"
 
154
  msgstr ""
155
 
156
- #: ../classes/settings.php:203
157
- msgid ""
158
- "This plugin is for adding and removing additional columns to the "
159
- "administration screens for post(types), pages, media library, comments, "
160
- "links and users. Change the column's label and reorder them."
161
  msgstr ""
162
 
163
- #: ../classes/settings.php:206
164
- msgid "Basics"
 
165
  msgstr ""
166
 
167
- #: ../classes/settings.php:208
168
- msgid "Change order"
 
169
  msgstr ""
170
 
171
- #: ../classes/settings.php:209
172
- msgid ""
173
- "By dragging the columns you can change the order which they will appear in."
174
  msgstr ""
175
 
176
- #: ../classes/settings.php:210
177
- msgid "Change label"
178
  msgstr ""
179
 
180
- #: ../classes/settings.php:211
181
- msgid ""
182
- "By clicking on the triangle you will see the column options. Here you can "
183
- "change each label of the columns heading."
184
  msgstr ""
185
 
186
- #: ../classes/settings.php:212
187
- msgid "Change column width"
188
  msgstr ""
189
 
190
- #: ../classes/settings.php:213
191
- msgid ""
192
- "By clicking on the triangle you will see the column options. By using the "
193
- "draggable slider you can set the width of the columns in percentages."
194
  msgstr ""
195
 
196
- #: ../classes/settings.php:217 ../classes/column/custom-field.php:16
197
- #: ../classes/column/custom-field.php:379
198
- msgid "Custom Field"
199
  msgstr ""
200
 
201
- #: ../classes/settings.php:219
202
- msgid "'Custom Field' column"
203
  msgstr ""
204
 
205
- #: ../classes/settings.php:220
206
- msgid ""
207
- "The custom field colum uses the custom fields from posts and users. There "
208
- "are 10 types which you can set."
209
  msgstr ""
210
 
211
- #: ../classes/settings.php:222
212
- msgid ""
213
- "Value: Can be either a string or array. Arrays will be flattened and values "
214
- "are seperated by a ',' comma."
215
  msgstr ""
216
 
217
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:76
218
- #: ../classes/column/link/image.php:12
219
- msgid "Image"
 
220
  msgstr ""
221
 
222
- #: ../classes/settings.php:223
223
- msgid ""
224
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
225
- "comma )."
226
  msgstr ""
227
 
228
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:75
229
  #: ../classes/column/comment/excerpt.php:13
230
- #: ../classes/column/post/excerpt.php:13
 
231
  msgid "Excerpt"
232
  msgstr ""
233
 
234
- #: ../classes/settings.php:224
235
- msgid "Value: This will show the first 20 words of the Post content."
236
  msgstr ""
237
 
238
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:78
239
- msgid "Multiple Values"
 
240
  msgstr ""
241
 
242
- #: ../classes/settings.php:225
243
- msgid ""
244
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
245
  msgstr ""
246
 
247
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:79
248
- msgid "Numeric"
249
  msgstr ""
250
 
251
- #: ../classes/settings.php:226
252
- msgid ""
253
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
254
- "for sorting, so you can sort your posts on numeric (custom field) values."
255
  msgstr ""
256
 
257
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:74
258
- #: ../classes/column/comment/date.php:12
259
- msgid "Date"
260
  msgstr ""
261
 
262
- #: ../classes/settings.php:227
263
- #, php-format
264
- msgid ""
265
- "Value: Can be unix time stamp or a date format as described in the <a "
266
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
267
- "href='%s'>general settings</a> page."
268
  msgstr ""
269
 
270
- #: ../classes/settings.php:228
271
- msgid "Post Titles"
272
  msgstr ""
273
 
274
- #: ../classes/settings.php:228
275
- msgid "Value: can be one or more Post ID's (seperated by ',')."
276
  msgstr ""
277
 
278
- #: ../classes/settings.php:229
279
- msgid "Usernames"
280
  msgstr ""
281
 
282
- #: ../classes/settings.php:229
283
- msgid "Value: can be one or more User ID's (seperated by ',')."
284
  msgstr ""
285
 
286
- #: ../classes/settings.php:230
287
- msgid "Checkmark"
288
  msgstr ""
289
 
290
- #: ../classes/settings.php:230
291
- msgid "Value: should be a 1 (one) or 0 (zero)."
292
  msgstr ""
293
 
294
- #: ../classes/settings.php:231 ../classes/column/custom-field.php:72
295
- msgid "Color"
296
  msgstr ""
297
 
298
- #: ../classes/settings.php:231
299
- msgid "Value: hex value color, such as #808080."
300
  msgstr ""
301
 
302
- #: ../classes/settings.php:232 ../classes/column/custom-field.php:73
303
- msgid "Counter"
304
  msgstr ""
305
 
306
- #: ../classes/settings.php:232
 
307
  msgid ""
308
- "Value: Can be either a string or array. This will display a count of the "
309
- "number of times the meta key is used by the item."
310
  msgstr ""
311
 
312
- #: ../classes/settings.php:377
313
- msgid "Welcome to Admin Columns"
314
  msgstr ""
315
 
316
- #: ../classes/settings.php:380
317
- msgid "Thank you for updating to the latest version!"
 
 
318
  msgstr ""
319
 
320
- #: ../classes/settings.php:381
321
- msgid ""
322
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
323
- "like it."
324
  msgstr ""
325
 
326
- #: ../classes/settings.php:386
327
- msgid "What’s New"
328
  msgstr ""
329
 
330
- #: ../classes/settings.php:387
331
- msgid "Changelog"
332
  msgstr ""
333
 
334
- #: ../classes/settings.php:389
335
- msgid "Download Addons"
336
  msgstr ""
337
 
338
- #: ../classes/settings.php:395
339
- msgid "Addons"
340
  msgstr ""
341
 
342
- #: ../classes/settings.php:397
343
- msgid ""
344
- "Addons are now activated by downloading and installing individual plugins. "
345
- "Although these plugins will not be hosted on the wordpress.org repository, "
346
- "each Add-on will continue to receive updates in the usual way."
347
  msgstr ""
348
 
349
- #: ../classes/settings.php:400
350
- msgid ""
351
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
352
  msgstr ""
353
 
354
- #: ../classes/settings.php:403
355
- msgid "Addons are seperate plugins which need to be downloaded."
356
  msgstr ""
357
 
358
- #: ../classes/settings.php:403
359
- msgid "Download your Addons"
 
360
  msgstr ""
361
 
362
- #: ../classes/settings.php:409
363
- msgid "This website does not use add-ons"
364
  msgstr ""
365
 
366
- #: ../classes/settings.php:409
367
- msgid "See our website for the Pro-addon."
368
  msgstr ""
369
 
370
- #: ../classes/settings.php:416
371
- msgid "Important"
372
  msgstr ""
373
 
374
- #: ../classes/settings.php:418
375
- msgid "Database Changes"
376
  msgstr ""
377
 
378
- #: ../classes/settings.php:419
379
- msgid ""
380
- "The database has been changed between versions 1 and 2. But we made sure you "
381
- "can still roll back to version 1x without any issues."
382
  msgstr ""
383
 
384
- #: ../classes/settings.php:422
385
- msgid "Make sure you backup your database and then click"
386
  msgstr ""
387
 
388
- #: ../classes/settings.php:422 ../classes/upgrade.php:97
389
- msgid "Upgrade Database"
390
  msgstr ""
391
 
392
- #: ../classes/settings.php:425
393
- msgid "Potential Issues"
394
  msgstr ""
395
 
396
- #: ../classes/settings.php:426
397
- msgid ""
398
- "Do to the sizable refactoring the code, surounding Addons and action/"
399
- "filters, your website may not operate correctly. It is important that you "
400
- "read the full"
401
  msgstr ""
402
 
403
- #: ../classes/settings.php:426
404
- msgid "Migrating from v1 to v2"
405
  msgstr ""
406
 
407
- #: ../classes/settings.php:426
408
- msgid "guide to view the full list of changes."
409
  msgstr ""
410
 
411
- #: ../classes/settings.php:426
412
- #, php-format
413
- msgid ""
414
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
415
- "can fix it in the next release."
416
- msgstr ""
417
-
418
- #: ../classes/settings.php:429
419
- msgid "Important!"
420
  msgstr ""
421
 
422
- #: ../classes/settings.php:429
423
- msgid ""
424
- "If you updated the Admin Columns plugin without prior knowledge of such "
425
- "changes, Please roll back to the latest"
426
  msgstr ""
427
 
428
- #: ../classes/settings.php:429
429
- msgid "version 1"
430
  msgstr ""
431
 
432
- #: ../classes/settings.php:429
433
- msgid "of this plugin."
434
  msgstr ""
435
 
436
- #: ../classes/settings.php:435
437
- msgid "Changelog for"
438
  msgstr ""
439
 
440
- #: ../classes/settings.php:450
441
- msgid "Learn more"
442
  msgstr ""
443
 
444
- #: ../classes/settings.php:459
445
- msgid ""
446
- "New to v2, all Addons act as separate plugins which need to be individually "
447
- "downloaded, installed and updated."
448
  msgstr ""
449
 
450
- #: ../classes/settings.php:460
451
- msgid ""
452
- "This page will assist you in downloading and installing each available Addon."
453
  msgstr ""
454
 
455
- #: ../classes/settings.php:461
456
- msgid "Available Addons"
457
  msgstr ""
458
 
459
- #: ../classes/settings.php:466
460
- msgid "Name"
 
 
461
  msgstr ""
462
 
463
- #: ../classes/settings.php:467 ../classes/settings.php:475
464
- msgid "Download"
465
  msgstr ""
466
 
467
- #: ../classes/settings.php:473
468
- msgid "Pro Add-on (includes Sortorder add-on)"
 
469
  msgstr ""
470
 
471
- #: ../classes/settings.php:483
472
- msgid "Installation"
473
  msgstr ""
474
 
475
- #: ../classes/settings.php:485
476
- msgid "For each Add-on available, please perform the following:"
 
477
  msgstr ""
478
 
479
- #: ../classes/settings.php:487
480
- msgid "Download the Addon plugin (.zip file) to your desktop"
481
  msgstr ""
482
 
483
- #: ../classes/settings.php:488
484
- msgid "Navigate to"
485
  msgstr ""
486
 
487
- #: ../classes/settings.php:488
488
- msgid "Plugins > Add New > Upload"
489
  msgstr ""
490
 
491
- #: ../classes/settings.php:489
492
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
493
  msgstr ""
494
 
495
- #: ../classes/settings.php:490
496
- msgid ""
497
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
498
- "link"
499
  msgstr ""
500
 
501
- #: ../classes/settings.php:491
502
- msgid "The Add-on is now installed and activated!"
503
  msgstr ""
504
 
505
- #: ../classes/settings.php:492
506
- #, php-format
507
- msgid ""
508
- "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
509
  msgstr ""
510
 
511
- #: ../classes/settings.php:502
512
- msgid "Start using Admin Columns"
 
513
  msgstr ""
514
 
515
- #: ../classes/settings.php:577
516
- msgid "Store settings"
517
  msgstr ""
518
 
519
- #: ../classes/settings.php:581
520
- msgid "Update"
521
  msgstr ""
522
 
523
- #: ../classes/settings.php:581
524
- msgid "Publish"
525
  msgstr ""
526
 
527
- #: ../classes/settings.php:585
528
- #, php-format
529
- msgid ""
530
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
531
- "\\' to delete, \\'Cancel\\' to stop"
532
  msgstr ""
533
 
534
- #: ../classes/settings.php:586 ../classes/column/comment/actions.php:86
535
- #: ../classes/column/post/actions.php:53
536
- msgid "Restore"
537
  msgstr ""
538
 
539
- #: ../classes/settings.php:586
540
- msgid "columns"
541
  msgstr ""
542
 
543
- #: ../classes/settings.php:599
544
- msgid "Get the Pro Add-on"
545
  msgstr ""
546
 
547
- #: ../classes/settings.php:603
548
- msgid "Add Sorting"
549
  msgstr ""
550
 
551
- #: ../classes/settings.php:604
552
- msgid "Add Filtering"
553
  msgstr ""
554
 
555
- #: ../classes/settings.php:605
556
- msgid "Add Import/Export"
557
  msgstr ""
558
 
559
- #: ../classes/settings.php:608
560
- #, php-format
561
- msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
562
  msgstr ""
563
 
564
- #: ../classes/settings.php:617
565
- msgid "Subscribe to receive news &amp; updates below."
566
  msgstr ""
567
 
568
- #: ../classes/settings.php:620 ../classes/column/post/author-name.php:35
569
- msgid "First Name"
570
  msgstr ""
571
 
572
- #: ../classes/settings.php:624
573
- msgid "Your Email"
574
  msgstr ""
575
 
576
- #: ../classes/settings.php:635
577
- msgid "Support"
578
  msgstr ""
579
 
580
- #: ../classes/settings.php:638
581
- msgid "Check the <strong>Help</strong> section in the top-right screen."
582
  msgstr ""
583
 
584
- #: ../classes/settings.php:641
585
- #, php-format
586
- msgid ""
587
- "For full documentation, bug reports, feature suggestions and other tips <a "
588
- "href='%s'>visit the Admin Columns website</a>"
589
  msgstr ""
590
 
591
- #: ../classes/settings.php:669
592
- msgid "Drag and drop to reorder"
593
  msgstr ""
594
 
595
- #: ../classes/settings.php:672
596
- msgid "Add Column"
597
  msgstr ""
598
 
599
- #: ../classes/settings.php:720
600
- msgid "General Settings"
601
  msgstr ""
602
 
603
- #: ../classes/settings.php:721
604
- msgid "Customize your Admin Columns settings."
605
  msgstr ""
606
 
607
- #: ../classes/settings.php:734
608
- msgid "Show hidden custom fields. Default is <code>off</code>."
609
  msgstr ""
610
 
611
- #: ../classes/settings.php:740
612
- msgid ""
613
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
614
  msgstr ""
615
 
616
- #: ../classes/settings.php:747
617
- msgid "Save"
618
  msgstr ""
619
 
620
- #: ../classes/settings.php:787
621
- msgid "Restore Settings"
622
  msgstr ""
623
 
624
- #: ../classes/settings.php:788
625
- msgid "This will delete all column settings and restore the default settings."
626
  msgstr ""
627
 
628
- #: ../classes/settings.php:794
629
- msgid "Restore default settings"
630
  msgstr ""
631
 
632
- #: ../classes/settings.php:794
633
- msgid ""
634
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
635
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
636
  msgstr ""
637
 
638
- #: ../classes/storage_model.php:181
639
- msgid "settings succesfully restored."
640
  msgstr ""
641
 
642
- #: ../classes/storage_model.php:198
643
- msgid "No columns settings available."
644
  msgstr ""
645
 
646
- #: ../classes/storage_model.php:221
647
- #, php-format
648
- msgid "You are trying to store the same settings for %s."
649
  msgstr ""
650
 
651
- #: ../classes/storage_model.php:225
652
- #, php-format
653
- msgid "Settings for %s updated succesfully."
654
  msgstr ""
655
 
656
- #: ../classes/storage_model.php:604 ../classes/column/post/actions.php:64
657
- msgid "View"
658
  msgstr ""
659
 
660
- #: ../classes/upgrade.php:45
661
- msgid "Upgrade"
662
  msgstr ""
663
 
664
- #: ../classes/upgrade.php:90
665
- msgid "requires a database upgrade"
666
  msgstr ""
667
 
668
- #: ../classes/upgrade.php:93
669
- msgid "why?"
670
  msgstr ""
671
 
672
- #: ../classes/upgrade.php:94
673
- msgid "Please"
674
  msgstr ""
675
 
676
- #: ../classes/upgrade.php:95
677
- msgid "backup your database"
678
  msgstr ""
679
 
680
- #: ../classes/upgrade.php:96
681
- msgid "then click"
 
682
  msgstr ""
683
 
684
- #: ../classes/upgrade.php:304
685
- msgid "Migrating Column Settings"
 
686
  msgstr ""
687
 
688
- #: ../classes/upgrade.php:340
689
- msgid "No Upgrade Required"
690
  msgstr ""
691
 
692
- #: ../classes/upgrade.php:341
693
- msgid "Return to welcome screen."
694
  msgstr ""
695
 
696
- #: ../classes/upgrade.php:359
697
- msgid "Upgrade Complete!"
 
 
 
698
  msgstr ""
699
 
700
- #: ../classes/upgrade.php:359
701
- msgid "Return to settings."
702
  msgstr ""
703
 
704
- #: ../classes/upgrade.php:360
705
- msgid "Error"
706
  msgstr ""
707
 
708
- #: ../classes/upgrade.php:361
709
  msgid ""
710
- "Sorry. Something went wrong during the upgrade process. Please report this "
711
- "on the support forum."
712
  msgstr ""
713
 
714
- #: ../classes/column/custom-field.php:71
715
- msgid "Checkmark (true/false)"
716
  msgstr ""
717
 
718
- #: ../classes/column/custom-field.php:77 ../classes/storage_model/media.php:13
719
- msgid "Media Library"
 
 
720
  msgstr ""
721
 
722
- #: ../classes/column/custom-field.php:80
723
- msgid "Post Title (Post ID's)"
724
  msgstr ""
725
 
726
- #: ../classes/column/custom-field.php:81
727
- msgid "Username (User ID's)"
 
 
728
  msgstr ""
729
 
730
- #: ../classes/column/custom-field.php:379
731
- msgid "Select your custom field."
732
  msgstr ""
733
 
734
- #: ../classes/column/custom-field.php:389
735
- msgid "No custom fields available."
 
 
736
  msgstr ""
737
 
738
- #: ../classes/column/custom-field.php:396
739
- msgid "Field Type"
 
 
740
  msgstr ""
741
 
742
- #: ../classes/column/custom-field.php:396
743
- msgid "This will determine how the value will be displayed."
 
 
744
  msgstr ""
745
 
746
- #: ../classes/column/custom-field.php:439
747
- msgid "Before"
748
  msgstr ""
749
 
750
- #: ../classes/column/custom-field.php:439
751
- msgid "This text will appear before the custom field value."
 
752
  msgstr ""
753
 
754
- #: ../classes/column/custom-field.php:445
755
- msgid "After"
 
 
756
  msgstr ""
757
 
758
- #: ../classes/column/custom-field.php:445
759
- msgid "This text will appear after the custom field value."
 
 
 
 
760
  msgstr ""
761
 
762
- #: ../classes/column/comment/actions.php:14
763
- #: ../classes/column/link/actions.php:14
764
- #: ../classes/column/media/actions.php:14
765
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
766
- msgid "Actions"
767
  msgstr ""
768
 
769
- #: ../classes/column/comment/actions.php:73
770
- #: ../classes/column/comment/actions.php:78
771
- msgid "Unapprove"
772
  msgstr ""
773
 
774
- #: ../classes/column/comment/actions.php:75
775
- #: ../classes/column/comment/actions.php:77
776
- msgid "Approve"
777
  msgstr ""
778
 
779
- #: ../classes/column/comment/actions.php:90
780
- #: ../classes/column/post/actions.php:57
781
- msgid "Delete Permanently"
782
  msgstr ""
783
 
784
- #: ../classes/column/comment/actions.php:96
785
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
786
- #: ../classes/column/user/actions.php:66
787
- msgid "Edit"
788
  msgstr ""
789
 
790
- #: ../classes/column/comment/actions.php:97
791
- #: ../classes/column/post/actions.php:49
792
- msgid "Quick&nbsp;Edit"
793
  msgstr ""
794
 
795
- #: ../classes/column/comment/actions.php:98
796
- msgid "Reply"
797
  msgstr ""
798
 
799
- #: ../classes/column/comment/agent.php:12
800
- msgid "Agent"
 
 
801
  msgstr ""
802
 
803
- #: ../classes/column/comment/approved.php:12
804
- #: ../classes/column/post/comment-count.php:31
805
- msgid "Approved"
806
  msgstr ""
807
 
808
- #: ../classes/column/comment/author-avatar.php:12
809
- msgid "Avatar"
810
  msgstr ""
811
 
812
- #: ../classes/column/comment/author-email.php:12
813
- msgid "Author email"
 
 
814
  msgstr ""
815
 
816
- #: ../classes/column/comment/author-ip.php:12
817
- msgid "Author IP"
818
  msgstr ""
819
 
820
- #: ../classes/column/comment/author-url.php:12
821
- msgid "Author url"
822
  msgstr ""
823
 
824
- #: ../classes/column/comment/author.php:12
825
- msgid "Author"
826
  msgstr ""
827
 
828
- #: ../classes/column/comment/date-gmt.php:12
829
- msgid "Date GMT"
830
  msgstr ""
831
 
832
- #: ../classes/column/comment/date-gmt.php:25
833
- #: ../classes/column/comment/date.php:25
834
- #, php-format
835
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
 
836
  msgstr ""
837
 
838
- #: ../classes/column/comment/reply-to.php:12
839
- msgid "In Reply To"
 
840
  msgstr ""
841
 
842
- #: ../classes/column/comment/word-count.php:12
843
- #: ../classes/column/post/word-count.php:12
844
- msgid "Word count"
845
  msgstr ""
846
 
847
- #: ../classes/column/link/actions.php:46
848
- #, php-format
849
- msgid ""
850
- "You are about to delete this link '%s'\n"
851
- " 'Cancel' to stop, 'OK' to delete."
852
  msgstr ""
853
 
854
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
855
- msgid "Delete"
856
  msgstr ""
857
 
858
- #: ../classes/column/link/description.php:12
859
- #: ../classes/column/media/description.php:12
860
- #: ../classes/column/user/description.php:14
861
- msgid "Description"
862
  msgstr ""
863
 
864
- #: ../classes/column/link/length.php:12
865
- msgid "Length"
866
  msgstr ""
867
 
868
- #: ../classes/column/link/notes.php:13
869
- msgid "Notes"
870
  msgstr ""
871
 
872
- #: ../classes/column/link/owner.php:12
873
- msgid "Owner"
 
 
874
  msgstr ""
875
 
876
- #: ../classes/column/link/rss.php:12
877
- msgid "Rss"
878
  msgstr ""
879
 
880
- #: ../classes/column/link/target.php:12
881
- msgid "Target"
882
  msgstr ""
883
 
884
- #: ../classes/column/media/alternate-text.php:12
885
- msgid "Alt"
886
  msgstr ""
887
 
888
- #: ../classes/column/media/available-sizes.php:14
889
- msgid "Available Sizes"
 
 
 
890
  msgstr ""
891
 
892
- #: ../classes/column/media/available-sizes.php:37
893
- msgid "full size"
894
  msgstr ""
895
 
896
- #: ../classes/column/media/caption.php:12
897
- #: ../classes/column/media/exif-data.php:36
898
- msgid "Caption"
899
  msgstr ""
900
 
901
- #: ../classes/column/media/dimensions.php:12
902
- msgid "Dimensions"
 
 
 
903
  msgstr ""
904
 
905
- #: ../classes/column/media/exif-data.php:12
906
- msgid "EXIF data"
907
  msgstr ""
908
 
909
- #: ../classes/column/media/exif-data.php:33
910
- msgid "Aperture"
 
 
911
  msgstr ""
912
 
913
- #: ../classes/column/media/exif-data.php:34
914
- msgid "Credit"
915
  msgstr ""
916
 
917
- #: ../classes/column/media/exif-data.php:35
918
- msgid "Camera"
919
  msgstr ""
920
 
921
- #: ../classes/column/media/exif-data.php:37
922
- msgid "Timestamp"
923
  msgstr ""
924
 
925
- #: ../classes/column/media/exif-data.php:38
926
- msgid "Copyright EXIF"
927
  msgstr ""
928
 
929
- #: ../classes/column/media/exif-data.php:39
930
- msgid "Focal Length"
 
 
931
  msgstr ""
932
 
933
- #: ../classes/column/media/exif-data.php:40
934
- msgid "ISO"
 
935
  msgstr ""
936
 
937
- #: ../classes/column/media/exif-data.php:41
938
- msgid "Shutter Speed"
939
  msgstr ""
940
 
941
- #: ../classes/column/media/exif-data.php:42
942
- msgid "Title"
943
  msgstr ""
944
 
945
- #: ../classes/column/media/file-name.php:12
946
- msgid "File name"
947
  msgstr ""
948
 
949
- #: ../classes/column/media/file-size.php:12
950
- msgid "File size"
951
  msgstr ""
952
 
953
- #: ../classes/column/media/full-path.php:12
954
- msgid "Full path"
955
  msgstr ""
956
 
957
- #: ../classes/column/media/height.php:12
958
- msgid "Height"
959
  msgstr ""
960
 
961
- #: ../classes/column/media/mime-type.php:12
962
- msgid "Mime type"
963
  msgstr ""
964
 
965
- #: ../classes/column/post/actions.php:48
966
- msgid "Edit this item"
967
  msgstr ""
968
 
969
- #: ../classes/column/post/actions.php:49
970
- msgid "Edit this item inline"
971
  msgstr ""
972
 
973
- #: ../classes/column/post/actions.php:53
974
- msgid "Restore this item from the Trash"
975
  msgstr ""
976
 
977
- #: ../classes/column/post/actions.php:55
978
- msgid "Move this item to the Trash"
 
 
979
  msgstr ""
980
 
981
- #: ../classes/column/post/actions.php:55
982
- #: ../classes/column/post/comment-count.php:34
983
- #: ../classes/column/post/status.php:37
984
- msgid "Trash"
985
  msgstr ""
986
 
987
- #: ../classes/column/post/actions.php:57
988
- msgid "Delete this item permanently"
 
 
989
  msgstr ""
990
 
991
- #: ../classes/column/post/actions.php:62
992
- #, php-format
993
- msgid "Preview &#8220;%s&#8221;"
994
  msgstr ""
995
 
996
- #: ../classes/column/post/actions.php:62
997
- msgid "Preview"
998
  msgstr ""
999
 
1000
- #: ../classes/column/post/actions.php:64
1001
- #, php-format
1002
- msgid "View &#8220;%s&#8221;"
1003
  msgstr ""
1004
 
1005
- #: ../classes/column/post/attachment-count.php:12
1006
- msgid "No. of Attachments"
1007
  msgstr ""
1008
 
1009
- #: ../classes/column/post/attachment.php:12
1010
- msgid "Attachment"
 
1011
  msgstr ""
1012
 
1013
- #: ../classes/column/post/author-name.php:12
1014
- msgid "Display Author As"
1015
  msgstr ""
1016
 
1017
- #: ../classes/column/post/author-name.php:34
1018
- msgid "Display Name"
1019
  msgstr ""
1020
 
1021
- #: ../classes/column/post/author-name.php:36
1022
- msgid "Last Name"
1023
  msgstr ""
1024
 
1025
- #: ../classes/column/post/author-name.php:37
1026
- #: ../classes/column/user/nickname.php:14
1027
- msgid "Nickname"
1028
  msgstr ""
1029
 
1030
- #: ../classes/column/post/author-name.php:38
1031
- msgid "User Login"
 
 
1032
  msgstr ""
1033
 
1034
- #: ../classes/column/post/author-name.php:39
1035
- msgid "User Email"
1036
  msgstr ""
1037
 
1038
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
1039
- msgid "User ID"
1040
  msgstr ""
1041
 
1042
- #: ../classes/column/post/author-name.php:41
1043
- msgid "First and Last Name"
1044
  msgstr ""
1045
 
1046
- #: ../classes/column/post/author-name.php:116
1047
- msgid "This is the format of the author name."
1048
  msgstr ""
1049
 
1050
- #: ../classes/column/post/before-moretag.php:14
1051
- msgid "Before More Tag"
1052
  msgstr ""
1053
 
1054
- #: ../classes/column/post/comment-count.php:14
1055
- msgid "Comment count"
1056
  msgstr ""
1057
 
1058
- #: ../classes/column/post/comment-count.php:30
1059
- msgid "Total"
 
 
 
1060
  msgstr ""
1061
 
1062
- #: ../classes/column/post/comment-count.php:32
1063
- msgid "Pending"
1064
  msgstr ""
1065
 
1066
- #: ../classes/column/post/comment-count.php:33
1067
- msgid "Spam"
1068
  msgstr ""
1069
 
1070
- #: ../classes/column/post/comment-count.php:95
1071
- #: ../classes/column/post/comment-status.php:14
1072
- msgid "Comment status"
1073
  msgstr ""
1074
 
1075
- #: ../classes/column/post/comment-count.php:95
1076
- msgid "Select which comment status you like to display."
1077
  msgstr ""
1078
 
1079
- #: ../classes/column/post/featured-image.php:14
1080
- msgid "Featured Image"
1081
  msgstr ""
1082
 
1083
- #: ../classes/column/post/formats.php:14
1084
- msgid "Post Format"
 
1085
  msgstr ""
1086
 
1087
- #: ../classes/column/post/modified.php:14
1088
- msgid "Last modified"
1089
  msgstr ""
1090
 
1091
- #: ../classes/column/post/order.php:14
1092
- msgid "Page Order"
1093
  msgstr ""
1094
 
1095
- #: ../classes/column/post/page-template.php:12
1096
- msgid "Page Template"
 
 
 
1097
  msgstr ""
1098
 
1099
- #: ../classes/column/post/parent.php:12
1100
- msgid "Parent"
1101
  msgstr ""
1102
 
1103
- #: ../classes/column/post/ping-status.php:14
1104
- msgid "Ping status"
1105
  msgstr ""
1106
 
1107
- #: ../classes/column/post/roles.php:14
1108
- msgid "Roles"
1109
  msgstr ""
1110
 
1111
- #: ../classes/column/post/slug.php:12
1112
- msgid "Slug"
1113
  msgstr ""
1114
 
1115
- #: ../classes/column/post/status.php:14
1116
- msgid "Status"
 
1117
  msgstr ""
1118
 
1119
- #: ../classes/column/post/status.php:32
1120
- msgid "Published"
 
1121
  msgstr ""
1122
 
1123
- #: ../classes/column/post/status.php:33
1124
- msgid "Draft"
1125
  msgstr ""
1126
 
1127
- #: ../classes/column/post/status.php:34
1128
- msgid "Scheduled"
1129
  msgstr ""
1130
 
1131
- #: ../classes/column/post/status.php:35
1132
- msgid "Private"
1133
  msgstr ""
1134
 
1135
- #: ../classes/column/post/status.php:36
1136
- msgid "Pending Review"
1137
  msgstr ""
1138
 
1139
- #: ../classes/column/post/sticky.php:14
1140
- msgid "Sticky"
1141
  msgstr ""
1142
 
1143
- #: ../classes/column/post/taxonomy.php:12
1144
- #: ../classes/column/post/taxonomy.php:74
1145
- msgid "Taxonomy"
1146
  msgstr ""
1147
 
1148
- #: ../classes/column/user/comment-count.php:14
1149
- msgid "Comment Count"
1150
  msgstr ""
1151
 
1152
- #: ../classes/column/user/first-name.php:14
1153
- msgid "First name"
1154
  msgstr ""
1155
 
1156
- #: ../classes/column/user/last-name.php:14
1157
- msgid "Last name"
1158
  msgstr ""
1159
 
1160
- #: ../classes/column/user/post-count.php:14
1161
- msgid "Post Count"
1162
  msgstr ""
1163
 
1164
- #: ../classes/column/user/post-count.php:99
1165
- msgid "Post Type"
1166
  msgstr ""
1167
 
1168
- #: ../classes/column/user/registered.php:14
1169
- msgid "Registered"
1170
  msgstr ""
1171
 
1172
- #: ../classes/column/user/url.php:14
1173
- msgid "Url"
1174
  msgstr ""
1175
 
1176
- #: ../classes/storage_model/comment.php:13
1177
- msgid "Comments"
1178
  msgstr ""
1179
 
1180
- #: ../classes/storage_model/link.php:13
1181
- msgid "Links"
1182
  msgstr ""
1183
 
1184
- #: ../classes/storage_model/user.php:13
1185
- msgid "Users"
 
 
 
 
 
 
1186
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-03-21 11:43+0100\n"
6
+ "PO-Revision-Date: 2014-03-21 11:43+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
  "Language-Team: Codepress <info@codepress.nl>\n"
9
+ "Language: en_GB\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.6.4\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
+ #: ../classes/column.php:497
 
 
 
 
 
 
 
 
22
  msgid "Thumbnail"
23
  msgstr ""
24
 
25
+ #: ../classes/column.php:498
26
  msgid "Medium"
27
  msgstr ""
28
 
29
+ #: ../classes/column.php:499
30
  msgid "Large"
31
  msgstr ""
32
 
33
+ #: ../classes/column.php:500
34
  msgid "Full"
35
  msgstr ""
36
 
37
+ #: ../classes/column.php:792
38
  msgid "Date Format"
39
  msgstr ""
40
 
41
+ #: ../classes/column.php:793
42
  msgid "This will determine how the date will be displayed."
43
  msgstr ""
44
 
45
+ #: ../classes/column.php:799
46
  msgid "Example:"
47
  msgstr ""
48
 
49
+ #: ../classes/column.php:801
50
  #, php-format
51
  msgid ""
52
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
53
  "date format here</a>."
54
  msgstr ""
55
 
56
+ #: ../classes/column.php:802
57
  msgid "Documentation on date and time formatting."
58
  msgstr ""
59
 
60
+ #: ../classes/column.php:820
61
  msgid "Excerpt length"
62
  msgstr ""
63
 
64
+ #: ../classes/column.php:821
65
  msgid "Number of words"
66
  msgstr ""
67
 
68
+ #: ../classes/column.php:843
69
  msgid "Preview size"
70
  msgstr ""
71
 
72
+ #: ../classes/column.php:860 ../classes/column.php:939
73
  msgid "Custom"
74
  msgstr ""
75
 
76
+ #: ../classes/column.php:863
77
  msgid "width"
78
  msgstr ""
79
 
80
+ #: ../classes/column.php:866
81
  msgid "height"
82
  msgstr ""
83
 
84
+ #: ../classes/column.php:882
85
+ msgid "Before"
86
+ msgstr ""
87
+
88
+ #: ../classes/column.php:882
89
+ msgid "This text will appear before the custom field value."
90
+ msgstr ""
91
+
92
+ #: ../classes/column.php:888
93
+ msgid "After"
94
+ msgstr ""
95
+
96
+ #: ../classes/column.php:888
97
+ msgid "This text will appear after the custom field value."
98
+ msgstr ""
99
+
100
+ #: ../classes/column.php:940 ../classes/column/custom-field.php:65
101
+ #: ../classes/settings.php:212
102
  msgid "Default"
103
  msgstr ""
104
 
105
+ #: ../classes/column.php:962 ../classes/column/comment/actions.php:96
106
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
107
+ #: ../classes/column/user/actions.php:66
108
+ msgid "Edit"
109
+ msgstr ""
110
+
111
+ #: ../classes/column.php:963 ../classes/column.php:1024
112
  #: ../classes/column/user/actions.php:74
113
  msgid "Remove"
114
  msgstr ""
115
 
116
+ #: ../classes/column.php:981
117
  msgid "Type"
118
  msgstr ""
119
 
120
+ #: ../classes/column.php:981
121
  msgid "Choose a column type."
122
  msgstr ""
123
 
124
+ #: ../classes/column.php:981 ../classes/column/comment/ID.php:12
125
  #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
126
  #: ../classes/column/post/ID.php:12
127
  msgid "ID"
128
  msgstr ""
129
 
130
+ #: ../classes/column.php:991
131
  msgid "Label"
132
  msgstr ""
133
 
134
+ #: ../classes/column.php:991
135
  msgid "This is the name which will appear as the column header."
136
  msgstr ""
137
 
138
+ #: ../classes/column.php:998 ../classes/column/media/width.php:12
139
  msgid "Width"
140
  msgstr ""
141
 
142
+ #: ../classes/column.php:1000 ../classes/column.php:1001
143
  msgid "default"
144
  msgstr ""
145
 
146
+ #: ../classes/column/comment/actions.php:14
147
+ #: ../classes/column/link/actions.php:14
148
+ #: ../classes/column/media/actions.php:14
149
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
150
+ msgid "Actions"
 
 
 
 
 
 
 
 
 
 
 
151
  msgstr ""
152
 
153
+ #: ../classes/column/comment/actions.php:73
154
+ #: ../classes/column/comment/actions.php:78
155
+ msgid "Unapprove"
156
  msgstr ""
157
 
158
+ #: ../classes/column/comment/actions.php:75
159
+ #: ../classes/column/comment/actions.php:77
160
+ msgid "Approve"
161
  msgstr ""
162
 
163
+ #: ../classes/column/comment/actions.php:86
164
+ #: ../classes/column/post/actions.php:53 ../classes/settings.php:697
165
+ msgid "Restore"
 
 
166
  msgstr ""
167
 
168
+ #: ../classes/column/comment/actions.php:90
169
+ #: ../classes/column/post/actions.php:57
170
+ msgid "Delete Permanently"
171
  msgstr ""
172
 
173
+ #: ../classes/column/comment/actions.php:97
174
+ #: ../classes/column/post/actions.php:49
175
+ msgid "Quick&nbsp;Edit"
176
  msgstr ""
177
 
178
+ #: ../classes/column/comment/actions.php:98
179
+ msgid "Reply"
 
180
  msgstr ""
181
 
182
+ #: ../classes/column/comment/agent.php:12
183
+ msgid "Agent"
184
  msgstr ""
185
 
186
+ #: ../classes/column/comment/approved.php:12
187
+ #: ../classes/column/post/comment-count.php:31
188
+ msgid "Approved"
 
189
  msgstr ""
190
 
191
+ #: ../classes/column/comment/author-avatar.php:12
192
+ msgid "Avatar"
193
  msgstr ""
194
 
195
+ #: ../classes/column/comment/author-email.php:12
196
+ msgid "Author email"
 
 
197
  msgstr ""
198
 
199
+ #: ../classes/column/comment/author-ip.php:12
200
+ msgid "Author IP"
 
201
  msgstr ""
202
 
203
+ #: ../classes/column/comment/author-url.php:12
204
+ msgid "Author url"
205
  msgstr ""
206
 
207
+ #: ../classes/column/comment/author.php:12
208
+ msgid "Author"
 
 
209
  msgstr ""
210
 
211
+ #: ../classes/column/comment/date-gmt.php:12
212
+ msgid "Date GMT"
 
 
213
  msgstr ""
214
 
215
+ #: ../classes/column/comment/date-gmt.php:25
216
+ #: ../classes/column/comment/date.php:25
217
+ #, php-format
218
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
219
  msgstr ""
220
 
221
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
222
+ #: ../classes/settings.php:217
223
+ msgid "Date"
 
224
  msgstr ""
225
 
 
226
  #: ../classes/column/comment/excerpt.php:13
227
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
228
+ #: ../classes/settings.php:214
229
  msgid "Excerpt"
230
  msgstr ""
231
 
232
+ #: ../classes/column/comment/reply-to.php:12
233
+ msgid "In Reply To"
234
  msgstr ""
235
 
236
+ #: ../classes/column/comment/word-count.php:12
237
+ #: ../classes/column/post/word-count.php:12
238
+ msgid "Word count"
239
  msgstr ""
240
 
241
+ #: ../classes/column/custom-field.php:16
242
+ #: ../classes/column/custom-field.php:377 ../classes/settings.php:207
243
+ msgid "Custom Field"
244
  msgstr ""
245
 
246
+ #: ../classes/column/custom-field.php:66
247
+ msgid "Checkmark (true/false)"
248
  msgstr ""
249
 
250
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:221
251
+ msgid "Color"
 
 
252
  msgstr ""
253
 
254
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:222
255
+ msgid "Counter"
 
256
  msgstr ""
257
 
258
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
259
+ #: ../classes/settings.php:213
260
+ msgid "Image"
 
 
 
261
  msgstr ""
262
 
263
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
264
+ msgid "Media Library"
265
  msgstr ""
266
 
267
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:215
268
+ msgid "Multiple Values"
269
  msgstr ""
270
 
271
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:216
272
+ msgid "Numeric"
273
  msgstr ""
274
 
275
+ #: ../classes/column/custom-field.php:75
276
+ msgid "Post Title (Post ID's)"
277
  msgstr ""
278
 
279
+ #: ../classes/column/custom-field.php:76
280
+ msgid "Username (User ID's)"
281
  msgstr ""
282
 
283
+ #: ../classes/column/custom-field.php:377
284
+ msgid "Select your custom field."
285
  msgstr ""
286
 
287
+ #: ../classes/column/custom-field.php:387
288
+ msgid "No custom fields available."
289
  msgstr ""
290
 
291
+ #: ../classes/column/custom-field.php:394
292
+ msgid "Field Type"
293
  msgstr ""
294
 
295
+ #: ../classes/column/custom-field.php:394
296
+ msgid "This will determine how the value will be displayed."
297
  msgstr ""
298
 
299
+ #: ../classes/column/link/actions.php:46
300
+ #, php-format
301
  msgid ""
302
+ "You are about to delete this link '%s'\n"
303
+ " 'Cancel' to stop, 'OK' to delete."
304
  msgstr ""
305
 
306
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
307
+ msgid "Delete"
308
  msgstr ""
309
 
310
+ #: ../classes/column/link/description.php:12
311
+ #: ../classes/column/media/description.php:12
312
+ #: ../classes/column/user/description.php:14
313
+ msgid "Description"
314
  msgstr ""
315
 
316
+ #: ../classes/column/link/length.php:12
317
+ msgid "Length"
 
 
318
  msgstr ""
319
 
320
+ #: ../classes/column/link/notes.php:13
321
+ msgid "Notes"
322
  msgstr ""
323
 
324
+ #: ../classes/column/link/owner.php:12
325
+ msgid "Owner"
326
  msgstr ""
327
 
328
+ #: ../classes/column/link/rss.php:12
329
+ msgid "Rss"
330
  msgstr ""
331
 
332
+ #: ../classes/column/link/target.php:12
333
+ msgid "Target"
334
  msgstr ""
335
 
336
+ #: ../classes/column/media/alternate-text.php:12
337
+ msgid "Alt"
 
 
 
338
  msgstr ""
339
 
340
+ #: ../classes/column/media/available-sizes.php:14
341
+ msgid "Available Sizes"
 
342
  msgstr ""
343
 
344
+ #: ../classes/column/media/available-sizes.php:37
345
+ msgid "full size"
346
  msgstr ""
347
 
348
+ #: ../classes/column/media/caption.php:12
349
+ #: ../classes/column/media/exif-data.php:36
350
+ msgid "Caption"
351
  msgstr ""
352
 
353
+ #: ../classes/column/media/dimensions.php:12
354
+ msgid "Dimensions"
355
  msgstr ""
356
 
357
+ #: ../classes/column/media/exif-data.php:12
358
+ msgid "EXIF data"
359
  msgstr ""
360
 
361
+ #: ../classes/column/media/exif-data.php:33
362
+ msgid "Aperture"
363
  msgstr ""
364
 
365
+ #: ../classes/column/media/exif-data.php:34
366
+ msgid "Credit"
367
  msgstr ""
368
 
369
+ #: ../classes/column/media/exif-data.php:35
370
+ msgid "Camera"
 
 
371
  msgstr ""
372
 
373
+ #: ../classes/column/media/exif-data.php:37
374
+ msgid "Timestamp"
375
  msgstr ""
376
 
377
+ #: ../classes/column/media/exif-data.php:38
378
+ msgid "Copyright EXIF"
379
  msgstr ""
380
 
381
+ #: ../classes/column/media/exif-data.php:39
382
+ msgid "Focal Length"
383
  msgstr ""
384
 
385
+ #: ../classes/column/media/exif-data.php:40
386
+ msgid "ISO"
 
 
 
387
  msgstr ""
388
 
389
+ #: ../classes/column/media/exif-data.php:41
390
+ msgid "Shutter Speed"
391
  msgstr ""
392
 
393
+ #: ../classes/column/media/exif-data.php:42
394
+ msgid "Title"
395
  msgstr ""
396
 
397
+ #: ../classes/column/media/file-name.php:12
398
+ msgid "File name"
 
 
 
 
 
 
 
399
  msgstr ""
400
 
401
+ #: ../classes/column/media/file-size.php:12
402
+ msgid "File size"
 
 
403
  msgstr ""
404
 
405
+ #: ../classes/column/media/full-path.php:12
406
+ msgid "Full path"
407
  msgstr ""
408
 
409
+ #: ../classes/column/media/height.php:12
410
+ msgid "Height"
411
  msgstr ""
412
 
413
+ #: ../classes/column/media/mime-type.php:12
414
+ msgid "Mime type"
415
  msgstr ""
416
 
417
+ #: ../classes/column/post/actions.php:48
418
+ msgid "Edit this item"
419
  msgstr ""
420
 
421
+ #: ../classes/column/post/actions.php:49
422
+ msgid "Edit this item inline"
 
 
423
  msgstr ""
424
 
425
+ #: ../classes/column/post/actions.php:53
426
+ msgid "Restore this item from the Trash"
 
427
  msgstr ""
428
 
429
+ #: ../classes/column/post/actions.php:55
430
+ msgid "Move this item to the Trash"
431
  msgstr ""
432
 
433
+ #: ../classes/column/post/actions.php:55
434
+ #: ../classes/column/post/comment-count.php:34
435
+ #: ../classes/column/post/status.php:38
436
+ msgid "Trash"
437
  msgstr ""
438
 
439
+ #: ../classes/column/post/actions.php:57
440
+ msgid "Delete this item permanently"
441
  msgstr ""
442
 
443
+ #: ../classes/column/post/actions.php:62
444
+ #, php-format
445
+ msgid "Preview &#8220;%s&#8221;"
446
  msgstr ""
447
 
448
+ #: ../classes/column/post/actions.php:62
449
+ msgid "Preview"
450
  msgstr ""
451
 
452
+ #: ../classes/column/post/actions.php:64
453
+ #, php-format
454
+ msgid "View &#8220;%s&#8221;"
455
  msgstr ""
456
 
457
+ #: ../classes/column/post/actions.php:64 ../classes/storage_model.php:689
458
+ msgid "View"
459
  msgstr ""
460
 
461
+ #: ../classes/column/post/attachment-count.php:12
462
+ msgid "No. of Attachments"
463
  msgstr ""
464
 
465
+ #: ../classes/column/post/attachment.php:12
466
+ msgid "Attachment"
467
  msgstr ""
468
 
469
+ #: ../classes/column/post/author-name.php:12
470
+ msgid "Display Author As"
471
  msgstr ""
472
 
473
+ #: ../classes/column/post/author-name.php:34
474
+ msgid "Display Name"
 
 
475
  msgstr ""
476
 
477
+ #: ../classes/column/post/author-name.php:35
478
+ msgid "First Name"
479
  msgstr ""
480
 
481
+ #: ../classes/column/post/author-name.php:36
482
+ msgid "Last Name"
 
 
483
  msgstr ""
484
 
485
+ #: ../classes/column/post/author-name.php:37
486
+ #: ../classes/column/user/nickname.php:14
487
+ msgid "Nickname"
488
  msgstr ""
489
 
490
+ #: ../classes/column/post/author-name.php:38
491
+ msgid "User Login"
492
  msgstr ""
493
 
494
+ #: ../classes/column/post/author-name.php:39
495
+ msgid "User Email"
496
  msgstr ""
497
 
498
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
499
+ msgid "User ID"
500
  msgstr ""
501
 
502
+ #: ../classes/column/post/author-name.php:41
503
+ msgid "First and Last Name"
 
 
 
504
  msgstr ""
505
 
506
+ #: ../classes/column/post/author-name.php:118
507
+ msgid "This is the format of the author name."
 
508
  msgstr ""
509
 
510
+ #: ../classes/column/post/before-moretag.php:14
511
+ msgid "Before More Tag"
512
  msgstr ""
513
 
514
+ #: ../classes/column/post/comment-count.php:14
515
+ msgid "Comment count"
516
  msgstr ""
517
 
518
+ #: ../classes/column/post/comment-count.php:30
519
+ msgid "Total"
520
  msgstr ""
521
 
522
+ #: ../classes/column/post/comment-count.php:32
523
+ msgid "Pending"
524
  msgstr ""
525
 
526
+ #: ../classes/column/post/comment-count.php:33
527
+ msgid "Spam"
528
  msgstr ""
529
 
530
+ #: ../classes/column/post/comment-count.php:95
531
+ #: ../classes/column/post/comment-status.php:14
532
+ msgid "Comment status"
533
  msgstr ""
534
 
535
+ #: ../classes/column/post/comment-count.php:95
536
+ msgid "Select which comment status you like to display."
537
  msgstr ""
538
 
539
+ #: ../classes/column/post/featured-image.php:14
540
+ msgid "Featured Image"
541
  msgstr ""
542
 
543
+ #: ../classes/column/post/formats.php:14
544
+ msgid "Post Format"
545
  msgstr ""
546
 
547
+ #: ../classes/column/post/modified.php:14
548
+ msgid "Last modified"
549
  msgstr ""
550
 
551
+ #: ../classes/column/post/order.php:14
552
+ msgid "Page Order"
553
  msgstr ""
554
 
555
+ #: ../classes/column/post/page-template.php:12
556
+ msgid "Page Template"
 
 
 
557
  msgstr ""
558
 
559
+ #: ../classes/column/post/parent.php:12
560
+ msgid "Parent"
561
  msgstr ""
562
 
563
+ #: ../classes/column/post/ping-status.php:14
564
+ msgid "Ping status"
565
  msgstr ""
566
 
567
+ #: ../classes/column/post/roles.php:14
568
+ msgid "Roles"
569
  msgstr ""
570
 
571
+ #: ../classes/column/post/slug.php:12
572
+ msgid "Slug"
573
  msgstr ""
574
 
575
+ #: ../classes/column/post/status.php:14
576
+ msgid "Status"
577
  msgstr ""
578
 
579
+ #: ../classes/column/post/status.php:32
580
+ msgid "Published"
 
581
  msgstr ""
582
 
583
+ #: ../classes/column/post/status.php:33
584
+ msgid "Draft"
585
  msgstr ""
586
 
587
+ #: ../classes/column/post/status.php:34
588
+ msgid "Scheduled"
589
  msgstr ""
590
 
591
+ #: ../classes/column/post/status.php:35
592
+ msgid "Private"
593
  msgstr ""
594
 
595
+ #: ../classes/column/post/status.php:36
596
+ msgid "Pending Review"
597
  msgstr ""
598
 
599
+ #: ../classes/column/post/status.php:37
600
+ msgid "Auto Draft"
 
 
601
  msgstr ""
602
 
603
+ #: ../classes/column/post/sticky.php:14
604
+ msgid "Sticky"
605
  msgstr ""
606
 
607
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:95
608
+ msgid "Taxonomy"
609
  msgstr ""
610
 
611
+ #: ../classes/column/user/comment-count.php:14
612
+ msgid "Comment Count"
 
613
  msgstr ""
614
 
615
+ #: ../classes/column/user/first-name.php:14
616
+ msgid "First name"
 
617
  msgstr ""
618
 
619
+ #: ../classes/column/user/last-name.php:14
620
+ msgid "Last name"
621
  msgstr ""
622
 
623
+ #: ../classes/column/user/post-count.php:14
624
+ msgid "Post Count"
625
  msgstr ""
626
 
627
+ #: ../classes/column/user/post-count.php:99
628
+ msgid "Post Type"
629
  msgstr ""
630
 
631
+ #: ../classes/column/user/registered.php:14
632
+ msgid "Registered"
633
  msgstr ""
634
 
635
+ #: ../classes/column/user/url.php:14
636
+ msgid "Url"
637
  msgstr ""
638
 
639
+ #: ../classes/settings.php:64
640
+ msgid "Admin Columns Settings"
641
  msgstr ""
642
 
643
+ #: ../classes/settings.php:64 ../classes/settings.php:635
644
+ #: ../classes/upgrade.php:89
645
+ msgid "Admin Columns"
646
  msgstr ""
647
 
648
+ #: ../classes/settings.php:116
649
+ #, php-format
650
+ msgid "%s column is already present and can not be duplicated."
651
  msgstr ""
652
 
653
+ #: ../classes/settings.php:172
654
+ msgid "Default settings succesfully restored."
655
  msgstr ""
656
 
657
+ #: ../classes/settings.php:190 ../classes/settings.php:447
658
+ msgid "Overview"
659
  msgstr ""
660
 
661
+ #: ../classes/settings.php:193
662
+ msgid ""
663
+ "This plugin is for adding and removing additional columns to the "
664
+ "administration screens for post(types), pages, media library, comments, "
665
+ "links and users. Change the column's label and reorder them."
666
  msgstr ""
667
 
668
+ #: ../classes/settings.php:196
669
+ msgid "Basics"
670
  msgstr ""
671
 
672
+ #: ../classes/settings.php:198
673
+ msgid "Change order"
674
  msgstr ""
675
 
676
+ #: ../classes/settings.php:199
677
  msgid ""
678
+ "By dragging the columns you can change the order which they will appear in."
 
679
  msgstr ""
680
 
681
+ #: ../classes/settings.php:200
682
+ msgid "Change label"
683
  msgstr ""
684
 
685
+ #: ../classes/settings.php:201
686
+ msgid ""
687
+ "By clicking on the triangle you will see the column options. Here you can "
688
+ "change each label of the columns heading."
689
  msgstr ""
690
 
691
+ #: ../classes/settings.php:202
692
+ msgid "Change column width"
693
  msgstr ""
694
 
695
+ #: ../classes/settings.php:203
696
+ msgid ""
697
+ "By clicking on the triangle you will see the column options. By using the "
698
+ "draggable slider you can set the width of the columns in percentages."
699
  msgstr ""
700
 
701
+ #: ../classes/settings.php:209
702
+ msgid "'Custom Field' column"
703
  msgstr ""
704
 
705
+ #: ../classes/settings.php:210
706
+ msgid ""
707
+ "The custom field colum uses the custom fields from posts and users. There "
708
+ "are 10 types which you can set."
709
  msgstr ""
710
 
711
+ #: ../classes/settings.php:212
712
+ msgid ""
713
+ "Value: Can be either a string or array. Arrays will be flattened and values "
714
+ "are seperated by a ',' comma."
715
  msgstr ""
716
 
717
+ #: ../classes/settings.php:213
718
+ msgid ""
719
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
720
+ "comma )."
721
  msgstr ""
722
 
723
+ #: ../classes/settings.php:214
724
+ msgid "Value: This will show the first 20 words of the Post content."
725
  msgstr ""
726
 
727
+ #: ../classes/settings.php:215
728
+ msgid ""
729
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
730
  msgstr ""
731
 
732
+ #: ../classes/settings.php:216
733
+ msgid ""
734
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
735
+ "for sorting, so you can sort your posts on numeric (custom field) values."
736
  msgstr ""
737
 
738
+ #: ../classes/settings.php:217
739
+ #, php-format
740
+ msgid ""
741
+ "Value: Can be unix time stamp or a date format as described in the <a "
742
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
743
+ "href='%s'>general settings</a> page."
744
  msgstr ""
745
 
746
+ #: ../classes/settings.php:218
747
+ msgid "Post Titles"
 
 
 
748
  msgstr ""
749
 
750
+ #: ../classes/settings.php:218
751
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
 
752
  msgstr ""
753
 
754
+ #: ../classes/settings.php:219
755
+ msgid "Usernames"
 
756
  msgstr ""
757
 
758
+ #: ../classes/settings.php:219
759
+ msgid "Value: can be one or more User ID's (seperated by ',')."
 
760
  msgstr ""
761
 
762
+ #: ../classes/settings.php:220
763
+ msgid "Checkmark"
 
 
764
  msgstr ""
765
 
766
+ #: ../classes/settings.php:220
767
+ msgid "Value: should be a 1 (one) or 0 (zero)."
 
768
  msgstr ""
769
 
770
+ #: ../classes/settings.php:221
771
+ msgid "Value: hex value color, such as #808080."
772
  msgstr ""
773
 
774
+ #: ../classes/settings.php:222
775
+ msgid ""
776
+ "Value: Can be either a string or array. This will display a count of the "
777
+ "number of times the meta key is used by the item."
778
  msgstr ""
779
 
780
+ #: ../classes/settings.php:367
781
+ msgid "Welcome to Admin Columns"
 
782
  msgstr ""
783
 
784
+ #: ../classes/settings.php:370
785
+ msgid "Thank you for updating to the latest version!"
786
  msgstr ""
787
 
788
+ #: ../classes/settings.php:371
789
+ msgid ""
790
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
791
+ "like it."
792
  msgstr ""
793
 
794
+ #: ../classes/settings.php:376
795
+ msgid "What’s New"
796
  msgstr ""
797
 
798
+ #: ../classes/settings.php:377
799
+ msgid "Changelog"
800
  msgstr ""
801
 
802
+ #: ../classes/settings.php:379
803
+ msgid "Download Addons"
804
  msgstr ""
805
 
806
+ #: ../classes/settings.php:385
807
+ msgid "Addons"
808
  msgstr ""
809
 
810
+ #: ../classes/settings.php:387
811
+ msgid ""
812
+ "Addons are now activated by downloading and installing individual plugins. "
813
+ "Although these plugins will not be hosted on the wordpress.org repository, "
814
+ "each Add-on will continue to receive updates in the usual way."
815
  msgstr ""
816
 
817
+ #: ../classes/settings.php:390
818
+ msgid ""
819
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
820
  msgstr ""
821
 
822
+ #: ../classes/settings.php:393
823
+ msgid "Addons are seperate plugins which need to be downloaded."
 
824
  msgstr ""
825
 
826
+ #: ../classes/settings.php:393
827
+ msgid "Download your Addons"
 
 
 
828
  msgstr ""
829
 
830
+ #: ../classes/settings.php:399
831
+ msgid "This website does not use add-ons"
832
  msgstr ""
833
 
834
+ #: ../classes/settings.php:399
835
+ msgid "See our website for the Pro-addon."
 
 
836
  msgstr ""
837
 
838
+ #: ../classes/settings.php:406
839
+ msgid "Important"
840
  msgstr ""
841
 
842
+ #: ../classes/settings.php:408
843
+ msgid "Database Changes"
844
  msgstr ""
845
 
846
+ #: ../classes/settings.php:409
847
+ msgid ""
848
+ "The database has been changed between versions 1 and 2. But we made sure you "
849
+ "can still roll back to version 1x without any issues."
850
  msgstr ""
851
 
852
+ #: ../classes/settings.php:412
853
+ msgid "Make sure you backup your database and then click"
854
  msgstr ""
855
 
856
+ #: ../classes/settings.php:412 ../classes/upgrade.php:97
857
+ msgid "Upgrade Database"
858
  msgstr ""
859
 
860
+ #: ../classes/settings.php:415
861
+ msgid "Potential Issues"
862
  msgstr ""
863
 
864
+ #: ../classes/settings.php:416
865
+ msgid ""
866
+ "Do to the sizable refactoring the code, surounding Addons and action/"
867
+ "filters, your website may not operate correctly. It is important that you "
868
+ "read the full"
869
  msgstr ""
870
 
871
+ #: ../classes/settings.php:416
872
+ msgid "Migrating from v1 to v2"
873
  msgstr ""
874
 
875
+ #: ../classes/settings.php:416
876
+ msgid "guide to view the full list of changes."
 
877
  msgstr ""
878
 
879
+ #: ../classes/settings.php:416
880
+ #, php-format
881
+ msgid ""
882
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
883
+ "can fix it in the next release."
884
  msgstr ""
885
 
886
+ #: ../classes/settings.php:419
887
+ msgid "Important!"
888
  msgstr ""
889
 
890
+ #: ../classes/settings.php:419
891
+ msgid ""
892
+ "If you updated the Admin Columns plugin without prior knowledge of such "
893
+ "changes, Please roll back to the latest"
894
  msgstr ""
895
 
896
+ #: ../classes/settings.php:419
897
+ msgid "version 1"
898
  msgstr ""
899
 
900
+ #: ../classes/settings.php:419
901
+ msgid "of this plugin."
902
  msgstr ""
903
 
904
+ #: ../classes/settings.php:425
905
+ msgid "Changelog for"
906
  msgstr ""
907
 
908
+ #: ../classes/settings.php:440
909
+ msgid "Learn more"
910
  msgstr ""
911
 
912
+ #: ../classes/settings.php:449
913
+ msgid ""
914
+ "New to v2, all Addons act as separate plugins which need to be individually "
915
+ "downloaded, installed and updated."
916
  msgstr ""
917
 
918
+ #: ../classes/settings.php:450
919
+ msgid ""
920
+ "This page will assist you in downloading and installing each available Addon."
921
  msgstr ""
922
 
923
+ #: ../classes/settings.php:451
924
+ msgid "Available Addons"
925
  msgstr ""
926
 
927
+ #: ../classes/settings.php:456
928
+ msgid "Name"
929
  msgstr ""
930
 
931
+ #: ../classes/settings.php:457 ../classes/settings.php:465
932
+ msgid "Download"
933
  msgstr ""
934
 
935
+ #: ../classes/settings.php:463
936
+ msgid "Pro Add-on (includes Sortorder add-on)"
937
  msgstr ""
938
 
939
+ #: ../classes/settings.php:473
940
+ msgid "Installation"
941
  msgstr ""
942
 
943
+ #: ../classes/settings.php:475
944
+ msgid "For each Add-on available, please perform the following:"
945
  msgstr ""
946
 
947
+ #: ../classes/settings.php:477
948
+ msgid "Download the Addon plugin (.zip file) to your desktop"
949
  msgstr ""
950
 
951
+ #: ../classes/settings.php:478
952
+ msgid "Navigate to"
953
  msgstr ""
954
 
955
+ #: ../classes/settings.php:478
956
+ msgid "Plugins > Add New > Upload"
957
  msgstr ""
958
 
959
+ #: ../classes/settings.php:479
960
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
961
  msgstr ""
962
 
963
+ #: ../classes/settings.php:480
964
+ msgid ""
965
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
966
+ "link"
967
  msgstr ""
968
 
969
+ #: ../classes/settings.php:481
970
+ msgid "The Add-on is now installed and activated!"
 
 
971
  msgstr ""
972
 
973
+ #: ../classes/settings.php:482
974
+ #, php-format
975
+ msgid ""
976
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
977
  msgstr ""
978
 
979
+ #: ../classes/settings.php:492
980
+ msgid "Start using Admin Columns"
 
981
  msgstr ""
982
 
983
+ #: ../classes/settings.php:539
984
+ msgid "General Settings"
985
  msgstr ""
986
 
987
+ #: ../classes/settings.php:540
988
+ msgid "Customize your Admin Columns settings."
 
989
  msgstr ""
990
 
991
+ #: ../classes/settings.php:553
992
+ msgid "Show hidden custom fields. Default is <code>off</code>."
993
  msgstr ""
994
 
995
+ #: ../classes/settings.php:559
996
+ msgid ""
997
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
998
  msgstr ""
999
 
1000
+ #: ../classes/settings.php:566 ../classes/settings.php:692
1001
+ msgid "Save"
1002
  msgstr ""
1003
 
1004
+ #: ../classes/settings.php:606
1005
+ msgid "Restore Settings"
1006
  msgstr ""
1007
 
1008
+ #: ../classes/settings.php:607
1009
+ msgid "This will delete all column settings and restore the default settings."
1010
  msgstr ""
1011
 
1012
+ #: ../classes/settings.php:613
1013
+ msgid "Restore default settings"
 
1014
  msgstr ""
1015
 
1016
+ #: ../classes/settings.php:613
1017
+ msgid ""
1018
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1019
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1020
  msgstr ""
1021
 
1022
+ #: ../classes/settings.php:636 ../codepress-admin-columns.php:356
1023
+ msgid "Settings"
1024
  msgstr ""
1025
 
1026
+ #: ../classes/settings.php:665
1027
+ msgid "Posttypes"
1028
  msgstr ""
1029
 
1030
+ #: ../classes/settings.php:666
1031
+ msgid "Others"
1032
  msgstr ""
1033
 
1034
+ #: ../classes/settings.php:667
1035
+ msgid "Taxonomies"
1036
  msgstr ""
1037
 
1038
+ #: ../classes/settings.php:688
1039
+ msgid "Store settings"
1040
  msgstr ""
1041
 
1042
+ #: ../classes/settings.php:692
1043
+ msgid "Update"
1044
  msgstr ""
1045
 
1046
+ #: ../classes/settings.php:696
1047
+ #, php-format
1048
+ msgid ""
1049
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1050
+ "\\' to delete, \\'Cancel\\' to stop"
1051
  msgstr ""
1052
 
1053
+ #: ../classes/settings.php:697
1054
+ msgid "columns"
1055
  msgstr ""
1056
 
1057
+ #: ../classes/settings.php:710
1058
+ msgid "Get the Pro Add-on"
1059
  msgstr ""
1060
 
1061
+ #: ../classes/settings.php:714
1062
+ msgid "Add Sorting"
 
1063
  msgstr ""
1064
 
1065
+ #: ../classes/settings.php:715
1066
+ msgid "Add Filtering"
1067
  msgstr ""
1068
 
1069
+ #: ../classes/settings.php:716
1070
+ msgid "Add Import/Export"
1071
  msgstr ""
1072
 
1073
+ #: ../classes/settings.php:719
1074
+ #, php-format
1075
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
1076
  msgstr ""
1077
 
1078
+ #: ../classes/settings.php:750
1079
+ msgid "Support"
1080
  msgstr ""
1081
 
1082
+ #: ../classes/settings.php:753
1083
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1084
  msgstr ""
1085
 
1086
+ #: ../classes/settings.php:756
1087
+ #, php-format
1088
+ msgid ""
1089
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1090
+ "href='%s'>visit the Admin Columns website</a>"
1091
  msgstr ""
1092
 
1093
+ #: ../classes/settings.php:784
1094
+ msgid "Drag and drop to reorder"
1095
  msgstr ""
1096
 
1097
+ #: ../classes/settings.php:787
1098
+ msgid "Add Column"
1099
  msgstr ""
1100
 
1101
+ #: ../classes/storage_model.php:222
1102
+ msgid "settings succesfully restored."
1103
  msgstr ""
1104
 
1105
+ #: ../classes/storage_model.php:239
1106
+ msgid "No columns settings available."
1107
  msgstr ""
1108
 
1109
+ #: ../classes/storage_model.php:262
1110
+ #, php-format
1111
+ msgid "You are trying to store the same settings for %s."
1112
  msgstr ""
1113
 
1114
+ #: ../classes/storage_model.php:266
1115
+ #, php-format
1116
+ msgid "Settings for %s updated succesfully."
1117
  msgstr ""
1118
 
1119
+ #: ../classes/storage_model/comment.php:13
1120
+ msgid "Comments"
1121
  msgstr ""
1122
 
1123
+ #: ../classes/storage_model/link.php:13
1124
+ msgid "Links"
1125
  msgstr ""
1126
 
1127
+ #: ../classes/storage_model/user.php:13
1128
+ msgid "Users"
1129
  msgstr ""
1130
 
1131
+ #: ../classes/upgrade.php:45
1132
+ msgid "Upgrade"
1133
  msgstr ""
1134
 
1135
+ #: ../classes/upgrade.php:90
1136
+ msgid "requires a database upgrade"
1137
  msgstr ""
1138
 
1139
+ #: ../classes/upgrade.php:93
1140
+ msgid "why?"
 
1141
  msgstr ""
1142
 
1143
+ #: ../classes/upgrade.php:94
1144
+ msgid "Please"
1145
  msgstr ""
1146
 
1147
+ #: ../classes/upgrade.php:95
1148
+ msgid "backup your database"
1149
  msgstr ""
1150
 
1151
+ #: ../classes/upgrade.php:96
1152
+ msgid "then click"
1153
  msgstr ""
1154
 
1155
+ #: ../classes/upgrade.php:304
1156
+ msgid "Migrating Column Settings"
1157
  msgstr ""
1158
 
1159
+ #: ../classes/upgrade.php:340
1160
+ msgid "No Upgrade Required"
1161
  msgstr ""
1162
 
1163
+ #: ../classes/upgrade.php:341
1164
+ msgid "Return to welcome screen."
1165
  msgstr ""
1166
 
1167
+ #: ../classes/upgrade.php:359
1168
+ msgid "Upgrade Complete!"
1169
  msgstr ""
1170
 
1171
+ #: ../classes/upgrade.php:359
1172
+ msgid "Return to settings."
1173
  msgstr ""
1174
 
1175
+ #: ../classes/upgrade.php:360
1176
+ msgid "Error"
1177
  msgstr ""
1178
 
1179
+ #: ../classes/upgrade.php:361
1180
+ msgid ""
1181
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1182
+ "on the support forum."
1183
+ msgstr ""
1184
+
1185
+ #: ../codepress-admin-columns.php:447
1186
+ msgid "Edit columns"
1187
  msgstr ""
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.8.1
7
- Stable tag: 2.1.3
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
 
@@ -220,6 +220,17 @@ Here you will find an overview of filters and examples: http://www.codepresshq.c
220
 
221
  == Changelog ==
222
 
 
 
 
 
 
 
 
 
 
 
 
223
  = 2.1.3 =
224
  * [Updated] Undo changes from 2.1.2, will be in the next major release
225
  * [Fixed] Moved assignment of capabilities to plugin activation hook
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.8.1
7
+ Stable tag: 2.1.4
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
 
220
 
221
  == Changelog ==
222
 
223
+ = 2.1.4 =
224
+ * [Added] CSS now is compiled with LESS
225
+ * [Updated] Menu is split between posttypes and media, comments and users.
226
+ * [Fixed] WordPress SEO 1.5.2 columns support
227
+ * [Updated] Refactored JS and cleanup
228
+ * [Updated] Registered Date column now uses GMT date
229
+ * [Updated] Display author as column has fallback to display_name
230
+ * [Updated] Added conditional checks for featured-image-, ping-status and comment-status-columns
231
+ * [Fixed] Fixed warning for available-sizes column
232
+ * [Updated] Column labels can no longer contain ":" characters
233
+
234
  = 2.1.3 =
235
  * [Updated] Undo changes from 2.1.2, will be in the next major release
236
  * [Fixed] Moved assignment of capabilities to plugin activation hook