Admin Columns - Version 3.0.5

Version Description

Release Date: November 9th, 2017

  • [Added] Events Calendar integration add-on is now available from the add-ons tab
  • [Added] Added before/after fields for ID column
  • [Changed] Changed Ajax value interface
  • [Fixed] Fixed php warning on count() for php 7.2
  • [Improved] Column interface for post relations
  • [Improved] Attachment count column combined with Attachment column
  • [Improved] Pro banner
  • [Improved] Published date shows when a post is not published
  • [Improved] Custom field keys for users are now grouped by site option
  • [Improved] Added the AC_Plugin class as a more DRY approach to asking meta data about a plugin
  • [Improved] Redone the way user preferences are stored. Less records and better compatible with Multisite.
  • [Improved] Added the option to write database updates and apply them on a new version
  • [Improved] Empty character is just a method now instead of getter/setter with a filter
  • [Improved] Added AC_Services class to register services to a column on the fly (DI approach)
  • [Improved] Custom fields for users are now grouped per network site
Download this release

Release Info

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

Code changes from version 3.0.3 to 3.0.5

Files changed (136) hide show
  1. api.php +0 -9
  2. assets/css/table.css +173 -13
  3. assets/css/table.min.css +1 -1
  4. assets/images/addons/events-calendar-icon.png +0 -0
  5. assets/images/addons/events-calendar.png +0 -0
  6. assets/images/addons/ninja-forms-icon.png +0 -0
  7. assets/images/addons/ninja-forms.png +0 -0
  8. assets/js/admin-page-columns.js +13 -6
  9. assets/js/admin-page-columns.min.js +1 -1
  10. assets/js/table.js +20 -1
  11. assets/js/table.min.js +1 -1
  12. classes/API.php +24 -11
  13. classes/Addon/BuddyPress.php +1 -1
  14. classes/Addon/EventsCalendar.php +38 -0
  15. classes/Addon/NinjaForms.php +38 -0
  16. classes/Addon/Pods.php +1 -1
  17. classes/Addon/Types.php +1 -1
  18. classes/Admin/Page/Addons.php +42 -42
  19. classes/Admin/Page/Columns.php +22 -22
  20. classes/Collection.php +21 -0
  21. classes/Column.php +22 -19
  22. classes/Column/ActionColumnHelper.php +0 -78
  23. classes/Column/Actions.php +1 -12
  24. classes/Column/Comment/Actions.php +0 -16
  25. classes/Column/Comment/DateGmt.php +1 -1
  26. classes/Column/Comment/WordCount.php +1 -1
  27. classes/Column/Link/Actions.php +1 -1
  28. classes/Column/Media/Actions.php +0 -16
  29. classes/Column/Media/AlternateText.php +1 -1
  30. classes/Column/Media/AttachedTo.php +0 -31
  31. classes/Column/Media/AvailableSizes.php +44 -35
  32. classes/Column/Media/Dimensions.php +10 -13
  33. classes/Column/Media/ExifData.php +3 -5
  34. classes/Column/Media/Height.php +9 -7
  35. classes/Column/Media/ID.php +1 -1
  36. classes/Column/Media/MetaValue.php +26 -0
  37. classes/Column/Media/Width.php +3 -11
  38. classes/Column/{UsedByMenu.php → Menu.php} +51 -7
  39. classes/Column/Meta.php +3 -3
  40. classes/Column/Post/Actions.php +0 -16
  41. classes/Column/Post/Attachment.php +1 -1
  42. classes/Column/Post/AttachmentCount.php +0 -31
  43. classes/Column/Post/BeforeMoreTag.php +1 -1
  44. classes/Column/Post/CommentStatus.php +1 -1
  45. classes/Column/Post/DatePublished.php +25 -1
  46. classes/Column/Post/Formats.php +5 -9
  47. classes/Column/Post/ID.php +5 -1
  48. classes/Column/Post/Roles.php +9 -9
  49. classes/Column/Post/TitleRaw.php +5 -5
  50. classes/Column/RelationInterface.php +16 -0
  51. classes/Column/Taxonomy.php +3 -1
  52. classes/Column/User/Actions.php +0 -16
  53. classes/Column/User/ShowToolbar.php +2 -2
  54. classes/Container.php +55 -0
  55. classes/Helper.php +11 -10
  56. classes/Helper/Array.php +13 -0
  57. classes/Helper/Date.php +12 -0
  58. classes/Helper/File.php +22 -2
  59. classes/Helper/Html.php +65 -10
  60. classes/Helper/Icon.php +4 -4
  61. classes/Helper/Image.php +81 -2
  62. classes/Helper/Media.php +94 -0
  63. classes/Helper/Post.php +34 -0
  64. classes/Helper/String.php +5 -3
  65. classes/Helper/User.php +68 -36
  66. classes/ListScreen.php +34 -6
  67. classes/ListScreen/Comment.php +3 -2
  68. classes/ListScreen/Media.php +3 -2
  69. classes/ListScreen/Post.php +3 -10
  70. classes/ListScreen/User.php +3 -2
  71. classes/Meta/Query.php +1 -1
  72. classes/Notice/Review.php +43 -42
  73. classes/Plugin.php +152 -0
  74. classes/Plugin/Update.php +64 -0
  75. classes/Plugin/Update/V305.php +132 -0
  76. classes/Plugin/Updater.php +95 -0
  77. classes/Preferences.php +139 -0
  78. classes/Relation.php +38 -0
  79. classes/Relation/Post.php +36 -0
  80. classes/Relation/Taxonomy.php +36 -0
  81. classes/Settings/Column/AttachmentDisplay.php +73 -0
  82. classes/Settings/Column/BeforeAfter.php +20 -2
  83. classes/Settings/Column/BeforeAfter/Aperture.php +13 -0
  84. classes/Settings/Column/BeforeAfter/FocalLength.php +13 -0
  85. classes/Settings/Column/BeforeAfter/ISO.php +13 -0
  86. classes/Settings/Column/BeforeAfter/ShutterSpeed.php +13 -0
  87. classes/Settings/Column/CommentCount.php +24 -6
  88. classes/Settings/Column/CustomField.php +7 -26
  89. classes/Settings/Column/CustomFieldType.php +8 -3
  90. classes/Settings/Column/Date.php +5 -3
  91. classes/Settings/Column/ExifData.php +42 -5
  92. classes/Settings/Column/Image.php +1 -1
  93. classes/Settings/Column/Images.php +24 -0
  94. classes/Settings/Column/LinkToMenu.php +1 -1
  95. classes/Settings/Column/Meta.php +87 -22
  96. classes/Settings/Column/MissingImageSize.php +52 -0
  97. classes/Settings/Column/NumberOfItems.php +57 -0
  98. classes/Settings/Column/Post.php +10 -7
  99. classes/Settings/Column/PostFormatIcon.php +83 -0
  100. classes/Settings/Column/PostLink.php +17 -4
  101. classes/Settings/Column/StatusIcon.php +5 -24
  102. classes/Settings/Column/StringLimit.php +77 -0
  103. classes/Settings/Column/Taxonomy.php +2 -1
  104. classes/Settings/Column/User.php +4 -3
  105. classes/Settings/Form/Element/Checkbox.php +24 -2
  106. classes/TableScreen.php +22 -3
  107. codepress-admin-columns.php +63 -65
  108. languages/codepress-admin-columns-ar_AR.po +106 -63
  109. languages/codepress-admin-columns-bt_BR.po +106 -63
  110. languages/codepress-admin-columns-da_DK.po +106 -63
  111. languages/codepress-admin-columns-de_DE.mo +0 -0
  112. languages/codepress-admin-columns-de_DE.po +140 -97
  113. languages/codepress-admin-columns-en_NZ.po +106 -63
  114. languages/codepress-admin-columns-es_ES.po +106 -63
  115. languages/codepress-admin-columns-fa_IR.po +106 -63
  116. languages/codepress-admin-columns-fr_FR.mo +0 -0
  117. languages/codepress-admin-columns-fr_FR.po +108 -65
  118. languages/codepress-admin-columns-he_IL.mo +0 -0
  119. languages/codepress-admin-columns-he_IL.po +106 -63
  120. languages/codepress-admin-columns-hu_HU.po +106 -63
  121. languages/codepress-admin-columns-it_IT.mo +0 -0
  122. languages/codepress-admin-columns-it_IT.po +120 -75
  123. languages/codepress-admin-columns-ja_JA.mo +0 -0
  124. languages/codepress-admin-columns-ja_JA.po +106 -63
  125. languages/codepress-admin-columns-nl_NL.mo +0 -0
  126. languages/codepress-admin-columns-nl_NL.po +106 -63
  127. languages/codepress-admin-columns-pl_PL.po +106 -63
  128. languages/codepress-admin-columns-ro_RO.mo +0 -0
  129. languages/codepress-admin-columns-ro_RO.po +109 -66
  130. languages/codepress-admin-columns-ru_RU.mo +0 -0
  131. languages/codepress-admin-columns-ru_RU.po +397 -354
  132. languages/codepress-admin-columns-sv_SE.mo +0 -0
  133. languages/codepress-admin-columns-sv_SE.po +123 -80
  134. languages/codepress-admin-columns-zh_CN.po +106 -63
  135. languages/codepress-admin-columns.pot +241 -113
  136. readme.txt +45 -2
api.php CHANGED
@@ -87,15 +87,6 @@ function ac_is_version_gte( $version ) {
87
  return version_compare( AC()->get_version(), $version, '>=' );
88
  }
89
 
90
- /**
91
- * Returns row actions for the WP_List_Tables
92
- *
93
- * @return AC_Column_ActionColumnHelper
94
- */
95
- function ac_action_column_helper() {
96
- return AC_Column_ActionColumnHelper::instance();
97
- }
98
-
99
  /**
100
  * Manually set the columns for a list screen
101
  * This overrides the database settings and thus renders the settings screen for this list screen useless
87
  return version_compare( AC()->get_version(), $version, '>=' );
88
  }
89
 
 
 
 
 
 
 
 
 
 
90
  /**
91
  * Manually set the columns for a list screen
92
  * This overrides the database settings and thus renders the settings screen for this list screen useless
assets/css/table.css CHANGED
@@ -1,3 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /* =Status icons
2
  -------------------------------------------------------------- */
3
  .column-status .dashicons {
@@ -10,6 +36,74 @@
10
  font-size: 15px;
11
  margin-left: -2px; }
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  /* =General
14
  -------------------------------------------------------------- */
15
  .ac-divider {
@@ -35,13 +129,13 @@ span.status-closed {
35
  vertical-align: middle;
36
  margin-bottom: 4px; }
37
 
38
- .tablenav.top .cpac-edit {
39
  top: 2px;
40
  display: inline-block;
41
  vertical-align: middle;
42
  float: left;
43
  margin-bottom: 4px; }
44
- body.edit-tags-php .tablenav.top .cpac-edit {
45
  float: none; }
46
 
47
  span.dashicons.flip:before {
@@ -87,10 +181,10 @@ body.users-php .tablenav .actions a.add-new-h2 {
87
  margin-bottom: 4px; }
88
  .tablenav.top .actions * {
89
  display: none; }
90
- .tablenav.top .actions .cpac-edit {
91
  display: inline-block; } }
92
 
93
- body.upload-php .tablenav.top .cpac-edit {
94
  float: none; }
95
 
96
  /* =Column values
@@ -124,6 +218,58 @@ table.ac-table-items {
124
  padding-right: 6px;
125
  text-align: left; }
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  /* =Storage Space column
128
  -------------------------------------------------------------- */
129
  .ac-upload-space .ac-upload-space-labels {
@@ -187,7 +333,7 @@ table.ac-table-items {
187
 
188
  /* =Network screen
189
  -------------------------------------------------------------- */
190
- #form-site-list .tablenav .actions .cpac-edit {
191
  float: none; }
192
 
193
  /* =General Column
@@ -245,12 +391,17 @@ table.ac-table-items {
245
 
246
  /* =Images Column
247
  -------------------------------------------------------------- */
 
 
 
248
  .ac-image {
249
  display: inline-block;
250
  margin-right: 2px;
 
251
  overflow: hidden;
252
  max-width: 100%;
253
- background-color: #ccc; }
 
254
  .ac-image img {
255
  display: block;
256
  margin: 0 auto; }
@@ -345,11 +496,6 @@ div.cpac-color span {
345
  margin-left: 12px;
346
  margin-right: 0; }
347
 
348
- /* =Available Sizes column
349
- -------------------------------------------------------------- */
350
- div.sizes span.not-available {
351
- color: #999; }
352
-
353
  /* =Actions column
354
  -------------------------------------------------------------- */
355
  .button.cpac-button-action {
@@ -410,9 +556,9 @@ div.sizes span.not-available {
410
  left: 0;
411
  width: 100%;
412
  height: 100%; }
413
- .column-actions.cpac_use_icons .row-actions > span.edit a, .column-actions.cpac_use_icons .row-actions > span.inline a, .column-actions.cpac_use_icons .row-actions > span.trash a, .column-actions.cpac_use_icons .row-actions > span.view a, .column-actions.cpac_use_icons .row-actions > span.quickedit a, .column-actions.cpac_use_icons .row-actions > span.approve a, .column-actions.cpac_use_icons .row-actions > span.unapprove a, .column-actions.cpac_use_icons .row-actions > span.spam a, .column-actions.cpac_use_icons .row-actions > span.untrash a, .column-actions.cpac_use_icons .row-actions > span.unspam a, .column-actions.cpac_use_icons .row-actions > span.reply a, .column-actions.cpac_use_icons .row-actions > span.delete a {
414
  text-indent: -3000px; }
415
- .column-actions.cpac_use_icons .row-actions > span.edit a:before, .column-actions.cpac_use_icons .row-actions > span.inline a:before, .column-actions.cpac_use_icons .row-actions > span.trash a:before, .column-actions.cpac_use_icons .row-actions > span.view a:before, .column-actions.cpac_use_icons .row-actions > span.quickedit a:before, .column-actions.cpac_use_icons .row-actions > span.approve a:before, .column-actions.cpac_use_icons .row-actions > span.unapprove a:before, .column-actions.cpac_use_icons .row-actions > span.spam a:before, .column-actions.cpac_use_icons .row-actions > span.untrash a:before, .column-actions.cpac_use_icons .row-actions > span.unspam a:before, .column-actions.cpac_use_icons .row-actions > span.reply a:before, .column-actions.cpac_use_icons .row-actions > span.delete a:before {
416
  text-indent: 0;
417
  font-family: Dashicons, sans-serif; }
418
  .column-actions.cpac_use_icons .row-actions > span.edit a:before {
@@ -440,6 +586,20 @@ div.sizes span.not-available {
440
  content: "\f171"; }
441
  .column-actions.cpac_use_icons .row-actions > span.delete a:before {
442
  content: "\f182"; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
 
444
  /* Responsive table screen
445
  -------------------------------------------------------------- */
1
+ @charset "UTF-8";
2
+ @font-face {
3
+ font-family: "cpac_icons";
4
+ src: url("../fonts/cpac_icons.woff") format("woff"); }
5
+
6
+ [class^="cpacicon-"], [class*=" cpacicon-"] {
7
+ font-family: 'cpac_icons';
8
+ speak: none;
9
+ font-style: normal;
10
+ font-weight: normal;
11
+ font-variant: normal;
12
+ text-transform: none;
13
+ line-height: 1;
14
+ /* Better Font Rendering =========== */
15
+ -webkit-font-smoothing: antialiased;
16
+ -moz-osx-font-smoothing: grayscale; }
17
+ [class^="cpacicon-"]:before, [class*=" cpacicon-"]:before {
18
+ font-size: 100%; }
19
+
20
+ .cpacicon-draft:before {
21
+ content: ""; }
22
+
23
+ .cpacicon-move:before {
24
+ content: ""; }
25
+
26
+ /* Dynamic variables */
27
  /* =Status icons
28
  -------------------------------------------------------------- */
29
  .column-status .dashicons {
36
  font-size: 15px;
37
  margin-left: -2px; }
38
 
39
+ /* =Available Sizes column
40
+ -------------------------------------------------------------- */
41
+ .ac-image-sizes .ac-missing-size {
42
+ color: #929292; }
43
+
44
+ /* =Comments bubble
45
+ -------------------------------------------------------------- */
46
+ .ac-comment-bubble .post-com-count {
47
+ display: inline-block;
48
+ vertical-align: top; }
49
+
50
+ .ac-comment-bubble .post-com-count-no-comments,
51
+ .ac-comment-bubble .post-com-count-approved {
52
+ margin-top: 5px; }
53
+
54
+ .ac-comment-bubble .comment-count-no-comments,
55
+ .ac-comment-bubble .comment-count-approved {
56
+ -webkit-box-sizing: border-box;
57
+ -moz-box-sizing: border-box;
58
+ box-sizing: border-box;
59
+ display: block;
60
+ padding: 0 8px;
61
+ min-width: 24px;
62
+ height: 2em;
63
+ -webkit-border-radius: 5px;
64
+ border-radius: 5px;
65
+ background-color: #72777c;
66
+ color: #fff;
67
+ font-size: 11px;
68
+ line-height: 21px;
69
+ text-align: center; }
70
+
71
+ .ac-comment-bubble .post-com-count-no-comments:after,
72
+ .ac-comment-bubble .post-com-count-approved:after {
73
+ content: "";
74
+ display: block;
75
+ margin-left: 8px;
76
+ width: 0;
77
+ height: 0;
78
+ border-top: 5px solid #72777c;
79
+ border-right: 5px solid transparent; }
80
+
81
+ .ac-comment-bubble .post-com-count-approved:hover .comment-count-approved,
82
+ .ac-comment-bubble .post-com-count-approved:focus .comment-count-approved {
83
+ background: #0073aa; }
84
+
85
+ .ac-comment-bubble .post-com-count-approved:hover:after,
86
+ .ac-comment-bubble .post-com-count-approved:focus:after {
87
+ border-top-color: #0073aa; }
88
+
89
+ .ac-comment-bubble .post-com-count-pending {
90
+ position: relative;
91
+ left: -3px;
92
+ padding: 0 5px;
93
+ min-width: 7px;
94
+ height: 17px;
95
+ border: 2px solid #fff;
96
+ -webkit-border-radius: 11px;
97
+ border-radius: 11px;
98
+ background: #ca4a1f;
99
+ color: #fff;
100
+ font-size: 9px;
101
+ line-height: 17px;
102
+ text-align: center; }
103
+
104
+ .ac-comment-bubble .post-com-count-no-pending {
105
+ display: none; }
106
+
107
  /* =General
108
  -------------------------------------------------------------- */
109
  .ac-divider {
129
  vertical-align: middle;
130
  margin-bottom: 4px; }
131
 
132
+ .tablenav.top .ac-button {
133
  top: 2px;
134
  display: inline-block;
135
  vertical-align: middle;
136
  float: left;
137
  margin-bottom: 4px; }
138
+ body.edit-tags-php .tablenav.top .ac-button {
139
  float: none; }
140
 
141
  span.dashicons.flip:before {
181
  margin-bottom: 4px; }
182
  .tablenav.top .actions * {
183
  display: none; }
184
+ .tablenav.top .actions .ac-button {
185
  display: inline-block; } }
186
 
187
+ body.upload-php .tablenav.top .ac-button {
188
  float: none; }
189
 
190
  /* =Column values
218
  padding-right: 6px;
219
  text-align: left; }
220
 
221
+ /* =Post Format column
222
+ -------------------------------------------------------------- */
223
+ .ac-post-state-format:before {
224
+ color: #a7a7a7; }
225
+
226
+ /* =Image in Content column
227
+ -------------------------------------------------------------- */
228
+ .ac-image-details .ac-image-info {
229
+ display: inline-block;
230
+ border-radius: 7px;
231
+ padding: 0 9px;
232
+ min-height: 20px;
233
+ background-color: #e9e9e9;
234
+ text-align: left;
235
+ font-size: 11px;
236
+ font-weight: bold;
237
+ margin: 0 6px 5px 0;
238
+ white-space: nowrap; }
239
+ .ac-image-details .ac-image-info > span {
240
+ margin-right: 6px; }
241
+ .ac-image-details .ac-image-info > span:last-child {
242
+ margin-right: 0; }
243
+ .ac-image-details .ac-image-info span {
244
+ vertical-align: middle;
245
+ line-height: 20px; }
246
+ .ac-image-details .ac-image-info span.image-id {
247
+ font-size: 11px;
248
+ color: #757575; }
249
+ .ac-image-details .ac-image-info span.image-file-size {
250
+ font-size: 12px; }
251
+ .ac-image-details .ac-image-info span.image-extension {
252
+ text-transform: uppercase;
253
+ font-size: 11px;
254
+ color: #757575; }
255
+ .ac-image-details .ac-image-info span.suffix {
256
+ display: inline-block;
257
+ text-transform: uppercase;
258
+ font-size: 10px;
259
+ color: #757575;
260
+ padding-left: 3px;
261
+ margin-top: -2px; }
262
+ .ac-image-details .ac-image-info span.dashicons {
263
+ margin-top: -2px;
264
+ color: #757575;
265
+ font-size: 14px;
266
+ width: 16px; }
267
+
268
+ .ac-image-details a.ac-image-info:hover {
269
+ color: #0073aa; }
270
+ .ac-image-details a.ac-image-info:hover span.dashicons {
271
+ color: #3d4350; }
272
+
273
  /* =Storage Space column
274
  -------------------------------------------------------------- */
275
  .ac-upload-space .ac-upload-space-labels {
333
 
334
  /* =Network screen
335
  -------------------------------------------------------------- */
336
+ #form-site-list .tablenav .actions .ac-button {
337
  float: none; }
338
 
339
  /* =General Column
391
 
392
  /* =Images Column
393
  -------------------------------------------------------------- */
394
+ .ac-image-container {
395
+ margin-bottom: -6px; }
396
+
397
  .ac-image {
398
  display: inline-block;
399
  margin-right: 2px;
400
+ margin-bottom: 6px;
401
  overflow: hidden;
402
  max-width: 100%;
403
+ background-color: #ccc;
404
+ vertical-align: middle; }
405
  .ac-image img {
406
  display: block;
407
  margin: 0 auto; }
496
  margin-left: 12px;
497
  margin-right: 0; }
498
 
 
 
 
 
 
499
  /* =Actions column
500
  -------------------------------------------------------------- */
501
  .button.cpac-button-action {
556
  left: 0;
557
  width: 100%;
558
  height: 100%; }
559
+ .column-actions.cpac_use_icons .row-actions > span.edit a, .column-actions.cpac_use_icons .row-actions > span.inline a, .column-actions.cpac_use_icons .row-actions > span.trash a, .column-actions.cpac_use_icons .row-actions > span.view a, .column-actions.cpac_use_icons .row-actions > span.quickedit a, .column-actions.cpac_use_icons .row-actions > span.approve a, .column-actions.cpac_use_icons .row-actions > span.unapprove a, .column-actions.cpac_use_icons .row-actions > span.spam a, .column-actions.cpac_use_icons .row-actions > span.untrash a, .column-actions.cpac_use_icons .row-actions > span.unspam a, .column-actions.cpac_use_icons .row-actions > span.reply a, .column-actions.cpac_use_icons .row-actions > span.delete a, .column-actions.cpac_use_icons .row-actions > span.backend a, .column-actions.cpac_use_icons .row-actions > span.visit a, .column-actions.cpac_use_icons .row-actions > span.deactivate a, .column-actions.cpac_use_icons .row-actions > span.archive a, .column-actions.cpac_use_icons .row-actions > span.unarchive a, .column-actions.cpac_use_icons .row-actions > span.activate a, .column-actions.cpac_use_icons .row-actions > span.download a {
560
  text-indent: -3000px; }
561
+ .column-actions.cpac_use_icons .row-actions > span.edit a:before, .column-actions.cpac_use_icons .row-actions > span.inline a:before, .column-actions.cpac_use_icons .row-actions > span.trash a:before, .column-actions.cpac_use_icons .row-actions > span.view a:before, .column-actions.cpac_use_icons .row-actions > span.quickedit a:before, .column-actions.cpac_use_icons .row-actions > span.approve a:before, .column-actions.cpac_use_icons .row-actions > span.unapprove a:before, .column-actions.cpac_use_icons .row-actions > span.spam a:before, .column-actions.cpac_use_icons .row-actions > span.untrash a:before, .column-actions.cpac_use_icons .row-actions > span.unspam a:before, .column-actions.cpac_use_icons .row-actions > span.reply a:before, .column-actions.cpac_use_icons .row-actions > span.delete a:before, .column-actions.cpac_use_icons .row-actions > span.backend a:before, .column-actions.cpac_use_icons .row-actions > span.visit a:before, .column-actions.cpac_use_icons .row-actions > span.deactivate a:before, .column-actions.cpac_use_icons .row-actions > span.archive a:before, .column-actions.cpac_use_icons .row-actions > span.unarchive a:before, .column-actions.cpac_use_icons .row-actions > span.activate a:before, .column-actions.cpac_use_icons .row-actions > span.download a:before {
562
  text-indent: 0;
563
  font-family: Dashicons, sans-serif; }
564
  .column-actions.cpac_use_icons .row-actions > span.edit a:before {
586
  content: "\f171"; }
587
  .column-actions.cpac_use_icons .row-actions > span.delete a:before {
588
  content: "\f182"; }
589
+ .column-actions.cpac_use_icons .row-actions > span.backend a:before {
590
+ content: "\f226"; }
591
+ .column-actions.cpac_use_icons .row-actions > span.visit a:before {
592
+ content: "\f115"; }
593
+ .column-actions.cpac_use_icons .row-actions > span.deactivate a:before {
594
+ content: "\f530"; }
595
+ .column-actions.cpac_use_icons .row-actions > span.archive a:before {
596
+ content: "\f480"; }
597
+ .column-actions.cpac_use_icons .row-actions > span.unarchive a:before {
598
+ content: "\f322"; }
599
+ .column-actions.cpac_use_icons .row-actions > span.activate a:before {
600
+ content: "\f177"; }
601
+ .column-actions.cpac_use_icons .row-actions > span.download a:before {
602
+ content: "\f316"; }
603
 
604
  /* Responsive table screen
605
  -------------------------------------------------------------- */
assets/css/table.min.css CHANGED
@@ -1 +1 @@
1
- .column-status .dashicons{font-size:22px}.column-status .dashicons.large{width:25px;height:28px;font-size:28px}.column-status .dashicons.dashicons-lock{font-size:15px;margin-left:-2px}.ac-divider{display:inline-block;width:14px;height:12px;background:transparent url(../images/square.png) no-repeat 50% 7px}span.status-closed{color:red}.ac-value-stars{white-space:nowrap;word-wrap:normal;display:block}.ac-value-stars .ac-value-star{font-size:16px;width:auto;margin-right:-3px}.actions #post-query-submit,.tablenav.top .cpac-edit{float:left;vertical-align:middle;margin-bottom:4px}.tablenav.top .cpac-edit{top:2px;display:inline-block}body.edit-tags-php .tablenav.top .cpac-edit{float:none}span.dashicons.flip:before{transform:scaleX(-1);display:inline-block}span.dashicons.yellow{color:#ffb900}span.dashicons.orange{color:#d54e21}span.dashicons.red{color:#dc3232}span.dashicons.green{color:#46b450}span.dashicons.light-gray{color:#bbb}span.dashicons.gray{color:#8a8a8a}span.dashicons.blue{color:#0073aa}span.dashicons.light-blue{color:#00a0d2}body.edit-php #delete_all{float:left;margin-right:3px}body.users-php .tablenav .actions a.add-new-h2{float:none;vertical-align:middle!important;top:2px!important}@media screen and (max-width:782px){.tablenav.top .actions{display:block!important;margin-bottom:4px}.tablenav.top .actions *{display:none}.tablenav.top .actions .cpac-edit{display:inline-block}}body.upload-php .tablenav.top .cpac-edit{float:none}.ac-toggle-box-link:focus{outline:none;box-shadow:none}.ac-toggle-box-link .spinner{float:none;margin-top:-2px}.ac-toggle-box-link.loading .spinner{visibility:visible}.ac-toggle-box-contents-ajax{padding:5px 0 0}.ac-toggle-box-contents{display:none;padding:5px 0 0}table.ac-table-items{border-spacing:0}table.ac-table-items tr td{border:0;margin:0;padding:0 0 3px}table.ac-table-items tr td.ac-table-item-qty{color:#999;padding-right:6px;text-align:left}.ac-upload-space .ac-upload-space-labels{display:table;width:100%}.ac-upload-space .ac-upload-space-labels .inner{display:table-row}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon{display:table-cell}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon:before{color:#82878c;content:"\f104";display:inline-block;font-family:dashicons,serif;width:20px;height:20px;font-size:18px;line-height:1;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:4px}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-left{display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-right{width:100%;text-align:right;padding-left:6px;display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-progress{margin-top:6px;height:3px;background:#fff;border:1px solid #dfdfdf;position:relative}.ac-upload-space .ac-upload-space-progress .ac-upload-space-progress-bar{background-color:#46b450;height:100%;display:block}.ac-upload-space.warning .ac-upload-space-icon:before{color:#ffb900;content:"\f534";margin-top:1px}.ac-upload-space.warning .ac-upload-space-progress-bar{background-color:#ffb900}.ac-upload-space.full .ac-upload-space-icon:before{color:#d54e21;content:"\f153";margin-top:1px}.ac-upload-space.full .ac-upload-space-progress-bar{background-color:#dc3232}#form-site-list .tablenav .actions .cpac-edit{float:none}.ac-inline-info{border-radius:3px;min-height:20px;background-color:#e9e9e9;font-size:11px;font-weight:700}.ac-inline-info,.ac-rounded{display:inline-block;min-width:8px;padding:0 6px;text-align:center;margin-right:7px}.ac-rounded{border-radius:10px;height:20px;background-color:#e0e0e0;margin-left:7px;font-size:12px}.ac-rounded.ac-rounded-first{margin-left:0}.ac-spacing{display:inline-block;margin-right:10px;margin-bottom:4px}.cpac-suffix{margin-left:8px;color:gray}.ac-small-block{display:inline-block;border-radius:3px;background-color:hsla(0,0%,88%,.6);padding:2px 7px;margin:0 5px 5px 0}.ac-more-link-show{cursor:pointer}.ac-show-more-block{display:none}.ac-more-link-hide{cursor:pointer}.ac-image{display:inline-block;margin-right:2px;overflow:hidden;max-width:100%;background-color:#ccc}.ac-image img{display:block;margin:0 auto}.ac-image .ac-extension{font-size:12px;line-height:22px;display:block;text-align:center;text-transform:uppercase;font-weight:700}.ac-image.ac-icon{background-color:transparent}.rtl .column-column-attachment img{padding-left:5px;padding-right:0}.ac-progress-bar{width:100%;display:flex}.ac-progress-bar .ac-label-main{width:65px}.ac-progress-bar .ac-bar-container{flex:auto;background-color:#fff;min-height:22px;line-height:22px;position:relative;border:1px solid #ccc;border-radius:2px}.ac-progress-bar .ac-bar-container .ac-bar{height:100%;background-color:#69c471;border-right:1px solid #fff}.ac-progress-bar .ac-bar-container .ac-label-left,.ac-progress-bar .ac-bar-container .ac-label-right{text-shadow:hsla(0,0%,100%,.65) 0 0 5px;color:#555;position:absolute}.ac-progress-bar .ac-bar-container .ac-label-left{left:5px}.ac-progress-bar .ac-bar-container .ac-label-right{right:5px}.ac-progress-bar.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,.45);border:none}.ac-progress-bar.dark .ac-bar-container{flex:auto;background-color:#a6a6a6;min-height:22px;line-height:22px;position:relative}.ac-progress-bar.dark .ac-bar-container .ac-bar{height:100%;background-color:#46b450;border-right:1px solid #fff}.ac-progress-bar.dark .ac-bar-container .ac-label-left{color:#fff;position:absolute;left:5px}.ac-progress-bar.dark .ac-bar-container .ac-label-right{color:#fff;position:absolute;right:5px}.ac-progress-bar.dark.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,.68);border:none}div.cpac-color{line-height:26px}div.cpac-color span{display:block;border-radius:3px;color:#fff;float:left;height:16px;line-height:16px;margin-right:12px;overflow:hidden;padding:4px 5px;font-size:10px;font-family:Monaco,Menlo,Consolas,Courier New,monospace;min-width:47px;text-align:center}.rtl div.cpac-color span{float:right;margin-left:12px;margin-right:0}div.sizes span.not-available{color:#999}.button.cpac-button-action{position:relative;text-indent:9999px;margin-right:4px;padding:0 13px;overflow:hidden}.button.cpac-button-action:before{position:absolute;top:0;left:0;width:100%;height:100%;text-indent:0}.column-actions.cpac_use_icons .row-actions>span a,.cpac_wp_button{color:#555;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;border-radius:3px;white-space:nowrap;box-sizing:border-box}.column-actions.cpac_use_icons .row-actions>span a:hover,.cpac_wp_button:hover{background:#fafafa;color:#23282d;border-color:#999}.column-actions .row-actions{left:0;position:relative}.column-actions.cpac_use_icons .row-actions>span{color:transparent;margin-right:-8px}.column-actions.cpac_use_icons .row-actions>span a{display:inline-block;position:relative;min-width:26px;margin-bottom:5px}.column-actions.cpac_use_icons .row-actions>span a:before{text-indent:0;font-family:Dashicons,sans-serif;font-size:16px;position:absolute;padding-left:4px;top:0;left:0;width:100%;height:100%}.column-actions.cpac_use_icons .row-actions>span.approve a,.column-actions.cpac_use_icons .row-actions>span.delete a,.column-actions.cpac_use_icons .row-actions>span.edit a,.column-actions.cpac_use_icons .row-actions>span.inline a,.column-actions.cpac_use_icons .row-actions>span.quickedit a,.column-actions.cpac_use_icons .row-actions>span.reply a,.column-actions.cpac_use_icons .row-actions>span.spam a,.column-actions.cpac_use_icons .row-actions>span.trash a,.column-actions.cpac_use_icons .row-actions>span.unapprove a,.column-actions.cpac_use_icons .row-actions>span.unspam a,.column-actions.cpac_use_icons .row-actions>span.untrash a,.column-actions.cpac_use_icons .row-actions>span.view a{text-indent:-3000px}.column-actions.cpac_use_icons .row-actions>span.approve a:before,.column-actions.cpac_use_icons .row-actions>span.delete a:before,.column-actions.cpac_use_icons .row-actions>span.edit a:before,.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before,.column-actions.cpac_use_icons .row-actions>span.reply a:before,.column-actions.cpac_use_icons .row-actions>span.spam a:before,.column-actions.cpac_use_icons .row-actions>span.trash a:before,.column-actions.cpac_use_icons .row-actions>span.unapprove a:before,.column-actions.cpac_use_icons .row-actions>span.unspam a:before,.column-actions.cpac_use_icons .row-actions>span.untrash a:before,.column-actions.cpac_use_icons .row-actions>span.view a:before{text-indent:0;font-family:Dashicons,sans-serif}.column-actions.cpac_use_icons .row-actions>span.edit a:before{content:"\f464"}.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before{content:"\f119"}.column-actions.cpac_use_icons .row-actions>span.trash a{border-radius:3px;border:1px solid #ccc}.column-actions.cpac_use_icons .row-actions>span.trash a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.trash a:hover{border-color:#999}.column-actions.cpac_use_icons .row-actions>span.view a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.unapprove a:before{content:"\f158"}.column-actions.cpac_use_icons .row-actions>span.approve a:before{content:"\f147"}.column-actions.cpac_use_icons .row-actions>span.spam a:before{content:"\f117"}.column-actions.cpac_use_icons .row-actions>span.reply a:before{content:"\f473"}.column-actions.cpac_use_icons .row-actions>span.unspam a:before,.column-actions.cpac_use_icons .row-actions>span.untrash a:before{content:"\f171"}.column-actions.cpac_use_icons .row-actions>span.delete a:before{content:"\f182"}@media screen and (max-width:782px){.wp-list-table.widefat thead th{display:none}.wp-list-table.widefat thead th.column-primary{display:table-cell}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td{display:none}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td.column-primary{display:block}}.ac-tip{display:inline-block}.qtip.qtip-tipsy{background:rgba(0,0,0,.75);font-weight:400;min-width:25px}
1
+ @charset "UTF-8";@font-face{font-family:cpac_icons;src:url(../fonts/cpac_icons.woff) format("woff")}[class*=" cpacicon-"],[class^=cpacicon-]{font-family:cpac_icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=" cpacicon-"]:before,[class^=cpacicon-]:before{font-size:100%}.cpacicon-draft:before{content:""}.cpacicon-move:before{content:""}.column-status .dashicons{font-size:22px}.column-status .dashicons.large{width:25px;height:28px;font-size:28px}.column-status .dashicons.dashicons-lock{font-size:15px;margin-left:-2px}.ac-image-sizes .ac-missing-size{color:#929292}.ac-comment-bubble .post-com-count{display:inline-block;vertical-align:top}.ac-comment-bubble .post-com-count-approved,.ac-comment-bubble .post-com-count-no-comments{margin-top:5px}.ac-comment-bubble .comment-count-approved,.ac-comment-bubble .comment-count-no-comments{box-sizing:border-box;display:block;padding:0 8px;min-width:24px;height:2em;border-radius:5px;background-color:#72777c;color:#fff;font-size:11px;line-height:21px;text-align:center}.ac-comment-bubble .post-com-count-approved:after,.ac-comment-bubble .post-com-count-no-comments:after{content:"";display:block;margin-left:8px;width:0;height:0;border-top:5px solid #72777c;border-right:5px solid transparent}.ac-comment-bubble .post-com-count-approved:focus .comment-count-approved,.ac-comment-bubble .post-com-count-approved:hover .comment-count-approved{background:#0073aa}.ac-comment-bubble .post-com-count-approved:focus:after,.ac-comment-bubble .post-com-count-approved:hover:after{border-top-color:#0073aa}.ac-comment-bubble .post-com-count-pending{position:relative;left:-3px;padding:0 5px;min-width:7px;height:17px;border:2px solid #fff;border-radius:11px;background:#ca4a1f;color:#fff;font-size:9px;line-height:17px;text-align:center}.ac-comment-bubble .post-com-count-no-pending{display:none}.ac-divider{display:inline-block;width:14px;height:12px;background:transparent url(../images/square.png) no-repeat 50% 7px}span.status-closed{color:red}.ac-value-stars{white-space:nowrap;word-wrap:normal;display:block}.ac-value-stars .ac-value-star{font-size:16px;width:auto;margin-right:-3px}.actions #post-query-submit,.tablenav.top .ac-button{float:left;vertical-align:middle;margin-bottom:4px}.tablenav.top .ac-button{top:2px;display:inline-block}body.edit-tags-php .tablenav.top .ac-button{float:none}span.dashicons.flip:before{transform:scaleX(-1);display:inline-block}span.dashicons.yellow{color:#ffb900}span.dashicons.orange{color:#d54e21}span.dashicons.red{color:#dc3232}span.dashicons.green{color:#46b450}span.dashicons.light-gray{color:#bbb}span.dashicons.gray{color:#8a8a8a}span.dashicons.blue{color:#0073aa}span.dashicons.light-blue{color:#00a0d2}body.edit-php #delete_all{float:left;margin-right:3px}body.users-php .tablenav .actions a.add-new-h2{float:none;vertical-align:middle!important;top:2px!important}@media screen and (max-width:782px){.tablenav.top .actions{display:block!important;margin-bottom:4px}.tablenav.top .actions *{display:none}.tablenav.top .actions .ac-button{display:inline-block}}body.upload-php .tablenav.top .ac-button{float:none}.ac-toggle-box-link:focus{outline:none;box-shadow:none}.ac-toggle-box-link .spinner{float:none;margin-top:-2px}.ac-toggle-box-link.loading .spinner{visibility:visible}.ac-toggle-box-contents-ajax{padding:5px 0 0}.ac-toggle-box-contents{display:none;padding:5px 0 0}table.ac-table-items{border-spacing:0}table.ac-table-items tr td{border:0;margin:0;padding:0 0 3px}table.ac-table-items tr td.ac-table-item-qty{color:#999;padding-right:6px;text-align:left}.ac-post-state-format:before{color:#a7a7a7}.ac-image-details .ac-image-info{display:inline-block;border-radius:7px;padding:0 9px;min-height:20px;background-color:#e9e9e9;text-align:left;font-size:11px;font-weight:700;margin:0 6px 5px 0;white-space:nowrap}.ac-image-details .ac-image-info>span{margin-right:6px}.ac-image-details .ac-image-info>span:last-child{margin-right:0}.ac-image-details .ac-image-info span{vertical-align:middle;line-height:20px}.ac-image-details .ac-image-info span.image-id{font-size:11px;color:#757575}.ac-image-details .ac-image-info span.image-file-size{font-size:12px}.ac-image-details .ac-image-info span.image-extension{text-transform:uppercase;font-size:11px;color:#757575}.ac-image-details .ac-image-info span.suffix{display:inline-block;text-transform:uppercase;font-size:10px;color:#757575;padding-left:3px;margin-top:-2px}.ac-image-details .ac-image-info span.dashicons{margin-top:-2px;color:#757575;font-size:14px;width:16px}.ac-image-details a.ac-image-info:hover{color:#0073aa}.ac-image-details a.ac-image-info:hover span.dashicons{color:#3d4350}.ac-upload-space .ac-upload-space-labels{display:table;width:100%}.ac-upload-space .ac-upload-space-labels .inner{display:table-row}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon{display:table-cell}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon:before{color:#82878c;content:"\f104";display:inline-block;font-family:dashicons,serif;width:20px;height:20px;font-size:18px;line-height:1;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:4px}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-left{display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-right{width:100%;text-align:right;padding-left:6px;display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-progress{margin-top:6px;height:3px;background:#fff;border:1px solid #dfdfdf;position:relative}.ac-upload-space .ac-upload-space-progress .ac-upload-space-progress-bar{background-color:#46b450;height:100%;display:block}.ac-upload-space.warning .ac-upload-space-icon:before{color:#ffb900;content:"\f534";margin-top:1px}.ac-upload-space.warning .ac-upload-space-progress-bar{background-color:#ffb900}.ac-upload-space.full .ac-upload-space-icon:before{color:#d54e21;content:"\f153";margin-top:1px}.ac-upload-space.full .ac-upload-space-progress-bar{background-color:#dc3232}#form-site-list .tablenav .actions .ac-button{float:none}.ac-inline-info{border-radius:3px;min-height:20px;background-color:#e9e9e9;font-size:11px;font-weight:700}.ac-inline-info,.ac-rounded{display:inline-block;min-width:8px;padding:0 6px;text-align:center;margin-right:7px}.ac-rounded{border-radius:10px;height:20px;background-color:#e0e0e0;margin-left:7px;font-size:12px}.ac-rounded.ac-rounded-first{margin-left:0}.ac-spacing{display:inline-block;margin-right:10px;margin-bottom:4px}.cpac-suffix{margin-left:8px;color:gray}.ac-small-block{display:inline-block;border-radius:3px;background-color:hsla(0,0%,88%,.6);padding:2px 7px;margin:0 5px 5px 0}.ac-more-link-show{cursor:pointer}.ac-show-more-block{display:none}.ac-more-link-hide{cursor:pointer}.ac-image-container{margin-bottom:-6px}.ac-image{display:inline-block;margin-right:2px;margin-bottom:6px;overflow:hidden;max-width:100%;background-color:#ccc;vertical-align:middle}.ac-image img{display:block;margin:0 auto}.ac-image .ac-extension{font-size:12px;line-height:22px;display:block;text-align:center;text-transform:uppercase;font-weight:700}.ac-image.ac-icon{background-color:transparent}.rtl .column-column-attachment img{padding-left:5px;padding-right:0}.ac-progress-bar{width:100%;display:flex}.ac-progress-bar .ac-label-main{width:65px}.ac-progress-bar .ac-bar-container{flex:auto;background-color:#fff;min-height:22px;line-height:22px;position:relative;border:1px solid #ccc;border-radius:2px}.ac-progress-bar .ac-bar-container .ac-bar{height:100%;background-color:#69c471;border-right:1px solid #fff}.ac-progress-bar .ac-bar-container .ac-label-left,.ac-progress-bar .ac-bar-container .ac-label-right{text-shadow:hsla(0,0%,100%,.65) 0 0 5px;color:#555;position:absolute}.ac-progress-bar .ac-bar-container .ac-label-left{left:5px}.ac-progress-bar .ac-bar-container .ac-label-right{right:5px}.ac-progress-bar.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,.45);border:none}.ac-progress-bar.dark .ac-bar-container{flex:auto;background-color:#a6a6a6;min-height:22px;line-height:22px;position:relative}.ac-progress-bar.dark .ac-bar-container .ac-bar{height:100%;background-color:#46b450;border-right:1px solid #fff}.ac-progress-bar.dark .ac-bar-container .ac-label-left{color:#fff;position:absolute;left:5px}.ac-progress-bar.dark .ac-bar-container .ac-label-right{color:#fff;position:absolute;right:5px}.ac-progress-bar.dark.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,.68);border:none}div.cpac-color{line-height:26px}div.cpac-color span{display:block;border-radius:3px;color:#fff;float:left;height:16px;line-height:16px;margin-right:12px;overflow:hidden;padding:4px 5px;font-size:10px;font-family:Monaco,Menlo,Consolas,Courier New,monospace;min-width:47px;text-align:center}.rtl div.cpac-color span{float:right;margin-left:12px;margin-right:0}.button.cpac-button-action{position:relative;text-indent:9999px;margin-right:4px;padding:0 13px;overflow:hidden}.button.cpac-button-action:before{position:absolute;top:0;left:0;width:100%;height:100%;text-indent:0}.column-actions.cpac_use_icons .row-actions>span a,.cpac_wp_button{color:#555;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;border-radius:3px;white-space:nowrap;box-sizing:border-box}.column-actions.cpac_use_icons .row-actions>span a:hover,.cpac_wp_button:hover{background:#fafafa;color:#23282d;border-color:#999}.column-actions .row-actions{left:0;position:relative}.column-actions.cpac_use_icons .row-actions>span{color:transparent;margin-right:-8px}.column-actions.cpac_use_icons .row-actions>span a{display:inline-block;position:relative;min-width:26px;margin-bottom:5px}.column-actions.cpac_use_icons .row-actions>span a:before{text-indent:0;font-family:Dashicons,sans-serif;font-size:16px;position:absolute;padding-left:4px;top:0;left:0;width:100%;height:100%}.column-actions.cpac_use_icons .row-actions>span.activate a,.column-actions.cpac_use_icons .row-actions>span.approve a,.column-actions.cpac_use_icons .row-actions>span.archive a,.column-actions.cpac_use_icons .row-actions>span.backend a,.column-actions.cpac_use_icons .row-actions>span.deactivate a,.column-actions.cpac_use_icons .row-actions>span.delete a,.column-actions.cpac_use_icons .row-actions>span.download a,.column-actions.cpac_use_icons .row-actions>span.edit a,.column-actions.cpac_use_icons .row-actions>span.inline a,.column-actions.cpac_use_icons .row-actions>span.quickedit a,.column-actions.cpac_use_icons .row-actions>span.reply a,.column-actions.cpac_use_icons .row-actions>span.spam a,.column-actions.cpac_use_icons .row-actions>span.trash a,.column-actions.cpac_use_icons .row-actions>span.unapprove a,.column-actions.cpac_use_icons .row-actions>span.unarchive a,.column-actions.cpac_use_icons .row-actions>span.unspam a,.column-actions.cpac_use_icons .row-actions>span.untrash a,.column-actions.cpac_use_icons .row-actions>span.view a,.column-actions.cpac_use_icons .row-actions>span.visit a{text-indent:-3000px}.column-actions.cpac_use_icons .row-actions>span.activate a:before,.column-actions.cpac_use_icons .row-actions>span.approve a:before,.column-actions.cpac_use_icons .row-actions>span.archive a:before,.column-actions.cpac_use_icons .row-actions>span.backend a:before,.column-actions.cpac_use_icons .row-actions>span.deactivate a:before,.column-actions.cpac_use_icons .row-actions>span.delete a:before,.column-actions.cpac_use_icons .row-actions>span.download a:before,.column-actions.cpac_use_icons .row-actions>span.edit a:before,.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before,.column-actions.cpac_use_icons .row-actions>span.reply a:before,.column-actions.cpac_use_icons .row-actions>span.spam a:before,.column-actions.cpac_use_icons .row-actions>span.trash a:before,.column-actions.cpac_use_icons .row-actions>span.unapprove a:before,.column-actions.cpac_use_icons .row-actions>span.unarchive a:before,.column-actions.cpac_use_icons .row-actions>span.unspam a:before,.column-actions.cpac_use_icons .row-actions>span.untrash a:before,.column-actions.cpac_use_icons .row-actions>span.view a:before,.column-actions.cpac_use_icons .row-actions>span.visit a:before{text-indent:0;font-family:Dashicons,sans-serif}.column-actions.cpac_use_icons .row-actions>span.edit a:before{content:"\f464"}.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before{content:"\f119"}.column-actions.cpac_use_icons .row-actions>span.trash a{border-radius:3px;border:1px solid #ccc}.column-actions.cpac_use_icons .row-actions>span.trash a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.trash a:hover{border-color:#999}.column-actions.cpac_use_icons .row-actions>span.view a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.unapprove a:before{content:"\f158"}.column-actions.cpac_use_icons .row-actions>span.approve a:before{content:"\f147"}.column-actions.cpac_use_icons .row-actions>span.spam a:before{content:"\f117"}.column-actions.cpac_use_icons .row-actions>span.reply a:before{content:"\f473"}.column-actions.cpac_use_icons .row-actions>span.unspam a:before,.column-actions.cpac_use_icons .row-actions>span.untrash a:before{content:"\f171"}.column-actions.cpac_use_icons .row-actions>span.delete a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.backend a:before{content:"\f226"}.column-actions.cpac_use_icons .row-actions>span.visit a:before{content:"\f115"}.column-actions.cpac_use_icons .row-actions>span.deactivate a:before{content:"\f530"}.column-actions.cpac_use_icons .row-actions>span.archive a:before{content:"\f480"}.column-actions.cpac_use_icons .row-actions>span.unarchive a:before{content:"\f322"}.column-actions.cpac_use_icons .row-actions>span.activate a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.download a:before{content:"\f316"}@media screen and (max-width:782px){.wp-list-table.widefat thead th{display:none}.wp-list-table.widefat thead th.column-primary{display:table-cell}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td{display:none}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td.column-primary{display:block}}.ac-tip{display:inline-block}.qtip.qtip-tipsy{background:rgba(0,0,0,.75);font-weight:400;min-width:25px}
assets/images/addons/events-calendar-icon.png ADDED
Binary file
assets/images/addons/events-calendar.png ADDED
Binary file
assets/images/addons/ninja-forms-icon.png ADDED
Binary file
assets/images/addons/ninja-forms.png ADDED
Binary file
assets/js/admin-page-columns.js CHANGED
@@ -181,6 +181,7 @@ function cpac_init( $ ) {
181
  $( col ).column_bind_remove();
182
  $( col ).column_bind_clone();
183
  $( col ).cpac_bind_indicator_events();
 
184
  } );
185
 
186
  // ordering of columns
@@ -371,6 +372,16 @@ function cpac_reset_columns( $ ) {
371
  } );
372
  };
373
 
 
 
 
 
 
 
 
 
 
 
374
  /*
375
  * Form Events
376
  *
@@ -380,6 +391,7 @@ function cpac_reset_columns( $ ) {
380
  var column = $( this );
381
  var container = column.closest( '.ac-admin ' );
382
 
 
383
  // Current column type
384
  var default_value = column.find( 'select.ac-setting-input_type option:selected' ).val();
385
 
@@ -486,12 +498,6 @@ function cpac_reset_columns( $ ) {
486
  column.cpac_column_refresh();
487
  } );
488
 
489
- /** When an label contains an icon or span, the displayed label can appear empty. In this case we show the "type" label. */
490
- var column_label = column.find( '.column_label .toggle' );
491
- if ( $.trim( column_label.html() ) && column_label.width() < 1 ) {
492
- column_label.html( column.find( '.column_type .inner' ).html() );
493
- }
494
-
495
  $( document ).trigger( 'init_settings', column );
496
  };
497
 
@@ -724,6 +730,7 @@ function cpac_reset_columns( $ ) {
724
 
725
  $( document ).on( 'init_settings', function( e, column ) {
726
  $( column ).find( '.ac-column-setting--image' ).cpac_column_setting_image_size();
 
727
  } );
728
 
729
  // Settings fields: Width
181
  $( col ).column_bind_remove();
182
  $( col ).column_bind_clone();
183
  $( col ).cpac_bind_indicator_events();
184
+ $( col ).column_onload();
185
  } );
186
 
187
  // ordering of columns
372
  } );
373
  };
374
 
375
+ $.fn.column_onload = function() {
376
+ var column = $( this );
377
+
378
+ /** When an label contains an icon or span, the displayed label can appear empty. In this case we show the "type" label. */
379
+ var column_label = column.find( '.column_label .toggle' );
380
+ if ( $.trim( column_label.html() ) && column_label.width() < 1 ) {
381
+ column_label.html( column.find( '.column_type .inner' ).html() );
382
+ }
383
+ };
384
+
385
  /*
386
  * Form Events
387
  *
391
  var column = $( this );
392
  var container = column.closest( '.ac-admin ' );
393
 
394
+ column.column_onload();
395
  // Current column type
396
  var default_value = column.find( 'select.ac-setting-input_type option:selected' ).val();
397
 
498
  column.cpac_column_refresh();
499
  } );
500
 
 
 
 
 
 
 
501
  $( document ).trigger( 'init_settings', column );
502
  };
503
 
730
 
731
  $( document ).on( 'init_settings', function( e, column ) {
732
  $( column ).find( '.ac-column-setting--image' ).cpac_column_setting_image_size();
733
+ $( column ).find( '.ac-column-setting--images' ).cpac_column_setting_image_size();
734
  } );
735
 
736
  // Settings fields: Width
assets/js/admin-page-columns.min.js CHANGED
@@ -1 +1 @@
1
- function ac_show_ajax_message(n,e){var t=jQuery('<div class="ac-message hidden '+e+'"><p>'+n+"</p></div>");jQuery(".ac-boxes").before(t),t.slideDown()}function cpac_submit_form(n){var e=n(".sidebox a.submit, .column-footer a.submit");e.click(function(){var t=n(this),i=t.closest(".ac-admin").addClass("saving"),a=i.find(".ac-columns form").serialize();e.attr("disabled","disabled"),i.find(".ac-message").remove();var c=n.post(ajaxurl,{action:"ac_columns_save",data:a,_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,original_columns:AC.original_columns},function(n){n&&(n.success?(ac_show_ajax_message(n.data,"updated"),i.addClass("stored")):n.data&&ac_show_ajax_message(n.data.message,"notice notice-warning"))},"json");c.fail(function(n){}),c.always(function(){e.removeAttr("disabled","disabled"),i.removeClass("saving")}),n(document).trigger("cac_update",i)})}function cpac_add_column(n){n(".add_column").click(function(e){e.preventDefault();var t=n("#add-new-column-template").find(".ac-column").clone();t.cpac_update_clone_id(),t.addClass("opened").find(".ac-column-body").slideDown(150,function(){n("html, body").animate({scrollTop:t.offset().top-58},300)}),n(".ac-columns form").append(t),t.column_bind_toggle(),t.column_bind_remove(),t.column_bind_clone(),t.column_bind_events(),n(document).trigger("column_add",t)})}function cpac_sidebar_feedback(n){var e=n(".sidebox#direct-feedback");e.find("#feedback-choice a.no").click(function(n){n.preventDefault(),e.find("#feedback-choice").slideUp(),e.find("#feedback-support").slideDown()}),e.find("#feedback-choice a.yes").click(function(n){n.preventDefault(),e.find("#feedback-choice").slideUp(),e.find("#feedback-rate").slideDown()})}function cpac_init(n){var e=n(".ac-admin"),t=e.find(".ac-boxes");if(t.hasClass("disabled"))t.find(".ac-column").each(function(e,t){n(t).column_bind_toggle(),n(t).find("input, select").prop("disabled",!0)});else{var i=t.find(".ac-columns");i.find(".ac-column").each(function(e,t){n(t).column_bind_toggle(),n(t).column_bind_remove(),n(t).column_bind_clone(),n(t).cpac_bind_indicator_events()}),i.cpac_bind_ordering()}n(document).trigger("cac_menu_change",i),n(document).trigger("cac_model_ready",e.data("type"))}function cpac_menu(n){n("#ac_list_screen").on("change",function(){n(".view-link").hide(),n(this).parents("form").submit(),n(this).prop("disabled",!0).next(".spinner").css("display","inline-block")})}function cpac_reset_columns(n){var e=n(".ac-admin");n("a[data-clear-columns]").on("click",function(){e.find(".ac-column").each(function(){n(this).find(".remove-button").trigger("click")})})}var AC,incremental_column_name=0;jQuery(document).ready(function(n){if(0===n("#cpac").length)return!1;cpac_init(n),cpac_submit_form(n),cpac_reset_columns(n),cpac_menu(n),cpac_add_column(n),cpac_sidebar_feedback(n)}),function(n){n.fn.column_bind_toggle=function(){var e=n(this),t=e.closest(".ac-boxes").hasClass("disabled");e.find('[data-toggle="column"]').click(function(i){i.preventDefault(),e.toggleClass("opened").find(".ac-column-body").slideToggle(150),t||(e.hasClass("events-binded")||e.column_bind_events(),e.addClass("events-binded"),n(document).trigger("column_init",e))}).css("cursor","pointer")},n.fn.column_bind_remove=function(){n(this).find(".remove-button").click(function(e){n(this).closest(".ac-column").column_remove(),e.preventDefault()})},n.fn.column_bind_clone=function(){n(this).find(".clone-button").click(function(e){e.preventDefault();var t=n(this).closest(".ac-column").column_clone();void 0!==t&&t.removeClass("loading").hide().slideDown()})},n.fn.cpac_column_refresh=function(){var e=n(this),t=e.find('[data-refresh="column"]'),i=n(this).attr("data-column-name"),a=e.hasClass("opened");n(document).trigger("pre_column_refresh",e);var c=n(this).find(":input").serializeArray(),o={action:"ac_column_refresh",_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,column_name:i,original_columns:AC.original_columns};n.each(o,function(n,e){c.push({name:n,value:e})}),e.addClass("loading"),t.prop("disabled",1);var l=n.post(ajaxurl,c,function(t){if(t){var i=n("<div>"+t.data+"</div>").children();e.replaceWith(i),e=i,e.column_bind_toggle(),e.column_bind_remove(),e.column_bind_clone(),e.column_bind_events(),a&&e.addClass("opened").find(".ac-column-body").show(),n(document).trigger("column_change",e)}},"json");l.fail(function(n){var t=e.closest(".ac-admin").find(".ajax-message");t.addClass("error").find("p").html(AC.i18n.error),t.slideDown(),e.slideUp(function(){e.remove()}),console.log("responseText: "+n.responseText)}),l.always(function(){e.removeClass("loading"),t.prop("disabled",!1)})},n.fn.column_bind_events=function(){var e=n(this),t=e.closest(".ac-admin "),i=e.find("select.ac-setting-input_type option:selected").val();e.find("select.ac-setting-input_type").change(function(){var a=n("optgroup",this).children(":selected"),c=a.val(),o=n(this).next(".msg").hide(),l=n(this),s=[];t.find(".ac-column[data-original=1]").each(function(){s.push(n(this).data("type"))}),e.addClass("loading"),n.ajax({url:ajaxurl,method:"post",dataType:"json",data:{action:"ac_column_select",type:c,current_original_columns:s,original_columns:AC.original_columns,list_screen:AC.list_screen,layout:AC.layout,_ajax_nonce:AC._ajax_nonce}}).done(function(t){if(t)if(t.success){var a=e.closest(".ac-column"),c=n("<div>"+t.data+"</div>").children();a.replaceWith(c),a=c,a.column_bind_toggle(),a.column_bind_remove(),a.column_bind_clone(),a.column_bind_events(),a.addClass("opened").find(".ac-column-body").show(),a.cpac_update_clone_id(),n(document).trigger("column_change",a)}else t.data&&"message"===t.data.type&&(o.html(t.data.error).show(),l.find("option").removeAttr("selected"),l.find('option[value="'+i+'"]').attr("selected","selected"))}).always(function(){e.removeClass("loading")})}),e.find(".ac-column-setting--label input").bind("keyup change",function(){var e=n(this).val();n(this).closest(".ac-column").find("td.column_label .inner > a.toggle").html(e)}),e.find(".ac-column-body .col-label .label").hover(function(){n(this).parents(".col-label").find("div.tooltip").show()},function(){n(this).parents(".col-label").find("div.tooltip").hide()}),e.find('select[data-label="update"]').change(function(){var t=e.find("input.ac-setting-input_label"),i=n(this).find("option:selected").text();t.val(i),t.trigger("change")}),e.find('[data-refresh="column"]').change(function(){e.cpac_column_refresh()});var a=e.find(".column_label .toggle");n.trim(a.html())&&a.width()<1&&a.html(e.find(".column_type .inner").html()),n(document).trigger("init_settings",e)},n.fn.column_bind_settings=function(){var e=n(this);e.find(".ac-column-setting--image_size").cpac_column_setting_image_size(),e.find(".ac-column-setting--width").cpac_column_setting_width()},n.fn.column_remove=function(){n(this).addClass("deleting").animate({opacity:0,height:0},350,function(){n(this).remove()})},n.fn.column_clone=function(){var e=n(this),t=n(this).closest("ac-columns");if("1"===e.attr("data-original")){var i=AC.i18n.clone.replace("%s","<strong>"+e.find(".column_label .toggle").text()+"</strong>");return e.addClass("opened").find(".ac-column-body").slideDown(150),void e.find(".ac-setting-input_type").next(".msg").html(i).show()}var a=n(this).clone();return a.cpac_update_clone_id(),n(this).after(a),a.column_bind_toggle(),a.column_bind_remove(),a.column_bind_clone(),a.column_bind_events(),t.cpac_bind_ordering(),n(document).trigger("column_add",a),a},n.fn.cpac_update_clone_id=function(){var e=n(this),t=e.attr("data-column-name"),i="_new_column_"+incremental_column_name,a=e.find("input, select, label");n(a).each(function(e,a){n(a).attr("name")&&n(a).attr("name",n(a).attr("name").replace("columns["+t+"]","columns["+i+"]")),n(a).attr("id")&&n(a).attr("id",n(a).attr("id").replace("-"+t+"-","-"+i+"-"))}),e.attr("data-column-name",i),incremental_column_name++},n(document).bind("column_init column_change column_add",function(e,t){n(t).closest(".ac-boxes").hasClass("disabled")||(n(t).cpac_bind_column_addon_events(),n(t).cpac_bind_indicator_events())}),n.fn.cpac_bind_column_addon_events=function(){var e=n(this);e.find("[data-trigger] label").on("click",function(){var t=n(this).closest("td.input").data("trigger"),i=n("input",this).val(),a=e.find('[data-indicator-id="'+t+'"]').removeClass("on");"on"==i&&a.addClass("on");var c=e.find('[data-handle="'+t+'"]').addClass("hide");"on"==i&&c.removeClass("hide")}),e.find("[data-trigger]").each(function(){var t=n(this).data("trigger"),i=e.find('[data-handle="'+t+'"]').addClass("hide");"on"==n("input:checked",this).val()&&i.removeClass("hide")})},n.fn.cpac_bind_indicator_events=function(){var e=n(this);e.find(".ac-column-header [data-indicator-toggle]").each(function(){var t=n(this),i=n(this).data("setting"),a=e.find(".ac-column-setting[data-setting="+i+"]"),c=a.find(".col-input:first .ac-setting-input:first input[type=radio]");t.unbind("click").on("click",function(e){e.preventDefault(),t.toggleClass("on"),n(this).hasClass("on")?c.filter("[value=on]").prop("checked",!0).trigger("click").trigger("change"):c.filter("[value=off]").prop("checked",!0).trigger("click").trigger("change")}),c.on("change",function(){"on"==c.filter(":checked").val()?t.addClass("on"):t.removeClass("on")})})},n.fn.cpac_bind_ordering=function(){n(this).each(function(){n(this).hasClass("ui-sortable")?n(this).sortable("refresh"):n(this).sortable({items:".ac-column",handle:".column_sort"})})},n.fn.cpac_column_setting_image_size=function(){function e(n,e){"cpac-custom"==e.val()?n.find(".ac-column-setting").show():n.find(".ac-column-setting").hide()}n(this).each(function(){var t=n(this),i=n(this).find(".ac-setting-input select");e(t,i),i.on("change",function(){e(t,n(this))})})},n(document).on("init_settings",function(e,t){n(t).find(".ac-column-setting--image").cpac_column_setting_image_size()}),n.fn.column_width_slider=function(){var e=n(this).find(".ac-setting-input-width"),t=e.find(".description input"),i=e.find(".unit-select input"),a=i.filter(":checked").val(),c=t.val(),o=e.find(".width-slider"),l=n(this).find(".ac-column-header .ac-column-heading-setting--width");"%"==a&&c>100&&(c=100),t.val(c),o.slider({range:"min",min:0,max:"%"==a?100:500,value:c,slide:function(n,e){t.val(e.value),l.trigger("update"),t.trigger("validate")}})},n.fn.cpac_column_setting_width=function(){n(this).each(function(){var e=n(this).parents(".ac-column");e.column_width_slider();var t=e.find(".ac-column-header .ac-column-heading-setting--width");t.on("update",function(){var t=e.find(".ac-setting-input-width .description input").val(),i=e.find(".ac-setting-input-width .description .unit").text();t>0?n(this).text(t+i):n(this).text("")}),e.find(".ac-setting-input-width .unit-select label").on("click",function(){e.find("span.unit").text(n(this).find("input").val()),e.column_width_slider(),t.trigger("update")});var i=e.find(".ac-setting-input-width .description input").on("keyup",function(){e.column_width_slider(),n(this).trigger("validate"),t.trigger("update")}).on("validate",function(){var e=i.val(),t=n.trim(e);n.isNumeric(t)||(t=t.replace(/\D/g,"")),t.length>3&&(t=t.substring(0,3)),t<=0&&(t=""),t!==e&&i.val(t)})})},n.fn.cpac_column_sub_setting_toggle=function(e){function t(n,e){var t=e.filter(":checked").val(),a=n.find(i.subfield);i.value_show==t?a.show():a.hide()}var i=n.extend({value_show:"on",subfield:".ac-column-setting"},e);n(this).each(function(){var e=n(this),i=n(this).find('.ac-setting-input input[type="radio"]');t(e,i),i.on("change",function(){t(e,i)})})},n.fn.cpac_column_setting_date=function(){n(this).each(function(){var e=n(this),t=e.find("input.custom"),i=e.find(".ac-setting-input-date__custom"),a=e.find(".ac-setting-input-date__value"),c=e.find(".ac-setting-input-date__example"),o=e.find("input[type=radio]:checked"),l=e.find(".help-msg");e.find("input[type=radio]").on("change",function(){var e=n(this),t=e.closest("label"),o=t.find("code").text(),s=t.find(".ac-setting-input-date__more").html();o&&i.val(o).trigger("change"),e.hasClass("diff")&&(i.val(""),c.text("")),i.prop("disabled",!0),e.hasClass("custom")&&(e.val(i.val()),i.prop("disabled",!1),l.show()),l.hide(),s&&l.html(s).show(),a.val(e.val())}),i.on("change",function(){c.html('<span class="spinner is-active"></span>'),t.val(i.val());var e=n(this).val();if(!e)return void c.text("");n.ajax({url:ajaxurl,method:"post",data:{action:"date_format",date:e}}).done(function(n){c.text(n)}),a.val(e)}),o.trigger("change"),0===o.length&&t.trigger("click")})},n(document).on("init_settings",function(e,t){n(t).find(".ac-column-setting--width").cpac_column_setting_width(),n(t).find(".ac-column-setting--date").cpac_column_setting_date(),n(t).find(".ac-column-setting--filter").cpac_column_sub_setting_toggle(),n(t).find(".ac-column-setting--sort").cpac_column_sub_setting_toggle(),n(t).find(".ac-column-setting--edit").cpac_column_sub_setting_toggle()})}(jQuery);
1
+ function ac_show_ajax_message(n,e){var t=jQuery('<div class="ac-message hidden '+e+'"><p>'+n+"</p></div>");jQuery(".ac-boxes").before(t),t.slideDown()}function cpac_submit_form(n){var e=n(".sidebox a.submit, .column-footer a.submit");e.click(function(){var t=n(this),i=t.closest(".ac-admin").addClass("saving"),a=i.find(".ac-columns form").serialize();e.attr("disabled","disabled"),i.find(".ac-message").remove();var c=n.post(ajaxurl,{action:"ac_columns_save",data:a,_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,original_columns:AC.original_columns},function(n){n&&(n.success?(ac_show_ajax_message(n.data,"updated"),i.addClass("stored")):n.data&&ac_show_ajax_message(n.data.message,"notice notice-warning"))},"json");c.fail(function(n){}),c.always(function(){e.removeAttr("disabled","disabled"),i.removeClass("saving")}),n(document).trigger("cac_update",i)})}function cpac_add_column(n){n(".add_column").click(function(e){e.preventDefault();var t=n("#add-new-column-template").find(".ac-column").clone();t.cpac_update_clone_id(),t.addClass("opened").find(".ac-column-body").slideDown(150,function(){n("html, body").animate({scrollTop:t.offset().top-58},300)}),n(".ac-columns form").append(t),t.column_bind_toggle(),t.column_bind_remove(),t.column_bind_clone(),t.column_bind_events(),n(document).trigger("column_add",t)})}function cpac_sidebar_feedback(n){var e=n(".sidebox#direct-feedback");e.find("#feedback-choice a.no").click(function(n){n.preventDefault(),e.find("#feedback-choice").slideUp(),e.find("#feedback-support").slideDown()}),e.find("#feedback-choice a.yes").click(function(n){n.preventDefault(),e.find("#feedback-choice").slideUp(),e.find("#feedback-rate").slideDown()})}function cpac_init(n){var e=n(".ac-admin"),t=e.find(".ac-boxes");if(t.hasClass("disabled"))t.find(".ac-column").each(function(e,t){n(t).column_bind_toggle(),n(t).find("input, select").prop("disabled",!0)});else{var i=t.find(".ac-columns");i.find(".ac-column").each(function(e,t){n(t).column_bind_toggle(),n(t).column_bind_remove(),n(t).column_bind_clone(),n(t).cpac_bind_indicator_events(),n(t).column_onload()}),i.cpac_bind_ordering()}n(document).trigger("cac_menu_change",i),n(document).trigger("cac_model_ready",e.data("type"))}function cpac_menu(n){n("#ac_list_screen").on("change",function(){n(".view-link").hide(),n(this).parents("form").submit(),n(this).prop("disabled",!0).next(".spinner").css("display","inline-block")})}function cpac_reset_columns(n){var e=n(".ac-admin");n("a[data-clear-columns]").on("click",function(){e.find(".ac-column").each(function(){n(this).find(".remove-button").trigger("click")})})}var AC,incremental_column_name=0;jQuery(document).ready(function(n){if(0===n("#cpac").length)return!1;cpac_init(n),cpac_submit_form(n),cpac_reset_columns(n),cpac_menu(n),cpac_add_column(n),cpac_sidebar_feedback(n)}),function(n){n.fn.column_bind_toggle=function(){var e=n(this),t=e.closest(".ac-boxes").hasClass("disabled");e.find('[data-toggle="column"]').click(function(i){i.preventDefault(),e.toggleClass("opened").find(".ac-column-body").slideToggle(150),t||(e.hasClass("events-binded")||e.column_bind_events(),e.addClass("events-binded"),n(document).trigger("column_init",e))}).css("cursor","pointer")},n.fn.column_bind_remove=function(){n(this).find(".remove-button").click(function(e){n(this).closest(".ac-column").column_remove(),e.preventDefault()})},n.fn.column_bind_clone=function(){n(this).find(".clone-button").click(function(e){e.preventDefault();var t=n(this).closest(".ac-column").column_clone();void 0!==t&&t.removeClass("loading").hide().slideDown()})},n.fn.cpac_column_refresh=function(){var e=n(this),t=e.find('[data-refresh="column"]'),i=n(this).attr("data-column-name"),a=e.hasClass("opened");n(document).trigger("pre_column_refresh",e);var c=n(this).find(":input").serializeArray(),o={action:"ac_column_refresh",_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,column_name:i,original_columns:AC.original_columns};n.each(o,function(n,e){c.push({name:n,value:e})}),e.addClass("loading"),t.prop("disabled",1);var l=n.post(ajaxurl,c,function(t){if(t){var i=n("<div>"+t.data+"</div>").children();e.replaceWith(i),e=i,e.column_bind_toggle(),e.column_bind_remove(),e.column_bind_clone(),e.column_bind_events(),a&&e.addClass("opened").find(".ac-column-body").show(),n(document).trigger("column_change",e)}},"json");l.fail(function(n){var t=e.closest(".ac-admin").find(".ajax-message");t.addClass("error").find("p").html(AC.i18n.error),t.slideDown(),e.slideUp(function(){e.remove()}),console.log("responseText: "+n.responseText)}),l.always(function(){e.removeClass("loading"),t.prop("disabled",!1)})},n.fn.column_onload=function(){var e=n(this),t=e.find(".column_label .toggle");n.trim(t.html())&&t.width()<1&&t.html(e.find(".column_type .inner").html())},n.fn.column_bind_events=function(){var e=n(this),t=e.closest(".ac-admin ");e.column_onload();var i=e.find("select.ac-setting-input_type option:selected").val();e.find("select.ac-setting-input_type").change(function(){var a=n("optgroup",this).children(":selected"),c=a.val(),o=n(this).next(".msg").hide(),l=n(this),s=[];t.find(".ac-column[data-original=1]").each(function(){s.push(n(this).data("type"))}),e.addClass("loading"),n.ajax({url:ajaxurl,method:"post",dataType:"json",data:{action:"ac_column_select",type:c,current_original_columns:s,original_columns:AC.original_columns,list_screen:AC.list_screen,layout:AC.layout,_ajax_nonce:AC._ajax_nonce}}).done(function(t){if(t)if(t.success){var a=e.closest(".ac-column"),c=n("<div>"+t.data+"</div>").children();a.replaceWith(c),a=c,a.column_bind_toggle(),a.column_bind_remove(),a.column_bind_clone(),a.column_bind_events(),a.addClass("opened").find(".ac-column-body").show(),a.cpac_update_clone_id(),n(document).trigger("column_change",a)}else t.data&&"message"===t.data.type&&(o.html(t.data.error).show(),l.find("option").removeAttr("selected"),l.find('option[value="'+i+'"]').attr("selected","selected"))}).always(function(){e.removeClass("loading")})}),e.find(".ac-column-setting--label input").bind("keyup change",function(){var e=n(this).val();n(this).closest(".ac-column").find("td.column_label .inner > a.toggle").html(e)}),e.find(".ac-column-body .col-label .label").hover(function(){n(this).parents(".col-label").find("div.tooltip").show()},function(){n(this).parents(".col-label").find("div.tooltip").hide()}),e.find('select[data-label="update"]').change(function(){var t=e.find("input.ac-setting-input_label"),i=n(this).find("option:selected").text();t.val(i),t.trigger("change")}),e.find('[data-refresh="column"]').change(function(){e.cpac_column_refresh()}),n(document).trigger("init_settings",e)},n.fn.column_bind_settings=function(){var e=n(this);e.find(".ac-column-setting--image_size").cpac_column_setting_image_size(),e.find(".ac-column-setting--width").cpac_column_setting_width()},n.fn.column_remove=function(){n(this).addClass("deleting").animate({opacity:0,height:0},350,function(){n(this).remove()})},n.fn.column_clone=function(){var e=n(this),t=n(this).closest("ac-columns");if("1"===e.attr("data-original")){var i=AC.i18n.clone.replace("%s","<strong>"+e.find(".column_label .toggle").text()+"</strong>");return e.addClass("opened").find(".ac-column-body").slideDown(150),void e.find(".ac-setting-input_type").next(".msg").html(i).show()}var a=n(this).clone();return a.cpac_update_clone_id(),n(this).after(a),a.column_bind_toggle(),a.column_bind_remove(),a.column_bind_clone(),a.column_bind_events(),t.cpac_bind_ordering(),n(document).trigger("column_add",a),a},n.fn.cpac_update_clone_id=function(){var e=n(this),t=e.attr("data-column-name"),i="_new_column_"+incremental_column_name,a=e.find("input, select, label");n(a).each(function(e,a){n(a).attr("name")&&n(a).attr("name",n(a).attr("name").replace("columns["+t+"]","columns["+i+"]")),n(a).attr("id")&&n(a).attr("id",n(a).attr("id").replace("-"+t+"-","-"+i+"-"))}),e.attr("data-column-name",i),incremental_column_name++},n(document).bind("column_init column_change column_add",function(e,t){n(t).closest(".ac-boxes").hasClass("disabled")||(n(t).cpac_bind_column_addon_events(),n(t).cpac_bind_indicator_events())}),n.fn.cpac_bind_column_addon_events=function(){var e=n(this);e.find("[data-trigger] label").on("click",function(){var t=n(this).closest("td.input").data("trigger"),i=n("input",this).val(),a=e.find('[data-indicator-id="'+t+'"]').removeClass("on");"on"==i&&a.addClass("on");var c=e.find('[data-handle="'+t+'"]').addClass("hide");"on"==i&&c.removeClass("hide")}),e.find("[data-trigger]").each(function(){var t=n(this).data("trigger"),i=e.find('[data-handle="'+t+'"]').addClass("hide");"on"==n("input:checked",this).val()&&i.removeClass("hide")})},n.fn.cpac_bind_indicator_events=function(){var e=n(this);e.find(".ac-column-header [data-indicator-toggle]").each(function(){var t=n(this),i=n(this).data("setting"),a=e.find(".ac-column-setting[data-setting="+i+"]"),c=a.find(".col-input:first .ac-setting-input:first input[type=radio]");t.unbind("click").on("click",function(e){e.preventDefault(),t.toggleClass("on"),n(this).hasClass("on")?c.filter("[value=on]").prop("checked",!0).trigger("click").trigger("change"):c.filter("[value=off]").prop("checked",!0).trigger("click").trigger("change")}),c.on("change",function(){"on"==c.filter(":checked").val()?t.addClass("on"):t.removeClass("on")})})},n.fn.cpac_bind_ordering=function(){n(this).each(function(){n(this).hasClass("ui-sortable")?n(this).sortable("refresh"):n(this).sortable({items:".ac-column",handle:".column_sort"})})},n.fn.cpac_column_setting_image_size=function(){function e(n,e){"cpac-custom"==e.val()?n.find(".ac-column-setting").show():n.find(".ac-column-setting").hide()}n(this).each(function(){var t=n(this),i=n(this).find(".ac-setting-input select");e(t,i),i.on("change",function(){e(t,n(this))})})},n(document).on("init_settings",function(e,t){n(t).find(".ac-column-setting--image").cpac_column_setting_image_size(),n(t).find(".ac-column-setting--images").cpac_column_setting_image_size()}),n.fn.column_width_slider=function(){var e=n(this).find(".ac-setting-input-width"),t=e.find(".description input"),i=e.find(".unit-select input"),a=i.filter(":checked").val(),c=t.val(),o=e.find(".width-slider"),l=n(this).find(".ac-column-header .ac-column-heading-setting--width");"%"==a&&c>100&&(c=100),t.val(c),o.slider({range:"min",min:0,max:"%"==a?100:500,value:c,slide:function(n,e){t.val(e.value),l.trigger("update"),t.trigger("validate")}})},n.fn.cpac_column_setting_width=function(){n(this).each(function(){var e=n(this).parents(".ac-column");e.column_width_slider();var t=e.find(".ac-column-header .ac-column-heading-setting--width");t.on("update",function(){var t=e.find(".ac-setting-input-width .description input").val(),i=e.find(".ac-setting-input-width .description .unit").text();t>0?n(this).text(t+i):n(this).text("")}),e.find(".ac-setting-input-width .unit-select label").on("click",function(){e.find("span.unit").text(n(this).find("input").val()),e.column_width_slider(),t.trigger("update")});var i=e.find(".ac-setting-input-width .description input").on("keyup",function(){e.column_width_slider(),n(this).trigger("validate"),t.trigger("update")}).on("validate",function(){var e=i.val(),t=n.trim(e);n.isNumeric(t)||(t=t.replace(/\D/g,"")),t.length>3&&(t=t.substring(0,3)),t<=0&&(t=""),t!==e&&i.val(t)})})},n.fn.cpac_column_sub_setting_toggle=function(e){function t(n,e){var t=e.filter(":checked").val(),a=n.find(i.subfield);i.value_show==t?a.show():a.hide()}var i=n.extend({value_show:"on",subfield:".ac-column-setting"},e);n(this).each(function(){var e=n(this),i=n(this).find('.ac-setting-input input[type="radio"]');t(e,i),i.on("change",function(){t(e,i)})})},n.fn.cpac_column_setting_date=function(){n(this).each(function(){var e=n(this),t=e.find("input.custom"),i=e.find(".ac-setting-input-date__custom"),a=e.find(".ac-setting-input-date__value"),c=e.find(".ac-setting-input-date__example"),o=e.find("input[type=radio]:checked"),l=e.find(".help-msg");e.find("input[type=radio]").on("change",function(){var e=n(this),t=e.closest("label"),o=t.find("code").text(),s=t.find(".ac-setting-input-date__more").html();o&&i.val(o).trigger("change"),e.hasClass("diff")&&(i.val(""),c.text("")),i.prop("disabled",!0),e.hasClass("custom")&&(e.val(i.val()),i.prop("disabled",!1),l.show()),l.hide(),s&&l.html(s).show(),a.val(e.val())}),i.on("change",function(){c.html('<span class="spinner is-active"></span>'),t.val(i.val());var e=n(this).val();if(!e)return void c.text("");n.ajax({url:ajaxurl,method:"post",data:{action:"date_format",date:e}}).done(function(n){c.text(n)}),a.val(e)}),o.trigger("change"),0===o.length&&t.trigger("click")})},n(document).on("init_settings",function(e,t){n(t).find(".ac-column-setting--width").cpac_column_setting_width(),n(t).find(".ac-column-setting--date").cpac_column_setting_date(),n(t).find(".ac-column-setting--filter").cpac_column_sub_setting_toggle(),n(t).find(".ac-column-setting--sort").cpac_column_sub_setting_toggle(),n(t).find(".ac-column-setting--edit").cpac_column_sub_setting_toggle()})}(jQuery);
assets/js/table.js CHANGED
@@ -7,6 +7,7 @@ jQuery( document ).ready( function( $ ) {
7
  ac_edit_button( $ );
8
  ac_toggle_box( $ );
9
  ac_toggle_box_ajax_init( $ );
 
10
 
11
  $( '.wp-list-table' ).on( 'updated', 'tr', function() {
12
  ac_set_column_classes( $ );
@@ -15,9 +16,27 @@ jQuery( document ).ready( function( $ ) {
15
  } );
16
  } );
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  function ac_edit_button( $ ) {
19
  if ( AC.edit_link ) {
20
- $( '.tablenav.top .actions:last' ).append( '<a class="cpac-edit add-new-h2" href="' + AC.edit_link + '">' + AC.i18n.edit_columns + '</a>' );
21
  }
22
  }
23
 
7
  ac_edit_button( $ );
8
  ac_toggle_box( $ );
9
  ac_toggle_box_ajax_init( $ );
10
+ ac_actions_tooltips( $ );
11
 
12
  $( '.wp-list-table' ).on( 'updated', 'tr', function() {
13
  ac_set_column_classes( $ );
16
  } );
17
  } );
18
 
19
+ function ac_actions_tooltips( $ ) {
20
+ $( '.row-actions a' ).qtip( {
21
+ content : {
22
+ text : function() {
23
+ return $( this ).text();
24
+ }
25
+ },
26
+ position : {
27
+ my : 'top center',
28
+ at : 'bottom center'
29
+ },
30
+ style : {
31
+ tip : true,
32
+ classes : 'qtip-tipsy'
33
+ }
34
+ } );
35
+ }
36
+
37
  function ac_edit_button( $ ) {
38
  if ( AC.edit_link ) {
39
+ $( '.tablenav.top .actions:last' ).append( '<a class="ac-button add-new-h2 ac-button-edit" href="' + AC.edit_link + '">' + AC.i18n.edit_columns + '</a>' );
40
  }
41
  }
42
 
assets/js/table.min.js CHANGED
@@ -1 +1 @@
1
- function ac_edit_button(t){AC.edit_link&&t(".tablenav.top .actions:last").append('<a class="cpac-edit add-new-h2" href="'+AC.edit_link+'">'+AC.i18n.edit_columns+"</a>")}function ac_toggle_box(t){t(".ac-toggle-box-link").click(function(a){a.preventDefault(),t(this).next(".ac-toggle-box-contents").toggle()})}function ac_toggle_box_ajax_init(t){var a=function(a){a.preventDefault(),t(this).next(".ac-toggle-box-contents-ajax").toggle()},n=function(c){c.preventDefault();var o=t(this),e={action:"ac_get_column_value",list_screen:AC.list_screen,layout:AC.layout,column:o.data("column"),pk:o.attr("data-item-id"),_ajax_nonce:AC.ajax_nonce};o.addClass("loading"),t.post(ajaxurl,e,function(c){c&&(o.after('<div class="ac-toggle-box-contents-ajax">'+c+"</div>"),o.unbind("click",n).bind("click",a),t(o.parent("td")).trigger("ajax_column_value_ready"),ac_tooltips(t))}).always(function(){o.removeClass("loading")})};t("a[data-ajax-populate=1]").bind("click",n)}function ac_show_more(t){t(".ac-more-link-show").click(function(a){a.preventDefault(),t(this).hide().closest("td").find(".ac-show-more-block").show()}),t(".ac-more-link-hide").click(function(a){a.preventDefault();var n=t(this).closest("td");n.find(".ac-more-link-show").show(),n.find(".ac-show-more-block").hide()})}function ac_actions_column(t,a){t(a).each(function(){var a=t(this);a.find(".cpac_use_icons").length>0&&a.addClass("cpac_use_icons")}),t(a).find(".cpac_use_icons + .hidden + .row-actions > span").each(function(){var a=t(this).find("a");a.attr("data-ac-tip",a.text()).addClass("ac-tip")})}function ac_set_column_classes(t){for(var a in AC.column_types)if(AC.column_types.hasOwnProperty(a)){var n=AC.column_types[a];t(".wp-list-table td."+a).addClass(n)}}function ac_tooltips(t){void 0!==t.fn.qtip&&t("[data-ac-tip]").qtip({content:{attr:"data-ac-tip"},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}function ac_quickedit_events(t){t(document).ajaxComplete(function(a,n){var c=t("<div>").append(n.responseText);if(1===c.find("tr.iedit").length){var o=c.find("tr.iedit").attr("id");t("tr#"+o).trigger("updated")}})}jQuery(document).ready(function(t){ac_quickedit_events(t),ac_set_column_classes(t),ac_actions_column(t,t(".column-actions")),ac_tooltips(t),ac_show_more(t),ac_edit_button(t),ac_toggle_box(t),ac_toggle_box_ajax_init(t),t(".wp-list-table").on("updated","tr",function(){ac_set_column_classes(t),ac_actions_column(t,t(this).find(".column-actions")),ac_show_more(t)})});
1
+ function ac_actions_tooltips(t){t(".row-actions a").qtip({content:{text:function(){return t(this).text()}},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}function ac_edit_button(t){AC.edit_link&&t(".tablenav.top .actions:last").append('<a class="ac-button add-new-h2 ac-button-edit" href="'+AC.edit_link+'">'+AC.i18n.edit_columns+"</a>")}function ac_toggle_box(t){t(".ac-toggle-box-link").click(function(a){a.preventDefault(),t(this).next(".ac-toggle-box-contents").toggle()})}function ac_toggle_box_ajax_init(t){var a=function(a){a.preventDefault(),t(this).next(".ac-toggle-box-contents-ajax").toggle()},n=function(o){o.preventDefault();var c=t(this),i={action:"ac_get_column_value",list_screen:AC.list_screen,layout:AC.layout,column:c.data("column"),pk:c.attr("data-item-id"),_ajax_nonce:AC.ajax_nonce};c.addClass("loading"),t.post(ajaxurl,i,function(o){o&&(c.after('<div class="ac-toggle-box-contents-ajax">'+o+"</div>"),c.unbind("click",n).bind("click",a),t(c.parent("td")).trigger("ajax_column_value_ready"),ac_tooltips(t))}).always(function(){c.removeClass("loading")})};t("a[data-ajax-populate=1]").bind("click",n)}function ac_show_more(t){t(".ac-more-link-show").click(function(a){a.preventDefault(),t(this).hide().closest("td").find(".ac-show-more-block").show()}),t(".ac-more-link-hide").click(function(a){a.preventDefault();var n=t(this).closest("td");n.find(".ac-more-link-show").show(),n.find(".ac-show-more-block").hide()})}function ac_actions_column(t,a){t(a).each(function(){var a=t(this);a.find(".cpac_use_icons").length>0&&a.addClass("cpac_use_icons")}),t(a).find(".cpac_use_icons + .hidden + .row-actions > span").each(function(){var a=t(this).find("a");a.attr("data-ac-tip",a.text()).addClass("ac-tip")})}function ac_set_column_classes(t){for(var a in AC.column_types)if(AC.column_types.hasOwnProperty(a)){var n=AC.column_types[a];t(".wp-list-table td."+a).addClass(n)}}function ac_tooltips(t){void 0!==t.fn.qtip&&t("[data-ac-tip]").qtip({content:{attr:"data-ac-tip"},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}function ac_quickedit_events(t){t(document).ajaxComplete(function(a,n){var o=t("<div>").append(n.responseText);if(1===o.find("tr.iedit").length){var c=o.find("tr.iedit").attr("id");t("tr#"+c).trigger("updated")}})}jQuery(document).ready(function(t){ac_quickedit_events(t),ac_set_column_classes(t),ac_actions_column(t,t(".column-actions")),ac_tooltips(t),ac_show_more(t),ac_edit_button(t),ac_toggle_box(t),ac_toggle_box_ajax_init(t),ac_actions_tooltips(t),t(".wp-list-table").on("updated","tr",function(){ac_set_column_classes(t),ac_actions_column(t,t(this).find(".column-actions")),ac_show_more(t)})});
classes/API.php CHANGED
@@ -20,9 +20,13 @@ class AC_API {
20
  * @param AC_ListScreen $list_screen
21
  */
22
  public function set_column_settings( AC_ListScreen $list_screen ) {
23
- if ( $settings = $this->get_column_settings( $list_screen ) ) {
24
- $list_screen->set_settings( $settings )->set_read_only( true );
 
 
25
  }
 
 
26
  }
27
 
28
  /**
@@ -31,11 +35,15 @@ class AC_API {
31
  * @return array|false
32
  */
33
  public function get_column_settings( AC_ListScreen $list_screen ) {
34
- if ( $columndata = $this->get_columndata( $list_screen->get_key() ) ) {
35
- foreach ( $columndata as $data ) {
36
- if ( $list_screen->get_storage_key() === $list_screen->get_key() . $data['layout']['id'] ) {
37
- return $data['columns'];
38
- }
 
 
 
 
39
  }
40
  }
41
 
@@ -48,11 +56,16 @@ class AC_API {
48
  * @return array
49
  */
50
  public function get_layouts_settings( $list_screen ) {
 
 
 
 
 
 
 
51
  $layouts = array();
52
- if ( $columndata = $this->get_columndata( $list_screen->get_key() ) ) {
53
- foreach ( $columndata as $data ) {
54
- $layouts[] = $data['layout'];
55
- }
56
  }
57
 
58
  return $layouts;
20
  * @param AC_ListScreen $list_screen
21
  */
22
  public function set_column_settings( AC_ListScreen $list_screen ) {
23
+ $settings = $this->get_column_settings( $list_screen );
24
+
25
+ if ( ! $settings ) {
26
+ return;
27
  }
28
+
29
+ $list_screen->set_settings( $settings )->set_read_only( true );
30
  }
31
 
32
  /**
35
  * @return array|false
36
  */
37
  public function get_column_settings( AC_ListScreen $list_screen ) {
38
+ $columndata = $this->get_columndata( $list_screen->get_key() );
39
+
40
+ if ( ! $columndata ) {
41
+ return false;
42
+ }
43
+
44
+ foreach ( $columndata as $data ) {
45
+ if ( $list_screen->get_storage_key() === $list_screen->get_key() . $data['layout']['id'] ) {
46
+ return $data['columns'];
47
  }
48
  }
49
 
56
  * @return array
57
  */
58
  public function get_layouts_settings( $list_screen ) {
59
+ $columndata = $this->get_columndata( $list_screen->get_key() );
60
+
61
+ if ( ! $columndata ) {
62
+ return array();
63
+
64
+ }
65
+
66
  $layouts = array();
67
+ foreach ( $columndata as $data ) {
68
+ $layouts[] = $data['layout'];
 
 
69
  }
70
 
71
  return $layouts;
classes/Addon/BuddyPress.php CHANGED
@@ -13,7 +13,7 @@ class AC_Addon_BuddyPress extends AC_Addon {
13
  ->set_title( __( 'BuddyPress', 'codepress-admin-columns' ) )
14
  ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/buddypress.png' )
15
  ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/buddypress-icon.png' )
16
- ->set_link( ac_get_site_utm_url( 'buddypress-columns', 'addon', 'buddypress' ) )
17
  ->set_description( __( 'Display any of your Profile Fields for BuddyPress on your users overview.', 'codepress-admin-columns' ) )
18
  ->add_plugin( 'buddypress' );
19
  }
13
  ->set_title( __( 'BuddyPress', 'codepress-admin-columns' ) )
14
  ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/buddypress.png' )
15
  ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/buddypress-icon.png' )
16
+ ->set_link( ac_get_site_utm_url( 'buddypress', 'addon', 'buddypress' ) )
17
  ->set_description( __( 'Display any of your Profile Fields for BuddyPress on your users overview.', 'codepress-admin-columns' ) )
18
  ->add_plugin( 'buddypress' );
19
  }
classes/Addon/EventsCalendar.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Addon_EventsCalendar extends AC_Addon {
8
+
9
+ public function __construct() {
10
+ parent::__construct( 'ac-addon-events-calendar' );
11
+
12
+ $this
13
+ ->set_title( __( 'The Events Calendar', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/events-calendar.png' )
15
+ ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/events-calendar-icon.png' )
16
+ ->set_link( ac_get_site_utm_url( 'events-calendar', 'addon', 'events-calendar' ) )
17
+ ->set_description( "Manage columns for your event, organizer or venue overviews." )
18
+ ->add_plugin( 'events-calendar' );
19
+ }
20
+
21
+ public function display_promo() {
22
+ echo $this->get_title() . ' ';
23
+ $this->display_icon();
24
+ }
25
+
26
+ public function show_missing_notice_on_current_page() {
27
+ global $pagenow;
28
+
29
+ $is_page = 'edit.php' === $pagenow && in_array( filter_input( INPUT_GET, 'post_type' ), array( 'tribe_events', 'tribe_venue', 'tribe_organizer' ) );
30
+
31
+ return parent::show_missing_notice_on_current_page() || $is_page;
32
+ }
33
+
34
+ public function is_plugin_active() {
35
+ return class_exists( 'Tribe__Events__Main' );
36
+ }
37
+
38
+ }
classes/Addon/NinjaForms.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Addon_NinjaForms extends AC_Addon {
8
+
9
+ public function __construct() {
10
+ parent::__construct( 'ac-addon-ninjaforms' );
11
+
12
+ $this
13
+ ->set_title( __( 'Ninja Forms', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/ninja-forms.png' )
15
+ ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/ninja-forms-icon.png' )
16
+ ->set_link( ac_get_site_utm_url( 'ninja-forms', 'addon', 'ninjaforms' ) )
17
+ ->set_description( "Add Ninja Forms columns that can be sorted, filtered and directly edited!" )
18
+ ->add_plugin( 'ninjaforms' );
19
+ }
20
+
21
+ public function display_promo() {
22
+ echo $this->get_title() . ' ';
23
+ $this->display_icon();
24
+ }
25
+
26
+ public function show_missing_notice_on_current_page() {
27
+ global $pagenow;
28
+
29
+ $is_page = 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'bp-activity', 'bp-groups' ) );
30
+
31
+ return parent::show_missing_notice_on_current_page() || $is_page;
32
+ }
33
+
34
+ public function is_plugin_active() {
35
+ return class_exists( 'Ninja_Forms' );
36
+ }
37
+
38
+ }
classes/Addon/Pods.php CHANGED
@@ -13,7 +13,7 @@ class AC_Addon_Pods extends AC_Addon {
13
  ->set_title( __( 'Pods', 'codepress-admin-columns' ) )
14
  ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/pods.png' )
15
  ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/pods-icon.png' )
16
- ->set_link( ac_get_site_utm_url( 'pods-columns', 'addon', 'pods' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'pods' );
19
  }
13
  ->set_title( __( 'Pods', 'codepress-admin-columns' ) )
14
  ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/pods.png' )
15
  ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/pods-icon.png' )
16
+ ->set_link( ac_get_site_utm_url( 'pods', 'addon', 'pods' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'pods' );
19
  }
classes/Addon/Types.php CHANGED
@@ -13,7 +13,7 @@ class AC_Addon_Types extends AC_Addon {
13
  ->set_title( __( 'Toolset Types', 'codepress-admin-columns' ) )
14
  ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/toolset-types.png' )
15
  ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/toolset-types-icon.png' )
16
- ->set_link( ac_get_site_utm_url( 'toolset-types-columns', 'addon', 'types' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'types' );
19
  }
13
  ->set_title( __( 'Toolset Types', 'codepress-admin-columns' ) )
14
  ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/toolset-types.png' )
15
  ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/toolset-types-icon.png' )
16
+ ->set_link( ac_get_site_utm_url( 'toolset-types', 'addon', 'types' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'types' );
19
  }
classes/Admin/Page/Addons.php CHANGED
@@ -6,13 +6,6 @@ if ( ! defined( 'ABSPATH' ) ) {
6
 
7
  class AC_Admin_Page_Addons extends AC_Admin_Page {
8
 
9
- /**
10
- * User meta key for hiding "Install addons" notice
11
- *
12
- * @since 2.4.9
13
- */
14
- const OPTION_ADMIN_NOTICE_INSTALL_ADDONS_KEY = 'cpac-hide-install-addons-notice';
15
-
16
  public function __construct() {
17
  $this
18
  ->set_slug( 'addons' )
@@ -117,7 +110,7 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
117
  if ( $plugin->is_active() ) {
118
  AC()->notice( sprintf( $activate_string, '<strong>' . $plugin->get_name() . '</strong>' ) );
119
  } else {
120
- AC()->notice( sprintf( __( '%s could not be activated.', 'codepress-admin-columns' ), '<strong>' . $plugin->get_name() . '</strong>' ) . ' ' . sprintf( 'Please visit the %s page.', ac_helper()->html->link( admin_url( 'plugins.php' ), strtolower( __( 'Plugins' ) ) ) ), 'error' );
121
  }
122
  break;
123
  case 'deactivate' :
@@ -130,9 +123,9 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
130
  * Admin scripts
131
  */
132
  public function admin_scripts() {
133
- if ( $this->is_current_screen() ) {
134
- wp_enqueue_style( 'ac-admin-page-addons', AC()->get_plugin_url() . 'assets/css/admin-page-addons' . AC()->minified() . '.css', array(), AC()->get_version() );
135
- }
136
  }
137
 
138
  /**
@@ -157,7 +150,7 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
157
  return;
158
  }
159
 
160
- if ( ac_helper()->user->get_meta_site( self::OPTION_ADMIN_NOTICE_INSTALL_ADDONS_KEY, true ) ) {
161
  return;
162
  }
163
 
@@ -177,11 +170,11 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
177
  $plugins_list = ac_helper()->string->enumeration_list( $plugins, 'and' );
178
 
179
  ?>
180
- <div class="ac-message updated">
181
- <a href="#" class="hide-notice hide-install-addons-notice"></a>
182
 
183
- <p><?php printf( __( "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!", 'codepress-admin-columns' ), $plugins_list, ac_helper()->html->link( $this->get_link(), __( 'the addons page', 'codepress-admin-columns' ) ) ); ?>
184
- </div>
185
  <?php
186
 
187
  wp_enqueue_script( 'ac-sitewide-notices' );
@@ -189,13 +182,20 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
189
  }
190
  }
191
 
 
 
 
 
 
 
 
192
  /**
193
  * Ajax callback for hiding the "Missing addons" notice used for notifying users of available integration addons for plugins they have installed
194
  *
195
  * @since 2.4.9
196
  */
197
  public function ajax_hide_install_addons_notice() {
198
- ac_helper()->user->update_meta_site( self::OPTION_ADMIN_NOTICE_INSTALL_ADDONS_KEY, '1', true );
199
  }
200
 
201
  /**
@@ -373,28 +373,28 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
373
  public function display() {
374
 
375
  foreach ( $this->get_grouped_addons() as $group_slug => $group ) : ?>
376
- <div class="ac-addon group-<?php echo esc_attr( $group_slug ); ?>">
377
- <h2><?php echo esc_html( $group['title'] ); ?></h2>
378
 
379
- <ul>
380
  <?php
381
  foreach ( $group['addons'] as $addon ) :
382
  /* @var AC_Addon $addon */ ?>
383
- <li class="<?php echo esc_attr( $addon->get_slug() ); ?>">
384
- <div class="addon-header">
385
- <div class="inner">
386
  <?php if ( $addon->get_logo() ) : ?>
387
- <img src="<?php echo esc_attr( $addon->get_logo() ); ?>"/>
388
  <?php else : ?>
389
- <h2><?php echo esc_html( $addon->get_title() ); ?></h2>
390
  <?php endif; ?>
391
- </div>
392
- </div>
393
- <div class="addon-content">
394
- <h3><?php echo esc_html( $addon->get_title() ); ?></h3>
395
- <p><?php echo esc_html( $addon->get_description() ); ?></p>
396
- </div>
397
- <div class="addon-actions">
398
  <?php
399
 
400
  // Installed..
@@ -402,30 +402,30 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
402
 
403
  // Active
404
  if ( $addon->is_active() ) : ?>
405
- <span class="active"><?php _e( 'Active', 'codepress-admin-columns' ); ?></span>
406
 
407
  <?php if ( current_user_can( 'activate_plugins' ) ) : ?>
408
- <a href="<?php echo esc_url( $addon->get_deactivation_url( $addon->get_basename() ) ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
409
  <?php endif;
410
  // Installed
411
- elseif ( current_user_can( 'activate_plugins' ) ) : ?>
412
- <a href="<?php echo esc_url( $addon->get_activation_url( $addon->get_basename() ) ); ?>" class="button button-primary right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
413
  <?php endif;
414
 
415
  // Not installed...
416
  else :
417
  if ( ac_is_pro_active() && current_user_can( 'install_plugins' ) ) : ?>
418
- <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'install', 'plugin' => $addon->get_slug() ), $this->get_link() ), 'install-ac-addon' ) ); ?>" class="button"><?php esc_html_e( 'Download & Install', 'codepress-admin-columns' ); ?></a>
419
  <?php else : ?>
420
- <a target="_blank" href="<?php echo esc_url( $addon->get_link() ); ?>" class="button"><?php esc_html_e( 'Get this add-on', 'codepress-admin-columns' ); ?></a>
421
  <?php endif;
422
  endif;
423
  ?>
424
- </div>
425
- </li>
426
  <?php endforeach; // addons ?>
427
- </ul>
428
- </div>
429
  <?php endforeach; // grouped_addons
430
  }
431
 
6
 
7
  class AC_Admin_Page_Addons extends AC_Admin_Page {
8
 
 
 
 
 
 
 
 
9
  public function __construct() {
10
  $this
11
  ->set_slug( 'addons' )
110
  if ( $plugin->is_active() ) {
111
  AC()->notice( sprintf( $activate_string, '<strong>' . $plugin->get_name() . '</strong>' ) );
112
  } else {
113
+ AC()->notice( sprintf( __( '%s could not be activated.', 'codepress-admin-columns' ), '<strong>' . $plugin->get_name() . '</strong>' ) . ' ' . sprintf( __( 'Please visit the %s page.', 'codepress-admin-columns' ), ac_helper()->html->link( admin_url( 'plugins.php' ), strtolower( __( 'Plugins' ) ) ) ), 'error' );
114
  }
115
  break;
116
  case 'deactivate' :
123
  * Admin scripts
124
  */
125
  public function admin_scripts() {
126
+ if ( $this->is_current_screen() ) {
127
+ wp_enqueue_style( 'ac-admin-page-addons', AC()->get_plugin_url() . 'assets/css/admin-page-addons' . AC()->minified() . '.css', array(), AC()->get_version() );
128
+ }
129
  }
130
 
131
  /**
150
  return;
151
  }
152
 
153
+ if ( $this->hide_notice() ) {
154
  return;
155
  }
156
 
170
  $plugins_list = ac_helper()->string->enumeration_list( $plugins, 'and' );
171
 
172
  ?>
173
+ <div class="ac-message updated">
174
+ <a href="#" class="hide-notice hide-install-addons-notice"></a>
175
 
176
+ <p><?php printf( __( "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!", 'codepress-admin-columns' ), $plugins_list, ac_helper()->html->link( $this->get_link(), __( 'the addons page', 'codepress-admin-columns' ) ) ); ?>
177
+ </div>
178
  <?php
179
 
180
  wp_enqueue_script( 'ac-sitewide-notices' );
182
  }
183
  }
184
 
185
+ /**
186
+ * @return bool
187
+ */
188
+ private function hide_notice() {
189
+ return (bool) get_user_meta( get_current_user_id(), 'ac_hide_notice_addons', true );
190
+ }
191
+
192
  /**
193
  * Ajax callback for hiding the "Missing addons" notice used for notifying users of available integration addons for plugins they have installed
194
  *
195
  * @since 2.4.9
196
  */
197
  public function ajax_hide_install_addons_notice() {
198
+ update_user_meta( get_current_user_id(), 'ac_hide_notice_addons', true );
199
  }
200
 
201
  /**
373
  public function display() {
374
 
375
  foreach ( $this->get_grouped_addons() as $group_slug => $group ) : ?>
376
+ <div class="ac-addon group-<?php echo esc_attr( $group_slug ); ?>">
377
+ <h2><?php echo esc_html( $group['title'] ); ?></h2>
378
 
379
+ <ul>
380
  <?php
381
  foreach ( $group['addons'] as $addon ) :
382
  /* @var AC_Addon $addon */ ?>
383
+ <li class="<?php echo esc_attr( $addon->get_slug() ); ?>">
384
+ <div class="addon-header">
385
+ <div class="inner">
386
  <?php if ( $addon->get_logo() ) : ?>
387
+ <img src="<?php echo esc_attr( $addon->get_logo() ); ?>"/>
388
  <?php else : ?>
389
+ <h2><?php echo esc_html( $addon->get_title() ); ?></h2>
390
  <?php endif; ?>
391
+ </div>
392
+ </div>
393
+ <div class="addon-content">
394
+ <h3><?php echo esc_html( $addon->get_title() ); ?></h3>
395
+ <p><?php echo esc_html( $addon->get_description() ); ?></p>
396
+ </div>
397
+ <div class="addon-actions">
398
  <?php
399
 
400
  // Installed..
402
 
403
  // Active
404
  if ( $addon->is_active() ) : ?>
405
+ <span class="active"><?php _e( 'Active', 'codepress-admin-columns' ); ?></span>
406
 
407
  <?php if ( current_user_can( 'activate_plugins' ) ) : ?>
408
+ <a href="<?php echo esc_url( $addon->get_deactivation_url( $addon->get_basename() ) ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
409
  <?php endif;
410
  // Installed
411
+ elseif ( current_user_can( 'activate_plugins' ) ) : ?>
412
+ <a href="<?php echo esc_url( $addon->get_activation_url( $addon->get_basename() ) ); ?>" class="button button-primary right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
413
  <?php endif;
414
 
415
  // Not installed...
416
  else :
417
  if ( ac_is_pro_active() && current_user_can( 'install_plugins' ) ) : ?>
418
+ <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'install', 'plugin' => $addon->get_slug() ), $this->get_link() ), 'install-ac-addon' ) ); ?>" class="button"><?php esc_html_e( 'Download & Install', 'codepress-admin-columns' ); ?></a>
419
  <?php else : ?>
420
+ <a target="_blank" href="<?php echo esc_url( $addon->get_link() ); ?>" class="button"><?php esc_html_e( 'Get this add-on', 'codepress-admin-columns' ); ?></a>
421
  <?php endif;
422
  endif;
423
  ?>
424
+ </div>
425
+ </li>
426
  <?php endforeach; // addons ?>
427
+ </ul>
428
+ </div>
429
  <?php endforeach; // grouped_addons
430
  }
431
 
classes/Admin/Page/Columns.php CHANGED
@@ -6,8 +6,6 @@ if ( ! defined( 'ABSPATH' ) ) {
6
 
7
  class AC_Admin_Page_Columns extends AC_Admin_Page {
8
 
9
- const OPTION_CURRENT = 'cpac_current_model';
10
-
11
  /**
12
  * @var array
13
  */
@@ -78,14 +76,6 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
78
  do_action( 'ac/settings/scripts' );
79
  }
80
 
81
- public function set_layout_preference( $layout ) {
82
- ac_helper()->user->update_meta_site( self::OPTION_CURRENT . '_layout', $layout );
83
- }
84
-
85
- public function get_layout_preference() {
86
- return ac_helper()->user->get_meta_site( self::OPTION_CURRENT . '_layout', true );
87
- }
88
-
89
  private function get_first_list_screen() {
90
  $list_screens = AC()->get_list_screens();
91
 
@@ -102,7 +92,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
102
 
103
  // Preference
104
  if ( ! $key ) {
105
- $key = $this->get_list_screen_preference();
106
  }
107
 
108
  // First one
@@ -125,7 +115,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
125
  $this->set_original_table_headers( $list_screen );
126
  }
127
 
128
- $this->set_list_screen_preference( $list_screen->get_key() );
129
 
130
  $this->current_list_screen = $list_screen;
131
 
@@ -339,7 +329,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
339
  if ( 'same-settings' === $result->get_error_code() ) {
340
  wp_send_json_error( array(
341
  'type' => 'notice notice-warning',
342
- 'message' => sprintf( __( 'You are trying to store the same settings for %s.', 'codepress-admin-columns' ), "<strong>" . $this->get_list_screen_message_label( $list_screen ) . "</strong>" ) . ' ' . $view_link
343
  )
344
  );
345
  }
@@ -399,12 +389,8 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
399
  return $grouped;
400
  }
401
 
402
- private function set_list_screen_preference( $list_screen_key ) {
403
- ac_helper()->user->update_meta_site( self::OPTION_CURRENT, $list_screen_key );
404
- }
405
-
406
- private function get_list_screen_preference() {
407
- return ac_helper()->user->get_meta_site( self::OPTION_CURRENT, true );
408
  }
409
 
410
  /**
@@ -439,6 +425,20 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
439
  return false;
440
  }
441
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  /**
443
  * @param AC_ListScreen $list_screen
444
  *
@@ -570,7 +570,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
570
  <?php endif; ?>
571
 
572
  <p class="center">
573
- <?php echo ac_helper()->html->link( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'banner' ), sprintf( __( 'Prices starting from %s', 'codepress-admin-columns' ), '$39.20' ), array( 'class' => 'ac-pro-prices' ) ); ?> <sup>$49</sup>
574
  </p>
575
  <p class="center nopadding">
576
  <?php if ( ! $active_promotion ) : ?>
@@ -592,11 +592,11 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
592
 
593
  <div class="padding-box ac-pro-newsletter">
594
  <h3>
595
- <?php echo esc_html( sprintf( __( 'Get %s Off!', 'codepress-admin-columns' ), '20%' ) ); ?>
596
  </h3>
597
  <div class="inside">
598
  <p>
599
- <?php echo esc_html( sprintf( __( "Submit your email and we'll send you a discount for %s off.", 'codepress-admin-columns' ), '20%' ) ); ?>
600
  </p>
601
  <?php
602
  $user_data = get_userdata( get_current_user_id() );
6
 
7
  class AC_Admin_Page_Columns extends AC_Admin_Page {
8
 
 
 
9
  /**
10
  * @var array
11
  */
76
  do_action( 'ac/settings/scripts' );
77
  }
78
 
 
 
 
 
 
 
 
 
79
  private function get_first_list_screen() {
80
  $list_screens = AC()->get_list_screens();
81
 
92
 
93
  // Preference
94
  if ( ! $key ) {
95
+ $key = $this->preferences()->get( 'list_screen' );
96
  }
97
 
98
  // First one
115
  $this->set_original_table_headers( $list_screen );
116
  }
117
 
118
+ $this->preferences()->set( 'list_screen', $list_screen->get_key() );
119
 
120
  $this->current_list_screen = $list_screen;
121
 
329
  if ( 'same-settings' === $result->get_error_code() ) {
330
  wp_send_json_error( array(
331
  'type' => 'notice notice-warning',
332
+ 'message' => sprintf( __( 'You are trying to store the same settings for %s.', 'codepress-admin-columns' ), "<strong>" . $this->get_list_screen_message_label( $list_screen ) . "</strong>" ) . ' ' . $view_link,
333
  )
334
  );
335
  }
389
  return $grouped;
390
  }
391
 
392
+ private function preferences() {
393
+ return new AC_Preferences( 'settings' );
 
 
 
 
394
  }
395
 
396
  /**
425
  return false;
426
  }
427
 
428
+ /**
429
+ * @return int
430
+ */
431
+ private function get_discount_percentage() {
432
+ return 10;
433
+ }
434
+
435
+ /**
436
+ * @return int
437
+ */
438
+ private function get_lowest_pro_price() {
439
+ return 49;
440
+ }
441
+
442
  /**
443
  * @param AC_ListScreen $list_screen
444
  *
570
  <?php endif; ?>
571
 
572
  <p class="center">
573
+ <?php echo ac_helper()->html->link( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'banner' ), sprintf( __( 'Prices starting from %s', 'codepress-admin-columns' ), '$' . $this->get_lowest_pro_price() ), array( 'class' => 'ac-pro-prices' ) ); ?>
574
  </p>
575
  <p class="center nopadding">
576
  <?php if ( ! $active_promotion ) : ?>
592
 
593
  <div class="padding-box ac-pro-newsletter">
594
  <h3>
595
+ <?php echo esc_html( sprintf( __( 'Get %s Off!', 'codepress-admin-columns' ), $this->get_discount_percentage() . '%' ) ); ?>
596
  </h3>
597
  <div class="inside">
598
  <p>
599
+ <?php echo esc_html( sprintf( __( "Submit your email and we'll send you a discount for %s off.", 'codepress-admin-columns' ), $this->get_discount_percentage() . '%' ) ); ?>
600
  </p>
601
  <?php
602
  $user_data = get_userdata( get_current_user_id() );
classes/Collection.php CHANGED
@@ -73,6 +73,10 @@ class AC_Collection
73
  return ( $key !== null && $key !== false );
74
  }
75
 
 
 
 
 
76
  /**
77
  * Filter collection items
78
  *
@@ -82,6 +86,23 @@ class AC_Collection
82
  return new AC_Collection( ac_helper()->array->filter( $this->items ) );
83
  }
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  /**
86
  * @param string $glue
87
  *
73
  return ( $key !== null && $key !== false );
74
  }
75
 
76
+ public function count() {
77
+ return count( $this->items );
78
+ }
79
+
80
  /**
81
  * Filter collection items
82
  *
86
  return new AC_Collection( ac_helper()->array->filter( $this->items ) );
87
  }
88
 
89
+ /**
90
+ * Limit array to max number of items
91
+ *
92
+ * @param int $length
93
+ *
94
+ * @return int Number of removed items
95
+ */
96
+ public function limit( $length ) {
97
+ $count = $this->count();
98
+
99
+ if ( 0 < $length ) {
100
+ $this->items = array_slice( $this->items, 0, $length );
101
+ }
102
+
103
+ return $count - $this->count();
104
+ }
105
+
106
  /**
107
  * @param string $glue
108
  *
classes/Column.php CHANGED
@@ -49,6 +49,11 @@ class AC_Column {
49
  */
50
  protected $list_screen;
51
 
 
 
 
 
 
52
  /**
53
  * The options managed by the settings
54
  *
@@ -56,11 +61,6 @@ class AC_Column {
56
  */
57
  protected $options = array();
58
 
59
- /**
60
- * @var string|bool
61
- */
62
- private $empty_char;
63
-
64
  /**
65
  * Get the unique name of the column
66
  *
@@ -121,6 +121,20 @@ class AC_Column {
121
  return $this;
122
  }
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  /**
125
  * Get the type of the column.
126
  *
@@ -351,7 +365,7 @@ class AC_Column {
351
  */
352
  public function get_formatted_value( $value, $original_value = null, $current = 0 ) {
353
  $formatters = $this->get_formatters();
354
- $available = count( $formatters );
355
 
356
  if ( null === $original_value ) {
357
  $original_value = $value;
@@ -426,21 +440,10 @@ class AC_Column {
426
  }
427
 
428
  /**
429
- * @param string
430
- */
431
- public function set_empty_char( $char ) {
432
- $this->empty_char = (string) $char;
433
- }
434
-
435
- /**
436
- * @return bool|string
437
  */
438
  public function get_empty_char() {
439
- if ( null === $this->empty_char ) {
440
- $this->set_empty_char( '&ndash;' );
441
- }
442
-
443
- return apply_filters( 'ac/empty_char', $this->empty_char, $this );
444
  }
445
 
446
  }
49
  */
50
  protected $list_screen;
51
 
52
+ /**
53
+ * @var AC_Container
54
+ */
55
+ private $services;
56
+
57
  /**
58
  * The options managed by the settings
59
  *
61
  */
62
  protected $options = array();
63
 
 
 
 
 
 
64
  /**
65
  * Get the unique name of the column
66
  *
121
  return $this;
122
  }
123
 
124
+ /**
125
+ * Container to inject and get services for this column
126
+ *
127
+ * @since 3.0.5
128
+ * @return AC_Container
129
+ */
130
+ public function services() {
131
+ if ( null === $this->services ) {
132
+ $this->services = new AC_Container();
133
+ }
134
+
135
+ return $this->services;
136
+ }
137
+
138
  /**
139
  * Get the type of the column.
140
  *
365
  */
366
  public function get_formatted_value( $value, $original_value = null, $current = 0 ) {
367
  $formatters = $this->get_formatters();
368
+ $available = count( (array) $formatters );
369
 
370
  if ( null === $original_value ) {
371
  $original_value = $value;
440
  }
441
 
442
  /**
443
+ * @return string
 
 
 
 
 
 
 
444
  */
445
  public function get_empty_char() {
446
+ return '&ndash;';
 
 
 
 
447
  }
448
 
449
  }
classes/Column/ActionColumnHelper.php DELETED
@@ -1,78 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * Holds all the row actions buttons for each content type (e.g. post, comment, user and media).
9
- * WP_List_Table does not have a method for retrieving row actions. This class uses their filters to fetch the actions.
10
- * For example usage see the AC_Column_Actions class.
11
- *
12
- * Class AC_Column_ActionColumnHelper
13
- */
14
- class AC_Column_ActionColumnHelper {
15
-
16
- private $actions;
17
-
18
- /**
19
- * @since 2.5
20
- */
21
- private static $_instance = null;
22
-
23
- /**
24
- * @since 2.5
25
- */
26
- public static function instance() {
27
- if ( null === self::$_instance ) {
28
- self::$_instance = new self();
29
- }
30
-
31
- return self::$_instance;
32
- }
33
-
34
- private function __construct() {
35
- add_filter( 'comment_row_actions', array( $this, 'set_comment' ), 10, 2 );
36
- add_filter( 'page_row_actions', array( $this, 'set_post' ), 10, 2 );
37
- add_filter( 'post_row_actions', array( $this, 'set_post' ), 10, 2 );
38
- add_filter( 'media_row_actions', array( $this, 'set_media' ), 10, 2 );
39
- add_filter( 'user_row_actions', array( $this, 'set_user' ), 10, 2 );
40
- }
41
-
42
- public function set_comment( $actions, $comment ) {
43
- $this->actions[ 'comment' ][ $comment->ID ] = $actions;
44
-
45
- return $actions;
46
- }
47
-
48
- public function set_post( $actions, $post ) {
49
- $this->actions[ 'post' ][ $post->ID ] = $actions;
50
-
51
- return $actions;
52
- }
53
-
54
- public function set_media( $actions, $post ) {
55
- $this->actions[ 'media' ][ $post->ID ] = $actions;
56
-
57
- return $actions;
58
- }
59
-
60
- public function set_user( $actions, $user ) {
61
- $this->actions[ 'user' ][ $user->ID ] = $actions;
62
-
63
- return $actions;
64
- }
65
-
66
- /**
67
- * Retrieve row actions like 'edit, trash, spam' etc.
68
- *
69
- * @param string $type
70
- * @param int $id Object ID
71
- *
72
- * @return array|false Array with actions
73
- */
74
- public function get( $type, $id ) {
75
- return isset( $this->actions[ $type ][ $id ] ) ? $this->actions[ $type ][ $id ] : array();
76
- }
77
-
78
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Actions.php CHANGED
@@ -9,18 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
9
  *
10
  * @since 2.2.6
11
  */
12
- abstract class AC_Column_Actions extends AC_Column {
13
-
14
- /**
15
- * Get a list of action links for an item (e.g. post) ID.
16
- *
17
- * @since 2.2.6
18
- *
19
- * @param int $id Item ID to get the list of actions for.
20
- *
21
- * @return array List of actions ([action name] => [action link]).
22
- */
23
- abstract protected function get_object_type();
24
 
25
  /**
26
  * @since 2.2.6
9
  *
10
  * @since 2.2.6
11
  */
12
+ class AC_Column_Actions extends AC_Column {
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  /**
15
  * @since 2.2.6
classes/Column/Comment/Actions.php DELETED
@@ -1,16 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Comment_Actions extends AC_Column_Actions {
11
-
12
- protected function get_object_type() {
13
- return 'comment';
14
- }
15
-
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Comment/DateGmt.php CHANGED
@@ -17,7 +17,7 @@ class AC_Column_Comment_DateGmt extends AC_Column {
17
  public function get_value( $id ) {
18
  $date_gmt = $this->get_raw_value( $id );
19
 
20
- $value = sprintf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ),
21
  esc_url( get_comment_link( $id ) ),
22
  ac_helper()->date->date( $date_gmt ),
23
  ac_helper()->date->time( $date_gmt )
17
  public function get_value( $id ) {
18
  $date_gmt = $this->get_raw_value( $id );
19
 
20
+ $value = sprintf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>', 'codepress-admin-columns' ),
21
  esc_url( get_comment_link( $id ) ),
22
  ac_helper()->date->date( $date_gmt ),
23
  ac_helper()->date->time( $date_gmt )
classes/Column/Comment/WordCount.php CHANGED
@@ -14,7 +14,7 @@ class AC_Column_Comment_WordCount extends AC_Column {
14
  $this->set_label( __( 'Word Count', 'codepress-admin-columns' ) );
15
  }
16
 
17
- public function get_raw_value( $post_id ) {
18
  $comment = get_comment( $id );
19
 
20
  return ac_helper()->string->word_count( $comment->comment_content );
14
  $this->set_label( __( 'Word Count', 'codepress-admin-columns' ) );
15
  }
16
 
17
+ public function get_raw_value( $id ) {
18
  $comment = get_comment( $id );
19
 
20
  return ac_helper()->string->word_count( $comment->comment_content );
classes/Column/Link/Actions.php CHANGED
@@ -37,7 +37,7 @@ class AC_Column_Link_Actions extends AC_Column {
37
  $edit_link = get_edit_bookmark_link( $link );
38
 
39
  $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
40
- $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id ) . "' onclick=\"if ( confirm( '" . esc_js( sprintf( __( "You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete." ), $link->link_name ) ) . "' ) ) { return true;}return false;\">" . __( 'Delete' ) . "</a>";
41
 
42
  return implode( ' | ', $actions );
43
  }
37
  $edit_link = get_edit_bookmark_link( $link );
38
 
39
  $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
40
+ $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id ) . "' onclick=\"if ( confirm( '" . esc_js( sprintf( __( "You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete.", 'codepress-admin-columns' ), $link->link_name ) ) . "' ) ) { return true;}return false;\">" . __( 'Delete' ) . "</a>";
41
 
42
  return implode( ' | ', $actions );
43
  }
classes/Column/Media/Actions.php DELETED
@@ -1,16 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Media_Actions extends AC_Column_Actions {
11
-
12
- protected function get_object_type() {
13
- return 'media';
14
- }
15
-
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Media/AlternateText.php CHANGED
@@ -11,7 +11,7 @@ class AC_Column_Media_AlternateText extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-alternate_text' );
14
- $this->set_label( __( 'Alt', 'codepress-admin-columns' ) );
15
  }
16
 
17
  public function get_meta_key() {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-alternate_text' );
14
+ $this->set_label( __( 'Alternative Text', 'codepress-admin-columns' ) );
15
  }
16
 
17
  public function get_meta_key() {
classes/Column/Media/AttachedTo.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Media_AttachedTo extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-attached_to' );
14
- $this->set_label( __( 'Attached to Post', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $value = false;
19
-
20
- if ( $attached_to = $this->get_raw_value( $id ) ) {
21
- $value = ac_helper()->html->link( get_edit_post_link( $id ), get_the_title( $attached_to ) );
22
- }
23
-
24
- return $value;
25
- }
26
-
27
- public function get_raw_value( $id ) {
28
- return ac_helper()->post->get_raw_field( 'post_parent', $id );
29
- }
30
-
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Media/AvailableSizes.php CHANGED
@@ -7,9 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_AvailableSizes extends AC_Column_Media_Meta {
11
-
12
- private $intermediate_image_sizes = null;
13
 
14
  public function __construct() {
15
  parent::__construct();
@@ -18,18 +16,8 @@ class AC_Column_Media_AvailableSizes extends AC_Column_Media_Meta {
18
  $this->set_label( __( 'Available Sizes', 'codepress-admin-columns' ) );
19
  }
20
 
21
- public function get_intermediate_image_sizes() {
22
- if ( null === $this->intermediate_image_sizes ) {
23
- $this->intermediate_image_sizes = get_intermediate_image_sizes();
24
- }
25
-
26
- return $this->intermediate_image_sizes;
27
- }
28
-
29
- public function get_available_sizes( $id ) {
30
- $sizes = $this->get_raw_value( $id );
31
-
32
- return $sizes ? array_intersect( array_keys( $sizes ), $this->get_intermediate_image_sizes() ) : false;
33
  }
34
 
35
  public function get_value( $id ) {
@@ -41,45 +29,66 @@ class AC_Column_Media_AvailableSizes extends AC_Column_Media_Meta {
41
 
42
  $paths = array();
43
 
44
- // available sizes
45
- if ( $intersect = array_intersect( array_keys( $sizes ), get_intermediate_image_sizes() ) ) {
46
 
47
  $url = wp_get_attachment_url( $id );
48
- $filename = basename( $url );
49
- $paths[] = "<a title='{$filename}' href='{$url}'>" . __( 'full size', 'codepress-admin-columns' ) . "</a>";
50
 
51
- foreach ( $intersect as $size ) {
52
  $src = wp_get_attachment_image_src( $id, $size );
53
 
54
  if ( ! empty( $src[0] ) ) {
55
- $filename = basename( $src[0] );
56
- $paths[] = "<a title='{$filename}' href='{$src[0]}' class='available'>{$size}</a>";
57
  }
58
  }
59
  }
60
 
61
- global $_wp_additional_image_sizes;
62
-
63
- if ( ! empty( $_wp_additional_image_sizes ) ) {
64
- if ( isset( $_wp_additional_image_sizes['post-thumbnail'] ) ) {
65
- unset( $_wp_additional_image_sizes['post-thumbnail'] );
66
- }
67
 
68
- // image does not have these additional sizes rendered yet
69
- if ( $missing = array_diff( array_keys( $_wp_additional_image_sizes ), array_keys( $sizes ) ) ) {
70
  foreach ( $missing as $size ) {
71
- $paths[] = "<span title='Missing size: Try regenerate thumbnails with the plugin: Force Regenerate Thumbnails' href='javascript:;' class='not-available'>{$size}</span>";
72
  }
73
  }
74
  }
75
 
76
- return "<div class='sizes'>" . implode( ac_helper()->html->divider(), $paths ) . "</div>";
77
  }
78
 
79
- public function get_raw_value( $id ) {
80
- $value = parent::get_raw_value( $id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
- return isset( $value['sizes'] ) ? $value['sizes'] : false;
 
83
  }
84
 
85
  }
7
  /**
8
  * @since 2.0
9
  */
10
+ class AC_Column_Media_AvailableSizes extends AC_Column_Media_MetaValue {
 
 
11
 
12
  public function __construct() {
13
  parent::__construct();
16
  $this->set_label( __( 'Available Sizes', 'codepress-admin-columns' ) );
17
  }
18
 
19
+ protected function get_option_name() {
20
+ return 'sizes';
 
 
 
 
 
 
 
 
 
 
21
  }
22
 
23
  public function get_value( $id ) {
29
 
30
  $paths = array();
31
 
32
+ if ( $available_sizes = $this->get_available_sizes( $sizes ) ) {
 
33
 
34
  $url = wp_get_attachment_url( $id );
35
+ $paths[] = ac_helper()->html->tooltip( ac_helper()->html->link( $url, __( 'original', 'codepress-admin-columns' ) ), basename( $url ) );
 
36
 
37
+ foreach ( $available_sizes as $size ) {
38
  $src = wp_get_attachment_image_src( $id, $size );
39
 
40
  if ( ! empty( $src[0] ) ) {
41
+ $paths[] = ac_helper()->html->tooltip( ac_helper()->html->link( $src[0], $size ), basename( $src[0] ) );
 
42
  }
43
  }
44
  }
45
 
46
+ // include missing image sizes?
47
+ if ( '1' === $this->get_setting( 'include_missing_sizes' )->get_value() ) {
 
 
 
 
48
 
49
+ if ( $missing = $this->get_missing_sizes( $sizes ) ) {
 
50
  foreach ( $missing as $size ) {
51
+ $paths[] = ac_helper()->html->tooltip( $size, sprintf( __( 'Missing image file for size %s.', 'codepress-admin-columns' ), '<em>"' . $size . '"</em>' ), array( 'class' => 'ac-missing-size' ) );
52
  }
53
  }
54
  }
55
 
56
+ return "<div class='ac-image-sizes'>" . implode( ac_helper()->html->divider(), $paths ) . "</div>";
57
  }
58
 
59
+ /**
60
+ * @param array $image_sizes
61
+ *
62
+ * @return array
63
+ */
64
+ public function get_available_sizes( $image_sizes ) {
65
+ return array_intersect( array_keys( (array) $image_sizes ), (array) get_intermediate_image_sizes() );
66
+ }
67
+
68
+ /**
69
+ * @param array $image_sizes
70
+ *
71
+ * @return array
72
+ */
73
+ public function get_missing_sizes( $image_sizes ) {
74
+ global $_wp_additional_image_sizes;
75
+
76
+ if ( empty( $_wp_additional_image_sizes ) ) {
77
+ return array();
78
+ }
79
+
80
+ $additional_size = $_wp_additional_image_sizes;
81
+
82
+ if ( isset( $additional_size['post-thumbnail'] ) ) {
83
+ unset( $additional_size['post-thumbnail'] );
84
+ }
85
+
86
+ // image does not have these additional sizes rendered yet
87
+ return array_diff( array_keys( (array) $additional_size ), array_keys( (array) $image_sizes ) );
88
+ }
89
 
90
+ public function register_settings() {
91
+ $this->add_setting( new AC_Settings_Column_MissingImageSize( $this ) );
92
  }
93
 
94
  }
classes/Column/Media/Dimensions.php CHANGED
@@ -16,25 +16,22 @@ class AC_Column_Media_Dimensions extends AC_Column_Media_Meta {
16
  $this->set_label( __( 'Dimensions', 'codepress-admin-columns' ) );
17
  }
18
 
19
- public function get_surface( $id ) {
20
  $meta = $this->get_raw_value( $id );
21
 
22
- $height = ! empty( $meta['height'] ) ? $meta['height'] : 0;
23
- $width = ! empty( $meta['width'] ) ? $meta['width'] : 0;
24
-
25
- return $height * $width;
26
- }
27
 
28
- public function get_value( $id ) {
29
- $value = $this->get_empty_char();
30
 
31
- $meta = $this->get_raw_value( $id );
32
 
33
- if ( ! empty( $meta['width'] ) && ! empty( $meta['height'] ) ) {
34
- $value = "{$meta['width']} x {$meta['height']}";
35
- }
36
 
37
- return $value;
 
38
  }
39
 
40
  }
16
  $this->set_label( __( 'Dimensions', 'codepress-admin-columns' ) );
17
  }
18
 
19
+ public function get_value( $id ) {
20
  $meta = $this->get_raw_value( $id );
21
 
22
+ if ( empty( $meta['width'] ) || empty( $meta['height'] ) ) {
23
+ return $this->get_empty_char();
24
+ }
 
 
25
 
26
+ $value = $meta['width'] . '&nbsp;&times;&nbsp;' . $meta['height'];
 
27
 
28
+ $tooltip = sprintf( __( 'Width : %s px', 'codepress-admin-columns' ), $meta['width'] ) . "<br/>\n" . sprintf( __( 'Height : %s px', 'codepress-admin-columns' ), $meta['height'] );
29
 
30
+ return ac_helper()->html->tooltip( $this->get_formatted_value( $value ), $tooltip );
31
+ }
 
32
 
33
+ public function register_settings() {
34
+ $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
35
  }
36
 
37
  }
classes/Column/Media/ExifData.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_ExifData extends AC_Column_Media_Meta {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -16,10 +16,8 @@ class AC_Column_Media_ExifData extends AC_Column_Media_Meta {
16
  $this->set_label( __( 'EXIF Data', 'codepress-admin-columns' ) );
17
  }
18
 
19
- public function get_raw_value( $id ) {
20
- $value = parent::get_raw_value( $id );
21
-
22
- return ! empty( $value['image_meta'] ) ? $value['image_meta'] : false;
23
  }
24
 
25
  public function is_valid() {
7
  /**
8
  * @since 2.0
9
  */
10
+ class AC_Column_Media_ExifData extends AC_Column_Media_MetaValue {
11
 
12
  public function __construct() {
13
  parent::__construct();
16
  $this->set_label( __( 'EXIF Data', 'codepress-admin-columns' ) );
17
  }
18
 
19
+ protected function get_option_name() {
20
+ return 'image_meta';
 
 
21
  }
22
 
23
  public function is_valid() {
classes/Column/Media/Height.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Height extends AC_Column_Media_Meta {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -16,16 +16,18 @@ class AC_Column_Media_Height extends AC_Column_Media_Meta {
16
  $this->set_label( __( 'Height', 'codepress-admin-columns' ) );
17
  }
18
 
 
 
 
 
19
  public function get_value( $id ) {
20
  $value = $this->get_raw_value( $id );
21
 
22
- return $value ? $value . 'px' : $this->get_empty_char();
23
- }
24
-
25
- public function get_raw_value( $id ) {
26
- $value = parent::get_raw_value( $id );
27
 
28
- return ! empty( $value['height'] ) ? $value['height'] : false;
29
  }
30
 
31
  }
7
  /**
8
  * @since 2.0
9
  */
10
+ class AC_Column_Media_Height extends AC_Column_Media_MetaValue {
11
 
12
  public function __construct() {
13
  parent::__construct();
16
  $this->set_label( __( 'Height', 'codepress-admin-columns' ) );
17
  }
18
 
19
+ protected function get_option_name() {
20
+ return 'height';
21
+ }
22
+
23
  public function get_value( $id ) {
24
  $value = $this->get_raw_value( $id );
25
 
26
+ if ( ! $value ) {
27
+ return $this->get_empty_char();
28
+ }
 
 
29
 
30
+ return $value . 'px';
31
  }
32
 
33
  }
classes/Column/Media/ID.php CHANGED
@@ -14,7 +14,7 @@ class AC_Column_Media_ID extends AC_Column {
14
  $this->set_label( __( 'ID', 'codepress-admin-columns' ) );
15
  }
16
 
17
- public function get_value( $id ) {
18
  return $id;
19
  }
20
 
14
  $this->set_label( __( 'ID', 'codepress-admin-columns' ) );
15
  }
16
 
17
+ public function get_raw_value( $id ) {
18
  return $id;
19
  }
20
 
classes/Column/Media/MetaValue.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ /**
8
+ * @since 4.0.8
9
+ */
10
+ abstract class AC_Column_Media_MetaValue extends AC_Column_Media_Meta {
11
+
12
+ abstract protected function get_option_name();
13
+
14
+ public function get_raw_value( $id ) {
15
+ $value = parent::get_raw_value( $id );
16
+
17
+ $option = $this->get_option_name();
18
+
19
+ if ( empty( $value[ $option ] ) ) {
20
+ return false;
21
+ }
22
+
23
+ return $value[ $option ];
24
+ }
25
+
26
+ }
classes/Column/Media/Width.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Width extends AC_Column_Media_Meta {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -16,16 +16,8 @@ class AC_Column_Media_Width extends AC_Column_Media_Meta {
16
  $this->set_label( __( 'Width', 'codepress-admin-columns' ) );
17
  }
18
 
19
- public function get_value( $id ) {
20
- $value = $this->get_raw_value( $id );
21
-
22
- return $value ? $value . 'px' : $this->get_empty_char();
23
- }
24
-
25
- public function get_raw_value( $id ) {
26
- $value = parent::get_raw_value( $id );
27
-
28
- return ! empty( $value['width'] ) ? $value['width'] : false;
29
  }
30
 
31
  }
7
  /**
8
  * @since 2.0
9
  */
10
+ class AC_Column_Media_Width extends AC_Column_Media_Height {
11
 
12
  public function __construct() {
13
  parent::__construct();
16
  $this->set_label( __( 'Width', 'codepress-admin-columns' ) );
17
  }
18
 
19
+ protected function get_option_name() {
20
+ return 'width';
 
 
 
 
 
 
 
 
21
  }
22
 
23
  }
classes/Column/{UsedByMenu.php → Menu.php} RENAMED
@@ -10,18 +10,25 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.2.5
12
  */
13
- class AC_Column_UsedByMenu extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-used_by_menu' );
17
- $this->set_label( __( 'Used by Menu', 'codepress-admin-columns' ) );
18
  }
19
 
20
  /**
21
  * @see AC_Column::get_raw_value()
22
  * @since 2.2.5
23
  */
24
- function get_raw_value( $object_id ) {
 
 
 
 
 
 
 
25
  $object_type = $this->get_post_type();
26
 
27
  if ( ! $object_type ) {
@@ -32,6 +39,30 @@ class AC_Column_UsedByMenu extends AC_Column {
32
  $object_type = $this->get_list_screen()->get_meta_type();
33
  }
34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  $menu_item_ids = get_posts( array(
36
  'post_type' => 'nav_menu_item',
37
  'posts_per_page' => -1,
@@ -44,19 +75,32 @@ class AC_Column_UsedByMenu extends AC_Column {
44
  ),
45
  array(
46
  'key' => '_menu_item_object',
47
- 'value' => $object_type,
48
  ),
49
  ),
50
  ) );
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  if ( ! $menu_item_ids ) {
53
- return false;
54
  }
55
 
56
- $menu_ids = wp_get_object_terms( $menu_item_ids, 'nav_menu', array( 'fields' => 'ids' ) );
57
 
58
  if ( ! $menu_ids || is_wp_error( $menu_ids ) ) {
59
- return false;
60
  }
61
 
62
  return $menu_ids;
10
  *
11
  * @since 2.2.5
12
  */
13
+ class AC_Column_Menu extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-used_by_menu' );
17
+ $this->set_label( __( 'Menu', 'codepress-admin-columns' ) );
18
  }
19
 
20
  /**
21
  * @see AC_Column::get_raw_value()
22
  * @since 2.2.5
23
  */
24
+ public function get_raw_value( $object_id ) {
25
+ return $this->get_menus( $object_id, array( 'fields' => 'ids' ) );
26
+ }
27
+
28
+ /**
29
+ * @return string Object type: 'post', 'page' or 'user'
30
+ */
31
+ public function get_object_type() {
32
  $object_type = $this->get_post_type();
33
 
34
  if ( ! $object_type ) {
39
  $object_type = $this->get_list_screen()->get_meta_type();
40
  }
41
 
42
+ return $object_type;
43
+ }
44
+
45
+ /**
46
+ * @return string
47
+ */
48
+ public function get_item_type() {
49
+ $item_type = $this->get_list_screen()->get_meta_type();
50
+
51
+ switch ( $item_type ) {
52
+ case 'post' :
53
+ $item_type = 'post_type';
54
+ break;
55
+ }
56
+
57
+ return $item_type;
58
+ }
59
+
60
+ /**
61
+ * @param int $object_id
62
+ *
63
+ * @return array
64
+ */
65
+ public function get_menu_item_ids( $object_id ) {
66
  $menu_item_ids = get_posts( array(
67
  'post_type' => 'nav_menu_item',
68
  'posts_per_page' => -1,
75
  ),
76
  array(
77
  'key' => '_menu_item_object',
78
+ 'value' => $this->get_object_type(),
79
  ),
80
  ),
81
  ) );
82
 
83
+ return $menu_item_ids;
84
+ }
85
+
86
+ /**
87
+ * @param int $object_id
88
+ * @param array $args
89
+ *
90
+ * @return array
91
+ */
92
+ public function get_menus( $object_id, $args = array() ) {
93
+
94
+ $menu_item_ids = $this->get_menu_item_ids( $object_id );
95
+
96
  if ( ! $menu_item_ids ) {
97
+ return array();
98
  }
99
 
100
+ $menu_ids = wp_get_object_terms( $menu_item_ids, 'nav_menu', $args );
101
 
102
  if ( ! $menu_ids || is_wp_error( $menu_ids ) ) {
103
+ return array();
104
  }
105
 
106
  return $menu_ids;
classes/Column/Meta.php CHANGED
@@ -41,7 +41,7 @@ abstract class AC_Column_Meta extends AC_Column {
41
  public function get_raw_value( $id ) {
42
  $value = $this->get_meta_value( $id, $this->get_meta_key(), true );
43
 
44
- if( ! $value ){
45
  return false;
46
  }
47
 
@@ -61,9 +61,9 @@ abstract class AC_Column_Meta extends AC_Column {
61
  /**
62
  * Get meta value
63
  *
64
- * @param int $id
65
  * @param string $meta_key
66
- * @param bool $single
67
  *
68
  * @return mixed
69
  */
41
  public function get_raw_value( $id ) {
42
  $value = $this->get_meta_value( $id, $this->get_meta_key(), true );
43
 
44
+ if ( ! $value ) {
45
  return false;
46
  }
47
 
61
  /**
62
  * Get meta value
63
  *
64
+ * @param int $id
65
  * @param string $meta_key
66
+ * @param bool $single
67
  *
68
  * @return mixed
69
  */
classes/Column/Post/Actions.php DELETED
@@ -1,16 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Post_Actions extends AC_Column_Actions {
11
-
12
- protected function get_object_type() {
13
- return 'post';
14
- }
15
-
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Post/Attachment.php CHANGED
@@ -40,7 +40,7 @@ class AC_Column_Post_Attachment extends AC_Column {
40
  }
41
 
42
  public function register_settings() {
43
- $this->add_setting( new AC_Settings_Column_Image( $this ) );
44
  }
45
 
46
  }
40
  }
41
 
42
  public function register_settings() {
43
+ $this->add_setting( new AC_Settings_Column_AttachmentDisplay( $this ) );
44
  }
45
 
46
  }
classes/Column/Post/AttachmentCount.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * Column displaying number of attachment for an item.
9
- *
10
- * @since 2.0
11
- */
12
- class AC_Column_Post_AttachmentCount extends AC_Column {
13
-
14
- public function __construct() {
15
- $this->set_type( 'column-attachment_count' );
16
- $this->set_label( __( 'Attachment Count', 'codepress-admin-columns' ) );
17
- }
18
-
19
- public function get_raw_value( $post_id ) {
20
- $attachment_ids = get_posts( array(
21
- 'post_type' => 'attachment',
22
- 'posts_per_page' => -1,
23
- 'post_status' => null,
24
- 'post_parent' => $post_id,
25
- 'fields' => 'ids',
26
- ) );
27
-
28
- return count( $attachment_ids );
29
- }
30
-
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Post/BeforeMoreTag.php CHANGED
@@ -11,7 +11,7 @@ class AC_Column_Post_BeforeMoreTag extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-before_moretag' );
14
- $this->set_label( __( 'Before More Tag', 'codepress-admin-columns' ) );
15
  }
16
 
17
  public function get_raw_value( $post_id ) {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-before_moretag' );
14
+ $this->set_label( __( 'More Tag', 'codepress-admin-columns' ) );
15
  }
16
 
17
  public function get_raw_value( $post_id ) {
classes/Column/Post/CommentStatus.php CHANGED
@@ -14,7 +14,7 @@ class AC_Column_Post_CommentStatus extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-comment_status' );
17
- $this->set_label( __( 'Comment Status', 'codepress-admin-columns' ) );
18
  }
19
 
20
  public function is_valid() {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-comment_status' );
17
+ $this->set_label( __( 'Allow Comments', 'codepress-admin-columns' ) );
18
  }
19
 
20
  public function is_valid() {
classes/Column/Post/DatePublished.php CHANGED
@@ -11,7 +11,31 @@ class AC_Column_Post_DatePublished extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-date_published' );
14
- $this->set_label( __( 'Date Published' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
16
 
17
  public function get_raw_value( $post_id ) {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-date_published' );
14
+ $this->set_label( __( 'Date Published', 'codepress-admin-columns' ) );
15
+ }
16
+
17
+ public function get_value( $id ) {
18
+ $value = parent::get_value( $id );
19
+
20
+ $post = get_post( $id );
21
+
22
+ switch ( get_post_status( $id ) ) {
23
+
24
+ // Icons
25
+ case 'private' :
26
+ case 'draft' :
27
+ case 'pending' :
28
+ case 'future' :
29
+ $value = ac_helper()->post->get_status_icon( $post );
30
+
31
+ break;
32
+
33
+ // Tooltip
34
+ default :
35
+ $value = ac_helper()->html->tooltip( $value, ac_helper()->date->date( $post->post_date, 'wp_date_time' ) );
36
+ }
37
+
38
+ return $value;
39
  }
40
 
41
  public function get_raw_value( $post_id ) {
classes/Column/Post/Formats.php CHANGED
@@ -18,20 +18,16 @@ class AC_Column_Post_Formats extends AC_Column {
18
  return post_type_supports( $this->get_post_type(), 'post-formats' );
19
  }
20
 
21
- public function get_value( $post_id ) {
22
- $format = $this->get_raw_value( $post_id );
23
-
24
- return $format ? esc_html( get_post_format_string( $format ) ) : __( 'Standard', 'codepress-admin-columns' );
25
- }
26
-
27
  public function get_raw_value( $post_id ) {
28
- $format = get_post_format( $post_id );
29
-
30
- return $format ? $format : false;
31
  }
32
 
33
  public function get_taxonomy() {
34
  return 'post_format';
35
  }
36
 
 
 
 
 
37
  }
18
  return post_type_supports( $this->get_post_type(), 'post-formats' );
19
  }
20
 
 
 
 
 
 
 
21
  public function get_raw_value( $post_id ) {
22
+ return get_post_format( $post_id );
 
 
23
  }
24
 
25
  public function get_taxonomy() {
26
  return 'post_format';
27
  }
28
 
29
+ public function register_settings() {
30
+ $this->add_setting( new AC_Settings_Column_PostFormatIcon( $this ) );
31
+ }
32
+
33
  }
classes/Column/Post/ID.php CHANGED
@@ -14,8 +14,12 @@ class AC_Column_Post_ID extends AC_Column {
14
  $this->set_label( __( 'ID', 'codepress-admin-columns' ) );
15
  }
16
 
17
- public function get_value( $post_id ) {
18
  return $post_id;
19
  }
20
 
 
 
 
 
21
  }
14
  $this->set_label( __( 'ID', 'codepress-admin-columns' ) );
15
  }
16
 
17
+ public function get_raw_value( $post_id ) {
18
  return $post_id;
19
  }
20
 
21
+ public function register_settings() {
22
+ $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
23
+ }
24
+
25
  }
classes/Column/Post/Roles.php CHANGED
@@ -20,23 +20,23 @@ class AC_Column_Post_Roles extends AC_Column {
20
  * @return string
21
  */
22
  public function get_value( $post_id ) {
23
- $roles = ac_helper()->user->get_roles();
24
 
25
- $role_names = array();
26
-
27
- foreach ( $this->get_raw_value( $post_id ) as $role ) {
28
- if ( isset( $roles[ $role ] ) ) {
29
- $role_names[ $role ] = $roles[ $role ];
30
- }
31
  }
32
 
33
- return implode( __( ', ' ), $role_names );
34
  }
35
 
36
  public function get_raw_value( $post_id ) {
37
  $userdata = get_userdata( get_post_field( 'post_author', $post_id ) );
38
 
39
- return empty( $userdata->roles[0] ) ? array() : $userdata->roles;
 
 
 
 
40
  }
41
 
42
  }
20
  * @return string
21
  */
22
  public function get_value( $post_id ) {
23
+ $names = ac_helper()->user->get_role_names( $this->get_raw_value( $post_id ) );
24
 
25
+ if ( ! $names ) {
26
+ return $this->get_empty_char();
 
 
 
 
27
  }
28
 
29
+ return implode( __( ', ' ), $names );
30
  }
31
 
32
  public function get_raw_value( $post_id ) {
33
  $userdata = get_userdata( get_post_field( 'post_author', $post_id ) );
34
 
35
+ if ( empty( $userdata->roles[0] ) ) {
36
+ return array();
37
+ }
38
+
39
+ return $userdata->roles;
40
  }
41
 
42
  }
classes/Column/Post/TitleRaw.php CHANGED
@@ -11,15 +11,15 @@ class AC_Column_Post_TitleRaw extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-title_raw' );
14
- $this->set_label( __( 'Title without actions', 'codepress-admin-columns' ) );
15
- }
16
-
17
- function get_value( $post_id ) {
18
- return $this->get_raw_value( $post_id );
19
  }
20
 
21
  function get_raw_value( $post_id ) {
22
  return get_post_field( 'post_title', $post_id );
23
  }
24
 
 
 
 
 
25
  }
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-title_raw' );
14
+ $this->set_label( __( 'Title Only', 'codepress-admin-columns' ) );
 
 
 
 
15
  }
16
 
17
  function get_raw_value( $post_id ) {
18
  return get_post_field( 'post_title', $post_id );
19
  }
20
 
21
+ public function register_settings() {
22
+ $this->add_setting( new AC_Settings_Column_PostLink( $this ) );
23
+ }
24
+
25
  }
classes/Column/RelationInterface.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ interface AC_Column_RelationInterface {
8
+
9
+ /**
10
+ * Return information about the relation this column has.
11
+ *
12
+ * @return AC_Relation
13
+ */
14
+ public function get_relation_object();
15
+
16
+ }
classes/Column/Taxonomy.php CHANGED
@@ -24,7 +24,9 @@ class AC_Column_Taxonomy extends AC_Column {
24
  // Display
25
 
26
  public function get_value( $post_id ) {
27
- return implode( __( ', ' ), ac_helper()->taxonomy->get_term_links( get_the_terms( $post_id, $this->get_taxonomy() ), get_post_type( $post_id ) ) );
 
 
28
  }
29
 
30
  public function get_raw_value( $post_id ) {
24
  // Display
25
 
26
  public function get_value( $post_id ) {
27
+ $terms = ac_helper()->taxonomy->get_term_links( get_the_terms( $post_id, $this->get_taxonomy() ), get_post_type( $post_id ) );
28
+
29
+ return ac_helper()->string->enumeration_list( $terms, 'and' );
30
  }
31
 
32
  public function get_raw_value( $post_id ) {
classes/Column/User/Actions.php DELETED
@@ -1,16 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_User_Actions extends AC_Column_Actions {
11
-
12
- protected function get_object_type() {
13
- return 'user';
14
- }
15
-
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/User/ShowToolbar.php CHANGED
@@ -15,11 +15,11 @@ class AC_Column_User_ShowToolbar extends AC_Column {
15
  }
16
 
17
  public function get_value( $user_id ) {
18
- return ac_helper()->icon->yes_or_no( 'true' == $this->show_admin_bar_front( $user_id ) );
19
  }
20
 
21
  public function get_raw_value( $user_id ) {
22
- return $this->show_admin_bar_front( $user_id );
23
  }
24
 
25
  private function show_admin_bar_front( $user_id ) {
15
  }
16
 
17
  public function get_value( $user_id ) {
18
+ return ac_helper()->icon->yes_or_no( $this->get_raw_value( $user_id ) );
19
  }
20
 
21
  public function get_raw_value( $user_id ) {
22
+ return 'true' == $this->show_admin_bar_front( $user_id );
23
  }
24
 
25
  private function show_admin_bar_front( $user_id ) {
classes/Container.php ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Container {
8
+
9
+ /**
10
+ * @var object[]
11
+ */
12
+ protected $services = array();
13
+
14
+ /**
15
+ * @param string $id
16
+ *
17
+ * @return false|object
18
+ */
19
+ public function get( $id ) {
20
+ return $this->has( $id ) ? $this->services[ $id ] : false;
21
+ }
22
+
23
+ /**
24
+ * @param string $id
25
+ * @param object $service
26
+ *
27
+ * @return $this
28
+ */
29
+ public function set( $id, $service ) {
30
+ if ( ! is_object( $service ) ) {
31
+ throw new InvalidArgumentException( sprintf( 'The %s service is not an object.', $id ) );
32
+ }
33
+
34
+ $this->services[ $id ] = $service;
35
+
36
+ return $this;
37
+ }
38
+
39
+ /**
40
+ * @param string $id
41
+ *
42
+ * @return bool
43
+ */
44
+ public function has( $id ) {
45
+ return array_key_exists( $id, $this->services );
46
+ }
47
+
48
+ /**
49
+ * @return string[]
50
+ */
51
+ public function get_ids() {
52
+ return array_keys( $this->services );
53
+ }
54
+
55
+ }
classes/Helper.php CHANGED
@@ -9,17 +9,18 @@ if ( ! defined( 'ABSPATH' ) ) {
9
  *
10
  * Implements __call to work around any keyword restrictions for PHP versions > 7
11
  *
12
- * @property AC_Helper_Array array
13
- * @property AC_Helper_Date date
14
- * @property AC_Helper_Image image
15
- * @property AC_Helper_Post post
16
- * @property AC_Helper_String string
17
  * @property AC_Helper_Taxonomy taxonomy
18
- * @property AC_Helper_User user
19
- * @property AC_Helper_Icon icon
20
- * @property AC_Helper_Html html
21
- * @property AC_Helper_Network network
22
- * @property AC_Helper_File file
 
23
  */
24
  final class AC_Helper {
25
 
9
  *
10
  * Implements __call to work around any keyword restrictions for PHP versions > 7
11
  *
12
+ * @property AC_Helper_Array array
13
+ * @property AC_Helper_Date date
14
+ * @property AC_Helper_Image image
15
+ * @property AC_Helper_Post post
16
+ * @property AC_Helper_String string
17
  * @property AC_Helper_Taxonomy taxonomy
18
+ * @property AC_Helper_User user
19
+ * @property AC_Helper_Icon icon
20
+ * @property AC_Helper_Html html
21
+ * @property AC_Helper_Media media
22
+ * @property AC_Helper_Network network
23
+ * @property AC_Helper_File file
24
  */
25
  final class AC_Helper {
26
 
classes/Helper/Array.php CHANGED
@@ -132,4 +132,17 @@ class AC_Helper_Array {
132
  return array_intersect( $array, array_unique( array_diff_key( $array, array_unique( $array ) ) ) );
133
  }
134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  }
132
  return array_intersect( $array, array_unique( array_diff_key( $array, array_unique( $array ) ) ) );
133
  }
134
 
135
+ /**
136
+ * Returns all integers from an array or comma separated string
137
+ *
138
+ * @param array|string $mixed
139
+ *
140
+ * @return int[]
141
+ */
142
+ public function get_integers_from_mixed( $mixed ) {
143
+ $string = ac_helper()->array->implode_recursive( ',', $mixed );
144
+
145
+ return ac_helper()->string->string_to_array_integers( $string );
146
+ }
147
+
148
  }
classes/Helper/Date.php CHANGED
@@ -100,6 +100,18 @@ class AC_Helper_Date {
100
  return false;
101
  }
102
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  // Get date format from the General Settings
104
  if ( ! $display_format ) {
105
  $display_format = get_option( 'date_format' );
100
  return false;
101
  }
102
 
103
+ switch ( $display_format ) {
104
+
105
+ case 'wp_date' :
106
+ $display_format = get_option( 'date_format' );
107
+
108
+ break;
109
+ case 'wp_date_time' :
110
+ $display_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
111
+
112
+ break;
113
+ }
114
+
115
  // Get date format from the General Settings
116
  if ( ! $display_format ) {
117
  $display_format = get_option( 'date_format' );
classes/Helper/File.php CHANGED
@@ -17,15 +17,35 @@ class AC_Helper_File {
17
  * @return string|false Readable file size
18
  */
19
  public function get_readable_filesize( $bytes, $decimals = 2, $empty_text = false ) {
20
- if ( ! $bytes ) {
 
 
 
21
  return $empty_text;
22
  }
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  $filesize_units = array( 'Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB' );
25
 
26
  $i = (int) floor( log( $bytes, 1024 ) );
27
 
28
- return round( $bytes / pow( 1024, $i ), $decimals ) . ' ' . $filesize_units[ $i ];
 
 
 
29
  }
30
 
31
  }
17
  * @return string|false Readable file size
18
  */
19
  public function get_readable_filesize( $bytes, $decimals = 2, $empty_text = false ) {
20
+
21
+ $filesize = $this->get_readable_filesize_as_array( $bytes, $decimals );
22
+
23
+ if ( ! $filesize ) {
24
  return $empty_text;
25
  }
26
 
27
+ return implode( ' ', $filesize );
28
+ }
29
+
30
+ /**
31
+ * @param string $bytes
32
+ * @param int $decimals
33
+ *
34
+ * @return array [ string $size, string $unit ]
35
+ */
36
+ public function get_readable_filesize_as_array( $bytes, $decimals = 2 ) {
37
+ if ( ! $bytes ) {
38
+ return array();
39
+ }
40
+
41
  $filesize_units = array( 'Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB' );
42
 
43
  $i = (int) floor( log( $bytes, 1024 ) );
44
 
45
+ return array(
46
+ round( $bytes / pow( 1024, $i ), $decimals ),
47
+ $filesize_units[ $i ],
48
+ );
49
  }
50
 
51
  }
classes/Helper/Html.php CHANGED
@@ -98,9 +98,9 @@ class AC_Helper_Html {
98
  *
99
  * @return string
100
  */
101
- public function tooltip( $label, $tooltip ) {
102
- if ( $label && $tooltip ) {
103
- $label = '<span ' . $this->get_tooltip_attr( $tooltip ) . '>' . $label . '</span>';
104
  }
105
 
106
  return $label;
@@ -133,13 +133,9 @@ class AC_Helper_Html {
133
  * @param string $label
134
  * @param string $column_name
135
  *
136
- * @return string|false HTML
137
  */
138
- public function toggle_box_ajax( $id, $label, $column_name ) {
139
- if ( ! $label ) {
140
- return false;
141
- }
142
-
143
  return ac_helper()->html->link( '#', $label . '<div class="spinner"></div>', array(
144
  'class' => 'ac-toggle-box-link',
145
  'data-column' => $column_name,
@@ -171,7 +167,7 @@ class AC_Helper_Html {
171
  $_attributes = array();
172
 
173
  foreach ( $attributes as $attribute => $value ) {
174
- if ( in_array( $attribute, array( 'title', 'id', 'class', 'style', 'target' ) ) || 'data-' === substr( $attribute, 0, 5 ) ) {
175
  $_attributes[] = $this->get_attribute_as_string( $attribute, $value );
176
  }
177
  }
@@ -179,6 +175,51 @@ class AC_Helper_Html {
179
  return ' ' . implode( ' ', $_attributes );
180
  }
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  /**
183
  * @param string $string
184
  *
@@ -406,4 +447,18 @@ class AC_Helper_Html {
406
  return ob_get_clean();
407
  }
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  }
98
  *
99
  * @return string
100
  */
101
+ public function tooltip( $label, $tooltip, $attributes = array() ) {
102
+ if ( ac_helper()->string->is_not_empty( $label ) && $tooltip ) {
103
+ $label = '<span ' . $this->get_tooltip_attr( $tooltip ) . $this->get_attributes( $attributes ) . '>' . $label . '</span>';
104
  }
105
 
106
  return $label;
133
  * @param string $label
134
  * @param string $column_name
135
  *
136
+ * @return string
137
  */
138
+ public function get_ajax_toggle_box_link( $id, $label, $column_name ) {
 
 
 
 
139
  return ac_helper()->html->link( '#', $label . '<div class="spinner"></div>', array(
140
  'class' => 'ac-toggle-box-link',
141
  'data-column' => $column_name,
167
  $_attributes = array();
168
 
169
  foreach ( $attributes as $attribute => $value ) {
170
+ if ( in_array( $attribute, array( 'title', 'id', 'class', 'style', 'target', 'rel', 'download' ) ) || 'data-' === substr( $attribute, 0, 5 ) ) {
171
  $_attributes[] = $this->get_attribute_as_string( $attribute, $value );
172
  }
173
  }
175
  return ' ' . implode( ' ', $_attributes );
176
  }
177
 
178
+ /**
179
+ * Returns an array with internal / external links
180
+ *
181
+ * @param $string
182
+ *
183
+ * @return false|array [ internal | external ]
184
+ */
185
+ public function get_internal_external_links( $string ) {
186
+ if ( ! class_exists( 'DOMDocument' ) ) {
187
+ return false;
188
+ }
189
+
190
+ // Just do a very simple check to check for possible links
191
+ if ( false === strpos( $string, '<a' ) ) {
192
+ return false;
193
+ }
194
+
195
+ $internal_links = array();
196
+ $external_links = array();
197
+
198
+ $dom = new DOMDocument();
199
+ $dom->loadHTML( $string );
200
+
201
+ $links = $dom->getElementsByTagName( 'a' );
202
+
203
+ foreach ( $links as $link ) {
204
+ /** @var DOMElement $link */
205
+ $href = $link->getAttribute( 'href' );
206
+
207
+ if ( false !== strpos( $href, home_url() ) ) {
208
+ $internal_links[] = $href;
209
+ } else {
210
+ $external_links[] = $href;
211
+ }
212
+ }
213
+
214
+ if ( empty( $internal_links ) && empty( $external_links ) ) {
215
+ return false;
216
+ }
217
+
218
+ return array(
219
+ $internal_links, $external_links,
220
+ );
221
+ }
222
+
223
  /**
224
  * @param string $string
225
  *
447
  return ob_get_clean();
448
  }
449
 
450
+ /**
451
+ * @param string $value HTML
452
+ * @param int $removed
453
+ *
454
+ * @return string
455
+ */
456
+ public function images( $value, $removed = false ) {
457
+ if ( $removed ) {
458
+ $value .= ac_helper()->html->rounded( '+' . $removed );
459
+ }
460
+
461
+ return '<div class="ac-image-container">' . $value . '</div>';
462
+ }
463
+
464
  }
classes/Helper/Icon.php CHANGED
@@ -39,24 +39,24 @@ class AC_Helper_Icon {
39
  * @since 3.0
40
  * @return string
41
  */
42
- public function yes( $tooltip = false, $title = true ) {
43
  if ( true === $title ) {
44
  $title = __( 'Yes' );
45
  }
46
 
47
- return $this->dashicon( array( 'icon' => 'yes', 'class' => 'green', 'title' => $title, 'tooltip' => $tooltip ) );
48
  }
49
 
50
  /**
51
  * @since 3.0
52
  * @return string
53
  */
54
- public function no( $tooltip = false, $title = true ) {
55
  if ( true === $title ) {
56
  $title = __( 'No' );
57
  }
58
 
59
- return $this->dashicon( array( 'icon' => 'no', 'class' => 'red', 'title' => $title, 'tooltip' => $tooltip ) );
60
  }
61
 
62
  /**
39
  * @since 3.0
40
  * @return string
41
  */
42
+ public function yes( $tooltip = false, $title = true, $class = 'green' ) {
43
  if ( true === $title ) {
44
  $title = __( 'Yes' );
45
  }
46
 
47
+ return $this->dashicon( array( 'icon' => 'yes', 'class' => $class, 'title' => $title, 'tooltip' => $tooltip ) );
48
  }
49
 
50
  /**
51
  * @since 3.0
52
  * @return string
53
  */
54
+ public function no( $tooltip = false, $title = true, $class = 'red' ) {
55
  if ( true === $title ) {
56
  $title = __( 'No' );
57
  }
58
 
59
+ return $this->dashicon( array( 'icon' => 'no-alt', 'class' => $class, 'title' => $title, 'tooltip' => $tooltip ) );
60
  }
61
 
62
  /**
classes/Helper/Image.php CHANGED
@@ -149,8 +149,7 @@ class AC_Helper_Image {
149
  foreach ( (array) $images as $value ) {
150
  if ( $skip_image_check && $value && is_string( $value ) ) {
151
  $thumbnails[] = $this->get_image_by_url( $value, $size );
152
- }
153
- else if ( ac_helper()->string->is_image( $value ) ) {
154
  $thumbnails[] = $this->get_image_by_url( $value, $size );
155
  } // Media Attachment
156
  else if ( is_numeric( $value ) && wp_get_attachment_url( $value ) ) {
@@ -247,4 +246,84 @@ class AC_Helper_Image {
247
  return ob_get_clean();
248
  }
249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  }
149
  foreach ( (array) $images as $value ) {
150
  if ( $skip_image_check && $value && is_string( $value ) ) {
151
  $thumbnails[] = $this->get_image_by_url( $value, $size );
152
+ } else if ( ac_helper()->string->is_image( $value ) ) {
 
153
  $thumbnails[] = $this->get_image_by_url( $value, $size );
154
  } // Media Attachment
155
  else if ( is_numeric( $value ) && wp_get_attachment_url( $value ) ) {
246
  return ob_get_clean();
247
  }
248
 
249
+ /**
250
+ * Return dimensions and file type
251
+ *
252
+ * @see filesize
253
+ *
254
+ * @param string $url
255
+ *
256
+ * @return false|array
257
+ */
258
+ public function get_local_image_info( $url ) {
259
+ $path = $this->get_local_image_path( $url );
260
+
261
+ if ( ! $path ) {
262
+ return false;
263
+ }
264
+
265
+ return getimagesize( $path );
266
+ }
267
+
268
+ /**
269
+ * @param string $url
270
+ *
271
+ * @return false|string
272
+ */
273
+ public function get_local_image_path( $url ) {
274
+ $path = str_replace( WP_CONTENT_URL, WP_CONTENT_DIR, $url );
275
+
276
+ if ( ! file_exists( $path ) ) {
277
+ return false;
278
+ }
279
+
280
+ return $path;
281
+ }
282
+
283
+ /**
284
+ * @param string $url
285
+ *
286
+ * @return false|int
287
+ */
288
+ public function get_local_image_size( $url ) {
289
+ $path = $this->get_local_image_path( $url );
290
+
291
+ if ( ! $path ) {
292
+ return false;
293
+ }
294
+
295
+ return filesize( $path );
296
+ }
297
+
298
+ /**
299
+ * @param string $string
300
+ *
301
+ * @return array
302
+ */
303
+ public function get_image_urls_from_string( $string ) {
304
+ if ( ! $string ) {
305
+ return array();
306
+ }
307
+
308
+ if ( ! class_exists( 'DOMDocument' ) ) {
309
+ return array();
310
+ }
311
+
312
+ $dom = new DOMDocument;
313
+ @$dom->loadHTML( $string );
314
+ $dom->preserveWhiteSpace = false;
315
+
316
+ $urls = array();
317
+
318
+ $images = $dom->getElementsByTagName( 'img' );
319
+
320
+ foreach ( $images as $img ) {
321
+
322
+ /** @var DOMElement $img */
323
+ $urls[] = $img->getAttribute( 'src' );
324
+ }
325
+
326
+ return $urls;
327
+ }
328
+
329
  }
classes/Helper/Media.php ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Helper_Media {
8
+
9
+ /**
10
+ * @param string $image_url
11
+ * @param bool $check_cropped_versions Checks for cropped version of the image. e.g. file-name-320x60.jpg
12
+ *
13
+ * @return bool
14
+ */
15
+ public function get_attachment_id_by_url( $image_url, $check_cropped_versions = false ) {
16
+ if ( ! $image_url ) {
17
+ return false;
18
+ }
19
+
20
+ $upload_dir = wp_get_upload_dir();
21
+
22
+ // Is image in upload folder?
23
+ if ( false === strpos( $image_url, $upload_dir['baseurl'] ) ) {
24
+ return false;
25
+ }
26
+
27
+ $file_with_relative_path = ltrim( str_replace( $upload_dir['baseurl'], '', $image_url ), '/' );
28
+
29
+ $image_id = false;
30
+
31
+ $images = get_posts( array(
32
+ 'post_type' => 'attachment',
33
+ 'fields' => 'ids',
34
+ 'meta_query' => array(
35
+ array(
36
+ 'key' => '_wp_attached_file',
37
+ 'value' => $file_with_relative_path,
38
+ ),
39
+ ),
40
+ 'posts_per_page' => 1,
41
+ ) );
42
+
43
+ if ( $images ) {
44
+ $image_id = $images[0];
45
+ }
46
+
47
+ // Maybe it's a cropped version of an image. e.g. file-name-320x60.jpg
48
+ if ( ! $image_id && $check_cropped_versions ) {
49
+
50
+ $relative_upload_dir = dirname( $file_with_relative_path );
51
+
52
+ $image_ids = get_posts( array(
53
+ 'post_type' => 'attachment',
54
+ 'fields' => 'ids',
55
+ 'meta_query' => array(
56
+ array(
57
+ 'key' => '_wp_attachment_metadata',
58
+ 'value' => serialize( basename( $image_url ) ),
59
+ 'compare' => 'LIKE',
60
+ ),
61
+ array(
62
+ 'key' => '_wp_attached_file',
63
+ 'value' => $relative_upload_dir,
64
+ 'compare' => 'LIKE',
65
+ ),
66
+ ),
67
+ 'posts_per_page' => 1,
68
+ ) );
69
+
70
+ if ( $image_ids ) {
71
+
72
+ if ( 1 === count( $image_ids ) ) {
73
+
74
+ // Direct match
75
+ $image_id = $image_ids[0];
76
+ } else {
77
+
78
+ // Make sure the found image is in the same folder as the original
79
+ foreach ( $image_ids as $_image_id ) {
80
+ if ( 0 === strpos( get_post_meta( $_image_id, '_wp_attached_file', true ), $relative_upload_dir ) ) {
81
+ $image_id = $_image_id;
82
+
83
+ }
84
+ }
85
+
86
+ }
87
+ }
88
+
89
+ }
90
+
91
+ return $image_id;
92
+ }
93
+
94
+ }
classes/Helper/Post.php CHANGED
@@ -115,4 +115,38 @@ class AC_Helper_Post {
115
  return $title;
116
  }
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  }
115
  return $title;
116
  }
117
 
118
+ /**
119
+ * @param WP_Post $post Post
120
+ *
121
+ * @return false|string Dash icon with tooltip
122
+ */
123
+ public function get_status_icon( $post ) {
124
+ $icon = false;
125
+
126
+ switch ( $post->post_status ) {
127
+ case 'private' :
128
+ $icon = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'hidden', 'class' => 'gray' ) ), __( 'Private' ) );
129
+ break;
130
+ case 'publish' :
131
+ $icon = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'yes', 'class' => 'blue large' ) ), __( 'Published' ) );
132
+ break;
133
+ case 'draft' :
134
+ $icon = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'edit', 'class' => 'green' ) ), __( 'Draft' ) );
135
+ break;
136
+ case 'pending' :
137
+ $icon = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'backup', 'class' => 'orange' ) ), __( 'Pending for review' ) );
138
+ break;
139
+ case 'future' :
140
+ $icon = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'clock' ) ), __( 'Scheduled' ) . ': <em>' . ac_helper()->date->date( $post->post_date, 'wp_date_time' ) . '</em>' );
141
+
142
+ // Missed schedule
143
+ if ( ( time() - mysql2date( 'G', $post->post_date_gmt ) ) > 0 ) {
144
+ $icon .= ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'flag', 'class' => 'gray' ) ), __( 'Missed schedule' ) );
145
+ }
146
+ break;
147
+ }
148
+
149
+ return $icon;
150
+ }
151
+
152
  }
classes/Helper/String.php CHANGED
@@ -236,7 +236,7 @@ class AC_Helper_String {
236
  * @return string Display empty value
237
  */
238
  public function get_empty_char() {
239
- _deprecated_function( __METHOD__, '3.0' );
240
 
241
  return '&ndash;';
242
  }
@@ -280,10 +280,12 @@ class AC_Helper_String {
280
  return false;
281
  }
282
 
 
 
 
 
283
  if ( 'or' === $compound ) {
284
  $compound = __( ' or ', 'codepress-admin-columns' );
285
- } else {
286
- $compound = __( ' and ', 'codepress-admin-columns' );
287
  }
288
 
289
  $last = end( $words );
236
  * @return string Display empty value
237
  */
238
  public function get_empty_char() {
239
+ _deprecated_function( __METHOD__, '3.0', 'AC_Column::get_empty_char' );
240
 
241
  return '&ndash;';
242
  }
280
  return false;
281
  }
282
 
283
+ if ( 'and' === $compound ) {
284
+ return wp_sprintf( '%l', $words );
285
+ }
286
+
287
  if ( 'or' === $compound ) {
288
  $compound = __( ' or ', 'codepress-admin-columns' );
 
 
289
  }
290
 
291
  $last = end( $words );
classes/Helper/User.php CHANGED
@@ -8,7 +8,7 @@ class AC_Helper_User {
8
 
9
  /**
10
  * @param string $field
11
- * @param int $user_id
12
  *
13
  * @return bool|string|array
14
  */
@@ -23,7 +23,15 @@ class AC_Helper_User {
23
  $user = get_userdata( $user );
24
  }
25
 
26
- return $user && is_a( $user, 'WP_User' ) ? $user : false;
 
 
 
 
 
 
 
 
27
  }
28
 
29
  /**
@@ -46,38 +54,69 @@ class AC_Helper_User {
46
  }
47
 
48
  /**
49
- * @param $user
50
- * @param bool $format
51
  *
52
  * @return false|string
53
  */
54
  public function get_display_name( $user, $format = false ) {
55
- $name = false;
56
 
57
- if ( $user = $this->get_user( $user ) ) {
58
- $name = $user->display_name;
 
59
 
60
- if ( ! empty( $user->{$format} ) ) {
61
- $name = $user->{$format};
62
- }
 
 
63
 
64
- if ( 'first_last_name' == $format ) {
65
  $name_parts = array();
 
66
  if ( $user->first_name ) {
67
  $name_parts[] = $user->first_name;
68
  }
69
  if ( $user->last_name ) {
70
  $name_parts[] = $user->last_name;
71
  }
 
72
  if ( $name_parts ) {
73
  $name = implode( ' ', $name_parts );
74
  }
75
- }
 
 
 
 
 
 
 
 
 
76
  }
77
 
78
  return $name;
79
  }
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  /**
82
  * @since 3.4.4
83
  */
@@ -107,38 +146,31 @@ class AC_Helper_User {
107
  }
108
 
109
  /**
110
- * @return array
 
 
111
  */
112
- public function get_ids() {
113
- global $wpdb;
114
 
115
- return $wpdb->get_col( "SELECT {$wpdb->users}.ID FROM {$wpdb->users}" );
116
- }
117
 
118
- /**
119
- * Store current user meta data that is compatible with multi sites
120
- *
121
- * @param string $key
122
- * @param array|string $value
123
- */
124
- public function update_meta_site( $key, $value, $prev_value = '' ) {
125
- return update_user_meta( get_current_user_id(), $key . get_current_blog_id(), $value, $prev_value );
126
- }
127
 
128
- /**
129
- * Get current user meta data
130
- * @param string $key
131
- */
132
- public function get_meta_site( $key, $single = false ) {
133
- return get_user_meta( get_current_user_id(), $key . get_current_blog_id(), $single );
134
  }
135
 
136
  /**
137
- * Get current user meta data
138
- * @param string $key
139
  */
140
- public function delete_meta_site( $key, $value = '' ) {
141
- return delete_user_meta( get_current_user_id(), $key . get_current_blog_id(), $value );
 
 
142
  }
143
 
144
  }
8
 
9
  /**
10
  * @param string $field
11
+ * @param int $user_id
12
  *
13
  * @return bool|string|array
14
  */
23
  $user = get_userdata( $user );
24
  }
25
 
26
+ if ( ! $user ) {
27
+ return false;
28
+ }
29
+
30
+ if ( ! is_a( $user, 'WP_User' ) ) {
31
+ return false;
32
+ }
33
+
34
+ return $user;
35
  }
36
 
37
  /**
54
  }
55
 
56
  /**
57
+ * @param int|WP_User $user
58
+ * @param false|string $format WP_user var, 'first_last_name' or 'roles'
59
  *
60
  * @return false|string
61
  */
62
  public function get_display_name( $user, $format = false ) {
63
+ $user = $this->get_user( $user );
64
 
65
+ if ( ! $user ) {
66
+ return false;
67
+ }
68
 
69
+ $name = $user->display_name;
70
+
71
+ switch ( $format ) {
72
+
73
+ case 'first_last_name' :
74
 
 
75
  $name_parts = array();
76
+
77
  if ( $user->first_name ) {
78
  $name_parts[] = $user->first_name;
79
  }
80
  if ( $user->last_name ) {
81
  $name_parts[] = $user->last_name;
82
  }
83
+
84
  if ( $name_parts ) {
85
  $name = implode( ' ', $name_parts );
86
  }
87
+
88
+ break;
89
+ case 'roles' :
90
+ $name = ac_helper()->string->enumeration_list( $this->get_roles_names( $user->roles ), 'and' );
91
+
92
+ break;
93
+ default :
94
+ if ( ! empty( $user->{$format} ) ) {
95
+ $name = $user->{$format};
96
+ }
97
  }
98
 
99
  return $name;
100
  }
101
 
102
+ /**
103
+ * @param array $roles Role keys
104
+ *
105
+ * @return array Role nice names
106
+ */
107
+ public function get_roles_names( $roles ) {
108
+ $translated = $this->get_roles();
109
+
110
+ $role_names = array();
111
+ foreach ( $roles as $role ) {
112
+ if ( isset( $translated[ $role ] ) ) {
113
+ $role_names[ $role ] = $translated[ $role ];
114
+ }
115
+ }
116
+
117
+ return $role_names;
118
+ }
119
+
120
  /**
121
  * @since 3.4.4
122
  */
146
  }
147
 
148
  /**
149
+ * @param array $roles
150
+ *
151
+ * @return array Role Names
152
  */
153
+ public function get_role_names( $roles ) {
154
+ $role_names = array();
155
 
156
+ $labels = $this->get_roles();
 
157
 
158
+ foreach ( $roles as $role ) {
159
+ if ( isset( $labels[ $role ] ) ) {
160
+ $role_names[ $role ] = $labels[ $role ];
161
+ }
162
+ }
 
 
 
 
163
 
164
+ return $role_names;
 
 
 
 
 
165
  }
166
 
167
  /**
168
+ * @return array
 
169
  */
170
+ public function get_ids() {
171
+ global $wpdb;
172
+
173
+ return $wpdb->get_col( "SELECT {$wpdb->users}.ID FROM {$wpdb->users}" );
174
  }
175
 
176
  }
classes/ListScreen.php CHANGED
@@ -244,7 +244,7 @@ abstract class AC_ListScreen {
244
  /**
245
  * @param string $layout_id
246
  *
247
- * @return $this
248
  */
249
  public function set_layout_id( $layout_id ) {
250
  $this->layout_id = $layout_id;
@@ -449,6 +449,17 @@ abstract class AC_ListScreen {
449
 
450
  $this->column_types[ $column->get_type() ] = $column;
451
 
 
 
 
 
 
 
 
 
 
 
 
452
  return true;
453
  }
454
 
@@ -612,6 +623,17 @@ abstract class AC_ListScreen {
612
  */
613
  protected function register_column( AC_Column $column ) {
614
  $this->columns[ $column->get_name() ] = $column;
 
 
 
 
 
 
 
 
 
 
 
615
  }
616
 
617
  /**
@@ -818,11 +840,6 @@ abstract class AC_ListScreen {
818
  */
819
  $value = apply_filters( 'ac/column/value', $value, $id, $column );
820
 
821
- // Display a toggle box with an ajax callback.
822
- if ( $column instanceof AC_Column_AjaxValue && $value !== $column->get_empty_char() ) {
823
- $value = ac_helper()->html->toggle_box_ajax( $id, $value, $column->get_name() );
824
- }
825
-
826
  return $value;
827
  }
828
 
@@ -839,6 +856,17 @@ abstract class AC_ListScreen {
839
  return ob_get_clean();
840
  }
841
 
 
 
 
 
 
 
 
 
 
 
 
842
  /**
843
  * @return WP_List_Table|object
844
  */
244
  /**
245
  * @param string $layout_id
246
  *
247
+ * @return AC_ListScreen
248
  */
249
  public function set_layout_id( $layout_id ) {
250
  $this->layout_id = $layout_id;
449
 
450
  $this->column_types[ $column->get_type() ] = $column;
451
 
452
+ /**
453
+ * Fires when a column type is registered to a list screen. Can be used to attach additional
454
+ * functionality to a column type, such as exporting, sorting or filtering
455
+ *
456
+ * @since 3.0.5
457
+ *
458
+ * @param AC_Column $column Column type object
459
+ * @param AC_ListScreen $list_screen List screen object to which the column was registered
460
+ */
461
+ do_action( 'ac/list_screen/column_type_registered', $column, $this );
462
+
463
  return true;
464
  }
465
 
623
  */
624
  protected function register_column( AC_Column $column ) {
625
  $this->columns[ $column->get_name() ] = $column;
626
+
627
+ /**
628
+ * Fires when a column is registered to a list screen, i.e. when it is created. Can be used
629
+ * to attach additional functionality to a column, such as exporting, sorting or filtering
630
+ *
631
+ * @since 3.0.5
632
+ *
633
+ * @param AC_Column $column Column type object
634
+ * @param AC_ListScreen $list_screen List screen object to which the column was registered
635
+ */
636
+ do_action( 'ac/list_screen/column_registered', $column, $this );
637
  }
638
 
639
  /**
840
  */
841
  $value = apply_filters( 'ac/column/value', $value, $id, $column );
842
 
 
 
 
 
 
843
  return $value;
844
  }
845
 
856
  return ob_get_clean();
857
  }
858
 
859
+ /**
860
+ * get_object_by_id made 'public' for backwards compatibility
861
+ *
862
+ * @param int $object_id
863
+ *
864
+ * @return mixed
865
+ */
866
+ public function get_object( $object_id ) {
867
+ return $this->get_object_by_id( $object_id );
868
+ }
869
+
870
  /**
871
  * @return WP_List_Table|object
872
  */
classes/ListScreen/Comment.php CHANGED
@@ -61,8 +61,9 @@ class AC_ListScreen_Comment extends AC_ListScreen {
61
  }
62
 
63
  protected function register_column_types() {
64
- $this->register_column_type( new AC_Column_CustomField() );
65
- $this->register_column_type( new AC_Column_UsedByMenu() );
 
66
 
67
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Comment', 'AC_' );
68
  }
61
  }
62
 
63
  protected function register_column_types() {
64
+ $this->register_column_type( new AC_Column_CustomField );
65
+ $this->register_column_type( new AC_Column_Menu );
66
+ $this->register_column_type( new AC_Column_Actions );
67
 
68
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Comment', 'AC_' );
69
  }
classes/ListScreen/Media.php CHANGED
@@ -40,8 +40,9 @@ class AC_ListScreen_Media extends AC_ListScreenPost {
40
  }
41
 
42
  protected function register_column_types() {
43
- $this->register_column_type( new AC_Column_CustomField() );
44
- $this->register_column_type( new AC_Column_UsedByMenu() );
 
45
 
46
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Media', 'AC_' );
47
  }
40
  }
41
 
42
  protected function register_column_types() {
43
+ $this->register_column_type( new AC_Column_CustomField );
44
+ $this->register_column_type( new AC_Column_Menu );
45
+ $this->register_column_type( new AC_Column_Actions );
46
 
47
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Media', 'AC_' );
48
  }
classes/ListScreen/Post.php CHANGED
@@ -18,14 +18,6 @@ class AC_ListScreen_Post extends AC_ListScreenPost {
18
  $this->set_list_table_class( 'WP_Posts_List_Table' );
19
  }
20
 
21
- /**
22
- * @since 3.0
23
- * @return WP_Post Post object
24
- */
25
- protected function get_object_by_id( $post_id ) {
26
- return get_post( $post_id );
27
- }
28
-
29
  public function set_manage_value_callback() {
30
  /* @see WP_Posts_List_Table::column_default */
31
  add_action( "manage_" . $this->get_post_type() . "_posts_custom_column", array( $this, 'manage_value' ), 100, 2 );
@@ -60,8 +52,9 @@ class AC_ListScreen_Post extends AC_ListScreenPost {
60
  }
61
 
62
  protected function register_column_types() {
63
- $this->register_column_type( new AC_Column_CustomField() );
64
- $this->register_column_type( new AC_Column_UsedByMenu() );
 
65
 
66
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Post', 'AC_' );
67
  }
18
  $this->set_list_table_class( 'WP_Posts_List_Table' );
19
  }
20
 
 
 
 
 
 
 
 
 
21
  public function set_manage_value_callback() {
22
  /* @see WP_Posts_List_Table::column_default */
23
  add_action( "manage_" . $this->get_post_type() . "_posts_custom_column", array( $this, 'manage_value' ), 100, 2 );
52
  }
53
 
54
  protected function register_column_types() {
55
+ $this->register_column_type( new AC_Column_CustomField );
56
+ $this->register_column_type( new AC_Column_Menu );
57
+ $this->register_column_type( new AC_Column_Actions );
58
 
59
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Post', 'AC_' );
60
  }
classes/ListScreen/User.php CHANGED
@@ -58,8 +58,9 @@ class AC_ListScreen_User extends AC_ListScreen {
58
  }
59
 
60
  protected function register_column_types() {
61
- $this->register_column_type( new AC_Column_CustomField() );
62
- $this->register_column_type( new AC_Column_UsedByMenu() );
 
63
 
64
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/User', 'AC_' );
65
  }
58
  }
59
 
60
  protected function register_column_types() {
61
+ $this->register_column_type( new AC_Column_CustomField );
62
+ $this->register_column_type( new AC_Column_Menu );
63
+ $this->register_column_type( new AC_Column_Actions );
64
 
65
  $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/User', 'AC_' );
66
  }
classes/Meta/Query.php CHANGED
@@ -410,7 +410,7 @@ class AC_Meta_Query {
410
  }
411
 
412
  /**
413
- * Return last sql that was queries
414
  *
415
  * @return string
416
  */
410
  }
411
 
412
  /**
413
+ * Return last sql that was queried
414
  *
415
  * @return string
416
  */
classes/Notice/Review.php CHANGED
@@ -6,26 +6,19 @@ if ( ! defined( 'ABSPATH' ) ) {
6
 
7
  class AC_Notice_Review {
8
 
9
- const OPTION_INSTALL_DATE = 'cpac-install-timestamp';
10
-
11
- const OPTION_ADMIN_NOTICE_KEY = 'cpac-hide-review-notice';
12
-
13
- function __construct() {
14
- register_activation_hook( __FILE__, array( $this, 'insert_install_timestamp' ) );
15
-
16
  add_action( 'admin_init', array( $this, 'maybe_display_review_notice' ) );
17
- add_action( 'wp_ajax_cpac_hide_review_notice', array( $this, 'ajax_hide_review_notice' ) );
18
  }
19
 
20
- public function insert_install_timestamp() {
21
- ac_helper()->user->update_meta_site( self::OPTION_INSTALL_DATE, time() );
22
- }
 
 
23
 
24
- private function get_install_timestamp() {
25
- $timestamp = ac_helper()->user->get_meta_site( self::OPTION_INSTALL_DATE, true );
26
-
27
- if ( '' == $timestamp ) {
28
- $this->insert_install_timestamp();
29
 
30
  $timestamp = time();
31
  }
@@ -33,6 +26,9 @@ class AC_Notice_Review {
33
  return $timestamp;
34
  }
35
 
 
 
 
36
  public function maybe_display_review_notice() {
37
  if ( AC()->suppress_site_wide_notices() ) {
38
  return;
@@ -42,22 +38,27 @@ class AC_Notice_Review {
42
  return;
43
  }
44
 
45
- if ( $this->is_review_notice_shown() ) {
46
  return;
47
  }
48
 
49
- // Display notice after 30 days
50
- if ( ( time() - ( 30 * DAY_IN_SECONDS ) ) >= $this->get_install_timestamp() ) {
51
- add_action( 'admin_notices', array( $this, 'display_review_notice' ) );
52
  }
 
 
53
  }
54
 
55
- public function is_review_notice_shown() {
56
- return '1' === get_user_meta( get_current_user_id(), self::OPTION_ADMIN_NOTICE_KEY, true );
 
 
 
57
  }
58
 
59
  public function ajax_hide_review_notice() {
60
- update_user_meta( get_current_user_id(), self::OPTION_ADMIN_NOTICE_KEY, '1', true );
61
  }
62
 
63
  public function display_review_notice() {
@@ -70,24 +71,24 @@ class AC_Notice_Review {
70
  wp_enqueue_style( 'ac-sitewide-notices' );
71
 
72
  ?>
73
- <div class="ac-message updated">
74
- <div class="info">
75
- <p>
76
  <?php printf( __(
77
  "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s.", 'codepress-admin-columns' ),
78
  '<strong>' . $product . '</strong>',
79
  $product,
80
  '<a class="hide-review-notice hide-review-notice-soft" href="#">' . __( 'click here', 'codepress-admin-columns' ) . '</a>'
81
  ); ?>
82
- </p>
83
- <p class="buttons">
84
- <a class="button button-primary" href="https://wordpress.org/support/view/plugin-reviews/codepress-admin-columns?rate=5#postform" target="_blank"><?php _e( 'Leave a review!', 'codepress-admin-columns' ); ?></a>
85
- <a class="button button-secondary hide-review-notice" href='#'><?php _e( "Permanently hide notice", 'codepress-admin-columns' ); ?></a>
86
- </p>
87
- </div>
88
- <div class="help hidden">
89
- <a href="#" class="hide-notice hide-review-notice"></a>
90
- <p>
91
  <?php printf(
92
  __( "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s.", 'codepress-admin-columns' ),
93
  $product,
@@ -105,11 +106,11 @@ class AC_Notice_Review {
105
  '<a href="https://wordpress.org/plugins/codepress-admin-columns/faq/#plugin-info" target="_blank">' . __( 'find answers to some frequently asked questions', 'codepress-admin-columns' ) . '</a>'
106
  ); ?>
107
  <?php endif; ?>
108
- </p>
109
- </div>
110
- <div class="clear"></div>
111
- </div>
112
- <script type="text/javascript">
113
  jQuery( function( $ ) {
114
  $( document ).ready( function() {
115
  $( '.updated a.hide-review-notice' ).click( function( e ) {
@@ -130,7 +131,7 @@ class AC_Notice_Review {
130
  }
131
 
132
  $.post( ajaxurl, {
133
- 'action' : 'cpac_hide_review_notice'
134
  }, function() {
135
  if ( !soft ) {
136
  el.find( '.spinner' ).remove();
@@ -142,7 +143,7 @@ class AC_Notice_Review {
142
  } );
143
  } );
144
  } );
145
- </script>
146
  <?php
147
  }
148
 
6
 
7
  class AC_Notice_Review {
8
 
9
+ public function __construct() {
 
 
 
 
 
 
10
  add_action( 'admin_init', array( $this, 'maybe_display_review_notice' ) );
11
+ add_action( 'wp_ajax_ac_hide_review_notice', array( $this, 'ajax_hide_review_notice' ) );
12
  }
13
 
14
+ /**
15
+ * @return string
16
+ */
17
+ private function get_first_login_timestamp() {
18
+ $timestamp = get_user_meta( get_current_user_id(), 'ac-first-login-timestamp', true );
19
 
20
+ if ( empty( $timestamp ) ) {
21
+ update_user_meta( get_current_user_id(), 'ac-first-login-timestamp', time() );
 
 
 
22
 
23
  $timestamp = time();
24
  }
26
  return $timestamp;
27
  }
28
 
29
+ /**
30
+ * Display review notice after 30 days of first login by an admin
31
+ */
32
  public function maybe_display_review_notice() {
33
  if ( AC()->suppress_site_wide_notices() ) {
34
  return;
38
  return;
39
  }
40
 
41
+ if ( $this->hide_notice() ) {
42
  return;
43
  }
44
 
45
+ // Display notice after 30 days of first login
46
+ if ( ( time() - ( 30 * DAY_IN_SECONDS ) ) <= $this->get_first_login_timestamp() ) {
47
+ return;
48
  }
49
+
50
+ add_action( 'admin_notices', array( $this, 'display_review_notice' ) );
51
  }
52
 
53
+ /**
54
+ * @return bool
55
+ */
56
+ public function hide_notice() {
57
+ return (bool) get_user_meta( get_current_user_id(), 'ac_hide_notice_review', true );
58
  }
59
 
60
  public function ajax_hide_review_notice() {
61
+ update_user_meta( get_current_user_id(), 'ac_hide_notice_review', true );
62
  }
63
 
64
  public function display_review_notice() {
71
  wp_enqueue_style( 'ac-sitewide-notices' );
72
 
73
  ?>
74
+ <div class="ac-message updated">
75
+ <div class="info">
76
+ <p>
77
  <?php printf( __(
78
  "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s.", 'codepress-admin-columns' ),
79
  '<strong>' . $product . '</strong>',
80
  $product,
81
  '<a class="hide-review-notice hide-review-notice-soft" href="#">' . __( 'click here', 'codepress-admin-columns' ) . '</a>'
82
  ); ?>
83
+ </p>
84
+ <p class="buttons">
85
+ <a class="button button-primary" href="https://wordpress.org/support/view/plugin-reviews/codepress-admin-columns?rate=5#postform" target="_blank"><?php _e( 'Leave a review!', 'codepress-admin-columns' ); ?></a>
86
+ <a class="button button-secondary hide-review-notice" href='#'><?php _e( "Permanently hide notice", 'codepress-admin-columns' ); ?></a>
87
+ </p>
88
+ </div>
89
+ <div class="help hidden">
90
+ <a href="#" class="hide-notice hide-review-notice"></a>
91
+ <p>
92
  <?php printf(
93
  __( "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s.", 'codepress-admin-columns' ),
94
  $product,
106
  '<a href="https://wordpress.org/plugins/codepress-admin-columns/faq/#plugin-info" target="_blank">' . __( 'find answers to some frequently asked questions', 'codepress-admin-columns' ) . '</a>'
107
  ); ?>
108
  <?php endif; ?>
109
+ </p>
110
+ </div>
111
+ <div class="clear"></div>
112
+ </div>
113
+ <script type="text/javascript">
114
  jQuery( function( $ ) {
115
  $( document ).ready( function() {
116
  $( '.updated a.hide-review-notice' ).click( function( e ) {
131
  }
132
 
133
  $.post( ajaxurl, {
134
+ 'action' : 'ac_hide_review_notice'
135
  }, function() {
136
  if ( !soft ) {
137
  el.find( '.spinner' ).remove();
143
  } );
144
  } );
145
  } );
146
+ </script>
147
  <?php
148
  }
149
 
classes/Plugin.php ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ abstract class AC_Plugin {
8
+
9
+ /**
10
+ * @var string
11
+ */
12
+ private $plugin_dir;
13
+
14
+ /**
15
+ * @var string
16
+ */
17
+ private $plugin_url;
18
+
19
+ /**
20
+ * @var string
21
+ */
22
+ private $basename;
23
+
24
+ /**
25
+ * @var bool
26
+ */
27
+ private $fresh_install;
28
+
29
+ /**
30
+ * Return the file from this plugin
31
+ *
32
+ * @return string
33
+ */
34
+ abstract protected function get_file();
35
+
36
+ /**
37
+ * Check if plugin is network activated
38
+ *
39
+ * @return bool
40
+ */
41
+ public function is_network_active() {
42
+ return is_plugin_active_for_network( $this->get_basename() );
43
+ }
44
+
45
+ /**
46
+ * Calls get_plugin_data() for this plugin
47
+ *
48
+ * @see get_plugin_data()
49
+ * @return array
50
+ */
51
+ protected function get_plugin_data() {
52
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
53
+
54
+ return get_plugin_data( $this->get_file(), false, false );
55
+ }
56
+
57
+ /**
58
+ * @return string
59
+ */
60
+ public function get_basename() {
61
+ if ( null === $this->basename ) {
62
+ $this->set_basename();
63
+ }
64
+
65
+ return $this->basename;
66
+ }
67
+
68
+ protected function set_basename() {
69
+ $this->basename = plugin_basename( $this->get_file() );
70
+ }
71
+
72
+ /**
73
+ * @return string
74
+ */
75
+ public function get_plugin_dir() {
76
+ if ( null === $this->plugin_dir ) {
77
+ $this->set_plugin_dir();
78
+ }
79
+
80
+ return $this->plugin_dir;
81
+ }
82
+
83
+ protected function set_plugin_dir() {
84
+ $this->plugin_dir = plugin_dir_path( $this->get_file() );
85
+ }
86
+
87
+ /**
88
+ * @return string
89
+ */
90
+ public function get_plugin_url() {
91
+ if ( null === $this->plugin_url ) {
92
+ $this->set_plugin_url();
93
+ }
94
+
95
+ return $this->plugin_url;
96
+ }
97
+
98
+ protected function set_plugin_url() {
99
+ $this->plugin_url = plugin_dir_url( $this->get_file() );
100
+ }
101
+
102
+ /**
103
+ * @return string
104
+ */
105
+ public abstract function get_version();
106
+
107
+ /**
108
+ * @return string
109
+ */
110
+ abstract protected function get_version_key();
111
+
112
+ /**
113
+ * @return string
114
+ */
115
+ public function get_stored_version() {
116
+ return get_option( $this->get_version_key() );
117
+ }
118
+
119
+ /**
120
+ * Update the stored version to match the (current) version
121
+ */
122
+ public function update_stored_version( $version ) {
123
+ return update_option( $this->get_version_key(), $version );
124
+ }
125
+
126
+ /**
127
+ * Check if the plugin was updated or is a fresh install
128
+ */
129
+ public function is_fresh_install() {
130
+ if ( null === $this->fresh_install ) {
131
+ $this->set_fresh_install();
132
+ }
133
+
134
+ return $this->fresh_install;
135
+ }
136
+
137
+ protected function set_fresh_install() {
138
+ global $wpdb;
139
+
140
+ $sql = "
141
+ SELECT option_id
142
+ FROM {$wpdb->options}
143
+ WHERE option_name LIKE 'cpac_options_%'
144
+ LIMIT 1
145
+ ";
146
+
147
+ $results = $wpdb->get_results( $sql );
148
+
149
+ $this->fresh_install = empty( $results );
150
+ }
151
+
152
+ }
classes/Plugin/Update.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ /**
8
+ * Class AC_Plugin_Update
9
+ *
10
+ * Assumes this regex for versions: ^[1-9]\.[0-9]\.[1-9][0-9]?$
11
+ */
12
+ abstract class AC_Plugin_Update {
13
+
14
+ /**
15
+ * @var string
16
+ */
17
+ protected $stored_version;
18
+
19
+ /**
20
+ * @var string
21
+ */
22
+ protected $version;
23
+
24
+ public function __construct( $stored_version ) {
25
+ $this->stored_version = $stored_version;
26
+ $this->set_version();
27
+ }
28
+
29
+ /**
30
+ * Check if this update needs to be applied
31
+ *
32
+ * @return bool
33
+ */
34
+ public abstract function needs_update();
35
+
36
+ /**
37
+ * @return bool
38
+ */
39
+ protected function is_less_or_equal_stored_version() {
40
+ return version_compare( $this->version, $this->stored_version, '>' );
41
+ }
42
+
43
+ /**
44
+ * Apply this update
45
+ *
46
+ * @return void
47
+ */
48
+ public abstract function apply_update();
49
+
50
+ /**
51
+ * @return string
52
+ */
53
+ public function get_version() {
54
+ return $this->version;
55
+ }
56
+
57
+ /**
58
+ * Set the version this update applies to
59
+ *
60
+ * @return void
61
+ */
62
+ protected abstract function set_version();
63
+
64
+ }
classes/Plugin/Update/V305.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Plugin_Update_V305 extends AC_Plugin_Update {
8
+
9
+ /**
10
+ * @return bool
11
+ */
12
+ public function needs_update() {
13
+ return $this->is_less_or_equal_stored_version();
14
+ }
15
+
16
+ public function apply_update() {
17
+ $this->migrate_user_specific_settings();
18
+ $this->delete_deprecated_settings();
19
+ $this->delete_deprecated_options();
20
+ }
21
+
22
+ protected function set_version() {
23
+ $this->version = '3.0.5';
24
+ }
25
+
26
+ /**
27
+ * @param string $key
28
+ *
29
+ * @return bool
30
+ */
31
+ private function validate_key( $key ) {
32
+ if ( empty( $key ) ) {
33
+ return false;
34
+ }
35
+
36
+ if ( ! is_string( $key ) ) {
37
+ return false;
38
+ }
39
+
40
+ if ( strlen( $key ) < 10 ) {
41
+ return false;
42
+ }
43
+
44
+ return true;
45
+ }
46
+
47
+ /**
48
+ * @param string $key
49
+ *
50
+ * @return array
51
+ */
52
+ private function get_meta( $key ) {
53
+ global $wpdb;
54
+
55
+ if ( ! $this->validate_key( $key ) ) {
56
+ return array();
57
+ }
58
+
59
+ $sql = $wpdb->prepare( "
60
+ SELECT *
61
+ FROM {$wpdb->usermeta}
62
+ WHERE meta_key LIKE %s
63
+ ORDER BY user_id ASC
64
+ ", $key );
65
+
66
+ $results = $wpdb->get_results( $sql );
67
+
68
+ if ( ! $results ) {
69
+ return array();
70
+ }
71
+
72
+ return $results;
73
+ }
74
+
75
+ /**
76
+ * Migrate USER specific preferences
77
+ */
78
+ private function migrate_user_specific_settings() {
79
+ global $wpdb;
80
+
81
+ $mapping = array(
82
+ 'cpac-hide-install-addons-notice' => 'ac_hide_notice_addons',
83
+ 'cpac-hide-review-notice' => 'ac_hide_notice_review',
84
+ );
85
+
86
+ foreach ( $mapping as $current => $new ) {
87
+ $sql_meta_key = $wpdb->esc_like( $current ) . '%';
88
+
89
+ foreach ( $this->get_meta( $sql_meta_key ) as $row ) {
90
+ update_user_meta( $row->user_id, $new, $row->meta_value );
91
+ }
92
+
93
+ $this->delete( $current );
94
+ }
95
+ }
96
+
97
+ /**
98
+ * Preference to be REMOVED
99
+ */
100
+ private function delete_deprecated_settings() {
101
+ $this->delete( 'cpac_current_model' );
102
+ $this->delete( 'cpac-install-timestamp' );
103
+ }
104
+
105
+ private function delete_deprecated_options() {
106
+ delete_option( 'cpac_version' );
107
+ delete_option( 'cpac_version_prev' );
108
+ delete_option( 'cpac-install-timestamp' );
109
+ }
110
+
111
+ /**
112
+ * Remove meta data
113
+ *
114
+ * @param string $key
115
+ */
116
+ private function delete( $key ) {
117
+ global $wpdb;
118
+
119
+ if ( ! $this->validate_key( $key ) ) {
120
+ return;
121
+ }
122
+
123
+ $sql = $wpdb->prepare( "
124
+ DELETE
125
+ FROM {$wpdb->usermeta}
126
+ WHERE meta_key LIKE %s
127
+ ", $wpdb->esc_like( $key ) . '%' );
128
+
129
+ $wpdb->query( $sql );
130
+ }
131
+
132
+ }
classes/Plugin/Updater.php ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Plugin_Updater {
8
+
9
+ /**
10
+ * @var self
11
+ */
12
+ protected static $instance;
13
+
14
+ /**
15
+ * @var bool
16
+ */
17
+ protected $fresh_install;
18
+
19
+ /**
20
+ * @var bool
21
+ */
22
+ protected $apply_updates;
23
+
24
+ /**
25
+ * @var AC_Plugin_Update[]
26
+ */
27
+ protected $updates;
28
+
29
+ /**
30
+ * @var AC_Plugin
31
+ */
32
+ protected $plugin;
33
+
34
+ /**
35
+ * @param AC_Plugin $plugin
36
+ */
37
+ public function __construct( AC_Plugin $plugin ) {
38
+ $this->plugin = $plugin;
39
+ $this->apply_updates = 'true' === filter_input( INPUT_GET, 'ac_do_update' );
40
+ }
41
+
42
+ public function add_update( AC_Plugin_Update $update ) {
43
+ $this->updates[ $update->get_version() ] = $update;
44
+ }
45
+
46
+ public function parse_updates() {
47
+
48
+ // Network wide updating is not allowed
49
+ if ( is_network_admin() ) {
50
+ return;
51
+ }
52
+
53
+ $plugin = $this->plugin;
54
+
55
+ if ( $plugin->is_fresh_install() ) {
56
+ $plugin->update_stored_version( $plugin->get_version() );
57
+
58
+ return;
59
+ }
60
+
61
+ krsort( $this->updates, SORT_NUMERIC );
62
+
63
+ /* @var AC_Plugin_Update $update */
64
+ foreach ( $this->updates as $update ) {
65
+ if ( $update->needs_update() ) {
66
+ if ( ! $this->apply_updates ) {
67
+ $this->show_update_notice();
68
+
69
+ return;
70
+ }
71
+
72
+ $update->apply_update();
73
+ $plugin->update_stored_version( $update->get_version() );
74
+ }
75
+ }
76
+
77
+ if ( $this->apply_updates ) {
78
+ $plugin->update_stored_version( $plugin->get_version() );
79
+ }
80
+ }
81
+
82
+ public function show_update_notice() {
83
+ $url = add_query_arg( array( 'ac_do_update' => 'true' ), AC()->admin()->get_settings_url() );
84
+
85
+ $message = sprintf( '<strong>%s</strong> &ndash; %s <a href="%s" class="button ac-update-now">%s</a>',
86
+ esc_html__( 'Admin Columns', 'codepress-admin-columns' ),
87
+ esc_html__( 'We need to update your database to the latest version.', 'codepress-admin-columns' ),
88
+ esc_url( $url ),
89
+ esc_html__( 'Run the updater', 'codepress-admin-columns' )
90
+ );
91
+
92
+ AC()->notice( $message, 'notice-info' );
93
+ }
94
+
95
+ }
classes/Preferences.php ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Preferences {
8
+
9
+ /**
10
+ * @var int
11
+ */
12
+ private $user_id;
13
+
14
+ /**
15
+ * Preferences of this user
16
+ *
17
+ * @var array
18
+ */
19
+ protected $data = array();
20
+
21
+ /**
22
+ * The label for this set of preferences
23
+ *
24
+ * @var string
25
+ */
26
+ protected $label;
27
+
28
+ /**
29
+ * @param string $label
30
+ * @param null|int $user_id
31
+ */
32
+ public function __construct( $label, $user_id = null ) {
33
+ if ( null === $user_id ) {
34
+ $user_id = get_current_user_id();
35
+ }
36
+
37
+ $this->user_id = intval( $user_id );
38
+ $this->label = sanitize_key( (string) $label );
39
+ $this->load();
40
+ }
41
+
42
+ /**
43
+ * Return the key used to store and retrieve this preference
44
+ *
45
+ * @return string
46
+ */
47
+ private function get_key() {
48
+ return 'ac_preferences_' . $this->label;
49
+ }
50
+
51
+ private function load() {
52
+ $data = get_user_option( $this->get_key(), $this->user_id );
53
+
54
+ if ( is_array( $data ) ) {
55
+ foreach ( $data as $k => $v ) {
56
+ $this->set( $k, $v, false );
57
+ }
58
+ }
59
+ }
60
+
61
+ /**
62
+ * @return bool
63
+ */
64
+ public function save() {
65
+ return (bool) update_user_option( $this->user_id, $this->get_key(), $this->data );
66
+ }
67
+
68
+ /**
69
+ * @param string $key
70
+ *
71
+ * @return mixed
72
+ */
73
+ public function get( $key ) {
74
+ if ( ! isset( $this->data[ $key ] ) ) {
75
+ return false;
76
+ }
77
+
78
+ return $this->data[ $key ];
79
+ }
80
+
81
+ /**
82
+ * @param string $key
83
+ * @param mixed $data
84
+ * @param bool $save Immediately save changes to database
85
+ *
86
+ * @return bool
87
+ */
88
+ public function set( $key, $data, $save = true ) {
89
+ $this->data[ $key ] = $data;
90
+
91
+ if ( $save ) {
92
+ return $this->save();
93
+ }
94
+
95
+ return true;
96
+ }
97
+
98
+ /**
99
+ * @param string $key
100
+ * @param bool $save Immediately save changes to database
101
+ *
102
+ * @return bool
103
+ */
104
+ public function delete( $key, $save = true ) {
105
+ if ( ! $this->get( $key ) ) {
106
+ return false;
107
+ }
108
+
109
+ unset( $this->data[ $key ] );
110
+
111
+ if ( $save ) {
112
+ return $this->save();
113
+ }
114
+
115
+ return true;
116
+ }
117
+
118
+ /**
119
+ * Reset all preferences for all users that match on the current label
120
+ */
121
+ public function reset_for_all_users() {
122
+ if ( empty( $this->label ) ) {
123
+ return false;
124
+ }
125
+
126
+ global $wpdb;
127
+
128
+ $sql = "
129
+ DELETE
130
+ FROM {$wpdb->usermeta}
131
+ WHERE meta_key LIKE %s
132
+ ";
133
+
134
+ $sql = $wpdb->prepare( $sql, $wpdb->esc_like( $wpdb->get_blog_prefix() . $this->get_key() ) . '%' );
135
+
136
+ return (bool) $wpdb->query( $sql );
137
+ }
138
+
139
+ }
classes/Relation.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ abstract class AC_Relation {
8
+
9
+ /**
10
+ * @var string
11
+ */
12
+ protected $id;
13
+
14
+ /**
15
+ * @param string $id
16
+ */
17
+ public function __construct( $id ) {
18
+ $this->id = $id;
19
+ }
20
+
21
+ /**
22
+ * @return string
23
+ */
24
+ public function get_id() {
25
+ return $this->id;
26
+ }
27
+
28
+ /**
29
+ * @return string
30
+ */
31
+ abstract public function get_type();
32
+
33
+ /**
34
+ * @return false|stdClass
35
+ */
36
+ abstract public function get_labels();
37
+
38
+ }
classes/Relation/Post.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Relation_Post extends AC_Relation {
8
+
9
+ /**
10
+ * @var stdClass
11
+ */
12
+ private $post_type_object;
13
+
14
+ public function __construct( $id ) {
15
+ parent::__construct( $id );
16
+
17
+ $this->post_type_object = get_post_type_object( $this->get_id() );
18
+ }
19
+
20
+ public function get_type() {
21
+ return 'post';
22
+ }
23
+
24
+ public function get_post_type_object() {
25
+ return $this->post_type_object;
26
+ }
27
+
28
+ public function get_labels() {
29
+ if ( ! $this->post_type_object ) {
30
+ return false;
31
+ }
32
+
33
+ return $this->post_type_object->labels;
34
+ }
35
+
36
+ }
classes/Relation/Taxonomy.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Relation_Taxonomy extends AC_Relation {
8
+
9
+ /**
10
+ * @var stdClass
11
+ */
12
+ private $taxonomy;
13
+
14
+ public function __construct( $id ) {
15
+ parent::__construct( $id );
16
+
17
+ $this->taxonomy = get_taxonomy( $this->get_id() );
18
+ }
19
+
20
+ public function get_type() {
21
+ return 'taxonomy';
22
+ }
23
+
24
+ public function get_taxonomy() {
25
+ return $this->taxonomy;
26
+ }
27
+
28
+ public function get_labels() {
29
+ if ( ! $this->taxonomy ) {
30
+ return false;
31
+ }
32
+
33
+ return $this->taxonomy->labels;
34
+ }
35
+
36
+ }
classes/Settings/Column/AttachmentDisplay.php ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_AttachmentDisplay extends AC_Settings_Column
8
+ implements AC_Settings_FormatValueInterface {
9
+
10
+ private $attachment_display;
11
+
12
+ protected function define_options() {
13
+ return array(
14
+ 'attachment_display' => 'thumbnail',
15
+ );
16
+ }
17
+
18
+ public function get_dependent_settings() {
19
+ $settings = array();
20
+
21
+ switch ( $this->get_attachment_display() ) {
22
+ case 'thumbnail':
23
+ $settings[] = new AC_Settings_Column_Images( $this->column );
24
+ }
25
+
26
+ return $settings;
27
+ }
28
+
29
+ public function create_view() {
30
+
31
+ $setting = $this->create_element( 'select' )
32
+ ->set_attribute( 'data-refresh', 'column' )
33
+ ->set_options( array(
34
+ 'thumbnail' => __( 'Thumbnails' ),
35
+ 'count' => __( 'Count' ),
36
+ ) );
37
+
38
+ $view = new AC_View( array(
39
+ 'label' => __( 'Display', 'codepress-admin-columns' ),
40
+ 'setting' => $setting,
41
+ ) );
42
+
43
+ return $view;
44
+ }
45
+
46
+ /**
47
+ * @return int
48
+ */
49
+ public function get_attachment_display() {
50
+ return $this->attachment_display;
51
+ }
52
+
53
+ /**
54
+ * @param int $attachment_display
55
+ *
56
+ * @return bool
57
+ */
58
+ public function set_attachment_display( $attachment_display ) {
59
+ $this->attachment_display = $attachment_display;
60
+
61
+ return true;
62
+ }
63
+
64
+ public function format( $value, $original_value ) {
65
+ switch ( $this->get_attachment_display() ) {
66
+ case 'count':
67
+ $value = count( $value );
68
+ break;
69
+ }
70
+
71
+ return $value;
72
+ }
73
+ }
classes/Settings/Column/BeforeAfter.php CHANGED
@@ -26,6 +26,10 @@ class AC_Settings_Column_BeforeAfter extends AC_Settings_Column
26
  }
27
 
28
  public function format( $value, $original_value ) {
 
 
 
 
29
  if ( $this->get_before() || $this->get_after() ) {
30
  $value = $this->get_before() . $value . $this->get_after();
31
  }
@@ -33,8 +37,22 @@ class AC_Settings_Column_BeforeAfter extends AC_Settings_Column
33
  return $value;
34
  }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  public function create_view() {
37
- $setting = $this->create_element( 'text', 'before' );
38
 
39
  $before = new AC_View( array(
40
  'label' => __( 'Before', 'codepress-admin-columns' ),
@@ -43,7 +61,7 @@ class AC_Settings_Column_BeforeAfter extends AC_Settings_Column
43
  'for' => $setting->get_id(),
44
  ) );
45
 
46
- $setting = $this->create_element( 'text', 'after' );
47
 
48
  $after = new AC_View( array(
49
  'label' => __( 'After', 'codepress-admin-columns' ),
26
  }
27
 
28
  public function format( $value, $original_value ) {
29
+ if ( ac_helper()->string->is_empty( $value ) ) {
30
+ return $value;
31
+ }
32
+
33
  if ( $this->get_before() || $this->get_after() ) {
34
  $value = $this->get_before() . $value . $this->get_after();
35
  }
37
  return $value;
38
  }
39
 
40
+ protected function get_before_element() {
41
+ $text = $this->create_element( 'text', 'before' );
42
+ $text->set_attribute( 'placeholder', $this->get_default( 'before' ) );
43
+
44
+ return $text;
45
+ }
46
+
47
+ protected function get_after_element() {
48
+ $text = $this->create_element( 'text', 'after' );
49
+ $text->set_attribute( 'placeholder', $this->get_default( 'after' ) );
50
+
51
+ return $text;
52
+ }
53
+
54
  public function create_view() {
55
+ $setting = $this->get_before_element();
56
 
57
  $before = new AC_View( array(
58
  'label' => __( 'Before', 'codepress-admin-columns' ),
61
  'for' => $setting->get_id(),
62
  ) );
63
 
64
+ $setting = $this->get_after_element();
65
 
66
  $after = new AC_View( array(
67
  'label' => __( 'After', 'codepress-admin-columns' ),
classes/Settings/Column/BeforeAfter/Aperture.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_BeforeAfter_Aperture extends AC_Settings_Column_BeforeAfter {
8
+
9
+ protected function define_options() {
10
+ return array( 'before' => 'f/', 'after' => '' );
11
+ }
12
+
13
+ }
classes/Settings/Column/BeforeAfter/FocalLength.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_BeforeAfter_FocalLength extends AC_Settings_Column_BeforeAfter {
8
+
9
+ protected function define_options() {
10
+ return array( 'before' => '', 'after' => 'mm' );
11
+ }
12
+
13
+ }
classes/Settings/Column/BeforeAfter/ISO.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_BeforeAfter_ISO extends AC_Settings_Column_BeforeAfter {
8
+
9
+ protected function define_options() {
10
+ return array( 'before' => 'ISO ', 'after' => '' );
11
+ }
12
+
13
+ }
classes/Settings/Column/BeforeAfter/ShutterSpeed.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_BeforeAfter_ShutterSpeed extends AC_Settings_Column_BeforeAfter {
8
+
9
+ protected function define_options() {
10
+ return array( 'before' => '', 'after' => 's' );
11
+ }
12
+
13
+ }
classes/Settings/Column/CommentCount.php CHANGED
@@ -26,10 +26,13 @@ class AC_Settings_Column_CommentCount extends AC_Settings_Column
26
  * @return AC_View
27
  */
28
  public function create_view() {
 
 
 
29
  $view = new AC_View( array(
30
  'label' => __( 'Comment status', 'codepress-admin-columns' ),
31
  'tooltip' => __( 'Select which comment status you like to display.', 'codepress-admin-columns' ),
32
- 'setting' => $this->create_element( 'select' )->set_options( $this->get_comment_statuses() ),
33
  ) );
34
 
35
  return $view;
@@ -38,7 +41,7 @@ class AC_Settings_Column_CommentCount extends AC_Settings_Column
38
  /**
39
  * @return array
40
  */
41
- private function get_comment_statuses() {
42
  $options = array(
43
  'approved' => __( 'Approved', 'codepress-admin-columns' ),
44
  'moderated' => __( 'Pending', 'codepress-admin-columns' ),
@@ -74,19 +77,34 @@ class AC_Settings_Column_CommentCount extends AC_Settings_Column
74
 
75
  /**
76
  * @param int $post_id
77
- * @param int $original_value
78
  *
79
- * @return false|string
80
  */
81
- public function format( $post_id, $original_value ) {
82
  $status = $this->get_comment_status();
83
  $count = wp_count_comments( $post_id );
84
 
85
  if ( empty( $count->$status ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  return $this->column->get_empty_char();
87
  }
88
 
89
- return ac_helper()->html->link( add_query_arg( array( 'p' => $post_id, 'comment_status' => $status ), admin_url( 'edit-comments.php' ) ), $count->$status );
90
  }
91
 
92
  }
26
  * @return AC_View
27
  */
28
  public function create_view() {
29
+ $setting = $this->create_element( 'select' )
30
+ ->set_options( $this->get_comment_statuses() );
31
+
32
  $view = new AC_View( array(
33
  'label' => __( 'Comment status', 'codepress-admin-columns' ),
34
  'tooltip' => __( 'Select which comment status you like to display.', 'codepress-admin-columns' ),
35
+ 'setting' => $setting,
36
  ) );
37
 
38
  return $view;
41
  /**
42
  * @return array
43
  */
44
+ protected function get_comment_statuses() {
45
  $options = array(
46
  'approved' => __( 'Approved', 'codepress-admin-columns' ),
47
  'moderated' => __( 'Pending', 'codepress-admin-columns' ),
77
 
78
  /**
79
  * @param int $post_id
 
80
  *
81
+ * @return int
82
  */
83
+ public function get_comment_count( $post_id ) {
84
  $status = $this->get_comment_status();
85
  $count = wp_count_comments( $post_id );
86
 
87
  if ( empty( $count->$status ) ) {
88
+ return false;
89
+ }
90
+
91
+ return $count->$status;
92
+ }
93
+
94
+ /**
95
+ * @param int $post_id
96
+ * @param int $original_value
97
+ *
98
+ * @return false|string
99
+ */
100
+ public function format( $post_id, $original_value ) {
101
+ $count = $this->get_comment_count( $post_id );
102
+
103
+ if ( ! $count ) {
104
  return $this->column->get_empty_char();
105
  }
106
 
107
+ return ac_helper()->html->link( add_query_arg( array( 'p' => $post_id, 'comment_status' => $this->get_comment_status() ), admin_url( 'edit-comments.php' ) ), $count );
108
  }
109
 
110
  }
classes/Settings/Column/CustomField.php CHANGED
@@ -10,34 +10,17 @@ class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
10
  $this->name = 'custom_field';
11
  }
12
 
13
- public function create_view() {
14
-
15
- /**
16
- * DOM can get overloaded when dropdown contains to many custom fields. Use this filter to replace the dropdown with a text input.
17
- *
18
- * @since 3.0
19
- *
20
- * @param bool false
21
- */
22
  $use_text_input = apply_filters( 'ac/column/custom_field/use_text_input', false );
23
 
24
  if ( $use_text_input ) {
25
- $field = $this->create_element( 'text', 'field' )
26
- ->set_attribute( 'placeholder', 'Custom field key' );
27
- } else {
28
-
29
- // Meta field
30
- $field = $this->get_setting_field();
31
-
32
- $field->set_no_result( __( 'No custom fields available.', 'codepress-admin-columns' ) . ' ' . sprintf( __( 'Please create a %s item first.', 'codepress-admin-columns' ), '<strong>' . $this->column->get_list_screen()->get_singular_label() . '</strong>' ) );
33
  }
34
 
35
- $view = new AC_View( array(
36
- 'label' => __( 'Field', 'codepress-admin-columns' ),
37
- 'setting' => $field,
38
- ) );
39
 
40
- return $view;
41
  }
42
 
43
  public function get_dependent_settings() {
@@ -101,10 +84,8 @@ class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
101
  public function set_field( $field ) {
102
 
103
  // Backwards compatible for WordPress Settings API not storing fields starting with _
104
- $prefix_hidden = 'cpachidden';
105
-
106
- if ( 0 === strpos( $field, $prefix_hidden ) ) {
107
- $field = substr( $field, strlen( $prefix_hidden ) );
108
  }
109
 
110
  return parent::set_field( $field );
10
  $this->name = 'custom_field';
11
  }
12
 
13
+ protected function get_setting_field() {
 
 
 
 
 
 
 
 
14
  $use_text_input = apply_filters( 'ac/column/custom_field/use_text_input', false );
15
 
16
  if ( $use_text_input ) {
17
+ return $this->create_element( 'text', 'field' )->set_attribute( 'placeholder', __( 'Custom field key', 'codepress-admin-columns' ) );
 
 
 
 
 
 
 
18
  }
19
 
20
+ $field = parent::get_setting_field();
21
+ $field->set_no_result( __( 'No custom fields available.', 'codepress-admin-columns' ) . ' ' . sprintf( __( 'Please create a %s item first.', 'codepress-admin-columns' ), '<strong>' . $this->column->get_list_screen()->get_singular_label() . '</strong>' ) );
 
 
22
 
23
+ return $field;
24
  }
25
 
26
  public function get_dependent_settings() {
84
  public function set_field( $field ) {
85
 
86
  // Backwards compatible for WordPress Settings API not storing fields starting with _
87
+ if ( 0 === strpos( $field, 'cpachidden' ) ) {
88
+ $field = substr( $field, strlen( 'cpachidden' ) );
 
 
89
  }
90
 
91
  return parent::set_field( $field );
classes/Settings/Column/CustomFieldType.php CHANGED
@@ -31,7 +31,7 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
31
 
32
  break;
33
  case 'excerpt' :
34
- $settings[] = new AC_Settings_Column_CharacterLimit( $this->column );
35
 
36
  break;
37
  case 'link' :
@@ -217,7 +217,7 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
217
  $values = array();
218
  foreach ( $this->get_ids_from_array_or_string( $value ) as $id ) {
219
  $user = get_userdata( $id );
220
- $values[] = ac_helper()->html->link( get_edit_user_link( $user ), ac_helper()->user->get_display_name( $user ) );
221
  }
222
 
223
  $value = implode( ac_helper()->html->divider(), $values );
@@ -233,7 +233,12 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
233
  break;
234
  case "checkmark" :
235
  $is_true = ! empty( $value ) && 'false' !== $value && '0' !== $value;
236
- $value = ac_helper()->icon->yes_or_no( $is_true );
 
 
 
 
 
237
 
238
  break;
239
  case "color" :
31
 
32
  break;
33
  case 'excerpt' :
34
+ $settings[] = new AC_Settings_Column_StringLimit( $this->column );
35
 
36
  break;
37
  case 'link' :
217
  $values = array();
218
  foreach ( $this->get_ids_from_array_or_string( $value ) as $id ) {
219
  $user = get_userdata( $id );
220
+ $values[] = ac_helper()->html->link( get_edit_user_link( $id ), ac_helper()->user->get_display_name( $user ) );
221
  }
222
 
223
  $value = implode( ac_helper()->html->divider(), $values );
233
  break;
234
  case "checkmark" :
235
  $is_true = ! empty( $value ) && 'false' !== $value && '0' !== $value;
236
+
237
+ if ( $is_true ) {
238
+ $value = ac_helper()->icon->dashicon( array( 'icon' => 'yes', 'class' => 'green' ) );
239
+ } else {
240
+ $value = ac_helper()->icon->dashicon( array( 'icon' => 'no-alt', 'class' => 'red' ) );
241
+ }
242
 
243
  break;
244
  case "color" :
classes/Settings/Column/Date.php CHANGED
@@ -95,7 +95,7 @@ class AC_Settings_Column_Date extends AC_Settings_Column
95
  }
96
 
97
  $custom_label = $this->get_html_label( array(
98
- 'label' => __( 'Custom:', 'codepress-admin columns' ),
99
  'description' => sprintf( __( 'Learn more about %s.', 'codepress-admin-columns' ), ac_helper()->html->link( 'http://codex.wordpress.org/Formatting_Date_and_Time', __( 'date and time formatting', 'codepress-admin-columns' ) ), array( 'target' => '_blank' ) ),
100
  )
101
  );
@@ -175,13 +175,15 @@ class AC_Settings_Column_Date extends AC_Settings_Column
175
  return false;
176
  }
177
 
 
 
178
  $tpl = __( '%s ago' );
179
 
180
- if ( $timestamp > current_time( 'U' ) ) {
181
  $tpl = __( 'in %s', 'codepress-admin-columns' );
182
  }
183
 
184
- return sprintf( $tpl, human_time_diff( $timestamp ) );
185
  }
186
 
187
  }
95
  }
96
 
97
  $custom_label = $this->get_html_label( array(
98
+ 'label' => __( 'Custom:', 'codepress-admin-columns' ),
99
  'description' => sprintf( __( 'Learn more about %s.', 'codepress-admin-columns' ), ac_helper()->html->link( 'http://codex.wordpress.org/Formatting_Date_and_Time', __( 'date and time formatting', 'codepress-admin-columns' ) ), array( 'target' => '_blank' ) ),
100
  )
101
  );
175
  return false;
176
  }
177
 
178
+ $current_time = current_time( 'timestamp' );
179
+
180
  $tpl = __( '%s ago' );
181
 
182
+ if ( $timestamp > $current_time ) {
183
  $tpl = __( 'in %s', 'codepress-admin-columns' );
184
  }
185
 
186
+ return sprintf( $tpl, human_time_diff( $timestamp, $current_time ) );
187
  }
188
 
189
  }
classes/Settings/Column/ExifData.php CHANGED
@@ -17,16 +17,47 @@ class AC_Settings_Column_ExifData extends AC_Settings_Column
17
  }
18
 
19
  protected function define_options() {
20
- return array( 'exif_datatype' );
21
  }
22
 
23
  public function create_view() {
 
 
 
 
 
24
  return new AC_View( array(
25
  'label' => $this->column->get_label(),
26
- 'setting' => $this->create_element( 'select' )->set_options( $this->get_exif_types() ),
27
  ) );
28
  }
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  /**
31
  * Get EXIF data
32
  *
@@ -43,11 +74,13 @@ class AC_Settings_Column_ExifData extends AC_Settings_Column
43
  'camera' => __( 'Camera', 'codepress-admin-columns' ),
44
  'caption' => __( 'Caption', 'codepress-admin-columns' ),
45
  'created_timestamp' => __( 'Timestamp', 'codepress-admin-columns' ),
46
- 'copyright' => __( 'Copyright EXIF', 'codepress-admin-columns' ),
47
  'focal_length' => __( 'Focal Length', 'codepress-admin-columns' ),
48
  'iso' => __( 'ISO', 'codepress-admin-columns' ),
49
  'shutter_speed' => __( 'Shutter Speed', 'codepress-admin-columns' ),
50
  'title' => __( 'Title', 'codepress-admin-columns' ),
 
 
51
  );
52
 
53
  natcasesort( $exif_types );
@@ -77,10 +110,14 @@ class AC_Settings_Column_ExifData extends AC_Settings_Column
77
  $exif_datatype = $this->get_exif_datatype();
78
  $value = isset( $value[ $exif_datatype ] ) ? $value[ $exif_datatype ] : '';
79
 
80
- if ( false !== $value ) {
81
  switch ( $exif_datatype ) {
82
  case 'created_timestamp' :
83
- $value = date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), strtotime( $value ) );
 
 
 
 
84
 
85
  break;
86
  }
17
  }
18
 
19
  protected function define_options() {
20
+ return array( 'exif_datatype' => 'aperture' );
21
  }
22
 
23
  public function create_view() {
24
+ $setting = $this->create_element( 'select' )
25
+ ->set_attribute( 'data-label', 'update' )
26
+ ->set_attribute( 'data-refresh', 'column' )
27
+ ->set_options( $this->get_exif_types() );
28
+
29
  return new AC_View( array(
30
  'label' => $this->column->get_label(),
31
+ 'setting' => $setting,
32
  ) );
33
  }
34
 
35
+ public function get_dependent_settings() {
36
+
37
+ switch ( $this->get_exif_datatype() ) {
38
+ case 'aperture' :
39
+ $settings = array( new AC_Settings_Column_BeforeAfter_Aperture( $this->column ) );
40
+
41
+ break;
42
+ case 'focal_length' :
43
+ $settings = array( new AC_Settings_Column_BeforeAfter_FocalLength( $this->column ) );
44
+
45
+ break;
46
+ case 'iso' :
47
+ $settings = array( new AC_Settings_Column_BeforeAfter_ISO( $this->column ) );
48
+
49
+ break;
50
+ case 'shutter_speed' :
51
+ $settings = array( new AC_Settings_Column_BeforeAfter_ShutterSpeed( $this->column ) );
52
+
53
+ break;
54
+ default :
55
+ $settings = array( new AC_Settings_Column_BeforeAfter( $this->column ) );
56
+ }
57
+
58
+ return $settings;
59
+ }
60
+
61
  /**
62
  * Get EXIF data
63
  *
74
  'camera' => __( 'Camera', 'codepress-admin-columns' ),
75
  'caption' => __( 'Caption', 'codepress-admin-columns' ),
76
  'created_timestamp' => __( 'Timestamp', 'codepress-admin-columns' ),
77
+ 'copyright' => __( 'Copyright', 'codepress-admin-columns' ),
78
  'focal_length' => __( 'Focal Length', 'codepress-admin-columns' ),
79
  'iso' => __( 'ISO', 'codepress-admin-columns' ),
80
  'shutter_speed' => __( 'Shutter Speed', 'codepress-admin-columns' ),
81
  'title' => __( 'Title', 'codepress-admin-columns' ),
82
+ 'orientation' => __( 'Orientation', 'codepress-admin-columns' ),
83
+ 'keywords' => __( 'Keywords', 'codepress-admin-columns' ),
84
  );
85
 
86
  natcasesort( $exif_types );
110
  $exif_datatype = $this->get_exif_datatype();
111
  $value = isset( $value[ $exif_datatype ] ) ? $value[ $exif_datatype ] : '';
112
 
113
+ if ( false != $value ) {
114
  switch ( $exif_datatype ) {
115
  case 'created_timestamp' :
116
+ $value = date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $value );
117
+
118
+ break;
119
+ case 'keywords' :
120
+ $value = ac_helper()->array->implode_recursive( ', ', $value );
121
 
122
  break;
123
  }
classes/Settings/Column/Image.php CHANGED
@@ -180,7 +180,7 @@ class AC_Settings_Column_Image extends AC_Settings_Column
180
  protected function get_size_args() {
181
  $size = $this->get_image_size();
182
 
183
- if ( 'cpac-custom' == $size ) {
184
  $size = array( $this->get_image_size_w(), $this->get_image_size_h() );
185
  }
186
 
180
  protected function get_size_args() {
181
  $size = $this->get_image_size();
182
 
183
+ if ( 'cpac-custom' === $size ) {
184
  $size = array( $this->get_image_size_w(), $this->get_image_size_h() );
185
  }
186
 
classes/Settings/Column/Images.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_Images extends AC_Settings_Column_Image {
8
+
9
+ protected function set_name() {
10
+ return $this->name = 'images';
11
+ }
12
+
13
+ public function get_dependent_settings() {
14
+ return array( new AC_Settings_Column_NumberOfItems( $this->column ) );
15
+ }
16
+
17
+ public function format( $value, $original_value ) {
18
+ $collection = new AC_Collection( $value );
19
+ $removed = $collection->limit( $this->column->get_setting( 'number_of_items' )->get_value() );
20
+
21
+ return ac_helper()->html->images( parent::format( $collection->all(), $original_value ), $removed );
22
+ }
23
+
24
+ }
classes/Settings/Column/LinkToMenu.php CHANGED
@@ -70,7 +70,7 @@ class AC_Settings_Column_LinkToMenu extends AC_Settings_Column_Toggle
70
  $values[] = $term->name;
71
  }
72
 
73
- return implode( $this->column->get_separator(), $values );
74
  }
75
 
76
  }
70
  $values[] = $term->name;
71
  }
72
 
73
+ return wp_sprintf( '%l', $values );
74
  }
75
 
76
  }
classes/Settings/Column/Meta.php CHANGED
@@ -51,6 +51,13 @@ abstract class AC_Settings_Column_Meta extends AC_Settings_Column {
51
  return $this->column->get_list_screen()->get_storage_key();
52
  }
53
 
 
 
 
 
 
 
 
54
  protected function get_cache_group() {
55
  return 'ac_settings_meta';
56
  }
@@ -100,46 +107,104 @@ abstract class AC_Settings_Column_Meta extends AC_Settings_Column {
100
  wp_cache_add( $this->get_cache_key(), $data, $this->get_cache_group(), $expire );
101
  }
102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  private function group_keys( $keys ) {
104
  if ( ! $keys ) {
105
  return array();
106
  }
107
 
108
- $options = array(
109
- 'hidden' => array(
110
- 'title' => __( 'Hidden Custom Fields', 'codepress-admin-columns' ),
111
- 'options' => array(),
112
- ),
113
- 'public' => array(
114
- 'title' => __( 'Custom Fields', 'codepress-admin-columns' ),
115
- 'options' => array(),
116
- ),
117
- );
118
 
119
- foreach ( $keys as $field ) {
120
- $group = 0 === strpos( $field[0], '_' ) ? 'hidden' : 'public';
121
 
122
- $options[ $group ]['options'][ $field ] = $field;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  }
124
 
125
- krsort( $options ); // public first
 
 
 
 
 
 
 
126
 
127
- if ( empty( $options['hidden']['options'] ) ) {
128
- unset( $options['hidden'] );
129
  }
130
 
131
- if ( empty( $options['public']['options'] ) ) {
132
- unset( $options['public'] );
 
 
 
133
  }
134
 
135
  // Remove groups when there is only one group
136
- if ( 1 === count( $options ) ) {
137
- $options = array_pop( $options );
138
 
139
- $options = $options['options'];
140
  }
141
 
142
- return $options;
143
  }
144
 
145
  }
51
  return $this->column->get_list_screen()->get_storage_key();
52
  }
53
 
54
+ /**
55
+ * @return string
56
+ */
57
+ protected function get_meta_type() {
58
+ return $this->column->get_list_screen()->get_meta_type();
59
+ }
60
+
61
  protected function get_cache_group() {
62
  return 'ac_settings_meta';
63
  }
107
  wp_cache_add( $this->get_cache_key(), $data, $this->get_cache_group(), $expire );
108
  }
109
 
110
+ /**
111
+ * @return array
112
+ */
113
+ protected function get_meta_groups() {
114
+ global $wpdb;
115
+
116
+ $groups = array(
117
+ '' => __( 'Public', 'codepress-admin-columns' ),
118
+ '_' => __( 'Hidden', 'codepress-admin-columns' ),
119
+ );
120
+
121
+ // User only
122
+ if ( 'user' === $this->get_meta_type() ) {
123
+
124
+ if ( is_multisite() ) {
125
+ foreach ( get_sites() as $site ) {
126
+ $label = __( 'Network Site:', 'codepress-admin-columns' ) . ' ' . ac_helper()->network->get_site_option( $site->blog_id, 'blogname' );
127
+
128
+ if ( get_current_blog_id() == $site->blog_id ) {
129
+ $label .= ' (' . __( 'current', 'codepress-admin-columns' ) . ')';
130
+ }
131
+
132
+ $groups[ $wpdb->get_blog_prefix( $site->blog_id ) ] = $label;
133
+ }
134
+ } else {
135
+ $groups[ $wpdb->get_blog_prefix() ] = __( 'Site Options', 'codepress-admin-columns' );
136
+ }
137
+ }
138
+
139
+ return $groups;
140
+ }
141
+
142
+ /**
143
+ * @param array $keys
144
+ *
145
+ * @return array
146
+ */
147
  private function group_keys( $keys ) {
148
  if ( ! $keys ) {
149
  return array();
150
  }
151
 
152
+ $grouped = array();
153
+
154
+ $groups = $this->get_meta_groups();
 
 
 
 
 
 
 
155
 
156
+ // groups are ordered desc because the prefixes without a blog id ( e.g. wp_ ) should be matched last.
157
+ krsort( $groups );
158
 
159
+ foreach ( $groups as $prefix => $title ) {
160
+
161
+ $options = array();
162
+
163
+ foreach ( $keys as $k => $key ) {
164
+
165
+ // Match prefix with meta key
166
+ if ( $prefix && 0 === strpos( $key, $prefix ) ) {
167
+ $options[ $key ] = $key;
168
+
169
+ unset( $keys[ $k ] );
170
+ }
171
+ }
172
+
173
+ if ( $options ) {
174
+ $grouped[ $prefix ] = array(
175
+ 'title' => $title,
176
+ 'options' => $options,
177
+ );
178
+ }
179
  }
180
 
181
+ ksort( $grouped );
182
+
183
+ // Default group
184
+ if ( $keys ) {
185
+ $default = array(
186
+ 'title' => $groups[''],
187
+ 'options' => array_combine( $keys, $keys ),
188
+ );
189
 
190
+ array_unshift( $grouped, $default );
 
191
  }
192
 
193
+ // Place the hidden group at the end
194
+ if ( isset( $grouped['_'] ) ) {
195
+ array_push( $grouped, $grouped['_'] );
196
+
197
+ unset( $grouped['_'] );
198
  }
199
 
200
  // Remove groups when there is only one group
201
+ if ( 1 === count( $grouped ) ) {
202
+ $grouped = array_pop( $grouped );
203
 
204
+ $grouped = $grouped['options'];
205
  }
206
 
207
+ return $grouped;
208
  }
209
 
210
  }
classes/Settings/Column/MissingImageSize.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_MissingImageSize extends AC_Settings_Column {
8
+
9
+ private $include_missing_sizes;
10
+
11
+ protected function define_options() {
12
+ return array(
13
+ 'include_missing_sizes' => '',
14
+ );
15
+ }
16
+
17
+ public function create_view() {
18
+
19
+ $setting = $this->create_element( 'radio' )
20
+ ->set_options( array(
21
+ '1' => __( 'Yes' ),
22
+ '' => __( 'No' ),
23
+ ) );
24
+
25
+ $view = new AC_View( array(
26
+ 'label' => __( 'Include missing sizes?', 'codepress-admin-columns' ),
27
+ 'tooltip' => __( 'Include sizes that are missing an image file.', 'codepress-admin-columns' ),
28
+ 'setting' => $setting,
29
+ ) );
30
+
31
+ return $view;
32
+ }
33
+
34
+ /**
35
+ * @return int
36
+ */
37
+ public function get_include_missing_sizes() {
38
+ return $this->include_missing_sizes;
39
+ }
40
+
41
+ /**
42
+ * @param int $include_missing_sizes
43
+ *
44
+ * @return bool
45
+ */
46
+ public function set_include_missing_sizes( $include_missing_sizes ) {
47
+ $this->include_missing_sizes = $include_missing_sizes;
48
+
49
+ return true;
50
+ }
51
+
52
+ }
classes/Settings/Column/NumberOfItems.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_NumberOfItems extends AC_Settings_Column {
8
+
9
+ /**
10
+ * @var string
11
+ */
12
+ private $number_of_items;
13
+
14
+ protected function set_name() {
15
+ return $this->name = 'number_of_items';
16
+ }
17
+
18
+ protected function define_options() {
19
+ return array(
20
+ 'number_of_items' => 10
21
+ );
22
+ }
23
+
24
+ public function create_view() {
25
+ $item_limit = $this->create_element( 'number' )
26
+ ->set_attribute( 'step', 1 );
27
+
28
+ $view = new AC_View( array(
29
+ 'label' => __( 'Number of Items', 'codepress-admin-columns' ),
30
+ 'tooltip' => __( 'Maximum number of items', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
31
+ 'setting' => $item_limit,
32
+ ) );
33
+
34
+ return $view;
35
+ }
36
+
37
+ /**
38
+ * @return string
39
+ */
40
+ public function get_number_of_items() {
41
+ return $this->number_of_items;
42
+ }
43
+
44
+ /**
45
+ * @param string $number_of_items
46
+ *
47
+ * @return bool
48
+ */
49
+ public function set_number_of_items( $number_of_items ) {
50
+ if ( $number_of_items ) {
51
+ $this->number_of_items = absint( $number_of_items );
52
+ }
53
+
54
+ return true;
55
+ }
56
+
57
+ }
classes/Settings/Column/Post.php CHANGED
@@ -36,11 +36,16 @@ class AC_Settings_Column_Post extends AC_Settings_Column
36
  return $setting;
37
  }
38
 
39
- public function format( $value, $original_value ) {
40
- $id = $original_value;
41
- $value = false;
 
 
 
 
42
 
43
  switch ( $this->get_post_property_display() ) {
 
44
  case 'author' :
45
  $value = ac_helper()->user->get_display_name( ac_helper()->post->get_raw_field( 'post_author', $id ) );
46
 
@@ -53,10 +58,8 @@ class AC_Settings_Column_Post extends AC_Settings_Column
53
  $value = ac_helper()->post->get_title( $id );
54
 
55
  break;
56
- case 'id' :
57
  $value = $id;
58
-
59
- break;
60
  }
61
 
62
  return $value;
@@ -80,7 +83,7 @@ class AC_Settings_Column_Post extends AC_Settings_Column
80
  'title' => __( 'Title' ),
81
  'id' => __( 'ID' ),
82
  'author' => __( 'Author' ),
83
- 'thumbnail' => __( 'Featured Image' ),
84
  );
85
 
86
  asort( $options );
36
  return $setting;
37
  }
38
 
39
+ /**
40
+ * @param int $id
41
+ * @param mixed $original_value
42
+ *
43
+ * @return string|int
44
+ */
45
+ public function format( $id, $original_value ) {
46
 
47
  switch ( $this->get_post_property_display() ) {
48
+
49
  case 'author' :
50
  $value = ac_helper()->user->get_display_name( ac_helper()->post->get_raw_field( 'post_author', $id ) );
51
 
58
  $value = ac_helper()->post->get_title( $id );
59
 
60
  break;
61
+ default :
62
  $value = $id;
 
 
63
  }
64
 
65
  return $value;
83
  'title' => __( 'Title' ),
84
  'id' => __( 'ID' ),
85
  'author' => __( 'Author' ),
86
+ 'thumbnail' => _x( 'Featured Image', 'post' ),
87
  );
88
 
89
  asort( $options );
classes/Settings/Column/PostFormatIcon.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_PostFormatIcon extends AC_Settings_Column
8
+ implements AC_Settings_FormatValueInterface {
9
+
10
+ /**
11
+ * @var bool
12
+ */
13
+ private $use_icon;
14
+
15
+ protected function define_options() {
16
+ return array( 'use_icon' => '1' );
17
+ }
18
+
19
+ public function create_view() {
20
+
21
+ $setting = $this->create_element( 'radio' )
22
+ ->set_options( array(
23
+ '1' => __( 'Yes' ),
24
+ '' => __( 'No' ),
25
+ ) );
26
+
27
+ $view = new AC_View( array(
28
+ 'label' => __( 'Use an icon?', 'codepress-admin-columns' ),
29
+ 'tooltip' => __( 'Use an icon instead of text for displaying.', 'codepress-admin-columns' ),
30
+ 'setting' => $setting,
31
+ ) );
32
+
33
+ return $view;
34
+ }
35
+
36
+ /**
37
+ * @return int
38
+ */
39
+ public function get_use_icon() {
40
+ return $this->use_icon;
41
+ }
42
+
43
+ /**
44
+ * @param int $use_icons
45
+ *
46
+ * @return bool
47
+ */
48
+ public function set_use_icon( $use_icon ) {
49
+ $this->use_icon = $use_icon;
50
+
51
+ return true;
52
+ }
53
+
54
+ private function use_icon() {
55
+ return '1' === $this->get_use_icon();
56
+ }
57
+
58
+ /**
59
+ * @param string $status
60
+ * @param int $post_id
61
+ *
62
+ * @return string
63
+ */
64
+ public function format( $format, $post_id ) {
65
+
66
+ if ( $this->use_icon() ) {
67
+ $value = $this->column->get_empty_char();
68
+
69
+ if ( $format ) {
70
+ $value = ac_helper()->html->tooltip( '<span class="ac-post-state-format post-state-format post-format-icon post-format-' . esc_attr( $format ) . '"></span>', get_post_format_string( $format ) );
71
+ }
72
+ } else {
73
+ $value = __( 'Standard', 'codepress-admin-columns' );
74
+
75
+ if ( $format ) {
76
+ $value = esc_html( get_post_format_string( $format ) );
77
+ }
78
+ }
79
+
80
+ return $value;
81
+ }
82
+
83
+ }
classes/Settings/Column/PostLink.php CHANGED
@@ -10,7 +10,7 @@ class AC_Settings_Column_PostLink extends AC_Settings_Column
10
  /**
11
  * @var string
12
  */
13
- private $post_link_to;
14
 
15
  protected function define_options() {
16
  return array(
@@ -60,17 +60,30 @@ class AC_Settings_Column_PostLink extends AC_Settings_Column
60
  return $view;
61
  }
62
 
63
- private function get_display_options() {
 
64
  $options = array(
 
65
  'edit_post' => __( 'Edit Post' ),
66
  'view_post' => __( 'View Post' ),
67
  'edit_author' => __( 'Edit Post Author', 'codepress-admin-columns' ),
68
  'view_author' => __( 'View Public Post Author Page', 'codepress-admin-columns' ),
69
  );
70
 
71
- asort( $options );
 
 
 
 
 
 
72
 
73
- $options = array_merge( array( '' => __( 'None' ) ), $options );
 
 
 
 
 
74
 
75
  return $options;
76
  }
10
  /**
11
  * @var string
12
  */
13
+ protected $post_link_to;
14
 
15
  protected function define_options() {
16
  return array(
60
  return $view;
61
  }
62
 
63
+ protected function get_display_options() {
64
+ // Default options
65
  $options = array(
66
+ '' => __( 'None' ),
67
  'edit_post' => __( 'Edit Post' ),
68
  'view_post' => __( 'View Post' ),
69
  'edit_author' => __( 'Edit Post Author', 'codepress-admin-columns' ),
70
  'view_author' => __( 'View Public Post Author Page', 'codepress-admin-columns' ),
71
  );
72
 
73
+ if ( $this->column instanceof AC_Column_RelationInterface ) {
74
+ $relation_options = array(
75
+ 'edit_post' => _x( 'Edit %s', 'post' ),
76
+ 'view_post' => _x( 'View %s', 'post' ),
77
+ 'edit_author' => _x( 'Edit %s Author', 'post', 'codepress-admin-columns' ),
78
+ 'view_author' => _x( 'View Public %s Author Page', 'post', 'codepress-admin-columns' ),
79
+ );
80
 
81
+ $label = $this->column->get_relation_object()->get_labels()->singular_name;
82
+
83
+ foreach ( $relation_options as $k => $option ) {
84
+ $options[ $k ] = sprintf( $option, $label );
85
+ }
86
+ }
87
 
88
  return $options;
89
  }
classes/Settings/Column/StatusIcon.php CHANGED
@@ -51,10 +51,6 @@ class AC_Settings_Column_StatusIcon extends AC_Settings_Column
51
  return true;
52
  }
53
 
54
- private function get_future_date( $post_id ) {
55
- return date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), strtotime( get_post_field( 'post_date', $post_id ) ) );
56
- }
57
-
58
  /**
59
  * @param string $status
60
  * @param int $post_id
@@ -66,34 +62,19 @@ class AC_Settings_Column_StatusIcon extends AC_Settings_Column
66
 
67
  $value = $status;
68
 
69
- if ( $this->get_use_icon() ) {
70
 
71
- switch ( $status ) {
72
- case 'private' :
73
- $value = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'hidden', 'class' => 'gray' ) ), __( 'Private' ) );
74
- break;
75
- case 'publish' :
76
- $value = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'yes', 'class' => 'blue large' ) ), __( 'Published' ) );
77
- break;
78
- case 'draft' :
79
- $value = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'edit', 'class' => 'green' ) ), __( 'Draft' ) );
80
- break;
81
- case 'pending' :
82
- $value = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'backup', 'class' => 'orange' ) ), __( 'Pending for review' ) );
83
- break;
84
- case 'future' :
85
- $value = ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'clock' ) ), __( 'Future' ) . ': <em>' . $this->get_future_date( $post_id ) . '</em>' );
86
- break;
87
- }
88
 
89
- if ( get_post_field( 'post_password', $post_id ) ) {
90
  $value .= ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'lock', 'class' => 'gray' ) ), __( 'Password protected' ) );
91
  }
92
  } else if ( isset( $wp_post_statuses[ $status ] ) ) {
93
  $value = $wp_post_statuses[ $status ]->label;
94
 
95
  if ( 'future' === $status ) {
96
- $value .= " <p class='description'>" . $this->get_future_date( $post_id ) . "</p>";
97
  }
98
  }
99
 
51
  return true;
52
  }
53
 
 
 
 
 
54
  /**
55
  * @param string $status
56
  * @param int $post_id
62
 
63
  $value = $status;
64
 
65
+ $post = get_post( $post_id );
66
 
67
+ if ( $this->get_use_icon() ) {
68
+ $value = ac_helper()->post->get_status_icon( $post );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ if ( $post->post_password ) {
71
  $value .= ac_helper()->html->tooltip( ac_helper()->icon->dashicon( array( 'icon' => 'lock', 'class' => 'gray' ) ), __( 'Password protected' ) );
72
  }
73
  } else if ( isset( $wp_post_statuses[ $status ] ) ) {
74
  $value = $wp_post_statuses[ $status ]->label;
75
 
76
  if ( 'future' === $status ) {
77
+ $value .= " <p class='description'>" . ac_helper()->date->date( $post->post_date, 'wp_date_time' ) . "</p>";
78
  }
79
  }
80
 
classes/Settings/Column/StringLimit.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ class AC_Settings_Column_StringLimit extends AC_Settings_Column {
8
+
9
+ /**
10
+ * @var string
11
+ */
12
+ private $string_limit;
13
+
14
+ protected function define_options() {
15
+ return array( 'string_limit' );
16
+ }
17
+
18
+ public function create_view() {
19
+ $setting = $this->create_element( 'select' )
20
+ ->set_attribute( 'data-refresh', 'column' )
21
+ ->set_options( $this->get_limit_options() );
22
+
23
+ $view = new AC_View( array(
24
+ 'label' => __( 'Maximum Length', 'codepress-admin-columns' ),
25
+ 'setting' => $setting,
26
+ ) );
27
+
28
+ return $view;
29
+ }
30
+
31
+ private function get_limit_options() {
32
+ $options = array(
33
+ '' => __( 'No Maximum Length', 'codepress-admin-columns' ),
34
+ 'character_limit' => __( 'Limit on Characters', 'codepress-admin-columns' ),
35
+ 'word_limit' => __( 'Limit on Words', 'codepress-admin-columns' ),
36
+ );
37
+
38
+ return $options;
39
+ }
40
+
41
+ public function get_dependent_settings() {
42
+ $setting = array();
43
+
44
+ switch ( $this->get_string_limit() ) {
45
+
46
+ case 'character_limit' :
47
+ $setting[] = new AC_Settings_Column_CharacterLimit( $this->column );
48
+
49
+ break;
50
+ case 'word_limit' :
51
+ $setting[] = new AC_Settings_Column_WordLimit( $this->column );
52
+
53
+ break;
54
+ }
55
+
56
+ return $setting;
57
+ }
58
+
59
+ /**
60
+ * @return string
61
+ */
62
+ public function get_string_limit() {
63
+ return $this->string_limit;
64
+ }
65
+
66
+ /**
67
+ * @param string $string_limit
68
+ *
69
+ * @return true
70
+ */
71
+ public function set_string_limit( $string_limit ) {
72
+ $this->string_limit = $string_limit;
73
+
74
+ return true;
75
+ }
76
+
77
+ }
classes/Settings/Column/Taxonomy.php CHANGED
@@ -20,8 +20,9 @@ class AC_Settings_Column_Taxonomy extends AC_Settings_Column {
20
  */
21
  public function create_view() {
22
  $taxonomy = $this->create_element( 'select', 'taxonomy' );
23
- $taxonomy->set_no_result( __( 'No taxonomies available.' ) )
24
  ->set_options( ac_helper()->taxonomy->get_taxonomy_selection_options( $this->column->get_post_type() ) )
 
25
  ->set_attribute( 'data-refresh', 'column' );
26
 
27
  return new AC_View( array(
20
  */
21
  public function create_view() {
22
  $taxonomy = $this->create_element( 'select', 'taxonomy' );
23
+ $taxonomy->set_no_result( __( 'No taxonomies available.', 'codepress-admin-columns' ) )
24
  ->set_options( ac_helper()->taxonomy->get_taxonomy_selection_options( $this->column->get_post_type() ) )
25
+ ->set_attribute( 'data-label', 'update' )
26
  ->set_attribute( 'data-refresh', 'column' );
27
 
28
  return new AC_View( array(
classes/Settings/Column/User.php CHANGED
@@ -116,6 +116,7 @@ class AC_Settings_Column_User extends AC_Settings_Column
116
  'ID' => __( 'User ID', 'codepress-admin-columns' ),
117
  'first_last_name' => __( 'First and Last Name', 'codepress-admin-columns' ),
118
  'user_nicename' => __( 'User Nicename', 'codepress-admin-columns' ),
 
119
  );
120
 
121
  // resort for possible translations
@@ -129,9 +130,9 @@ class AC_Settings_Column_User extends AC_Settings_Column
129
  */
130
  private function get_link_options() {
131
  $options = array(
132
- 'edit_user' => __( 'Edit User Profile' ),
133
- 'email_user' => __( 'User Email' ),
134
- 'view_user_posts' => __( 'View User Posts' ),
135
  'view_author' => __( 'View Public Author Page', 'codepress-admin-columns' ),
136
  );
137
 
116
  'ID' => __( 'User ID', 'codepress-admin-columns' ),
117
  'first_last_name' => __( 'First and Last Name', 'codepress-admin-columns' ),
118
  'user_nicename' => __( 'User Nicename', 'codepress-admin-columns' ),
119
+ 'roles' => __( 'Roles', 'codepress-admin-columns' ),
120
  );
121
 
122
  // resort for possible translations
130
  */
131
  private function get_link_options() {
132
  $options = array(
133
+ 'edit_user' => __( 'Edit User Profile', 'codepress-admin-columns' ),
134
+ 'email_user' => __( 'User Email', 'codepress-admin-columns' ),
135
+ 'view_user_posts' => __( 'View User Posts', 'codepress-admin-columns' ),
136
  'view_author' => __( 'View Public Author Page', 'codepress-admin-columns' ),
137
  );
138
 
classes/Settings/Form/Element/Checkbox.php CHANGED
@@ -11,6 +11,8 @@ class AC_Settings_Form_Element_Checkbox extends AC_Settings_Form_Element {
11
  */
12
  protected $vertical;
13
 
 
 
14
  protected function get_type() {
15
  return 'checkbox';
16
  }
@@ -40,6 +42,10 @@ class AC_Settings_Form_Element_Checkbox extends AC_Settings_Form_Element {
40
  }
41
 
42
  private function get_elements() {
 
 
 
 
43
  $options = $this->get_options();
44
 
45
  if ( empty( $options ) ) {
@@ -48,7 +54,7 @@ class AC_Settings_Form_Element_Checkbox extends AC_Settings_Form_Element {
48
 
49
  $elements = array();
50
 
51
- $value = $this->get_value();
52
 
53
  foreach ( $options as $key => $label ) {
54
  $input = new AC_Settings_Form_Element_Input( $this->get_name() );
@@ -57,7 +63,7 @@ class AC_Settings_Form_Element_Checkbox extends AC_Settings_Form_Element {
57
  ->set_type( $this->get_type() )
58
  ->set_id( $this->get_id() . '-' . $key );
59
 
60
- if ( checked( $key, $value, false ) ) {
61
  $input->set_attribute( 'checked', 'checked' );
62
  }
63
 
@@ -73,8 +79,24 @@ class AC_Settings_Form_Element_Checkbox extends AC_Settings_Form_Element {
73
  return $elements;
74
  }
75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  public function set_vertical( $vertical ) {
77
  $this->vertical = (bool) $vertical;
 
 
78
  }
79
 
80
  public function is_vertical() {
11
  */
12
  protected $vertical;
13
 
14
+ protected $multiple;
15
+
16
  protected function get_type() {
17
  return 'checkbox';
18
  }
42
  }
43
 
44
  private function get_elements() {
45
+ if ( $this->is_multiple() ) {
46
+ $this->set_name( $this->get_name() . '[]' );
47
+ }
48
+
49
  $options = $this->get_options();
50
 
51
  if ( empty( $options ) ) {
54
 
55
  $elements = array();
56
 
57
+ $value = (array) $this->get_value();
58
 
59
  foreach ( $options as $key => $label ) {
60
  $input = new AC_Settings_Form_Element_Input( $this->get_name() );
63
  ->set_type( $this->get_type() )
64
  ->set_id( $this->get_id() . '-' . $key );
65
 
66
+ if ( in_array( $key, $value ) ) {
67
  $input->set_attribute( 'checked', 'checked' );
68
  }
69
 
79
  return $elements;
80
  }
81
 
82
+ public function set_multiple( $multiple ) {
83
+ $this->multiple = (bool) $multiple;
84
+
85
+ return $this;
86
+ }
87
+
88
+ public function is_multiple() {
89
+ if ( empty( $this->multiple ) ) {
90
+ return false;
91
+ }
92
+
93
+ return $this->multiple;
94
+ }
95
+
96
  public function set_vertical( $vertical ) {
97
  $this->vertical = (bool) $vertical;
98
+
99
+ return $this;
100
  }
101
 
102
  public function is_vertical() {
classes/TableScreen.php CHANGED
@@ -82,6 +82,12 @@ final class AC_TableScreen {
82
  foreach ( $this->current_list_screen->get_columns() as $column ) {
83
  if ( 'column-actions' == $column->get_type() ) {
84
  $default = $column->get_name();
 
 
 
 
 
 
85
  }
86
  };
87
 
@@ -105,6 +111,22 @@ final class AC_TableScreen {
105
  return $default;
106
  }
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  /**
109
  * Sets the inline data when the title columns is not present on a AC_ListScreen_Post screen
110
  *
@@ -332,9 +354,6 @@ final class AC_TableScreen {
332
  */
333
  add_filter( "manage_" . $list_screen->get_screen_id() . "_columns", array( $this, 'add_headings' ), 200 );
334
 
335
- // Stores the row actions for each table. Only used by the AC_Column_Actions column.
336
- ac_action_column_helper();
337
-
338
  /**
339
  * @since 3.0
340
  *
82
  foreach ( $this->current_list_screen->get_columns() as $column ) {
83
  if ( 'column-actions' == $column->get_type() ) {
84
  $default = $column->get_name();
85
+
86
+ if ( $this->current_list_screen instanceof AC_ListScreen_Media ) {
87
+
88
+ // Add download button to the actions column
89
+ add_filter( 'media_row_actions', array( $this, 'set_media_row_actions' ), 10, 2 );
90
+ }
91
  }
92
  };
93
 
111
  return $default;
112
  }
113
 
114
+ /**
115
+ * Add a download link to the table screen
116
+ *
117
+ * @param array $actions
118
+ * @param WP_Post $post
119
+ */
120
+ public function set_media_row_actions( $actions, $post ) {
121
+ $link_attributes = array(
122
+ 'download' => '',
123
+ 'title' => __( 'Download', 'codepress-admin-columns' ),
124
+ );
125
+ $actions['download'] = ac_helper()->html->link( wp_get_attachment_url( $post->ID ), __( 'Download', 'codepress-admin-columns' ), $link_attributes );
126
+
127
+ return $actions;
128
+ }
129
+
130
  /**
131
  * Sets the inline data when the title columns is not present on a AC_ListScreen_Post screen
132
  *
354
  */
355
  add_filter( "manage_" . $list_screen->get_screen_id() . "_columns", array( $this, 'add_headings' ), 200 );
356
 
 
 
 
357
  /**
358
  * @since 3.0
359
  *
codepress-admin-columns.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
- Version: 3.0.3
5
  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.
6
  Author: AdminColumns.com
7
  Author URI: https://www.admincolumns.com
@@ -30,25 +30,20 @@ if ( ! defined( 'ABSPATH' ) ) {
30
  exit;
31
  }
32
 
33
- // Only run plugin in the admin
34
  if ( ! is_admin() ) {
35
  return false;
36
  }
37
 
 
 
 
 
38
  /**
39
  * The Admin Columns Class
40
  *
41
  * @since 1.0
42
  */
43
- class CPAC {
44
-
45
- /**
46
- * Basename of the plugin, retrieved through plugin_basename function
47
- *
48
- * @since 1.0
49
- * @var string
50
- */
51
- private $plugin_basename;
52
 
53
  /**
54
  * Admin Columns settings class instance
@@ -74,12 +69,6 @@ class CPAC {
74
  */
75
  private $table_screen;
76
 
77
- /**
78
- * @since 3.0
79
- * @var null|string $version Version number
80
- */
81
- private $version = null;
82
-
83
  /**
84
  * @since 3.0
85
  * @var AC_Helper
@@ -110,35 +99,30 @@ class CPAC {
110
  /**
111
  * @since 2.5
112
  */
113
- private static $_instance = null;
114
 
115
  /**
116
  * @since 2.5
117
  */
118
  public static function instance() {
119
- if ( null === self::$_instance ) {
120
- self::$_instance = new self();
121
  }
122
 
123
- return self::$_instance;
124
  }
125
 
126
  /**
127
  * @since 1.0
128
  */
129
  private function __construct() {
130
- $this->plugin_basename = plugin_basename( __FILE__ );
131
-
132
  // Backwards compatibility
133
  define( 'CPAC_VERSION', $this->get_version() );
134
  define( 'CPAC_URL', $this->get_plugin_url() );
135
  define( 'CPAC_DIR', $this->get_plugin_dir() );
136
 
137
- // Autoload classes
138
  $this->autoloader()->register_prefix( 'AC_', $this->get_plugin_dir() . 'classes/' );
139
 
140
- require_once $this->get_plugin_dir() . 'api.php';
141
-
142
  // Third Party
143
  new AC_ThirdParty_ACF();
144
  new AC_ThirdParty_NinjaForms();
@@ -156,6 +140,7 @@ class CPAC {
156
 
157
  // Hooks
158
  add_action( 'init', array( $this, 'localize' ) );
 
159
  add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 1, 2 );
160
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
161
 
@@ -170,48 +155,41 @@ class CPAC {
170
  add_action( 'admin_init', array( $this, 'set_capabilities_multisite' ) );
171
  }
172
 
173
- public function ready() {
174
-
175
- /**
176
- * For loading external resources, e.g. column settings.
177
- * Can be called from plugins and themes.
178
- */
179
- do_action( 'ac/ready', $this );
180
- }
181
-
182
  /**
183
- * @return AC_Autoloader
184
  */
185
- public function autoloader() {
186
- require_once $this->get_plugin_dir() . 'classes/Autoloader.php';
187
-
188
- return AC_Autoloader::instance();
189
  }
190
 
191
  /**
192
- * @since 3.0
193
- * @return string Path to plugin dir
194
  */
195
- public function get_plugin_dir() {
196
- return plugin_dir_path( __FILE__ );
197
  }
198
 
199
  /**
200
- * @since 3.0
201
  */
202
- public function get_plugin_url() {
203
- return plugin_dir_url( __FILE__ );
 
 
 
 
 
 
 
 
 
204
  }
205
 
206
  /**
207
- * @since 3.0
208
  */
209
- public function get_version() {
210
- if ( null === $this->version ) {
211
- $this->version = $this->get_plugin_version( __FILE__ );
212
- }
213
-
214
- return $this->version;
215
  }
216
 
217
  /**
@@ -226,18 +204,25 @@ class CPAC {
226
  }
227
 
228
  /**
229
- * @since 3.0
 
230
  */
231
- public function get_upgrade_version() {
232
- return '2.0.0';
233
  }
234
 
235
  /**
236
- * @since 2.2
237
- * @uses load_plugin_textdomain()
238
  */
239
- public function localize() {
240
- load_plugin_textdomain( 'codepress-admin-columns', false, dirname( $this->plugin_basename ) . '/languages/' );
 
 
 
 
 
 
 
241
  }
242
 
243
  /**
@@ -291,7 +276,7 @@ class CPAC {
291
  * @see filter:plugin_action_links
292
  */
293
  public function add_settings_link( $links, $file ) {
294
- if ( $file === $this->plugin_basename ) {
295
  array_unshift( $links, ac_helper()->html->link( AC()->admin()->get_link( 'settings' ), __( 'Settings' ) ) );
296
  }
297
 
@@ -486,6 +471,16 @@ class CPAC {
486
  */
487
  public function register_list_screen( AC_ListScreen $list_screen ) {
488
  $this->list_screens[ $list_screen->get_key() ] = $list_screen;
 
 
 
 
 
 
 
 
 
 
489
  }
490
 
491
  /**
@@ -553,13 +548,17 @@ class CPAC {
553
  */
554
  public function display_notices() {
555
  if ( $this->notices ) {
556
- echo implode( $this->notices );
557
  }
558
  }
559
 
560
  /**
561
  * @param string $message Message body
562
- * @param string $type 'updated', 'error' or 'notice-warning'
 
 
 
 
563
  */
564
  public function notice( $message, $type = 'updated' ) {
565
  $this->notices[] = '<div class="ac-message notice ' . esc_attr( $type ) . '"><p>' . $message . '</p></div>';
@@ -586,7 +585,6 @@ class CPAC {
586
  public function is_doing_ajax() {
587
  return defined( 'DOING_AJAX' ) && DOING_AJAX;
588
  }
589
-
590
  }
591
 
592
  /**
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
+ Version: 3.0.5
5
  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.
6
  Author: AdminColumns.com
7
  Author URI: https://www.admincolumns.com
30
  exit;
31
  }
32
 
 
33
  if ( ! is_admin() ) {
34
  return false;
35
  }
36
 
37
+ require_once 'classes/Autoloader.php';
38
+ require_once 'classes/Plugin.php';
39
+ require_once 'api.php';
40
+
41
  /**
42
  * The Admin Columns Class
43
  *
44
  * @since 1.0
45
  */
46
+ class CPAC extends AC_Plugin {
 
 
 
 
 
 
 
 
47
 
48
  /**
49
  * Admin Columns settings class instance
69
  */
70
  private $table_screen;
71
 
 
 
 
 
 
 
72
  /**
73
  * @since 3.0
74
  * @var AC_Helper
99
  /**
100
  * @since 2.5
101
  */
102
+ private static $instance = null;
103
 
104
  /**
105
  * @since 2.5
106
  */
107
  public static function instance() {
108
+ if ( null === self::$instance ) {
109
+ self::$instance = new self;
110
  }
111
 
112
+ return self::$instance;
113
  }
114
 
115
  /**
116
  * @since 1.0
117
  */
118
  private function __construct() {
 
 
119
  // Backwards compatibility
120
  define( 'CPAC_VERSION', $this->get_version() );
121
  define( 'CPAC_URL', $this->get_plugin_url() );
122
  define( 'CPAC_DIR', $this->get_plugin_dir() );
123
 
 
124
  $this->autoloader()->register_prefix( 'AC_', $this->get_plugin_dir() . 'classes/' );
125
 
 
 
126
  // Third Party
127
  new AC_ThirdParty_ACF();
128
  new AC_ThirdParty_NinjaForms();
140
 
141
  // Hooks
142
  add_action( 'init', array( $this, 'localize' ) );
143
+ add_action( 'init', array( $this, 'install' ) );
144
  add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 1, 2 );
145
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
146
 
155
  add_action( 'admin_init', array( $this, 'set_capabilities_multisite' ) );
156
  }
157
 
 
 
 
 
 
 
 
 
 
158
  /**
159
+ * @return string
160
  */
161
+ protected function get_file() {
162
+ return __FILE__;
 
 
163
  }
164
 
165
  /**
166
+ * @return string
 
167
  */
168
+ protected function get_version_key() {
169
+ return 'ac_version';
170
  }
171
 
172
  /**
173
+ * @return string
174
  */
175
+ public function get_version() {
176
+ return '3.0.5';
177
+ }
178
+
179
+ public function ready() {
180
+
181
+ /**
182
+ * For loading external resources, e.g. column settings.
183
+ * Can be called from plugins and themes.
184
+ */
185
+ do_action( 'ac/ready', $this );
186
  }
187
 
188
  /**
189
+ * @return AC_Autoloader
190
  */
191
+ public function autoloader() {
192
+ return AC_Autoloader::instance();
 
 
 
 
193
  }
194
 
195
  /**
204
  }
205
 
206
  /**
207
+ * @since 2.2
208
+ * @uses load_plugin_textdomain()
209
  */
210
+ public function localize() {
211
+ load_plugin_textdomain( 'codepress-admin-columns', false, dirname( $this->get_basename() ) . '/languages/' );
212
  }
213
 
214
  /**
215
+ * Handle installation and updates
 
216
  */
217
+ public function install() {
218
+ $classes = AC()->autoloader()->get_class_names_from_dir( $this->get_plugin_dir() . 'classes/Plugin/Update', 'AC_' );
219
+ $updater = new AC_Plugin_Updater( $this );
220
+
221
+ foreach ( $classes as $class ) {
222
+ $updater->add_update( new $class( $this->get_stored_version() ) );
223
+ }
224
+
225
+ $updater->parse_updates();
226
  }
227
 
228
  /**
276
  * @see filter:plugin_action_links
277
  */
278
  public function add_settings_link( $links, $file ) {
279
+ if ( $file === $this->get_basename() ) {
280
  array_unshift( $links, ac_helper()->html->link( AC()->admin()->get_link( 'settings' ), __( 'Settings' ) ) );
281
  }
282
 
471
  */
472
  public function register_list_screen( AC_ListScreen $list_screen ) {
473
  $this->list_screens[ $list_screen->get_key() ] = $list_screen;
474
+
475
+ /**
476
+ * Fires when a list screen is registered.
477
+ *
478
+ * @since 3.0.5
479
+ *
480
+ * @param AC_ListScreen $list_screen List screen object
481
+ * @param CPAC $ac Main admin columns class instance
482
+ */
483
+ do_action( 'ac/registered_list_screen', $list_screen, $this );
484
  }
485
 
486
  /**
548
  */
549
  public function display_notices() {
550
  if ( $this->notices ) {
551
+ echo implode( array_unique( $this->notices ) );
552
  }
553
  }
554
 
555
  /**
556
  * @param string $message Message body
557
+ * @param string $type
558
+ * 'updated' is green
559
+ * 'error' is red
560
+ * 'notice-warning' is yellow
561
+ * 'notice-info' is blue
562
  */
563
  public function notice( $message, $type = 'updated' ) {
564
  $this->notices[] = '<div class="ac-message notice ' . esc_attr( $type ) . '"><p>' . $message . '</p></div>';
585
  public function is_doing_ajax() {
586
  return defined( 'DOING_AJAX' ) && DOING_AJAX;
587
  }
 
588
  }
589
 
590
  /**
languages/codepress-admin-columns-ar_AR.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -368,43 +413,43 @@ msgstr ""
368
  msgid "Help"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
372
  msgid "Close"
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:757
376
  msgid "Clear all columns "
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:664
380
  msgid "I'm using Admin Columns for WordPress!"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:606
384
  msgid "Your First Name"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:605
388
  msgid "Your Email"
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:598
392
  msgid "Submit your email and we'll send you a discount for %s off."
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:594
396
  msgid "Get %s Off!"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:561
400
  msgid "Extra Columns for:"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:547
404
  msgid "Edit your column content directly"
405
  msgstr ""
406
 
407
- #: classes/Admin/Page/Columns.php:535
408
  msgid "Pro"
409
  msgstr ""
410
 
@@ -478,31 +523,31 @@ msgstr ""
478
  msgid "Imported"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:577
482
  msgid "Learn more about Pro"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:549
486
  msgid "Import &amp; Export settings"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:548
490
  msgid "Create multiple columns sets"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:546
494
  msgid "Add filterable columns"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:545
498
  msgid "Add sortable columns"
499
  msgstr ""
500
 
501
- #: classes/Admin/Page/Columns.php:540
502
  msgid "Take Admin Columns to the next level:"
503
  msgstr ""
504
 
505
- #: classes/Admin/Page/Columns.php:535
506
  msgid "Upgrade to"
507
  msgstr ""
508
 
@@ -510,11 +555,7 @@ msgstr ""
510
  msgid "Get %s Off"
511
  msgstr ""
512
 
513
- #: classes/Column/Post/Excerpt.php:21
514
- msgid "Excerpt from content"
515
- msgstr ""
516
-
517
- #: classes/Admin/Page/Columns.php:447
518
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Please visit the %s screen once to load all available columns"
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:516
526
  msgid "Restore columns"
527
  msgstr ""
528
 
@@ -530,7 +571,7 @@ msgstr ""
530
  msgid "Settings for %s restored successfully."
531
  msgstr ""
532
 
533
- #: classes/Admin/Page/Columns.php:354
534
  msgid "View %s screen"
535
  msgstr ""
536
 
@@ -582,9 +623,9 @@ msgstr ""
582
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
583
  msgstr ""
584
 
585
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
586
  #. Plugin URI of the plugin/theme
587
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
588
  #. Author URI of the plugin/theme
589
  msgid "https://www.admincolumns.com"
590
  msgstr ""
@@ -629,15 +670,15 @@ msgstr "تحديث"
629
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Columns.php:353
633
  msgid "Settings for %s updated successfully."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Columns.php:340
637
  msgid "You are trying to store the same settings for %s."
638
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
639
 
640
- #: classes/ListScreen.php:642
641
  msgid "No columns settings available."
642
  msgstr "لا توجد إعدادات أعمدة متوفرة."
643
 
@@ -691,75 +732,75 @@ msgstr ""
691
  msgid "Active"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:763
695
  msgid "Add Column"
696
  msgstr "أضف عمود"
697
 
698
- #: classes/Admin/Page/Columns.php:743
699
  msgid "Drag and drop to reorder"
700
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
701
 
702
- #: classes/Admin/Page/Columns.php:692
703
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
704
  msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
705
 
706
- #: classes/Admin/Page/Columns.php:688
707
  msgid "Check the <strong>Help</strong> section in the top-right screen."
708
  msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
709
 
710
- #: classes/Admin/Page/Columns.php:683
711
  msgid "Support"
712
  msgstr "دعم"
713
 
714
- #: classes/Admin/Page/Columns.php:671
715
  msgid "Buy Pro"
716
  msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:665
719
  msgid "Tweet"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:659
723
  msgid "Rate"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:654
727
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:651
731
  msgid "Woohoo! We're glad to hear that!"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:641
735
  msgid "Forums"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:636
739
  msgid "Docs"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:631
743
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:628
747
  msgid "What's wrong? Need help? Let us know!"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:618
751
  msgid "Are you happy with Admin Columns?"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Columns.php:515
755
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
759
  msgid "Update"
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Columns.php:493
763
  msgid "Store settings"
764
  msgstr "حفظ الإعدادات"
765
 
@@ -791,7 +832,7 @@ msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة
791
  msgid "Restore Settings"
792
  msgstr "استرجاع الإعدادات"
793
 
794
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
795
  #: classes/Admin/Page/Settings.php:179
796
  msgid "Save"
797
  msgstr ""
@@ -988,7 +1029,7 @@ msgstr ""
988
  msgid "Admin Columns Pro"
989
  msgstr ""
990
 
991
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
992
  #. Plugin Name of the plugin/theme
993
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
994
  #: classes/Notice/Review.php:64
@@ -1043,7 +1084,7 @@ msgstr ""
1043
  msgid "Choose a column type."
1044
  msgstr "اختر نوع عمود"
1045
 
1046
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1047
  msgid "Clone"
1048
  msgstr ""
1049
 
@@ -1150,7 +1191,7 @@ msgstr "الاسم الأخير"
1150
  msgid "Comment Count"
1151
  msgstr ""
1152
 
1153
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1154
  msgid "Remove"
1155
  msgstr "إزالة"
1156
 
@@ -1182,7 +1223,7 @@ msgstr ""
1182
  msgid "Sticky"
1183
  msgstr "لاصق"
1184
 
1185
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1186
  msgid "Status"
1187
  msgstr "الحالة"
1188
 
@@ -1436,7 +1477,7 @@ msgstr ""
1436
  msgid "Alt"
1437
  msgstr "بديل"
1438
 
1439
- #: classes/Admin/Page/Columns.php:479
1440
  msgid "View"
1441
  msgstr "عرض"
1442
 
@@ -1615,7 +1656,7 @@ msgstr "موافق عليه"
1615
  msgid "Agent"
1616
  msgstr "عميل"
1617
 
1618
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1619
  msgid "Edit"
1620
  msgstr "تحرير"
1621
 
@@ -1625,14 +1666,16 @@ msgstr "تحرير"
1625
  msgid "ID"
1626
  msgstr "رقم"
1627
 
1628
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1629
  #: classes/Settings/Column/ActionIcons.php:22
 
1630
  #: classes/Settings/Column/Toggle.php:14
1631
  msgid "No"
1632
  msgstr ""
1633
 
1634
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1635
  #: classes/Settings/Column/ActionIcons.php:21
 
1636
  #: classes/Settings/Column/Toggle.php:13
1637
  msgid "Yes"
1638
  msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
413
  msgid "Help"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
417
  msgid "Close"
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:758
421
  msgid "Clear all columns "
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:665
425
  msgid "I'm using Admin Columns for WordPress!"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:607
429
  msgid "Your First Name"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:606
433
  msgid "Your Email"
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:599
437
  msgid "Submit your email and we'll send you a discount for %s off."
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:595
441
  msgid "Get %s Off!"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:562
445
  msgid "Extra Columns for:"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:548
449
  msgid "Edit your column content directly"
450
  msgstr ""
451
 
452
+ #: classes/Admin/Page/Columns.php:536
453
  msgid "Pro"
454
  msgstr ""
455
 
523
  msgid "Imported"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:578
527
  msgid "Learn more about Pro"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:550
531
  msgid "Import &amp; Export settings"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:549
535
  msgid "Create multiple columns sets"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:547
539
  msgid "Add filterable columns"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:546
543
  msgid "Add sortable columns"
544
  msgstr ""
545
 
546
+ #: classes/Admin/Page/Columns.php:541
547
  msgid "Take Admin Columns to the next level:"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:536
551
  msgid "Upgrade to"
552
  msgstr ""
553
 
555
  msgid "Get %s Off"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
559
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
560
  msgstr ""
561
 
563
  msgid "Please visit the %s screen once to load all available columns"
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:517
567
  msgid "Restore columns"
568
  msgstr ""
569
 
571
  msgid "Settings for %s restored successfully."
572
  msgstr ""
573
 
574
+ #: classes/Admin/Page/Columns.php:335
575
  msgid "View %s screen"
576
  msgstr ""
577
 
623
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
624
  msgstr ""
625
 
626
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
627
  #. Plugin URI of the plugin/theme
628
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
629
  #. Author URI of the plugin/theme
630
  msgid "https://www.admincolumns.com"
631
  msgstr ""
670
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
671
  msgstr ""
672
 
673
+ #: classes/Admin/Page/Columns.php:355
674
  msgid "Settings for %s updated successfully."
675
  msgstr ""
676
 
677
+ #: classes/Admin/Page/Columns.php:342
678
  msgid "You are trying to store the same settings for %s."
679
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
680
 
681
+ #: classes/ListScreen.php:652
682
  msgid "No columns settings available."
683
  msgstr "لا توجد إعدادات أعمدة متوفرة."
684
 
732
  msgid "Active"
733
  msgstr ""
734
 
735
+ #: classes/Admin/Page/Columns.php:764
736
  msgid "Add Column"
737
  msgstr "أضف عمود"
738
 
739
+ #: classes/Admin/Page/Columns.php:744
740
  msgid "Drag and drop to reorder"
741
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
742
 
743
+ #: classes/Admin/Page/Columns.php:693
744
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
745
  msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
746
 
747
+ #: classes/Admin/Page/Columns.php:689
748
  msgid "Check the <strong>Help</strong> section in the top-right screen."
749
  msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
750
 
751
+ #: classes/Admin/Page/Columns.php:684
752
  msgid "Support"
753
  msgstr "دعم"
754
 
755
+ #: classes/Admin/Page/Columns.php:672
756
  msgid "Buy Pro"
757
  msgstr ""
758
 
759
+ #: classes/Admin/Page/Columns.php:666
760
  msgid "Tweet"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:660
764
  msgid "Rate"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:655
768
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
769
  msgstr ""
770
 
771
+ #: classes/Admin/Page/Columns.php:652
772
  msgid "Woohoo! We're glad to hear that!"
773
  msgstr ""
774
 
775
+ #: classes/Admin/Page/Columns.php:642
776
  msgid "Forums"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:637
780
  msgid "Docs"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:632
784
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:629
788
  msgid "What's wrong? Need help? Let us know!"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:619
792
  msgid "Are you happy with Admin Columns?"
793
  msgstr ""
794
 
795
+ #: classes/Admin/Page/Columns.php:516
796
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
797
  msgstr ""
798
 
799
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
800
  msgid "Update"
801
  msgstr ""
802
 
803
+ #: classes/Admin/Page/Columns.php:494
804
  msgid "Store settings"
805
  msgstr "حفظ الإعدادات"
806
 
832
  msgid "Restore Settings"
833
  msgstr "استرجاع الإعدادات"
834
 
835
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
836
  #: classes/Admin/Page/Settings.php:179
837
  msgid "Save"
838
  msgstr ""
1029
  msgid "Admin Columns Pro"
1030
  msgstr ""
1031
 
1032
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1033
  #. Plugin Name of the plugin/theme
1034
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1035
  #: classes/Notice/Review.php:64
1084
  msgid "Choose a column type."
1085
  msgstr "اختر نوع عمود"
1086
 
1087
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1088
  msgid "Clone"
1089
  msgstr ""
1090
 
1191
  msgid "Comment Count"
1192
  msgstr ""
1193
 
1194
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1195
  msgid "Remove"
1196
  msgstr "إزالة"
1197
 
1223
  msgid "Sticky"
1224
  msgstr "لاصق"
1225
 
1226
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1227
  msgid "Status"
1228
  msgstr "الحالة"
1229
 
1477
  msgid "Alt"
1478
  msgstr "بديل"
1479
 
1480
+ #: classes/Admin/Page/Columns.php:480
1481
  msgid "View"
1482
  msgstr "عرض"
1483
 
1656
  msgid "Agent"
1657
  msgstr "عميل"
1658
 
1659
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1660
  msgid "Edit"
1661
  msgstr "تحرير"
1662
 
1666
  msgid "ID"
1667
  msgstr "رقم"
1668
 
1669
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1670
  #: classes/Settings/Column/ActionIcons.php:22
1671
+ #: classes/Settings/Column/StatusIcon.php:24
1672
  #: classes/Settings/Column/Toggle.php:14
1673
  msgid "No"
1674
  msgstr ""
1675
 
1676
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1677
  #: classes/Settings/Column/ActionIcons.php:21
1678
+ #: classes/Settings/Column/StatusIcon.php:23
1679
  #: classes/Settings/Column/Toggle.php:13
1680
  msgid "Yes"
1681
  msgstr ""
languages/codepress-admin-columns-bt_BR.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr "Saiba mais sobre a versão Pro"
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr "Configurações de importação &amp; exportação"
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr "Restaurar colunas"
520
 
@@ -522,7 +563,7 @@ msgstr "Restaurar colunas"
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr "https://www.admincolumns.com"
@@ -621,15 +662,15 @@ msgstr "Atualização"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr "O add-on pro não é mais suportado. Por favor faça o login na sua conta e realize o download do Administrador de Colunas Pro"
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr "Ajustes para %s atualizados com sucesso."
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Você está tentando armazenar a mesma configuração para %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Nenhuma configuração de colunas disponível."
635
 
@@ -683,75 +724,75 @@ msgstr "Desativado"
683
  msgid "Active"
684
  msgstr "Ativa"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Adicionar Coluna"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Arrastar e solte para reordenar"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr "Para a documentação completa, reportação de bugs, sugestões de recursos e outras dicas <a href='%s'>visite o site do Admin de Colunas</a>"
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Suporte"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr "Comprar o Pro"
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr "Tweetar"
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "Quantidade"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr "Nós realmente adoraríamos se você puder mostrar seu apreço nos avaliando no WordPress.org ou twittar sobre o Administrador de Colunas!"
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr "Woohoo! Estamos felizes em saber disto!"
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr "Forums"
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr "Docs"
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr "Algum problema? Precisa de ajuda? Deixe-nos saber!"
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr "Você está feliz com o Admin Columns?"
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Atualizar"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Configurações armazenadas"
757
 
@@ -783,7 +824,7 @@ msgstr "Apagará todas as configurações de colunas e restaurar a configuraçã
783
  msgid "Restore Settings"
784
  msgstr "Restaurar Configurações"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Salvar"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr "Admin de Colunas Pro"
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Nome"
1035
  msgid "Choose a column type."
1036
  msgstr "Escolha um tipo."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "Clone"
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Sobrenome"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Remover"
1148
 
@@ -1174,7 +1215,7 @@ msgstr "Título sem ações"
1174
  msgid "Sticky"
1175
  msgstr "Sticky"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Status"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Ver"
1426
 
@@ -1599,7 +1640,7 @@ msgstr "Aprovado"
1599
  msgid "Agent"
1600
  msgstr "Agente"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Editar"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Editar"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "Não"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Sim"
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr "Saiba mais sobre a versão Pro"
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr "Configurações de importação &amp; exportação"
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr "Restaurar colunas"
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr "https://www.admincolumns.com"
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr "O add-on pro não é mais suportado. Por favor faça o login na sua conta e realize o download do Administrador de Colunas Pro"
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr "Ajustes para %s atualizados com sucesso."
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Você está tentando armazenar a mesma configuração para %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Nenhuma configuração de colunas disponível."
676
 
724
  msgid "Active"
725
  msgstr "Ativa"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Adicionar Coluna"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Arrastar e solte para reordenar"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr "Para a documentação completa, reportação de bugs, sugestões de recursos e outras dicas <a href='%s'>visite o site do Admin de Colunas</a>"
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Suporte"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr "Comprar o Pro"
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr "Tweetar"
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "Quantidade"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr "Nós realmente adoraríamos se você puder mostrar seu apreço nos avaliando no WordPress.org ou twittar sobre o Administrador de Colunas!"
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr "Woohoo! Estamos felizes em saber disto!"
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr "Forums"
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr "Docs"
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr "Algum problema? Precisa de ajuda? Deixe-nos saber!"
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr "Você está feliz com o Admin Columns?"
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Atualizar"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Configurações armazenadas"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Restaurar Configurações"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Salvar"
1021
  msgid "Admin Columns Pro"
1022
  msgstr "Admin de Colunas Pro"
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Escolha um tipo."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "Clone"
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Remover"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Sticky"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Status"
1221
 
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Ver"
1467
 
1640
  msgid "Agent"
1641
  msgstr "Agente"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Editar"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "Não"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Sim"
languages/codepress-admin-columns-da_DK.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: da_DK\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr "Opgrader"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Du forsøger at gemme samme indstillinger for %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Ingen kolonneindstillinger tilgængelige."
635
 
@@ -683,75 +724,75 @@ msgstr ""
683
  msgid "Active"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Tilføj kolonne"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Træk og slip for at ændre rækkefølgen"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Hjælp"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Opdatér"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Gem indstillinger"
757
 
@@ -783,7 +824,7 @@ msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstilli
783
  msgid "Restore Settings"
784
  msgstr "Gendan indstillinger"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr ""
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Navn"
1035
  msgid "Choose a column type."
1036
  msgstr "Vælg en kolonne type."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr ""
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Efternavn"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Fjern"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr "Opslag"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Status"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Vis"
1426
 
@@ -1599,7 +1640,7 @@ msgstr "Godkendt"
1599
  msgid "Agent"
1600
  msgstr "Agent"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Rediger"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Rediger"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "Nej"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Ja"
11
  "Language: da_DK\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Du forsøger at gemme samme indstillinger for %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Ingen kolonneindstillinger tilgængelige."
676
 
724
  msgid "Active"
725
  msgstr ""
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Tilføj kolonne"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Træk og slip for at ændre rækkefølgen"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Hjælp"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr ""
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr ""
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr ""
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr ""
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Opdatér"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Gem indstillinger"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Gendan indstillinger"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr ""
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Vælg en kolonne type."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr ""
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Fjern"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Opslag"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Status"
1221
 
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Vis"
1467
 
1640
  msgid "Agent"
1641
  msgstr "Agent"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Rediger"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "Nej"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Ja"
languages/codepress-admin-columns-de_DE.mo CHANGED
Binary file
languages/codepress-admin-columns-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-09-28 18:45:43+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -29,7 +73,7 @@ msgstr ""
29
 
30
  #: classes/Addon/BuddyPress.php:13
31
  msgid "BuddyPress"
32
- msgstr ""
33
 
34
  #: templates/settings/section.php:23
35
  msgid "View more"
@@ -37,11 +81,11 @@ msgstr ""
37
 
38
  #: classes/TableScreen.php:57
39
  msgid "Invalid method."
40
- msgstr ""
41
 
42
  #: classes/TableScreen.php:53
43
  msgid "Invalid column."
44
- msgstr ""
45
 
46
  #: classes/TableScreen.php:45
47
  msgid "Invalid list screen."
@@ -65,15 +109,16 @@ msgstr ""
65
 
66
  #: classes/Settings/Column/Width.php:40
67
  msgid "Auto"
68
- msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
74
  #: classes/Settings/Column/Taxonomy.php:23
75
  msgid "No taxonomies available."
76
- msgstr ""
77
 
78
  #: classes/Settings/Column/Separator.php:32
79
  msgid "Select a repeater sub field."
@@ -81,7 +126,7 @@ msgstr ""
81
 
82
  #: classes/Settings/Column/Separator.php:31
83
  msgid "Separator"
84
- msgstr ""
85
 
86
  #: classes/Settings/Column/Separator.php:27
87
  msgid "Whitespace"
@@ -89,7 +134,7 @@ msgstr ""
89
 
90
  #: classes/Settings/Column/Separator.php:25
91
  msgid "New line"
92
- msgstr ""
93
 
94
  #: classes/Settings/Column/Separator.php:24
95
  msgid "Comma Separated"
@@ -101,15 +146,15 @@ msgstr ""
101
 
102
  #: classes/Settings/Column/Password.php:22
103
  msgid "Password"
104
- msgstr ""
105
 
106
  #: classes/Settings/Column/Meta.php:27
107
  msgid "No fields available."
108
- msgstr ""
109
 
110
  #: classes/Settings/Column/Image.php:112
111
  msgid "Custom Size"
112
- msgstr ""
113
 
114
  #: classes/Settings/Column/Image.php:108
115
  msgid "Full Size"
@@ -117,15 +162,15 @@ msgstr ""
117
 
118
  #: classes/Settings/Column/Image.php:54
119
  msgid "Image Size"
120
- msgstr ""
121
 
122
  #: classes/Settings/Column/Image.php:47
123
  msgid "Height in pixels"
124
- msgstr ""
125
 
126
  #: classes/Settings/Column/Image.php:41
127
  msgid "Width in pixels"
128
- msgstr ""
129
 
130
  #: classes/Settings/Column/Date.php:181
131
  msgid "in %s"
@@ -133,7 +178,7 @@ msgstr ""
133
 
134
  #: classes/Settings/Column/Date.php:178
135
  msgid "%s ago"
136
- msgstr ""
137
 
138
  #: classes/Settings/Column/Date.php:99
139
  msgid "date and time formatting"
@@ -157,11 +202,11 @@ msgstr ""
157
 
158
  #: classes/Settings/Column/Date.php:70
159
  msgid "or"
160
- msgstr ""
161
 
162
  #: classes/Settings/Column/Date.php:70
163
  msgid "For example: %s."
164
- msgstr ""
165
 
166
  #: classes/Settings/Column/Date.php:70
167
  msgid "The difference is returned in a human readable format."
@@ -193,7 +238,7 @@ msgstr ""
193
 
194
  #: classes/Settings/Column/CustomFieldType.php:109
195
  msgid "True / False"
196
- msgstr ""
197
 
198
  #: classes/Settings/Column/CustomFieldType.php:108
199
  msgid "Has Content"
@@ -201,11 +246,11 @@ msgstr ""
201
 
202
  #: classes/Settings/Column/CustomFieldType.php:105
203
  msgid "Number"
204
- msgstr ""
205
 
206
  #: classes/Settings/Column/CustomFieldType.php:102
207
  msgid "Text"
208
- msgstr ""
209
 
210
  #: classes/Settings/Column/CustomFieldType.php:70
211
  msgid "Multiple ids should be separated by a comma."
@@ -216,9 +261,9 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
- msgstr ""
222
 
223
  #: classes/Settings/Column/CharacterLimit.php:28
224
  #: classes/Settings/Column/WordLimit.php:35
@@ -231,7 +276,7 @@ msgstr ""
231
 
232
  #: classes/Settings/Column/CharacterLimit.php:27
233
  msgid "Character Limit"
234
- msgstr ""
235
 
236
  #: classes/Settings/Column/BeforeAfter.php:56
237
  msgid "Display Options"
@@ -241,17 +286,17 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
- msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
- msgstr ""
251
 
252
  #: classes/Helper/Html.php:344
253
  msgid "Hide"
254
- msgstr ""
255
 
256
  #: classes/Helper/Html.php:340
257
  msgid "Show %s more"
@@ -259,7 +304,7 @@ msgstr ""
259
 
260
  #: classes/Column/User/Url.php:14
261
  msgid "Website"
262
- msgstr ""
263
 
264
  #: classes/Column/User/ShowToolbar.php:14
265
  msgid "Show Toolbar"
@@ -267,16 +312,16 @@ msgstr ""
267
 
268
  #: classes/Column/Post/Shortlink.php:14
269
  msgid "Shortlink"
270
- msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
277
  #: classes/Column/Post/Formats.php:24
278
  msgid "Standard"
279
- msgstr ""
280
 
281
  #: classes/Column/Post/CommentStatus.php:17
282
  msgid "Comment Status"
@@ -288,7 +333,7 @@ msgstr ""
288
 
289
  #: classes/Column/Media/FullPath.php:14
290
  msgid "Full Path"
291
- msgstr ""
292
 
293
  #: classes/Admin/Promo.php:137
294
  msgid "Discount is valid until %s"
@@ -296,7 +341,7 @@ msgstr ""
296
 
297
  #: classes/Admin/Page/Welcome.php:12
298
  msgid "Welcome"
299
- msgstr ""
300
 
301
  #: classes/Admin/Page/Settings.php:171
302
  msgid "Show %s button on table screen."
@@ -308,11 +353,11 @@ msgstr ""
308
 
309
  #: classes/Admin/Page/Settings.php:149
310
  msgid "on"
311
- msgstr ""
312
 
313
  #: classes/Admin/Page/Settings.php:146
314
  msgid "off"
315
- msgstr ""
316
 
317
  #: classes/Admin/Page/Settings.php:133
318
  msgid "Notice"
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,16 +615,16 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
583
 
584
  #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:192
585
  msgid "Edit columns"
586
- msgstr ""
587
 
588
  #: classes/Admin/Page/Upgrade.php:310
589
  msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
@@ -621,15 +662,15 @@ msgstr "Aktualisierung"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr ""
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr ""
635
 
@@ -683,75 +724,75 @@ msgstr "Deaktivieren"
683
  msgid "Active"
684
  msgstr "Aktiv"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Support"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Aktualisieren"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr ""
757
 
@@ -783,7 +824,7 @@ msgstr ""
783
  msgid "Restore Settings"
784
  msgstr ""
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Speichern"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Name"
1035
  msgid "Choose a column type."
1036
  msgstr ""
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "Duplizieren"
1041
 
@@ -1142,7 +1183,7 @@ msgstr ""
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Entfernen"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr "Anpinnen"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Status"
1180
 
@@ -1394,7 +1435,7 @@ msgstr ""
1394
 
1395
  #: classes/Column/Media/ExifData.php:16
1396
  msgid "EXIF Data"
1397
- msgstr ""
1398
 
1399
  #: classes/Column/Media/Dimensions.php:16
1400
  msgid "Dimensions"
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr ""
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Ansehen"
1426
 
@@ -1599,7 +1640,7 @@ msgstr ""
1599
  msgid "Agent"
1600
  msgstr "makler"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Bearbeiten"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Bearbeiten"
1609
  msgid "ID"
1610
  msgstr ""
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "Nein"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Ja"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-08-09 12:17:18+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr "Entwurf"
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr "Veröffentlicht"
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr "Privat"
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr "&hellip;"
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
73
 
74
  #: classes/Addon/BuddyPress.php:13
75
  msgid "BuddyPress"
76
+ msgstr "BuddyPress"
77
 
78
  #: templates/settings/section.php:23
79
  msgid "View more"
81
 
82
  #: classes/TableScreen.php:57
83
  msgid "Invalid method."
84
+ msgstr "Ungültige Methode."
85
 
86
  #: classes/TableScreen.php:53
87
  msgid "Invalid column."
88
+ msgstr "Ungültige Spalte."
89
 
90
  #: classes/TableScreen.php:45
91
  msgid "Invalid list screen."
109
 
110
  #: classes/Settings/Column/Width.php:40
111
  msgid "Auto"
112
+ msgstr "Auto"
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
119
  #: classes/Settings/Column/Taxonomy.php:23
120
  msgid "No taxonomies available."
121
+ msgstr "Keine Taxonomien verfügbar."
122
 
123
  #: classes/Settings/Column/Separator.php:32
124
  msgid "Select a repeater sub field."
126
 
127
  #: classes/Settings/Column/Separator.php:31
128
  msgid "Separator"
129
+ msgstr "Trenner"
130
 
131
  #: classes/Settings/Column/Separator.php:27
132
  msgid "Whitespace"
134
 
135
  #: classes/Settings/Column/Separator.php:25
136
  msgid "New line"
137
+ msgstr "Neue Zeile"
138
 
139
  #: classes/Settings/Column/Separator.php:24
140
  msgid "Comma Separated"
146
 
147
  #: classes/Settings/Column/Password.php:22
148
  msgid "Password"
149
+ msgstr "Passwort"
150
 
151
  #: classes/Settings/Column/Meta.php:27
152
  msgid "No fields available."
153
+ msgstr "Keine Felder verfügbar."
154
 
155
  #: classes/Settings/Column/Image.php:112
156
  msgid "Custom Size"
157
+ msgstr "Individuelle Größe"
158
 
159
  #: classes/Settings/Column/Image.php:108
160
  msgid "Full Size"
162
 
163
  #: classes/Settings/Column/Image.php:54
164
  msgid "Image Size"
165
+ msgstr "Bildgröße"
166
 
167
  #: classes/Settings/Column/Image.php:47
168
  msgid "Height in pixels"
169
+ msgstr "Höhe in Pixeln"
170
 
171
  #: classes/Settings/Column/Image.php:41
172
  msgid "Width in pixels"
173
+ msgstr "Breite in Pixeln"
174
 
175
  #: classes/Settings/Column/Date.php:181
176
  msgid "in %s"
178
 
179
  #: classes/Settings/Column/Date.php:178
180
  msgid "%s ago"
181
+ msgstr "vor %s"
182
 
183
  #: classes/Settings/Column/Date.php:99
184
  msgid "date and time formatting"
202
 
203
  #: classes/Settings/Column/Date.php:70
204
  msgid "or"
205
+ msgstr "oder"
206
 
207
  #: classes/Settings/Column/Date.php:70
208
  msgid "For example: %s."
209
+ msgstr "Zum Beispiel: %s."
210
 
211
  #: classes/Settings/Column/Date.php:70
212
  msgid "The difference is returned in a human readable format."
238
 
239
  #: classes/Settings/Column/CustomFieldType.php:109
240
  msgid "True / False"
241
+ msgstr "Wahr / Falsch"
242
 
243
  #: classes/Settings/Column/CustomFieldType.php:108
244
  msgid "Has Content"
246
 
247
  #: classes/Settings/Column/CustomFieldType.php:105
248
  msgid "Number"
249
+ msgstr "Zahl"
250
 
251
  #: classes/Settings/Column/CustomFieldType.php:102
252
  msgid "Text"
253
+ msgstr "Text"
254
 
255
  #: classes/Settings/Column/CustomFieldType.php:70
256
  msgid "Multiple ids should be separated by a comma."
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
+ msgstr "Feld"
267
 
268
  #: classes/Settings/Column/CharacterLimit.php:28
269
  #: classes/Settings/Column/WordLimit.php:35
276
 
277
  #: classes/Settings/Column/CharacterLimit.php:27
278
  msgid "Character Limit"
279
+ msgstr "Zeichenlimit"
280
 
281
  #: classes/Settings/Column/BeforeAfter.php:56
282
  msgid "Display Options"
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
+ msgstr "und"
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
+ msgstr "oder"
296
 
297
  #: classes/Helper/Html.php:344
298
  msgid "Hide"
299
+ msgstr "Verstecken"
300
 
301
  #: classes/Helper/Html.php:340
302
  msgid "Show %s more"
304
 
305
  #: classes/Column/User/Url.php:14
306
  msgid "Website"
307
+ msgstr "Website"
308
 
309
  #: classes/Column/User/ShowToolbar.php:14
310
  msgid "Show Toolbar"
312
 
313
  #: classes/Column/Post/Shortlink.php:14
314
  msgid "Shortlink"
315
+ msgstr "Kurzlink"
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
322
  #: classes/Column/Post/Formats.php:24
323
  msgid "Standard"
324
+ msgstr "Standard"
325
 
326
  #: classes/Column/Post/CommentStatus.php:17
327
  msgid "Comment Status"
333
 
334
  #: classes/Column/Media/FullPath.php:14
335
  msgid "Full Path"
336
+ msgstr "Gesamter Pfad"
337
 
338
  #: classes/Admin/Promo.php:137
339
  msgid "Discount is valid until %s"
341
 
342
  #: classes/Admin/Page/Welcome.php:12
343
  msgid "Welcome"
344
+ msgstr "Willkommen"
345
 
346
  #: classes/Admin/Page/Settings.php:171
347
  msgid "Show %s button on table screen."
353
 
354
  #: classes/Admin/Page/Settings.php:149
355
  msgid "on"
356
+ msgstr "an"
357
 
358
  #: classes/Admin/Page/Settings.php:146
359
  msgid "off"
360
+ msgstr "aus"
361
 
362
  #: classes/Admin/Page/Settings.php:133
363
  msgid "Notice"
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
624
 
625
  #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:192
626
  msgid "Edit columns"
627
+ msgstr "Bearbeite Spalten"
628
 
629
  #: classes/Admin/Page/Upgrade.php:310
630
  msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr ""
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr ""
676
 
724
  msgid "Active"
725
  msgstr "Aktiv"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr ""
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr ""
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr ""
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr ""
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Support"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr ""
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr ""
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr ""
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr ""
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Aktualisieren"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr ""
798
 
824
  msgid "Restore Settings"
825
  msgstr ""
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Speichern"
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr ""
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "Duplizieren"
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Entfernen"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Anpinnen"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Status"
1221
 
1435
 
1436
  #: classes/Column/Media/ExifData.php:16
1437
  msgid "EXIF Data"
1438
+ msgstr "EXIF-Daten"
1439
 
1440
  #: classes/Column/Media/Dimensions.php:16
1441
  msgid "Dimensions"
1461
  msgid "Alt"
1462
  msgstr ""
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Ansehen"
1467
 
1640
  msgid "Agent"
1641
  msgstr "makler"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Bearbeiten"
1646
 
1650
  msgid "ID"
1651
  msgstr ""
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "Nein"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Ja"
languages/codepress-admin-columns-en_NZ.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr ""
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr ""
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr ""
635
 
@@ -683,75 +724,75 @@ msgstr "Deactivate"
683
  msgid "Active"
684
  msgstr "Active"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Support"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "Rate"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr "Docs"
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Update"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr ""
757
 
@@ -783,7 +824,7 @@ msgstr ""
783
  msgid "Restore Settings"
784
  msgstr ""
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Save"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Name"
1035
  msgid "Choose a column type."
1036
  msgstr ""
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr ""
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Last Name"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Remove"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr ""
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Status"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr ""
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "View"
1426
 
@@ -1599,7 +1640,7 @@ msgstr ""
1599
  msgid "Agent"
1600
  msgstr ""
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Edit"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Edit"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "No"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Yes"
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr ""
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr ""
676
 
724
  msgid "Active"
725
  msgstr "Active"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr ""
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr ""
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr ""
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr ""
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Support"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr ""
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "Rate"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr ""
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr "Docs"
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Update"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr ""
798
 
824
  msgid "Restore Settings"
825
  msgstr ""
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Save"
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr ""
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr ""
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Remove"
1189
 
1215
  msgid "Sticky"
1216
  msgstr ""
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Status"
1221
 
1461
  msgid "Alt"
1462
  msgstr ""
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "View"
1467
 
1640
  msgid "Agent"
1641
  msgstr ""
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Edit"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "No"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Yes"
languages/codepress-admin-columns-es_ES.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr "Actualizar"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Está tratando de almacenar los mismos ajustes para %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "No hay ajustes de columnas disponibles."
635
 
@@ -683,75 +724,75 @@ msgstr "Inactivo"
683
  msgid "Active"
684
  msgstr "Activar"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Adicionar Columna"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Arrastre y suelte para reordenar"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr "Para una documentación completa, reportes de bug, sugerencias de características y otros consejos <a href='%s'>visite el sitio web de Admin Columns</a>"
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Soporte"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "Cambio"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Almacenar ajustes"
757
 
@@ -783,7 +824,7 @@ msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por
783
  msgid "Restore Settings"
784
  msgstr "Restaurar Ajustes"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Guardar"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Nom"
1035
  msgid "Choose a column type."
1036
  msgstr "Escoger un tipo de columna."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr ""
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Apellido"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Eliminar"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr "Pegajoso"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Estado"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Ver"
1426
 
@@ -1599,7 +1640,7 @@ msgstr "Aprobado"
1599
  msgid "Agent"
1600
  msgstr "Agente"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Editar"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Editar"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "No"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Si"
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Está tratando de almacenar los mismos ajustes para %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "No hay ajustes de columnas disponibles."
676
 
724
  msgid "Active"
725
  msgstr "Activar"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Adicionar Columna"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Arrastre y suelte para reordenar"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr "Para una documentación completa, reportes de bug, sugerencias de características y otros consejos <a href='%s'>visite el sitio web de Admin Columns</a>"
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Soporte"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr ""
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "Cambio"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr ""
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr ""
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr ""
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Almacenar ajustes"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Restaurar Ajustes"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Guardar"
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Escoger un tipo de columna."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr ""
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Eliminar"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Pegajoso"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Estado"
1221
 
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Ver"
1467
 
1640
  msgid "Agent"
1641
  msgstr "Agente"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Editar"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "No"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Si"
languages/codepress-admin-columns-fa_IR.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: fa\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -363,43 +408,43 @@ msgstr ""
363
  msgid "Help"
364
  msgstr ""
365
 
366
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
367
  msgid "Close"
368
  msgstr ""
369
 
370
- #: classes/Admin/Page/Columns.php:757
371
  msgid "Clear all columns "
372
  msgstr ""
373
 
374
- #: classes/Admin/Page/Columns.php:664
375
  msgid "I'm using Admin Columns for WordPress!"
376
  msgstr ""
377
 
378
- #: classes/Admin/Page/Columns.php:606
379
  msgid "Your First Name"
380
  msgstr ""
381
 
382
- #: classes/Admin/Page/Columns.php:605
383
  msgid "Your Email"
384
  msgstr ""
385
 
386
- #: classes/Admin/Page/Columns.php:598
387
  msgid "Submit your email and we'll send you a discount for %s off."
388
  msgstr ""
389
 
390
- #: classes/Admin/Page/Columns.php:594
391
  msgid "Get %s Off!"
392
  msgstr ""
393
 
394
- #: classes/Admin/Page/Columns.php:561
395
  msgid "Extra Columns for:"
396
  msgstr ""
397
 
398
- #: classes/Admin/Page/Columns.php:547
399
  msgid "Edit your column content directly"
400
  msgstr ""
401
 
402
- #: classes/Admin/Page/Columns.php:535
403
  msgid "Pro"
404
  msgstr ""
405
 
@@ -468,31 +513,31 @@ msgstr ""
468
  msgid "Imported"
469
  msgstr ""
470
 
471
- #: classes/Admin/Page/Columns.php:577
472
  msgid "Learn more about Pro"
473
  msgstr ""
474
 
475
- #: classes/Admin/Page/Columns.php:549
476
  msgid "Import &amp; Export settings"
477
  msgstr ""
478
 
479
- #: classes/Admin/Page/Columns.php:548
480
  msgid "Create multiple columns sets"
481
  msgstr ""
482
 
483
- #: classes/Admin/Page/Columns.php:546
484
  msgid "Add filterable columns"
485
  msgstr ""
486
 
487
- #: classes/Admin/Page/Columns.php:545
488
  msgid "Add sortable columns"
489
  msgstr ""
490
 
491
- #: classes/Admin/Page/Columns.php:540
492
  msgid "Take Admin Columns to the next level:"
493
  msgstr ""
494
 
495
- #: classes/Admin/Page/Columns.php:535
496
  msgid "Upgrade to"
497
  msgstr ""
498
 
@@ -500,11 +545,7 @@ msgstr ""
500
  msgid "Get %s Off"
501
  msgstr ""
502
 
503
- #: classes/Column/Post/Excerpt.php:21
504
- msgid "Excerpt from content"
505
- msgstr ""
506
-
507
- #: classes/Admin/Page/Columns.php:447
508
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
509
  msgstr ""
510
 
@@ -512,7 +553,7 @@ msgstr ""
512
  msgid "Please visit the %s screen once to load all available columns"
513
  msgstr ""
514
 
515
- #: classes/Admin/Page/Columns.php:516
516
  msgid "Restore columns"
517
  msgstr ""
518
 
@@ -520,7 +561,7 @@ msgstr ""
520
  msgid "Settings for %s restored successfully."
521
  msgstr ""
522
 
523
- #: classes/Admin/Page/Columns.php:354
524
  msgid "View %s screen"
525
  msgstr ""
526
 
@@ -572,9 +613,9 @@ msgstr ""
572
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
573
  msgstr ""
574
 
575
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
576
  #. Plugin URI of the plugin/theme
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Author URI of the plugin/theme
579
  msgid "https://www.admincolumns.com"
580
  msgstr ""
@@ -619,15 +660,15 @@ msgstr "به روزرسانی"
619
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
620
  msgstr ""
621
 
622
- #: classes/Admin/Page/Columns.php:353
623
  msgid "Settings for %s updated successfully."
624
  msgstr ""
625
 
626
- #: classes/Admin/Page/Columns.php:340
627
  msgid "You are trying to store the same settings for %s."
628
  msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
629
 
630
- #: classes/ListScreen.php:642
631
  msgid "No columns settings available."
632
  msgstr "هیچ تنظیمی برای ستونها موجود نیست."
633
 
@@ -681,75 +722,75 @@ msgstr "غیرفعال"
681
  msgid "Active"
682
  msgstr "فعال"
683
 
684
- #: classes/Admin/Page/Columns.php:763
685
  msgid "Add Column"
686
  msgstr "ستون جدید"
687
 
688
- #: classes/Admin/Page/Columns.php:743
689
  msgid "Drag and drop to reorder"
690
  msgstr "برای مرتب سازی بگیرید و بکشید"
691
 
692
- #: classes/Admin/Page/Columns.php:692
693
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
694
  msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
695
 
696
- #: classes/Admin/Page/Columns.php:688
697
  msgid "Check the <strong>Help</strong> section in the top-right screen."
698
  msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
699
 
700
- #: classes/Admin/Page/Columns.php:683
701
  msgid "Support"
702
  msgstr "پشتیبانی"
703
 
704
- #: classes/Admin/Page/Columns.php:671
705
  msgid "Buy Pro"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:665
709
  msgid "Tweet"
710
  msgstr ""
711
 
712
- #: classes/Admin/Page/Columns.php:659
713
  msgid "Rate"
714
  msgstr ""
715
 
716
- #: classes/Admin/Page/Columns.php:654
717
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:651
721
  msgid "Woohoo! We're glad to hear that!"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:641
725
  msgid "Forums"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:636
729
  msgid "Docs"
730
  msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:631
733
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:628
737
  msgid "What's wrong? Need help? Let us know!"
738
  msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:618
741
  msgid "Are you happy with Admin Columns?"
742
  msgstr ""
743
 
744
- #: classes/Admin/Page/Columns.php:515
745
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
746
  msgstr ""
747
 
748
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
749
  msgid "Update"
750
  msgstr ""
751
 
752
- #: classes/Admin/Page/Columns.php:493
753
  msgid "Store settings"
754
  msgstr "ذخیره تنظیمات"
755
 
@@ -781,7 +822,7 @@ msgstr "این کار تمام تنظیمات را حذف و به حالت پی
781
  msgid "Restore Settings"
782
  msgstr "بازنشانی تنظیمات"
783
 
784
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
785
  #: classes/Admin/Page/Settings.php:179
786
  msgid "Save"
787
  msgstr ""
@@ -978,7 +1019,7 @@ msgstr ""
978
  msgid "Admin Columns Pro"
979
  msgstr ""
980
 
981
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
982
  #. Plugin Name of the plugin/theme
983
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
984
  #: classes/Notice/Review.php:64
@@ -1033,7 +1074,7 @@ msgstr ""
1033
  msgid "Choose a column type."
1034
  msgstr "انتخاب نوع ستون"
1035
 
1036
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1037
  msgid "Clone"
1038
  msgstr ""
1039
 
@@ -1140,7 +1181,7 @@ msgstr "نام خانوادگی"
1140
  msgid "Comment Count"
1141
  msgstr ""
1142
 
1143
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1144
  msgid "Remove"
1145
  msgstr "حذف"
1146
 
@@ -1172,7 +1213,7 @@ msgstr ""
1172
  msgid "Sticky"
1173
  msgstr "سنجاق شده"
1174
 
1175
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1176
  msgid "Status"
1177
  msgstr "وضعیت"
1178
 
@@ -1416,7 +1457,7 @@ msgstr ""
1416
  msgid "Alt"
1417
  msgstr "متن جایگزین"
1418
 
1419
- #: classes/Admin/Page/Columns.php:479
1420
  msgid "View"
1421
  msgstr "نمایش"
1422
 
@@ -1595,7 +1636,7 @@ msgstr "تایید شده"
1595
  msgid "Agent"
1596
  msgstr "مرورگر"
1597
 
1598
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1599
  msgid "Edit"
1600
  msgstr "ویرایش"
1601
 
@@ -1605,14 +1646,16 @@ msgstr "ویرایش"
1605
  msgid "ID"
1606
  msgstr "شناسه"
1607
 
1608
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1609
  #: classes/Settings/Column/ActionIcons.php:22
 
1610
  #: classes/Settings/Column/Toggle.php:14
1611
  msgid "No"
1612
  msgstr ""
1613
 
1614
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1615
  #: classes/Settings/Column/ActionIcons.php:21
 
1616
  #: classes/Settings/Column/Toggle.php:13
1617
  msgid "Yes"
1618
  msgstr "بله"
11
  "Language: fa\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
408
  msgid "Help"
409
  msgstr ""
410
 
411
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
412
  msgid "Close"
413
  msgstr ""
414
 
415
+ #: classes/Admin/Page/Columns.php:758
416
  msgid "Clear all columns "
417
  msgstr ""
418
 
419
+ #: classes/Admin/Page/Columns.php:665
420
  msgid "I'm using Admin Columns for WordPress!"
421
  msgstr ""
422
 
423
+ #: classes/Admin/Page/Columns.php:607
424
  msgid "Your First Name"
425
  msgstr ""
426
 
427
+ #: classes/Admin/Page/Columns.php:606
428
  msgid "Your Email"
429
  msgstr ""
430
 
431
+ #: classes/Admin/Page/Columns.php:599
432
  msgid "Submit your email and we'll send you a discount for %s off."
433
  msgstr ""
434
 
435
+ #: classes/Admin/Page/Columns.php:595
436
  msgid "Get %s Off!"
437
  msgstr ""
438
 
439
+ #: classes/Admin/Page/Columns.php:562
440
  msgid "Extra Columns for:"
441
  msgstr ""
442
 
443
+ #: classes/Admin/Page/Columns.php:548
444
  msgid "Edit your column content directly"
445
  msgstr ""
446
 
447
+ #: classes/Admin/Page/Columns.php:536
448
  msgid "Pro"
449
  msgstr ""
450
 
513
  msgid "Imported"
514
  msgstr ""
515
 
516
+ #: classes/Admin/Page/Columns.php:578
517
  msgid "Learn more about Pro"
518
  msgstr ""
519
 
520
+ #: classes/Admin/Page/Columns.php:550
521
  msgid "Import &amp; Export settings"
522
  msgstr ""
523
 
524
+ #: classes/Admin/Page/Columns.php:549
525
  msgid "Create multiple columns sets"
526
  msgstr ""
527
 
528
+ #: classes/Admin/Page/Columns.php:547
529
  msgid "Add filterable columns"
530
  msgstr ""
531
 
532
+ #: classes/Admin/Page/Columns.php:546
533
  msgid "Add sortable columns"
534
  msgstr ""
535
 
536
+ #: classes/Admin/Page/Columns.php:541
537
  msgid "Take Admin Columns to the next level:"
538
  msgstr ""
539
 
540
+ #: classes/Admin/Page/Columns.php:536
541
  msgid "Upgrade to"
542
  msgstr ""
543
 
545
  msgid "Get %s Off"
546
  msgstr ""
547
 
548
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
549
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
550
  msgstr ""
551
 
553
  msgid "Please visit the %s screen once to load all available columns"
554
  msgstr ""
555
 
556
+ #: classes/Admin/Page/Columns.php:517
557
  msgid "Restore columns"
558
  msgstr ""
559
 
561
  msgid "Settings for %s restored successfully."
562
  msgstr ""
563
 
564
+ #: classes/Admin/Page/Columns.php:335
565
  msgid "View %s screen"
566
  msgstr ""
567
 
613
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
614
  msgstr ""
615
 
616
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
617
  #. Plugin URI of the plugin/theme
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Author URI of the plugin/theme
620
  msgid "https://www.admincolumns.com"
621
  msgstr ""
660
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
661
  msgstr ""
662
 
663
+ #: classes/Admin/Page/Columns.php:355
664
  msgid "Settings for %s updated successfully."
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:342
668
  msgid "You are trying to store the same settings for %s."
669
  msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
670
 
671
+ #: classes/ListScreen.php:652
672
  msgid "No columns settings available."
673
  msgstr "هیچ تنظیمی برای ستونها موجود نیست."
674
 
722
  msgid "Active"
723
  msgstr "فعال"
724
 
725
+ #: classes/Admin/Page/Columns.php:764
726
  msgid "Add Column"
727
  msgstr "ستون جدید"
728
 
729
+ #: classes/Admin/Page/Columns.php:744
730
  msgid "Drag and drop to reorder"
731
  msgstr "برای مرتب سازی بگیرید و بکشید"
732
 
733
+ #: classes/Admin/Page/Columns.php:693
734
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
735
  msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
736
 
737
+ #: classes/Admin/Page/Columns.php:689
738
  msgid "Check the <strong>Help</strong> section in the top-right screen."
739
  msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
740
 
741
+ #: classes/Admin/Page/Columns.php:684
742
  msgid "Support"
743
  msgstr "پشتیبانی"
744
 
745
+ #: classes/Admin/Page/Columns.php:672
746
  msgid "Buy Pro"
747
  msgstr ""
748
 
749
+ #: classes/Admin/Page/Columns.php:666
750
  msgid "Tweet"
751
  msgstr ""
752
 
753
+ #: classes/Admin/Page/Columns.php:660
754
  msgid "Rate"
755
  msgstr ""
756
 
757
+ #: classes/Admin/Page/Columns.php:655
758
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
759
  msgstr ""
760
 
761
+ #: classes/Admin/Page/Columns.php:652
762
  msgid "Woohoo! We're glad to hear that!"
763
  msgstr ""
764
 
765
+ #: classes/Admin/Page/Columns.php:642
766
  msgid "Forums"
767
  msgstr ""
768
 
769
+ #: classes/Admin/Page/Columns.php:637
770
  msgid "Docs"
771
  msgstr ""
772
 
773
+ #: classes/Admin/Page/Columns.php:632
774
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
775
  msgstr ""
776
 
777
+ #: classes/Admin/Page/Columns.php:629
778
  msgid "What's wrong? Need help? Let us know!"
779
  msgstr ""
780
 
781
+ #: classes/Admin/Page/Columns.php:619
782
  msgid "Are you happy with Admin Columns?"
783
  msgstr ""
784
 
785
+ #: classes/Admin/Page/Columns.php:516
786
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
787
  msgstr ""
788
 
789
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
790
  msgid "Update"
791
  msgstr ""
792
 
793
+ #: classes/Admin/Page/Columns.php:494
794
  msgid "Store settings"
795
  msgstr "ذخیره تنظیمات"
796
 
822
  msgid "Restore Settings"
823
  msgstr "بازنشانی تنظیمات"
824
 
825
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
826
  #: classes/Admin/Page/Settings.php:179
827
  msgid "Save"
828
  msgstr ""
1019
  msgid "Admin Columns Pro"
1020
  msgstr ""
1021
 
1022
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1023
  #. Plugin Name of the plugin/theme
1024
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1025
  #: classes/Notice/Review.php:64
1074
  msgid "Choose a column type."
1075
  msgstr "انتخاب نوع ستون"
1076
 
1077
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1078
  msgid "Clone"
1079
  msgstr ""
1080
 
1181
  msgid "Comment Count"
1182
  msgstr ""
1183
 
1184
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1185
  msgid "Remove"
1186
  msgstr "حذف"
1187
 
1213
  msgid "Sticky"
1214
  msgstr "سنجاق شده"
1215
 
1216
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1217
  msgid "Status"
1218
  msgstr "وضعیت"
1219
 
1457
  msgid "Alt"
1458
  msgstr "متن جایگزین"
1459
 
1460
+ #: classes/Admin/Page/Columns.php:480
1461
  msgid "View"
1462
  msgstr "نمایش"
1463
 
1636
  msgid "Agent"
1637
  msgstr "مرورگر"
1638
 
1639
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1640
  msgid "Edit"
1641
  msgstr "ویرایش"
1642
 
1646
  msgid "ID"
1647
  msgstr "شناسه"
1648
 
1649
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1650
  #: classes/Settings/Column/ActionIcons.php:22
1651
+ #: classes/Settings/Column/StatusIcon.php:24
1652
  #: classes/Settings/Column/Toggle.php:14
1653
  msgid "No"
1654
  msgstr ""
1655
 
1656
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1657
  #: classes/Settings/Column/ActionIcons.php:21
1658
+ #: classes/Settings/Column/StatusIcon.php:23
1659
  #: classes/Settings/Column/Toggle.php:13
1660
  msgid "Yes"
1661
  msgstr "بله"
languages/codepress-admin-columns-fr_FR.mo CHANGED
Binary file
languages/codepress-admin-columns-fr_FR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-04-29 09:18:35+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr "Mettre à jour"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Vous essayez de conserver les mêmes paramètres pour %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Aucun paramètre de colonne disponible."
635
 
@@ -683,75 +724,75 @@ msgstr "Désactiver"
683
  msgid "Active"
684
  msgstr "Activé"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Ajouter une colonne."
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Vous pouvez modifier l'ordre."
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Support"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "Taux"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr "Forums"
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Mettre à jour"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Enregistrer les réglages"
757
 
@@ -783,7 +824,7 @@ msgstr "Cette opération va supprimer tous les paramètres de colonnes et restau
783
  msgid "Restore Settings"
784
  msgstr "Rétablir les réglages"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Enregistrer"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Nom"
1035
  msgid "Choose a column type."
1036
  msgstr "Choisissez le type de colonne."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "Cloner"
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Nom"
1142
  msgid "Comment Count"
1143
  msgstr "Nombre de commentaires"
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Supprimer"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr "Mise en avant"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "État "
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr "Texte alternatif"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Afficher"
1426
 
@@ -1599,7 +1640,7 @@ msgstr "Approuvé"
1599
  msgid "Agent"
1600
  msgstr "Agent"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Modifier"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Modifier"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "Non"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Oui"
@@ -1643,7 +1686,7 @@ msgstr "WooCommerce"
1643
 
1644
  #: classes/Addon/ACF.php:13
1645
  msgid "Advanced Custom Fields"
1646
- msgstr "Personnalisation avancée de champ"
1647
 
1648
  #: classes/Admin/Page/Addons.php:120 codepress-admin-columns.php:339
1649
  msgid "Plugins"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-10-06 12:36:40+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Vous essayez de conserver les mêmes paramètres pour %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Aucun paramètre de colonne disponible."
676
 
724
  msgid "Active"
725
  msgstr "Activé"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Ajouter une colonne."
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Vous pouvez modifier l'ordre."
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr ""
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr ""
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Support"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr ""
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "Taux"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr "Forums"
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr ""
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Mettre à jour"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Enregistrer les réglages"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Rétablir les réglages"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Enregistrer"
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Choisissez le type de colonne."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "Cloner"
1082
 
1183
  msgid "Comment Count"
1184
  msgstr "Nombre de commentaires"
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Supprimer"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Mise en avant"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "État "
1221
 
1461
  msgid "Alt"
1462
  msgstr "Texte alternatif"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Afficher"
1467
 
1640
  msgid "Agent"
1641
  msgstr "Agent"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Modifier"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "Non"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Oui"
1686
 
1687
  #: classes/Addon/ACF.php:13
1688
  msgid "Advanced Custom Fields"
1689
+ msgstr "Advanced Custom Fields"
1690
 
1691
  #: classes/Admin/Page/Addons.php:120 codepress-admin-columns.php:339
1692
  msgid "Plugins"
languages/codepress-admin-columns-he_IL.mo CHANGED
Binary file
languages/codepress-admin-columns-he_IL.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: he_IL\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr "שדרג אל"
500
 
@@ -502,11 +547,7 @@ msgstr "שדרג אל"
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr "תקציר מתוך התוכן"
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr "הגדרות עבור %s שוחזרו בהצלחה."
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr "הצג מסך %s"
528
 
@@ -574,9 +615,9 @@ msgstr "AdminColumns.com"
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr "https://www.admincolumns.com"
@@ -621,15 +662,15 @@ msgstr "שדרוג"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr "הגדרות עבור %s עודכנו בהצלחה."
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr ""
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr ""
635
 
@@ -683,75 +724,75 @@ msgstr "כיבוי"
683
  msgid "Active"
684
  msgstr "פעיל"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "הוספת עמודה"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "תמיכה"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr "צייץ"
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "דרג"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr "וואוו! אנחנו שמחים לשמוע את זה."
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr "פורומים"
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr "תיעוד"
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "עדכון"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "הגדרות חנות"
757
 
@@ -783,7 +824,7 @@ msgstr ""
783
  msgid "Restore Settings"
784
  msgstr "שיחזור הגדרות"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "שמירה"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "שם"
1035
  msgid "Choose a column type."
1036
  msgstr ""
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "שכפל"
1041
 
@@ -1142,7 +1183,7 @@ msgstr "שם משפחה"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "הסר"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr "דביק"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "סטטוס"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr ""
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "הצג"
1426
 
@@ -1599,7 +1640,7 @@ msgstr "אושר"
1599
  msgid "Agent"
1600
  msgstr ""
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "עריכה"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "עריכה"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "לא"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "כן"
11
  "Language: he_IL\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr "שדרג אל"
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr "הגדרות עבור %s שוחזרו בהצלחה."
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr "הצג מסך %s"
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr "https://www.admincolumns.com"
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr "הגדרות עבור %s עודכנו בהצלחה."
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr ""
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr ""
676
 
724
  msgid "Active"
725
  msgstr "פעיל"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "הוספת עמודה"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr ""
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr ""
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr ""
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "תמיכה"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr "צייץ"
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "דרג"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr "וואוו! אנחנו שמחים לשמוע את זה."
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr "פורומים"
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr "תיעוד"
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "עדכון"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "הגדרות חנות"
798
 
824
  msgid "Restore Settings"
825
  msgstr "שיחזור הגדרות"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "שמירה"
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr ""
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "שכפל"
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "הסר"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "דביק"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "סטטוס"
1221
 
1461
  msgid "Alt"
1462
  msgstr ""
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "הצג"
1467
 
1640
  msgid "Agent"
1641
  msgstr ""
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "עריכה"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "לא"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "כן"
languages/codepress-admin-columns-hu_HU.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: hu\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr "Frissítés"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Nincs elérhető oszlopbeállítás."
635
 
@@ -683,75 +724,75 @@ msgstr ""
683
  msgid "Active"
684
  msgstr "Bekapcsolva"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Oszlop hozzáadása"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr "A teljes dokumentációhoz, problémák jelentéséhez, új javaslatok beküldéséhez és egyéb tippekért <a href='%s'>keresd fel az Admin Columns weboldalát</a>"
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Segítség"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Frisítés"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Beállítások tárolása"
757
 
@@ -783,7 +824,7 @@ msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmeze
783
  msgid "Restore Settings"
784
  msgstr "Beállítások visszaállítása"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr ""
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr ""
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Név"
1035
  msgid "Choose a column type."
1036
  msgstr "Válassz egy oszloptípust."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr ""
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Vezetéknév"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Eltávolítás"
1148
 
@@ -1174,7 +1215,7 @@ msgstr ""
1174
  msgid "Sticky"
1175
  msgstr "Kiemelt"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Státusz"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Megtekintés"
1426
 
@@ -1599,7 +1640,7 @@ msgstr "Jóváhagyva"
1599
  msgid "Agent"
1600
  msgstr "Ügynök"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Szerkesztés"
1605
 
@@ -1609,14 +1650,16 @@ msgstr "Szerkesztés"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "Nem"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Igen"
11
  "Language: hu\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Nincs elérhető oszlopbeállítás."
676
 
724
  msgid "Active"
725
  msgstr "Bekapcsolva"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Oszlop hozzáadása"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr "A teljes dokumentációhoz, problémák jelentéséhez, új javaslatok beküldéséhez és egyéb tippekért <a href='%s'>keresd fel az Admin Columns weboldalát</a>"
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Segítség"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr ""
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr ""
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr ""
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr ""
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr ""
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr ""
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr ""
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr ""
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr ""
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Frisítés"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Beállítások tárolása"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Beállítások visszaállítása"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr ""
1021
  msgid "Admin Columns Pro"
1022
  msgstr ""
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Válassz egy oszloptípust."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr ""
1082
 
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Eltávolítás"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Kiemelt"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Státusz"
1221
 
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Megtekintés"
1467
 
1640
  msgid "Agent"
1641
  msgstr "Ügynök"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Szerkesztés"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
  msgstr "Nem"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
  msgstr "Igen"
languages/codepress-admin-columns-it_IT.mo CHANGED
Binary file
languages/codepress-admin-columns-it_IT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-07-11 20:50:22+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,17 +11,61 @@ msgstr ""
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
- msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
- msgstr ""
25
 
26
  #: classes/Addon/BuddyPress.php:17
27
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr "Auto"
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -101,7 +146,7 @@ msgstr ""
101
 
102
  #: classes/Settings/Column/Password.php:22
103
  msgid "Password"
104
- msgstr ""
105
 
106
  #: classes/Settings/Column/Meta.php:27
107
  msgid "No fields available."
@@ -153,7 +198,7 @@ msgstr ""
153
 
154
  #: classes/Settings/Column/Date.php:76
155
  msgid "WordPress Date Format"
156
- msgstr ""
157
 
158
  #: classes/Settings/Column/Date.php:70
159
  msgid "or"
@@ -189,7 +234,7 @@ msgstr ""
189
 
190
  #: classes/Settings/Column/CustomFieldType.php:117
191
  msgid "Number of Fields"
192
- msgstr ""
193
 
194
  #: classes/Settings/Column/CustomFieldType.php:109
195
  msgid "True / False"
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr "Campo"
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr "e"
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr "o"
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr "Shortlink"
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ", "
276
 
@@ -364,45 +409,45 @@ msgstr ""
364
  msgid "Help"
365
  msgstr "Aiuto"
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr "Cancellare tutte le colonne "
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr "Sto usando Admin Columns per WordPress!"
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr "Il tuo nome"
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr "La tua email"
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
- msgstr ""
406
 
407
  #: classes/Admin/Page/Columns.php:328
408
  msgid "You need at least one column"
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr "Ulteriori informazioni su Pro"
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,21 +563,21 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
529
  #: classes/Admin/Page/Columns.php:74
530
  msgid "Invalid response."
531
- msgstr ""
532
 
533
  #: classes/Admin/Help/CustomField.php:51
534
  msgid "Value: should contain Attachment IDs ( seperated by a ',' comma )."
535
- msgstr ""
536
 
537
  #: classes/Settings/Column/LinkLabel.php:23
538
  msgid "Leave blank to display the url"
539
- msgstr ""
540
 
541
  #: classes/Settings/Column/LinkLabel.php:22
542
  msgid "Link Label"
@@ -568,15 +609,15 @@ msgstr ""
568
 
569
  #. Author of the plugin/theme
570
  msgid "AdminColumns.com"
571
- msgstr ""
572
 
573
  #. Description of the plugin/theme
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr "Aggiornamento"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr "L'add-on pro non è più supportato. Effettua il login sul account e scarica Admin Columns Pro"
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr "Impostazioni per %s aggiornato con successo."
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Nessuna impostazione colonne disponibile."
635
 
@@ -683,75 +724,75 @@ msgstr "Disattiva"
683
  msgid "Active"
684
  msgstr "Attivo"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Aggiungi colonna"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Trascina e rilascia per riordinare"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Supporto"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr "Acquista Pro"
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr "Tweet"
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr "Woohoo! Siamo lieti di sentire questo!"
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr "Forum"
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr "Documenti"
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr "Sei felice con Admin Columns?"
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Aggiorna"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Memorizza le impostazioni"
757
 
@@ -783,7 +824,7 @@ msgstr ""
783
  msgid "Restore Settings"
784
  msgstr "Ripristina Impostazioni"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Salva"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr "Admin Columns Pro"
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Nome"
1035
  msgid "Choose a column type."
1036
  msgstr "Scegli un tipo di colonna."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "Clona"
1041
 
@@ -1114,7 +1155,7 @@ msgstr "Url"
1114
 
1115
  #: classes/Column/User/RichEditing.php:11
1116
  msgid "Visual Editor"
1117
- msgstr ""
1118
 
1119
  #: classes/Column/User/Registered.php:14
1120
  msgid "Registered"
@@ -1142,7 +1183,7 @@ msgstr "Cognome"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Elimina"
1148
 
@@ -1174,7 +1215,7 @@ msgstr "Titolo senza azioni"
1174
  msgid "Sticky"
1175
  msgstr "In Rilievo"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Stato"
1180
 
@@ -1420,7 +1461,7 @@ msgstr ""
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr ""
1426
 
@@ -1464,6 +1505,8 @@ msgid ""
1464
  "You are about to delete this link '%s'\n"
1465
  " 'Cancel' to stop, 'OK' to delete."
1466
  msgstr ""
 
 
1467
 
1468
  #: classes/Settings/Column/CustomFieldType.php:53
1469
  msgid "This will determine how the value will be displayed."
@@ -1599,7 +1642,7 @@ msgstr "Approvato"
1599
  msgid "Agent"
1600
  msgstr "Agente"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Modifica"
1605
 
@@ -1609,14 +1652,16 @@ msgstr "Modifica"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
  msgstr "No"
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
  msgstr "Sì"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-11-06 22:38:32+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr "Protetto da password"
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr "Futuro"
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr "In attesa di revisione"
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr "Bozza"
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr "Pubblicato"
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr "Privato"
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr "Usare un'icona anziché il testo per visualizzare lo stato."
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr "Usare un'icona?"
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr "&hellip;"
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr "Il riassunto corrente è generato dal contenuto."
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr "Riassunto mancante."
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
+ msgstr "Inviami lo sconto"
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
+ msgstr "Prezzi a partire da %s"
69
 
70
  #: classes/Addon/BuddyPress.php:17
71
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
111
  msgid "Auto"
112
  msgstr "Auto"
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
146
 
147
  #: classes/Settings/Column/Password.php:22
148
  msgid "Password"
149
+ msgstr "Password"
150
 
151
  #: classes/Settings/Column/Meta.php:27
152
  msgid "No fields available."
198
 
199
  #: classes/Settings/Column/Date.php:76
200
  msgid "WordPress Date Format"
201
+ msgstr "Formato data WordPress"
202
 
203
  #: classes/Settings/Column/Date.php:70
204
  msgid "or"
234
 
235
  #: classes/Settings/Column/CustomFieldType.php:117
236
  msgid "Number of Fields"
237
+ msgstr "Numero di campi"
238
 
239
  #: classes/Settings/Column/CustomFieldType.php:109
240
  msgid "True / False"
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr "Campo"
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr "e"
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr "o"
296
 
315
  msgstr "Shortlink"
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ", "
321
 
409
  msgid "Help"
410
  msgstr "Aiuto"
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr "Cancellare tutte le colonne "
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr "Sto usando Admin Columns per WordPress!"
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr "Il tuo nome"
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr "La tua email"
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
+ msgstr "Pro"
451
 
452
  #: classes/Admin/Page/Columns.php:328
453
  msgid "You need at least one column"
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr "Ulteriori informazioni su Pro"
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
570
  #: classes/Admin/Page/Columns.php:74
571
  msgid "Invalid response."
572
+ msgstr "Risposta non valida."
573
 
574
  #: classes/Admin/Help/CustomField.php:51
575
  msgid "Value: should contain Attachment IDs ( seperated by a ',' comma )."
576
+ msgstr "Valore: dovrebbe contenere gli ID degli allegati (separati da ',' virgole)."
577
 
578
  #: classes/Settings/Column/LinkLabel.php:23
579
  msgid "Leave blank to display the url"
580
+ msgstr "Lasciare vuoto per visualizzare l'url"
581
 
582
  #: classes/Settings/Column/LinkLabel.php:22
583
  msgid "Link Label"
609
 
610
  #. Author of the plugin/theme
611
  msgid "AdminColumns.com"
612
+ msgstr "AdminColumns.com"
613
 
614
  #. Description of the plugin/theme
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr "L'add-on pro non è più supportato. Effettua il login sul account e scarica Admin Columns Pro"
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr "Impostazioni per %s aggiornato con successo."
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Nessuna impostazione colonne disponibile."
676
 
724
  msgid "Active"
725
  msgstr "Attivo"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Aggiungi colonna"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Trascina e rilascia per riordinare"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr ""
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Supporto"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr "Acquista Pro"
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr "Tweet"
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr ""
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr ""
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr "Woohoo! Siamo lieti di sentire questo!"
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr "Forum"
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr "Documenti"
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr "Sei felice con Admin Columns?"
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Aggiorna"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Memorizza le impostazioni"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Ripristina Impostazioni"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Salva"
1021
  msgid "Admin Columns Pro"
1022
  msgstr "Admin Columns Pro"
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Scegli un tipo di colonna."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "Clona"
1082
 
1155
 
1156
  #: classes/Column/User/RichEditing.php:11
1157
  msgid "Visual Editor"
1158
+ msgstr "Editor visuale"
1159
 
1160
  #: classes/Column/User/Registered.php:14
1161
  msgid "Registered"
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Elimina"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "In Rilievo"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Stato"
1221
 
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr ""
1467
 
1505
  "You are about to delete this link '%s'\n"
1506
  " 'Cancel' to stop, 'OK' to delete."
1507
  msgstr ""
1508
+ "Stai per eliminare questo link '%s'\n"
1509
+ "'Annulla' per interrompere, 'OK' per eliminare."
1510
 
1511
  #: classes/Settings/Column/CustomFieldType.php:53
1512
  msgid "This will determine how the value will be displayed."
1642
  msgid "Agent"
1643
  msgstr "Agente"
1644
 
1645
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1646
  msgid "Edit"
1647
  msgstr "Modifica"
1648
 
1652
  msgid "ID"
1653
  msgstr "ID"
1654
 
1655
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1656
  #: classes/Settings/Column/ActionIcons.php:22
1657
+ #: classes/Settings/Column/StatusIcon.php:24
1658
  #: classes/Settings/Column/Toggle.php:14
1659
  msgid "No"
1660
  msgstr "No"
1661
 
1662
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1663
  #: classes/Settings/Column/ActionIcons.php:21
1664
+ #: classes/Settings/Column/StatusIcon.php:23
1665
  #: classes/Settings/Column/Toggle.php:13
1666
  msgid "Yes"
1667
  msgstr "Sì"
languages/codepress-admin-columns-ja_JA.mo CHANGED
Binary file
languages/codepress-admin-columns-ja_JA.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr "単語数制限"
67
  msgid "Auto"
68
  msgstr "自動"
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr "表示"
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr "フィールド"
222
 
@@ -241,11 +286,11 @@ msgstr "表示設定"
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr "と"
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr "または"
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr "短縮リンク"
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr "、"
276
 
@@ -363,43 +408,43 @@ msgstr "被推奨フィルター"
363
  msgid "Help"
364
  msgstr "ヘルプ"
365
 
366
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
367
  msgid "Close"
368
  msgstr "閉じる"
369
 
370
- #: classes/Admin/Page/Columns.php:757
371
  msgid "Clear all columns "
372
  msgstr "すべての列をクリア"
373
 
374
- #: classes/Admin/Page/Columns.php:664
375
  msgid "I'm using Admin Columns for WordPress!"
376
  msgstr ""
377
 
378
- #: classes/Admin/Page/Columns.php:606
379
  msgid "Your First Name"
380
  msgstr "名"
381
 
382
- #: classes/Admin/Page/Columns.php:605
383
  msgid "Your Email"
384
  msgstr "メールアドレス"
385
 
386
- #: classes/Admin/Page/Columns.php:598
387
  msgid "Submit your email and we'll send you a discount for %s off."
388
  msgstr ""
389
 
390
- #: classes/Admin/Page/Columns.php:594
391
  msgid "Get %s Off!"
392
  msgstr ""
393
 
394
- #: classes/Admin/Page/Columns.php:561
395
  msgid "Extra Columns for:"
396
  msgstr ""
397
 
398
- #: classes/Admin/Page/Columns.php:547
399
  msgid "Edit your column content directly"
400
  msgstr ""
401
 
402
- #: classes/Admin/Page/Columns.php:535
403
  msgid "Pro"
404
  msgstr "プロ版"
405
 
@@ -468,31 +513,31 @@ msgstr ""
468
  msgid "Imported"
469
  msgstr "インポート済み"
470
 
471
- #: classes/Admin/Page/Columns.php:577
472
  msgid "Learn more about Pro"
473
  msgstr "プロ版についてさらに詳しく読む"
474
 
475
- #: classes/Admin/Page/Columns.php:549
476
  msgid "Import &amp; Export settings"
477
  msgstr "インポート &amp; エクスポート設定"
478
 
479
- #: classes/Admin/Page/Columns.php:548
480
  msgid "Create multiple columns sets"
481
  msgstr ""
482
 
483
- #: classes/Admin/Page/Columns.php:546
484
  msgid "Add filterable columns"
485
  msgstr ""
486
 
487
- #: classes/Admin/Page/Columns.php:545
488
  msgid "Add sortable columns"
489
  msgstr ""
490
 
491
- #: classes/Admin/Page/Columns.php:540
492
  msgid "Take Admin Columns to the next level:"
493
  msgstr ""
494
 
495
- #: classes/Admin/Page/Columns.php:535
496
  msgid "Upgrade to"
497
  msgstr "アップグレード:"
498
 
@@ -500,11 +545,7 @@ msgstr "アップグレード:"
500
  msgid "Get %s Off"
501
  msgstr "%s割引を適用"
502
 
503
- #: classes/Column/Post/Excerpt.php:21
504
- msgid "Excerpt from content"
505
- msgstr "コンテンツからの抜粋"
506
-
507
- #: classes/Admin/Page/Columns.php:447
508
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
509
  msgstr ""
510
 
@@ -512,7 +553,7 @@ msgstr ""
512
  msgid "Please visit the %s screen once to load all available columns"
513
  msgstr ""
514
 
515
- #: classes/Admin/Page/Columns.php:516
516
  msgid "Restore columns"
517
  msgstr "列を復元"
518
 
@@ -520,7 +561,7 @@ msgstr "列を復元"
520
  msgid "Settings for %s restored successfully."
521
  msgstr ""
522
 
523
- #: classes/Admin/Page/Columns.php:354
524
  msgid "View %s screen"
525
  msgstr "%s 画面を表示"
526
 
@@ -572,9 +613,9 @@ msgstr "AdminColumns.com"
572
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
573
  msgstr ""
574
 
575
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
576
  #. Plugin URI of the plugin/theme
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Author URI of the plugin/theme
579
  msgid "https://www.admincolumns.com"
580
  msgstr "https://www.admincolumns.com"
@@ -619,15 +660,15 @@ msgstr "アップグレード"
619
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
620
  msgstr ""
621
 
622
- #: classes/Admin/Page/Columns.php:353
623
  msgid "Settings for %s updated successfully."
624
  msgstr ""
625
 
626
- #: classes/Admin/Page/Columns.php:340
627
  msgid "You are trying to store the same settings for %s."
628
  msgstr "%sはすでに設定済みです "
629
 
630
- #: classes/ListScreen.php:642
631
  msgid "No columns settings available."
632
  msgstr "設定された列はありません"
633
 
@@ -681,75 +722,75 @@ msgstr "停止"
681
  msgid "Active"
682
  msgstr "有効"
683
 
684
- #: classes/Admin/Page/Columns.php:763
685
  msgid "Add Column"
686
  msgstr "列を追加"
687
 
688
- #: classes/Admin/Page/Columns.php:743
689
  msgid "Drag and drop to reorder"
690
  msgstr "ドロップ&ドラッグで表示順序を変更できます"
691
 
692
- #: classes/Admin/Page/Columns.php:692
693
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
694
  msgstr "ドキュメント・バグレポート・機能の提案などは<a href='%s'> Admin Columns website</a>を訪れてください。"
695
 
696
- #: classes/Admin/Page/Columns.php:688
697
  msgid "Check the <strong>Help</strong> section in the top-right screen."
698
  msgstr "画面右上の<strong>Help</strong>を確認してください。"
699
 
700
- #: classes/Admin/Page/Columns.php:683
701
  msgid "Support"
702
  msgstr "サポート"
703
 
704
- #: classes/Admin/Page/Columns.php:671
705
  msgid "Buy Pro"
706
  msgstr "Pro 版を購入"
707
 
708
- #: classes/Admin/Page/Columns.php:665
709
  msgid "Tweet"
710
  msgstr "ツイートする"
711
 
712
- #: classes/Admin/Page/Columns.php:659
713
  msgid "Rate"
714
  msgstr "評価"
715
 
716
- #: classes/Admin/Page/Columns.php:654
717
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:651
721
  msgid "Woohoo! We're glad to hear that!"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:641
725
  msgid "Forums"
726
  msgstr "フォーラム"
727
 
728
- #: classes/Admin/Page/Columns.php:636
729
  msgid "Docs"
730
  msgstr "ドキュメント"
731
 
732
- #: classes/Admin/Page/Columns.php:631
733
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:628
737
  msgid "What's wrong? Need help? Let us know!"
738
  msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:618
741
  msgid "Are you happy with Admin Columns?"
742
  msgstr ""
743
 
744
- #: classes/Admin/Page/Columns.php:515
745
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
746
  msgstr ""
747
 
748
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
749
  msgid "Update"
750
  msgstr "更新"
751
 
752
- #: classes/Admin/Page/Columns.php:493
753
  msgid "Store settings"
754
  msgstr "ストアー設定"
755
 
@@ -781,7 +822,7 @@ msgstr "追加された全ての列を削除し、デフォルト設定に戻し
781
  msgid "Restore Settings"
782
  msgstr "設定を修復"
783
 
784
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
785
  #: classes/Admin/Page/Settings.php:179
786
  msgid "Save"
787
  msgstr "保存"
@@ -985,7 +1026,7 @@ msgstr ""
985
  msgid "Admin Columns Pro"
986
  msgstr "Admin Columns Pro"
987
 
988
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
989
  #. Plugin Name of the plugin/theme
990
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
991
  #: classes/Notice/Review.php:64
@@ -1040,7 +1081,7 @@ msgstr "名称"
1040
  msgid "Choose a column type."
1041
  msgstr "カラム形式を選択。"
1042
 
1043
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1044
  msgid "Clone"
1045
  msgstr "複製"
1046
 
@@ -1147,7 +1188,7 @@ msgstr "姓"
1147
  msgid "Comment Count"
1148
  msgstr "コメント数"
1149
 
1150
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1151
  msgid "Remove"
1152
  msgstr "削除"
1153
 
@@ -1179,7 +1220,7 @@ msgstr "アクションのないタイトル"
1179
  msgid "Sticky"
1180
  msgstr "先頭固定表示"
1181
 
1182
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1183
  msgid "Status"
1184
  msgstr "状態"
1185
 
@@ -1423,7 +1464,7 @@ msgstr "投稿に添付"
1423
  msgid "Alt"
1424
  msgstr "Alt"
1425
 
1426
- #: classes/Admin/Page/Columns.php:479
1427
  msgid "View"
1428
  msgstr "表示"
1429
 
@@ -1602,7 +1643,7 @@ msgstr "承認済み"
1602
  msgid "Agent"
1603
  msgstr "エージェント"
1604
 
1605
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1606
  msgid "Edit"
1607
  msgstr "編集"
1608
 
@@ -1612,14 +1653,16 @@ msgstr "編集"
1612
  msgid "ID"
1613
  msgstr "ID"
1614
 
1615
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1616
  #: classes/Settings/Column/ActionIcons.php:22
 
1617
  #: classes/Settings/Column/Toggle.php:14
1618
  msgid "No"
1619
  msgstr "いいえ"
1620
 
1621
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1622
  #: classes/Settings/Column/ActionIcons.php:21
 
1623
  #: classes/Settings/Column/Toggle.php:13
1624
  msgid "Yes"
1625
  msgstr "はい"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr "自動"
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr "表示"
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr "フィールド"
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr "と"
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr "または"
296
 
315
  msgstr "短縮リンク"
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr "、"
321
 
408
  msgid "Help"
409
  msgstr "ヘルプ"
410
 
411
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
412
  msgid "Close"
413
  msgstr "閉じる"
414
 
415
+ #: classes/Admin/Page/Columns.php:758
416
  msgid "Clear all columns "
417
  msgstr "すべての列をクリア"
418
 
419
+ #: classes/Admin/Page/Columns.php:665
420
  msgid "I'm using Admin Columns for WordPress!"
421
  msgstr ""
422
 
423
+ #: classes/Admin/Page/Columns.php:607
424
  msgid "Your First Name"
425
  msgstr "名"
426
 
427
+ #: classes/Admin/Page/Columns.php:606
428
  msgid "Your Email"
429
  msgstr "メールアドレス"
430
 
431
+ #: classes/Admin/Page/Columns.php:599
432
  msgid "Submit your email and we'll send you a discount for %s off."
433
  msgstr ""
434
 
435
+ #: classes/Admin/Page/Columns.php:595
436
  msgid "Get %s Off!"
437
  msgstr ""
438
 
439
+ #: classes/Admin/Page/Columns.php:562
440
  msgid "Extra Columns for:"
441
  msgstr ""
442
 
443
+ #: classes/Admin/Page/Columns.php:548
444
  msgid "Edit your column content directly"
445
  msgstr ""
446
 
447
+ #: classes/Admin/Page/Columns.php:536
448
  msgid "Pro"
449
  msgstr "プロ版"
450
 
513
  msgid "Imported"
514
  msgstr "インポート済み"
515
 
516
+ #: classes/Admin/Page/Columns.php:578
517
  msgid "Learn more about Pro"
518
  msgstr "プロ版についてさらに詳しく読む"
519
 
520
+ #: classes/Admin/Page/Columns.php:550
521
  msgid "Import &amp; Export settings"
522
  msgstr "インポート &amp; エクスポート設定"
523
 
524
+ #: classes/Admin/Page/Columns.php:549
525
  msgid "Create multiple columns sets"
526
  msgstr ""
527
 
528
+ #: classes/Admin/Page/Columns.php:547
529
  msgid "Add filterable columns"
530
  msgstr ""
531
 
532
+ #: classes/Admin/Page/Columns.php:546
533
  msgid "Add sortable columns"
534
  msgstr ""
535
 
536
+ #: classes/Admin/Page/Columns.php:541
537
  msgid "Take Admin Columns to the next level:"
538
  msgstr ""
539
 
540
+ #: classes/Admin/Page/Columns.php:536
541
  msgid "Upgrade to"
542
  msgstr "アップグレード:"
543
 
545
  msgid "Get %s Off"
546
  msgstr "%s割引を適用"
547
 
548
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
549
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
550
  msgstr ""
551
 
553
  msgid "Please visit the %s screen once to load all available columns"
554
  msgstr ""
555
 
556
+ #: classes/Admin/Page/Columns.php:517
557
  msgid "Restore columns"
558
  msgstr "列を復元"
559
 
561
  msgid "Settings for %s restored successfully."
562
  msgstr ""
563
 
564
+ #: classes/Admin/Page/Columns.php:335
565
  msgid "View %s screen"
566
  msgstr "%s 画面を表示"
567
 
613
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
614
  msgstr ""
615
 
616
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
617
  #. Plugin URI of the plugin/theme
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Author URI of the plugin/theme
620
  msgid "https://www.admincolumns.com"
621
  msgstr "https://www.admincolumns.com"
660
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
661
  msgstr ""
662
 
663
+ #: classes/Admin/Page/Columns.php:355
664
  msgid "Settings for %s updated successfully."
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:342
668
  msgid "You are trying to store the same settings for %s."
669
  msgstr "%sはすでに設定済みです "
670
 
671
+ #: classes/ListScreen.php:652
672
  msgid "No columns settings available."
673
  msgstr "設定された列はありません"
674
 
722
  msgid "Active"
723
  msgstr "有効"
724
 
725
+ #: classes/Admin/Page/Columns.php:764
726
  msgid "Add Column"
727
  msgstr "列を追加"
728
 
729
+ #: classes/Admin/Page/Columns.php:744
730
  msgid "Drag and drop to reorder"
731
  msgstr "ドロップ&ドラッグで表示順序を変更できます"
732
 
733
+ #: classes/Admin/Page/Columns.php:693
734
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
735
  msgstr "ドキュメント・バグレポート・機能の提案などは<a href='%s'> Admin Columns website</a>を訪れてください。"
736
 
737
+ #: classes/Admin/Page/Columns.php:689
738
  msgid "Check the <strong>Help</strong> section in the top-right screen."
739
  msgstr "画面右上の<strong>Help</strong>を確認してください。"
740
 
741
+ #: classes/Admin/Page/Columns.php:684
742
  msgid "Support"
743
  msgstr "サポート"
744
 
745
+ #: classes/Admin/Page/Columns.php:672
746
  msgid "Buy Pro"
747
  msgstr "Pro 版を購入"
748
 
749
+ #: classes/Admin/Page/Columns.php:666
750
  msgid "Tweet"
751
  msgstr "ツイートする"
752
 
753
+ #: classes/Admin/Page/Columns.php:660
754
  msgid "Rate"
755
  msgstr "評価"
756
 
757
+ #: classes/Admin/Page/Columns.php:655
758
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
759
  msgstr ""
760
 
761
+ #: classes/Admin/Page/Columns.php:652
762
  msgid "Woohoo! We're glad to hear that!"
763
  msgstr ""
764
 
765
+ #: classes/Admin/Page/Columns.php:642
766
  msgid "Forums"
767
  msgstr "フォーラム"
768
 
769
+ #: classes/Admin/Page/Columns.php:637
770
  msgid "Docs"
771
  msgstr "ドキュメント"
772
 
773
+ #: classes/Admin/Page/Columns.php:632
774
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
775
  msgstr ""
776
 
777
+ #: classes/Admin/Page/Columns.php:629
778
  msgid "What's wrong? Need help? Let us know!"
779
  msgstr ""
780
 
781
+ #: classes/Admin/Page/Columns.php:619
782
  msgid "Are you happy with Admin Columns?"
783
  msgstr ""
784
 
785
+ #: classes/Admin/Page/Columns.php:516
786
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
787
  msgstr ""
788
 
789
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
790
  msgid "Update"
791
  msgstr "更新"
792
 
793
+ #: classes/Admin/Page/Columns.php:494
794
  msgid "Store settings"
795
  msgstr "ストアー設定"
796
 
822
  msgid "Restore Settings"
823
  msgstr "設定を修復"
824
 
825
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
826
  #: classes/Admin/Page/Settings.php:179
827
  msgid "Save"
828
  msgstr "保存"
1026
  msgid "Admin Columns Pro"
1027
  msgstr "Admin Columns Pro"
1028
 
1029
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1030
  #. Plugin Name of the plugin/theme
1031
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1032
  #: classes/Notice/Review.php:64
1081
  msgid "Choose a column type."
1082
  msgstr "カラム形式を選択。"
1083
 
1084
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1085
  msgid "Clone"
1086
  msgstr "複製"
1087
 
1188
  msgid "Comment Count"
1189
  msgstr "コメント数"
1190
 
1191
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1192
  msgid "Remove"
1193
  msgstr "削除"
1194
 
1220
  msgid "Sticky"
1221
  msgstr "先頭固定表示"
1222
 
1223
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1224
  msgid "Status"
1225
  msgstr "状態"
1226
 
1464
  msgid "Alt"
1465
  msgstr "Alt"
1466
 
1467
+ #: classes/Admin/Page/Columns.php:480
1468
  msgid "View"
1469
  msgstr "表示"
1470
 
1643
  msgid "Agent"
1644
  msgstr "エージェント"
1645
 
1646
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1647
  msgid "Edit"
1648
  msgstr "編集"
1649
 
1653
  msgid "ID"
1654
  msgstr "ID"
1655
 
1656
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1657
  #: classes/Settings/Column/ActionIcons.php:22
1658
+ #: classes/Settings/Column/StatusIcon.php:24
1659
  #: classes/Settings/Column/Toggle.php:14
1660
  msgid "No"
1661
  msgstr "いいえ"
1662
 
1663
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1664
  #: classes/Settings/Column/ActionIcons.php:21
1665
+ #: classes/Settings/Column/StatusIcon.php:23
1666
  #: classes/Settings/Column/Toggle.php:13
1667
  msgid "Yes"
1668
  msgstr "はい"
languages/codepress-admin-columns-nl_NL.mo CHANGED
Binary file
languages/codepress-admin-columns-nl_NL.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: nl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr "Gebruiker schermnaam"
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr "Stuur mij de korting"
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr "Prijzen vanaf %s"
25
 
@@ -67,7 +111,8 @@ msgstr "Woordlimiet"
67
  msgid "Auto"
68
  msgstr "Auto"
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr "Tonen"
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr "Gebruikt het ID van een %s om informatie weer te geven."
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr "Veld"
222
 
@@ -241,11 +286,11 @@ msgstr "Weergaveopties"
241
  msgid "This text will appear after the column value."
242
  msgstr "Deze tekst zal na de kolomwaarde verschijnen."
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr " en "
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr " of "
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr "Shortlink"
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ", "
276
 
@@ -364,43 +409,43 @@ msgstr "Verouderde filters"
364
  msgid "Help"
365
  msgstr "Hulp"
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr "Sluiten"
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr "Alle kolommen legen "
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr "Ik gebruik Admin Columns voor WordPress."
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr "Je voornaam"
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr "Je e-mailadres"
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr "Stuur je e-mail en wij sturen je een code voor %s korting."
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr "Krijg %s korting."
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr "Extra kolommen voor:"
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr "Bewerk je kolom-inhoud rechtstreeks."
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr "Pro"
406
 
@@ -470,31 +515,31 @@ msgstr "Pods"
470
  msgid "Imported"
471
  msgstr "Geïmporteerd"
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr "Meer weten over Pro"
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr "Import &amp; Expor-instellingen"
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr "Maak meerdere kolommenverzamelingen."
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr "Voeg filterbare kolom toe"
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr "Voeg sorteerbare kolom toe"
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr "Breng Admin Columns naar een hoger niveau:"
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr "Upgraden naar"
500
 
@@ -502,11 +547,7 @@ msgstr "Upgraden naar"
502
  msgid "Get %s Off"
503
  msgstr "Krijg %s korting"
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr "Samenvatting vanuit inhoud"
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangepast worden."
512
 
@@ -514,7 +555,7 @@ msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangep
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr "Bezoek eenmalig het %s-scherm om alle beschikbare kolommen te laden"
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr "Herstel originele kolommen"
520
 
@@ -522,7 +563,7 @@ msgstr "Herstel originele kolommen"
522
  msgid "Settings for %s restored successfully."
523
  msgstr "Kolom-instellingen voor %s succesvol hersteld in originele staat."
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr "Bekijk %s-scherm"
528
 
@@ -574,9 +615,9 @@ msgstr "AdminColumns.com"
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr "Pas de kolommen aan op de beheerschermen van post(types), pagina's, media, reacties en gebruikers met een eenvoudige drag-and-drop-interface."
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr "https://www.admincolumns.com"
@@ -621,15 +662,15 @@ msgstr "Upgraden"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr "The pro add-on wordt niet langer ondersteund. Login op je account en download Admin Columns Pro"
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr "Instellingen voor %s succesvol bijgewerkt."
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Geen kolom instellingen beschikbaar."
635
 
@@ -683,75 +724,75 @@ msgstr "Deactiveren"
683
  msgid "Active"
684
  msgstr "Actief"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Kolom toevoegen"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Sleep om te herordenen"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Ondersteuning"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr "Pro kopen"
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr "Tweeten"
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "Beoordelen"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr "Woohoo! We zijn blij dat te horen!"
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr "Forums"
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr "Documenten"
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr "Ben je blij met Admin Columns?"
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr "Waarschuwing. De kolomdata van %s wordt verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen met verwijderen."
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Bijwerken"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Instellingen opslaan"
757
 
@@ -783,7 +824,7 @@ msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinst
783
  msgid "Restore Settings"
784
  msgstr "Herstel Instellingen"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
  msgstr "Bewaar"
@@ -980,7 +1021,7 @@ msgstr "We willen je niet storen, maar je gebruikt %s nu al een tijdje, en we vr
980
  msgid "Admin Columns Pro"
981
  msgstr "Admin Columns Pro"
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Naam"
1035
  msgid "Choose a column type."
1036
  msgstr "Kies een kolom type."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "Kloon"
1041
 
@@ -1142,7 +1183,7 @@ msgstr "Achternaam"
1142
  msgid "Comment Count"
1143
  msgstr "Reacties-telling"
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Verwijderen"
1148
 
@@ -1174,7 +1215,7 @@ msgstr "Titel zonder acties"
1174
  msgid "Sticky"
1175
  msgstr "Sticky"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Status"
1180
 
@@ -1420,7 +1461,7 @@ msgstr "Bijgevoegd aan bericht"
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Bekijk"
1426
 
@@ -1601,7 +1642,7 @@ msgstr "Goedgekeurd"
1601
  msgid "Agent"
1602
  msgstr "Agent"
1603
 
1604
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1605
  msgid "Edit"
1606
  msgstr "Bewerken"
1607
 
@@ -1611,14 +1652,16 @@ msgstr "Bewerken"
1611
  msgid "ID"
1612
  msgstr "ID"
1613
 
1614
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1615
  #: classes/Settings/Column/ActionIcons.php:22
 
1616
  #: classes/Settings/Column/Toggle.php:14
1617
  msgid "No"
1618
  msgstr "Nee"
1619
 
1620
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1621
  #: classes/Settings/Column/ActionIcons.php:21
 
1622
  #: classes/Settings/Column/Toggle.php:13
1623
  msgid "Yes"
1624
  msgstr "Ja"
11
  "Language: nl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr "Gebruiker schermnaam"
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr "Stuur mij de korting"
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr "Prijzen vanaf %s"
69
 
111
  msgid "Auto"
112
  msgstr "Auto"
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr "Tonen"
118
 
261
  msgstr "Gebruikt het ID van een %s om informatie weer te geven."
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr "Veld"
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr "Deze tekst zal na de kolomwaarde verschijnen."
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr " en "
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr " of "
296
 
315
  msgstr "Shortlink"
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ", "
321
 
409
  msgid "Help"
410
  msgstr "Hulp"
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr "Sluiten"
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr "Alle kolommen legen "
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr "Ik gebruik Admin Columns voor WordPress."
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr "Je voornaam"
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr "Je e-mailadres"
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr "Stuur je e-mail en wij sturen je een code voor %s korting."
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr "Krijg %s korting."
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr "Extra kolommen voor:"
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr "Bewerk je kolom-inhoud rechtstreeks."
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr "Pro"
451
 
515
  msgid "Imported"
516
  msgstr "Geïmporteerd"
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr "Meer weten over Pro"
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr "Import &amp; Expor-instellingen"
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr "Maak meerdere kolommenverzamelingen."
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr "Voeg filterbare kolom toe"
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr "Voeg sorteerbare kolom toe"
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr "Breng Admin Columns naar een hoger niveau:"
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr "Upgraden naar"
545
 
547
  msgid "Get %s Off"
548
  msgstr "Krijg %s korting"
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangepast worden."
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr "Bezoek eenmalig het %s-scherm om alle beschikbare kolommen te laden"
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr "Herstel originele kolommen"
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr "Kolom-instellingen voor %s succesvol hersteld in originele staat."
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr "Bekijk %s-scherm"
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr "Pas de kolommen aan op de beheerschermen van post(types), pagina's, media, reacties en gebruikers met een eenvoudige drag-and-drop-interface."
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr "https://www.admincolumns.com"
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr "The pro add-on wordt niet langer ondersteund. Login op je account en download Admin Columns Pro"
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr "Instellingen voor %s succesvol bijgewerkt."
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Geen kolom instellingen beschikbaar."
676
 
724
  msgid "Active"
725
  msgstr "Actief"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Kolom toevoegen"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Sleep om te herordenen"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Ondersteuning"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr "Pro kopen"
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr "Tweeten"
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "Beoordelen"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr "Woohoo! We zijn blij dat te horen!"
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr "Forums"
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr "Documenten"
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr "Ben je blij met Admin Columns?"
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr "Waarschuwing. De kolomdata van %s wordt verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen met verwijderen."
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Bijwerken"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Instellingen opslaan"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Herstel Instellingen"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
  msgstr "Bewaar"
1021
  msgid "Admin Columns Pro"
1022
  msgstr "Admin Columns Pro"
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Kies een kolom type."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "Kloon"
1082
 
1183
  msgid "Comment Count"
1184
  msgstr "Reacties-telling"
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Verwijderen"
1189
 
1215
  msgid "Sticky"
1216
  msgstr "Sticky"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Status"
1221
 
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Bekijk"
1467
 
1642
  msgid "Agent"
1643
  msgstr "Agent"
1644
 
1645
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1646
  msgid "Edit"
1647
  msgstr "Bewerken"
1648
 
1652
  msgid "ID"
1653
  msgstr "ID"
1654
 
1655
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1656
  #: classes/Settings/Column/ActionIcons.php:22
1657
+ #: classes/Settings/Column/StatusIcon.php:24
1658
  #: classes/Settings/Column/Toggle.php:14
1659
  msgid "No"
1660
  msgstr "Nee"
1661
 
1662
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1663
  #: classes/Settings/Column/ActionIcons.php:21
1664
+ #: classes/Settings/Column/StatusIcon.php:23
1665
  #: classes/Settings/Column/Toggle.php:13
1666
  msgid "Yes"
1667
  msgstr "Ja"
languages/codepress-admin-columns-pl_PL.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: pl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -365,43 +410,43 @@ msgstr ""
365
  msgid "Help"
366
  msgstr ""
367
 
368
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
369
  msgid "Close"
370
  msgstr ""
371
 
372
- #: classes/Admin/Page/Columns.php:757
373
  msgid "Clear all columns "
374
  msgstr ""
375
 
376
- #: classes/Admin/Page/Columns.php:664
377
  msgid "I'm using Admin Columns for WordPress!"
378
  msgstr ""
379
 
380
- #: classes/Admin/Page/Columns.php:606
381
  msgid "Your First Name"
382
  msgstr ""
383
 
384
- #: classes/Admin/Page/Columns.php:605
385
  msgid "Your Email"
386
  msgstr ""
387
 
388
- #: classes/Admin/Page/Columns.php:598
389
  msgid "Submit your email and we'll send you a discount for %s off."
390
  msgstr ""
391
 
392
- #: classes/Admin/Page/Columns.php:594
393
  msgid "Get %s Off!"
394
  msgstr ""
395
 
396
- #: classes/Admin/Page/Columns.php:561
397
  msgid "Extra Columns for:"
398
  msgstr ""
399
 
400
- #: classes/Admin/Page/Columns.php:547
401
  msgid "Edit your column content directly"
402
  msgstr ""
403
 
404
- #: classes/Admin/Page/Columns.php:535
405
  msgid "Pro"
406
  msgstr ""
407
 
@@ -472,31 +517,31 @@ msgstr ""
472
  msgid "Imported"
473
  msgstr ""
474
 
475
- #: classes/Admin/Page/Columns.php:577
476
  msgid "Learn more about Pro"
477
  msgstr ""
478
 
479
- #: classes/Admin/Page/Columns.php:549
480
  msgid "Import &amp; Export settings"
481
  msgstr ""
482
 
483
- #: classes/Admin/Page/Columns.php:548
484
  msgid "Create multiple columns sets"
485
  msgstr ""
486
 
487
- #: classes/Admin/Page/Columns.php:546
488
  msgid "Add filterable columns"
489
  msgstr ""
490
 
491
- #: classes/Admin/Page/Columns.php:545
492
  msgid "Add sortable columns"
493
  msgstr ""
494
 
495
- #: classes/Admin/Page/Columns.php:540
496
  msgid "Take Admin Columns to the next level:"
497
  msgstr ""
498
 
499
- #: classes/Admin/Page/Columns.php:535
500
  msgid "Upgrade to"
501
  msgstr ""
502
 
@@ -504,11 +549,7 @@ msgstr ""
504
  msgid "Get %s Off"
505
  msgstr ""
506
 
507
- #: classes/Column/Post/Excerpt.php:21
508
- msgid "Excerpt from content"
509
- msgstr ""
510
-
511
- #: classes/Admin/Page/Columns.php:447
512
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
513
  msgstr ""
514
 
@@ -516,7 +557,7 @@ msgstr ""
516
  msgid "Please visit the %s screen once to load all available columns"
517
  msgstr ""
518
 
519
- #: classes/Admin/Page/Columns.php:516
520
  msgid "Restore columns"
521
  msgstr ""
522
 
@@ -524,7 +565,7 @@ msgstr ""
524
  msgid "Settings for %s restored successfully."
525
  msgstr ""
526
 
527
- #: classes/Admin/Page/Columns.php:354
528
  msgid "View %s screen"
529
  msgstr ""
530
 
@@ -576,9 +617,9 @@ msgstr ""
576
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
577
  msgstr ""
578
 
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Plugin URI of the plugin/theme
581
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
582
  #. Author URI of the plugin/theme
583
  msgid "https://www.admincolumns.com"
584
  msgstr ""
@@ -623,15 +664,15 @@ msgstr "Aktualizuj"
623
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
624
  msgstr ""
625
 
626
- #: classes/Admin/Page/Columns.php:353
627
  msgid "Settings for %s updated successfully."
628
  msgstr ""
629
 
630
- #: classes/Admin/Page/Columns.php:340
631
  msgid "You are trying to store the same settings for %s."
632
  msgstr "Próbujesz przywrócić te same ustawienia dla %s."
633
 
634
- #: classes/ListScreen.php:642
635
  msgid "No columns settings available."
636
  msgstr "Brak dostępnych ustawień kolumn."
637
 
@@ -685,75 +726,75 @@ msgstr ""
685
  msgid "Active"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:763
689
  msgid "Add Column"
690
  msgstr "Dodaj kolumnę"
691
 
692
- #: classes/Admin/Page/Columns.php:743
693
  msgid "Drag and drop to reorder"
694
  msgstr "Przeciągnij i opuść aby zmienić kolejność"
695
 
696
- #: classes/Admin/Page/Columns.php:692
697
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
698
  msgstr "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora kolumn</a>"
699
 
700
- #: classes/Admin/Page/Columns.php:688
701
  msgid "Check the <strong>Help</strong> section in the top-right screen."
702
  msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
703
 
704
- #: classes/Admin/Page/Columns.php:683
705
  msgid "Support"
706
  msgstr "Wsparcie"
707
 
708
- #: classes/Admin/Page/Columns.php:671
709
  msgid "Buy Pro"
710
  msgstr ""
711
 
712
- #: classes/Admin/Page/Columns.php:665
713
  msgid "Tweet"
714
  msgstr ""
715
 
716
- #: classes/Admin/Page/Columns.php:659
717
  msgid "Rate"
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:654
721
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:651
725
  msgid "Woohoo! We're glad to hear that!"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:641
729
  msgid "Forums"
730
  msgstr "Fora"
731
 
732
- #: classes/Admin/Page/Columns.php:636
733
  msgid "Docs"
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:631
737
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
738
  msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:628
741
  msgid "What's wrong? Need help? Let us know!"
742
  msgstr ""
743
 
744
- #: classes/Admin/Page/Columns.php:618
745
  msgid "Are you happy with Admin Columns?"
746
  msgstr ""
747
 
748
- #: classes/Admin/Page/Columns.php:515
749
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
750
  msgstr ""
751
 
752
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
753
  msgid "Update"
754
  msgstr "Aktualizuj"
755
 
756
- #: classes/Admin/Page/Columns.php:493
757
  msgid "Store settings"
758
  msgstr "Zapisz ustawienia"
759
 
@@ -785,7 +826,7 @@ msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawi
785
  msgid "Restore Settings"
786
  msgstr "Przywróć ustawienia"
787
 
788
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
789
  #: classes/Admin/Page/Settings.php:179
790
  msgid "Save"
791
  msgstr "Zapisz"
@@ -982,7 +1023,7 @@ msgstr ""
982
  msgid "Admin Columns Pro"
983
  msgstr ""
984
 
985
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
986
  #. Plugin Name of the plugin/theme
987
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
988
  #: classes/Notice/Review.php:64
@@ -1037,7 +1078,7 @@ msgstr "Nazwa"
1037
  msgid "Choose a column type."
1038
  msgstr "Wybierz typ kolumny."
1039
 
1040
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1041
  msgid "Clone"
1042
  msgstr ""
1043
 
@@ -1144,7 +1185,7 @@ msgstr "Nazwisko"
1144
  msgid "Comment Count"
1145
  msgstr ""
1146
 
1147
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1148
  msgid "Remove"
1149
  msgstr "Usuń"
1150
 
@@ -1176,7 +1217,7 @@ msgstr ""
1176
  msgid "Sticky"
1177
  msgstr "Przyklejone"
1178
 
1179
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1180
  msgid "Status"
1181
  msgstr "Status"
1182
 
@@ -1424,7 +1465,7 @@ msgstr ""
1424
  msgid "Alt"
1425
  msgstr "Tekst alternatywny"
1426
 
1427
- #: classes/Admin/Page/Columns.php:479
1428
  msgid "View"
1429
  msgstr "Zobacz"
1430
 
@@ -1603,7 +1644,7 @@ msgstr "Zatwierdzona"
1603
  msgid "Agent"
1604
  msgstr "Przeglądarka"
1605
 
1606
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1607
  msgid "Edit"
1608
  msgstr "Edytuj"
1609
 
@@ -1613,14 +1654,16 @@ msgstr "Edytuj"
1613
  msgid "ID"
1614
  msgstr "ID"
1615
 
1616
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1617
  #: classes/Settings/Column/ActionIcons.php:22
 
1618
  #: classes/Settings/Column/Toggle.php:14
1619
  msgid "No"
1620
  msgstr "Nie"
1621
 
1622
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1623
  #: classes/Settings/Column/ActionIcons.php:21
 
1624
  #: classes/Settings/Column/Toggle.php:13
1625
  msgid "Yes"
1626
  msgstr "Tak"
11
  "Language: pl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
410
  msgid "Help"
411
  msgstr ""
412
 
413
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
414
  msgid "Close"
415
  msgstr ""
416
 
417
+ #: classes/Admin/Page/Columns.php:758
418
  msgid "Clear all columns "
419
  msgstr ""
420
 
421
+ #: classes/Admin/Page/Columns.php:665
422
  msgid "I'm using Admin Columns for WordPress!"
423
  msgstr ""
424
 
425
+ #: classes/Admin/Page/Columns.php:607
426
  msgid "Your First Name"
427
  msgstr ""
428
 
429
+ #: classes/Admin/Page/Columns.php:606
430
  msgid "Your Email"
431
  msgstr ""
432
 
433
+ #: classes/Admin/Page/Columns.php:599
434
  msgid "Submit your email and we'll send you a discount for %s off."
435
  msgstr ""
436
 
437
+ #: classes/Admin/Page/Columns.php:595
438
  msgid "Get %s Off!"
439
  msgstr ""
440
 
441
+ #: classes/Admin/Page/Columns.php:562
442
  msgid "Extra Columns for:"
443
  msgstr ""
444
 
445
+ #: classes/Admin/Page/Columns.php:548
446
  msgid "Edit your column content directly"
447
  msgstr ""
448
 
449
+ #: classes/Admin/Page/Columns.php:536
450
  msgid "Pro"
451
  msgstr ""
452
 
517
  msgid "Imported"
518
  msgstr ""
519
 
520
+ #: classes/Admin/Page/Columns.php:578
521
  msgid "Learn more about Pro"
522
  msgstr ""
523
 
524
+ #: classes/Admin/Page/Columns.php:550
525
  msgid "Import &amp; Export settings"
526
  msgstr ""
527
 
528
+ #: classes/Admin/Page/Columns.php:549
529
  msgid "Create multiple columns sets"
530
  msgstr ""
531
 
532
+ #: classes/Admin/Page/Columns.php:547
533
  msgid "Add filterable columns"
534
  msgstr ""
535
 
536
+ #: classes/Admin/Page/Columns.php:546
537
  msgid "Add sortable columns"
538
  msgstr ""
539
 
540
+ #: classes/Admin/Page/Columns.php:541
541
  msgid "Take Admin Columns to the next level:"
542
  msgstr ""
543
 
544
+ #: classes/Admin/Page/Columns.php:536
545
  msgid "Upgrade to"
546
  msgstr ""
547
 
549
  msgid "Get %s Off"
550
  msgstr ""
551
 
552
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
553
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
554
  msgstr ""
555
 
557
  msgid "Please visit the %s screen once to load all available columns"
558
  msgstr ""
559
 
560
+ #: classes/Admin/Page/Columns.php:517
561
  msgid "Restore columns"
562
  msgstr ""
563
 
565
  msgid "Settings for %s restored successfully."
566
  msgstr ""
567
 
568
+ #: classes/Admin/Page/Columns.php:335
569
  msgid "View %s screen"
570
  msgstr ""
571
 
617
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
618
  msgstr ""
619
 
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Plugin URI of the plugin/theme
622
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
623
  #. Author URI of the plugin/theme
624
  msgid "https://www.admincolumns.com"
625
  msgstr ""
664
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:355
668
  msgid "Settings for %s updated successfully."
669
  msgstr ""
670
 
671
+ #: classes/Admin/Page/Columns.php:342
672
  msgid "You are trying to store the same settings for %s."
673
  msgstr "Próbujesz przywrócić te same ustawienia dla %s."
674
 
675
+ #: classes/ListScreen.php:652
676
  msgid "No columns settings available."
677
  msgstr "Brak dostępnych ustawień kolumn."
678
 
726
  msgid "Active"
727
  msgstr ""
728
 
729
+ #: classes/Admin/Page/Columns.php:764
730
  msgid "Add Column"
731
  msgstr "Dodaj kolumnę"
732
 
733
+ #: classes/Admin/Page/Columns.php:744
734
  msgid "Drag and drop to reorder"
735
  msgstr "Przeciągnij i opuść aby zmienić kolejność"
736
 
737
+ #: classes/Admin/Page/Columns.php:693
738
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
739
  msgstr "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora kolumn</a>"
740
 
741
+ #: classes/Admin/Page/Columns.php:689
742
  msgid "Check the <strong>Help</strong> section in the top-right screen."
743
  msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
744
 
745
+ #: classes/Admin/Page/Columns.php:684
746
  msgid "Support"
747
  msgstr "Wsparcie"
748
 
749
+ #: classes/Admin/Page/Columns.php:672
750
  msgid "Buy Pro"
751
  msgstr ""
752
 
753
+ #: classes/Admin/Page/Columns.php:666
754
  msgid "Tweet"
755
  msgstr ""
756
 
757
+ #: classes/Admin/Page/Columns.php:660
758
  msgid "Rate"
759
  msgstr ""
760
 
761
+ #: classes/Admin/Page/Columns.php:655
762
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
763
  msgstr ""
764
 
765
+ #: classes/Admin/Page/Columns.php:652
766
  msgid "Woohoo! We're glad to hear that!"
767
  msgstr ""
768
 
769
+ #: classes/Admin/Page/Columns.php:642
770
  msgid "Forums"
771
  msgstr "Fora"
772
 
773
+ #: classes/Admin/Page/Columns.php:637
774
  msgid "Docs"
775
  msgstr ""
776
 
777
+ #: classes/Admin/Page/Columns.php:632
778
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
779
  msgstr ""
780
 
781
+ #: classes/Admin/Page/Columns.php:629
782
  msgid "What's wrong? Need help? Let us know!"
783
  msgstr ""
784
 
785
+ #: classes/Admin/Page/Columns.php:619
786
  msgid "Are you happy with Admin Columns?"
787
  msgstr ""
788
 
789
+ #: classes/Admin/Page/Columns.php:516
790
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
791
  msgstr ""
792
 
793
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
794
  msgid "Update"
795
  msgstr "Aktualizuj"
796
 
797
+ #: classes/Admin/Page/Columns.php:494
798
  msgid "Store settings"
799
  msgstr "Zapisz ustawienia"
800
 
826
  msgid "Restore Settings"
827
  msgstr "Przywróć ustawienia"
828
 
829
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
830
  #: classes/Admin/Page/Settings.php:179
831
  msgid "Save"
832
  msgstr "Zapisz"
1023
  msgid "Admin Columns Pro"
1024
  msgstr ""
1025
 
1026
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1027
  #. Plugin Name of the plugin/theme
1028
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1029
  #: classes/Notice/Review.php:64
1078
  msgid "Choose a column type."
1079
  msgstr "Wybierz typ kolumny."
1080
 
1081
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1082
  msgid "Clone"
1083
  msgstr ""
1084
 
1185
  msgid "Comment Count"
1186
  msgstr ""
1187
 
1188
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1189
  msgid "Remove"
1190
  msgstr "Usuń"
1191
 
1217
  msgid "Sticky"
1218
  msgstr "Przyklejone"
1219
 
1220
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1221
  msgid "Status"
1222
  msgstr "Status"
1223
 
1465
  msgid "Alt"
1466
  msgstr "Tekst alternatywny"
1467
 
1468
+ #: classes/Admin/Page/Columns.php:480
1469
  msgid "View"
1470
  msgstr "Zobacz"
1471
 
1644
  msgid "Agent"
1645
  msgstr "Przeglądarka"
1646
 
1647
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1648
  msgid "Edit"
1649
  msgstr "Edytuj"
1650
 
1654
  msgid "ID"
1655
  msgstr "ID"
1656
 
1657
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1658
  #: classes/Settings/Column/ActionIcons.php:22
1659
+ #: classes/Settings/Column/StatusIcon.php:24
1660
  #: classes/Settings/Column/Toggle.php:14
1661
  msgid "No"
1662
  msgstr "Nie"
1663
 
1664
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1665
  #: classes/Settings/Column/ActionIcons.php:21
1666
+ #: classes/Settings/Column/StatusIcon.php:23
1667
  #: classes/Settings/Column/Toggle.php:13
1668
  msgid "Yes"
1669
  msgstr "Tak"
languages/codepress-admin-columns-ro_RO.mo CHANGED
Binary file
languages/codepress-admin-columns-ro_RO.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-07-06 14:09:35+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: ro\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr "Câmp"
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr "și"
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr "sau"
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr "Legătură scurtă"
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ", "
276
 
@@ -365,43 +410,43 @@ msgstr "Filtre învechite"
365
  msgid "Help"
366
  msgstr "Ajutor"
367
 
368
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
369
  msgid "Close"
370
  msgstr "Închide"
371
 
372
- #: classes/Admin/Page/Columns.php:757
373
  msgid "Clear all columns "
374
  msgstr ""
375
 
376
- #: classes/Admin/Page/Columns.php:664
377
  msgid "I'm using Admin Columns for WordPress!"
378
  msgstr ""
379
 
380
- #: classes/Admin/Page/Columns.php:606
381
  msgid "Your First Name"
382
  msgstr ""
383
 
384
- #: classes/Admin/Page/Columns.php:605
385
  msgid "Your Email"
386
  msgstr ""
387
 
388
- #: classes/Admin/Page/Columns.php:598
389
  msgid "Submit your email and we'll send you a discount for %s off."
390
  msgstr ""
391
 
392
- #: classes/Admin/Page/Columns.php:594
393
  msgid "Get %s Off!"
394
  msgstr ""
395
 
396
- #: classes/Admin/Page/Columns.php:561
397
  msgid "Extra Columns for:"
398
  msgstr "Coloane suplimentare pentru:"
399
 
400
- #: classes/Admin/Page/Columns.php:547
401
  msgid "Edit your column content directly"
402
  msgstr ""
403
 
404
- #: classes/Admin/Page/Columns.php:535
405
  msgid "Pro"
406
  msgstr "Pro"
407
 
@@ -472,31 +517,31 @@ msgstr ""
472
  msgid "Imported"
473
  msgstr ""
474
 
475
- #: classes/Admin/Page/Columns.php:577
476
  msgid "Learn more about Pro"
477
  msgstr "Află mai mult despre Pro"
478
 
479
- #: classes/Admin/Page/Columns.php:549
480
  msgid "Import &amp; Export settings"
481
  msgstr "Setări import și export"
482
 
483
- #: classes/Admin/Page/Columns.php:548
484
  msgid "Create multiple columns sets"
485
  msgstr ""
486
 
487
- #: classes/Admin/Page/Columns.php:546
488
  msgid "Add filterable columns"
489
  msgstr ""
490
 
491
- #: classes/Admin/Page/Columns.php:545
492
  msgid "Add sortable columns"
493
  msgstr ""
494
 
495
- #: classes/Admin/Page/Columns.php:540
496
  msgid "Take Admin Columns to the next level:"
497
  msgstr ""
498
 
499
- #: classes/Admin/Page/Columns.php:535
500
  msgid "Upgrade to"
501
  msgstr "Actualizează la"
502
 
@@ -504,11 +549,7 @@ msgstr "Actualizează la"
504
  msgid "Get %s Off"
505
  msgstr ""
506
 
507
- #: classes/Column/Post/Excerpt.php:21
508
- msgid "Excerpt from content"
509
- msgstr "Rezumat din conținut"
510
-
511
- #: classes/Admin/Page/Columns.php:447
512
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
513
  msgstr ""
514
 
@@ -516,7 +557,7 @@ msgstr ""
516
  msgid "Please visit the %s screen once to load all available columns"
517
  msgstr ""
518
 
519
- #: classes/Admin/Page/Columns.php:516
520
  msgid "Restore columns"
521
  msgstr "Restaurează coloane"
522
 
@@ -524,7 +565,7 @@ msgstr "Restaurează coloane"
524
  msgid "Settings for %s restored successfully."
525
  msgstr "Setările pentru %s s-au restaurat cu succes."
526
 
527
- #: classes/Admin/Page/Columns.php:354
528
  msgid "View %s screen"
529
  msgstr "Vezi ecranul %s"
530
 
@@ -576,9 +617,9 @@ msgstr ""
576
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
577
  msgstr ""
578
 
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Plugin URI of the plugin/theme
581
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
582
  #. Author URI of the plugin/theme
583
  msgid "https://www.admincolumns.com"
584
  msgstr "https://www.admincolumns.com"
@@ -623,15 +664,15 @@ msgstr "Actualizare"
623
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
624
  msgstr ""
625
 
626
- #: classes/Admin/Page/Columns.php:353
627
  msgid "Settings for %s updated successfully."
628
  msgstr ""
629
 
630
- #: classes/Admin/Page/Columns.php:340
631
  msgid "You are trying to store the same settings for %s."
632
  msgstr ""
633
 
634
- #: classes/ListScreen.php:642
635
  msgid "No columns settings available."
636
  msgstr ""
637
 
@@ -685,75 +726,75 @@ msgstr "Dezactivare"
685
  msgid "Active"
686
  msgstr "Activ"
687
 
688
- #: classes/Admin/Page/Columns.php:763
689
  msgid "Add Column"
690
  msgstr "Adaugă coloană"
691
 
692
- #: classes/Admin/Page/Columns.php:743
693
  msgid "Drag and drop to reorder"
694
  msgstr "Trage și plasează pentru a reordona"
695
 
696
- #: classes/Admin/Page/Columns.php:692
697
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Columns.php:688
701
  msgid "Check the <strong>Help</strong> section in the top-right screen."
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Columns.php:683
705
  msgid "Support"
706
  msgstr "Suport"
707
 
708
- #: classes/Admin/Page/Columns.php:671
709
  msgid "Buy Pro"
710
  msgstr "Cumpără Pro"
711
 
712
- #: classes/Admin/Page/Columns.php:665
713
  msgid "Tweet"
714
  msgstr ""
715
 
716
- #: classes/Admin/Page/Columns.php:659
717
  msgid "Rate"
718
  msgstr "Evaluează"
719
 
720
- #: classes/Admin/Page/Columns.php:654
721
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:651
725
  msgid "Woohoo! We're glad to hear that!"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:641
729
  msgid "Forums"
730
  msgstr "Forumuri"
731
 
732
- #: classes/Admin/Page/Columns.php:636
733
  msgid "Docs"
734
  msgstr "Documente"
735
 
736
- #: classes/Admin/Page/Columns.php:631
737
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
738
  msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:628
741
  msgid "What's wrong? Need help? Let us know!"
742
  msgstr ""
743
 
744
- #: classes/Admin/Page/Columns.php:618
745
  msgid "Are you happy with Admin Columns?"
746
  msgstr ""
747
 
748
- #: classes/Admin/Page/Columns.php:515
749
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
750
  msgstr ""
751
 
752
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
753
  msgid "Update"
754
- msgstr "Actualizare"
755
 
756
- #: classes/Admin/Page/Columns.php:493
757
  msgid "Store settings"
758
  msgstr ""
759
 
@@ -785,7 +826,7 @@ msgstr ""
785
  msgid "Restore Settings"
786
  msgstr "Restaurează setările"
787
 
788
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
789
  #: classes/Admin/Page/Settings.php:179
790
  msgid "Save"
791
  msgstr "Salvare"
@@ -982,7 +1023,7 @@ msgstr ""
982
  msgid "Admin Columns Pro"
983
  msgstr ""
984
 
985
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
986
  #. Plugin Name of the plugin/theme
987
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
988
  #: classes/Notice/Review.php:64
@@ -1037,7 +1078,7 @@ msgstr "Nume"
1037
  msgid "Choose a column type."
1038
  msgstr "Alege un tip de coloană."
1039
 
1040
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1041
  msgid "Clone"
1042
  msgstr "Clonare"
1043
 
@@ -1059,7 +1100,7 @@ msgstr "Autentificare utilizator"
1059
 
1060
  #: classes/Settings/Column/User.php:112
1061
  msgid "Last Name"
1062
- msgstr "Nume de familie"
1063
 
1064
  #: classes/Column/User/FirstName.php:14 classes/Settings/Column/User.php:111
1065
  msgid "First Name"
@@ -1144,7 +1185,7 @@ msgstr "Nume"
1144
  msgid "Comment Count"
1145
  msgstr "Număr comentarii"
1146
 
1147
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1148
  msgid "Remove"
1149
  msgstr "Înlătură"
1150
 
@@ -1176,7 +1217,7 @@ msgstr ""
1176
  msgid "Sticky"
1177
  msgstr "Reprezentativ"
1178
 
1179
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1180
  msgid "Status"
1181
  msgstr "Stare"
1182
 
@@ -1424,7 +1465,7 @@ msgstr "Atașat la articol"
1424
  msgid "Alt"
1425
  msgstr ""
1426
 
1427
- #: classes/Admin/Page/Columns.php:479
1428
  msgid "View"
1429
  msgstr "Vezi"
1430
 
@@ -1603,7 +1644,7 @@ msgstr "Aprobat"
1603
  msgid "Agent"
1604
  msgstr "Agent"
1605
 
1606
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1607
  msgid "Edit"
1608
  msgstr "Editare"
1609
 
@@ -1613,14 +1654,16 @@ msgstr "Editare"
1613
  msgid "ID"
1614
  msgstr "ID"
1615
 
1616
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1617
  #: classes/Settings/Column/ActionIcons.php:22
 
1618
  #: classes/Settings/Column/Toggle.php:14
1619
  msgid "No"
1620
  msgstr "Nu"
1621
 
1622
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1623
  #: classes/Settings/Column/ActionIcons.php:21
 
1624
  #: classes/Settings/Column/Toggle.php:13
1625
  msgid "Yes"
1626
  msgstr "Da"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-09-16 19:51:36+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: ro\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr "Câmp"
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr "și"
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr "sau"
296
 
315
  msgstr "Legătură scurtă"
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ", "
321
 
410
  msgid "Help"
411
  msgstr "Ajutor"
412
 
413
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
414
  msgid "Close"
415
  msgstr "Închide"
416
 
417
+ #: classes/Admin/Page/Columns.php:758
418
  msgid "Clear all columns "
419
  msgstr ""
420
 
421
+ #: classes/Admin/Page/Columns.php:665
422
  msgid "I'm using Admin Columns for WordPress!"
423
  msgstr ""
424
 
425
+ #: classes/Admin/Page/Columns.php:607
426
  msgid "Your First Name"
427
  msgstr ""
428
 
429
+ #: classes/Admin/Page/Columns.php:606
430
  msgid "Your Email"
431
  msgstr ""
432
 
433
+ #: classes/Admin/Page/Columns.php:599
434
  msgid "Submit your email and we'll send you a discount for %s off."
435
  msgstr ""
436
 
437
+ #: classes/Admin/Page/Columns.php:595
438
  msgid "Get %s Off!"
439
  msgstr ""
440
 
441
+ #: classes/Admin/Page/Columns.php:562
442
  msgid "Extra Columns for:"
443
  msgstr "Coloane suplimentare pentru:"
444
 
445
+ #: classes/Admin/Page/Columns.php:548
446
  msgid "Edit your column content directly"
447
  msgstr ""
448
 
449
+ #: classes/Admin/Page/Columns.php:536
450
  msgid "Pro"
451
  msgstr "Pro"
452
 
517
  msgid "Imported"
518
  msgstr ""
519
 
520
+ #: classes/Admin/Page/Columns.php:578
521
  msgid "Learn more about Pro"
522
  msgstr "Află mai mult despre Pro"
523
 
524
+ #: classes/Admin/Page/Columns.php:550
525
  msgid "Import &amp; Export settings"
526
  msgstr "Setări import și export"
527
 
528
+ #: classes/Admin/Page/Columns.php:549
529
  msgid "Create multiple columns sets"
530
  msgstr ""
531
 
532
+ #: classes/Admin/Page/Columns.php:547
533
  msgid "Add filterable columns"
534
  msgstr ""
535
 
536
+ #: classes/Admin/Page/Columns.php:546
537
  msgid "Add sortable columns"
538
  msgstr ""
539
 
540
+ #: classes/Admin/Page/Columns.php:541
541
  msgid "Take Admin Columns to the next level:"
542
  msgstr ""
543
 
544
+ #: classes/Admin/Page/Columns.php:536
545
  msgid "Upgrade to"
546
  msgstr "Actualizează la"
547
 
549
  msgid "Get %s Off"
550
  msgstr ""
551
 
552
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
553
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
554
  msgstr ""
555
 
557
  msgid "Please visit the %s screen once to load all available columns"
558
  msgstr ""
559
 
560
+ #: classes/Admin/Page/Columns.php:517
561
  msgid "Restore columns"
562
  msgstr "Restaurează coloane"
563
 
565
  msgid "Settings for %s restored successfully."
566
  msgstr "Setările pentru %s s-au restaurat cu succes."
567
 
568
+ #: classes/Admin/Page/Columns.php:335
569
  msgid "View %s screen"
570
  msgstr "Vezi ecranul %s"
571
 
617
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
618
  msgstr ""
619
 
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Plugin URI of the plugin/theme
622
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
623
  #. Author URI of the plugin/theme
624
  msgid "https://www.admincolumns.com"
625
  msgstr "https://www.admincolumns.com"
664
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:355
668
  msgid "Settings for %s updated successfully."
669
  msgstr ""
670
 
671
+ #: classes/Admin/Page/Columns.php:342
672
  msgid "You are trying to store the same settings for %s."
673
  msgstr ""
674
 
675
+ #: classes/ListScreen.php:652
676
  msgid "No columns settings available."
677
  msgstr ""
678
 
726
  msgid "Active"
727
  msgstr "Activ"
728
 
729
+ #: classes/Admin/Page/Columns.php:764
730
  msgid "Add Column"
731
  msgstr "Adaugă coloană"
732
 
733
+ #: classes/Admin/Page/Columns.php:744
734
  msgid "Drag and drop to reorder"
735
  msgstr "Trage și plasează pentru a reordona"
736
 
737
+ #: classes/Admin/Page/Columns.php:693
738
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
739
  msgstr ""
740
 
741
+ #: classes/Admin/Page/Columns.php:689
742
  msgid "Check the <strong>Help</strong> section in the top-right screen."
743
  msgstr ""
744
 
745
+ #: classes/Admin/Page/Columns.php:684
746
  msgid "Support"
747
  msgstr "Suport"
748
 
749
+ #: classes/Admin/Page/Columns.php:672
750
  msgid "Buy Pro"
751
  msgstr "Cumpără Pro"
752
 
753
+ #: classes/Admin/Page/Columns.php:666
754
  msgid "Tweet"
755
  msgstr ""
756
 
757
+ #: classes/Admin/Page/Columns.php:660
758
  msgid "Rate"
759
  msgstr "Evaluează"
760
 
761
+ #: classes/Admin/Page/Columns.php:655
762
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
763
  msgstr ""
764
 
765
+ #: classes/Admin/Page/Columns.php:652
766
  msgid "Woohoo! We're glad to hear that!"
767
  msgstr ""
768
 
769
+ #: classes/Admin/Page/Columns.php:642
770
  msgid "Forums"
771
  msgstr "Forumuri"
772
 
773
+ #: classes/Admin/Page/Columns.php:637
774
  msgid "Docs"
775
  msgstr "Documente"
776
 
777
+ #: classes/Admin/Page/Columns.php:632
778
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
779
  msgstr ""
780
 
781
+ #: classes/Admin/Page/Columns.php:629
782
  msgid "What's wrong? Need help? Let us know!"
783
  msgstr ""
784
 
785
+ #: classes/Admin/Page/Columns.php:619
786
  msgid "Are you happy with Admin Columns?"
787
  msgstr ""
788
 
789
+ #: classes/Admin/Page/Columns.php:516
790
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
791
  msgstr ""
792
 
793
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
794
  msgid "Update"
795
+ msgstr "Actualizează"
796
 
797
+ #: classes/Admin/Page/Columns.php:494
798
  msgid "Store settings"
799
  msgstr ""
800
 
826
  msgid "Restore Settings"
827
  msgstr "Restaurează setările"
828
 
829
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
830
  #: classes/Admin/Page/Settings.php:179
831
  msgid "Save"
832
  msgstr "Salvare"
1023
  msgid "Admin Columns Pro"
1024
  msgstr ""
1025
 
1026
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1027
  #. Plugin Name of the plugin/theme
1028
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1029
  #: classes/Notice/Review.php:64
1078
  msgid "Choose a column type."
1079
  msgstr "Alege un tip de coloană."
1080
 
1081
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1082
  msgid "Clone"
1083
  msgstr "Clonare"
1084
 
1100
 
1101
  #: classes/Settings/Column/User.php:112
1102
  msgid "Last Name"
1103
+ msgstr "Nume"
1104
 
1105
  #: classes/Column/User/FirstName.php:14 classes/Settings/Column/User.php:111
1106
  msgid "First Name"
1185
  msgid "Comment Count"
1186
  msgstr "Număr comentarii"
1187
 
1188
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1189
  msgid "Remove"
1190
  msgstr "Înlătură"
1191
 
1217
  msgid "Sticky"
1218
  msgstr "Reprezentativ"
1219
 
1220
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1221
  msgid "Status"
1222
  msgstr "Stare"
1223
 
1465
  msgid "Alt"
1466
  msgstr ""
1467
 
1468
+ #: classes/Admin/Page/Columns.php:480
1469
  msgid "View"
1470
  msgstr "Vezi"
1471
 
1644
  msgid "Agent"
1645
  msgstr "Agent"
1646
 
1647
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1648
  msgid "Edit"
1649
  msgstr "Editare"
1650
 
1654
  msgid "ID"
1655
  msgstr "ID"
1656
 
1657
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1658
  #: classes/Settings/Column/ActionIcons.php:22
1659
+ #: classes/Settings/Column/StatusIcon.php:24
1660
  #: classes/Settings/Column/Toggle.php:14
1661
  msgid "No"
1662
  msgstr "Nu"
1663
 
1664
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1665
  #: classes/Settings/Column/ActionIcons.php:21
1666
+ #: classes/Settings/Column/StatusIcon.php:23
1667
  #: classes/Settings/Column/Toggle.php:13
1668
  msgid "Yes"
1669
  msgstr "Da"
languages/codepress-admin-columns-ru_RU.mo CHANGED
Binary file
languages/codepress-admin-columns-ru_RU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-01-04 10:33:06+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,17 +11,61 @@ msgstr ""
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
- msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
- msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
- msgstr ""
25
 
26
  #: classes/Addon/BuddyPress.php:17
27
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
@@ -29,51 +73,52 @@ msgstr ""
29
 
30
  #: classes/Addon/BuddyPress.php:13
31
  msgid "BuddyPress"
32
- msgstr ""
33
 
34
  #: templates/settings/section.php:23
35
  msgid "View more"
36
- msgstr ""
37
 
38
  #: classes/TableScreen.php:57
39
  msgid "Invalid method."
40
- msgstr ""
41
 
42
  #: classes/TableScreen.php:53
43
  msgid "Invalid column."
44
- msgstr ""
45
 
46
  #: classes/TableScreen.php:45
47
  msgid "Invalid list screen."
48
- msgstr ""
49
 
50
  #: classes/TableScreen.php:39
51
  msgid "Invalid item ID."
52
- msgstr ""
53
 
54
  #: classes/Settings/Column/WordsPerMinute.php:32
55
  msgid "By default: %s"
56
- msgstr ""
57
 
58
  #: classes/Settings/Column/WordLimit.php:35
59
  msgid "Maximum number of words"
60
- msgstr ""
61
 
62
  #: classes/Settings/Column/WordLimit.php:34
63
  msgid "Word Limit"
64
- msgstr ""
65
 
66
  #: classes/Settings/Column/Width.php:40
67
  msgid "Auto"
68
- msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
- msgstr ""
73
 
74
  #: classes/Settings/Column/Taxonomy.php:23
75
  msgid "No taxonomies available."
76
- msgstr ""
77
 
78
  #: classes/Settings/Column/Separator.php:32
79
  msgid "Select a repeater sub field."
@@ -81,198 +126,198 @@ msgstr ""
81
 
82
  #: classes/Settings/Column/Separator.php:31
83
  msgid "Separator"
84
- msgstr ""
85
 
86
  #: classes/Settings/Column/Separator.php:27
87
  msgid "Whitespace"
88
- msgstr ""
89
 
90
  #: classes/Settings/Column/Separator.php:25
91
  msgid "New line"
92
- msgstr ""
93
 
94
  #: classes/Settings/Column/Separator.php:24
95
  msgid "Comma Separated"
96
- msgstr ""
97
 
98
  #: classes/Settings/Column/Password.php:23
99
  msgid "Plain text"
100
- msgstr ""
101
 
102
  #: classes/Settings/Column/Password.php:22
103
  msgid "Password"
104
- msgstr ""
105
 
106
  #: classes/Settings/Column/Meta.php:27
107
  msgid "No fields available."
108
- msgstr ""
109
 
110
  #: classes/Settings/Column/Image.php:112
111
  msgid "Custom Size"
112
- msgstr ""
113
 
114
  #: classes/Settings/Column/Image.php:108
115
  msgid "Full Size"
116
- msgstr ""
117
 
118
  #: classes/Settings/Column/Image.php:54
119
  msgid "Image Size"
120
- msgstr ""
121
 
122
  #: classes/Settings/Column/Image.php:47
123
  msgid "Height in pixels"
124
- msgstr ""
125
 
126
  #: classes/Settings/Column/Image.php:41
127
  msgid "Width in pixels"
128
- msgstr ""
129
 
130
  #: classes/Settings/Column/Date.php:181
131
  msgid "in %s"
132
- msgstr ""
133
 
134
  #: classes/Settings/Column/Date.php:178
135
  msgid "%s ago"
136
- msgstr ""
137
 
138
  #: classes/Settings/Column/Date.php:99
139
  msgid "date and time formatting"
140
- msgstr ""
141
 
142
  #: classes/Settings/Column/Date.php:99
143
  msgid "Learn more about %s."
144
- msgstr ""
145
 
146
  #: classes/Settings/Column/Date.php:98
147
  msgid "Custom:"
148
- msgstr ""
149
 
150
  #: classes/Settings/Column/Date.php:81
151
  msgid "The %s can be changed in %s."
152
- msgstr ""
153
 
154
  #: classes/Settings/Column/Date.php:76
155
  msgid "WordPress Date Format"
156
- msgstr ""
157
 
158
  #: classes/Settings/Column/Date.php:70
159
  msgid "or"
160
- msgstr ""
161
 
162
  #: classes/Settings/Column/Date.php:70
163
  msgid "For example: %s."
164
- msgstr ""
165
 
166
  #: classes/Settings/Column/Date.php:70
167
  msgid "The difference is returned in a human readable format."
168
- msgstr ""
169
 
170
  #: classes/Settings/Column/Date.php:69
171
  msgid "Time Difference"
172
- msgstr ""
173
 
174
  #: classes/Settings/Column/CustomFieldType.php:152
175
  msgid "Multiple"
176
- msgstr ""
177
 
178
  #: classes/Settings/Column/CustomFieldType.php:151
179
  msgid "Choice"
180
- msgstr ""
181
 
182
  #: classes/Settings/Column/CustomFieldType.php:150
183
  msgid "Relational"
184
- msgstr ""
185
 
186
  #: classes/Settings/Column/CustomFieldType.php:149
187
  msgid "Basic"
188
- msgstr ""
189
 
190
  #: classes/Settings/Column/CustomFieldType.php:117
191
  msgid "Number of Fields"
192
- msgstr ""
193
 
194
  #: classes/Settings/Column/CustomFieldType.php:109
195
  msgid "True / False"
196
- msgstr ""
197
 
198
  #: classes/Settings/Column/CustomFieldType.php:108
199
  msgid "Has Content"
200
- msgstr ""
201
 
202
  #: classes/Settings/Column/CustomFieldType.php:105
203
  msgid "Number"
204
- msgstr ""
205
 
206
  #: classes/Settings/Column/CustomFieldType.php:102
207
  msgid "Text"
208
- msgstr ""
209
 
210
  #: classes/Settings/Column/CustomFieldType.php:70
211
  msgid "Multiple ids should be separated by a comma."
212
- msgstr ""
213
 
214
  #: classes/Settings/Column/CustomFieldType.php:69
215
  msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
- msgstr ""
222
 
223
  #: classes/Settings/Column/CharacterLimit.php:28
224
  #: classes/Settings/Column/WordLimit.php:35
225
  msgid "Leave empty for no limit"
226
- msgstr ""
227
 
228
  #: classes/Settings/Column/CharacterLimit.php:28
229
  msgid "Maximum number of characters"
230
- msgstr ""
231
 
232
  #: classes/Settings/Column/CharacterLimit.php:27
233
  msgid "Character Limit"
234
- msgstr ""
235
 
236
  #: classes/Settings/Column/BeforeAfter.php:56
237
  msgid "Display Options"
238
- msgstr ""
239
 
240
  #: classes/Settings/Column/BeforeAfter.php:50
241
  msgid "This text will appear after the column value."
242
- msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
- msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
- msgstr ""
251
 
252
  #: classes/Helper/Html.php:344
253
  msgid "Hide"
254
- msgstr ""
255
 
256
  #: classes/Helper/Html.php:340
257
  msgid "Show %s more"
258
- msgstr ""
259
 
260
  #: classes/Column/User/Url.php:14
261
  msgid "Website"
262
- msgstr ""
263
 
264
  #: classes/Column/User/ShowToolbar.php:14
265
  msgid "Show Toolbar"
266
- msgstr ""
267
 
268
  #: classes/Column/Post/Shortlink.php:14
269
  msgid "Shortlink"
270
- msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
- msgstr ""
276
 
277
  #: classes/Column/Post/Formats.php:24
278
  msgid "Standard"
@@ -280,51 +325,51 @@ msgstr ""
280
 
281
  #: classes/Column/Post/CommentStatus.php:17
282
  msgid "Comment Status"
283
- msgstr ""
284
 
285
  #: classes/Column/Post/AttachmentCount.php:16
286
  msgid "Attachment Count"
287
- msgstr ""
288
 
289
  #: classes/Column/Media/FullPath.php:14
290
  msgid "Full Path"
291
- msgstr ""
292
 
293
  #: classes/Admin/Promo.php:137
294
  msgid "Discount is valid until %s"
295
- msgstr ""
296
 
297
  #: classes/Admin/Page/Welcome.php:12
298
  msgid "Welcome"
299
- msgstr ""
300
 
301
  #: classes/Admin/Page/Settings.php:171
302
  msgid "Show %s button on table screen."
303
- msgstr ""
304
 
305
  #: classes/Admin/Page/Settings.php:152
306
  msgid "Default is %s."
307
- msgstr ""
308
 
309
  #: classes/Admin/Page/Settings.php:149
310
  msgid "on"
311
- msgstr ""
312
 
313
  #: classes/Admin/Page/Settings.php:146
314
  msgid "off"
315
- msgstr ""
316
 
317
  #: classes/Admin/Page/Settings.php:133
318
  msgid "Notice"
319
- msgstr ""
320
 
321
  #: classes/Admin/Page/Settings.php:127
322
  msgid "Instructions"
323
- msgstr ""
324
 
325
  #: classes/Admin/Page/Help.php:315
326
  msgid "our documentation"
327
- msgstr ""
328
 
329
  #: classes/Admin/Page/Help.php:315
330
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
@@ -343,7 +388,7 @@ msgstr[2] ""
343
 
344
  #: classes/Admin/Page/Help.php:248
345
  msgid "View documentation"
346
- msgstr ""
347
 
348
  #: classes/Admin/Page/Help.php:198
349
  msgid "The action %s used on this website is deprecated since %s."
@@ -355,67 +400,67 @@ msgstr ""
355
 
356
  #: classes/Admin/Page/Help.php:172
357
  msgid "Deprecated Actions"
358
- msgstr ""
359
 
360
  #: classes/Admin/Page/Help.php:171
361
  msgid "Deprecated Filters"
362
- msgstr ""
363
 
364
  #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:311
365
  msgid "Help"
366
- msgstr ""
367
 
368
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
369
  msgid "Close"
370
- msgstr ""
371
 
372
- #: classes/Admin/Page/Columns.php:757
373
  msgid "Clear all columns "
374
- msgstr ""
375
 
376
- #: classes/Admin/Page/Columns.php:664
377
  msgid "I'm using Admin Columns for WordPress!"
378
- msgstr ""
379
 
380
- #: classes/Admin/Page/Columns.php:606
381
  msgid "Your First Name"
382
- msgstr ""
383
 
384
- #: classes/Admin/Page/Columns.php:605
385
  msgid "Your Email"
386
- msgstr ""
387
 
388
- #: classes/Admin/Page/Columns.php:598
389
  msgid "Submit your email and we'll send you a discount for %s off."
390
- msgstr ""
391
 
392
- #: classes/Admin/Page/Columns.php:594
393
  msgid "Get %s Off!"
394
- msgstr ""
395
 
396
- #: classes/Admin/Page/Columns.php:561
397
  msgid "Extra Columns for:"
398
- msgstr ""
399
 
400
- #: classes/Admin/Page/Columns.php:547
401
  msgid "Edit your column content directly"
402
- msgstr ""
403
 
404
- #: classes/Admin/Page/Columns.php:535
405
  msgid "Pro"
406
- msgstr ""
407
 
408
  #: classes/Admin/Page/Columns.php:328
409
  msgid "You need at least one column"
410
- msgstr ""
411
 
412
  #: classes/Admin/Page/Addons.php:293
413
  msgid "Available"
414
- msgstr ""
415
 
416
  #: classes/Admin/Page/Addons.php:292
417
  msgid "Recommended"
418
- msgstr ""
419
 
420
  #: classes/Admin/Page/Addons.php:120
421
  msgid "%s could not be activated."
@@ -427,11 +472,11 @@ msgstr ""
427
 
428
  #: classes/Admin/Page/Addons.php:105
429
  msgid "%s plugin successfully deactivated."
430
- msgstr ""
431
 
432
  #: classes/Admin/Page/Addons.php:104
433
  msgid "%s plugin successfully activated."
434
- msgstr ""
435
 
436
  #: classes/Admin/Page/Addons.php:71
437
  msgid "%s add-on requires %s."
@@ -442,15 +487,15 @@ msgstr[2] ""
442
 
443
  #: classes/Admin/Page/Addons.php:58
444
  msgid "here"
445
- msgstr ""
446
 
447
  #: classes/Admin/Page/Addons.php:58
448
  msgid "Click %s to activate the plugin."
449
- msgstr ""
450
 
451
  #: classes/Admin/Page/Addons.php:55
452
  msgid "%s plugin is installed, but not active."
453
- msgstr ""
454
 
455
  #: classes/Admin/Page/Addons.php:53
456
  msgid "%s plugin needs to be installed for the add-on to work."
@@ -462,95 +507,91 @@ msgstr ""
462
 
463
  #: classes/Addon/Types.php:13
464
  msgid "Toolset Types"
465
- msgstr ""
466
 
467
  #: classes/Addon/Pods.php:13
468
  msgid "Pods"
469
- msgstr ""
470
 
471
  #: classes/API.php:139
472
  msgid "Imported"
473
  msgstr ""
474
 
475
- #: classes/Admin/Page/Columns.php:577
476
  msgid "Learn more about Pro"
477
- msgstr ""
478
 
479
- #: classes/Admin/Page/Columns.php:549
480
  msgid "Import &amp; Export settings"
481
- msgstr ""
482
 
483
- #: classes/Admin/Page/Columns.php:548
484
  msgid "Create multiple columns sets"
485
- msgstr ""
486
 
487
- #: classes/Admin/Page/Columns.php:546
488
  msgid "Add filterable columns"
489
- msgstr ""
490
 
491
- #: classes/Admin/Page/Columns.php:545
492
  msgid "Add sortable columns"
493
- msgstr ""
494
 
495
- #: classes/Admin/Page/Columns.php:540
496
  msgid "Take Admin Columns to the next level:"
497
- msgstr ""
498
 
499
- #: classes/Admin/Page/Columns.php:535
500
  msgid "Upgrade to"
501
- msgstr ""
502
 
503
  #: classes/Admin/Promo.php:134
504
  msgid "Get %s Off"
505
  msgstr ""
506
 
507
- #: classes/Column/Post/Excerpt.php:21
508
- msgid "Excerpt from content"
509
- msgstr ""
510
-
511
- #: classes/Admin/Page/Columns.php:447
512
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
513
  msgstr ""
514
 
515
  #: classes/Admin/Page/Columns.php:248
516
  msgid "Please visit the %s screen once to load all available columns"
517
- msgstr ""
518
 
519
- #: classes/Admin/Page/Columns.php:516
520
  msgid "Restore columns"
521
- msgstr ""
522
 
523
  #: classes/Admin/Page/Columns.php:174
524
  msgid "Settings for %s restored successfully."
525
- msgstr ""
526
 
527
- #: classes/Admin/Page/Columns.php:354
528
  msgid "View %s screen"
529
- msgstr ""
530
 
531
  #: classes/Admin/Page/Columns.php:74
532
  msgid "Invalid response."
533
- msgstr ""
534
 
535
  #: classes/Admin/Help/CustomField.php:51
536
  msgid "Value: should contain Attachment IDs ( seperated by a ',' comma )."
537
- msgstr ""
538
 
539
  #: classes/Settings/Column/LinkLabel.php:23
540
  msgid "Leave blank to display the url"
541
- msgstr ""
542
 
543
  #: classes/Settings/Column/LinkLabel.php:22
544
  msgid "Link Label"
545
- msgstr ""
546
 
547
  #: classes/Admin/Page/Addons.php:220
548
  msgid "You need Admin Columns Pro."
549
- msgstr ""
550
 
551
  #: classes/Admin/Page/Addons.php:214
552
  msgid "Addon does not exist."
553
- msgstr ""
554
 
555
  #: classes/Admin/Page/Addons.php:183
556
  msgid "the addons page"
@@ -558,15 +599,15 @@ msgstr ""
558
 
559
  #: classes/Admin/Page/Addons.php:183
560
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
561
- msgstr ""
562
 
563
  #: classes/Settings/Column/Meta.php:114 codepress-admin-columns.php:340
564
  msgid "Custom Fields"
565
- msgstr "Настраиваемое поле"
566
 
567
  #: classes/Settings/Column/Meta.php:110
568
  msgid "Hidden Custom Fields"
569
- msgstr ""
570
 
571
  #. Author of the plugin/theme
572
  msgid "AdminColumns.com"
@@ -574,18 +615,18 @@ msgstr "AdminColumns.com"
574
 
575
  #. Description of the plugin/theme
576
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
577
- msgstr ""
578
 
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Plugin URI of the plugin/theme
581
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
582
  #. Author URI of the plugin/theme
583
  msgid "https://www.admincolumns.com"
584
  msgstr "https://www.admincolumns.com"
585
 
586
  #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:192
587
  msgid "Edit columns"
588
- msgstr "Редактировать столбцы"
589
 
590
  #: classes/Admin/Page/Upgrade.php:310
591
  msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
@@ -597,15 +638,15 @@ msgstr "Ошибка"
597
 
598
  #: classes/Admin/Page/Upgrade.php:308
599
  msgid "Return to settings."
600
- msgstr "Возврат к настройкам."
601
 
602
  #: classes/Admin/Page/Upgrade.php:308
603
  msgid "Upgrade Complete!"
604
- msgstr "Обновление завершено!"
605
 
606
  #: classes/Admin/Page/Upgrade.php:292
607
  msgid "Return to welcome screen."
608
- msgstr "Вернуться на начальный экран."
609
 
610
  #: classes/Admin/Page/Upgrade.php:291
611
  msgid "No Upgrade Required"
@@ -613,7 +654,7 @@ msgstr "Обновление не требуется"
613
 
614
  #: classes/Admin/Page/Upgrade.php:255
615
  msgid "Migrating Column Settings"
616
- msgstr "Перенос настроек столбцов"
617
 
618
  #: classes/Admin/Page/Upgrade.php:26 classes/Admin/Page/Upgrade.php:319
619
  msgid "Upgrade"
@@ -623,31 +664,31 @@ msgstr "Обновить"
623
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
624
  msgstr ""
625
 
626
- #: classes/Admin/Page/Columns.php:353
627
  msgid "Settings for %s updated successfully."
628
- msgstr ""
629
 
630
- #: classes/Admin/Page/Columns.php:340
631
  msgid "You are trying to store the same settings for %s."
632
- msgstr "Вы пытаетесь сохранить те же настройки для %s."
633
 
634
- #: classes/ListScreen.php:642
635
  msgid "No columns settings available."
636
- msgstr "Нет доступных настроек столбцов."
637
 
638
  #: classes/ListScreen/User.php:11 codepress-admin-columns.php:498
639
  msgid "Users"
640
- msgstr ""
641
 
642
  #: classes/ListScreen/Media.php:16
643
  #: classes/Settings/Column/CustomFieldType.php:112
644
  #: codepress-admin-columns.php:499
645
  msgid "Media"
646
- msgstr ""
647
 
648
  #: classes/ListScreen/Link.php:12
649
  msgid "Link"
650
- msgstr ""
651
 
652
  #: classes/ListScreen/Link.php:11 codepress-admin-columns.php:501
653
  msgid "Links"
@@ -655,7 +696,7 @@ msgstr "Ссылки"
655
 
656
  #: classes/ListScreen/Comment.php:15
657
  msgid "Comment"
658
- msgstr ""
659
 
660
  #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:500
661
  msgid "Comments"
@@ -667,7 +708,7 @@ msgstr "Получить это дополнение"
667
 
668
  #: classes/Admin/Page/Addons.php:418
669
  msgid "Download & Install"
670
- msgstr "Загрузить и установить"
671
 
672
  #: classes/Admin/Page/Addons.php:412
673
  msgid "Activate"
@@ -675,7 +716,7 @@ msgstr "Активировать"
675
 
676
  #: classes/Admin/Page/Addons.php:291
677
  msgid "Installed"
678
- msgstr "Установлено"
679
 
680
  #: classes/Admin/Page/Addons.php:408
681
  msgid "Deactivate"
@@ -685,77 +726,77 @@ msgstr "Деактивировать"
685
  msgid "Active"
686
  msgstr "Активен"
687
 
688
- #: classes/Admin/Page/Columns.php:763
689
  msgid "Add Column"
690
- msgstr "Добавить столбец"
691
 
692
- #: classes/Admin/Page/Columns.php:743
693
  msgid "Drag and drop to reorder"
694
- msgstr "Перетащите, чтобы изменить порядок"
695
 
696
- #: classes/Admin/Page/Columns.php:692
697
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
698
- msgstr "Для получения полной документации, отчетов об ошибках, особых предложений и других материалов <a href='%s'>посетите сайт Admin Columns</a>"
699
 
700
- #: classes/Admin/Page/Columns.php:688
701
  msgid "Check the <strong>Help</strong> section in the top-right screen."
702
- msgstr "Проверьте раздел <strong>Помощь</strong> в правом верхнем углу."
703
 
704
- #: classes/Admin/Page/Columns.php:683
705
  msgid "Support"
706
- msgstr "Поддержка"
707
 
708
- #: classes/Admin/Page/Columns.php:671
709
  msgid "Buy Pro"
710
- msgstr ""
711
 
712
- #: classes/Admin/Page/Columns.php:665
713
  msgid "Tweet"
714
- msgstr ""
715
 
716
- #: classes/Admin/Page/Columns.php:659
717
  msgid "Rate"
718
  msgstr "Голосовать"
719
 
720
- #: classes/Admin/Page/Columns.php:654
721
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
722
- msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:651
725
  msgid "Woohoo! We're glad to hear that!"
726
- msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:641
729
  msgid "Forums"
730
- msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:636
733
  msgid "Docs"
734
- msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:631
737
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
738
- msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:628
741
  msgid "What's wrong? Need help? Let us know!"
742
- msgstr ""
743
 
744
- #: classes/Admin/Page/Columns.php:618
745
  msgid "Are you happy with Admin Columns?"
746
- msgstr ""
747
 
748
- #: classes/Admin/Page/Columns.php:515
749
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
750
- msgstr ""
751
 
752
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
753
  msgid "Update"
754
  msgstr "Обновить"
755
 
756
- #: classes/Admin/Page/Columns.php:493
757
  msgid "Store settings"
758
- msgstr "Настройки памяти"
759
 
760
  #: classes/Admin/Page/Addons.php:19
761
  msgid "Add-ons"
@@ -767,11 +808,11 @@ msgstr "Настройки"
767
 
768
  #: classes/Settings/Column/Image.php:89
769
  msgid "Others"
770
- msgstr ""
771
 
772
  #: classes/Admin/Page/Settings.php:229
773
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
774
- msgstr ""
775
 
776
  #: classes/Admin/Page/Settings.php:229
777
  msgid "Restore default settings"
@@ -779,40 +820,40 @@ msgstr "Восстановить настройки по умолчанию"
779
 
780
  #: classes/Admin/Page/Settings.php:221
781
  msgid "This will delete all column settings and restore the default settings."
782
- msgstr "Это удалит все настройки столбцов и восстановит настройки по умолчанию."
783
 
784
  #: classes/Admin/Page/Settings.php:220
785
  msgid "Restore Settings"
786
  msgstr "Восстановить настройки"
787
 
788
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
789
  #: classes/Admin/Page/Settings.php:179
790
  msgid "Save"
791
- msgstr ""
792
 
793
  #: classes/Admin/Page/Settings.php:161
794
  msgid "Customize your Admin Columns settings."
795
- msgstr "Настроить параметры Admin Columns."
796
 
797
  #: classes/Admin/Page/Settings.php:160 classes/Settings/Column/Date.php:81
798
  msgid "General Settings"
799
- msgstr "Общие настройки"
800
 
801
  #: classes/Admin/Page/Welcome.php:90
802
  msgid "Start using Admin Columns"
803
- msgstr "начать, используя Admin Columns"
804
 
805
  #: classes/Admin/Page/Upgrade.php:47
806
  msgid "Learn more"
807
- msgstr "Изучить больше"
808
 
809
  #: classes/Admin/Page/Welcome.php:29
810
  msgid "Changelog for"
811
- msgstr "История изменений для"
812
 
813
  #: classes/Admin/Page/Welcome.php:62
814
  msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
815
- msgstr "Admin Columns сейчас более изысканный и приятный, чем когда-либо прежде. Мы надеемся, вам понравится."
816
 
817
  #: classes/Admin/Page/Welcome.php:61
818
  msgid "Thank you for updating to the latest version!"
@@ -824,23 +865,23 @@ msgstr "Добро пожаловать в Admin Columns"
824
 
825
  #: classes/Admin/Help/CustomField.php:35
826
  msgid "Value: Can be either a string or array. This will display a count of the number of times the meta key is used by the item."
827
- msgstr "Значение: Может быть строкой или массивом. Это покажет какое количества раз мета ключ использовался объектом."
828
 
829
  #: classes/Admin/Help/CustomField.php:31
830
  msgid "Value: hex value color, such as #808080."
831
- msgstr "Значение: значение цвета в HEX-формате, например #808080."
832
 
833
  #: classes/Admin/Help/CustomField.php:27
834
  msgid "Value: should be a 1 (one) or 0 (zero)."
835
- msgstr "Значение: должно быть 1 или 0."
836
 
837
  #: classes/Admin/Help/CustomField.php:26
838
  msgid "Checkmark"
839
- msgstr "Галочка"
840
 
841
  #: classes/Admin/Help/CustomField.php:67
842
  msgid "Value: can be one or more User ID's (seperated by ',')."
843
- msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
844
 
845
  #: classes/Admin/Help/CustomField.php:66
846
  msgid "Usernames"
@@ -848,59 +889,59 @@ msgstr "Имена пользователей"
848
 
849
  #: classes/Admin/Help/CustomField.php:63
850
  msgid "Value: can be one or more Post ID's (seperated by ',')."
851
- msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
852
 
853
  #: classes/Admin/Help/CustomField.php:62
854
  msgid "Post Titles"
855
- msgstr "Заголовки постов"
856
 
857
  #: classes/Admin/Help/CustomField.php:39
858
  msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
859
- msgstr "Value: Может быть Unix-штамп времени или формат даты, как описано в <a href='%s'>Кодексе</a>. Вы можете изменить выходной формат даты на странице <a href='%s'>общих настроек</a>."
860
 
861
  #: classes/Admin/Help/CustomField.php:59
862
  msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
863
- msgstr "Значение:. Целые только <br/> Если у вас есть 'сортировочный аддон', то будут использоваться для сортировки, так что вы можете сортировать свои сообщения по числовым значениям пользовательских полей."
864
 
865
  #: classes/Admin/Help/CustomField.php:55
866
  msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
867
- msgstr "Значение: должно быть массивом. Будут сведены любые многомерные масиивы."
868
 
869
  #: classes/Admin/Help/CustomField.php:43
870
  msgid "Value: This will show the first 20 words of the Post content."
871
- msgstr "Значение: Это покажет первые 20 слов содержания поста."
872
 
873
  #: classes/Admin/Help/CustomField.php:47
874
  msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
875
- msgstr "Значение: должно содержать URL изображения или Attachment IDs, (разделенные ',' запятой)."
876
 
877
  #: classes/Admin/Help/CustomField.php:23
878
  msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
879
- msgstr "Значение: Может быть строкой или массивом. Массив будет сведен и значения будут разделяться ',' запятой."
880
 
881
  #: classes/Admin/Help/CustomField.php:18
882
  msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
883
- msgstr "Столбец пользовательского поля использует поля постов и пользователей. Существует 10 типов, которые вы можете установить."
884
 
885
  #: classes/Admin/Help/Basics.php:29
886
  msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
887
- msgstr "Нажав на треугольник вы увидите настройки колонки. С помощью перетаскивания ползунка можно установить ширину столбцов в процентах."
888
 
889
  #: classes/Admin/Help/Basics.php:27
890
  msgid "Change column width"
891
- msgstr "Изменить ширину столбца"
892
 
893
  #: classes/Admin/Help/Basics.php:24
894
  msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
895
- msgstr "Нажав на треугольник, вы увидите настройки колонки. Здесь вы можете изменить метки заголовков колонок."
896
 
897
  #: classes/Admin/Help/Basics.php:22
898
  msgid "Change label"
899
- msgstr "Изменить метку"
900
 
901
  #: classes/Admin/Help/Basics.php:19
902
  msgid "By dragging the columns you can change the order which they will appear in."
903
- msgstr "Перетаскивая столбцы, Вы можете изменить порядок их расположения."
904
 
905
  #: classes/Admin/Help/Basics.php:17
906
  msgid "Change order"
@@ -908,11 +949,11 @@ msgstr "Изменить порядок"
908
 
909
  #: classes/Admin/Help/Basics.php:10
910
  msgid "Basics"
911
- msgstr "Основы"
912
 
913
  #: classes/Admin/Help/Introduction.php:18
914
  msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
915
- msgstr "Этот плагин предназначен для добавления и удаления дополнительных столбцов на экраны администрирования для записей, страниц, библиотеки, комментариев, ссылок и пользователей. Изменяйте метки столбцов и изменяйте их порядок."
916
 
917
  #: classes/Admin/Help/Introduction.php:10
918
  msgid "Overview"
@@ -924,65 +965,65 @@ msgstr "Настройки по умолчанию успешно восстан
924
 
925
  #: classes/Admin/Page/Columns.php:73 classes/Admin/Page/Columns.php:275
926
  msgid "%s column is already present and can not be duplicated."
927
- msgstr "%s колонка уже существует и не может быть продублирована."
928
 
929
  #: classes/Admin.php:130
930
  msgid "Admin Columns Settings"
931
- msgstr "Настройки Admin Columns"
932
 
933
  #: classes/Admin/Page/Addons.php:111
934
  msgid "%s successfully deactivated."
935
- msgstr ""
936
 
937
  #: classes/Notice/Review.php:105
938
  msgid "find answers to some frequently asked questions"
939
- msgstr ""
940
 
941
  #: classes/Notice/Review.php:104
942
  msgid "Admin Columns forums on WordPress.org"
943
- msgstr ""
944
 
945
  #: classes/Notice/Review.php:103
946
  msgid "You can also find help on the %s, and %s."
947
- msgstr ""
948
 
949
  #: classes/Notice/Review.php:99
950
  msgid "our forums"
951
- msgstr ""
952
 
953
  #: classes/Notice/Review.php:98
954
  msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
955
- msgstr ""
956
 
957
  #: classes/Notice/Review.php:94
958
  msgid "documentation page"
959
- msgstr ""
960
 
961
  #: classes/Notice/Review.php:92
962
  msgid "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s."
963
- msgstr ""
964
 
965
  #: classes/Notice/Review.php:85
966
  msgid "Permanently hide notice"
967
- msgstr ""
968
 
969
  #: classes/Notice/Review.php:84
970
  msgid "Leave a review!"
971
- msgstr ""
972
 
973
  #: classes/Notice/Review.php:80
974
  msgid "click here"
975
- msgstr ""
976
 
977
  #: classes/Notice/Review.php:76
978
  msgid "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s."
979
- msgstr ""
980
 
981
  #: classes/Admin/Page/Addons.php:71 classes/Notice/Review.php:67
982
  msgid "Admin Columns Pro"
983
- msgstr ""
984
 
985
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
986
  #. Plugin Name of the plugin/theme
987
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
988
  #: classes/Notice/Review.php:64
@@ -995,7 +1036,7 @@ msgstr "Узнайте больше"
995
 
996
  #: classes/Column/Placeholder.php:43
997
  msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
998
- msgstr ""
999
 
1000
  #: classes/Column/Placeholder.php:39
1001
  msgid "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>."
@@ -1007,27 +1048,27 @@ msgstr ""
1007
 
1008
  #: classes/Settings/Column/PostLink.php:68
1009
  msgid "View Public Post Author Page"
1010
- msgstr ""
1011
 
1012
  #: classes/Settings/Column/PostLink.php:67
1013
  msgid "Edit Post Author"
1014
- msgstr ""
1015
 
1016
  #: classes/Settings/Column/PostLink.php:66
1017
  msgid "View Post"
1018
- msgstr ""
1019
 
1020
  #: classes/Settings/Column/PostLink.php:65
1021
  msgid "Edit Post"
1022
- msgstr ""
1023
 
1024
  #: classes/Settings/Column/Label.php:28
1025
  msgid "This is the name which will appear as the column header."
1026
- msgstr "Это имя, которое будет отображаться в качестве заголовка столбца."
1027
 
1028
  #: classes/Settings/Column/Label.php:27
1029
  msgid "Label"
1030
- msgstr "Метка"
1031
 
1032
  #: classes/Settings/Column/Type.php:29
1033
  msgid "Name"
@@ -1035,19 +1076,19 @@ msgstr "Имя"
1035
 
1036
  #: classes/Settings/Column/Type.php:26
1037
  msgid "Choose a column type."
1038
- msgstr "Выбрать тип колонки"
1039
 
1040
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1041
  msgid "Clone"
1042
- msgstr ""
1043
 
1044
  #: classes/Settings/Column/Password.php:27
1045
  msgid "Display format"
1046
- msgstr ""
1047
 
1048
  #: classes/Settings/Column/User.php:117
1049
  msgid "First and Last Name"
1050
- msgstr "Имя и Фамилия"
1051
 
1052
  #: classes/Settings/Column/User.php:115 classes/Settings/Column/User.php:133
1053
  msgid "User Email"
@@ -1075,11 +1116,11 @@ msgstr "После"
1075
 
1076
  #: classes/Settings/Column/BeforeAfter.php:41
1077
  msgid "This text will appear before the column value."
1078
- msgstr ""
1079
 
1080
  #: classes/Settings/Column/BeforeAfter.php:40
1081
  msgid "Before"
1082
- msgstr "Перед"
1083
 
1084
  #: classes/Settings/Column/Width.php:62
1085
  msgid "width"
@@ -1088,11 +1129,11 @@ msgstr "ширина"
1088
  #: classes/Settings/Column/CustomFieldType.php:153
1089
  #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:341
1090
  msgid "Custom"
1091
- msgstr "Пользовательский"
1092
 
1093
  #: classes/Settings/Column/Date.php:33
1094
  msgid "This will determine how the date will be displayed."
1095
- msgstr "Это определяет отображение даты."
1096
 
1097
  #: classes/Settings/Column/Date.php:32
1098
  msgid "Date Format"
@@ -1100,11 +1141,11 @@ msgstr "Формат даты"
1100
 
1101
  #: classes/Settings/Column/Image.php:75
1102
  msgid "Large"
1103
- msgstr "Большой"
1104
 
1105
  #: classes/Settings/Column/Image.php:74
1106
  msgid "Medium"
1107
- msgstr "Средний"
1108
 
1109
  #: classes/Settings/Column/Image.php:73
1110
  msgid "Thumbnail"
@@ -1116,11 +1157,11 @@ msgstr "URL"
1116
 
1117
  #: classes/Column/User/RichEditing.php:11
1118
  msgid "Visual Editor"
1119
- msgstr ""
1120
 
1121
  #: classes/Column/User/Registered.php:14
1122
  msgid "Registered"
1123
- msgstr "Зарегестрировано"
1124
 
1125
  #: classes/Settings/Column/CustomFieldType.php:80
1126
  #: classes/Settings/Column/PostType.php:23 codepress-admin-columns.php:497
@@ -1129,11 +1170,11 @@ msgstr "Тип записи"
1129
 
1130
  #: classes/Column/User/PostCount.php:14
1131
  msgid "Post Count"
1132
- msgstr "Счетчик сообщений"
1133
 
1134
  #: classes/Column/User/Nickname.php:14 classes/Settings/Column/User.php:113
1135
  msgid "Nickname"
1136
- msgstr "Ник"
1137
 
1138
  #: classes/Column/User/LastName.php:14
1139
  msgid "Last name"
@@ -1142,11 +1183,11 @@ msgstr "Фамилия"
1142
  #: classes/Column/Post/CommentCount.php:17
1143
  #: classes/Column/User/CommentCount.php:14
1144
  msgid "Comment Count"
1145
- msgstr ""
1146
 
1147
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1148
  msgid "Remove"
1149
- msgstr "Удалить"
1150
 
1151
  #: classes/Column/User/ID.php:14 classes/Settings/Column/User.php:116
1152
  msgid "User ID"
@@ -1154,15 +1195,15 @@ msgstr "ID пользователя"
1154
 
1155
  #: classes/Settings/Column/LinkToMenu.php:26
1156
  msgid "This will make the title link to the menu."
1157
- msgstr ""
1158
 
1159
  #: classes/Settings/Column/LinkToMenu.php:25
1160
  msgid "Link to menu"
1161
- msgstr ""
1162
 
1163
  #: classes/Column/UsedByMenu.php:17
1164
  msgid "Used by Menu"
1165
- msgstr ""
1166
 
1167
  #: classes/Column/Taxonomy.php:17 classes/Settings/Column/Taxonomy.php:29
1168
  msgid "Taxonomy"
@@ -1170,23 +1211,23 @@ msgstr "Таксономия"
1170
 
1171
  #: classes/Column/Post/TitleRaw.php:14
1172
  msgid "Title without actions"
1173
- msgstr ""
1174
 
1175
  #: classes/Column/Post/Sticky.php:16
1176
  msgid "Sticky"
1177
- msgstr "Липучка"
1178
 
1179
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1180
  msgid "Status"
1181
  msgstr "Статус"
1182
 
1183
  #: classes/Column/Post/Slug.php:14 classes/Settings/Column/Term.php:28
1184
  msgid "Slug"
1185
- msgstr "Ссылка"
1186
 
1187
  #: classes/Column/Post/Shortcodes.php:16
1188
  msgid "Shortcodes"
1189
- msgstr ""
1190
 
1191
  #: classes/Column/Post/Roles.php:14
1192
  msgid "Roles"
@@ -1194,7 +1235,7 @@ msgstr "Роли"
1194
 
1195
  #: classes/Column/Post/PingStatus.php:14
1196
  msgid "Ping Status"
1197
- msgstr ""
1198
 
1199
  #: classes/Column/Post/Permalink.php:16
1200
  msgid "Permalink"
@@ -1202,11 +1243,11 @@ msgstr "Постоянная ссылка"
1202
 
1203
  #: classes/Column/Post/Path.php:16
1204
  msgid "Path"
1205
- msgstr ""
1206
 
1207
  #: classes/Column/Post/Parent.php:14
1208
  msgid "Parent"
1209
- msgstr "Родитель"
1210
 
1211
  #: classes/Column/Post/PageTemplate.php:14
1212
  msgid "Page Template"
@@ -1214,61 +1255,61 @@ msgstr "Шаблон страницы"
1214
 
1215
  #: classes/Column/Post/Order.php:14
1216
  msgid "Order"
1217
- msgstr ""
1218
 
1219
  #: classes/Column/Post/Modified.php:14
1220
  msgid "Last Modified"
1221
- msgstr ""
1222
 
1223
  #: classes/Column/Post/LastModifiedAuthor.php:17
1224
  msgid "Last Modified Author"
1225
- msgstr ""
1226
 
1227
  #: classes/Column/Post/Formats.php:14
1228
  msgid "Post Format"
1229
- msgstr "Формат сообщения"
1230
 
1231
  #: classes/Column/Post/FeaturedImage.php:14 classes/Settings/Column/Post.php:83
1232
  msgid "Featured Image"
1233
- msgstr "Изображение записи"
1234
 
1235
  #: classes/Settings/Column/WordsPerMinute.php:32
1236
  msgid "Estimated reading time in words per minute."
1237
- msgstr ""
1238
 
1239
  #: classes/Settings/Column/WordsPerMinute.php:31
1240
  msgid "Words per minute"
1241
- msgstr ""
1242
 
1243
  #: classes/Settings/Column/WordsPerMinute.php:85
1244
  msgid "minute"
1245
  msgid_plural "minutes"
1246
- msgstr[0] ""
1247
- msgstr[1] ""
1248
- msgstr[2] ""
1249
 
1250
  #: classes/Settings/Column/WordsPerMinute.php:83
1251
  msgid "second"
1252
  msgid_plural "seconds"
1253
- msgstr[0] ""
1254
- msgstr[1] ""
1255
- msgstr[2] ""
1256
 
1257
  #: classes/Column/Post/EstimatedReadingTime.php:14
1258
  msgid "Estimated Reading Time"
1259
- msgstr ""
1260
 
1261
  #: classes/Column/Post/Depth.php:16
1262
  msgid "Depth"
1263
- msgstr ""
1264
 
1265
  #: classes/Column/Post/DatePublished.php:14
1266
  msgid "Date Published"
1267
- msgstr ""
1268
 
1269
  #: classes/Settings/Column/CommentCount.php:31
1270
  msgid "Select which comment status you like to display."
1271
- msgstr "Выберите статус комментария для отображения."
1272
 
1273
  #: classes/Settings/Column/CommentCount.php:30
1274
  msgid "Comment status"
@@ -1282,41 +1323,41 @@ msgstr "Спам"
1282
  #: classes/Column/Comment/Status.php:27
1283
  #: classes/Settings/Column/CommentCount.php:44
1284
  msgid "Pending"
1285
- msgstr "В ожидании"
1286
 
1287
  #: classes/Settings/Column/CommentCount.php:52
1288
  msgid "Total"
1289
- msgstr "Всего"
1290
 
1291
  #: classes/Column/Post/BeforeMoreTag.php:14
1292
  msgid "Before More Tag"
1293
- msgstr "Перед тэгом \"Подробнее\""
1294
 
1295
  #: classes/Settings/Column/User.php:135
1296
  msgid "View Public Author Page"
1297
- msgstr ""
1298
 
1299
  #: classes/Settings/Column/User.php:134
1300
  msgid "View User Posts"
1301
- msgstr ""
1302
 
1303
  #: classes/Settings/Column/User.php:132
1304
  msgid "Edit User Profile"
1305
- msgstr ""
1306
 
1307
  #: classes/Settings/Column/PostLink.php:73
1308
  #: classes/Settings/Column/Separator.php:26
1309
  #: classes/Settings/Column/User.php:141
1310
  msgid "None"
1311
- msgstr "Отсутствует"
1312
 
1313
  #: classes/Settings/Column/PostLink.php:56 classes/Settings/Column/User.php:47
1314
  msgid "Link To"
1315
- msgstr ""
1316
 
1317
  #: classes/Column/Post/Attachment.php:14
1318
  msgid "Attachments"
1319
- msgstr ""
1320
 
1321
  #: classes/Column/Media/Width.php:16 classes/Settings/Column/Image.php:40
1322
  #: classes/Settings/Column/Width.php:52
@@ -1325,7 +1366,7 @@ msgstr "Ширина"
1325
 
1326
  #: classes/Column/Media/MimeType.php:14
1327
  msgid "Mime Type"
1328
- msgstr ""
1329
 
1330
  #: classes/Column/Media/Height.php:16 classes/Settings/Column/Image.php:46
1331
  msgid "Height"
@@ -1333,19 +1374,19 @@ msgstr "Высота"
1333
 
1334
  #: classes/Settings/Column/PathScope.php:26
1335
  msgid "Relative to main uploads folder "
1336
- msgstr ""
1337
 
1338
  #: classes/Settings/Column/PathScope.php:25
1339
  msgid "Relative to domain"
1340
- msgstr ""
1341
 
1342
  #: classes/Settings/Column/PathScope.php:31
1343
  msgid "Part of the file path to display"
1344
- msgstr ""
1345
 
1346
  #: classes/Settings/Column/PathScope.php:30
1347
  msgid "Path scope"
1348
- msgstr ""
1349
 
1350
  #: classes/Settings/Column/PathScope.php:24
1351
  msgid "Full path"
@@ -1353,20 +1394,20 @@ msgstr "Полный путь"
1353
 
1354
  #: classes/Column/Media/FileSize.php:14
1355
  msgid "File Size"
1356
- msgstr ""
1357
 
1358
  #: classes/Column/Media/FileName.php:14
1359
  msgid "Filename"
1360
- msgstr ""
1361
 
1362
  #: classes/Settings/Column/ExifData.php:50 classes/Settings/Column/Post.php:80
1363
  #: classes/Settings/Column/Term.php:27
1364
  msgid "Title"
1365
- msgstr "Название"
1366
 
1367
  #: classes/Settings/Column/ExifData.php:49
1368
  msgid "Shutter Speed"
1369
- msgstr "Скорость затвора"
1370
 
1371
  #: classes/Settings/Column/ExifData.php:48
1372
  msgid "ISO"
@@ -1378,11 +1419,11 @@ msgstr "Фокусное расстояние"
1378
 
1379
  #: classes/Settings/Column/ExifData.php:46
1380
  msgid "Copyright EXIF"
1381
- msgstr "Copyright EXIF"
1382
 
1383
  #: classes/Settings/Column/ExifData.php:45
1384
  msgid "Timestamp"
1385
- msgstr "Временной штамп"
1386
 
1387
  #: classes/Settings/Column/ExifData.php:43
1388
  msgid "Camera"
@@ -1394,11 +1435,11 @@ msgstr "Кредит"
1394
 
1395
  #: classes/Settings/Column/ExifData.php:41
1396
  msgid "Aperture"
1397
- msgstr "Апертура"
1398
 
1399
  #: classes/Column/Media/ExifData.php:16
1400
  msgid "EXIF Data"
1401
- msgstr ""
1402
 
1403
  #: classes/Column/Media/Dimensions.php:16
1404
  msgid "Dimensions"
@@ -1418,15 +1459,15 @@ msgstr "Доступные размеры"
1418
 
1419
  #: classes/Column/Media/AttachedTo.php:14
1420
  msgid "Attached to Post"
1421
- msgstr ""
1422
 
1423
  #: classes/Column/Media/AlternateText.php:14
1424
  msgid "Alt"
1425
- msgstr "Вариант"
1426
 
1427
- #: classes/Admin/Page/Columns.php:479
1428
  msgid "View"
1429
- msgstr "Смотреть"
1430
 
1431
  #: classes/Column/Comment/Status.php:23 classes/Column/Comment/Status.php:24
1432
  #: classes/Settings/Column/CommentCount.php:46
@@ -1447,7 +1488,7 @@ msgstr "Владелец"
1447
 
1448
  #: classes/Column/Link/Notes.php:14
1449
  msgid "Notes"
1450
- msgstr "Заметки"
1451
 
1452
  #: classes/Column/Link/Length.php:14
1453
  msgid "Length"
@@ -1471,7 +1512,7 @@ msgstr ""
1471
 
1472
  #: classes/Settings/Column/CustomFieldType.php:53
1473
  msgid "This will determine how the value will be displayed."
1474
- msgstr "От этого будет зависеть, как будет отображаться значение."
1475
 
1476
  #: classes/Settings/Column/CustomFieldType.php:60
1477
  msgid "Field Type"
@@ -1479,15 +1520,15 @@ msgstr "Тип поля"
1479
 
1480
  #: classes/Settings/Column/CustomField.php:32
1481
  msgid "Please create a %s item first."
1482
- msgstr ""
1483
 
1484
  #: classes/Settings/Column/CustomField.php:32
1485
  msgid "No custom fields available."
1486
- msgstr "Нет доступных пользовательских полей."
1487
 
1488
  #: classes/Admin/Help/CustomField.php:58
1489
  msgid "Numeric"
1490
- msgstr "Цифры"
1491
 
1492
  #: classes/Admin/Help/CustomField.php:54
1493
  #: classes/Settings/Column/CustomFieldType.php:118
@@ -1496,7 +1537,7 @@ msgstr "Несколько значений"
1496
 
1497
  #: classes/Admin/Help/CustomField.php:50
1498
  msgid "Media Library"
1499
- msgstr "Медиа библиотека"
1500
 
1501
  #: classes/Admin/Help/CustomField.php:46 classes/Column/Link/Image.php:14
1502
  #: classes/Settings/Column/CustomFieldType.php:103
@@ -1505,7 +1546,7 @@ msgstr "Изображение"
1505
 
1506
  #: classes/Admin/Help/CustomField.php:42 classes/Column/Post/Excerpt.php:14
1507
  msgid "Excerpt"
1508
- msgstr "Отрывок"
1509
 
1510
  #: classes/Admin/Help/CustomField.php:34
1511
  msgid "Counter"
@@ -1525,11 +1566,11 @@ msgstr "По умолчанию"
1525
 
1526
  #: classes/Admin/Help/CustomField.php:10 classes/Column/CustomField.php:20
1527
  msgid "Custom Field"
1528
- msgstr "Пользовательское поле"
1529
 
1530
  #: classes/Column/Comment/WordCount.php:14 classes/Column/Post/WordCount.php:14
1531
  msgid "Word Count"
1532
- msgstr ""
1533
 
1534
  #: classes/Column/Comment/User.php:14 classes/ListScreen/User.php:12
1535
  #: classes/Settings/Column/CustomFieldType.php:84
@@ -1551,7 +1592,7 @@ msgstr "В ответ на"
1551
  #: classes/Column/Comment/Post.php:14
1552
  #: classes/Settings/Column/CustomFieldType.php:113
1553
  msgid "Post"
1554
- msgstr ""
1555
 
1556
  #: classes/Column/Comment/Excerpt.php:14 classes/Column/Post/Content.php:14
1557
  msgid "Content"
@@ -1576,11 +1617,11 @@ msgstr "Автор"
1576
 
1577
  #: classes/Column/Comment/AuthorUrl.php:14
1578
  msgid "Author Url"
1579
- msgstr ""
1580
 
1581
  #: classes/Column/Comment/AuthorName.php:14
1582
  msgid "Author Name"
1583
- msgstr ""
1584
 
1585
  #: classes/Column/Comment/AuthorIP.php:11
1586
  msgid "Author IP"
@@ -1588,7 +1629,7 @@ msgstr "IP автора"
1588
 
1589
  #: classes/Column/Comment/AuthorEmail.php:14
1590
  msgid "Author Email"
1591
- msgstr ""
1592
 
1593
  #: classes/Column/Comment/AuthorAvatar.php:14
1594
  msgid "Avatar"
@@ -1597,15 +1638,15 @@ msgstr "Аватар"
1597
  #: classes/Column/Comment/Approved.php:14 classes/Column/Comment/Status.php:26
1598
  #: classes/Settings/Column/CommentCount.php:43
1599
  msgid "Approved"
1600
- msgstr "Утверждено"
1601
 
1602
  #: classes/Column/Comment/Agent.php:14
1603
  msgid "Agent"
1604
  msgstr "Агент"
1605
 
1606
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1607
  msgid "Edit"
1608
- msgstr "Изменить"
1609
 
1610
  #: classes/Column/Comment/ID.php:14 classes/Column/Link/ID.php:14
1611
  #: classes/Column/Media/ID.php:14 classes/Column/Post/ID.php:14
@@ -1613,29 +1654,31 @@ msgstr "Изменить"
1613
  msgid "ID"
1614
  msgstr "ID"
1615
 
1616
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1617
  #: classes/Settings/Column/ActionIcons.php:22
 
1618
  #: classes/Settings/Column/Toggle.php:14
1619
  msgid "No"
1620
  msgstr "Нет"
1621
 
1622
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1623
  #: classes/Settings/Column/ActionIcons.php:21
 
1624
  #: classes/Settings/Column/Toggle.php:13
1625
  msgid "Yes"
1626
  msgstr "Да"
1627
 
1628
  #: classes/Settings/Column/ActionIcons.php:27
1629
  msgid "Use icons instead of text for displaying the actions."
1630
- msgstr ""
1631
 
1632
  #: classes/Settings/Column/ActionIcons.php:26
1633
  msgid "Use icons?"
1634
- msgstr ""
1635
 
1636
  #: classes/Column/Actions.php:30 classes/Column/Link/Actions.php:14
1637
  msgid "Actions"
1638
- msgstr "действия"
1639
 
1640
  #: classes/Addon/WooCommerce.php:14
1641
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
@@ -1643,7 +1686,7 @@ msgstr ""
1643
 
1644
  #: classes/Addon/WooCommerce.php:13
1645
  msgid "WooCommerce"
1646
- msgstr ""
1647
 
1648
  #: classes/Addon/ACF.php:13
1649
  msgid "Advanced Custom Fields"
@@ -1651,4 +1694,4 @@ msgstr "Advanced Custom Fields"
1651
 
1652
  #: classes/Admin/Page/Addons.php:120 codepress-admin-columns.php:339
1653
  msgid "Plugins"
1654
- msgstr ""
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-11-05 22:07:28+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr "Защищено паролем"
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr "На утверждении"
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr "Черновик"
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr "Опубликовано"
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr "Личное"
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr "Используйте значок вместо текста для отображения статуса."
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr "Использовать иконку?"
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr "&hellip;"
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr "Текущая цитата генерируется из контента."
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr "Цитата отсутствует."
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
+ msgstr "Имя пользователя"
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
+ msgstr "Прислать мне скидку"
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
+ msgstr "Цены начиная от %s"
69
 
70
  #: classes/Addon/BuddyPress.php:17
71
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
73
 
74
  #: classes/Addon/BuddyPress.php:13
75
  msgid "BuddyPress"
76
+ msgstr "BuddyPress"
77
 
78
  #: templates/settings/section.php:23
79
  msgid "View more"
80
+ msgstr "Смотреть далее"
81
 
82
  #: classes/TableScreen.php:57
83
  msgid "Invalid method."
84
+ msgstr "Недопустимый метод."
85
 
86
  #: classes/TableScreen.php:53
87
  msgid "Invalid column."
88
+ msgstr "Недопустимая колонка."
89
 
90
  #: classes/TableScreen.php:45
91
  msgid "Invalid list screen."
92
+ msgstr "Недопустимый экран списка."
93
 
94
  #: classes/TableScreen.php:39
95
  msgid "Invalid item ID."
96
+ msgstr "Неверный ID элемента."
97
 
98
  #: classes/Settings/Column/WordsPerMinute.php:32
99
  msgid "By default: %s"
100
+ msgstr "По умолчанию: %s"
101
 
102
  #: classes/Settings/Column/WordLimit.php:35
103
  msgid "Maximum number of words"
104
+ msgstr "Максимальное количество слов"
105
 
106
  #: classes/Settings/Column/WordLimit.php:34
107
  msgid "Word Limit"
108
+ msgstr "Лимит слов"
109
 
110
  #: classes/Settings/Column/Width.php:40
111
  msgid "Auto"
112
+ msgstr "Авто"
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
+ msgstr "Отображать"
118
 
119
  #: classes/Settings/Column/Taxonomy.php:23
120
  msgid "No taxonomies available."
121
+ msgstr "Нет доступных таксономий."
122
 
123
  #: classes/Settings/Column/Separator.php:32
124
  msgid "Select a repeater sub field."
126
 
127
  #: classes/Settings/Column/Separator.php:31
128
  msgid "Separator"
129
+ msgstr "Разделитель"
130
 
131
  #: classes/Settings/Column/Separator.php:27
132
  msgid "Whitespace"
133
+ msgstr "Пробел"
134
 
135
  #: classes/Settings/Column/Separator.php:25
136
  msgid "New line"
137
+ msgstr "Новая строка"
138
 
139
  #: classes/Settings/Column/Separator.php:24
140
  msgid "Comma Separated"
141
+ msgstr "через запятую"
142
 
143
  #: classes/Settings/Column/Password.php:23
144
  msgid "Plain text"
145
+ msgstr "Простой текст"
146
 
147
  #: classes/Settings/Column/Password.php:22
148
  msgid "Password"
149
+ msgstr "Пароль"
150
 
151
  #: classes/Settings/Column/Meta.php:27
152
  msgid "No fields available."
153
+ msgstr "Нет доступных полей."
154
 
155
  #: classes/Settings/Column/Image.php:112
156
  msgid "Custom Size"
157
+ msgstr "Произвольный размер"
158
 
159
  #: classes/Settings/Column/Image.php:108
160
  msgid "Full Size"
161
+ msgstr "Полный размер"
162
 
163
  #: classes/Settings/Column/Image.php:54
164
  msgid "Image Size"
165
+ msgstr "Размер изображения"
166
 
167
  #: classes/Settings/Column/Image.php:47
168
  msgid "Height in pixels"
169
+ msgstr "Высота в пикселях"
170
 
171
  #: classes/Settings/Column/Image.php:41
172
  msgid "Width in pixels"
173
+ msgstr "Ширина в пикселях"
174
 
175
  #: classes/Settings/Column/Date.php:181
176
  msgid "in %s"
177
+ msgstr "в %s"
178
 
179
  #: classes/Settings/Column/Date.php:178
180
  msgid "%s ago"
181
+ msgstr "%s назад"
182
 
183
  #: classes/Settings/Column/Date.php:99
184
  msgid "date and time formatting"
185
+ msgstr "форматировании даты и времени"
186
 
187
  #: classes/Settings/Column/Date.php:99
188
  msgid "Learn more about %s."
189
+ msgstr "Узнать больше о %s."
190
 
191
  #: classes/Settings/Column/Date.php:98
192
  msgid "Custom:"
193
+ msgstr "Произвольно:"
194
 
195
  #: classes/Settings/Column/Date.php:81
196
  msgid "The %s can be changed in %s."
197
+ msgstr "%s можно изменить в %s."
198
 
199
  #: classes/Settings/Column/Date.php:76
200
  msgid "WordPress Date Format"
201
+ msgstr "Формат даты WordPress"
202
 
203
  #: classes/Settings/Column/Date.php:70
204
  msgid "or"
205
+ msgstr "или"
206
 
207
  #: classes/Settings/Column/Date.php:70
208
  msgid "For example: %s."
209
+ msgstr "Например: %s."
210
 
211
  #: classes/Settings/Column/Date.php:70
212
  msgid "The difference is returned in a human readable format."
213
+ msgstr "Разница возвращается в читаемом формате."
214
 
215
  #: classes/Settings/Column/Date.php:69
216
  msgid "Time Difference"
217
+ msgstr "Разница во времени"
218
 
219
  #: classes/Settings/Column/CustomFieldType.php:152
220
  msgid "Multiple"
221
+ msgstr "Многозначные"
222
 
223
  #: classes/Settings/Column/CustomFieldType.php:151
224
  msgid "Choice"
225
+ msgstr "На выбор"
226
 
227
  #: classes/Settings/Column/CustomFieldType.php:150
228
  msgid "Relational"
229
+ msgstr "Родственные"
230
 
231
  #: classes/Settings/Column/CustomFieldType.php:149
232
  msgid "Basic"
233
+ msgstr "Базовые"
234
 
235
  #: classes/Settings/Column/CustomFieldType.php:117
236
  msgid "Number of Fields"
237
+ msgstr "Количество полей"
238
 
239
  #: classes/Settings/Column/CustomFieldType.php:109
240
  msgid "True / False"
241
+ msgstr "Да / Нет"
242
 
243
  #: classes/Settings/Column/CustomFieldType.php:108
244
  msgid "Has Content"
245
+ msgstr "Контент"
246
 
247
  #: classes/Settings/Column/CustomFieldType.php:105
248
  msgid "Number"
249
+ msgstr "Число"
250
 
251
  #: classes/Settings/Column/CustomFieldType.php:102
252
  msgid "Text"
253
+ msgstr "Текст"
254
 
255
  #: classes/Settings/Column/CustomFieldType.php:70
256
  msgid "Multiple ids should be separated by a comma."
257
+ msgstr "Несколько идентификаторов должны быть разделены запятой."
258
 
259
  #: classes/Settings/Column/CustomFieldType.php:69
260
  msgid "Uses the id from a %s to display information about it."
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
+ msgstr "Поле"
267
 
268
  #: classes/Settings/Column/CharacterLimit.php:28
269
  #: classes/Settings/Column/WordLimit.php:35
270
  msgid "Leave empty for no limit"
271
+ msgstr "Чтобы не ограничивать оставьте поле пустым"
272
 
273
  #: classes/Settings/Column/CharacterLimit.php:28
274
  msgid "Maximum number of characters"
275
+ msgstr "Максимальное количество символов"
276
 
277
  #: classes/Settings/Column/CharacterLimit.php:27
278
  msgid "Character Limit"
279
+ msgstr "Лимит символов"
280
 
281
  #: classes/Settings/Column/BeforeAfter.php:56
282
  msgid "Display Options"
283
+ msgstr "Настройки отображения"
284
 
285
  #: classes/Settings/Column/BeforeAfter.php:50
286
  msgid "This text will appear after the column value."
287
+ msgstr "Этот текст будет отображаться после значения колонки."
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
+ msgstr "и"
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
+ msgstr "или"
296
 
297
  #: classes/Helper/Html.php:344
298
  msgid "Hide"
299
+ msgstr "Скрыть"
300
 
301
  #: classes/Helper/Html.php:340
302
  msgid "Show %s more"
303
+ msgstr "Показать %s больше"
304
 
305
  #: classes/Column/User/Url.php:14
306
  msgid "Website"
307
+ msgstr "Сайт"
308
 
309
  #: classes/Column/User/ShowToolbar.php:14
310
  msgid "Show Toolbar"
311
+ msgstr "Показать панель инструментов"
312
 
313
  #: classes/Column/Post/Shortlink.php:14
314
  msgid "Shortlink"
315
+ msgstr "Короткая ссылка"
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
+ msgstr ","
321
 
322
  #: classes/Column/Post/Formats.php:24
323
  msgid "Standard"
325
 
326
  #: classes/Column/Post/CommentStatus.php:17
327
  msgid "Comment Status"
328
+ msgstr "Статус комментирования"
329
 
330
  #: classes/Column/Post/AttachmentCount.php:16
331
  msgid "Attachment Count"
332
+ msgstr "Количество вложений"
333
 
334
  #: classes/Column/Media/FullPath.php:14
335
  msgid "Full Path"
336
+ msgstr "Полный путь к файлу"
337
 
338
  #: classes/Admin/Promo.php:137
339
  msgid "Discount is valid until %s"
340
+ msgstr "Скидка действует до %s"
341
 
342
  #: classes/Admin/Page/Welcome.php:12
343
  msgid "Welcome"
344
+ msgstr "Добро пожаловать"
345
 
346
  #: classes/Admin/Page/Settings.php:171
347
  msgid "Show %s button on table screen."
348
+ msgstr "Показывать кнопку %s на экране таблицы."
349
 
350
  #: classes/Admin/Page/Settings.php:152
351
  msgid "Default is %s."
352
+ msgstr "По умолчанию - %s."
353
 
354
  #: classes/Admin/Page/Settings.php:149
355
  msgid "on"
356
+ msgstr "включено"
357
 
358
  #: classes/Admin/Page/Settings.php:146
359
  msgid "off"
360
+ msgstr "выключено"
361
 
362
  #: classes/Admin/Page/Settings.php:133
363
  msgid "Notice"
364
+ msgstr "Уведомление"
365
 
366
  #: classes/Admin/Page/Settings.php:127
367
  msgid "Instructions"
368
+ msgstr "Инструкции"
369
 
370
  #: classes/Admin/Page/Help.php:315
371
  msgid "our documentation"
372
+ msgstr "наша документация"
373
 
374
  #: classes/Admin/Page/Help.php:315
375
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
388
 
389
  #: classes/Admin/Page/Help.php:248
390
  msgid "View documentation"
391
+ msgstr "Посмотреть документацию"
392
 
393
  #: classes/Admin/Page/Help.php:198
394
  msgid "The action %s used on this website is deprecated since %s."
400
 
401
  #: classes/Admin/Page/Help.php:172
402
  msgid "Deprecated Actions"
403
+ msgstr "Устаревшие действия"
404
 
405
  #: classes/Admin/Page/Help.php:171
406
  msgid "Deprecated Filters"
407
+ msgstr "Устаревшие фильтры"
408
 
409
  #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:311
410
  msgid "Help"
411
+ msgstr "Помощь"
412
 
413
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
414
  msgid "Close"
415
+ msgstr "Закрыть"
416
 
417
+ #: classes/Admin/Page/Columns.php:758
418
  msgid "Clear all columns "
419
+ msgstr "Очистить все колонки"
420
 
421
+ #: classes/Admin/Page/Columns.php:665
422
  msgid "I'm using Admin Columns for WordPress!"
423
+ msgstr "Я использую Admin Columns для WordPress!"
424
 
425
+ #: classes/Admin/Page/Columns.php:607
426
  msgid "Your First Name"
427
+ msgstr "Ваше имя"
428
 
429
+ #: classes/Admin/Page/Columns.php:606
430
  msgid "Your Email"
431
+ msgstr "Ваш Email"
432
 
433
+ #: classes/Admin/Page/Columns.php:599
434
  msgid "Submit your email and we'll send you a discount for %s off."
435
+ msgstr "Напишите свой электронный адрес и мы отправим купон на %s скидку."
436
 
437
+ #: classes/Admin/Page/Columns.php:595
438
  msgid "Get %s Off!"
439
+ msgstr "Получите %s скидку!"
440
 
441
+ #: classes/Admin/Page/Columns.php:562
442
  msgid "Extra Columns for:"
443
+ msgstr "Дополнительные колонки для:"
444
 
445
+ #: classes/Admin/Page/Columns.php:548
446
  msgid "Edit your column content directly"
447
+ msgstr "Редактируйте содержимое колонки"
448
 
449
+ #: classes/Admin/Page/Columns.php:536
450
  msgid "Pro"
451
+ msgstr "Pro"
452
 
453
  #: classes/Admin/Page/Columns.php:328
454
  msgid "You need at least one column"
455
+ msgstr "Вам нужна по крайней мере одна колонка"
456
 
457
  #: classes/Admin/Page/Addons.php:293
458
  msgid "Available"
459
+ msgstr "Доступно"
460
 
461
  #: classes/Admin/Page/Addons.php:292
462
  msgid "Recommended"
463
+ msgstr "Рекомендуется"
464
 
465
  #: classes/Admin/Page/Addons.php:120
466
  msgid "%s could not be activated."
472
 
473
  #: classes/Admin/Page/Addons.php:105
474
  msgid "%s plugin successfully deactivated."
475
+ msgstr "Плагин %s успешно деактивирован."
476
 
477
  #: classes/Admin/Page/Addons.php:104
478
  msgid "%s plugin successfully activated."
479
+ msgstr "Плагин %s успешно активирован."
480
 
481
  #: classes/Admin/Page/Addons.php:71
482
  msgid "%s add-on requires %s."
487
 
488
  #: classes/Admin/Page/Addons.php:58
489
  msgid "here"
490
+ msgstr "здесь"
491
 
492
  #: classes/Admin/Page/Addons.php:58
493
  msgid "Click %s to activate the plugin."
494
+ msgstr "Нажмите %s чтобы активировать плагин."
495
 
496
  #: classes/Admin/Page/Addons.php:55
497
  msgid "%s plugin is installed, but not active."
498
+ msgstr "Плагин %s установлен, но не активен."
499
 
500
  #: classes/Admin/Page/Addons.php:53
501
  msgid "%s plugin needs to be installed for the add-on to work."
507
 
508
  #: classes/Addon/Types.php:13
509
  msgid "Toolset Types"
510
+ msgstr "Toolset Types"
511
 
512
  #: classes/Addon/Pods.php:13
513
  msgid "Pods"
514
+ msgstr "Pods"
515
 
516
  #: classes/API.php:139
517
  msgid "Imported"
518
  msgstr ""
519
 
520
+ #: classes/Admin/Page/Columns.php:578
521
  msgid "Learn more about Pro"
522
+ msgstr "Узнать больше о Pro"
523
 
524
+ #: classes/Admin/Page/Columns.php:550
525
  msgid "Import &amp; Export settings"
526
+ msgstr "Импорт &amp; Экспорт настроек"
527
 
528
+ #: classes/Admin/Page/Columns.php:549
529
  msgid "Create multiple columns sets"
530
+ msgstr "Создавайте наборы колонок"
531
 
532
+ #: classes/Admin/Page/Columns.php:547
533
  msgid "Add filterable columns"
534
+ msgstr "Фильтрация"
535
 
536
+ #: classes/Admin/Page/Columns.php:546
537
  msgid "Add sortable columns"
538
+ msgstr "Сортировка"
539
 
540
+ #: classes/Admin/Page/Columns.php:541
541
  msgid "Take Admin Columns to the next level:"
542
+ msgstr "Поднимите Admin Columns на уровень выше:"
543
 
544
+ #: classes/Admin/Page/Columns.php:536
545
  msgid "Upgrade to"
546
+ msgstr "Обновить до"
547
 
548
  #: classes/Admin/Promo.php:134
549
  msgid "Get %s Off"
550
  msgstr ""
551
 
552
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
553
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
554
  msgstr ""
555
 
556
  #: classes/Admin/Page/Columns.php:248
557
  msgid "Please visit the %s screen once to load all available columns"
558
+ msgstr "Пожалуйста, посетите экран %s один раз для загрузки всех доступных колонок"
559
 
560
+ #: classes/Admin/Page/Columns.php:517
561
  msgid "Restore columns"
562
+ msgstr "Восстановить колонки"
563
 
564
  #: classes/Admin/Page/Columns.php:174
565
  msgid "Settings for %s restored successfully."
566
+ msgstr "Настройки для экрана %s успешно восстановлены."
567
 
568
+ #: classes/Admin/Page/Columns.php:335
569
  msgid "View %s screen"
570
+ msgstr "Посмотреть экран %s"
571
 
572
  #: classes/Admin/Page/Columns.php:74
573
  msgid "Invalid response."
574
+ msgstr "Недопустимый ответ."
575
 
576
  #: classes/Admin/Help/CustomField.php:51
577
  msgid "Value: should contain Attachment IDs ( seperated by a ',' comma )."
578
+ msgstr "Значение: должно содержать ID вложений ( разделённые ',' запятой )."
579
 
580
  #: classes/Settings/Column/LinkLabel.php:23
581
  msgid "Leave blank to display the url"
582
+ msgstr "Оставьте пустым для отображения URL-адреса"
583
 
584
  #: classes/Settings/Column/LinkLabel.php:22
585
  msgid "Link Label"
586
+ msgstr "Ярлык ссылки"
587
 
588
  #: classes/Admin/Page/Addons.php:220
589
  msgid "You need Admin Columns Pro."
590
+ msgstr "Вам нужен Admin Columns Pro."
591
 
592
  #: classes/Admin/Page/Addons.php:214
593
  msgid "Addon does not exist."
594
+ msgstr "Дополнение не существует."
595
 
596
  #: classes/Admin/Page/Addons.php:183
597
  msgid "the addons page"
599
 
600
  #: classes/Admin/Page/Addons.php:183
601
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
602
+ msgstr "Знаете ли Вы, что Admin Columns Pro имеет возможность интеграции с %s? С лицензией Admin Columns Pro Вы можете скачать их с %s!"
603
 
604
  #: classes/Settings/Column/Meta.php:114 codepress-admin-columns.php:340
605
  msgid "Custom Fields"
606
+ msgstr "Произвольные поля"
607
 
608
  #: classes/Settings/Column/Meta.php:110
609
  msgid "Hidden Custom Fields"
610
+ msgstr "Скрытые поля"
611
 
612
  #. Author of the plugin/theme
613
  msgid "AdminColumns.com"
615
 
616
  #. Description of the plugin/theme
617
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
618
+ msgstr "Позволяет добавлять, удалять, изменять и переставлять местами колонки в таблицах на экранах записей, страниц, комментариев и т.д. в админ-панели WordPress."
619
 
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Plugin URI of the plugin/theme
622
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
623
  #. Author URI of the plugin/theme
624
  msgid "https://www.admincolumns.com"
625
  msgstr "https://www.admincolumns.com"
626
 
627
  #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:192
628
  msgid "Edit columns"
629
+ msgstr "Редактировать колонки"
630
 
631
  #: classes/Admin/Page/Upgrade.php:310
632
  msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
638
 
639
  #: classes/Admin/Page/Upgrade.php:308
640
  msgid "Return to settings."
641
+ msgstr "Вернуться к настройкам."
642
 
643
  #: classes/Admin/Page/Upgrade.php:308
644
  msgid "Upgrade Complete!"
645
+ msgstr "Обновление завершено успешно!"
646
 
647
  #: classes/Admin/Page/Upgrade.php:292
648
  msgid "Return to welcome screen."
649
+ msgstr "Вернуться к экрану приветствия."
650
 
651
  #: classes/Admin/Page/Upgrade.php:291
652
  msgid "No Upgrade Required"
654
 
655
  #: classes/Admin/Page/Upgrade.php:255
656
  msgid "Migrating Column Settings"
657
+ msgstr "Перенос настроек колонки"
658
 
659
  #: classes/Admin/Page/Upgrade.php:26 classes/Admin/Page/Upgrade.php:319
660
  msgid "Upgrade"
664
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:355
668
  msgid "Settings for %s updated successfully."
669
+ msgstr "Настройки для экрана %s успешно обновлены."
670
 
671
+ #: classes/Admin/Page/Columns.php:342
672
  msgid "You are trying to store the same settings for %s."
673
+ msgstr "Вы пытаетесь сохранить те же параметры для %s."
674
 
675
+ #: classes/ListScreen.php:652
676
  msgid "No columns settings available."
677
+ msgstr "Нет доступных настроек колонок."
678
 
679
  #: classes/ListScreen/User.php:11 codepress-admin-columns.php:498
680
  msgid "Users"
681
+ msgstr "Пользователи"
682
 
683
  #: classes/ListScreen/Media.php:16
684
  #: classes/Settings/Column/CustomFieldType.php:112
685
  #: codepress-admin-columns.php:499
686
  msgid "Media"
687
+ msgstr "Медиафайлы"
688
 
689
  #: classes/ListScreen/Link.php:12
690
  msgid "Link"
691
+ msgstr "Ссылка"
692
 
693
  #: classes/ListScreen/Link.php:11 codepress-admin-columns.php:501
694
  msgid "Links"
696
 
697
  #: classes/ListScreen/Comment.php:15
698
  msgid "Comment"
699
+ msgstr "Комментарий"
700
 
701
  #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:500
702
  msgid "Comments"
708
 
709
  #: classes/Admin/Page/Addons.php:418
710
  msgid "Download & Install"
711
+ msgstr "Скачать & Установить"
712
 
713
  #: classes/Admin/Page/Addons.php:412
714
  msgid "Activate"
716
 
717
  #: classes/Admin/Page/Addons.php:291
718
  msgid "Installed"
719
+ msgstr "Установленные"
720
 
721
  #: classes/Admin/Page/Addons.php:408
722
  msgid "Deactivate"
726
  msgid "Active"
727
  msgstr "Активен"
728
 
729
+ #: classes/Admin/Page/Columns.php:764
730
  msgid "Add Column"
731
+ msgstr "Добавить колонку"
732
 
733
+ #: classes/Admin/Page/Columns.php:744
734
  msgid "Drag and drop to reorder"
735
+ msgstr "Перетащите чтобы изменить порядок"
736
 
737
+ #: classes/Admin/Page/Columns.php:693
738
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
739
+ msgstr "Полная документация, отчёты об ошибках, предложения и прочее - <a href='%s'>на сайте Admin Columns</a>"
740
 
741
+ #: classes/Admin/Page/Columns.php:689
742
  msgid "Check the <strong>Help</strong> section in the top-right screen."
743
+ msgstr "См. раздел <strong>Помощь</strong> в верхнем углу экрана."
744
 
745
+ #: classes/Admin/Page/Columns.php:684
746
  msgid "Support"
747
+ msgstr "Техподдержка"
748
 
749
+ #: classes/Admin/Page/Columns.php:672
750
  msgid "Buy Pro"
751
+ msgstr "Купить Pro"
752
 
753
+ #: classes/Admin/Page/Columns.php:666
754
  msgid "Tweet"
755
+ msgstr "Твиттер"
756
 
757
+ #: classes/Admin/Page/Columns.php:660
758
  msgid "Rate"
759
  msgstr "Голосовать"
760
 
761
+ #: classes/Admin/Page/Columns.php:655
762
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
763
+ msgstr "Мы будем очень рады, если Вы поставите свою оценку в рейтинге на WordPress.org или расскажете об Admin Columns в Твиттере!"
764
 
765
+ #: classes/Admin/Page/Columns.php:652
766
  msgid "Woohoo! We're glad to hear that!"
767
+ msgstr "Мы рады слышать это!"
768
 
769
+ #: classes/Admin/Page/Columns.php:642
770
  msgid "Forums"
771
+ msgstr "Форумы"
772
 
773
+ #: classes/Admin/Page/Columns.php:637
774
  msgid "Docs"
775
+ msgstr "Документация"
776
 
777
+ #: classes/Admin/Page/Columns.php:632
778
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
779
+ msgstr " с нашей обширной документацией или откройте тему WordPress.org!"
780
 
781
+ #: classes/Admin/Page/Columns.php:629
782
  msgid "What's wrong? Need help? Let us know!"
783
+ msgstr "Что-то не так? Нужна помощь? Дайте нам знать!"
784
 
785
+ #: classes/Admin/Page/Columns.php:619
786
  msgid "Are you happy with Admin Columns?"
787
+ msgstr "Вам нравится Admin Columns?"
788
 
789
+ #: classes/Admin/Page/Columns.php:516
790
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
791
+ msgstr "Внимание! Настройка колонок для экрана %s будет сброшена. Это необратимое действие."
792
 
793
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
794
  msgid "Update"
795
  msgstr "Обновить"
796
 
797
+ #: classes/Admin/Page/Columns.php:494
798
  msgid "Store settings"
799
+ msgstr "Настройки сохранения"
800
 
801
  #: classes/Admin/Page/Addons.php:19
802
  msgid "Add-ons"
808
 
809
  #: classes/Settings/Column/Image.php:89
810
  msgid "Others"
811
+ msgstr "Другое"
812
 
813
  #: classes/Admin/Page/Settings.php:229
814
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
815
+ msgstr "Внимание! Все сохранённые ранее настройки колонок будут сброшены. Это необратимое действие."
816
 
817
  #: classes/Admin/Page/Settings.php:229
818
  msgid "Restore default settings"
820
 
821
  #: classes/Admin/Page/Settings.php:221
822
  msgid "This will delete all column settings and restore the default settings."
823
+ msgstr "Удалить все настройки колонок и восстановить настройки по умолчанию."
824
 
825
  #: classes/Admin/Page/Settings.php:220
826
  msgid "Restore Settings"
827
  msgstr "Восстановить настройки"
828
 
829
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
830
  #: classes/Admin/Page/Settings.php:179
831
  msgid "Save"
832
+ msgstr "Сохранить"
833
 
834
  #: classes/Admin/Page/Settings.php:161
835
  msgid "Customize your Admin Columns settings."
836
+ msgstr "Настройте дополнительные параметры"
837
 
838
  #: classes/Admin/Page/Settings.php:160 classes/Settings/Column/Date.php:81
839
  msgid "General Settings"
840
+ msgstr "Основные настройки"
841
 
842
  #: classes/Admin/Page/Welcome.php:90
843
  msgid "Start using Admin Columns"
844
+ msgstr "Начать использовать Admin Columns"
845
 
846
  #: classes/Admin/Page/Upgrade.php:47
847
  msgid "Learn more"
848
+ msgstr "Узнать больше"
849
 
850
  #: classes/Admin/Page/Welcome.php:29
851
  msgid "Changelog for"
852
+ msgstr "Лог изменений для"
853
 
854
  #: classes/Admin/Page/Welcome.php:62
855
  msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
856
+ msgstr "Admin Columns стал более отшлифованным и приятным, чем когда-либо прежде. Мы надеемся, что Вам понравится."
857
 
858
  #: classes/Admin/Page/Welcome.php:61
859
  msgid "Thank you for updating to the latest version!"
865
 
866
  #: classes/Admin/Help/CustomField.php:35
867
  msgid "Value: Can be either a string or array. This will display a count of the number of times the meta key is used by the item."
868
+ msgstr "Значение: Может быть строкой или массивом. Будет отображать сколько раз мета ключ использовался элементом."
869
 
870
  #: classes/Admin/Help/CustomField.php:31
871
  msgid "Value: hex value color, such as #808080."
872
+ msgstr "Значение: значение цвета в формате HEX, например #808080."
873
 
874
  #: classes/Admin/Help/CustomField.php:27
875
  msgid "Value: should be a 1 (one) or 0 (zero)."
876
+ msgstr "Значение: должно быть 1 (один) или 0 (ноль)."
877
 
878
  #: classes/Admin/Help/CustomField.php:26
879
  msgid "Checkmark"
880
+ msgstr "Чекбокс"
881
 
882
  #: classes/Admin/Help/CustomField.php:67
883
  msgid "Value: can be one or more User ID's (seperated by ',')."
884
+ msgstr "Значение: может быть один или несколько ID пользователей (разделённых ',')."
885
 
886
  #: classes/Admin/Help/CustomField.php:66
887
  msgid "Usernames"
889
 
890
  #: classes/Admin/Help/CustomField.php:63
891
  msgid "Value: can be one or more Post ID's (seperated by ',')."
892
+ msgstr "Значение: может быть один или несколько ID записей (разделённых ',')."
893
 
894
  #: classes/Admin/Help/CustomField.php:62
895
  msgid "Post Titles"
896
+ msgstr "Заголовки записей"
897
 
898
  #: classes/Admin/Help/CustomField.php:39
899
  msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
900
+ msgstr "Значение: Может быть временной меткой Unix или датой в формате как описано в <a href='%s'>Кодексе</a>. Вы можете изменить формат даты на странице <a href='%s'>общих настроек</a>."
901
 
902
  #: classes/Admin/Help/CustomField.php:59
903
  msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
904
+ msgstr "Значение: Только целые числа.<br/>Если у Вас есть 'дополнение для сортировки', значение будет использоваться для сортировки. Вы сможете сортировать Ваши записи по числовым значениям (произвольных полей)."
905
 
906
  #: classes/Admin/Help/CustomField.php:55
907
  msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
908
+ msgstr "Значение: должно быть массивом. Будет сведён любой (многозначный) массив."
909
 
910
  #: classes/Admin/Help/CustomField.php:43
911
  msgid "Value: This will show the first 20 words of the Post content."
912
+ msgstr "Значение: Выведет первые 20 слов содержания записи."
913
 
914
  #: classes/Admin/Help/CustomField.php:47
915
  msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
916
+ msgstr "Значение: должно содержать URL изображения или ID вложений ( разделённые ',' запятой )."
917
 
918
  #: classes/Admin/Help/CustomField.php:23
919
  msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
920
+ msgstr "Значение: Может быть строкой или массивом. Массивы будут сведены и значения разделены ',' запятыми."
921
 
922
  #: classes/Admin/Help/CustomField.php:18
923
  msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
924
+ msgstr "Колонка «Произвольное поле» использует произвольные поля записей и пользователей. Можно задать 10 типов."
925
 
926
  #: classes/Admin/Help/Basics.php:29
927
  msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
928
+ msgstr "Нажав на треугольник, Вы увидите параметры колонки. С помощью перетаскивания ползунка можно задать ширину колонок в процентах."
929
 
930
  #: classes/Admin/Help/Basics.php:27
931
  msgid "Change column width"
932
+ msgstr "Изменить ширину колонки"
933
 
934
  #: classes/Admin/Help/Basics.php:24
935
  msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
936
+ msgstr "Нажав на треугольник, Вы увидите параметры колонки. Здесь вы можете изменить ярлыки заголовков колонок."
937
 
938
  #: classes/Admin/Help/Basics.php:22
939
  msgid "Change label"
940
+ msgstr "Изменить ярлык"
941
 
942
  #: classes/Admin/Help/Basics.php:19
943
  msgid "By dragging the columns you can change the order which they will appear in."
944
+ msgstr "Путем перетаскивания столбцов можно изменить порядок, в котором они будут отображаться."
945
 
946
  #: classes/Admin/Help/Basics.php:17
947
  msgid "Change order"
949
 
950
  #: classes/Admin/Help/Basics.php:10
951
  msgid "Basics"
952
+ msgstr "Базовые"
953
 
954
  #: classes/Admin/Help/Introduction.php:18
955
  msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
956
+ msgstr "Этот плагин предназначен для добавления и удаления дополнительных колонок к таблицам экранов записей (всех типов), страниц, медиа-библиотеки, комментариев, ссылок и пользователей. Вы можете измените ярлыки колонок и их порядок."
957
 
958
  #: classes/Admin/Help/Introduction.php:10
959
  msgid "Overview"
965
 
966
  #: classes/Admin/Page/Columns.php:73 classes/Admin/Page/Columns.php:275
967
  msgid "%s column is already present and can not be duplicated."
968
+ msgstr "Колонка %s уже существует и не может быть продублирована."
969
 
970
  #: classes/Admin.php:130
971
  msgid "Admin Columns Settings"
972
+ msgstr "Настройка Admin Columns"
973
 
974
  #: classes/Admin/Page/Addons.php:111
975
  msgid "%s successfully deactivated."
976
+ msgstr "%s успешно деактивировано."
977
 
978
  #: classes/Notice/Review.php:105
979
  msgid "find answers to some frequently asked questions"
980
+ msgstr "ответы на некоторые часто задаваемые вопросы"
981
 
982
  #: classes/Notice/Review.php:104
983
  msgid "Admin Columns forums on WordPress.org"
984
+ msgstr "Admin Columns форум на WordPress.org"
985
 
986
  #: classes/Notice/Review.php:103
987
  msgid "You can also find help on the %s, and %s."
988
+ msgstr "Вы также можете найти помощь на %s и %s."
989
 
990
  #: classes/Notice/Review.php:99
991
  msgid "our forums"
992
+ msgstr "наши форумы"
993
 
994
  #: classes/Notice/Review.php:98
995
  msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
996
+ msgstr "Как пользователь Admin Columns Pro, Вы можете использовать свой аккаунт на AdminColumns.com account для доступа к технической поддержке %s!"
997
 
998
  #: classes/Notice/Review.php:94
999
  msgid "documentation page"
1000
+ msgstr "страницу документации"
1001
 
1002
  #: classes/Notice/Review.php:92
1003
  msgid "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s."
1004
+ msgstr "Мы сожалеем, но может быть мы можем помочь! Если у Вас возникли проблемы с настройкой %s или Вы хотите помочь расширить возможности плагина, пожалуйста, посетите нашу %s."
1005
 
1006
  #: classes/Notice/Review.php:85
1007
  msgid "Permanently hide notice"
1008
+ msgstr "Постоянно скрывать уведомления"
1009
 
1010
  #: classes/Notice/Review.php:84
1011
  msgid "Leave a review!"
1012
+ msgstr "Оставить отзыв!"
1013
 
1014
  #: classes/Notice/Review.php:80
1015
  msgid "click here"
1016
+ msgstr "нажмите здесь"
1017
 
1018
  #: classes/Notice/Review.php:76
1019
  msgid "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s."
1020
+ msgstr "Мы не хотели бы Вас беспокоить, но Вы уже некоторое время используете %s, и нам интересно довольны ли Вы плагином. Если да, не могли бы Вы оставить свой комментарий на wordpress.org? Если у Вас есть какие-то проблемы с %s, пожалуйста, %s."
1021
 
1022
  #: classes/Admin/Page/Addons.php:71 classes/Notice/Review.php:67
1023
  msgid "Admin Columns Pro"
1024
+ msgstr "Admin Columns Pro"
1025
 
1026
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1027
  #. Plugin Name of the plugin/theme
1028
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1029
  #: classes/Notice/Review.php:64
1036
 
1037
  #: classes/Column/Placeholder.php:43
1038
  msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
1039
+ msgstr "Admin Columns Pro предлагет полную интеграцию %s. Это позволяет легко отображать и редактировать %s поля непосредственно в окне обзора записей."
1040
 
1041
  #: classes/Column/Placeholder.php:39
1042
  msgid "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>."
1048
 
1049
  #: classes/Settings/Column/PostLink.php:68
1050
  msgid "View Public Post Author Page"
1051
+ msgstr "Публичная страница автора"
1052
 
1053
  #: classes/Settings/Column/PostLink.php:67
1054
  msgid "Edit Post Author"
1055
+ msgstr "Редактировать запись автора"
1056
 
1057
  #: classes/Settings/Column/PostLink.php:66
1058
  msgid "View Post"
1059
+ msgstr "Посмотреть запись"
1060
 
1061
  #: classes/Settings/Column/PostLink.php:65
1062
  msgid "Edit Post"
1063
+ msgstr "Редактировать запись"
1064
 
1065
  #: classes/Settings/Column/Label.php:28
1066
  msgid "This is the name which will appear as the column header."
1067
+ msgstr "Имя, которое будет отображаться в качестве заголовка столбца."
1068
 
1069
  #: classes/Settings/Column/Label.php:27
1070
  msgid "Label"
1071
+ msgstr "Ярлык"
1072
 
1073
  #: classes/Settings/Column/Type.php:29
1074
  msgid "Name"
1076
 
1077
  #: classes/Settings/Column/Type.php:26
1078
  msgid "Choose a column type."
1079
+ msgstr "Выберете тип столбца."
1080
 
1081
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1082
  msgid "Clone"
1083
+ msgstr "Клонировать"
1084
 
1085
  #: classes/Settings/Column/Password.php:27
1086
  msgid "Display format"
1087
+ msgstr "Отображаемый формат"
1088
 
1089
  #: classes/Settings/Column/User.php:117
1090
  msgid "First and Last Name"
1091
+ msgstr "Имя и фамилия"
1092
 
1093
  #: classes/Settings/Column/User.php:115 classes/Settings/Column/User.php:133
1094
  msgid "User Email"
1116
 
1117
  #: classes/Settings/Column/BeforeAfter.php:41
1118
  msgid "This text will appear before the column value."
1119
+ msgstr "Этот текст будет отображаться перед значением колонки."
1120
 
1121
  #: classes/Settings/Column/BeforeAfter.php:40
1122
  msgid "Before"
1123
+ msgstr "До"
1124
 
1125
  #: classes/Settings/Column/Width.php:62
1126
  msgid "width"
1129
  #: classes/Settings/Column/CustomFieldType.php:153
1130
  #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:341
1131
  msgid "Custom"
1132
+ msgstr "Произвольно "
1133
 
1134
  #: classes/Settings/Column/Date.php:33
1135
  msgid "This will determine how the date will be displayed."
1136
+ msgstr "Это позволит определить, как будет отображаться дата."
1137
 
1138
  #: classes/Settings/Column/Date.php:32
1139
  msgid "Date Format"
1141
 
1142
  #: classes/Settings/Column/Image.php:75
1143
  msgid "Large"
1144
+ msgstr "Крупный размер"
1145
 
1146
  #: classes/Settings/Column/Image.php:74
1147
  msgid "Medium"
1148
+ msgstr "Средний размер"
1149
 
1150
  #: classes/Settings/Column/Image.php:73
1151
  msgid "Thumbnail"
1157
 
1158
  #: classes/Column/User/RichEditing.php:11
1159
  msgid "Visual Editor"
1160
+ msgstr "Визуальный редактор"
1161
 
1162
  #: classes/Column/User/Registered.php:14
1163
  msgid "Registered"
1164
+ msgstr "Регистрация"
1165
 
1166
  #: classes/Settings/Column/CustomFieldType.php:80
1167
  #: classes/Settings/Column/PostType.php:23 codepress-admin-columns.php:497
1170
 
1171
  #: classes/Column/User/PostCount.php:14
1172
  msgid "Post Count"
1173
+ msgstr "Количество записей"
1174
 
1175
  #: classes/Column/User/Nickname.php:14 classes/Settings/Column/User.php:113
1176
  msgid "Nickname"
1177
+ msgstr "Никнейм"
1178
 
1179
  #: classes/Column/User/LastName.php:14
1180
  msgid "Last name"
1183
  #: classes/Column/Post/CommentCount.php:17
1184
  #: classes/Column/User/CommentCount.php:14
1185
  msgid "Comment Count"
1186
+ msgstr "Количество комментариев"
1187
 
1188
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1189
  msgid "Remove"
1190
+ msgstr "Убрать"
1191
 
1192
  #: classes/Column/User/ID.php:14 classes/Settings/Column/User.php:116
1193
  msgid "User ID"
1195
 
1196
  #: classes/Settings/Column/LinkToMenu.php:26
1197
  msgid "This will make the title link to the menu."
1198
+ msgstr "Это сделает заголовок ссылкой на меню."
1199
 
1200
  #: classes/Settings/Column/LinkToMenu.php:25
1201
  msgid "Link to menu"
1202
+ msgstr "Ссылка на меню"
1203
 
1204
  #: classes/Column/UsedByMenu.php:17
1205
  msgid "Used by Menu"
1206
+ msgstr "Используется в меню"
1207
 
1208
  #: classes/Column/Taxonomy.php:17 classes/Settings/Column/Taxonomy.php:29
1209
  msgid "Taxonomy"
1211
 
1212
  #: classes/Column/Post/TitleRaw.php:14
1213
  msgid "Title without actions"
1214
+ msgstr "Заголовок без действий"
1215
 
1216
  #: classes/Column/Post/Sticky.php:16
1217
  msgid "Sticky"
1218
+ msgstr "Прикреплённая запись"
1219
 
1220
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1221
  msgid "Status"
1222
  msgstr "Статус"
1223
 
1224
  #: classes/Column/Post/Slug.php:14 classes/Settings/Column/Term.php:28
1225
  msgid "Slug"
1226
+ msgstr "Слаг"
1227
 
1228
  #: classes/Column/Post/Shortcodes.php:16
1229
  msgid "Shortcodes"
1230
+ msgstr "Шорткоды"
1231
 
1232
  #: classes/Column/Post/Roles.php:14
1233
  msgid "Roles"
1235
 
1236
  #: classes/Column/Post/PingStatus.php:14
1237
  msgid "Ping Status"
1238
+ msgstr "PING статус"
1239
 
1240
  #: classes/Column/Post/Permalink.php:16
1241
  msgid "Permalink"
1243
 
1244
  #: classes/Column/Post/Path.php:16
1245
  msgid "Path"
1246
+ msgstr "Путь"
1247
 
1248
  #: classes/Column/Post/Parent.php:14
1249
  msgid "Parent"
1250
+ msgstr "Родительская"
1251
 
1252
  #: classes/Column/Post/PageTemplate.php:14
1253
  msgid "Page Template"
1255
 
1256
  #: classes/Column/Post/Order.php:14
1257
  msgid "Order"
1258
+ msgstr "Порядок"
1259
 
1260
  #: classes/Column/Post/Modified.php:14
1261
  msgid "Last Modified"
1262
+ msgstr "Последнее изменение"
1263
 
1264
  #: classes/Column/Post/LastModifiedAuthor.php:17
1265
  msgid "Last Modified Author"
1266
+ msgstr "Автор последних изменений"
1267
 
1268
  #: classes/Column/Post/Formats.php:14
1269
  msgid "Post Format"
1270
+ msgstr "Формат записи"
1271
 
1272
  #: classes/Column/Post/FeaturedImage.php:14 classes/Settings/Column/Post.php:83
1273
  msgid "Featured Image"
1274
+ msgstr "Популярные изображения"
1275
 
1276
  #: classes/Settings/Column/WordsPerMinute.php:32
1277
  msgid "Estimated reading time in words per minute."
1278
+ msgstr "Предположительное время чтения в словах за минуту."
1279
 
1280
  #: classes/Settings/Column/WordsPerMinute.php:31
1281
  msgid "Words per minute"
1282
+ msgstr "Слов в минуту"
1283
 
1284
  #: classes/Settings/Column/WordsPerMinute.php:85
1285
  msgid "minute"
1286
  msgid_plural "minutes"
1287
+ msgstr[0] "минута"
1288
+ msgstr[1] "минуты"
1289
+ msgstr[2] "минут"
1290
 
1291
  #: classes/Settings/Column/WordsPerMinute.php:83
1292
  msgid "second"
1293
  msgid_plural "seconds"
1294
+ msgstr[0] "секунда"
1295
+ msgstr[1] "секунды"
1296
+ msgstr[2] "секунд"
1297
 
1298
  #: classes/Column/Post/EstimatedReadingTime.php:14
1299
  msgid "Estimated Reading Time"
1300
+ msgstr "Расчётное время чтения"
1301
 
1302
  #: classes/Column/Post/Depth.php:16
1303
  msgid "Depth"
1304
+ msgstr "Глубина"
1305
 
1306
  #: classes/Column/Post/DatePublished.php:14
1307
  msgid "Date Published"
1308
+ msgstr "Дата публикации"
1309
 
1310
  #: classes/Settings/Column/CommentCount.php:31
1311
  msgid "Select which comment status you like to display."
1312
+ msgstr "Выберите статус комментария, который Вы хотите отображать."
1313
 
1314
  #: classes/Settings/Column/CommentCount.php:30
1315
  msgid "Comment status"
1323
  #: classes/Column/Comment/Status.php:27
1324
  #: classes/Settings/Column/CommentCount.php:44
1325
  msgid "Pending"
1326
+ msgstr "Ожидающие "
1327
 
1328
  #: classes/Settings/Column/CommentCount.php:52
1329
  msgid "Total"
1330
+ msgstr "Все"
1331
 
1332
  #: classes/Column/Post/BeforeMoreTag.php:14
1333
  msgid "Before More Tag"
1334
+ msgstr "Перед тегом «Подробнее»"
1335
 
1336
  #: classes/Settings/Column/User.php:135
1337
  msgid "View Public Author Page"
1338
+ msgstr "Публичная страница автора"
1339
 
1340
  #: classes/Settings/Column/User.php:134
1341
  msgid "View User Posts"
1342
+ msgstr "Записи пользователя"
1343
 
1344
  #: classes/Settings/Column/User.php:132
1345
  msgid "Edit User Profile"
1346
+ msgstr "Профиль пользователя"
1347
 
1348
  #: classes/Settings/Column/PostLink.php:73
1349
  #: classes/Settings/Column/Separator.php:26
1350
  #: classes/Settings/Column/User.php:141
1351
  msgid "None"
1352
+ msgstr "Ничего"
1353
 
1354
  #: classes/Settings/Column/PostLink.php:56 classes/Settings/Column/User.php:47
1355
  msgid "Link To"
1356
+ msgstr "Ссылка на"
1357
 
1358
  #: classes/Column/Post/Attachment.php:14
1359
  msgid "Attachments"
1360
+ msgstr "Вложения"
1361
 
1362
  #: classes/Column/Media/Width.php:16 classes/Settings/Column/Image.php:40
1363
  #: classes/Settings/Column/Width.php:52
1366
 
1367
  #: classes/Column/Media/MimeType.php:14
1368
  msgid "Mime Type"
1369
+ msgstr "MIME-тип"
1370
 
1371
  #: classes/Column/Media/Height.php:16 classes/Settings/Column/Image.php:46
1372
  msgid "Height"
1374
 
1375
  #: classes/Settings/Column/PathScope.php:26
1376
  msgid "Relative to main uploads folder "
1377
+ msgstr "Относительно корневой папки загрузки"
1378
 
1379
  #: classes/Settings/Column/PathScope.php:25
1380
  msgid "Relative to domain"
1381
+ msgstr "Относительно домена"
1382
 
1383
  #: classes/Settings/Column/PathScope.php:31
1384
  msgid "Part of the file path to display"
1385
+ msgstr "Часть пути к файлу для отображения"
1386
 
1387
  #: classes/Settings/Column/PathScope.php:30
1388
  msgid "Path scope"
1389
+ msgstr "Область пути"
1390
 
1391
  #: classes/Settings/Column/PathScope.php:24
1392
  msgid "Full path"
1394
 
1395
  #: classes/Column/Media/FileSize.php:14
1396
  msgid "File Size"
1397
+ msgstr "Размер файла"
1398
 
1399
  #: classes/Column/Media/FileName.php:14
1400
  msgid "Filename"
1401
+ msgstr "Имя файла"
1402
 
1403
  #: classes/Settings/Column/ExifData.php:50 classes/Settings/Column/Post.php:80
1404
  #: classes/Settings/Column/Term.php:27
1405
  msgid "Title"
1406
+ msgstr "Заголовок"
1407
 
1408
  #: classes/Settings/Column/ExifData.php:49
1409
  msgid "Shutter Speed"
1410
+ msgstr "Выдержка"
1411
 
1412
  #: classes/Settings/Column/ExifData.php:48
1413
  msgid "ISO"
1419
 
1420
  #: classes/Settings/Column/ExifData.php:46
1421
  msgid "Copyright EXIF"
1422
+ msgstr "Авторские права EXIF"
1423
 
1424
  #: classes/Settings/Column/ExifData.php:45
1425
  msgid "Timestamp"
1426
+ msgstr "Отметка времени"
1427
 
1428
  #: classes/Settings/Column/ExifData.php:43
1429
  msgid "Camera"
1435
 
1436
  #: classes/Settings/Column/ExifData.php:41
1437
  msgid "Aperture"
1438
+ msgstr "Диафрагма"
1439
 
1440
  #: classes/Column/Media/ExifData.php:16
1441
  msgid "EXIF Data"
1442
+ msgstr "Данные EXIF"
1443
 
1444
  #: classes/Column/Media/Dimensions.php:16
1445
  msgid "Dimensions"
1459
 
1460
  #: classes/Column/Media/AttachedTo.php:14
1461
  msgid "Attached to Post"
1462
+ msgstr "Прикреплён к посту"
1463
 
1464
  #: classes/Column/Media/AlternateText.php:14
1465
  msgid "Alt"
1466
+ msgstr "Атрибут alt"
1467
 
1468
+ #: classes/Admin/Page/Columns.php:480
1469
  msgid "View"
1470
+ msgstr "Посмотреть"
1471
 
1472
  #: classes/Column/Comment/Status.php:23 classes/Column/Comment/Status.php:24
1473
  #: classes/Settings/Column/CommentCount.php:46
1488
 
1489
  #: classes/Column/Link/Notes.php:14
1490
  msgid "Notes"
1491
+ msgstr "Примечания"
1492
 
1493
  #: classes/Column/Link/Length.php:14
1494
  msgid "Length"
1512
 
1513
  #: classes/Settings/Column/CustomFieldType.php:53
1514
  msgid "This will determine how the value will be displayed."
1515
+ msgstr "Это позволит определить, как будет отображаться значение."
1516
 
1517
  #: classes/Settings/Column/CustomFieldType.php:60
1518
  msgid "Field Type"
1520
 
1521
  #: classes/Settings/Column/CustomField.php:32
1522
  msgid "Please create a %s item first."
1523
+ msgstr "Пожалуйста, создайте первый элемент %s."
1524
 
1525
  #: classes/Settings/Column/CustomField.php:32
1526
  msgid "No custom fields available."
1527
+ msgstr "Нет доступных произвольных полей."
1528
 
1529
  #: classes/Admin/Help/CustomField.php:58
1530
  msgid "Numeric"
1531
+ msgstr "Числовое"
1532
 
1533
  #: classes/Admin/Help/CustomField.php:54
1534
  #: classes/Settings/Column/CustomFieldType.php:118
1537
 
1538
  #: classes/Admin/Help/CustomField.php:50
1539
  msgid "Media Library"
1540
+ msgstr "Библиотека медиафайлов"
1541
 
1542
  #: classes/Admin/Help/CustomField.php:46 classes/Column/Link/Image.php:14
1543
  #: classes/Settings/Column/CustomFieldType.php:103
1546
 
1547
  #: classes/Admin/Help/CustomField.php:42 classes/Column/Post/Excerpt.php:14
1548
  msgid "Excerpt"
1549
+ msgstr "Цитата"
1550
 
1551
  #: classes/Admin/Help/CustomField.php:34
1552
  msgid "Counter"
1566
 
1567
  #: classes/Admin/Help/CustomField.php:10 classes/Column/CustomField.php:20
1568
  msgid "Custom Field"
1569
+ msgstr "Произвольное поле"
1570
 
1571
  #: classes/Column/Comment/WordCount.php:14 classes/Column/Post/WordCount.php:14
1572
  msgid "Word Count"
1573
+ msgstr "Количество слов"
1574
 
1575
  #: classes/Column/Comment/User.php:14 classes/ListScreen/User.php:12
1576
  #: classes/Settings/Column/CustomFieldType.php:84
1592
  #: classes/Column/Comment/Post.php:14
1593
  #: classes/Settings/Column/CustomFieldType.php:113
1594
  msgid "Post"
1595
+ msgstr "Запись"
1596
 
1597
  #: classes/Column/Comment/Excerpt.php:14 classes/Column/Post/Content.php:14
1598
  msgid "Content"
1617
 
1618
  #: classes/Column/Comment/AuthorUrl.php:14
1619
  msgid "Author Url"
1620
+ msgstr "URL автора"
1621
 
1622
  #: classes/Column/Comment/AuthorName.php:14
1623
  msgid "Author Name"
1624
+ msgstr "Имя автора"
1625
 
1626
  #: classes/Column/Comment/AuthorIP.php:11
1627
  msgid "Author IP"
1629
 
1630
  #: classes/Column/Comment/AuthorEmail.php:14
1631
  msgid "Author Email"
1632
+ msgstr "Email автора"
1633
 
1634
  #: classes/Column/Comment/AuthorAvatar.php:14
1635
  msgid "Avatar"
1638
  #: classes/Column/Comment/Approved.php:14 classes/Column/Comment/Status.php:26
1639
  #: classes/Settings/Column/CommentCount.php:43
1640
  msgid "Approved"
1641
+ msgstr "Одобренные"
1642
 
1643
  #: classes/Column/Comment/Agent.php:14
1644
  msgid "Agent"
1645
  msgstr "Агент"
1646
 
1647
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1648
  msgid "Edit"
1649
+ msgstr "Редактировать"
1650
 
1651
  #: classes/Column/Comment/ID.php:14 classes/Column/Link/ID.php:14
1652
  #: classes/Column/Media/ID.php:14 classes/Column/Post/ID.php:14
1654
  msgid "ID"
1655
  msgstr "ID"
1656
 
1657
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1658
  #: classes/Settings/Column/ActionIcons.php:22
1659
+ #: classes/Settings/Column/StatusIcon.php:24
1660
  #: classes/Settings/Column/Toggle.php:14
1661
  msgid "No"
1662
  msgstr "Нет"
1663
 
1664
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1665
  #: classes/Settings/Column/ActionIcons.php:21
1666
+ #: classes/Settings/Column/StatusIcon.php:23
1667
  #: classes/Settings/Column/Toggle.php:13
1668
  msgid "Yes"
1669
  msgstr "Да"
1670
 
1671
  #: classes/Settings/Column/ActionIcons.php:27
1672
  msgid "Use icons instead of text for displaying the actions."
1673
+ msgstr "Используйте значки вместо текста для отображения действия."
1674
 
1675
  #: classes/Settings/Column/ActionIcons.php:26
1676
  msgid "Use icons?"
1677
+ msgstr "Использовать иконки?"
1678
 
1679
  #: classes/Column/Actions.php:30 classes/Column/Link/Actions.php:14
1680
  msgid "Actions"
1681
+ msgstr "Действия"
1682
 
1683
  #: classes/Addon/WooCommerce.php:14
1684
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
1686
 
1687
  #: classes/Addon/WooCommerce.php:13
1688
  msgid "WooCommerce"
1689
+ msgstr "WooCommerce"
1690
 
1691
  #: classes/Addon/ACF.php:13
1692
  msgid "Advanced Custom Fields"
1694
 
1695
  #: classes/Admin/Page/Addons.php:120 codepress-admin-columns.php:339
1696
  msgid "Plugins"
1697
+ msgstr "Плагины"
languages/codepress-admin-columns-sv_SE.mo CHANGED
Binary file
languages/codepress-admin-columns-sv_SE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-04-29 09:19:41+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -364,43 +409,43 @@ msgstr ""
364
  msgid "Help"
365
  msgstr ""
366
 
367
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
368
  msgid "Close"
369
  msgstr ""
370
 
371
- #: classes/Admin/Page/Columns.php:757
372
  msgid "Clear all columns "
373
  msgstr ""
374
 
375
- #: classes/Admin/Page/Columns.php:664
376
  msgid "I'm using Admin Columns for WordPress!"
377
  msgstr ""
378
 
379
- #: classes/Admin/Page/Columns.php:606
380
  msgid "Your First Name"
381
  msgstr ""
382
 
383
- #: classes/Admin/Page/Columns.php:605
384
  msgid "Your Email"
385
  msgstr ""
386
 
387
- #: classes/Admin/Page/Columns.php:598
388
  msgid "Submit your email and we'll send you a discount for %s off."
389
  msgstr ""
390
 
391
- #: classes/Admin/Page/Columns.php:594
392
  msgid "Get %s Off!"
393
  msgstr ""
394
 
395
- #: classes/Admin/Page/Columns.php:561
396
  msgid "Extra Columns for:"
397
  msgstr ""
398
 
399
- #: classes/Admin/Page/Columns.php:547
400
  msgid "Edit your column content directly"
401
  msgstr ""
402
 
403
- #: classes/Admin/Page/Columns.php:535
404
  msgid "Pro"
405
  msgstr ""
406
 
@@ -470,31 +515,31 @@ msgstr ""
470
  msgid "Imported"
471
  msgstr ""
472
 
473
- #: classes/Admin/Page/Columns.php:577
474
  msgid "Learn more about Pro"
475
  msgstr ""
476
 
477
- #: classes/Admin/Page/Columns.php:549
478
  msgid "Import &amp; Export settings"
479
  msgstr ""
480
 
481
- #: classes/Admin/Page/Columns.php:548
482
  msgid "Create multiple columns sets"
483
  msgstr ""
484
 
485
- #: classes/Admin/Page/Columns.php:546
486
  msgid "Add filterable columns"
487
  msgstr ""
488
 
489
- #: classes/Admin/Page/Columns.php:545
490
  msgid "Add sortable columns"
491
  msgstr ""
492
 
493
- #: classes/Admin/Page/Columns.php:540
494
  msgid "Take Admin Columns to the next level:"
495
  msgstr ""
496
 
497
- #: classes/Admin/Page/Columns.php:535
498
  msgid "Upgrade to"
499
  msgstr ""
500
 
@@ -502,11 +547,7 @@ msgstr ""
502
  msgid "Get %s Off"
503
  msgstr ""
504
 
505
- #: classes/Column/Post/Excerpt.php:21
506
- msgid "Excerpt from content"
507
- msgstr ""
508
-
509
- #: classes/Admin/Page/Columns.php:447
510
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
511
  msgstr ""
512
 
@@ -514,7 +555,7 @@ msgstr ""
514
  msgid "Please visit the %s screen once to load all available columns"
515
  msgstr ""
516
 
517
- #: classes/Admin/Page/Columns.php:516
518
  msgid "Restore columns"
519
  msgstr ""
520
 
@@ -522,7 +563,7 @@ msgstr ""
522
  msgid "Settings for %s restored successfully."
523
  msgstr ""
524
 
525
- #: classes/Admin/Page/Columns.php:354
526
  msgid "View %s screen"
527
  msgstr ""
528
 
@@ -574,9 +615,9 @@ msgstr ""
574
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
575
  msgstr ""
576
 
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Plugin URI of the plugin/theme
579
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
580
  #. Author URI of the plugin/theme
581
  msgid "https://www.admincolumns.com"
582
  msgstr ""
@@ -621,15 +662,15 @@ msgstr "Uppgradera"
621
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
622
  msgstr "Pro-tilägget stöds inte längre. Vänligen logga in på ditt konto och ladda ner Admin Columns Pro"
623
 
624
- #: classes/Admin/Page/Columns.php:353
625
  msgid "Settings for %s updated successfully."
626
  msgstr "Inställningar för %s uppdaterades framgångsrikt."
627
 
628
- #: classes/Admin/Page/Columns.php:340
629
  msgid "You are trying to store the same settings for %s."
630
  msgstr "Du försöker lagra samma inställningar för %s."
631
 
632
- #: classes/ListScreen.php:642
633
  msgid "No columns settings available."
634
  msgstr "Inga inställningar för kolumner är tillgängliga."
635
 
@@ -683,75 +724,75 @@ msgstr "Inaktivera"
683
  msgid "Active"
684
  msgstr "Aktivt"
685
 
686
- #: classes/Admin/Page/Columns.php:763
687
  msgid "Add Column"
688
  msgstr "Lägg till kolumn"
689
 
690
- #: classes/Admin/Page/Columns.php:743
691
  msgid "Drag and drop to reorder"
692
  msgstr "Drag och släpp för att ändra ordning"
693
 
694
- #: classes/Admin/Page/Columns.php:692
695
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
696
  msgstr "För fullständig dokumentation, felrapporter, förslag på funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</a>"
697
 
698
- #: classes/Admin/Page/Columns.php:688
699
  msgid "Check the <strong>Help</strong> section in the top-right screen."
700
  msgstr "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
701
 
702
- #: classes/Admin/Page/Columns.php:683
703
  msgid "Support"
704
  msgstr "Support"
705
 
706
- #: classes/Admin/Page/Columns.php:671
707
  msgid "Buy Pro"
708
  msgstr "Köp Pro"
709
 
710
- #: classes/Admin/Page/Columns.php:665
711
  msgid "Tweet"
712
  msgstr "Twittra"
713
 
714
- #: classes/Admin/Page/Columns.php:659
715
  msgid "Rate"
716
  msgstr "Omdöme"
717
 
718
- #: classes/Admin/Page/Columns.php:654
719
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
720
  msgstr "Vi skulle verkligen älska om du kunde visa din uppskattning genom att ge oss ett omdöme på WordPress.org eller twittra om Admin Columns!"
721
 
722
- #: classes/Admin/Page/Columns.php:651
723
  msgid "Woohoo! We're glad to hear that!"
724
  msgstr "Woohoo! Vi är glada att höra det!"
725
 
726
- #: classes/Admin/Page/Columns.php:641
727
  msgid "Forums"
728
  msgstr "Forum"
729
 
730
- #: classes/Admin/Page/Columns.php:636
731
  msgid "Docs"
732
  msgstr "Dokumentation"
733
 
734
- #: classes/Admin/Page/Columns.php:631
735
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
736
  msgstr "Kolla in vår omfattande dokumentation, eller så kan du öppna ett support tråd på WordPress.org!"
737
 
738
- #: classes/Admin/Page/Columns.php:628
739
  msgid "What's wrong? Need help? Let us know!"
740
  msgstr "Vad är fel? Behöver hjälp? Låt oss veta!"
741
 
742
- #: classes/Admin/Page/Columns.php:618
743
  msgid "Are you happy with Admin Columns?"
744
  msgstr "Är du nöjd med Admin Columns?"
745
 
746
- #: classes/Admin/Page/Columns.php:515
747
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
751
  msgid "Update"
752
  msgstr "Uppdatera"
753
 
754
- #: classes/Admin/Page/Columns.php:493
755
  msgid "Store settings"
756
  msgstr "Spara inställningar"
757
 
@@ -783,10 +824,10 @@ msgstr "Detta kommer att radera alla kolumner inställningar och återställa ti
783
  msgid "Restore Settings"
784
  msgstr "Återställ inställningar"
785
 
786
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
787
  #: classes/Admin/Page/Settings.php:179
788
  msgid "Save"
789
- msgstr ""
790
 
791
  #: classes/Admin/Page/Settings.php:161
792
  msgid "Customize your Admin Columns settings."
@@ -802,7 +843,7 @@ msgstr "Börja med att använda Admin Columns"
802
 
803
  #: classes/Admin/Page/Upgrade.php:47
804
  msgid "Learn more"
805
- msgstr "Ta reda mer"
806
 
807
  #: classes/Admin/Page/Welcome.php:29
808
  msgid "Changelog for"
@@ -980,7 +1021,7 @@ msgstr ""
980
  msgid "Admin Columns Pro"
981
  msgstr "Admin Columns Pro"
982
 
983
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
984
  #. Plugin Name of the plugin/theme
985
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
986
  #: classes/Notice/Review.php:64
@@ -1035,7 +1076,7 @@ msgstr "Namn"
1035
  msgid "Choose a column type."
1036
  msgstr "Välj en kolumntyp."
1037
 
1038
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1039
  msgid "Clone"
1040
  msgstr "Klona"
1041
 
@@ -1106,7 +1147,7 @@ msgstr "Mellan"
1106
 
1107
  #: classes/Settings/Column/Image.php:73
1108
  msgid "Thumbnail"
1109
- msgstr "Miniatyrer"
1110
 
1111
  #: classes/Settings/Column/CustomFieldType.php:104
1112
  msgid "Url"
@@ -1142,13 +1183,13 @@ msgstr "Efternamn"
1142
  msgid "Comment Count"
1143
  msgstr ""
1144
 
1145
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1146
  msgid "Remove"
1147
  msgstr "Ta bort"
1148
 
1149
  #: classes/Column/User/ID.php:14 classes/Settings/Column/User.php:116
1150
  msgid "User ID"
1151
- msgstr "Användar-ID"
1152
 
1153
  #: classes/Settings/Column/LinkToMenu.php:26
1154
  msgid "This will make the title link to the menu."
@@ -1174,7 +1215,7 @@ msgstr "Titel utan åtgärder"
1174
  msgid "Sticky"
1175
  msgstr "Klistrad"
1176
 
1177
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1178
  msgid "Status"
1179
  msgstr "Status"
1180
 
@@ -1216,7 +1257,7 @@ msgstr "Ordning"
1216
 
1217
  #: classes/Column/Post/Modified.php:14
1218
  msgid "Last Modified"
1219
- msgstr ""
1220
 
1221
  #: classes/Column/Post/LastModifiedAuthor.php:17
1222
  msgid "Last Modified Author"
@@ -1304,7 +1345,7 @@ msgstr ""
1304
  #: classes/Settings/Column/Separator.php:26
1305
  #: classes/Settings/Column/User.php:141
1306
  msgid "None"
1307
- msgstr ""
1308
 
1309
  #: classes/Settings/Column/PostLink.php:56 classes/Settings/Column/User.php:47
1310
  msgid "Link To"
@@ -1321,7 +1362,7 @@ msgstr "Bredd"
1321
 
1322
  #: classes/Column/Media/MimeType.php:14
1323
  msgid "Mime Type"
1324
- msgstr ""
1325
 
1326
  #: classes/Column/Media/Height.php:16 classes/Settings/Column/Image.php:46
1327
  msgid "Height"
@@ -1349,16 +1390,16 @@ msgstr "Full path"
1349
 
1350
  #: classes/Column/Media/FileSize.php:14
1351
  msgid "File Size"
1352
- msgstr ""
1353
 
1354
  #: classes/Column/Media/FileName.php:14
1355
  msgid "Filename"
1356
- msgstr ""
1357
 
1358
  #: classes/Settings/Column/ExifData.php:50 classes/Settings/Column/Post.php:80
1359
  #: classes/Settings/Column/Term.php:27
1360
  msgid "Title"
1361
- msgstr "Titel"
1362
 
1363
  #: classes/Settings/Column/ExifData.php:49
1364
  msgid "Shutter Speed"
@@ -1414,13 +1455,13 @@ msgstr "Tillgängliga storlekar"
1414
 
1415
  #: classes/Column/Media/AttachedTo.php:14
1416
  msgid "Attached to Post"
1417
- msgstr ""
1418
 
1419
  #: classes/Column/Media/AlternateText.php:14
1420
  msgid "Alt"
1421
  msgstr "Alt"
1422
 
1423
- #: classes/Admin/Page/Columns.php:479
1424
  msgid "View"
1425
  msgstr "Visa"
1426
 
@@ -1525,7 +1566,7 @@ msgstr "Anpassat fält"
1525
 
1526
  #: classes/Column/Comment/WordCount.php:14 classes/Column/Post/WordCount.php:14
1527
  msgid "Word Count"
1528
- msgstr ""
1529
 
1530
  #: classes/Column/Comment/User.php:14 classes/ListScreen/User.php:12
1531
  #: classes/Settings/Column/CustomFieldType.php:84
@@ -1576,7 +1617,7 @@ msgstr ""
1576
 
1577
  #: classes/Column/Comment/AuthorName.php:14
1578
  msgid "Author Name"
1579
- msgstr ""
1580
 
1581
  #: classes/Column/Comment/AuthorIP.php:11
1582
  msgid "Author IP"
@@ -1588,7 +1629,7 @@ msgstr ""
1588
 
1589
  #: classes/Column/Comment/AuthorAvatar.php:14
1590
  msgid "Avatar"
1591
- msgstr "Avatar"
1592
 
1593
  #: classes/Column/Comment/Approved.php:14 classes/Column/Comment/Status.php:26
1594
  #: classes/Settings/Column/CommentCount.php:43
@@ -1599,7 +1640,7 @@ msgstr "Godkänd"
1599
  msgid "Agent"
1600
  msgstr "Agent"
1601
 
1602
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1603
  msgid "Edit"
1604
  msgstr "Redigera"
1605
 
@@ -1609,17 +1650,19 @@ msgstr "Redigera"
1609
  msgid "ID"
1610
  msgstr "ID"
1611
 
1612
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1613
  #: classes/Settings/Column/ActionIcons.php:22
 
1614
  #: classes/Settings/Column/Toggle.php:14
1615
  msgid "No"
1616
- msgstr ""
1617
 
1618
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1619
  #: classes/Settings/Column/ActionIcons.php:21
 
1620
  #: classes/Settings/Column/Toggle.php:13
1621
  msgid "Yes"
1622
- msgstr ""
1623
 
1624
  #: classes/Settings/Column/ActionIcons.php:27
1625
  msgid "Use icons instead of text for displaying the actions."
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-09-20 16:52:01+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
409
  msgid "Help"
410
  msgstr ""
411
 
412
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
413
  msgid "Close"
414
  msgstr ""
415
 
416
+ #: classes/Admin/Page/Columns.php:758
417
  msgid "Clear all columns "
418
  msgstr ""
419
 
420
+ #: classes/Admin/Page/Columns.php:665
421
  msgid "I'm using Admin Columns for WordPress!"
422
  msgstr ""
423
 
424
+ #: classes/Admin/Page/Columns.php:607
425
  msgid "Your First Name"
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Columns.php:606
429
  msgid "Your Email"
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Columns.php:599
433
  msgid "Submit your email and we'll send you a discount for %s off."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Columns.php:595
437
  msgid "Get %s Off!"
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Columns.php:562
441
  msgid "Extra Columns for:"
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Columns.php:548
445
  msgid "Edit your column content directly"
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Columns.php:536
449
  msgid "Pro"
450
  msgstr ""
451
 
515
  msgid "Imported"
516
  msgstr ""
517
 
518
+ #: classes/Admin/Page/Columns.php:578
519
  msgid "Learn more about Pro"
520
  msgstr ""
521
 
522
+ #: classes/Admin/Page/Columns.php:550
523
  msgid "Import &amp; Export settings"
524
  msgstr ""
525
 
526
+ #: classes/Admin/Page/Columns.php:549
527
  msgid "Create multiple columns sets"
528
  msgstr ""
529
 
530
+ #: classes/Admin/Page/Columns.php:547
531
  msgid "Add filterable columns"
532
  msgstr ""
533
 
534
+ #: classes/Admin/Page/Columns.php:546
535
  msgid "Add sortable columns"
536
  msgstr ""
537
 
538
+ #: classes/Admin/Page/Columns.php:541
539
  msgid "Take Admin Columns to the next level:"
540
  msgstr ""
541
 
542
+ #: classes/Admin/Page/Columns.php:536
543
  msgid "Upgrade to"
544
  msgstr ""
545
 
547
  msgid "Get %s Off"
548
  msgstr ""
549
 
550
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
551
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
552
  msgstr ""
553
 
555
  msgid "Please visit the %s screen once to load all available columns"
556
  msgstr ""
557
 
558
+ #: classes/Admin/Page/Columns.php:517
559
  msgid "Restore columns"
560
  msgstr ""
561
 
563
  msgid "Settings for %s restored successfully."
564
  msgstr ""
565
 
566
+ #: classes/Admin/Page/Columns.php:335
567
  msgid "View %s screen"
568
  msgstr ""
569
 
615
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
616
  msgstr ""
617
 
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Plugin URI of the plugin/theme
620
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
621
  #. Author URI of the plugin/theme
622
  msgid "https://www.admincolumns.com"
623
  msgstr ""
662
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
663
  msgstr "Pro-tilägget stöds inte längre. Vänligen logga in på ditt konto och ladda ner Admin Columns Pro"
664
 
665
+ #: classes/Admin/Page/Columns.php:355
666
  msgid "Settings for %s updated successfully."
667
  msgstr "Inställningar för %s uppdaterades framgångsrikt."
668
 
669
+ #: classes/Admin/Page/Columns.php:342
670
  msgid "You are trying to store the same settings for %s."
671
  msgstr "Du försöker lagra samma inställningar för %s."
672
 
673
+ #: classes/ListScreen.php:652
674
  msgid "No columns settings available."
675
  msgstr "Inga inställningar för kolumner är tillgängliga."
676
 
724
  msgid "Active"
725
  msgstr "Aktivt"
726
 
727
+ #: classes/Admin/Page/Columns.php:764
728
  msgid "Add Column"
729
  msgstr "Lägg till kolumn"
730
 
731
+ #: classes/Admin/Page/Columns.php:744
732
  msgid "Drag and drop to reorder"
733
  msgstr "Drag och släpp för att ändra ordning"
734
 
735
+ #: classes/Admin/Page/Columns.php:693
736
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
737
  msgstr "För fullständig dokumentation, felrapporter, förslag på funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</a>"
738
 
739
+ #: classes/Admin/Page/Columns.php:689
740
  msgid "Check the <strong>Help</strong> section in the top-right screen."
741
  msgstr "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
742
 
743
+ #: classes/Admin/Page/Columns.php:684
744
  msgid "Support"
745
  msgstr "Support"
746
 
747
+ #: classes/Admin/Page/Columns.php:672
748
  msgid "Buy Pro"
749
  msgstr "Köp Pro"
750
 
751
+ #: classes/Admin/Page/Columns.php:666
752
  msgid "Tweet"
753
  msgstr "Twittra"
754
 
755
+ #: classes/Admin/Page/Columns.php:660
756
  msgid "Rate"
757
  msgstr "Omdöme"
758
 
759
+ #: classes/Admin/Page/Columns.php:655
760
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
761
  msgstr "Vi skulle verkligen älska om du kunde visa din uppskattning genom att ge oss ett omdöme på WordPress.org eller twittra om Admin Columns!"
762
 
763
+ #: classes/Admin/Page/Columns.php:652
764
  msgid "Woohoo! We're glad to hear that!"
765
  msgstr "Woohoo! Vi är glada att höra det!"
766
 
767
+ #: classes/Admin/Page/Columns.php:642
768
  msgid "Forums"
769
  msgstr "Forum"
770
 
771
+ #: classes/Admin/Page/Columns.php:637
772
  msgid "Docs"
773
  msgstr "Dokumentation"
774
 
775
+ #: classes/Admin/Page/Columns.php:632
776
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
777
  msgstr "Kolla in vår omfattande dokumentation, eller så kan du öppna ett support tråd på WordPress.org!"
778
 
779
+ #: classes/Admin/Page/Columns.php:629
780
  msgid "What's wrong? Need help? Let us know!"
781
  msgstr "Vad är fel? Behöver hjälp? Låt oss veta!"
782
 
783
+ #: classes/Admin/Page/Columns.php:619
784
  msgid "Are you happy with Admin Columns?"
785
  msgstr "Är du nöjd med Admin Columns?"
786
 
787
+ #: classes/Admin/Page/Columns.php:516
788
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
789
  msgstr ""
790
 
791
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
792
  msgid "Update"
793
  msgstr "Uppdatera"
794
 
795
+ #: classes/Admin/Page/Columns.php:494
796
  msgid "Store settings"
797
  msgstr "Spara inställningar"
798
 
824
  msgid "Restore Settings"
825
  msgstr "Återställ inställningar"
826
 
827
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
828
  #: classes/Admin/Page/Settings.php:179
829
  msgid "Save"
830
+ msgstr "Spara"
831
 
832
  #: classes/Admin/Page/Settings.php:161
833
  msgid "Customize your Admin Columns settings."
843
 
844
  #: classes/Admin/Page/Upgrade.php:47
845
  msgid "Learn more"
846
+ msgstr "Lär dig mer"
847
 
848
  #: classes/Admin/Page/Welcome.php:29
849
  msgid "Changelog for"
1021
  msgid "Admin Columns Pro"
1022
  msgstr "Admin Columns Pro"
1023
 
1024
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1025
  #. Plugin Name of the plugin/theme
1026
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1027
  #: classes/Notice/Review.php:64
1076
  msgid "Choose a column type."
1077
  msgstr "Välj en kolumntyp."
1078
 
1079
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1080
  msgid "Clone"
1081
  msgstr "Klona"
1082
 
1147
 
1148
  #: classes/Settings/Column/Image.php:73
1149
  msgid "Thumbnail"
1150
+ msgstr "Miniatyr"
1151
 
1152
  #: classes/Settings/Column/CustomFieldType.php:104
1153
  msgid "Url"
1183
  msgid "Comment Count"
1184
  msgstr ""
1185
 
1186
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1187
  msgid "Remove"
1188
  msgstr "Ta bort"
1189
 
1190
  #: classes/Column/User/ID.php:14 classes/Settings/Column/User.php:116
1191
  msgid "User ID"
1192
+ msgstr "Användar ID"
1193
 
1194
  #: classes/Settings/Column/LinkToMenu.php:26
1195
  msgid "This will make the title link to the menu."
1215
  msgid "Sticky"
1216
  msgstr "Klistrad"
1217
 
1218
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1219
  msgid "Status"
1220
  msgstr "Status"
1221
 
1257
 
1258
  #: classes/Column/Post/Modified.php:14
1259
  msgid "Last Modified"
1260
+ msgstr "Senast ändrad"
1261
 
1262
  #: classes/Column/Post/LastModifiedAuthor.php:17
1263
  msgid "Last Modified Author"
1345
  #: classes/Settings/Column/Separator.php:26
1346
  #: classes/Settings/Column/User.php:141
1347
  msgid "None"
1348
+ msgstr "Ingen"
1349
 
1350
  #: classes/Settings/Column/PostLink.php:56 classes/Settings/Column/User.php:47
1351
  msgid "Link To"
1362
 
1363
  #: classes/Column/Media/MimeType.php:14
1364
  msgid "Mime Type"
1365
+ msgstr "Mime typ"
1366
 
1367
  #: classes/Column/Media/Height.php:16 classes/Settings/Column/Image.php:46
1368
  msgid "Height"
1390
 
1391
  #: classes/Column/Media/FileSize.php:14
1392
  msgid "File Size"
1393
+ msgstr "Filstorlek"
1394
 
1395
  #: classes/Column/Media/FileName.php:14
1396
  msgid "Filename"
1397
+ msgstr "Filnamn"
1398
 
1399
  #: classes/Settings/Column/ExifData.php:50 classes/Settings/Column/Post.php:80
1400
  #: classes/Settings/Column/Term.php:27
1401
  msgid "Title"
1402
+ msgstr "Rubrik"
1403
 
1404
  #: classes/Settings/Column/ExifData.php:49
1405
  msgid "Shutter Speed"
1455
 
1456
  #: classes/Column/Media/AttachedTo.php:14
1457
  msgid "Attached to Post"
1458
+ msgstr "Bifogad till inlägg"
1459
 
1460
  #: classes/Column/Media/AlternateText.php:14
1461
  msgid "Alt"
1462
  msgstr "Alt"
1463
 
1464
+ #: classes/Admin/Page/Columns.php:480
1465
  msgid "View"
1466
  msgstr "Visa"
1467
 
1566
 
1567
  #: classes/Column/Comment/WordCount.php:14 classes/Column/Post/WordCount.php:14
1568
  msgid "Word Count"
1569
+ msgstr "Antal ord"
1570
 
1571
  #: classes/Column/Comment/User.php:14 classes/ListScreen/User.php:12
1572
  #: classes/Settings/Column/CustomFieldType.php:84
1617
 
1618
  #: classes/Column/Comment/AuthorName.php:14
1619
  msgid "Author Name"
1620
+ msgstr "Författarnamn"
1621
 
1622
  #: classes/Column/Comment/AuthorIP.php:11
1623
  msgid "Author IP"
1629
 
1630
  #: classes/Column/Comment/AuthorAvatar.php:14
1631
  msgid "Avatar"
1632
+ msgstr "Profilbild"
1633
 
1634
  #: classes/Column/Comment/Approved.php:14 classes/Column/Comment/Status.php:26
1635
  #: classes/Settings/Column/CommentCount.php:43
1640
  msgid "Agent"
1641
  msgstr "Agent"
1642
 
1643
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1644
  msgid "Edit"
1645
  msgstr "Redigera"
1646
 
1650
  msgid "ID"
1651
  msgstr "ID"
1652
 
1653
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1654
  #: classes/Settings/Column/ActionIcons.php:22
1655
+ #: classes/Settings/Column/StatusIcon.php:24
1656
  #: classes/Settings/Column/Toggle.php:14
1657
  msgid "No"
1658
+ msgstr "Nej"
1659
 
1660
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1661
  #: classes/Settings/Column/ActionIcons.php:21
1662
+ #: classes/Settings/Column/StatusIcon.php:23
1663
  #: classes/Settings/Column/Toggle.php:13
1664
  msgid "Yes"
1665
+ msgstr "Ja"
1666
 
1667
  #: classes/Settings/Column/ActionIcons.php:27
1668
  msgid "Use icons instead of text for displaying the actions."
languages/codepress-admin-columns-zh_CN.po CHANGED
@@ -11,15 +11,59 @@ msgstr ""
11
  "Language: zh_CN\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/User.php:118
15
  msgid "User Nicename"
16
  msgstr ""
17
 
18
- #: classes/Admin/Page/Columns.php:607
19
  msgid "Send me the discount"
20
  msgstr ""
21
 
22
- #: classes/Admin/Page/Columns.php:572
23
  msgid "Prices starting from %s"
24
  msgstr ""
25
 
@@ -67,7 +111,8 @@ msgstr ""
67
  msgid "Auto"
68
  msgstr ""
69
 
70
- #: classes/Settings/Column/Term.php:33 classes/Settings/Column/User.php:37
 
71
  msgid "Display"
72
  msgstr ""
73
 
@@ -216,7 +261,7 @@ msgid "Uses the id from a %s to display information about it."
216
  msgstr ""
217
 
218
  #: classes/Settings/Column/CustomField.php:36
219
- #: classes/Settings/Column/Meta.php:63 classes/Settings/Column/Post.php:71
220
  msgid "Field"
221
  msgstr ""
222
 
@@ -241,11 +286,11 @@ msgstr ""
241
  msgid "This text will appear after the column value."
242
  msgstr ""
243
 
244
- #: classes/Helper/String.php:270
245
  msgid " and "
246
  msgstr ""
247
 
248
- #: classes/Helper/String.php:268
249
  msgid " or "
250
  msgstr ""
251
 
@@ -270,7 +315,7 @@ msgid "Shortlink"
270
  msgstr ""
271
 
272
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
273
- #: classes/Settings/Column/CustomFieldType.php:260
274
  msgid ", "
275
  msgstr ""
276
 
@@ -363,43 +408,43 @@ msgstr ""
363
  msgid "Help"
364
  msgstr ""
365
 
366
- #: classes/Admin/Page/Columns.php:849 classes/Admin/Page/Columns.php:884
367
  msgid "Close"
368
  msgstr ""
369
 
370
- #: classes/Admin/Page/Columns.php:757
371
  msgid "Clear all columns "
372
  msgstr ""
373
 
374
- #: classes/Admin/Page/Columns.php:664
375
  msgid "I'm using Admin Columns for WordPress!"
376
  msgstr ""
377
 
378
- #: classes/Admin/Page/Columns.php:606
379
  msgid "Your First Name"
380
  msgstr ""
381
 
382
- #: classes/Admin/Page/Columns.php:605
383
  msgid "Your Email"
384
  msgstr ""
385
 
386
- #: classes/Admin/Page/Columns.php:598
387
  msgid "Submit your email and we'll send you a discount for %s off."
388
  msgstr ""
389
 
390
- #: classes/Admin/Page/Columns.php:594
391
  msgid "Get %s Off!"
392
  msgstr ""
393
 
394
- #: classes/Admin/Page/Columns.php:561
395
  msgid "Extra Columns for:"
396
  msgstr ""
397
 
398
- #: classes/Admin/Page/Columns.php:547
399
  msgid "Edit your column content directly"
400
  msgstr ""
401
 
402
- #: classes/Admin/Page/Columns.php:535
403
  msgid "Pro"
404
  msgstr ""
405
 
@@ -468,31 +513,31 @@ msgstr ""
468
  msgid "Imported"
469
  msgstr ""
470
 
471
- #: classes/Admin/Page/Columns.php:577
472
  msgid "Learn more about Pro"
473
  msgstr ""
474
 
475
- #: classes/Admin/Page/Columns.php:549
476
  msgid "Import &amp; Export settings"
477
  msgstr ""
478
 
479
- #: classes/Admin/Page/Columns.php:548
480
  msgid "Create multiple columns sets"
481
  msgstr ""
482
 
483
- #: classes/Admin/Page/Columns.php:546
484
  msgid "Add filterable columns"
485
  msgstr ""
486
 
487
- #: classes/Admin/Page/Columns.php:545
488
  msgid "Add sortable columns"
489
  msgstr ""
490
 
491
- #: classes/Admin/Page/Columns.php:540
492
  msgid "Take Admin Columns to the next level:"
493
  msgstr ""
494
 
495
- #: classes/Admin/Page/Columns.php:535
496
  msgid "Upgrade to"
497
  msgstr ""
498
 
@@ -500,11 +545,7 @@ msgstr ""
500
  msgid "Get %s Off"
501
  msgstr ""
502
 
503
- #: classes/Column/Post/Excerpt.php:21
504
- msgid "Excerpt from content"
505
- msgstr ""
506
-
507
- #: classes/Admin/Page/Columns.php:447
508
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
509
  msgstr ""
510
 
@@ -512,7 +553,7 @@ msgstr ""
512
  msgid "Please visit the %s screen once to load all available columns"
513
  msgstr ""
514
 
515
- #: classes/Admin/Page/Columns.php:516
516
  msgid "Restore columns"
517
  msgstr ""
518
 
@@ -520,7 +561,7 @@ msgstr ""
520
  msgid "Settings for %s restored successfully."
521
  msgstr ""
522
 
523
- #: classes/Admin/Page/Columns.php:354
524
  msgid "View %s screen"
525
  msgstr ""
526
 
@@ -572,9 +613,9 @@ msgstr ""
572
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
573
  msgstr ""
574
 
575
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
576
  #. Plugin URI of the plugin/theme
577
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
578
  #. Author URI of the plugin/theme
579
  msgid "https://www.admincolumns.com"
580
  msgstr ""
@@ -619,15 +660,15 @@ msgstr "升级"
619
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
620
  msgstr ""
621
 
622
- #: classes/Admin/Page/Columns.php:353
623
  msgid "Settings for %s updated successfully."
624
  msgstr ""
625
 
626
- #: classes/Admin/Page/Columns.php:340
627
  msgid "You are trying to store the same settings for %s."
628
  msgstr "你正在尝试为 %s 保存同样设置"
629
 
630
- #: classes/ListScreen.php:642
631
  msgid "No columns settings available."
632
  msgstr "没有可用的列设置。"
633
 
@@ -681,75 +722,75 @@ msgstr ""
681
  msgid "Active"
682
  msgstr ""
683
 
684
- #: classes/Admin/Page/Columns.php:763
685
  msgid "Add Column"
686
  msgstr "添加列"
687
 
688
- #: classes/Admin/Page/Columns.php:743
689
  msgid "Drag and drop to reorder"
690
  msgstr "拖动排序"
691
 
692
- #: classes/Admin/Page/Columns.php:692
693
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
694
  msgstr "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
695
 
696
- #: classes/Admin/Page/Columns.php:688
697
  msgid "Check the <strong>Help</strong> section in the top-right screen."
698
  msgstr "查看右上角的 <strong>帮助</strong>"
699
 
700
- #: classes/Admin/Page/Columns.php:683
701
  msgid "Support"
702
  msgstr "支持"
703
 
704
- #: classes/Admin/Page/Columns.php:671
705
  msgid "Buy Pro"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:665
709
  msgid "Tweet"
710
  msgstr ""
711
 
712
- #: classes/Admin/Page/Columns.php:659
713
  msgid "Rate"
714
  msgstr ""
715
 
716
- #: classes/Admin/Page/Columns.php:654
717
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:651
721
  msgid "Woohoo! We're glad to hear that!"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:641
725
  msgid "Forums"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:636
729
  msgid "Docs"
730
  msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:631
733
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:628
737
  msgid "What's wrong? Need help? Let us know!"
738
  msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:618
741
  msgid "Are you happy with Admin Columns?"
742
  msgstr ""
743
 
744
- #: classes/Admin/Page/Columns.php:515
745
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
746
  msgstr ""
747
 
748
- #: classes/Admin/Page/Columns.php:504 classes/Admin/Page/Columns.php:761
749
  msgid "Update"
750
  msgstr ""
751
 
752
- #: classes/Admin/Page/Columns.php:493
753
  msgid "Store settings"
754
  msgstr "保存设置"
755
 
@@ -781,7 +822,7 @@ msgstr "这将删除所有列的设置和恢复到默认设置。"
781
  msgid "Restore Settings"
782
  msgstr "恢复设置"
783
 
784
- #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
785
  #: classes/Admin/Page/Settings.php:179
786
  msgid "Save"
787
  msgstr ""
@@ -978,7 +1019,7 @@ msgstr ""
978
  msgid "Admin Columns Pro"
979
  msgstr ""
980
 
981
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.1) #-#-#-#-#
982
  #. Plugin Name of the plugin/theme
983
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
984
  #: classes/Notice/Review.php:64
@@ -1033,7 +1074,7 @@ msgstr ""
1033
  msgid "Choose a column type."
1034
  msgstr "选择一个列类型。"
1035
 
1036
- #: classes/Admin/Page/Columns.php:851 classes/Admin/Page/Columns.php:886
1037
  msgid "Clone"
1038
  msgstr ""
1039
 
@@ -1140,7 +1181,7 @@ msgstr "姓氏"
1140
  msgid "Comment Count"
1141
  msgstr ""
1142
 
1143
- #: classes/Admin/Page/Columns.php:853 classes/Admin/Page/Columns.php:888
1144
  msgid "Remove"
1145
  msgstr "删除"
1146
 
@@ -1172,7 +1213,7 @@ msgstr ""
1172
  msgid "Sticky"
1173
  msgstr "置顶"
1174
 
1175
- #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:14
1176
  msgid "Status"
1177
  msgstr "状态"
1178
 
@@ -1416,7 +1457,7 @@ msgstr ""
1416
  msgid "Alt"
1417
  msgstr "Alt"
1418
 
1419
- #: classes/Admin/Page/Columns.php:479
1420
  msgid "View"
1421
  msgstr "查看"
1422
 
@@ -1595,7 +1636,7 @@ msgstr "已通过"
1595
  msgid "Agent"
1596
  msgstr "代理(Agent)"
1597
 
1598
- #: classes/Admin/Page/Columns.php:848 classes/Column/Link/Actions.php:39
1599
  msgid "Edit"
1600
  msgstr "编辑"
1601
 
@@ -1605,14 +1646,16 @@ msgstr "编辑"
1605
  msgid "ID"
1606
  msgstr "ID"
1607
 
1608
- #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:56
1609
  #: classes/Settings/Column/ActionIcons.php:22
 
1610
  #: classes/Settings/Column/Toggle.php:14
1611
  msgid "No"
1612
  msgstr ""
1613
 
1614
- #: classes/Admin/Page/Columns.php:621 classes/Helper/Icon.php:44
1615
  #: classes/Settings/Column/ActionIcons.php:21
 
1616
  #: classes/Settings/Column/Toggle.php:13
1617
  msgid "Yes"
1618
  msgstr ""
11
  "Language: zh_CN\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/StatusIcon.php:90
15
+ msgid "Password protected"
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/StatusIcon.php:85
19
+ msgid "Future"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/StatusIcon.php:82
23
+ msgid "Pending for review"
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/StatusIcon.php:79
27
+ msgid "Draft"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/StatusIcon.php:76
31
+ msgid "Published"
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/StatusIcon.php:73
35
+ msgid "Private"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/StatusIcon.php:29
39
+ msgid "Use an icon instead of text for displaying the status."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/StatusIcon.php:28
43
+ msgid "Use an icon?"
44
+ msgstr ""
45
+
46
+ #: classes/Helper/String.php:102
47
+ msgid "&hellip;"
48
+ msgstr ""
49
+
50
+ #: classes/Column/Post/Excerpt.php:21
51
+ msgid "Current excerpt is generated from the content."
52
+ msgstr ""
53
+
54
+ #: classes/Column/Post/Excerpt.php:21
55
+ msgid "Excerpt is missing."
56
+ msgstr ""
57
+
58
  #: classes/Settings/Column/User.php:118
59
  msgid "User Nicename"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Page/Columns.php:608
63
  msgid "Send me the discount"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Page/Columns.php:573
67
  msgid "Prices starting from %s"
68
  msgstr ""
69
 
111
  msgid "Auto"
112
  msgstr ""
113
 
114
+ #: classes/Settings/Column/Post.php:71 classes/Settings/Column/Term.php:33
115
+ #: classes/Settings/Column/User.php:37
116
  msgid "Display"
117
  msgstr ""
118
 
261
  msgstr ""
262
 
263
  #: classes/Settings/Column/CustomField.php:36
264
+ #: classes/Settings/Column/Meta.php:63
265
  msgid "Field"
266
  msgstr ""
267
 
286
  msgid "This text will appear after the column value."
287
  msgstr ""
288
 
289
+ #: classes/Helper/String.php:286
290
  msgid " and "
291
  msgstr ""
292
 
293
+ #: classes/Helper/String.php:284
294
  msgid " or "
295
  msgstr ""
296
 
315
  msgstr ""
316
 
317
  #: classes/Column/Post/Roles.php:33 classes/Column/Taxonomy.php:27
318
+ #: classes/Settings/Column/CustomFieldType.php:274
319
  msgid ", "
320
  msgstr ""
321
 
408
  msgid "Help"
409
  msgstr ""
410
 
411
+ #: classes/Admin/Page/Columns.php:850 classes/Admin/Page/Columns.php:885
412
  msgid "Close"
413
  msgstr ""
414
 
415
+ #: classes/Admin/Page/Columns.php:758
416
  msgid "Clear all columns "
417
  msgstr ""
418
 
419
+ #: classes/Admin/Page/Columns.php:665
420
  msgid "I'm using Admin Columns for WordPress!"
421
  msgstr ""
422
 
423
+ #: classes/Admin/Page/Columns.php:607
424
  msgid "Your First Name"
425
  msgstr ""
426
 
427
+ #: classes/Admin/Page/Columns.php:606
428
  msgid "Your Email"
429
  msgstr ""
430
 
431
+ #: classes/Admin/Page/Columns.php:599
432
  msgid "Submit your email and we'll send you a discount for %s off."
433
  msgstr ""
434
 
435
+ #: classes/Admin/Page/Columns.php:595
436
  msgid "Get %s Off!"
437
  msgstr ""
438
 
439
+ #: classes/Admin/Page/Columns.php:562
440
  msgid "Extra Columns for:"
441
  msgstr ""
442
 
443
+ #: classes/Admin/Page/Columns.php:548
444
  msgid "Edit your column content directly"
445
  msgstr ""
446
 
447
+ #: classes/Admin/Page/Columns.php:536
448
  msgid "Pro"
449
  msgstr ""
450
 
513
  msgid "Imported"
514
  msgstr ""
515
 
516
+ #: classes/Admin/Page/Columns.php:578
517
  msgid "Learn more about Pro"
518
  msgstr ""
519
 
520
+ #: classes/Admin/Page/Columns.php:550
521
  msgid "Import &amp; Export settings"
522
  msgstr ""
523
 
524
+ #: classes/Admin/Page/Columns.php:549
525
  msgid "Create multiple columns sets"
526
  msgstr ""
527
 
528
+ #: classes/Admin/Page/Columns.php:547
529
  msgid "Add filterable columns"
530
  msgstr ""
531
 
532
+ #: classes/Admin/Page/Columns.php:546
533
  msgid "Add sortable columns"
534
  msgstr ""
535
 
536
+ #: classes/Admin/Page/Columns.php:541
537
  msgid "Take Admin Columns to the next level:"
538
  msgstr ""
539
 
540
+ #: classes/Admin/Page/Columns.php:536
541
  msgid "Upgrade to"
542
  msgstr ""
543
 
545
  msgid "Get %s Off"
546
  msgstr ""
547
 
548
+ #: classes/Admin/Page/Columns.php:448
 
 
 
 
549
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
550
  msgstr ""
551
 
553
  msgid "Please visit the %s screen once to load all available columns"
554
  msgstr ""
555
 
556
+ #: classes/Admin/Page/Columns.php:517
557
  msgid "Restore columns"
558
  msgstr ""
559
 
561
  msgid "Settings for %s restored successfully."
562
  msgstr ""
563
 
564
+ #: classes/Admin/Page/Columns.php:335
565
  msgid "View %s screen"
566
  msgstr ""
567
 
613
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
614
  msgstr ""
615
 
616
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
617
  #. Plugin URI of the plugin/theme
618
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
619
  #. Author URI of the plugin/theme
620
  msgid "https://www.admincolumns.com"
621
  msgstr ""
660
  msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
661
  msgstr ""
662
 
663
+ #: classes/Admin/Page/Columns.php:355
664
  msgid "Settings for %s updated successfully."
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:342
668
  msgid "You are trying to store the same settings for %s."
669
  msgstr "你正在尝试为 %s 保存同样设置"
670
 
671
+ #: classes/ListScreen.php:652
672
  msgid "No columns settings available."
673
  msgstr "没有可用的列设置。"
674
 
722
  msgid "Active"
723
  msgstr ""
724
 
725
+ #: classes/Admin/Page/Columns.php:764
726
  msgid "Add Column"
727
  msgstr "添加列"
728
 
729
+ #: classes/Admin/Page/Columns.php:744
730
  msgid "Drag and drop to reorder"
731
  msgstr "拖动排序"
732
 
733
+ #: classes/Admin/Page/Columns.php:693
734
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
735
  msgstr "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
736
 
737
+ #: classes/Admin/Page/Columns.php:689
738
  msgid "Check the <strong>Help</strong> section in the top-right screen."
739
  msgstr "查看右上角的 <strong>帮助</strong>"
740
 
741
+ #: classes/Admin/Page/Columns.php:684
742
  msgid "Support"
743
  msgstr "支持"
744
 
745
+ #: classes/Admin/Page/Columns.php:672
746
  msgid "Buy Pro"
747
  msgstr ""
748
 
749
+ #: classes/Admin/Page/Columns.php:666
750
  msgid "Tweet"
751
  msgstr ""
752
 
753
+ #: classes/Admin/Page/Columns.php:660
754
  msgid "Rate"
755
  msgstr ""
756
 
757
+ #: classes/Admin/Page/Columns.php:655
758
  msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
759
  msgstr ""
760
 
761
+ #: classes/Admin/Page/Columns.php:652
762
  msgid "Woohoo! We're glad to hear that!"
763
  msgstr ""
764
 
765
+ #: classes/Admin/Page/Columns.php:642
766
  msgid "Forums"
767
  msgstr ""
768
 
769
+ #: classes/Admin/Page/Columns.php:637
770
  msgid "Docs"
771
  msgstr ""
772
 
773
+ #: classes/Admin/Page/Columns.php:632
774
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
775
  msgstr ""
776
 
777
+ #: classes/Admin/Page/Columns.php:629
778
  msgid "What's wrong? Need help? Let us know!"
779
  msgstr ""
780
 
781
+ #: classes/Admin/Page/Columns.php:619
782
  msgid "Are you happy with Admin Columns?"
783
  msgstr ""
784
 
785
+ #: classes/Admin/Page/Columns.php:516
786
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
787
  msgstr ""
788
 
789
+ #: classes/Admin/Page/Columns.php:505 classes/Admin/Page/Columns.php:762
790
  msgid "Update"
791
  msgstr ""
792
 
793
+ #: classes/Admin/Page/Columns.php:494
794
  msgid "Store settings"
795
  msgstr "保存设置"
796
 
822
  msgid "Restore Settings"
823
  msgstr "恢复设置"
824
 
825
+ #: classes/Admin/Page/Columns.php:506 classes/Admin/Page/Columns.php:763
826
  #: classes/Admin/Page/Settings.php:179
827
  msgid "Save"
828
  msgstr ""
1019
  msgid "Admin Columns Pro"
1020
  msgstr ""
1021
 
1022
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.0.3) #-#-#-#-#
1023
  #. Plugin Name of the plugin/theme
1024
  #: classes/Admin/Page/Columns.php:24 classes/Admin.php:130
1025
  #: classes/Notice/Review.php:64
1074
  msgid "Choose a column type."
1075
  msgstr "选择一个列类型。"
1076
 
1077
+ #: classes/Admin/Page/Columns.php:852 classes/Admin/Page/Columns.php:887
1078
  msgid "Clone"
1079
  msgstr ""
1080
 
1181
  msgid "Comment Count"
1182
  msgstr ""
1183
 
1184
+ #: classes/Admin/Page/Columns.php:854 classes/Admin/Page/Columns.php:889
1185
  msgid "Remove"
1186
  msgstr "删除"
1187
 
1213
  msgid "Sticky"
1214
  msgstr "置顶"
1215
 
1216
+ #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1217
  msgid "Status"
1218
  msgstr "状态"
1219
 
1457
  msgid "Alt"
1458
  msgstr "Alt"
1459
 
1460
+ #: classes/Admin/Page/Columns.php:480
1461
  msgid "View"
1462
  msgstr "查看"
1463
 
1636
  msgid "Agent"
1637
  msgstr "代理(Agent)"
1638
 
1639
+ #: classes/Admin/Page/Columns.php:849 classes/Column/Link/Actions.php:39
1640
  msgid "Edit"
1641
  msgstr "编辑"
1642
 
1646
  msgid "ID"
1647
  msgstr "ID"
1648
 
1649
+ #: classes/Admin/Page/Columns.php:623 classes/Helper/Icon.php:56
1650
  #: classes/Settings/Column/ActionIcons.php:22
1651
+ #: classes/Settings/Column/StatusIcon.php:24
1652
  #: classes/Settings/Column/Toggle.php:14
1653
  msgid "No"
1654
  msgstr ""
1655
 
1656
+ #: classes/Admin/Page/Columns.php:622 classes/Helper/Icon.php:44
1657
  #: classes/Settings/Column/ActionIcons.php:21
1658
+ #: classes/Settings/Column/StatusIcon.php:23
1659
  #: classes/Settings/Column/Toggle.php:13
1660
  msgid "Yes"
1661
  msgstr ""
languages/codepress-admin-columns.pot CHANGED
@@ -16,19 +16,19 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: ../codepress-admin-columns.php:338, ../classes/Admin/Help/CustomField.php:18, ../classes/Settings/Column/CustomFieldType.php:164, ../classes/Settings/Column/Image.php:67, ../classes/Settings/Column/Separator.php:19
20
  msgid "Default"
21
  msgstr ""
22
 
23
- #: ../codepress-admin-columns.php:340, ../classes/Settings/Column/Meta.php:110
24
  msgid "Custom Fields"
25
  msgstr ""
26
 
27
- #: ../codepress-admin-columns.php:341, ../classes/Settings/Column/CustomFieldType.php:149, ../classes/Settings/Column/Image.php:107
28
  msgid "Custom"
29
  msgstr ""
30
 
31
- #: ../codepress-admin-columns.php:497, ../classes/Settings/Column/CustomFieldType.php:76, ../classes/Settings/Column/PostType.php:19
32
  msgid "Post Type"
33
  msgstr ""
34
 
@@ -40,11 +40,11 @@ msgstr ""
40
  msgid "Admin Columns Settings"
41
  msgstr ""
42
 
43
- #: ../classes/Admin.php:126, ../classes/Notice/Review.php:60, ../classes/Admin/Page/Columns.php:20
44
  msgid "Admin Columns"
45
  msgstr ""
46
 
47
- #: ../classes/ListScreen.php:648
48
  msgid "No columns settings available."
49
  msgstr ""
50
 
@@ -64,7 +64,11 @@ msgstr ""
64
  msgid "Invalid method."
65
  msgstr ""
66
 
67
- #: ../classes/TableScreen.php:188, ../classes/Admin/Page/Settings.php:167
 
 
 
 
68
  msgid "Edit columns"
69
  msgstr ""
70
 
@@ -80,6 +84,14 @@ msgstr ""
80
  msgid "BuddyPress"
81
  msgstr ""
82
 
 
 
 
 
 
 
 
 
83
  #: ../classes/Addon/Pods.php:9
84
  msgid "Pods"
85
  msgstr ""
@@ -104,7 +116,7 @@ msgstr ""
104
  msgid "Discount is valid until %s"
105
  msgstr ""
106
 
107
- #: ../classes/Column/Actions.php:26, ../classes/Column/Link/Actions.php:10
108
  msgid "Actions"
109
  msgstr ""
110
 
@@ -112,6 +124,10 @@ msgstr ""
112
  msgid "Custom Field"
113
  msgstr ""
114
 
 
 
 
 
115
  #: ../classes/Column/Placeholder.php:31
116
  msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
117
  msgstr ""
@@ -128,78 +144,78 @@ msgstr ""
128
  msgid "Find out more"
129
  msgstr ""
130
 
131
- #: ../classes/Column/Taxonomy.php:13, ../classes/Settings/Column/Taxonomy.php:25
132
  msgid "Taxonomy"
133
  msgstr ""
134
 
135
- #: ../classes/Column/UsedByMenu.php:13
136
- msgid "Used by Menu"
137
- msgstr ""
138
-
139
- #: ../classes/Helper/Html.php:336
140
  msgid "Show %s more"
141
  msgstr ""
142
 
143
- #: ../classes/Helper/Html.php:340
144
  msgid "Hide"
145
  msgstr ""
146
 
147
- #: ../classes/Helper/String.php:280
148
  msgid " or "
149
  msgstr ""
150
 
151
- #: ../classes/Helper/String.php:282
152
- msgid " and "
153
- msgstr ""
154
-
155
- #: ../classes/Notice/Review.php:63, ../classes/Admin/Page/Addons.php:67
156
  msgid "Admin Columns Pro"
157
  msgstr ""
158
 
159
- #: ../classes/Notice/Review.php:72
160
  msgid "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s."
161
  msgstr ""
162
 
163
- #: ../classes/Notice/Review.php:76
164
  msgid "click here"
165
  msgstr ""
166
 
167
- #: ../classes/Notice/Review.php:80
168
  msgid "Leave a review!"
169
  msgstr ""
170
 
171
- #: ../classes/Notice/Review.php:81
172
  msgid "Permanently hide notice"
173
  msgstr ""
174
 
175
- #: ../classes/Notice/Review.php:88
176
  msgid "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s."
177
  msgstr ""
178
 
179
- #: ../classes/Notice/Review.php:90
180
  msgid "documentation page"
181
  msgstr ""
182
 
183
- #: ../classes/Notice/Review.php:94
184
  msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
185
  msgstr ""
186
 
187
- #: ../classes/Notice/Review.php:95
188
  msgid "our forums"
189
  msgstr ""
190
 
191
- #: ../classes/Notice/Review.php:99
192
  msgid "You can also find help on the %s, and %s."
193
  msgstr ""
194
 
195
- #: ../classes/Notice/Review.php:100
196
  msgid "Admin Columns forums on WordPress.org"
197
  msgstr ""
198
 
199
- #: ../classes/Notice/Review.php:101
200
  msgid "find answers to some frequently asked questions"
201
  msgstr ""
202
 
 
 
 
 
 
 
 
 
203
  #: ../templates/settings/section.php:16
204
  msgid "View more"
205
  msgstr ""
@@ -336,53 +352,57 @@ msgstr ""
336
  msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
337
  msgstr ""
338
 
339
- #: ../classes/Admin/Page/Addons.php:15
340
  msgid "Add-ons"
341
  msgstr ""
342
 
343
- #: ../classes/Admin/Page/Addons.php:49
344
  msgid "%s plugin needs to be installed for the add-on to work."
345
  msgstr ""
346
 
347
- #: ../classes/Admin/Page/Addons.php:51
348
  msgid "%s plugin is installed, but not active."
349
  msgstr ""
350
 
351
- #: ../classes/Admin/Page/Addons.php:54
352
  msgid "Click %s to activate the plugin."
353
  msgstr ""
354
 
355
- #: ../classes/Admin/Page/Addons.php:67
356
  msgid "%s add-on requires %s."
357
  msgid_plural "%s add-ons requires %s."
358
  msgstr[0] ""
359
  msgstr[1] ""
360
 
361
- #: ../classes/Admin/Page/Addons.php:100
362
  msgid "%s plugin successfully activated."
363
  msgstr ""
364
 
365
- #: ../classes/Admin/Page/Addons.php:101
366
  msgid "%s plugin successfully deactivated."
367
  msgstr ""
368
 
369
- #: ../classes/Admin/Page/Addons.php:106
370
  msgid "%s successfully activated."
371
  msgstr ""
372
 
373
- #: ../classes/Admin/Page/Addons.php:107
374
  msgid "%s successfully deactivated."
375
  msgstr ""
376
 
377
- #: ../classes/Admin/Page/Addons.php:116
378
  msgid "%s could not be activated."
379
  msgstr ""
380
 
381
- #: ../classes/Admin/Page/Addons.php:179
 
 
 
 
382
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
383
  msgstr ""
384
 
385
- #: ../classes/Admin/Page/Addons.php:179
386
  msgid "the addons page"
387
  msgstr ""
388
 
@@ -426,35 +446,35 @@ msgstr ""
426
  msgid "Get this add-on"
427
  msgstr ""
428
 
429
- #: ../classes/Admin/Page/Columns.php:69, ../classes/Admin/Page/Columns.php:271
430
  msgid "%s column is already present and can not be duplicated."
431
  msgstr ""
432
 
433
- #: ../classes/Admin/Page/Columns.php:70
434
  msgid "Invalid response."
435
  msgstr ""
436
 
437
- #: ../classes/Admin/Page/Columns.php:170
438
  msgid "Settings for %s restored successfully."
439
  msgstr ""
440
 
441
- #: ../classes/Admin/Page/Columns.php:244
442
  msgid "Please visit the %s screen once to load all available columns"
443
  msgstr ""
444
 
445
- #: ../classes/Admin/Page/Columns.php:324
446
  msgid "You need at least one column"
447
  msgstr ""
448
 
449
- #: ../classes/Admin/Page/Columns.php:331
450
  msgid "View %s screen"
451
  msgstr ""
452
 
453
- #: ../classes/Admin/Page/Columns.php:338
454
  msgid "You are trying to store the same settings for %s."
455
  msgstr ""
456
 
457
- #: ../classes/Admin/Page/Columns.php:351
458
  msgid "Settings for %s updated successfully."
459
  msgstr ""
460
 
@@ -792,7 +812,7 @@ msgstr ""
792
  msgid "Agent"
793
  msgstr ""
794
 
795
- #: ../classes/Column/Comment/Approved.php:10, ../classes/Settings/Column/CommentCount.php:39
796
  msgid "Approved"
797
  msgstr ""
798
 
@@ -820,6 +840,10 @@ msgstr ""
820
  msgid "Date GMT"
821
  msgstr ""
822
 
 
 
 
 
823
  #: ../classes/Column/Comment/Excerpt.php:10, ../classes/Column/Post/Content.php:10
824
  msgid "Content"
825
  msgstr ""
@@ -852,6 +876,12 @@ msgstr ""
852
  msgid "Word Count"
853
  msgstr ""
854
 
 
 
 
 
 
 
855
  #: ../classes/Column/Link/Description.php:10, ../classes/Column/Media/Description.php:12, ../classes/Column/User/Description.php:10
856
  msgid "Description"
857
  msgstr ""
@@ -877,22 +907,22 @@ msgid "Target"
877
  msgstr ""
878
 
879
  #: ../classes/Column/Media/AlternateText.php:10
880
- msgid "Alt"
881
  msgstr ""
882
 
883
- #: ../classes/Column/Media/AttachedTo.php:10
884
- msgid "Attached to Post"
885
  msgstr ""
886
 
887
- #: ../classes/Column/Media/AvailableSizes.php:14
888
- msgid "Available Sizes"
889
  msgstr ""
890
 
891
- #: ../classes/Column/Media/AvailableSizes.php:45
892
- msgid "full size"
893
  msgstr ""
894
 
895
- #: ../classes/Column/Media/Caption.php:10, ../classes/Settings/Column/ExifData.php:40
896
  msgid "Caption"
897
  msgstr ""
898
 
@@ -900,6 +930,14 @@ msgstr ""
900
  msgid "Dimensions"
901
  msgstr ""
902
 
 
 
 
 
 
 
 
 
903
  #: ../classes/Column/Media/ExifData.php:12
904
  msgid "EXIF Data"
905
  msgstr ""
@@ -932,16 +970,12 @@ msgstr ""
932
  msgid "Attachments"
933
  msgstr ""
934
 
935
- #: ../classes/Column/Post/AttachmentCount.php:12
936
- msgid "Attachment Count"
937
- msgstr ""
938
-
939
  #: ../classes/Column/Post/AuthorName.php:13
940
  msgid "Author"
941
  msgstr ""
942
 
943
  #: ../classes/Column/Post/BeforeMoreTag.php:10
944
- msgid "Before More Tag"
945
  msgstr ""
946
 
947
  #: ../classes/Column/Post/CommentCount.php:13, ../classes/Column/User/CommentCount.php:10
@@ -949,7 +983,11 @@ msgid "Comment Count"
949
  msgstr ""
950
 
951
  #: ../classes/Column/Post/CommentStatus.php:13
952
- msgid "Comment Status"
 
 
 
 
953
  msgstr ""
954
 
955
  #: ../classes/Column/Post/Depth.php:12
@@ -968,10 +1006,6 @@ msgstr ""
968
  msgid "Post Format"
969
  msgstr ""
970
 
971
- #: ../classes/Column/Post/Formats.php:20
972
- msgid "Standard"
973
- msgstr ""
974
-
975
  #: ../classes/Column/Post/LastModifiedAuthor.php:13
976
  msgid "Last Modified Author"
977
  msgstr ""
@@ -1004,7 +1038,7 @@ msgstr ""
1004
  msgid "Ping Status"
1005
  msgstr ""
1006
 
1007
- #: ../classes/Column/Post/Roles.php:10
1008
  msgid "Roles"
1009
  msgstr ""
1010
 
@@ -1025,7 +1059,7 @@ msgid "Sticky"
1025
  msgstr ""
1026
 
1027
  #: ../classes/Column/Post/TitleRaw.php:10
1028
- msgid "Title without actions"
1029
  msgstr ""
1030
 
1031
  #: ../classes/Column/User/DisplayName.php:10, ../classes/Settings/Column/User.php:106
@@ -1076,23 +1110,27 @@ msgstr ""
1076
  msgid "Use icons instead of text for displaying the actions."
1077
  msgstr ""
1078
 
1079
- #: ../classes/Settings/Column/BeforeAfter.php:36
 
 
 
 
1080
  msgid "Before"
1081
  msgstr ""
1082
 
1083
- #: ../classes/Settings/Column/BeforeAfter.php:37
1084
  msgid "This text will appear before the column value."
1085
  msgstr ""
1086
 
1087
- #: ../classes/Settings/Column/BeforeAfter.php:45
1088
  msgid "After"
1089
  msgstr ""
1090
 
1091
- #: ../classes/Settings/Column/BeforeAfter.php:46
1092
  msgid "This text will appear after the column value."
1093
  msgstr ""
1094
 
1095
- #: ../classes/Settings/Column/BeforeAfter.php:52
1096
  msgid "Display Options"
1097
  msgstr ""
1098
 
@@ -1104,44 +1142,44 @@ msgstr ""
1104
  msgid "Maximum number of characters"
1105
  msgstr ""
1106
 
1107
- #: ../classes/Settings/Column/CharacterLimit.php:24, ../classes/Settings/Column/WordLimit.php:31
1108
  msgid "Leave empty for no limit"
1109
  msgstr ""
1110
 
1111
- #: ../classes/Settings/Column/CommentCount.php:26
1112
  msgid "Comment status"
1113
  msgstr ""
1114
 
1115
- #: ../classes/Settings/Column/CommentCount.php:27
1116
  msgid "Select which comment status you like to display."
1117
  msgstr ""
1118
 
1119
- #: ../classes/Settings/Column/CommentCount.php:40
1120
  msgid "Pending"
1121
  msgstr ""
1122
 
1123
- #: ../classes/Settings/Column/CommentCount.php:41
1124
  msgid "Spam"
1125
  msgstr ""
1126
 
1127
- #: ../classes/Settings/Column/CommentCount.php:42
1128
  msgid "Trash"
1129
  msgstr ""
1130
 
1131
- #: ../classes/Settings/Column/CommentCount.php:48
1132
  msgid "Total"
1133
  msgstr ""
1134
 
1135
- #: ../classes/Settings/Column/CustomField.php:28
1136
- msgid "No custom fields available."
1137
  msgstr ""
1138
 
1139
- #: ../classes/Settings/Column/CustomField.php:28
1140
- msgid "Please create a %s item first."
1141
  msgstr ""
1142
 
1143
- #: ../classes/Settings/Column/CustomField.php:32, ../classes/Settings/Column/Meta.php:59
1144
- msgid "Field"
1145
  msgstr ""
1146
 
1147
  #: ../classes/Settings/Column/CustomFieldType.php:49
@@ -1228,6 +1266,10 @@ msgstr ""
1228
  msgid "The %s can be changed in %s."
1229
  msgstr ""
1230
 
 
 
 
 
1231
  #: ../classes/Settings/Column/Date.php:95
1232
  msgid "Learn more about %s."
1233
  msgstr ""
@@ -1236,46 +1278,54 @@ msgstr ""
1236
  msgid "date and time formatting"
1237
  msgstr ""
1238
 
1239
- #: ../classes/Settings/Column/Date.php:177
1240
  msgid "in %s"
1241
  msgstr ""
1242
 
1243
- #: ../classes/Settings/Column/ExifData.php:37
1244
  msgid "Aperture"
1245
  msgstr ""
1246
 
1247
- #: ../classes/Settings/Column/ExifData.php:38
1248
  msgid "Credit"
1249
  msgstr ""
1250
 
1251
- #: ../classes/Settings/Column/ExifData.php:39
1252
  msgid "Camera"
1253
  msgstr ""
1254
 
1255
- #: ../classes/Settings/Column/ExifData.php:41
1256
  msgid "Timestamp"
1257
  msgstr ""
1258
 
1259
- #: ../classes/Settings/Column/ExifData.php:42
1260
- msgid "Copyright EXIF"
1261
  msgstr ""
1262
 
1263
- #: ../classes/Settings/Column/ExifData.php:43
1264
  msgid "Focal Length"
1265
  msgstr ""
1266
 
1267
- #: ../classes/Settings/Column/ExifData.php:44
1268
  msgid "ISO"
1269
  msgstr ""
1270
 
1271
- #: ../classes/Settings/Column/ExifData.php:45
1272
  msgid "Shutter Speed"
1273
  msgstr ""
1274
 
1275
- #: ../classes/Settings/Column/ExifData.php:46
1276
  msgid "Title"
1277
  msgstr ""
1278
 
 
 
 
 
 
 
 
 
1279
  #: ../classes/Settings/Column/Image.php:37
1280
  msgid "Width in pixels"
1281
  msgstr ""
@@ -1340,8 +1390,44 @@ msgstr ""
1340
  msgid "No fields available."
1341
  msgstr ""
1342
 
1343
- #: ../classes/Settings/Column/Meta.php:106
1344
- msgid "Hidden Custom Fields"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1345
  msgstr ""
1346
 
1347
  #: ../classes/Settings/Column/Password.php:23
@@ -1368,22 +1454,40 @@ msgstr ""
1368
  msgid "Part of the file path to display"
1369
  msgstr ""
1370
 
1371
- #: ../classes/Settings/Column/Post.php:67, ../classes/Settings/Column/Term.php:29, ../classes/Settings/Column/User.php:33
1372
- msgid "Display"
 
 
 
 
 
 
 
 
1373
  msgstr ""
1374
 
1375
  #: ../classes/Settings/Column/PostLink.php:52, ../classes/Settings/Column/User.php:43
1376
  msgid "Link To"
1377
  msgstr ""
1378
 
1379
- #: ../classes/Settings/Column/PostLink.php:63
1380
  msgid "Edit Post Author"
1381
  msgstr ""
1382
 
1383
- #: ../classes/Settings/Column/PostLink.php:64
1384
  msgid "View Public Post Author Page"
1385
  msgstr ""
1386
 
 
 
 
 
 
 
 
 
 
 
1387
  #: ../classes/Settings/Column/Separator.php:20
1388
  msgid "Comma Separated"
1389
  msgstr ""
@@ -1408,14 +1512,30 @@ msgstr ""
1408
  msgid "Select a repeater sub field."
1409
  msgstr ""
1410
 
1411
- #: ../classes/Settings/Column/StatusIcon.php:24
1412
- msgid "Use an icon?"
1413
- msgstr ""
1414
-
1415
  #: ../classes/Settings/Column/StatusIcon.php:25
1416
  msgid "Use an icon instead of text for displaying the status."
1417
  msgstr ""
1418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1419
  #: ../classes/Settings/Column/Type.php:22
1420
  msgid "Choose a column type."
1421
  msgstr ""
@@ -1432,7 +1552,7 @@ msgstr ""
1432
  msgid "User Login"
1433
  msgstr ""
1434
 
1435
- #: ../classes/Settings/Column/User.php:111
1436
  msgid "User Email"
1437
  msgstr ""
1438
 
@@ -1444,7 +1564,15 @@ msgstr ""
1444
  msgid "User Nicename"
1445
  msgstr ""
1446
 
 
 
 
 
1447
  #: ../classes/Settings/Column/User.php:131
 
 
 
 
1448
  msgid "View Public Author Page"
1449
  msgstr ""
1450
 
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
+ #: ../codepress-admin-columns.php:316, ../classes/Admin/Help/CustomField.php:18, ../classes/Settings/Column/CustomFieldType.php:164, ../classes/Settings/Column/Image.php:67, ../classes/Settings/Column/Separator.php:19
20
  msgid "Default"
21
  msgstr ""
22
 
23
+ #: ../codepress-admin-columns.php:318
24
  msgid "Custom Fields"
25
  msgstr ""
26
 
27
+ #: ../codepress-admin-columns.php:319, ../classes/Settings/Column/CustomFieldType.php:149, ../classes/Settings/Column/Image.php:107
28
  msgid "Custom"
29
  msgstr ""
30
 
31
+ #: ../codepress-admin-columns.php:485, ../classes/Settings/Column/CustomFieldType.php:76, ../classes/Settings/Column/PostType.php:19
32
  msgid "Post Type"
33
  msgstr ""
34
 
40
  msgid "Admin Columns Settings"
41
  msgstr ""
42
 
43
+ #: ../classes/Admin.php:126, ../classes/Notice/Review.php:61, ../classes/Plugin/Updater.php:82, ../classes/Admin/Page/Columns.php:18
44
  msgid "Admin Columns"
45
  msgstr ""
46
 
47
+ #: ../classes/ListScreen.php:670
48
  msgid "No columns settings available."
49
  msgstr ""
50
 
64
  msgid "Invalid method."
65
  msgstr ""
66
 
67
+ #: ../classes/TableScreen.php:119, ../classes/TableScreen.php:121
68
+ msgid "Download"
69
+ msgstr ""
70
+
71
+ #: ../classes/TableScreen.php:210, ../classes/Admin/Page/Settings.php:167
72
  msgid "Edit columns"
73
  msgstr ""
74
 
84
  msgid "BuddyPress"
85
  msgstr ""
86
 
87
+ #: ../classes/Addon/EventsCalendar.php:9
88
+ msgid "The Events Calendar"
89
+ msgstr ""
90
+
91
+ #: ../classes/Addon/NinjaForms.php:9
92
+ msgid "Ninja Forms"
93
+ msgstr ""
94
+
95
  #: ../classes/Addon/Pods.php:9
96
  msgid "Pods"
97
  msgstr ""
116
  msgid "Discount is valid until %s"
117
  msgstr ""
118
 
119
+ #: ../classes/Column/Actions.php:15, ../classes/Column/Link/Actions.php:10
120
  msgid "Actions"
121
  msgstr ""
122
 
124
  msgid "Custom Field"
125
  msgstr ""
126
 
127
+ #: ../classes/Column/Menu.php:13
128
+ msgid "Menu"
129
+ msgstr ""
130
+
131
  #: ../classes/Column/Placeholder.php:31
132
  msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
133
  msgstr ""
144
  msgid "Find out more"
145
  msgstr ""
146
 
147
+ #: ../classes/Column/Taxonomy.php:13, ../classes/Settings/Column/Taxonomy.php:26
148
  msgid "Taxonomy"
149
  msgstr ""
150
 
151
+ #: ../classes/Helper/Html.php:377
 
 
 
 
152
  msgid "Show %s more"
153
  msgstr ""
154
 
155
+ #: ../classes/Helper/Html.php:381
156
  msgid "Hide"
157
  msgstr ""
158
 
159
+ #: ../classes/Helper/String.php:284
160
  msgid " or "
161
  msgstr ""
162
 
163
+ #: ../classes/Notice/Review.php:64, ../classes/Admin/Page/Addons.php:60
 
 
 
 
164
  msgid "Admin Columns Pro"
165
  msgstr ""
166
 
167
+ #: ../classes/Notice/Review.php:73
168
  msgid "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s."
169
  msgstr ""
170
 
171
+ #: ../classes/Notice/Review.php:77
172
  msgid "click here"
173
  msgstr ""
174
 
175
+ #: ../classes/Notice/Review.php:81
176
  msgid "Leave a review!"
177
  msgstr ""
178
 
179
+ #: ../classes/Notice/Review.php:82
180
  msgid "Permanently hide notice"
181
  msgstr ""
182
 
183
+ #: ../classes/Notice/Review.php:89
184
  msgid "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s."
185
  msgstr ""
186
 
187
+ #: ../classes/Notice/Review.php:91
188
  msgid "documentation page"
189
  msgstr ""
190
 
191
+ #: ../classes/Notice/Review.php:95
192
  msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
193
  msgstr ""
194
 
195
+ #: ../classes/Notice/Review.php:96
196
  msgid "our forums"
197
  msgstr ""
198
 
199
+ #: ../classes/Notice/Review.php:100
200
  msgid "You can also find help on the %s, and %s."
201
  msgstr ""
202
 
203
+ #: ../classes/Notice/Review.php:101
204
  msgid "Admin Columns forums on WordPress.org"
205
  msgstr ""
206
 
207
+ #: ../classes/Notice/Review.php:102
208
  msgid "find answers to some frequently asked questions"
209
  msgstr ""
210
 
211
+ #: ../classes/Plugin/Updater.php:83
212
+ msgid "We need to update your database to the latest version."
213
+ msgstr ""
214
+
215
+ #: ../classes/Plugin/Updater.php:85
216
+ msgid "Run the updater"
217
+ msgstr ""
218
+
219
  #: ../templates/settings/section.php:16
220
  msgid "View more"
221
  msgstr ""
352
  msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
353
  msgstr ""
354
 
355
+ #: ../classes/Admin/Page/Addons.php:8
356
  msgid "Add-ons"
357
  msgstr ""
358
 
359
+ #: ../classes/Admin/Page/Addons.php:42
360
  msgid "%s plugin needs to be installed for the add-on to work."
361
  msgstr ""
362
 
363
+ #: ../classes/Admin/Page/Addons.php:44
364
  msgid "%s plugin is installed, but not active."
365
  msgstr ""
366
 
367
+ #: ../classes/Admin/Page/Addons.php:47
368
  msgid "Click %s to activate the plugin."
369
  msgstr ""
370
 
371
+ #: ../classes/Admin/Page/Addons.php:60
372
  msgid "%s add-on requires %s."
373
  msgid_plural "%s add-ons requires %s."
374
  msgstr[0] ""
375
  msgstr[1] ""
376
 
377
+ #: ../classes/Admin/Page/Addons.php:93
378
  msgid "%s plugin successfully activated."
379
  msgstr ""
380
 
381
+ #: ../classes/Admin/Page/Addons.php:94
382
  msgid "%s plugin successfully deactivated."
383
  msgstr ""
384
 
385
+ #: ../classes/Admin/Page/Addons.php:99
386
  msgid "%s successfully activated."
387
  msgstr ""
388
 
389
+ #: ../classes/Admin/Page/Addons.php:100
390
  msgid "%s successfully deactivated."
391
  msgstr ""
392
 
393
+ #: ../classes/Admin/Page/Addons.php:109
394
  msgid "%s could not be activated."
395
  msgstr ""
396
 
397
+ #: ../classes/Admin/Page/Addons.php:109
398
+ msgid "Please visit the %s page."
399
+ msgstr ""
400
+
401
+ #: ../classes/Admin/Page/Addons.php:172
402
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
403
  msgstr ""
404
 
405
+ #: ../classes/Admin/Page/Addons.php:172
406
  msgid "the addons page"
407
  msgstr ""
408
 
446
  msgid "Get this add-on"
447
  msgstr ""
448
 
449
+ #: ../classes/Admin/Page/Columns.php:67, ../classes/Admin/Page/Columns.php:261
450
  msgid "%s column is already present and can not be duplicated."
451
  msgstr ""
452
 
453
+ #: ../classes/Admin/Page/Columns.php:68
454
  msgid "Invalid response."
455
  msgstr ""
456
 
457
+ #: ../classes/Admin/Page/Columns.php:160
458
  msgid "Settings for %s restored successfully."
459
  msgstr ""
460
 
461
+ #: ../classes/Admin/Page/Columns.php:234
462
  msgid "Please visit the %s screen once to load all available columns"
463
  msgstr ""
464
 
465
+ #: ../classes/Admin/Page/Columns.php:314
466
  msgid "You need at least one column"
467
  msgstr ""
468
 
469
+ #: ../classes/Admin/Page/Columns.php:321
470
  msgid "View %s screen"
471
  msgstr ""
472
 
473
+ #: ../classes/Admin/Page/Columns.php:328
474
  msgid "You are trying to store the same settings for %s."
475
  msgstr ""
476
 
477
+ #: ../classes/Admin/Page/Columns.php:341
478
  msgid "Settings for %s updated successfully."
479
  msgstr ""
480
 
812
  msgid "Agent"
813
  msgstr ""
814
 
815
+ #: ../classes/Column/Comment/Approved.php:10, ../classes/Settings/Column/CommentCount.php:42
816
  msgid "Approved"
817
  msgstr ""
818
 
840
  msgid "Date GMT"
841
  msgstr ""
842
 
843
+ #: ../classes/Column/Comment/DateGmt.php:16
844
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
845
+ msgstr ""
846
+
847
  #: ../classes/Column/Comment/Excerpt.php:10, ../classes/Column/Post/Content.php:10
848
  msgid "Content"
849
  msgstr ""
876
  msgid "Word Count"
877
  msgstr ""
878
 
879
+ #: ../classes/Column/Link/Actions.php:36
880
+ msgid ""
881
+ "You are about to delete this link '%s'\n"
882
+ " 'Cancel' to stop, 'OK' to delete."
883
+ msgstr ""
884
+
885
  #: ../classes/Column/Link/Description.php:10, ../classes/Column/Media/Description.php:12, ../classes/Column/User/Description.php:10
886
  msgid "Description"
887
  msgstr ""
907
  msgstr ""
908
 
909
  #: ../classes/Column/Media/AlternateText.php:10
910
+ msgid "Alternative Text"
911
  msgstr ""
912
 
913
+ #: ../classes/Column/Media/AvailableSizes.php:12
914
+ msgid "Available Sizes"
915
  msgstr ""
916
 
917
+ #: ../classes/Column/Media/AvailableSizes.php:31
918
+ msgid "original"
919
  msgstr ""
920
 
921
+ #: ../classes/Column/Media/AvailableSizes.php:47
922
+ msgid "Missing image file for size %s."
923
  msgstr ""
924
 
925
+ #: ../classes/Column/Media/Caption.php:10, ../classes/Settings/Column/ExifData.php:71
926
  msgid "Caption"
927
  msgstr ""
928
 
930
  msgid "Dimensions"
931
  msgstr ""
932
 
933
+ #: ../classes/Column/Media/Dimensions.php:24
934
+ msgid "Width : %s px"
935
+ msgstr ""
936
+
937
+ #: ../classes/Column/Media/Dimensions.php:24
938
+ msgid "Height : %s px"
939
+ msgstr ""
940
+
941
  #: ../classes/Column/Media/ExifData.php:12
942
  msgid "EXIF Data"
943
  msgstr ""
970
  msgid "Attachments"
971
  msgstr ""
972
 
 
 
 
 
973
  #: ../classes/Column/Post/AuthorName.php:13
974
  msgid "Author"
975
  msgstr ""
976
 
977
  #: ../classes/Column/Post/BeforeMoreTag.php:10
978
+ msgid "More Tag"
979
  msgstr ""
980
 
981
  #: ../classes/Column/Post/CommentCount.php:13, ../classes/Column/User/CommentCount.php:10
983
  msgstr ""
984
 
985
  #: ../classes/Column/Post/CommentStatus.php:13
986
+ msgid "Allow Comments"
987
+ msgstr ""
988
+
989
+ #: ../classes/Column/Post/DatePublished.php:10
990
+ msgid "Date Published"
991
  msgstr ""
992
 
993
  #: ../classes/Column/Post/Depth.php:12
1006
  msgid "Post Format"
1007
  msgstr ""
1008
 
 
 
 
 
1009
  #: ../classes/Column/Post/LastModifiedAuthor.php:13
1010
  msgid "Last Modified Author"
1011
  msgstr ""
1038
  msgid "Ping Status"
1039
  msgstr ""
1040
 
1041
+ #: ../classes/Column/Post/Roles.php:10, ../classes/Settings/Column/User.php:115
1042
  msgid "Roles"
1043
  msgstr ""
1044
 
1059
  msgstr ""
1060
 
1061
  #: ../classes/Column/Post/TitleRaw.php:10
1062
+ msgid "Title Only"
1063
  msgstr ""
1064
 
1065
  #: ../classes/Column/User/DisplayName.php:10, ../classes/Settings/Column/User.php:106
1110
  msgid "Use icons instead of text for displaying the actions."
1111
  msgstr ""
1112
 
1113
+ #: ../classes/Settings/Column/AttachmentDisplay.php:35, ../classes/Settings/Column/Post.php:70, ../classes/Settings/Column/Term.php:29, ../classes/Settings/Column/User.php:33
1114
+ msgid "Display"
1115
+ msgstr ""
1116
+
1117
+ #: ../classes/Settings/Column/BeforeAfter.php:54
1118
  msgid "Before"
1119
  msgstr ""
1120
 
1121
+ #: ../classes/Settings/Column/BeforeAfter.php:55
1122
  msgid "This text will appear before the column value."
1123
  msgstr ""
1124
 
1125
+ #: ../classes/Settings/Column/BeforeAfter.php:63
1126
  msgid "After"
1127
  msgstr ""
1128
 
1129
+ #: ../classes/Settings/Column/BeforeAfter.php:64
1130
  msgid "This text will appear after the column value."
1131
  msgstr ""
1132
 
1133
+ #: ../classes/Settings/Column/BeforeAfter.php:70
1134
  msgid "Display Options"
1135
  msgstr ""
1136
 
1142
  msgid "Maximum number of characters"
1143
  msgstr ""
1144
 
1145
+ #: ../classes/Settings/Column/CharacterLimit.php:24, ../classes/Settings/Column/NumberOfItems.php:26, ../classes/Settings/Column/WordLimit.php:31
1146
  msgid "Leave empty for no limit"
1147
  msgstr ""
1148
 
1149
+ #: ../classes/Settings/Column/CommentCount.php:29
1150
  msgid "Comment status"
1151
  msgstr ""
1152
 
1153
+ #: ../classes/Settings/Column/CommentCount.php:30
1154
  msgid "Select which comment status you like to display."
1155
  msgstr ""
1156
 
1157
+ #: ../classes/Settings/Column/CommentCount.php:43
1158
  msgid "Pending"
1159
  msgstr ""
1160
 
1161
+ #: ../classes/Settings/Column/CommentCount.php:44
1162
  msgid "Spam"
1163
  msgstr ""
1164
 
1165
+ #: ../classes/Settings/Column/CommentCount.php:45
1166
  msgid "Trash"
1167
  msgstr ""
1168
 
1169
+ #: ../classes/Settings/Column/CommentCount.php:51
1170
  msgid "Total"
1171
  msgstr ""
1172
 
1173
+ #: ../classes/Settings/Column/CustomField.php:13
1174
+ msgid "Custom field key"
1175
  msgstr ""
1176
 
1177
+ #: ../classes/Settings/Column/CustomField.php:17
1178
+ msgid "No custom fields available."
1179
  msgstr ""
1180
 
1181
+ #: ../classes/Settings/Column/CustomField.php:17
1182
+ msgid "Please create a %s item first."
1183
  msgstr ""
1184
 
1185
  #: ../classes/Settings/Column/CustomFieldType.php:49
1266
  msgid "The %s can be changed in %s."
1267
  msgstr ""
1268
 
1269
+ #: ../classes/Settings/Column/Date.php:94
1270
+ msgid "Custom:"
1271
+ msgstr ""
1272
+
1273
  #: ../classes/Settings/Column/Date.php:95
1274
  msgid "Learn more about %s."
1275
  msgstr ""
1278
  msgid "date and time formatting"
1279
  msgstr ""
1280
 
1281
+ #: ../classes/Settings/Column/Date.php:179
1282
  msgid "in %s"
1283
  msgstr ""
1284
 
1285
+ #: ../classes/Settings/Column/ExifData.php:68
1286
  msgid "Aperture"
1287
  msgstr ""
1288
 
1289
+ #: ../classes/Settings/Column/ExifData.php:69
1290
  msgid "Credit"
1291
  msgstr ""
1292
 
1293
+ #: ../classes/Settings/Column/ExifData.php:70
1294
  msgid "Camera"
1295
  msgstr ""
1296
 
1297
+ #: ../classes/Settings/Column/ExifData.php:72
1298
  msgid "Timestamp"
1299
  msgstr ""
1300
 
1301
+ #: ../classes/Settings/Column/ExifData.php:73
1302
+ msgid "Copyright"
1303
  msgstr ""
1304
 
1305
+ #: ../classes/Settings/Column/ExifData.php:74
1306
  msgid "Focal Length"
1307
  msgstr ""
1308
 
1309
+ #: ../classes/Settings/Column/ExifData.php:75
1310
  msgid "ISO"
1311
  msgstr ""
1312
 
1313
+ #: ../classes/Settings/Column/ExifData.php:76
1314
  msgid "Shutter Speed"
1315
  msgstr ""
1316
 
1317
+ #: ../classes/Settings/Column/ExifData.php:77
1318
  msgid "Title"
1319
  msgstr ""
1320
 
1321
+ #: ../classes/Settings/Column/ExifData.php:78
1322
+ msgid "Orientation"
1323
+ msgstr ""
1324
+
1325
+ #: ../classes/Settings/Column/ExifData.php:79
1326
+ msgid "Keywords"
1327
+ msgstr ""
1328
+
1329
  #: ../classes/Settings/Column/Image.php:37
1330
  msgid "Width in pixels"
1331
  msgstr ""
1390
  msgid "No fields available."
1391
  msgstr ""
1392
 
1393
+ #: ../classes/Settings/Column/Meta.php:66
1394
+ msgid "Field"
1395
+ msgstr ""
1396
+
1397
+ #: ../classes/Settings/Column/Meta.php:113
1398
+ msgid "Public"
1399
+ msgstr ""
1400
+
1401
+ #: ../classes/Settings/Column/Meta.php:114
1402
+ msgid "Hidden"
1403
+ msgstr ""
1404
+
1405
+ #: ../classes/Settings/Column/Meta.php:122
1406
+ msgid "Network Site:"
1407
+ msgstr ""
1408
+
1409
+ #: ../classes/Settings/Column/Meta.php:125
1410
+ msgid "current"
1411
+ msgstr ""
1412
+
1413
+ #: ../classes/Settings/Column/Meta.php:131
1414
+ msgid "Site Options"
1415
+ msgstr ""
1416
+
1417
+ #: ../classes/Settings/Column/MissingImageSize.php:22
1418
+ msgid "Include missing sizes?"
1419
+ msgstr ""
1420
+
1421
+ #: ../classes/Settings/Column/MissingImageSize.php:23
1422
+ msgid "Include sizes that are missing an image file."
1423
+ msgstr ""
1424
+
1425
+ #: ../classes/Settings/Column/NumberOfItems.php:25
1426
+ msgid "Number of Items"
1427
+ msgstr ""
1428
+
1429
+ #: ../classes/Settings/Column/NumberOfItems.php:26
1430
+ msgid "Maximum number of items"
1431
  msgstr ""
1432
 
1433
  #: ../classes/Settings/Column/Password.php:23
1454
  msgid "Part of the file path to display"
1455
  msgstr ""
1456
 
1457
+ #: ../classes/Settings/Column/PostFormatIcon.php:24, ../classes/Settings/Column/StatusIcon.php:24
1458
+ msgid "Use an icon?"
1459
+ msgstr ""
1460
+
1461
+ #: ../classes/Settings/Column/PostFormatIcon.php:25
1462
+ msgid "Use an icon instead of text for displaying."
1463
+ msgstr ""
1464
+
1465
+ #: ../classes/Settings/Column/PostFormatIcon.php:69
1466
+ msgid "Standard"
1467
  msgstr ""
1468
 
1469
  #: ../classes/Settings/Column/PostLink.php:52, ../classes/Settings/Column/User.php:43
1470
  msgid "Link To"
1471
  msgstr ""
1472
 
1473
+ #: ../classes/Settings/Column/PostLink.php:65
1474
  msgid "Edit Post Author"
1475
  msgstr ""
1476
 
1477
+ #: ../classes/Settings/Column/PostLink.php:66
1478
  msgid "View Public Post Author Page"
1479
  msgstr ""
1480
 
1481
+ #: ../classes/Settings/Column/PostLink.php:73
1482
+ msgctxt "post"
1483
+ msgid "Edit %s Author"
1484
+ msgstr ""
1485
+
1486
+ #: ../classes/Settings/Column/PostLink.php:74
1487
+ msgctxt "post"
1488
+ msgid "View Public %s Author Page"
1489
+ msgstr ""
1490
+
1491
  #: ../classes/Settings/Column/Separator.php:20
1492
  msgid "Comma Separated"
1493
  msgstr ""
1512
  msgid "Select a repeater sub field."
1513
  msgstr ""
1514
 
 
 
 
 
1515
  #: ../classes/Settings/Column/StatusIcon.php:25
1516
  msgid "Use an icon instead of text for displaying the status."
1517
  msgstr ""
1518
 
1519
+ #: ../classes/Settings/Column/StringLimit.php:20
1520
+ msgid "Maximum Length"
1521
+ msgstr ""
1522
+
1523
+ #: ../classes/Settings/Column/StringLimit.php:29
1524
+ msgid "No Maximum Length"
1525
+ msgstr ""
1526
+
1527
+ #: ../classes/Settings/Column/StringLimit.php:30
1528
+ msgid "Limit on Characters"
1529
+ msgstr ""
1530
+
1531
+ #: ../classes/Settings/Column/StringLimit.php:31
1532
+ msgid "Limit on Words"
1533
+ msgstr ""
1534
+
1535
+ #: ../classes/Settings/Column/Taxonomy.php:19
1536
+ msgid "No taxonomies available."
1537
+ msgstr ""
1538
+
1539
  #: ../classes/Settings/Column/Type.php:22
1540
  msgid "Choose a column type."
1541
  msgstr ""
1552
  msgid "User Login"
1553
  msgstr ""
1554
 
1555
+ #: ../classes/Settings/Column/User.php:111, ../classes/Settings/Column/User.php:130
1556
  msgid "User Email"
1557
  msgstr ""
1558
 
1564
  msgid "User Nicename"
1565
  msgstr ""
1566
 
1567
+ #: ../classes/Settings/Column/User.php:129
1568
+ msgid "Edit User Profile"
1569
+ msgstr ""
1570
+
1571
  #: ../classes/Settings/Column/User.php:131
1572
+ msgid "View User Posts"
1573
+ msgstr ""
1574
+
1575
+ #: ../classes/Settings/Column/User.php:132
1576
  msgid "View Public Author Page"
1577
  msgstr ""
1578
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: codepress, tschutter, davidmosterd, engelen, dungengronovius
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J
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: 4.5
6
- Tested up to: 4.8
7
- Stable tag: 3.0.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
 
@@ -218,6 +218,47 @@ You can find a list of the available actions and filters (and examples on how to
218
 
219
  == Changelog ==
220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  = 3.0.3 =
222
 
223
  Release Date: July 26th, 2017
@@ -243,6 +284,7 @@ Release Date: July 3rd, 2017
243
  Release Date: June 12th, 2017
244
 
245
  * [Improved] Clicking the toggle icons in the header of the column settings won't open the column settings anymore
 
246
  * [Improved] Fallback for the autoloader to work with lowercase files
247
  * [Improved] User Nicename available as an option for User display
248
  * [Fixed] Media Path now shows correct http protocol
@@ -268,6 +310,7 @@ Release Date: May 3rd, 2017
268
  * [Added] Filter for enabling a 'clear all columns' button to the setting page. 'ac/settings/enable_clear_columns_button'
269
  * [Added] New method for singleton for Admin Columns main class. 'ac()'
270
  * [Fixed] Comment Response column is no longer displayed in the table when viewing "Comments On".
 
271
 
272
  = 2.5.6.4 =
273
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J
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: 4.5
6
+ Tested up to: 4.8.1
7
+ Stable tag: 3.0.5
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
 
218
 
219
  == Changelog ==
220
 
221
+ = 3.0.5 =
222
+
223
+ Release Date: November 9th, 2017
224
+
225
+ * [Added] Events Calendar integration add-on is now available from the add-ons tab
226
+ * [Added] Added before/after fields for ID column
227
+ * [Changed] Changed Ajax value interface
228
+ * [Fixed] Fixed php warning on count() for php 7.2
229
+ * [Improved] Column interface for post relations
230
+ * [Improved] Attachment count column combined with Attachment column
231
+ * [Improved] Pro banner
232
+ * [Improved] Published date shows when a post is not published
233
+ * [Improved] Custom field keys for users are now grouped by site option
234
+ * [Improved] Added the AC_Plugin class as a more DRY approach to asking meta data about a plugin
235
+ * [Improved] Redone the way user preferences are stored. Less records and better compatible with Multisite.
236
+ * [Improved] Added the option to write database updates and apply them on a new version
237
+ * [Improved] Empty character is just a method now instead of getter/setter with a filter
238
+ * [Improved] Added AC_Services class to register services to a column on the fly (DI approach)
239
+ * [Improved] Custom fields for users are now grouped per network site
240
+
241
+ = 3.0.4 =
242
+
243
+ Release Date: August 17, 2017
244
+
245
+ * [Improved] Attachment column: you can now limit the number of items being displayed
246
+ * [Improved] Only apply before/after when the value is not empty
247
+ * [Improved] EXIF Data now have added before and after fields
248
+ * [Improved] Renamed Alt column to Alternative Text
249
+ * [Improved] Renamed Before More Tag column to More Tag
250
+ * [Improved] Renamed Comment Status column to Allow Comments
251
+ * [Improved] Renamed Title without actions column to Title Only
252
+ * [Improved] Available Sizes column for media now has the option to include missing file sizes
253
+ * [Improved] Added Orientation and Keywords to EXIF data column
254
+ * [Improved] Added a tooltip to the actions column
255
+ * [Improved] Date Published column now shows a status icon when the post has not yet been published
256
+ * [Improved] Post Formats column now has the option to show an icons
257
+ * [Improved] Author column can now display the role(s) of the author
258
+ * [Improved] Added many helper methods to ac_helper()
259
+ * [Removed] Removed the "Attached to Post" column. The column has been replaced by the "Uploaded to" column in WordPress 4.0
260
+ * [Fixed] Time difference option in the date column now uses the correct GMT offset
261
+
262
  = 3.0.3 =
263
 
264
  Release Date: July 26th, 2017
284
  Release Date: June 12th, 2017
285
 
286
  * [Improved] Clicking the toggle icons in the header of the column settings won't open the column settings anymore
287
+ * [Added] The Last Modified Author and Last Modified Date columns are now available for the Media overview
288
  * [Improved] Fallback for the autoloader to work with lowercase files
289
  * [Improved] User Nicename available as an option for User display
290
  * [Fixed] Media Path now shows correct http protocol
310
  * [Added] Filter for enabling a 'clear all columns' button to the setting page. 'ac/settings/enable_clear_columns_button'
311
  * [Added] New method for singleton for Admin Columns main class. 'ac()'
312
  * [Fixed] Comment Response column is no longer displayed in the table when viewing "Comments On".
313
+ * [Fixed] Post Roles columns works again
314
 
315
  = 2.5.6.4 =
316