Admin Columns - Version 2.4.7

Version Description

  • [Added] Comment Post column added
  • [Update] User Actions columns extends CPAC_Actions object
  • [Update] PHP export columns no longer uses global
  • [Added] Added "Link To" selection field for the author column
  • [Fixed] Date and Title column are labeled as Default column for posts
  • [Fixed] WPML columns will display the correct flag on the overview when switching language
Download this release

Release Info

Developer codepress
Plugin Icon 128x128 Admin Columns
Version 2.4.7
Comparing to
See all releases

Code changes from version 2.4.6 to 2.4.7

Files changed (134) hide show
  1. api.php +4 -4
  2. assets/css/admin-column.css +19 -1
  3. assets/css/admin-column.min.css +1 -1
  4. assets/css/column.min.css +1 -1
  5. assets/js/admin-settings.js +20 -6
  6. assets/js/admin-settings.min.js +1 -1
  7. classes/addons.php +6 -6
  8. classes/column.php +166 -53
  9. classes/column/acf-placeholder.php +5 -31
  10. classes/column/actions.php +2 -2
  11. classes/column/comment/ID.php +1 -1
  12. classes/column/comment/agent.php +1 -1
  13. classes/column/comment/approved.php +1 -1
  14. classes/column/comment/author-avatar.php +1 -1
  15. classes/column/comment/author-email.php +1 -1
  16. classes/column/comment/author-ip.php +1 -1
  17. classes/column/comment/author-name.php +1 -1
  18. classes/column/comment/author-url.php +1 -1
  19. classes/column/comment/author.php +1 -1
  20. classes/column/comment/date-gmt.php +1 -1
  21. classes/column/comment/date.php +1 -1
  22. classes/column/comment/excerpt.php +1 -1
  23. classes/column/comment/post.php +89 -0
  24. classes/column/comment/reply-to.php +1 -1
  25. classes/column/comment/type.php +1 -1
  26. classes/column/comment/user.php +1 -1
  27. classes/column/comment/word-count.php +1 -1
  28. classes/column/custom-field.php +17 -17
  29. classes/column/link/ID.php +1 -1
  30. classes/column/link/actions.php +1 -1
  31. classes/column/link/description.php +1 -1
  32. classes/column/link/image.php +1 -1
  33. classes/column/link/length.php +1 -1
  34. classes/column/link/notes.php +1 -1
  35. classes/column/link/owner.php +1 -1
  36. classes/column/link/rss.php +1 -1
  37. classes/column/link/target.php +1 -1
  38. classes/column/media/ID.php +1 -1
  39. classes/column/media/alternate-text.php +1 -1
  40. classes/column/media/attached-to.php +1 -1
  41. classes/column/media/available-sizes.php +2 -2
  42. classes/column/media/caption.php +1 -1
  43. classes/column/media/description.php +1 -1
  44. classes/column/media/dimensions.php +1 -1
  45. classes/column/media/exif-data.php +11 -11
  46. classes/column/media/file-name.php +1 -1
  47. classes/column/media/file-size.php +1 -1
  48. classes/column/media/full-path.php +6 -6
  49. classes/column/media/height.php +1 -1
  50. classes/column/media/mime-type.php +1 -1
  51. classes/column/media/width.php +1 -1
  52. classes/column/post/ID.php +1 -1
  53. classes/column/post/attachment-count.php +1 -1
  54. classes/column/post/attachment.php +1 -1
  55. classes/column/post/author-name.php +46 -2
  56. classes/column/post/before-moretag.php +1 -1
  57. classes/column/post/comment-count.php +7 -7
  58. classes/column/post/comment-status.php +1 -1
  59. classes/column/post/content.php +1 -1
  60. classes/column/post/depth.php +1 -1
  61. classes/column/post/estimated-reading-time.php +5 -5
  62. classes/column/post/excerpt.php +1 -1
  63. classes/column/post/featured-image.php +1 -1
  64. classes/column/post/formats.php +1 -1
  65. classes/column/post/last-modified-author.php +1 -1
  66. classes/column/post/modified.php +2 -2
  67. classes/column/post/order.php +1 -1
  68. classes/column/post/page-template.php +1 -1
  69. classes/column/post/parent.php +1 -1
  70. classes/column/post/path.php +1 -1
  71. classes/column/post/permalink.php +4 -4
  72. classes/column/post/ping-status.php +1 -1
  73. classes/column/post/roles.php +1 -1
  74. classes/column/post/shortcodes.php +1 -1
  75. classes/column/post/slug.php +1 -1
  76. classes/column/post/status.php +1 -1
  77. classes/column/post/sticky.php +1 -1
  78. classes/column/post/title-raw.php +1 -1
  79. classes/column/post/word-count.php +1 -1
  80. classes/column/taxonomy.php +2 -2
  81. classes/column/used-by-menu.php +2 -2
  82. classes/column/user/ID.php +1 -1
  83. classes/column/user/actions.php +6 -42
  84. classes/column/user/description.php +1 -1
  85. classes/column/user/display-name.php +1 -1
  86. classes/column/user/first-name.php +1 -1
  87. classes/column/user/last-name.php +1 -1
  88. classes/column/user/nickname.php +1 -1
  89. classes/column/user/post-count.php +2 -2
  90. classes/column/user/registered.php +1 -1
  91. classes/column/user/rich-editing.php +1 -1
  92. classes/column/user/url.php +1 -1
  93. classes/column/wc-placeholder.php +25 -0
  94. classes/review_notice.php +13 -13
  95. classes/settings.php +107 -122
  96. classes/storage_model.php +49 -76
  97. classes/storage_model/post.php +22 -6
  98. classes/storage_model/user.php +20 -0
  99. classes/third_party.php +5 -197
  100. classes/third_party/acf.php +22 -0
  101. classes/third_party/all-in-seo.php +13 -0
  102. classes/third_party/bbpress.php +21 -0
  103. classes/third_party/ninja_forms.php +19 -0
  104. classes/third_party/wpml.php +132 -0
  105. classes/third_party/yoast_seo.php +39 -0
  106. classes/upgrade.php +16 -16
  107. classes/utility.php +10 -11
  108. codepress-admin-columns.php +15 -8
  109. languages/codepress-admin-columns-ar.mo +0 -0
  110. languages/{cpac-ar.po → codepress-admin-columns-ar.po} +818 -861
  111. languages/codepress-admin-columns-da_DK.mo +0 -0
  112. languages/{cpac-da_DK.po → codepress-admin-columns-da_DK.po} +806 -850
  113. languages/codepress-admin-columns-es_ES.mo +0 -0
  114. languages/{cpac-es_ES.po → codepress-admin-columns-es_ES.po} +825 -888
  115. languages/codepress-admin-columns-fa_IR.mo +0 -0
  116. languages/{cpac-fa_IR.po → codepress-admin-columns-fa_IR.po} +826 -870
  117. languages/codepress-admin-columns-fr_FR.mo +0 -0
  118. languages/{cpac-fr_FR.po → codepress-admin-columns-fr_FR.po} +802 -865
  119. languages/codepress-admin-columns-hu_HU.mo +0 -0
  120. languages/{cpac-hu_HU.po → codepress-admin-columns-hu_HU.po} +807 -851
  121. languages/codepress-admin-columns-it_IT.mo +0 -0
  122. languages/{cpac-it_IT.po → codepress-admin-columns-it_IT.po} +840 -881
  123. languages/codepress-admin-columns-ja.mo +0 -0
  124. languages/{cpac-ja.po → codepress-admin-columns-ja.po} +811 -855
  125. languages/codepress-admin-columns-nl_NL.mo +0 -0
  126. languages/{cpac-nl_NL.po → codepress-admin-columns-nl_NL.po} +846 -888
  127. languages/codepress-admin-columns-pl_PL.mo +0 -0
  128. languages/{cpac-pl_PL.po → codepress-admin-columns-pl_PL.po} +893 -858
  129. languages/codepress-admin-columns-pt_BR.mo +0 -0
  130. languages/{cpac-pt_BR.po → codepress-admin-columns-pt_BR.po} +846 -890
  131. languages/codepress-admin-columns-ru_RU.mo +0 -0
  132. languages/{cpac-ru_RU.po → codepress-admin-columns-ru_RU.po} +829 -871
  133. languages/codepress-admin-columns-sv_SE.mo +0 -0
  134. languages/{cpac-sv_SE.po → codepress-admin-columns-sv_SE.po} +241 -199
api.php CHANGED
@@ -18,16 +18,16 @@
18
  * @param array $columns List of columns ([column_name] => [column_options])
19
  */
20
  function ac_register_columns( $storage_model, $columns ) {
21
- global $_cac_exported_columns;
22
 
23
  $storage_models = (array) $storage_model;
24
 
25
  foreach ( $storage_models as $storage_model ) {
26
- if ( isset( $_cac_exported_columns[ $storage_model ] ) ) {
27
- $_cac_exported_columns[ $storage_model ] = array_merge( $_cac_exported_columns[ $storage_model ], $columns );
28
  }
29
  else {
30
- $_cac_exported_columns[ $storage_model ] = $columns;
31
  }
32
  }
33
  }
18
  * @param array $columns List of columns ([column_name] => [column_options])
19
  */
20
  function ac_register_columns( $storage_model, $columns ) {
21
+ global $cpac;
22
 
23
  $storage_models = (array) $storage_model;
24
 
25
  foreach ( $storage_models as $storage_model ) {
26
+ if ( isset( $cpac->exported_columns[ $storage_model ] ) ) {
27
+ $cpac->exported_columns[ $storage_model ] = array_merge( $cpac->exported_columns[ $storage_model ], $columns );
28
  }
29
  else {
30
+ $cpac->exported_columns[ $storage_model ] = $columns;
31
  }
32
  }
33
  }
assets/css/admin-column.css CHANGED
@@ -325,6 +325,9 @@ h2.cpac-nav-tab-wrapper {
325
  border: none;
326
  background: #fcfcfc;
327
  }
 
 
 
328
  .cpac-column .column-form table tr td {
329
  vertical-align: top;
330
  border: none;
@@ -625,7 +628,7 @@ h2.cpac-nav-tab-wrapper {
625
  -moz-border-right-colors: none;
626
  -moz-border-top-colors: none;
627
  background: none repeat scroll 0 0 transparent;
628
- border-color: #dfdfdf -moz-use-text-color -moz-use-text-color;
629
  border-image: none;
630
  border-right: 0 none;
631
  border-style: solid none none;
@@ -788,6 +791,10 @@ h2.cpac-nav-tab-wrapper {
788
  color: #fff;
789
  text-decoration: none;
790
  }
 
 
 
 
791
  .columns-right .sidebox#pro-version .inside p {
792
  color: #fff;
793
  font-size: 12px;
@@ -800,6 +807,17 @@ h2.cpac-nav-tab-wrapper {
800
  font-size: 15px;
801
  text-decoration: none;
802
  }
 
 
 
 
 
 
 
 
 
 
 
803
  .columns-right .sidebox#direct-feedback #feedback-support,
804
  .columns-right .sidebox#direct-feedback #feedback-rate {
805
  display: none;
325
  border: none;
326
  background: #fcfcfc;
327
  }
328
+ .cpac-column .column-form table tr.hide {
329
+ display: none;
330
+ }
331
  .cpac-column .column-form table tr td {
332
  vertical-align: top;
333
  border: none;
628
  -moz-border-right-colors: none;
629
  -moz-border-top-colors: none;
630
  background: none repeat scroll 0 0 transparent;
631
+ border-color: #DFDFDF -moz-use-text-color -moz-use-text-color;
632
  border-image: none;
633
  border-right: 0 none;
634
  border-style: solid none none;
791
  color: #fff;
792
  text-decoration: none;
793
  }
794
+ .columns-right .sidebox#pro-version .inside ul li.acf a {
795
+ background-color: #5ee8bf;
796
+ color: #808080;
797
+ }
798
  .columns-right .sidebox#pro-version .inside p {
799
  color: #fff;
800
  font-size: 12px;
807
  font-size: 15px;
808
  text-decoration: none;
809
  }
810
+ .columns-right .sidebox#add-acf {
811
+ background-color: #5ee8bf;
812
+ }
813
+ .columns-right .sidebox#add-acf h3 {
814
+ padding: 0;
815
+ }
816
+ .columns-right .sidebox#add-acf h3 a {
817
+ color: #fff;
818
+ text-decoration: none;
819
+ font-size: 15px;
820
+ }
821
  .columns-right .sidebox#direct-feedback #feedback-support,
822
  .columns-right .sidebox#direct-feedback #feedback-rate {
823
  display: none;
assets/css/admin-column.min.css CHANGED
@@ -1 +1 @@
1
- .button.loading span,.cpac-column .comment-grey-bubble,.icon-no,.icon-yes{height:16px;width:16px}.button.loading span,.cpac-settings-link,.icon-no,.icon-yes,a.help{display:inline-block}#cpac a:active,#cpac a:focus{outline:0}#icon-codepress-admin-columns{background:url(../images/icon.png)no-repeat}.cpac-settings-link{float:right;margin:12px 14px 5px 0;background:url(../images/settings.png)no-repeat;padding-left:20px;text-decoration:none;line-height:16px}.cpac-settings-link.current{font-weight:700}.rtl .cpac-settings-link{float:left;margin:12px 0 5px 14px;padding-right:20px;padding-left:0}.cpac-menu,h2.cpac-nav-tab-wrapper{margin-bottom:10px}a.help{background:url(../images/help.png)no-repeat;width:16px;height:16px}.button.loading{padding-right:25px;position:relative}.rtl .button.loading{padding-left:25px;padding-right:0}.button.loading span{position:absolute;top:2px;right:6px;background:url(../images/loading.gif)right 50% no-repeat}.rtl .button.loading span{left:6px;right:auto}.cpac_message.error.warning{border-left:4px solid #ffba00}.icon-yes{background:url(../images/yes.png)no-repeat;position:relative;top:2px}.icon-no{background:url(../images/no.png)no-repeat;position:relative;top:2px}.cpac-column .comment-grey-bubble:before{content:'\f101';font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;left:0;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.rtl .cpac-column .comment-grey-bubble:before{right:0;left:auto}.cpac-menu{clear:both;overflow:hidden}.cpac-menu .subsubsub{white-space:normal;width:100%;margin:0 14px 0 0}.cpac-menu .subsubsub li.first{font-weight:700;min-width:100px}.columns-container{margin-right:300px;max-width:700px}.columns-container .columns-left{float:left;width:100%}.columns-container .columns-right{float:right;margin-right:-300px;width:280px}.columns-container .columns-right .columns-right-inside.fixed{position:fixed;top:40px;width:280px}.ui-sortable-helper{-webkit-box-shadow:1px 3px 6px 0 rgba(1,1,1,.4);box-shadow:1px 3px 6px 0 rgba(1,1,1,.4)}.columns-left .cpac-boxes .cpac-columns form,.columns-right .sidebox{box-shadow:0 1px 3px rgba(0,0,0,.1)}.ui-sortable-helper .column-meta{border-width:1px}.cpac-placeholder{visibility:visible!important;border-top:1px solid #dfdfdf;padding:5px 4px 7px 0}.cpac-placeholder .inner-placeholder{border:1px dashed grey;background:#eee;width:100%;height:100%}.cpac-placeholder :first-child{border:none}.cpac-column .column-meta{border-style:solid;border-color:#dfdfdf;border-width:1px 1px 0;background:#fcfcfc}.cpac-column .column-meta:nth-child(2n) .column-meta{background:#f9f9f9}.cpac-column .column-meta img{margin-right:3px}.cpac-column .column-meta table{border:none;background:0 0;border-radius:0}.cpac-column .column-meta table tr td{vertical-align:top;height:18px;border:none solid transparent;padding:11px 8px;border-width:1px 0 0}.cpac-column .column-meta table tr td.column_sort{width:10px;background:url(../images/drag.png)8px 8px no-repeat;cursor:move}.cpac-column .column-meta table tr td.column_label{width:70%;font-weight:700;vertical-align:middle;position:relative}.cpac-column .column-meta table tr td.column_label .inner{position:relative;overflow:hidden;height:18px}.cpac-column .column-meta table tr td.column_label .inner>a{color:#5a5a5a;padding:0 4px}.cpac-column .column-meta table tr td.column_label .inner>a:hover{color:#333}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button,.cpac-column .column-meta table tr td.column_label .inner>a.remove-button{display:none;color:#a00;text-decoration:none;text-shadow:none;font-weight:400;margin-left:5px;font-size:12px}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button:hover,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button:hover,.cpac-column .column-meta table tr td.column_label .inner>a.remove-button:hover{color:red}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button{color:#0074a2}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button:hover,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button:hover{color:#2ea2cc}.cpac-column .column-meta table tr td.column_label .inner .meta{display:inline-block;float:right;font-weight:400;color:#b2b2b2;font-size:12px}.cpac-column .column-meta table tr td.column_label .inner .meta span{cursor:pointer}.cpac-column .column-meta table tr td.column_label .inner .meta span.width{margin-right:5px;cursor:auto;color:#737373}.cpac-column .column-meta table tr td.column_label span.vers{float:left}.cpac-column .column-meta table tr td.column_type{width:auto;min-width:120px;text-align:right;vertical-align:middle;color:#999;padding-right:0}.cpac-column .column-meta table tr td.column_type .inner{height:18px;overflow:hidden}.cpac-column .column-meta table tr td.column_type .inner a{color:#999}.cpac-column .column-meta table tr td.column_edit{width:38px;min-width:38px;background:url(../images/arrow.png)23px 18px no-repeat;cursor:pointer}.cpac-column .column-meta:hover .column_label .inner>a.clone-button,.cpac-column .column-meta:hover .column_label .inner>a.edit-button,.cpac-column .column-meta:hover .column_label .inner>a.remove-button{display:inline-block}.cpac-column .column-meta span.vers{padding-top:2px}.cpac-column .column-meta span.vers .comment-grey-bubble{float:right}.cpac-column .column-form{display:none;border-width:1px 1px 0;border-style:solid;border-color:#dfdfdf;position:relative}.cpac-column .column-form table{border:none;background:#fcfcfc}.cpac-column .column-form table tr td{vertical-align:top;border:none;padding:8px;background:#fff;border-top:1px solid #F5F5F5}.cpac-column .column-form table tr td input[type=text],.cpac-column .column-form table tr td select{width:99.95%}.cpac-column .column-form table tr td input[type=text].small,.cpac-column .column-form table tr td select.small{width:100px}.cpac-column .column-form table tr td span.suffix{line-height:40px;color:grey}.cpac-column .column-form table tr td select optgroup:nth-child(2n){background:#F9F9F9}.cpac-column .column-form table tr td.label{position:relative;overflow:visible;background:#f5f5f5;border-right:1px solid #E1E1E1;vertical-align:top;width:34%;border-top:1px solid #F0F0F0}.column-footer,.wp-pointer-content{overflow:hidden}.cpac-column .column-form table tr td.label label{font-weight:700;color:#333;display:block;position:relative}.cpac-column .column-form table tr td.label p{color:#666;display:block;font-size:12px;font-style:normal;line-height:16px;margin:0!important}.cpac-column .column-form table tr td.label p.description{display:none;position:absolute;z-index:99;top:30px;left:0;background:#eaf2fa;border-radius:5px;border:1px solid #c7d7e2;padding:5px 8px!important;font-weight:400}.cpac-column .column-form table tr td.label p.description em{display:block;color:#999}.cpac-column .column-form table tr td.label .info{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.cpac-column .column-form table tr td.label .info:before{position:absolute;z-index:1;right:10px;top:50%;margin-top:-7px;content:'';display:block;border-radius:32px;border:1px solid #E6E6E6;width:12px;height:12px}.cpac-column .column-form table tr td.label .info:after{position:absolute;z-index:1;right:10px;top:50%;margin-top:-6px;content:'?';display:block;width:14px;height:14px;color:#E6E6E6;font:700 10px Arial;text-align:center;vertical-align:middle;line-height:14px}.cpac-column .column-form table tr td.input label{padding-left:10px;padding-right:0}.cpac-column .column-form table tr td.input div.msg{margin-top:5px;display:none;color:#333;padding:6px 8px;background-color:#ffebe8;border:1px solid #fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cpac-column .column-form table tr td.input .section{padding:12px}.cpac-column .column-form table tr.column_width .input{position:relative}.cpac-column .column-form table tr.column_width .input div.description{font-size:11px;width:54px;position:absolute;left:10px;text-align:middle}.cpac-column .column-form table tr.column_width .input div.description input{background:#efefef;border:none;height:20px;line-height:20px;text-align:right;width:36px;font-size:12px}.cpac-column .column-form table tr.column_width .input div.width-slider{margin-left:60px;margin-right:100px;position:relative;margin-top:4px}.cpac-column .column-form table tr.column_width .input div.width-slider .ui-slider-handle{cursor:ew-resize}.cpac-column .column-form table tr.column_width .input div.unit-select{position:absolute;top:8px;right:10px;width:90px;text-align:right}.cpac-column .column-form table tr.column_width .input div.unit-select label{padding-left:5px}.cpac-column .column-form table tr.column_image_size{border:10px solid red}.cpac-column .column-form table tr.column_image_size td.input label.custom-size{display:inline-block;margin-top:4px;margin-bottom:4px}.cpac-column .column-form table tr.column_image_size td.input label.custom-size input{margin-right:3px}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size{display:inline-block}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h.hidden,.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w.hidden,.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .hidden{display:none}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h,.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w{margin:0}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h input[type=text],.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w input[type=text]{margin-right:3px;width:40px!important}.cpac-column .column-form table tr.column_action td{background:#f9f9f9}.cpac-column .column-form table tr.column_action td p{margin:0}.cpac-column .column-form table tr.column_action td p a.remove-button{color:#a00;text-decoration:none;text-shadow:none;font-weight:400;margin-left:5px;font-size:12px;padding:0 5px}.cpac-column .column-form table tr.column_action td p a.remove-button:hover{color:#fff;background:red}.cpac-column .column-form table tr:first-child td{border-top:none}.cpac-column.loading .column-form>.spinner{position:absolute;left:50%;top:50%;z-index:200;margin-left:-10px;margin-top:-10px;display:block}.cpac-column.loading .column-form:before{content:'';position:absolute;width:100%;height:100%;background:#FFF;z-index:100;opacity:.5}.cpac-column.opened .column-meta{background-color:#c7c7c7;background-image:-ms-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:-moz-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:-o-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:-webkit-gradient(linear,left top,left bottom,from(#e9e9e9),to(#c7c7c7));background-image:-webkit-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:linear-gradient(top,#e9e9e9,#c7c7c7);border-color:#aeaeae}.cpac-column.opened .column-meta table{background:0 0}.cpac-column.opened .column-meta table td{border-color:#f8f8f8;color:#333;text-shadow:0 1px 0 #FFF}.cpac-column.opened .column-meta table td a{color:#333;text-shadow:0 1px 0 #FFF}.cpac-column.opened .column-meta table td.column_sort{background-position:8px -39px}.cpac-column.opened .column-meta table td.column_label .inner .meta span{color:grey;text-shadow:none}.cpac-column.opened .column-meta table td.column_type{color:#5C5C5C}.column-footer{background:#EAF2FA;border:1px solid #c7d7e2;min-height:26px;padding:8px}.column-footer .order-message{background:url(../images/order_arrow.png)no-repeat;color:#7A9BBE;float:left;font-family:Comic Sans MS,sans-serif;font-size:11px;height:13px;line-height:1em;margin-left:4px;padding:7px 0 0 22px;text-shadow:0 1px 0 #FFF;display:inline-block}.column-footer .button-container{float:right;display:inline-block;margin-top:-5px}.column-footer .button-container a{display:inline-block;margin-top:5px}.cpac-content-body hr{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:none;border-color:#dfdfdf -moz-use-text-color -moz-use-text-color;border-image:none;border-right:0 none;border-style:solid none none;border-width:1px 0 0;clear:both;margin:30px 0;opacity:.2}#cpac-welcome.about-wrap div.error{display:block!important}.cpac-alert{display:inline-block;background:#FCF8E3;border:1px solid #FBEED5;border-radius:4px;color:#C09853;margin:20px 0;padding:16px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cpac-alert p{margin:0}.cpac-alert.cpac-alert-success{background-color:#DFF0D8;border-color:#D6E9C6;color:#468847}.cpac-alert.cpac-alert-error{background-color:#F2DEDE;border-color:#EED3D7;color:#B94A48}.cpac-alert a.button-primary{height:28px;line-height:28px;display:inline-block}#cpac-download-add-ons-table{max-width:600px}.wp-core-ui .button-large{height:40px;line-height:40px;font-size:16px;padding:0 15px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.cac-notification.updated{border-left-color:#0071aa}.cac-notification.updated .learnmore{float:right}.cac-notification.updated .learnmore:after{content:"\f139";font:400 20px/1 dashicons;float:right}.columns-right{margin-top:54px}.columns-right .sidebox{background:#FFF;border:1px solid #E1E1E1;border-radius:0;position:relative;margin-bottom:14px}.columns-right .sidebox h3{padding:10px;margin:0}.columns-right .sidebox h3.title{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:15px;font-weight:400;line-height:1;margin:0;padding:7px 10px;background:#f1f1f1;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9);border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff;border-bottom-style:solid;border-bottom-width:1px}.columns-right .sidebox .inside{padding:10px}.columns-right .sidebox .inside p{margin-top:0}.columns-right .sidebox#form-actions .form-reset{border-bottom:1px solid #F5F5F5;padding:8px}.columns-right .sidebox#form-actions .reset-column-type{text-decoration:none;color:#BC0B0B;line-height:25px;display:inline-block}.columns-right .sidebox#form-actions .form-update{padding:8px;overflow:hidden}.columns-right .sidebox#form-actions .submit-update{display:block;width:100%;height:28px;line-height:28px;text-align:center}.columns-right .sidebox#pro-version .cta{background:url(../images/get_the_addon.png)no-repeat;background-size:cover}.columns-right .sidebox#pro-version .padding-box{padding:8px 15px 0}.columns-right .sidebox#pro-version h3 a{color:#fff;font-size:19px;text-decoration:none;font-weight:400;margin-top:6px}.columns-right .sidebox#pro-version .inside ul{margin:0 0 10px}.columns-right .sidebox#pro-version .inside ul li{margin:0;padding:0}.columns-right .sidebox#pro-version .inside ul li a{display:inline-block;min-height:24px;font-size:19px;line-height:24px;margin-bottom:1px;padding:0 5px;background:#000;color:#fff;text-decoration:none}.columns-right .sidebox#pro-version .inside p{color:#fff;font-size:12px}.columns-right .sidebox#pro-version .inside p a{color:#fff;display:inline-block;background:#a4c518;padding:0 2px;font-size:15px;text-decoration:none}.columns-right .sidebox#direct-feedback #feedback-rate,.columns-right .sidebox#direct-feedback #feedback-support{display:none}.columns-right .sidebox#direct-feedback .inside>a{border-radius:4px;border:1px solid #CCC;width:48%;height:64px;text-align:center;line-height:64px;font-weight:700;color:#222;display:inline-block;text-decoration:none}.columns-right .sidebox#direct-feedback .inside>a:hover{background:#FAFAFA}.columns-right .sidebox#direct-feedback .inside form textarea{width:100%;height:120px}.columns-right .sidebox#direct-feedback .inside form input[type=submit]{float:right;border-radius:4px;border:1px solid #CCC;height:32px;text-align:center;line-height:32px;font-weight:700;font-size:12px;padding:0 32px;color:#CCC;display:inline-block;background:0 0;text-decoration:none;cursor:pointer}.columns-right .sidebox#direct-feedback .inside form input[type=submit]:hover,.columns-right .sidebox#direct-feedback .inside ul.share li a:hover{background:#FAFAFA}.columns-right .sidebox#direct-feedback .inside form p.description{float:left;font-size:10px}.columns-right .sidebox#direct-feedback .inside ul{margin:0}.columns-right .sidebox#direct-feedback .inside ul.share li{margin:0 0 0 9px;display:block;float:left;width:30%}.columns-right .sidebox#direct-feedback .inside ul.share li a{text-decoration:none;vertical-align:middle;line-height:20px;padding:16px 0;width:100%;text-align:center;border:1px solid #CCC;border-radius:4px;display:block}.columns-right .sidebox#direct-feedback .inside ul.share li:first-child{margin-left:0}.columns-right .sidebox#direct-feedback #feedback-support .inside ul.share li{width:48%}table.cpac-form-table{max-width:1100px;margin-top:20px}table.cpac-form-table>tbody>tr>td,table.cpac-form-table>tbody>tr>th{vertical-align:top}table.cpac-form-table td.padding-22{padding-top:22px}table.cpac-form-table td .cpac_export .ms-container{background:url(../images/switch_bw.png)50% 50% no-repeat}table.cpac-form-table td .cpac_export .ms-container .ms-selectable{width:48%;margin-right:0}table.cpac-form-table td .cpac_export .ms-container .ms-selection{float:right;width:48%}table.cpac-form-table td .cpac_export .ms-container ul.ms-list{width:100%}table.cpac-form-table td .cpac_export .ms-container ul.ms-list li{margin:0;padding-top:5px;padding-bottom:5px}table.cpac-form-table.settings tr td{padding-top:74px}table.cpac-form-table.settings tr:first-child th{padding-top:0}table.cpac-form-table.settings tr:first-child td{padding-top:54px}.wp-pointer-content ol{margin-left:1.5em;padding:0 15px}.wp-pointer-right{margin-right:15px}body.rtl .wp-pointer-right{margin-left:15px;margin-right:0}body.rtl .wp-pointer-right ol{margin-right:1.5em;margin-left:0}body.rtl .cpac-menu .subsubsub{margin-left:14px;margin-right:0}body.rtl .columns-container{margin-left:300px;margin-right:0}body.rtl .columns-left{float:right}body.rtl .columns-left .cpac-columns .cpac-column .column-meta img{margin-left:3px;margin-right:0}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label .inner>a.remove-button{margin-right:12px;margin-left:0}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label .inner .meta{float:left}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label span.vers{float:right}body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr td.label a.more-info,body.rtl .columns-left .cpac-columns .cpac-column .column-meta span.vers .comment-grey-bubble{float:left}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_type{text-align:left;padding-left:0;padding-right:auto}body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr.column_image_size td.input label input{margin-left:3px;margin-right:0}body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr td.label p.description{right:0;left:auto}body.rtl .columns-left .cpac-columns .cpac-column .column-form div.description,body.rtl .columns-left .cpac-columns .cpac-column .column-form div.input-width-range{float:right}body.rtl .columns-left .cpac-columns .cpac-column .column-form tr td.input label{padding-left:10px;padding-right:0}body.rtl .columns-left .cpac-columns .cpac-column .column-form a.help{float:left}body.rtl .columns-left .column-footer .order-message{float:right;padding-right:22px;padding-left:0;background:url(../images/order_arrow-rtl.png)right top no-repeat}body.rtl .columns-left .column-footer .button-container,body.rtl .cpac_export .ms-container .ms-selection{float:left}body.rtl .columns-right{float:left;margin-left:-300px;margin-right:0}body.rtl .cpac-placeholder{padding:5px 0 7px 4px}@media only screen and (max-width:900px){.columns-container{margin-right:0}.columns-container .columns-left{float:none}.columns-container .columns-right{float:none;margin-top:0;margin-right:0;width:100%}.columns-container .columns-right .columns-right-inside.fixed{position:relative;top:0;width:100%}}.cpac-addons li{width:200px;background:#FFF;float:left;margin-right:16px;margin-bottom:16px;border:1px solid #DDD;-webkit-box-shadow:0 3px 10px 0 rgba(0,0,0,.15);-moz-box-shadow:0 3px 10px 0 rgba(0,0,0,.15);box-shadow:0 3px 10px 0 rgba(0,0,0,.15)}.cpac-addons li:hover{-webkit-box-shadow:0 3px 10px 0 rgba(0,0,0,.25);-moz-box-shadow:0 3px 10px 0 rgba(0,0,0,.25);box-shadow:0 3px 10px 0 rgba(0,0,0,.25)}.cpac-addons li a{color:#444}.cpac-addons li .cpac-addon-content{display:table;width:100%;height:125px;text-align:center;vertical-align:middle;border-top:1px solid #DDD;background:#0069a4;background:-moz-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:-webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#0069a4),color-stop(100%,#085079));background:-webkit-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:-o-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:-ms-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:radial-gradient(ellipse at center,#0069a4 0,#085079 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0069a4', endColorstr='#085079', GradientType=1)}.cpac-addons li .cpac-addon-content>*{display:table-cell;vertical-align:middle}.cpac-addons li .cpac-addon-content h3{padding:0 16px;color:#FFF;line-height:150%}.cpac-addons li .cpac-addon-content img{width:100%}.cpac-addons li .cpac-addon-header{width:100%;padding:25px 15px;-moz-box-sizing:border-box;box-sizing:border-box}.cpac-addons li .cpac-addon-header>:first-child{margin-top:0}.cpac-addons li .cpac-addon-header>:last-child{margin-bottom:0}.cpac-addons li .cpac-addon-actions{background:#EEE;border-top:1px solid #DDD;padding:8px}.cpac-addons li .cpac-addon-actions .cpac-installed:before{content:"\f147";font-family:dashicons;vertical-align:middle;margin-left:-5px;margin-right:3px}
1
+ .button.loading span,.cpac-column .comment-grey-bubble,.icon-no,.icon-yes,a.help{height:16px;width:16px}#cpac a:active,#cpac a:focus{outline:0}#icon-codepress-admin-columns{background:url(../images/icon.png) no-repeat}.cpac-settings-link{float:right;margin:12px 14px 5px 0;background:url(../images/settings.png) no-repeat;padding-left:20px;text-decoration:none;display:inline-block;line-height:16px}.cpac-settings-link.current{font-weight:700}.rtl .cpac-settings-link{float:left;margin:12px 0 5px 14px;padding-right:20px;padding-left:0}.cpac-menu,h2.cpac-nav-tab-wrapper{margin-bottom:10px}a.help{background:url(../images/help.png) no-repeat;display:inline-block}.button.loading{padding-right:25px;position:relative}.rtl .button.loading{padding-left:25px;padding-right:0}.button.loading span{position:absolute;top:2px;right:6px;background:url(../images/loading.gif) right 50% no-repeat;display:inline-block}.icon-no,.icon-yes{display:inline-block;position:relative}.rtl .button.loading span{left:6px;right:auto}.cpac_message.error.warning{border-left:4px solid #ffba00}.icon-yes{background:url(../images/yes.png) no-repeat;top:2px}.icon-no{background:url(../images/no.png) no-repeat;top:2px}.cpac-column .comment-grey-bubble:before{content:'\f101';font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;left:0;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.rtl .cpac-column .comment-grey-bubble:before{right:0;left:auto}.cpac-menu{clear:both;overflow:hidden}.cpac-menu .subsubsub{white-space:normal;width:100%;margin:0 14px 0 0}.cpac-menu .subsubsub li.first{font-weight:700;min-width:100px}.columns-container{margin-right:300px;max-width:700px}.columns-container .columns-left{float:left;width:100%}.columns-container .columns-right{float:right;margin-right:-300px;width:280px}.columns-container .columns-right .columns-right-inside.fixed{position:fixed;top:40px;width:280px}.ui-sortable-helper{-webkit-box-shadow:1px 3px 6px 0 rgba(1,1,1,.4);box-shadow:1px 3px 6px 0 rgba(1,1,1,.4)}.columns-left .cpac-boxes .cpac-columns form,.columns-right .sidebox{box-shadow:0 1px 3px rgba(0,0,0,.1)}.ui-sortable-helper .column-meta{border-width:1px}.cpac-placeholder{visibility:visible!important;border-top:1px solid #dfdfdf;padding:5px 4px 7px 0}.cpac-placeholder .inner-placeholder{border:1px dashed grey;background:#eee;width:100%;height:100%}.cpac-placeholder :first-child{border:none}.cpac-column .column-meta{border-style:solid;border-color:#dfdfdf;border-width:1px 1px 0;background:#fcfcfc}.cpac-column .column-meta:nth-child(2n) .column-meta{background:#f9f9f9}.cpac-column .column-meta img{margin-right:3px}.cpac-column .column-meta table{border:none;background:0 0;border-radius:0}.cpac-column .column-meta table tr td{vertical-align:top;height:18px;border:none solid transparent;padding:11px 8px;border-width:1px 0 0}.cpac-column .column-meta table tr td.column_sort{width:10px;background:url(../images/drag.png) 8px 8px no-repeat;cursor:move}.cpac-column .column-meta table tr td.column_label{width:70%;font-weight:700;vertical-align:middle;position:relative}.cpac-column .column-meta table tr td.column_label .inner{position:relative;overflow:hidden;height:18px}.cpac-column .column-meta table tr td.column_label .inner>a{color:#5a5a5a;padding:0 4px}.cpac-column .column-meta table tr td.column_label .inner>a:hover{color:#333}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button,.cpac-column .column-meta table tr td.column_label .inner>a.remove-button{display:none;color:#a00;text-decoration:none;text-shadow:none;font-weight:400;margin-left:5px;font-size:12px}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button:hover,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button:hover,.cpac-column .column-meta table tr td.column_label .inner>a.remove-button:hover{color:red}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button{color:#0074a2}.cpac-column .column-meta table tr td.column_label .inner>a.clone-button:hover,.cpac-column .column-meta table tr td.column_label .inner>a.edit-button:hover{color:#2ea2cc}.cpac-column .column-meta table tr td.column_label .inner .meta{display:inline-block;float:right;font-weight:400;color:#b2b2b2;font-size:12px}.cpac-column .column-meta table tr td.column_label .inner .meta span{cursor:pointer}.cpac-column .column-meta table tr td.column_label .inner .meta span.width{margin-right:5px;cursor:auto;color:#737373}.cpac-column .column-meta table tr td.column_label span.vers{float:left}.cpac-column .column-meta table tr td.column_type{width:auto;min-width:120px;text-align:right;vertical-align:middle;color:#999;padding-right:0}.cpac-column .column-meta table tr td.column_type .inner{height:18px;overflow:hidden}.cpac-column .column-meta table tr td.column_type .inner a{color:#999}.cpac-column .column-meta table tr td.column_edit{width:38px;min-width:38px;background:url(../images/arrow.png) 23px 18px no-repeat;cursor:pointer}.cpac-column .column-meta:hover .column_label .inner>a.clone-button,.cpac-column .column-meta:hover .column_label .inner>a.edit-button,.cpac-column .column-meta:hover .column_label .inner>a.remove-button{display:inline-block}.cpac-column .column-meta span.vers{padding-top:2px}.cpac-column .column-meta span.vers .comment-grey-bubble{float:right}.cpac-column .column-form{display:none;border-width:1px 1px 0;border-style:solid;border-color:#dfdfdf;position:relative}.cpac-column .column-form table{border:none;background:#fcfcfc}.cpac-column .column-form table tr.hide{display:none}.cpac-column .column-form table tr td{vertical-align:top;border:none;padding:8px;background:#fff;border-top:1px solid #F5F5F5}.cpac-column .column-form table tr td input[type=text],.cpac-column .column-form table tr td select{width:99.95%}.cpac-column .column-form table tr td input[type=text].small,.cpac-column .column-form table tr td select.small{width:100px}.cpac-column .column-form table tr td span.suffix{line-height:40px;color:grey}.cpac-column .column-form table tr td select optgroup:nth-child(2n){background:#F9F9F9}.cpac-column .column-form table tr td.label{position:relative;overflow:visible;background:#f5f5f5;border-right:1px solid #E1E1E1;vertical-align:top;width:34%;border-top:1px solid #F0F0F0}.column-footer,.wp-pointer-content{overflow:hidden}.cpac-column .column-form table tr td.label label{font-weight:700;color:#333;display:block;position:relative}.cpac-column .column-form table tr td.label p{color:#666;display:block;font-size:12px;font-style:normal;line-height:16px;margin:0!important}.cpac-column .column-form table tr td.label p.description{display:none;position:absolute;z-index:99;top:30px;left:0;background:#eaf2fa;border-radius:5px;border:1px solid #c7d7e2;padding:5px 8px!important;font-weight:400}.cpac-column .column-form table tr td.label p.description em{display:block;color:#999}.cpac-column .column-form table tr td.label .info{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.cpac-column .column-form table tr td.label .info:before{position:absolute;z-index:1;right:10px;top:50%;margin-top:-7px;content:'';display:block;border-radius:32px;border:1px solid #E6E6E6;width:12px;height:12px}.cpac-column .column-form table tr td.label .info:after{position:absolute;z-index:1;right:10px;top:50%;margin-top:-6px;content:'?';display:block;width:14px;height:14px;color:#E6E6E6;font:700 10px Arial;text-align:center;vertical-align:middle;line-height:14px}.cpac-column .column-form table tr td.input label{padding-left:10px;padding-right:0}.cpac-column .column-form table tr td.input div.msg{margin-top:5px;display:none;color:#333;padding:6px 8px;background-color:#ffebe8;border:1px solid #fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cpac-column .column-form table tr td.input .section{padding:12px}.cpac-column .column-form table tr.column_width .input{position:relative}.cpac-column .column-form table tr.column_width .input div.description{font-size:11px;width:54px;position:absolute;left:10px;text-align:middle}.cpac-column .column-form table tr.column_width .input div.description input{background:#efefef;border:none;height:20px;line-height:20px;text-align:right;width:36px;font-size:12px}.cpac-column .column-form table tr.column_width .input div.width-slider{margin-left:60px;margin-right:100px;position:relative;margin-top:4px}.cpac-column .column-form table tr.column_width .input div.width-slider .ui-slider-handle{cursor:ew-resize}.cpac-column .column-form table tr.column_width .input div.unit-select{position:absolute;top:8px;right:10px;width:90px;text-align:right}.cpac-column .column-form table tr.column_width .input div.unit-select label{padding-left:5px}.cpac-column .column-form table tr.column_image_size{border:10px solid red}.cpac-column .column-form table tr.column_image_size td.input label.custom-size{display:inline-block;margin-top:4px;margin-bottom:4px}.cpac-column .column-form table tr.column_image_size td.input label.custom-size input{margin-right:3px}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size{display:inline-block}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h.hidden,.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w.hidden,.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .hidden{display:none}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h,.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w{margin:0}.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-h input[type=text],.cpac-column .column-form table tr.column_image_size td.input .custom_image_size .custom-size-w input[type=text]{margin-right:3px;width:40px!important}.cpac-column .column-form table tr.column_action td{background:#f9f9f9}.cpac-column .column-form table tr.column_action td p{margin:0}.cpac-column .column-form table tr.column_action td p a.remove-button{color:#a00;text-decoration:none;text-shadow:none;font-weight:400;margin-left:5px;font-size:12px;padding:0 5px}.cpac-column .column-form table tr.column_action td p a.remove-button:hover{color:#fff;background:red}.cpac-column .column-form table tr:first-child td{border-top:none}.cpac-column.loading .column-form>.spinner{position:absolute;left:50%;top:50%;z-index:200;margin-left:-10px;margin-top:-10px;display:block}.cpac-column.loading .column-form:before{content:'';position:absolute;width:100%;height:100%;background:#FFF;z-index:100;opacity:.5}.cpac-column.opened .column-meta{background-color:#c7c7c7;background-image:-ms-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:-moz-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:-o-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:-webkit-gradient(linear,left top,left bottom,from(#e9e9e9),to(#c7c7c7));background-image:-webkit-linear-gradient(top,#e9e9e9,#c7c7c7);background-image:linear-gradient(top,#e9e9e9,#c7c7c7);border-color:#aeaeae}.cpac-column.opened .column-meta table{background:0 0}.cpac-column.opened .column-meta table td{border-color:#f8f8f8;color:#333;text-shadow:0 1px 0 #FFF}.cpac-column.opened .column-meta table td a{color:#333;text-shadow:0 1px 0 #FFF}.cpac-column.opened .column-meta table td.column_sort{background-position:8px -39px}.cpac-column.opened .column-meta table td.column_label .inner .meta span{color:grey;text-shadow:none}.cpac-column.opened .column-meta table td.column_type{color:#5C5C5C}.column-footer{background:#EAF2FA;border:1px solid #c7d7e2;min-height:26px;padding:8px}.column-footer .order-message{background:url(../images/order_arrow.png) no-repeat;color:#7A9BBE;float:left;font-family:Comic Sans MS,sans-serif;font-size:11px;height:13px;line-height:1em;margin-left:4px;padding:7px 0 0 22px;text-shadow:0 1px 0 #FFF;display:inline-block}.column-footer .button-container{float:right;display:inline-block;margin-top:-5px}.column-footer .button-container a{display:inline-block;margin-top:5px}.cpac-content-body hr{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:none;border-color:#DFDFDF -moz-use-text-color -moz-use-text-color;border-image:none;border-right:0 none;border-style:solid none none;border-width:1px 0 0;clear:both;margin:30px 0;opacity:.2}#cpac-welcome.about-wrap div.error{display:block!important}.cpac-alert{display:inline-block;background:#FCF8E3;border:1px solid #FBEED5;border-radius:4px;color:#C09853;margin:20px 0;padding:16px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cpac-alert p{margin:0}.cpac-alert.cpac-alert-success{background-color:#DFF0D8;border-color:#D6E9C6;color:#468847}.cpac-alert.cpac-alert-error{background-color:#F2DEDE;border-color:#EED3D7;color:#B94A48}.cpac-alert a.button-primary{height:28px;line-height:28px;display:inline-block}#cpac-download-add-ons-table{max-width:600px}.wp-core-ui .button-large{height:40px;line-height:40px;font-size:16px;padding:0 15px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.cac-notification.updated{border-left-color:#0071aa}.cac-notification.updated .learnmore{float:right}.cac-notification.updated .learnmore:after{content:"\f139";font:400 20px/1 dashicons;float:right}.columns-right{margin-top:54px}.columns-right .sidebox{background:#FFF;border:1px solid #E1E1E1;border-radius:0;position:relative;margin-bottom:14px}.columns-right .sidebox h3{padding:10px;margin:0}.columns-right .sidebox h3.title{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:15px;font-weight:400;line-height:1;margin:0;padding:7px 10px;background:#f1f1f1;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9);border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff;border-bottom-style:solid;border-bottom-width:1px}.columns-right .sidebox .inside{padding:10px}.columns-right .sidebox .inside p{margin-top:0}.columns-right .sidebox#form-actions .form-reset{border-bottom:1px solid #F5F5F5;padding:8px}.columns-right .sidebox#form-actions .reset-column-type{text-decoration:none;color:#BC0B0B;line-height:25px;display:inline-block}.columns-right .sidebox#form-actions .form-update{padding:8px;overflow:hidden}.columns-right .sidebox#form-actions .submit-update{display:block;width:100%;height:28px;line-height:28px;text-align:center}.columns-right .sidebox#pro-version .cta{background:url(../images/get_the_addon.png) no-repeat;background-size:cover}.columns-right .sidebox#pro-version .padding-box{padding:8px 15px 0}.columns-right .sidebox#pro-version h3 a{color:#fff;font-size:19px;text-decoration:none;font-weight:400;margin-top:6px}.columns-right .sidebox#pro-version .inside ul{margin:0 0 10px}.columns-right .sidebox#pro-version .inside ul li{margin:0;padding:0}.columns-right .sidebox#pro-version .inside ul li a{display:inline-block;min-height:24px;font-size:19px;line-height:24px;margin-bottom:1px;padding:0 5px;background:#000;color:#fff;text-decoration:none}.columns-right .sidebox#pro-version .inside ul li.acf a{background-color:#5ee8bf;color:grey}.columns-right .sidebox#pro-version .inside p{color:#fff;font-size:12px}.columns-right .sidebox#pro-version .inside p a{color:#fff;display:inline-block;background:#a4c518;padding:0 2px;font-size:15px;text-decoration:none}.columns-right .sidebox#add-acf{background-color:#5ee8bf}.columns-right .sidebox#add-acf h3{padding:0}.columns-right .sidebox#add-acf h3 a{color:#fff;text-decoration:none;font-size:15px}.columns-right .sidebox#direct-feedback #feedback-rate,.columns-right .sidebox#direct-feedback #feedback-support{display:none}.columns-right .sidebox#direct-feedback .inside>a{border-radius:4px;border:1px solid #CCC;width:48%;height:64px;text-align:center;line-height:64px;font-weight:700;color:#222;display:inline-block;text-decoration:none}.columns-right .sidebox#direct-feedback .inside>a:hover{background:#FAFAFA}.columns-right .sidebox#direct-feedback .inside form textarea{width:100%;height:120px}.columns-right .sidebox#direct-feedback .inside form input[type=submit]{float:right;border-radius:4px;border:1px solid #CCC;height:32px;text-align:center;line-height:32px;font-weight:700;font-size:12px;padding:0 32px;color:#CCC;display:inline-block;background:0 0;text-decoration:none;cursor:pointer}.columns-right .sidebox#direct-feedback .inside form input[type=submit]:hover,.columns-right .sidebox#direct-feedback .inside ul.share li a:hover{background:#FAFAFA}.columns-right .sidebox#direct-feedback .inside form p.description{float:left;font-size:10px}.columns-right .sidebox#direct-feedback .inside ul{margin:0}.columns-right .sidebox#direct-feedback .inside ul.share li{margin:0 0 0 9px;display:block;float:left;width:30%}.columns-right .sidebox#direct-feedback .inside ul.share li a{text-decoration:none;vertical-align:middle;line-height:20px;padding:16px 0;width:100%;text-align:center;border:1px solid #CCC;border-radius:4px;display:block}.columns-right .sidebox#direct-feedback .inside ul.share li:first-child{margin-left:0}.columns-right .sidebox#direct-feedback #feedback-support .inside ul.share li{width:48%}table.cpac-form-table{max-width:1100px;margin-top:20px}table.cpac-form-table>tbody>tr>td,table.cpac-form-table>tbody>tr>th{vertical-align:top}table.cpac-form-table td.padding-22{padding-top:22px}table.cpac-form-table td .cpac_export .ms-container{background:url(../images/switch_bw.png) 50% 50% no-repeat}table.cpac-form-table td .cpac_export .ms-container .ms-selectable{width:48%;margin-right:0}table.cpac-form-table td .cpac_export .ms-container .ms-selection{float:right;width:48%}table.cpac-form-table td .cpac_export .ms-container ul.ms-list{width:100%}table.cpac-form-table td .cpac_export .ms-container ul.ms-list li{margin:0;padding-top:5px;padding-bottom:5px}table.cpac-form-table.settings tr td{padding-top:74px}table.cpac-form-table.settings tr:first-child th{padding-top:0}table.cpac-form-table.settings tr:first-child td{padding-top:54px}.wp-pointer-content ol{margin-left:1.5em;padding:0 15px}.wp-pointer-right{margin-right:15px}body.rtl .wp-pointer-right{margin-left:15px;margin-right:0}body.rtl .wp-pointer-right ol{margin-right:1.5em;margin-left:0}body.rtl .cpac-menu .subsubsub{margin-left:14px;margin-right:0}body.rtl .columns-container{margin-left:300px;margin-right:0}body.rtl .columns-left{float:right}body.rtl .columns-left .cpac-columns .cpac-column .column-meta img{margin-left:3px;margin-right:0}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label .inner>a.remove-button{margin-right:12px;margin-left:0}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label .inner .meta{float:left}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_label span.vers{float:right}body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr td.label a.more-info,body.rtl .columns-left .cpac-columns .cpac-column .column-meta span.vers .comment-grey-bubble{float:left}body.rtl .columns-left .cpac-columns .cpac-column .column-meta .column_type{text-align:left;padding-left:0;padding-right:auto}body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr.column_image_size td.input label input{margin-left:3px;margin-right:0}body.rtl .columns-left .cpac-columns .cpac-column .column-form table tr td.label p.description{right:0;left:auto}body.rtl .columns-left .cpac-columns .cpac-column .column-form div.description,body.rtl .columns-left .cpac-columns .cpac-column .column-form div.input-width-range{float:right}body.rtl .columns-left .cpac-columns .cpac-column .column-form tr td.input label{padding-left:10px;padding-right:0}body.rtl .columns-left .cpac-columns .cpac-column .column-form a.help{float:left}body.rtl .columns-left .column-footer .order-message{float:right;padding-right:22px;padding-left:0;background:url(../images/order_arrow-rtl.png) right top no-repeat}body.rtl .columns-left .column-footer .button-container,body.rtl .cpac_export .ms-container .ms-selection{float:left}body.rtl .columns-right{float:left;margin-left:-300px;margin-right:0}body.rtl .cpac-placeholder{padding:5px 0 7px 4px}@media only screen and (max-width:900px){.columns-container{margin-right:0}.columns-container .columns-left{float:none}.columns-container .columns-right{float:none;margin-top:0;margin-right:0;width:100%}.columns-container .columns-right .columns-right-inside.fixed{position:relative;top:0;width:100%}}.cpac-addons li{width:200px;background:#FFF;float:left;margin-right:16px;margin-bottom:16px;border:1px solid #DDD;-webkit-box-shadow:0 3px 10px 0 rgba(0,0,0,.15);-moz-box-shadow:0 3px 10px 0 rgba(0,0,0,.15);box-shadow:0 3px 10px 0 rgba(0,0,0,.15)}.cpac-addons li:hover{-webkit-box-shadow:0 3px 10px 0 rgba(0,0,0,.25);-moz-box-shadow:0 3px 10px 0 rgba(0,0,0,.25);box-shadow:0 3px 10px 0 rgba(0,0,0,.25)}.cpac-addons li a{color:#444}.cpac-addons li .cpac-addon-content{display:table;width:100%;height:125px;text-align:center;vertical-align:middle;border-top:1px solid #DDD;background:#0069a4;background:-moz-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:-webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#0069a4),color-stop(100%,#085079));background:-webkit-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:-o-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:-ms-radial-gradient(center,ellipse cover,#0069a4 0,#085079 100%);background:radial-gradient(ellipse at center,#0069a4 0,#085079 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0069a4', endColorstr='#085079', GradientType=1)}.cpac-addons li .cpac-addon-content>*{display:table-cell;vertical-align:middle}.cpac-addons li .cpac-addon-content h3{padding:0 16px;color:#FFF;line-height:150%}.cpac-addons li .cpac-addon-content img{width:100%}.cpac-addons li .cpac-addon-header{width:100%;padding:25px 15px;-moz-box-sizing:border-box;box-sizing:border-box}.cpac-addons li .cpac-addon-header>:first-child{margin-top:0}.cpac-addons li .cpac-addon-header>:last-child{margin-bottom:0}.cpac-addons li .cpac-addon-actions{background:#EEE;border-top:1px solid #DDD;padding:8px}.cpac-addons li .cpac-addon-actions .cpac-installed:before{content:"\f147";font-family:dashicons;vertical-align:middle;margin-left:-5px;margin-right:3px}
assets/css/column.min.css CHANGED
@@ -1 +1 @@
1
- .cpac-divider{display:inline-block;width:14px;height:12px;background:url(../images/square.png)50% 7px no-repeat}span.status-closed{color:red}.tablenav.top .cpac-edit{top:0;display:inline-block;vertical-align:bottom}.cpac-rounded{display:inline-block;border-radius:10px;min-width:8px;padding:0 6px;height:20px;background-color:#e0e0e0;text-align:center;margin-left:8px;font-size:12px}.cpac-column-value-image{display:inline-block;background:0 0;margin-right:2px;overflow:hidden}.rtl .cpac-column-value-image{margin-left:2px;margin-right:0}.cpac-column-value-image img{display:block;margin:0 auto}.column-column-attachment img{padding-right:5px;padding-bottom:4px}.rtl .column-column-attachment img{padding-left:5px;padding-right:0}div.cpac-color{line-height:26px}div.cpac-color span{display:block;-webkit-border-radius:3px;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}.button.cpac-button-action:before{position:absolute;top:0;left:0;width:100%;height:100%;text-indent:0}.cpac-tip{display:inline-block}.qtip.qtip-tipsy{background:rgba(0,0,0,.75);font-weight:400;min-width:25px}
1
+ .cpac-divider{display:inline-block;width:14px;height:12px;background:url(../images/square.png) 50% 7px no-repeat}span.status-closed{color:red}.tablenav.top .cpac-edit{top:0;display:inline-block;vertical-align:bottom}.cpac-rounded{display:inline-block;border-radius:10px;min-width:8px;padding:0 6px;height:20px;background-color:#e0e0e0;text-align:center;margin-left:8px;font-size:12px}.cpac-column-value-image{display:inline-block;background:0 0;margin-right:2px;overflow:hidden}.rtl .cpac-column-value-image{margin-left:2px;margin-right:0}.cpac-column-value-image img{display:block;margin:0 auto}.column-column-attachment img{padding-right:5px;padding-bottom:4px}.rtl .column-column-attachment img{padding-left:5px;padding-right:0}div.cpac-color{line-height:26px}div.cpac-color span{display:block;-webkit-border-radius:3px;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}.button.cpac-button-action:before{position:absolute;top:0;left:0;width:100%;height:100%;text-indent:0}.cpac-tip{display:inline-block}.qtip.qtip-tipsy{background:rgba(0,0,0,.75);font-weight:400;min-width:25px}
assets/js/admin-settings.js CHANGED
@@ -748,7 +748,7 @@ jQuery( document ).bind('column_init column_change column_add', function( e, col
748
  });
749
 
750
  /*
751
- * Radio Click events
752
  *
753
  */
754
  jQuery.fn.cpac_bind_column_addon_events = function() {
@@ -756,16 +756,30 @@ jQuery.fn.cpac_bind_column_addon_events = function() {
756
  var column = jQuery( this );
757
  var inputs = column.find('[data-toggle-id] label');
758
 
759
- // Enable editing: radio button
760
- inputs.click( function(){
761
 
762
  var id = jQuery( this ).closest('td.input').data('toggle-id');
763
- var label = column.find('[data-indicator-id="' + id + '"]' ).removeClass( 'on' );
764
- var status = jQuery( 'input', this ).val();
765
 
766
- if ( 'on' == status ) {
 
 
767
  label.addClass( 'on' );
768
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
769
  });
770
  };
771
 
748
  });
749
 
750
  /*
751
+ * Optional Radio Click events
752
  *
753
  */
754
  jQuery.fn.cpac_bind_column_addon_events = function() {
756
  var column = jQuery( this );
757
  var inputs = column.find('[data-toggle-id] label');
758
 
759
+ inputs.on( 'click', function(){
 
760
 
761
  var id = jQuery( this ).closest('td.input').data('toggle-id');
762
+ var state = jQuery( 'input', this ).val();
 
763
 
764
+ // Toggle indicator icon
765
+ var label = column.find('[data-indicator-id="' + id + '"]' ).removeClass( 'on' );
766
+ if ( 'on' == state ) {
767
  label.addClass( 'on' );
768
  }
769
+
770
+ // Toggle additional options
771
+ var additional = column.find('[data-additional-option-id="' + id + '"]' ).addClass( 'hide' );
772
+ if ( 'on' == state ) {
773
+ additional.removeClass( 'hide' );
774
+ }
775
+ });
776
+
777
+ // Hide additonal options on ready
778
+ column.find('[data-toggle-id]').each( function(){
779
+ var additional = column.find('[data-additional-option-id="' + jQuery( this ).data('toggle-id') + '"]' ).addClass( 'hide' );
780
+ if ( 'on' == jQuery( 'input:checked', this ).val() ) {
781
+ additional.removeClass( 'hide' );
782
+ }
783
  });
784
  };
785
 
assets/js/admin-settings.min.js CHANGED
@@ -1 +1 @@
1
- function cpac_importexport(){jQuery("#php-export-results textarea").on("focus, mouseup",function(){jQuery(this).select()}).select().focus()}function cpac_submit_form(){jQuery(".form-update a.submit-update").click(function(e){e.preventDefault(),jQuery(this).closest(".columns-container").find(".cpac-columns form").submit()})}function cpac_create_column(e){var n=jQuery(".for-cloning-only .cpac-column",e).first().clone(),t=e.attr("data-type");return n.length>0&&(n.cpac_update_clone_id(t),jQuery(".cpac-columns form",e).append(n),n.column_bind_toggle(),n.column_bind_remove(),n.column_bind_clone(),n.column_bind_events(),cpac_sortable(),jQuery(document).trigger("column_add",n)),n}function cpac_add_column(){jQuery("#cpac .add_column").click(function(e){var n=jQuery(this).closest(".columns-container"),t=cpac_create_column(n);t.addClass("opened").find(".column-form").slideDown(150,function(){jQuery("html, body").animate({scrollTop:t.offset().top-58},300)}),e.preventDefault()})}function cpac_sidebar_feedback(){jQuery(function(e){var n=e(".sidebox#direct-feedback");n.find("#feedback-choice a.no").click(function(e){e.preventDefault(),n.find("#feedback-choice").slideUp(),n.find("#feedback-support").slideDown()}),n.find("#feedback-choice a.yes").click(function(e){e.preventDefault(),n.find("#feedback-choice").slideUp(),n.find("#feedback-rate").slideDown()})})}function cpac_clear_input_defaults(){jQuery.fn.cleardefault=function(){return this.focus(function(){this.value==this.defaultValue&&(this.value="")}).blur(function(){this.value.length||(this.value=this.defaultValue)})},jQuery("#cpac-box-plugin_settings .addons input").cleardefault()}function cpac_help(){jQuery("#cpac a.help").click(function(e){e.preventDefault();var n=jQuery("#contextual-help-wrap");n.parent().show(),jQuery('a[href="#tab-panel-cpac-'+jQuery(this).attr("data-help")+'"]',n).trigger("click"),n.slideDown("fast",function(){n.focus()})})}function cpac_pointer(){jQuery(".cpac-pointer").each(function(){var e=jQuery(this),n=e.attr("rel"),t=e.attr("data-pos"),c={at:"left top",my:"right top",edge:"right",offset:"0 0"};"right"==t&&(c={at:"right middle",my:"left middle",edge:"left"}),e.pointer({content:jQuery("#"+n).html(),position:c,pointerWidth:250,close:function(){e.removeClass("open")},pointerClass:"wp-pointer wp-pointer-"+c.edge}),e.click(function(){e.hasClass("open")?e.removeClass("open"):e.addClass("open")}),e.hover(function(){jQuery(this).pointer("open")},function(){e.hasClass("open")||jQuery(this).pointer("close")})})}function cpac_sortable(){jQuery("div.cpac-columns").each(function(){jQuery(this).sortable(jQuery(this).hasClass("ui-sortable")?"refresh":{items:".cpac-column"})})}function cpac_menu(){var e=jQuery("#cpac div.cpac-menu");e.find("a").click(function(e,n){var t=jQuery(this).attr("href");if(t){var c=t.replace("#cpac-box-","");jQuery(".cpac-menu a").removeClass("current"),jQuery(".columns-container").hide(),jQuery(this).addClass("current");var i=jQuery('.columns-container[data-type="'+c+'"]').show(),a=i.find(".cpac-columns");jQuery(document).trigger("cac_menu_change",a)}e.preventDefault()}),e.find("a.current").trigger("click")}jQuery(document).ready(function(){return 0===jQuery("#cpac").length?!1:(cpac_pointer(),cpac_submit_form(),cpac_clear_input_defaults(),cpac_sortable(),cpac_menu(),cpac_help(),cpac_add_column(),cpac_importexport(),cpac_sidebar_feedback(),void jQuery(".cpac-column").each(function(e,n){jQuery(n).column_bind_toggle(),jQuery(n).column_bind_remove(),jQuery(n).column_bind_clone(),jQuery(n).cpac_bind_container_addon_events()}))}),jQuery.fn.column_bind_toggle=function(){var e=jQuery(this);e.find("td.column_type a, td.column_edit, td.column_label a.toggle, td.column_label .edit-button").click(function(n){n.preventDefault(),e.toggleClass("opened").find(".column-form").slideToggle(150),e.hasClass("events-binded")||e.column_bind_events(),e.addClass("events-binded"),jQuery(document).trigger("column_init",e)})},jQuery.fn.column_bind_remove=function(){jQuery(this).find(".remove-button").click(function(e){jQuery(this).closest(".cpac-column").column_remove(),e.preventDefault()})},jQuery.fn.column_bind_clone=function(){jQuery(this).find(".clone-button").click(function(e){var n,t;e.preventDefault(),n=jQuery(this).closest(".cpac-column"),t=n.column_clone(),"undefined"!=typeof t&&t.removeClass("loading").hide().slideDown()})},jQuery.fn.cpac_column_refresh=function(){var e=jQuery(this);e.addClass("loading"),e.find(".column-form").prepend('<span class="spinner" />'),jQuery.post(ajaxurl,{plugin_id:"cpac",action:"cpac_column_refresh",column:jQuery(this).find("input.column-name").val(),formdata:jQuery(this).parents("form").serialize()},function(n){var t=jQuery("<div>"+n+"</div>").children();e.replaceWith(t),e=t,e.column_bind_toggle(),e.column_bind_remove(),e.column_bind_clone(),e.column_bind_events(),e.removeClass("loading").addClass("opened").find(".column-form").show(),jQuery(document).trigger("column_change",e)})},jQuery.fn.column_bind_events=function(){var e=jQuery(this),n=e.closest(".columns-container "),t=n.attr("data-type"),c=e.find(".column_type select option:selected").val();e.find(".column_type select").change(function(){var i=jQuery("optgroup",this).children(":selected"),a=i.val(),o=i.text(),r=jQuery(this).next(".msg").hide(),u=n.find('.for-cloning-only .cpac-column[data-type="'+a+'"]');if(u.length)if(u.find(".is-disabled").length)r.html(u.find(".is-disabled").html()).show(),jQuery(this).find("option").removeAttr("selected"),jQuery(this).find('option[value="'+c+'"]').attr("selected","selected");else{if("undefined"==typeof u.attr("data-clone")&&jQuery(".cpac-columns",n).find('[data-type="'+a+'"]').length)return r.html(cpac_i18n.clone.replace("%s","<strong>"+o+"</strong>")).show(),jQuery(this).find("option").removeAttr("selected"),void jQuery(this).find('option[value="'+c+'"]').attr("selected","selected");var l=u.clone();l.addClass("opened").find(".column-form").show(),l.find(".column-meta").replaceWith(e.find(".column-meta")),l.find(".column-form").replaceWith(e.find(".column-form")),l.cpac_update_clone_id(t),e.replaceWith(l),l.cpac_column_refresh()}}),e.find(".column_label .input input").bind("keyup change",function(){var e=jQuery(this).val();jQuery(this).closest(".cpac-column").find("td.column_label .inner > a.toggle").text(e)}),e.column_width_slider();var i=e.find(".column-meta span.width");i.on("update",function(){var n=e.find("input.width").val(),t=e.find("input.unit").filter(":checked").val();jQuery(this).text(n>0?n+t:"")});var a=e.find(".column_width .unit-select label");a.on("click",function(){e.find("span.unit").text(jQuery(this).find("input").val()),e.column_width_slider(),i.trigger("update")});var o=e.find("input.width").on("keyup",function(){e.column_width_slider(),jQuery(this).trigger("validate"),i.trigger("update")}).on("validate",function(){var e=o.val(),n=jQuery.trim(e);jQuery.isNumeric(n)||(n=n.replace(/\D/g,"")),n.length>3&&(n=n.substring(0,3)),0>=n&&(n=""),n!==e&&o.val(n)});e.find(".column_image_size label.custom-size").click(function(){var e=jQuery(this).closest(".input");jQuery(this).hasClass("image-size-custom")?(jQuery(".custom-size-w",e).removeClass("hidden"),jQuery(".custom-size-h",e).removeClass("hidden")):(jQuery(".custom-size-w",e).addClass("hidden"),jQuery(".custom-size-h",e).addClass("hidden"))}),e.find(".column-form .label label, .column-form .label .info").hover(function(){jQuery(this).parents(".label").find("p.description").show()},function(){jQuery(this).parents(".label").find("p.description").hide()}),"column-meta"==e.find(".column_type select").val()&&e.find(".column_field_type select").change(function(){e.cpac_column_refresh()})},jQuery.fn.column_remove=function(){jQuery(this).addClass("deleting").animate({opacity:0,height:0},350,function(e){jQuery(this).remove()})},jQuery.fn.column_width_slider=function(){var e=jQuery(this).find(".column_width"),n=e.find("input.width"),t=e.find("input.unit"),c=t.filter(":checked").val(),i=n.val(),a=e.find(".width-slider"),o=jQuery(this).find(".column-meta span.width");"%"==c&&i>100&&(i=100),n.val(i),a.slider({range:"min",min:0,max:"%"==c?100:500,value:i,slide:function(e,t){n.val(t.value),o.trigger("update"),n.trigger("validate")}})},jQuery.fn.column_clone=function(){var e=jQuery(this).closest(".columns-container"),n=jQuery(this);if("undefined"==typeof n.attr("data-clone")){var t=cpac_i18n.clone.replace("%s","<strong>"+n.find(".column_label .toggle").text()+"</strong>");return n.addClass("opened").find(".column-form").slideDown(150),void n.find(".msg").html(t).show()}var c=jQuery(this).clone();return c.cpac_update_clone_id(e.attr("data-type")),jQuery(this).after(c),c.column_bind_toggle(),c.column_bind_remove(),c.column_bind_clone(),c.column_bind_events(),cpac_sortable(),jQuery(document).trigger("column_add",c),c},jQuery.fn.cpac_update_clone_id=function(e){var n=jQuery(this),t=n.attr("data-type"),c=jQuery('.columns-container[data-type="'+e+'"]').find(".cpac-columns"),i=jQuery(c).find('*[data-type="'+t+'"]').not(n),a=jQuery.map(i,function(e,n){return jQuery(e).attr("data-clone")?parseInt(jQuery(e).attr("data-clone"),10):0});a.sort();for(var o=Math.max.apply(null,a)+1,r=0;o>=r&&-1!==jQuery.inArray(r,a);r++);if(0!==r){var u=n.attr("data-clone"),l="";u&&(l="-"+u),n.attr("data-clone",r),n.find("input.clone").val(r),n.find("input.column-name").val(t+"-"+r);var d=n.find("input, select, label");jQuery(d).each(function(e,n){var c=t+"-"+r;jQuery(n).attr("name")&&jQuery(n).attr("name",jQuery(n).attr("name").replace(t+l,c)),jQuery(n).attr("for")&&jQuery(n).attr("for",jQuery(n).attr("for").replace(t+l,c)),jQuery(n).attr("id")&&jQuery(n).attr("id",jQuery(n).attr("id").replace(t+l,c))})}},jQuery(document).bind("column_init column_change column_add",function(e,n){jQuery(n).cpac_bind_column_addon_events(),jQuery(n).cpac_bind_container_addon_events()}),jQuery.fn.cpac_bind_column_addon_events=function(){var e=jQuery(this),n=e.find("[data-toggle-id] label");n.click(function(){var n=jQuery(this).closest("td.input").data("toggle-id"),t=e.find('[data-indicator-id="'+n+'"]').removeClass("on"),c=jQuery("input",this).val();"on"==c&&t.addClass("on")})},jQuery.fn.cpac_bind_container_addon_events=function(){var e=jQuery(this),n=e.find("[data-indicator-id]");n.unbind("click").click(function(){var n=jQuery(this).data("indicator-id"),t=e.find('[data-toggle-id="'+n+'"] input');jQuery(this).hasClass("on")?(jQuery(this).removeClass("on").addClass("off"),t.filter("[value=off]").prop("checked",!0)):(jQuery(this).removeClass("off").addClass("on"),t.filter("[value=on]").prop("checked",!0))})};
1
+ function cpac_importexport(){jQuery("#php-export-results textarea").on("focus, mouseup",function(){jQuery(this).select()}).select().focus()}function cpac_submit_form(){jQuery(".form-update a.submit-update").click(function(e){e.preventDefault(),jQuery(this).closest(".columns-container").find(".cpac-columns form").submit()})}function cpac_create_column(e){var n=jQuery(".for-cloning-only .cpac-column",e).first().clone(),t=e.attr("data-type");return n.length>0&&(n.cpac_update_clone_id(t),jQuery(".cpac-columns form",e).append(n),n.column_bind_toggle(),n.column_bind_remove(),n.column_bind_clone(),n.column_bind_events(),cpac_sortable(),jQuery(document).trigger("column_add",n)),n}function cpac_add_column(){jQuery("#cpac .add_column").click(function(e){var n=jQuery(this).closest(".columns-container"),t=cpac_create_column(n);t.addClass("opened").find(".column-form").slideDown(150,function(){jQuery("html, body").animate({scrollTop:t.offset().top-58},300)}),e.preventDefault()})}function cpac_sidebar_feedback(){jQuery(function(e){var n=e(".sidebox#direct-feedback");n.find("#feedback-choice a.no").click(function(e){e.preventDefault(),n.find("#feedback-choice").slideUp(),n.find("#feedback-support").slideDown()}),n.find("#feedback-choice a.yes").click(function(e){e.preventDefault(),n.find("#feedback-choice").slideUp(),n.find("#feedback-rate").slideDown()})})}function cpac_clear_input_defaults(){jQuery.fn.cleardefault=function(){return this.focus(function(){this.value==this.defaultValue&&(this.value="")}).blur(function(){this.value.length||(this.value=this.defaultValue)})},jQuery("#cpac-box-plugin_settings .addons input").cleardefault()}function cpac_help(){jQuery("#cpac a.help").click(function(e){e.preventDefault();var n=jQuery("#contextual-help-wrap");n.parent().show(),jQuery('a[href="#tab-panel-cpac-'+jQuery(this).attr("data-help")+'"]',n).trigger("click"),n.slideDown("fast",function(){n.focus()})})}function cpac_pointer(){jQuery(".cpac-pointer").each(function(){var e=jQuery(this),n=e.attr("rel"),t=e.attr("data-pos"),i={at:"left top",my:"right top",edge:"right",offset:"0 0"};"right"==t&&(i={at:"right middle",my:"left middle",edge:"left"}),e.pointer({content:jQuery("#"+n).html(),position:i,pointerWidth:250,close:function(){e.removeClass("open")},pointerClass:"wp-pointer wp-pointer-"+i.edge}),e.click(function(){e.hasClass("open")?e.removeClass("open"):e.addClass("open")}),e.hover(function(){jQuery(this).pointer("open")},function(){e.hasClass("open")||jQuery(this).pointer("close")})})}function cpac_sortable(){jQuery("div.cpac-columns").each(function(){jQuery(this).hasClass("ui-sortable")?jQuery(this).sortable("refresh"):jQuery(this).sortable({items:".cpac-column"})})}function cpac_menu(){var e=jQuery("#cpac div.cpac-menu");e.find("a").click(function(e,n){var t=jQuery(this).attr("href");if(t){var i=t.replace("#cpac-box-","");jQuery(".cpac-menu a").removeClass("current"),jQuery(".columns-container").hide(),jQuery(this).addClass("current");var c=jQuery('.columns-container[data-type="'+i+'"]').show(),a=c.find(".cpac-columns");jQuery(document).trigger("cac_menu_change",a)}e.preventDefault()}),e.find("a.current").trigger("click")}jQuery(document).ready(function(){return 0===jQuery("#cpac").length?!1:(cpac_pointer(),cpac_submit_form(),cpac_clear_input_defaults(),cpac_sortable(),cpac_menu(),cpac_help(),cpac_add_column(),cpac_importexport(),cpac_sidebar_feedback(),void jQuery(".cpac-column").each(function(e,n){jQuery(n).column_bind_toggle(),jQuery(n).column_bind_remove(),jQuery(n).column_bind_clone(),jQuery(n).cpac_bind_container_addon_events()}))}),jQuery.fn.column_bind_toggle=function(){var e=jQuery(this);e.find("td.column_type a, td.column_edit, td.column_label a.toggle, td.column_label .edit-button").click(function(n){n.preventDefault(),e.toggleClass("opened").find(".column-form").slideToggle(150),e.hasClass("events-binded")||e.column_bind_events(),e.addClass("events-binded"),jQuery(document).trigger("column_init",e)})},jQuery.fn.column_bind_remove=function(){jQuery(this).find(".remove-button").click(function(e){jQuery(this).closest(".cpac-column").column_remove(),e.preventDefault()})},jQuery.fn.column_bind_clone=function(){jQuery(this).find(".clone-button").click(function(e){var n,t;e.preventDefault(),n=jQuery(this).closest(".cpac-column"),t=n.column_clone(),"undefined"!=typeof t&&t.removeClass("loading").hide().slideDown()})},jQuery.fn.cpac_column_refresh=function(){var e=jQuery(this);e.addClass("loading"),e.find(".column-form").prepend('<span class="spinner" />'),jQuery.post(ajaxurl,{plugin_id:"cpac",action:"cpac_column_refresh",column:jQuery(this).find("input.column-name").val(),formdata:jQuery(this).parents("form").serialize()},function(n){var t=jQuery("<div>"+n+"</div>").children();e.replaceWith(t),e=t,e.column_bind_toggle(),e.column_bind_remove(),e.column_bind_clone(),e.column_bind_events(),e.removeClass("loading").addClass("opened").find(".column-form").show(),jQuery(document).trigger("column_change",e)})},jQuery.fn.column_bind_events=function(){var e=jQuery(this),n=e.closest(".columns-container "),t=n.attr("data-type"),i=e.find(".column_type select option:selected").val();e.find(".column_type select").change(function(){var c=jQuery("optgroup",this).children(":selected"),a=c.val(),o=c.text(),r=jQuery(this).next(".msg").hide(),u=n.find('.for-cloning-only .cpac-column[data-type="'+a+'"]');if(u.length)if(u.find(".is-disabled").length)r.html(u.find(".is-disabled").html()).show(),jQuery(this).find("option").removeAttr("selected"),jQuery(this).find('option[value="'+i+'"]').attr("selected","selected");else{if("undefined"==typeof u.attr("data-clone")&&jQuery(".cpac-columns",n).find('[data-type="'+a+'"]').length)return r.html(cpac_i18n.clone.replace("%s","<strong>"+o+"</strong>")).show(),jQuery(this).find("option").removeAttr("selected"),void jQuery(this).find('option[value="'+i+'"]').attr("selected","selected");var l=u.clone();l.addClass("opened").find(".column-form").show(),l.find(".column-meta").replaceWith(e.find(".column-meta")),l.find(".column-form").replaceWith(e.find(".column-form")),l.cpac_update_clone_id(t),e.replaceWith(l),l.cpac_column_refresh()}}),e.find(".column_label .input input").bind("keyup change",function(){var e=jQuery(this).val();jQuery(this).closest(".cpac-column").find("td.column_label .inner > a.toggle").text(e)}),e.column_width_slider();var c=e.find(".column-meta span.width");c.on("update",function(){var n=e.find("input.width").val(),t=e.find("input.unit").filter(":checked").val();n>0?jQuery(this).text(n+t):jQuery(this).text("")});var a=e.find(".column_width .unit-select label");a.on("click",function(){e.find("span.unit").text(jQuery(this).find("input").val()),e.column_width_slider(),c.trigger("update")});var o=e.find("input.width").on("keyup",function(){e.column_width_slider(),jQuery(this).trigger("validate"),c.trigger("update")}).on("validate",function(){var e=o.val(),n=jQuery.trim(e);jQuery.isNumeric(n)||(n=n.replace(/\D/g,"")),n.length>3&&(n=n.substring(0,3)),0>=n&&(n=""),n!==e&&o.val(n)});e.find(".column_image_size label.custom-size").click(function(){var e=jQuery(this).closest(".input");jQuery(this).hasClass("image-size-custom")?(jQuery(".custom-size-w",e).removeClass("hidden"),jQuery(".custom-size-h",e).removeClass("hidden")):(jQuery(".custom-size-w",e).addClass("hidden"),jQuery(".custom-size-h",e).addClass("hidden"))}),e.find(".column-form .label label, .column-form .label .info").hover(function(){jQuery(this).parents(".label").find("p.description").show()},function(){jQuery(this).parents(".label").find("p.description").hide()}),"column-meta"==e.find(".column_type select").val()&&e.find(".column_field_type select").change(function(){e.cpac_column_refresh()})},jQuery.fn.column_remove=function(){jQuery(this).addClass("deleting").animate({opacity:0,height:0},350,function(e){jQuery(this).remove()})},jQuery.fn.column_width_slider=function(){var e=jQuery(this).find(".column_width"),n=e.find("input.width"),t=e.find("input.unit"),i=t.filter(":checked").val(),c=n.val(),a=e.find(".width-slider"),o=jQuery(this).find(".column-meta span.width");"%"==i&&c>100&&(c=100),n.val(c),a.slider({range:"min",min:0,max:"%"==i?100:500,value:c,slide:function(e,t){n.val(t.value),o.trigger("update"),n.trigger("validate")}})},jQuery.fn.column_clone=function(){var e=jQuery(this).closest(".columns-container"),n=jQuery(this);if("undefined"==typeof n.attr("data-clone")){var t=cpac_i18n.clone.replace("%s","<strong>"+n.find(".column_label .toggle").text()+"</strong>");return n.addClass("opened").find(".column-form").slideDown(150),void n.find(".msg").html(t).show()}var i=jQuery(this).clone();return i.cpac_update_clone_id(e.attr("data-type")),jQuery(this).after(i),i.column_bind_toggle(),i.column_bind_remove(),i.column_bind_clone(),i.column_bind_events(),cpac_sortable(),jQuery(document).trigger("column_add",i),i},jQuery.fn.cpac_update_clone_id=function(e){var n=jQuery(this),t=n.attr("data-type"),i=jQuery('.columns-container[data-type="'+e+'"]').find(".cpac-columns"),c=jQuery(i).find('*[data-type="'+t+'"]').not(n),a=jQuery.map(c,function(e,n){return jQuery(e).attr("data-clone")?parseInt(jQuery(e).attr("data-clone"),10):0});a.sort();for(var o=Math.max.apply(null,a)+1,r=0;o>=r&&-1!==jQuery.inArray(r,a);r++);if(0!==r){var u=n.attr("data-clone"),l="";u&&(l="-"+u),n.attr("data-clone",r),n.find("input.clone").val(r),n.find("input.column-name").val(t+"-"+r);var d=n.find("input, select, label");jQuery(d).each(function(e,n){var i=t+"-"+r;jQuery(n).attr("name")&&jQuery(n).attr("name",jQuery(n).attr("name").replace(t+l,i)),jQuery(n).attr("for")&&jQuery(n).attr("for",jQuery(n).attr("for").replace(t+l,i)),jQuery(n).attr("id")&&jQuery(n).attr("id",jQuery(n).attr("id").replace(t+l,i))})}},jQuery(document).bind("column_init column_change column_add",function(e,n){jQuery(n).cpac_bind_column_addon_events(),jQuery(n).cpac_bind_container_addon_events()}),jQuery.fn.cpac_bind_column_addon_events=function(){var e=jQuery(this),n=e.find("[data-toggle-id] label");n.on("click",function(){var n=jQuery(this).closest("td.input").data("toggle-id"),t=jQuery("input",this).val(),i=e.find('[data-indicator-id="'+n+'"]').removeClass("on");"on"==t&&i.addClass("on");var c=e.find('[data-additional-option-id="'+n+'"]').addClass("hide");"on"==t&&c.removeClass("hide")}),e.find("[data-toggle-id]").each(function(){var n=e.find('[data-additional-option-id="'+jQuery(this).data("toggle-id")+'"]').addClass("hide");"on"==jQuery("input:checked",this).val()&&n.removeClass("hide")})},jQuery.fn.cpac_bind_container_addon_events=function(){var e=jQuery(this),n=e.find("[data-indicator-id]");n.unbind("click").click(function(){var n=jQuery(this).data("indicator-id"),t=e.find('[data-toggle-id="'+n+'"] input');jQuery(this).hasClass("on")?(jQuery(this).removeClass("on").addClass("off"),t.filter("[value=off]").prop("checked",!0)):(jQuery(this).removeClass("off").addClass("on"),t.filter("[value=on]").prop("checked",!0))})};
classes/addons.php CHANGED
@@ -41,7 +41,7 @@ class CPAC_Addons {
41
  return;
42
  }
43
 
44
- if ( ! class_exists('CAC_Addon_Pro') ) {
45
  cpac_admin_message( 'You need Admin Columns Pro.', 'error' );
46
  return;
47
  }
@@ -107,7 +107,7 @@ class CPAC_Addons {
107
  public function get_addon_groups() {
108
 
109
  $addon_groups = array(
110
- 'integration' => __( 'Plugins', 'cpac' )
111
  );
112
 
113
  /**
@@ -132,14 +132,14 @@ class CPAC_Addons {
132
 
133
  $addons = array(
134
  'cac-addon-acf' => array(
135
- 'title' => __( 'Advanced Custom Fields', 'cpac' ),
136
- 'description' => __( 'Display and edit Advanced Custom Fields fields in the posts overview in seconds!', 'cpac' ),
137
  'group' => 'integration',
138
  'image' => CPAC_URL . 'assets/images/addons/acf.png'
139
  ),
140
  'cac-addon-woocommerce' => array(
141
- 'title' => __( 'WooCommerce', 'cpac' ),
142
- 'description' => __( 'Enhance the products, orders and coupons overviews with new columns and inline editing.', 'cpac' ),
143
  'group' => 'integration',
144
  'image' => CPAC_URL . 'assets/images/addons/woocommerce.png'
145
  )
41
  return;
42
  }
43
 
44
+ if ( ! class_exists( 'CAC_Addon_Pro', false ) ) {
45
  cpac_admin_message( 'You need Admin Columns Pro.', 'error' );
46
  return;
47
  }
107
  public function get_addon_groups() {
108
 
109
  $addon_groups = array(
110
+ 'integration' => __( 'Plugins', 'codepress-admin-columns' )
111
  );
112
 
113
  /**
132
 
133
  $addons = array(
134
  'cac-addon-acf' => array(
135
+ 'title' => __( 'Advanced Custom Fields', 'codepress-admin-columns' ),
136
+ 'description' => __( 'Display and edit Advanced Custom Fields fields in the posts overview in seconds!', 'codepress-admin-columns' ),
137
  'group' => 'integration',
138
  'image' => CPAC_URL . 'assets/images/addons/acf.png'
139
  ),
140
  'cac-addon-woocommerce' => array(
141
+ 'title' => __( 'WooCommerce', 'codepress-admin-columns' ),
142
+ 'description' => __( 'Enhance the products, orders and coupons overviews with new columns and inline editing.', 'codepress-admin-columns' ),
143
  'group' => 'integration',
144
  'image' => CPAC_URL . 'assets/images/addons/woocommerce.png'
145
  )
classes/column.php CHANGED
@@ -34,6 +34,11 @@ class CPAC_Column {
34
  */
35
  public $properties = array();
36
 
 
 
 
 
 
37
  /**
38
  * @since 2.0
39
  *
@@ -158,6 +163,9 @@ class CPAC_Column {
158
  'hidden' => false
159
  );
160
 
 
 
 
161
  foreach ( $default_properties as $property => $value ) {
162
  $this->properties[ $property ] = $value;
163
  }
@@ -207,7 +215,7 @@ class CPAC_Column {
207
  * @param array $properties Column properties
208
  * @param CPAC_Storage_Model $storage_model Storage Model class instance
209
  */
210
- $this->properties = apply_filters( 'cac/column/properties', $this->properties ); // do not pass $this because object is not ready
211
 
212
  /**
213
  * Filter the properties of a column type for a specific storage model
@@ -216,7 +224,7 @@ class CPAC_Column {
216
  * @since 2.0
217
  * @see Filter cac/column/properties
218
  */
219
- $this->properties = apply_filters( "cac/column/properties/storage_key={$this->storage_model->key}", $this->properties ); // do not pass $this because object is not ready
220
 
221
  // Column label defaults to column type label
222
  if ( ! isset( $this->options['label'] ) ) {
@@ -264,6 +272,22 @@ class CPAC_Column {
264
  return $this;
265
  }
266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  /**
268
  * @param int $id
269
  * @return object
@@ -381,8 +405,11 @@ class CPAC_Column {
381
  * @param string $field_key
382
  * @return string Attribute Name
383
  */
 
 
 
384
  public function attr_id( $field_name ) {
385
- echo "cpac-{$this->storage_model->key}-{$this->properties->name}-{$field_name}";
386
  }
387
 
388
  /**
@@ -594,10 +621,10 @@ class CPAC_Column {
594
  */
595
  public function get_all_image_sizes() {
596
  $image_sizes = array(
597
- 'thumbnail' => __( "Thumbnail", 'cpac' ),
598
- 'medium' => __( "Medium", 'cpac' ),
599
- 'large' => __( "Large", 'cpac' ),
600
- 'full' => __( "Full", 'cpac' )
601
  );
602
 
603
  foreach( get_intermediate_image_sizes() as $size ) {
@@ -1016,6 +1043,27 @@ class CPAC_Column {
1016
  return $name;
1017
  }
1018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1019
  /**
1020
  * @since 2.0
1021
  * @param string $field_key
@@ -1038,17 +1086,17 @@ class CPAC_Column {
1038
  public function display_field_date_format() {
1039
 
1040
  $field_key = 'date_format';
1041
- $label = __( 'Date Format', 'cpac' );
1042
- $description = __( 'This will determine how the date will be displayed.', 'cpac' );
1043
 
1044
  ?>
1045
  <tr class="column_<?php echo $field_key; ?>">
1046
  <?php $this->label_view( $label, $description, $field_key ); ?>
1047
  <td class="input">
1048
- <input type="text" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>" value="<?php echo $this->options->date_format; ?>" placeholder="<?php _e( 'Example:', 'cpac' ); ?> d M Y H:i"/>
1049
  <p class="description">
1050
- <?php printf( __( 'Leave empty for WordPress date format, change your <a href="%s">default date format here</a>.' , 'cpac' ), admin_url( 'options-general.php' ) . '#date_format_custom_radio' ); ?>
1051
- <a target='_blank' href='http://codex.wordpress.org/Formatting_Date_and_Time'><?php _e( 'Documentation on date and time formatting.', 'cpac' ); ?></a>
1052
  </p>
1053
  </td>
1054
  </tr>
@@ -1062,8 +1110,8 @@ class CPAC_Column {
1062
  public function display_field_excerpt_length() {
1063
 
1064
  $field_key = 'excerpt_length';
1065
- $label = __( 'Excerpt length', 'cpac' );
1066
- $description = __( 'Number of words', 'cpac' );
1067
 
1068
  ?>
1069
  <tr class="column_<?php echo $field_key; ?>">
@@ -1081,7 +1129,7 @@ class CPAC_Column {
1081
  public function display_field_preview_size() {
1082
 
1083
  $field_key = 'image_size';
1084
- $label = __( 'Preview size', 'cpac' );
1085
 
1086
  ?>
1087
  <tr class="column_<?php echo $field_key; ?>">
@@ -1098,13 +1146,13 @@ class CPAC_Column {
1098
 
1099
  <div class="custom_image_size">
1100
  <label for="<?php $this->attr_id( $field_key ); ?>-custom" class="custom-size image-size-custom" >
1101
- <input type="radio" value="cpac-custom" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-custom"<?php checked( $this->options->image_size, 'cpac-custom' ); ?>><?php _e( 'Custom', 'cpac' ); ?>
1102
  </label>
1103
  <label for="<?php $this->attr_id( $field_key ); ?>-w" class="custom-size-w<?php echo $this->options->image_size != 'cpac-custom' ? ' hidden' : ''; ?>">
1104
- <input type="text" name="<?php $this->attr_name( 'image_size_w' ); ?>" id="<?php $this->attr_id( $field_key ); ?>-w" value="<?php echo $this->options->image_size_w; ?>" /><?php _e( 'width', 'cpac' ); ?>
1105
  </label>
1106
  <label for="<?php $this->attr_id( $field_key ); ?>-h" class="custom-size-h<?php echo $this->options->image_size != 'cpac-custom' ? ' hidden' : ''; ?>">
1107
- <input type="text" name="<?php $this->attr_name( 'image_size_h' ); ?>" id="<?php $this->attr_id( $field_key ); ?>-h" value="<?php echo $this->options->image_size_h; ?>" /><?php _e( 'height', 'cpac' ); ?>
1108
  </label>
1109
  </div>
1110
  </td>
@@ -1116,8 +1164,8 @@ class CPAC_Column {
1116
  * @since 2.1.1
1117
  */
1118
  public function display_field_before_after() {
1119
- $this->display_field_text( 'before', __( "Before", 'cpac' ), __( 'This text will appear before the custom field value.', 'cpac' ) );
1120
- $this->display_field_text( 'after', __( "After", 'cpac' ), __( 'This text will appear after the custom field value.', 'cpac' ) );
1121
  }
1122
 
1123
  /**
@@ -1126,30 +1174,31 @@ class CPAC_Column {
1126
  public function display_field_user_format() {
1127
 
1128
  $nametypes = array(
1129
- 'display_name' => __( 'Display Name', 'cpac' ),
1130
- 'first_name' => __( 'First Name', 'cpac' ),
1131
- 'last_name' => __( 'Last Name', 'cpac' ),
1132
- 'nickname' => __( 'Nickname', 'cpac' ),
1133
- 'user_login' => __( 'User Login', 'cpac' ),
1134
- 'user_email' => __( 'User Email', 'cpac' ),
1135
- 'ID' => __( 'User ID', 'cpac' ),
1136
- 'first_last_name' => __( 'First and Last Name', 'cpac' ),
1137
  );
1138
 
1139
- $this->display_field_select( 'display_author_as', __( 'Display format', 'cpac' ), $nametypes, __( 'This is the format of the author name.', 'cpac' ) );
1140
  }
1141
 
1142
  /**
1143
  * @since 2.3.4
1144
  * @param string $name Name of the column option
1145
- * @return string $label Label
1146
- * @return array $options Select options
1147
- * @return strong $description (optional) Description below the label
1148
  */
1149
- public function display_field_select( $name, $label, $options = array(), $description = '' ) {
1150
  $current = $this->get_option( $name );
 
1151
  ?>
1152
- <tr class="column-<?php echo $name; ?>">
1153
  <?php $this->label_view( $label, $description, $name ); ?>
1154
  <td class="input">
1155
  <select name="<?php $this->attr_name( $name ); ?>" id="<?php $this->attr_id( $name ); ?>">
@@ -1165,9 +1214,9 @@ class CPAC_Column {
1165
  /**
1166
  * @since 2.3.4
1167
  * @param string $name Name of the column option
1168
- * @return string $label Label
1169
- * @return array $options Select options
1170
- * @return strong $description (optional) Description below the label
1171
  */
1172
  public function display_field_text( $name, $label, $description = '' ) {
1173
  ?>
@@ -1181,17 +1230,19 @@ class CPAC_Column {
1181
  }
1182
 
1183
  /**
1184
- * @since NEWVERSION
1185
  *
1186
  * @param string $name Name of the column option
1187
- * @return string $label Label
1188
- * @return array $options Select options
1189
- * @return strong $description (optional) Description below the label
 
1190
  */
1191
- public function display_field_radio( $name, $label, $options = array(), $description = '' ) {
1192
  $current = $this->get_option( $name );
 
1193
  ?>
1194
- <tr class="column-<?php echo $name; ?>">
1195
  <?php $this->label_view( $label, $description, $name ); ?>
1196
  <td class="input">
1197
  <?php foreach ( $options as $key => $label ) : ?>
@@ -1274,7 +1325,7 @@ class CPAC_Column {
1274
  <div class="inner">
1275
  <div class="meta">
1276
 
1277
- <span title="<?php echo esc_attr( __( 'width', 'cpac' ) ); ?>" class="width" data-indicator-id="">
1278
  <?php echo ! empty( $this->options->width ) ? $this->options->width . $this->options->width_unit : ''; ?>
1279
  </span>
1280
 
@@ -1296,11 +1347,11 @@ class CPAC_Column {
1296
 
1297
  </div>
1298
  <a class="toggle" href="javascript:;"><?php echo stripslashes( $this->get_label() ); ?></a>
1299
- <a class="edit-button" href="javascript:;"><?php _e( 'Edit', 'cpac' ); ?></a>
1300
  <?php if ( $this->properties->is_cloneable ) : ?>
1301
- <a class="clone-button" href="#"><?php _e( 'Clone', 'cpac' ); ?></a>
1302
  <?php endif; ?>
1303
- <a class="remove-button" href="javascript:;"><?php _e( 'Remove', 'cpac' ); ?></a>
1304
  </div>
1305
  </td>
1306
  <td class="column_type">
@@ -1318,7 +1369,7 @@ class CPAC_Column {
1318
  <table class="widefat">
1319
  <tbody>
1320
  <tr class="column_type">
1321
- <?php $this->label_view( __( 'Type', 'cpac' ), __( 'Choose a column type.', 'cpac' ) . '<em>' . __( 'Type', 'cpac' ) . ': ' . $this->properties->type . '</em><em>' . __( 'Name', 'cpac' ) . ': ' . $this->properties->name . '</em>', 'type' ); ?>
1322
  <td class="input">
1323
  <select name="<?php $this->attr_name( 'type' ); ?>" id="<?php $this->attr_id( 'type' ); ?>">
1324
  <?php echo $column_list; ?>
@@ -1328,17 +1379,17 @@ class CPAC_Column {
1328
  </tr><!--.column_label-->
1329
 
1330
  <tr class="column_label<?php echo $this->properties->hide_label ? ' hidden' : ''; ?>">
1331
- <?php $this->label_view( __( 'Label', 'cpac' ), __( 'This is the name which will appear as the column header.', 'cpac' ), 'label' ); ?>
1332
  <td class="input">
1333
  <input class="text" type="text" name="<?php $this->attr_name( 'label' ); ?>" id="<?php $this->attr_id( 'label' ); ?>" value="<?php echo esc_attr( $this->options->label ); //echo sanitize_text_field( $this->options->label ); ?>" />
1334
  </td>
1335
  </tr><!--.column_label-->
1336
 
1337
  <tr class="column_width">
1338
- <?php $this->label_view( __( 'Width', 'cpac' ), '', 'width' ); ?>
1339
  <td class="input">
1340
- <div class="description" title="<?php _e( 'default', 'cpac' ); ?>">
1341
- <input class="width" type="text" placeholder="<?php _e( 'auto', 'cpac' ); ?>" name="<?php $this->attr_name( 'width' ); ?>" id="<?php $this->attr_id( 'width' ); ?>" value="<?php echo $this->options->width; ?>" />
1342
  <span class="unit"><?php echo $this->options->width_unit; ?></span>
1343
  </div>
1344
  <div class="width-slider"></div>
@@ -1390,7 +1441,7 @@ class CPAC_Column {
1390
  <td colspan="2">
1391
  <p>
1392
  <?php if ( $this->properties->is_cloneable ) : ?>
1393
- <a class="clone-button" href="#"><?php _e( 'Clone', 'cpac' ); ?></a>
1394
  <?php endif; ?>
1395
  <a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a>
1396
  </p>
@@ -1403,4 +1454,66 @@ class CPAC_Column {
1403
  </div>
1404
  <?php
1405
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1406
  }
34
  */
35
  public $properties = array();
36
 
37
+ /**
38
+ * @since 2.4.7
39
+ */
40
+ protected $filtering_model;
41
+
42
  /**
43
  * @since 2.0
44
  *
163
  'hidden' => false
164
  );
165
 
166
+ // @since 2.4.7
167
+ $default_properties = apply_filters( 'cac/column/default_properties', $default_properties );
168
+
169
  foreach ( $default_properties as $property => $value ) {
170
  $this->properties[ $property ] = $value;
171
  }
215
  * @param array $properties Column properties
216
  * @param CPAC_Storage_Model $storage_model Storage Model class instance
217
  */
218
+ $this->properties = apply_filters( 'cac/column/properties', $this->properties, $this ); // do not pass $this because object is not ready
219
 
220
  /**
221
  * Filter the properties of a column type for a specific storage model
224
  * @since 2.0
225
  * @see Filter cac/column/properties
226
  */
227
+ $this->properties = apply_filters( "cac/column/properties/storage_key={$this->storage_model->key}", $this->properties, $this ); // do not pass $this because object is not ready
228
 
229
  // Column label defaults to column type label
230
  if ( ! isset( $this->options['label'] ) ) {
272
  return $this;
273
  }
274
 
275
+ /**
276
+ * @since 2.4.7
277
+ */
278
+ public function set_filter( $filtering_model ) {
279
+ $this->filtering_model = $filtering_model;
280
+
281
+ return $this;
282
+ }
283
+
284
+ /**
285
+ * @since 2.4.7
286
+ */
287
+ public function get_filter() {
288
+ return $this->filtering_model;
289
+ }
290
+
291
  /**
292
  * @param int $id
293
  * @return object
405
  * @param string $field_key
406
  * @return string Attribute Name
407
  */
408
+ public function get_attr_id( $field_name ) {
409
+ return "cpac-{$this->storage_model->key}-{$this->properties->name}-{$field_name}";
410
+ }
411
  public function attr_id( $field_name ) {
412
+ echo $this->get_attr_id( $field_name );
413
  }
414
 
415
  /**
621
  */
622
  public function get_all_image_sizes() {
623
  $image_sizes = array(
624
+ 'thumbnail' => __( "Thumbnail", 'codepress-admin-columns' ),
625
+ 'medium' => __( "Medium", 'codepress-admin-columns' ),
626
+ 'large' => __( "Large", 'codepress-admin-columns' ),
627
+ 'full' => __( "Full", 'codepress-admin-columns' )
628
  );
629
 
630
  foreach( get_intermediate_image_sizes() as $size ) {
1043
  return $name;
1044
  }
1045
 
1046
+ /**
1047
+ * @since 2.4.7
1048
+ */
1049
+ public function get_filter_operator_label( $name ) {
1050
+ $operators = $this->get_filter_operators();
1051
+ return isset( $operators[ $name ] ) ? $operators[ $name ] : false;
1052
+ }
1053
+
1054
+ /**
1055
+ * @since 2.4.7
1056
+ */
1057
+ public function get_filter_operators() {
1058
+ $operators = array(
1059
+ '' => __( 'Exact match', 'codepress-admin-columns' ),
1060
+ '<=' => __( 'Lesser than', 'codepress-admin-columns' ),
1061
+ '>=' => __( 'Greater than', 'codepress-admin-columns' ),
1062
+ 'between' => __( 'Between', 'codepress-admin-columns' ),
1063
+ );
1064
+ return $operators;
1065
+ }
1066
+
1067
  /**
1068
  * @since 2.0
1069
  * @param string $field_key
1086
  public function display_field_date_format() {
1087
 
1088
  $field_key = 'date_format';
1089
+ $label = __( 'Date Format', 'codepress-admin-columns' );
1090
+ $description = __( 'This will determine how the date will be displayed.', 'codepress-admin-columns' );
1091
 
1092
  ?>
1093
  <tr class="column_<?php echo $field_key; ?>">
1094
  <?php $this->label_view( $label, $description, $field_key ); ?>
1095
  <td class="input">
1096
+ <input type="text" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>" value="<?php echo $this->options->date_format; ?>" placeholder="<?php _e( 'Example:', 'codepress-admin-columns' ); ?> d M Y H:i"/>
1097
  <p class="description">
1098
+ <?php printf( __( "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>." , 'codepress-admin-columns' ), admin_url( 'options-general.php' ) . '#date_format_custom_radio' ); ?>
1099
+ <a target='_blank' href='http://codex.wordpress.org/Formatting_Date_and_Time'><?php _e( 'Documentation on date and time formatting.', 'codepress-admin-columns' ); ?></a>
1100
  </p>
1101
  </td>
1102
  </tr>
1110
  public function display_field_excerpt_length() {
1111
 
1112
  $field_key = 'excerpt_length';
1113
+ $label = __( 'Excerpt length', 'codepress-admin-columns' );
1114
+ $description = __( 'Number of words', 'codepress-admin-columns' );
1115
 
1116
  ?>
1117
  <tr class="column_<?php echo $field_key; ?>">
1129
  public function display_field_preview_size() {
1130
 
1131
  $field_key = 'image_size';
1132
+ $label = __( 'Preview size', 'codepress-admin-columns' );
1133
 
1134
  ?>
1135
  <tr class="column_<?php echo $field_key; ?>">
1146
 
1147
  <div class="custom_image_size">
1148
  <label for="<?php $this->attr_id( $field_key ); ?>-custom" class="custom-size image-size-custom" >
1149
+ <input type="radio" value="cpac-custom" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-custom"<?php checked( $this->options->image_size, 'cpac-custom' ); ?>><?php _e( 'Custom', 'codepress-admin-columns' ); ?>
1150
  </label>
1151
  <label for="<?php $this->attr_id( $field_key ); ?>-w" class="custom-size-w<?php echo $this->options->image_size != 'cpac-custom' ? ' hidden' : ''; ?>">
1152
+ <input type="text" name="<?php $this->attr_name( 'image_size_w' ); ?>" id="<?php $this->attr_id( $field_key ); ?>-w" value="<?php echo $this->options->image_size_w; ?>" /><?php _e( 'width', 'codepress-admin-columns' ); ?>
1153
  </label>
1154
  <label for="<?php $this->attr_id( $field_key ); ?>-h" class="custom-size-h<?php echo $this->options->image_size != 'cpac-custom' ? ' hidden' : ''; ?>">
1155
+ <input type="text" name="<?php $this->attr_name( 'image_size_h' ); ?>" id="<?php $this->attr_id( $field_key ); ?>-h" value="<?php echo $this->options->image_size_h; ?>" /><?php _e( 'height', 'codepress-admin-columns' ); ?>
1156
  </label>
1157
  </div>
1158
  </td>
1164
  * @since 2.1.1
1165
  */
1166
  public function display_field_before_after() {
1167
+ $this->display_field_text( 'before', __( "Before", 'codepress-admin-columns' ), __( 'This text will appear before the custom field value.', 'codepress-admin-columns' ) );
1168
+ $this->display_field_text( 'after', __( "After", 'codepress-admin-columns' ), __( 'This text will appear after the custom field value.', 'codepress-admin-columns' ) );
1169
  }
1170
 
1171
  /**
1174
  public function display_field_user_format() {
1175
 
1176
  $nametypes = array(
1177
+ 'display_name' => __( 'Display Name', 'codepress-admin-columns' ),
1178
+ 'first_name' => __( 'First Name', 'codepress-admin-columns' ),
1179
+ 'last_name' => __( 'Last Name', 'codepress-admin-columns' ),
1180
+ 'nickname' => __( 'Nickname', 'codepress-admin-columns' ),
1181
+ 'user_login' => __( 'User Login', 'codepress-admin-columns' ),
1182
+ 'user_email' => __( 'User Email', 'codepress-admin-columns' ),
1183
+ 'ID' => __( 'User ID', 'codepress-admin-columns' ),
1184
+ 'first_last_name' => __( 'First and Last Name', 'codepress-admin-columns' ),
1185
  );
1186
 
1187
+ $this->display_field_select( 'display_author_as', __( 'Display format', 'codepress-admin-columns' ), $nametypes, __( 'This is the format of the author name.', 'codepress-admin-columns' ) );
1188
  }
1189
 
1190
  /**
1191
  * @since 2.3.4
1192
  * @param string $name Name of the column option
1193
+ * @param string $label Label
1194
+ * @param array $options Select options
1195
+ * @param strong $description (optional) Description below the label
1196
  */
1197
+ public function display_field_select( $name, $label, $options = array(), $description = '', $optional_toggle_id = '' ) {
1198
  $current = $this->get_option( $name );
1199
+ $data_optional = $optional_toggle_id ? ' data-additional-option-id="' . $this->get_attr_id( $optional_toggle_id ) . '"' : '';
1200
  ?>
1201
+ <tr class="column-<?php echo $name; ?>" <?php echo $data_optional; ?>>
1202
  <?php $this->label_view( $label, $description, $name ); ?>
1203
  <td class="input">
1204
  <select name="<?php $this->attr_name( $name ); ?>" id="<?php $this->attr_id( $name ); ?>">
1214
  /**
1215
  * @since 2.3.4
1216
  * @param string $name Name of the column option
1217
+ * @param string $label Label
1218
+ * @param array $options Select options
1219
+ * @param strong $description (optional) Description below the label
1220
  */
1221
  public function display_field_text( $name, $label, $description = '' ) {
1222
  ?>
1230
  }
1231
 
1232
  /**
1233
+ * @since 2.4.7
1234
  *
1235
  * @param string $name Name of the column option
1236
+ * @param string $label Label
1237
+ * @param array $options Select options
1238
+ * @param strong $description (optional) Description below the label
1239
+ * @param string $optional_toggle_id (optional) Toggle ID will hide the row untill the toggle is triggered
1240
  */
1241
+ public function display_field_radio( $name, $label, $options = array(), $description = '', $optional_toggle_id = '' ) {
1242
  $current = $this->get_option( $name );
1243
+ $data_optional = $optional_toggle_id ? ' data-additional-option-id="' . $this->get_attr_id( $optional_toggle_id ) . '"' : '';
1244
  ?>
1245
+ <tr class="column-<?php echo $name; ?>" <?php echo $data_optional; ?>>
1246
  <?php $this->label_view( $label, $description, $name ); ?>
1247
  <td class="input">
1248
  <?php foreach ( $options as $key => $label ) : ?>
1325
  <div class="inner">
1326
  <div class="meta">
1327
 
1328
+ <span title="<?php echo esc_attr( __( 'width', 'codepress-admin-columns' ) ); ?>" class="width" data-indicator-id="">
1329
  <?php echo ! empty( $this->options->width ) ? $this->options->width . $this->options->width_unit : ''; ?>
1330
  </span>
1331
 
1347
 
1348
  </div>
1349
  <a class="toggle" href="javascript:;"><?php echo stripslashes( $this->get_label() ); ?></a>
1350
+ <a class="edit-button" href="javascript:;"><?php _e( 'Edit', 'codepress-admin-columns' ); ?></a>
1351
  <?php if ( $this->properties->is_cloneable ) : ?>
1352
+ <a class="clone-button" href="#"><?php _e( 'Clone', 'codepress-admin-columns' ); ?></a>
1353
  <?php endif; ?>
1354
+ <a class="remove-button" href="javascript:;"><?php _e( 'Remove', 'codepress-admin-columns' ); ?></a>
1355
  </div>
1356
  </td>
1357
  <td class="column_type">
1369
  <table class="widefat">
1370
  <tbody>
1371
  <tr class="column_type">
1372
+ <?php $this->label_view( __( 'Type', 'codepress-admin-columns' ), __( 'Choose a column type.', 'codepress-admin-columns' ) . '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->properties->type . '</em><em>' . __( 'Name', 'codepress-admin-columns' ) . ': ' . $this->properties->name . '</em>', 'type' ); ?>
1373
  <td class="input">
1374
  <select name="<?php $this->attr_name( 'type' ); ?>" id="<?php $this->attr_id( 'type' ); ?>">
1375
  <?php echo $column_list; ?>
1379
  </tr><!--.column_label-->
1380
 
1381
  <tr class="column_label<?php echo $this->properties->hide_label ? ' hidden' : ''; ?>">
1382
+ <?php $this->label_view( __( 'Label', 'codepress-admin-columns' ), __( 'This is the name which will appear as the column header.', 'codepress-admin-columns' ), 'label' ); ?>
1383
  <td class="input">
1384
  <input class="text" type="text" name="<?php $this->attr_name( 'label' ); ?>" id="<?php $this->attr_id( 'label' ); ?>" value="<?php echo esc_attr( $this->options->label ); //echo sanitize_text_field( $this->options->label ); ?>" />
1385
  </td>
1386
  </tr><!--.column_label-->
1387
 
1388
  <tr class="column_width">
1389
+ <?php $this->label_view( __( 'Width', 'codepress-admin-columns' ), '', 'width' ); ?>
1390
  <td class="input">
1391
+ <div class="description" title="<?php _e( 'default', 'codepress-admin-columns' ); ?>">
1392
+ <input class="width" type="text" placeholder="<?php _e( 'auto', 'codepress-admin-columns' ); ?>" name="<?php $this->attr_name( 'width' ); ?>" id="<?php $this->attr_id( 'width' ); ?>" value="<?php echo $this->options->width; ?>" />
1393
  <span class="unit"><?php echo $this->options->width_unit; ?></span>
1394
  </div>
1395
  <div class="width-slider"></div>
1441
  <td colspan="2">
1442
  <p>
1443
  <?php if ( $this->properties->is_cloneable ) : ?>
1444
+ <a class="clone-button" href="#"><?php _e( 'Clone', 'codepress-admin-columns' ); ?></a>
1445
  <?php endif; ?>
1446
  <a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a>
1447
  </p>
1454
  </div>
1455
  <?php
1456
  }
1457
+
1458
+ /**
1459
+ * Display settings field for post property to display
1460
+ *
1461
+ * @since 2.4.7
1462
+ */
1463
+ public function display_field_post_property_display() {
1464
+ $this->display_field_select(
1465
+ 'post_property_display',
1466
+ __( 'Property To Display', 'codepress-admin-columns' ),
1467
+ array(
1468
+ 'title' => __( 'Title' ), // default
1469
+ 'id' => __( 'ID' ),
1470
+ 'author' => __( 'Author' )
1471
+ ),
1472
+ __( 'Post property to display for related post(s).', 'codepress-admin-columns' )
1473
+ );
1474
+ }
1475
+
1476
+ /**
1477
+ * Display settings field for the page the posts should link to
1478
+ *
1479
+ * @since 2.4.7
1480
+ */
1481
+ public function display_field_post_link_to() {
1482
+ $this->display_field_select(
1483
+ 'post_link_to',
1484
+ __( 'Link To', 'codepress-admin-columns' ),
1485
+ array(
1486
+ '' => __( 'None' ),
1487
+ 'edit_post' => __( 'Edit Post' ),
1488
+ 'view_post' => __( 'View Post' ),
1489
+ 'edit_author' => __( 'Edit Post Author', 'codepress-admin-columns' ),
1490
+ 'view_author' => __( 'View Public Post Author Page', 'codepress-admin-columns' )
1491
+ ),
1492
+ __( 'Page the posts should link to.', 'codepress-admin-columns' )
1493
+ );
1494
+ }
1495
+
1496
+ /**
1497
+ * @since 2.4.7
1498
+ */
1499
+ function display_settings_placeholder( $url ) { ?>
1500
+ <div class="is-disabled">
1501
+ <p>
1502
+ <strong><?php printf( __( "The %s column is only available in Admin Columns Pro - Business or Developer.", 'codepress-admin-columns' ), $this->get_label() ); ?></strong>
1503
+ </p>
1504
+ <p>
1505
+ <?php printf( __( "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>.", 'codepress-admin-columns' ), $this->get_label(), admin_url( 'options-general.php?page=codepress-admin-columns&tab=addons' ) ); ?>
1506
+ </p>
1507
+ <p>
1508
+ <?php printf( __( "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview.", 'codepress-admin-columns' ), $this->get_label(), $this->get_label() ); ?>
1509
+ </p>
1510
+ <a href="<?php echo add_query_arg( array(
1511
+ 'utm_source' => 'plugin-installation',
1512
+ 'utm_medium' => $this->get_type(),
1513
+ 'utm_campaign' => 'plugin-installation'
1514
+ ), $url ); ?>" class="button button-primary"><?php _e( 'Find out more', 'codepress-admin-columns' ); ?></a>
1515
+ </div>
1516
+ <?php
1517
+ }
1518
+
1519
  }
classes/column/acf-placeholder.php CHANGED
@@ -6,44 +6,18 @@
6
  */
7
  class CPAC_Column_ACF_Placeholder extends CPAC_Column {
8
 
9
- /**
10
- * @see CPAC_Column::init()
11
- * @since 2.2.1
12
- */
13
  public function init() {
14
 
15
  parent::init();
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-acf_placeholder';
19
- $this->properties['label'] = __( 'ACF Field', 'cpac' );
20
  $this->properties['is_pro_only'] = true;
 
21
  }
22
 
23
- /**
24
- * @see CPAC_Column::display_settings()
25
- * @since 2.2
26
- */
27
- function display_settings() {
28
-
29
- ?>
30
- <div class="is-disabled">
31
- <p>
32
- <strong><?php _e( 'This feature is only available in Admin Columns Pro - Business or Developer.' ); ?></strong>
33
- </p>
34
- <p>
35
- <?php printf( __( "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>.", 'cpac' ), admin_url( 'options-general.php?page=codepress-admin-columns&tab=addons' ) ); ?>
36
- </p>
37
- <p>
38
- <?php _e( 'Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview.', 'cpac' ); ?>
39
- </p>
40
- <a href="<?php echo add_query_arg( array(
41
- 'utm_source' => 'plugin-installation',
42
- 'utm_medium' => 'acf-placeholder',
43
- 'utm_campaign' => 'plugin-installation'
44
- ), 'http://admincolumns.com/advanced-custom-fields-integration/' ); ?>" class="button button-primary"><?php _e( 'Find out more', 'cpac' ); ?></a>
45
- </div>
46
- <?php
47
  }
48
-
49
- }
6
  */
7
  class CPAC_Column_ACF_Placeholder extends CPAC_Column {
8
 
 
 
 
 
9
  public function init() {
10
 
11
  parent::init();
12
 
13
  // Properties
14
  $this->properties['type'] = 'column-acf_placeholder';
15
+ $this->properties['label'] = __( 'Advanced Custom Field', 'codepress-admin-columns' );
16
  $this->properties['is_pro_only'] = true;
17
+ $this->properties['group'] = 'acf';
18
  }
19
 
20
+ public function display_settings() {
21
+ $this->display_settings_placeholder( 'https://www.admincolumns.com/advanced-custom-fields-columns/' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
23
+ }
 
classes/column/actions.php CHANGED
@@ -26,7 +26,7 @@ abstract class CPAC_Column_Actions extends CPAC_Column {
26
 
27
  // Properties
28
  $this->properties['type'] = 'column-actions';
29
- $this->properties['label'] = __( 'Actions', 'cpac' );
30
 
31
  // Options
32
  $this->options['use_icons'] = false;
@@ -93,7 +93,7 @@ abstract class CPAC_Column_Actions extends CPAC_Column {
93
 
94
  ?>
95
  <tr class="column_editing">
96
- <?php $this->label_view( __( 'Use icons?', 'cpac' ), __( 'Use icons instead of text for displaying the actions.', 'cpac' ), 'use_icons' ); ?>
97
  <td class="input">
98
  <label for="<?php $this->attr_id( 'use_icons' ); ?>-yes">
99
  <input type="radio" value="1" name="<?php $this->attr_name( 'use_icons' ); ?>" id="<?php $this->attr_id( 'use_icons' ); ?>-yes"<?php checked( $this->options->use_icons, '1' ); ?> />
26
 
27
  // Properties
28
  $this->properties['type'] = 'column-actions';
29
+ $this->properties['label'] = __( 'Actions', 'codepress-admin-columns' );
30
 
31
  // Options
32
  $this->options['use_icons'] = false;
93
 
94
  ?>
95
  <tr class="column_editing">
96
+ <?php $this->label_view( __( 'Use icons?', 'codepress-admin-columns' ), __( 'Use icons instead of text for displaying the actions.', 'codepress-admin-columns' ), 'use_icons' ); ?>
97
  <td class="input">
98
  <label for="<?php $this->attr_id( 'use_icons' ); ?>-yes">
99
  <input type="radio" value="1" name="<?php $this->attr_name( 'use_icons' ); ?>" id="<?php $this->attr_id( 'use_icons' ); ?>-yes"<?php checked( $this->options->use_icons, '1' ); ?> />
classes/column/comment/ID.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_ID extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-comment_id';
19
- $this->properties['label'] = __( 'ID', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-comment_id';
19
+ $this->properties['label'] = __( 'ID', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/agent.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Agent extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-agent';
19
- $this->properties['label'] = __( 'Agent', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-agent';
19
+ $this->properties['label'] = __( 'Agent', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/approved.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Approved extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-approved';
19
- $this->properties['label'] = __( 'Approved', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-approved';
19
+ $this->properties['label'] = __( 'Approved', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/author-avatar.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Author_Avatar extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_avatar';
19
- $this->properties['label'] = __( 'Avatar', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_avatar';
19
+ $this->properties['label'] = __( 'Avatar', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/author-email.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Author_Email extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_email';
19
- $this->properties['label'] = __( 'Author email', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_email';
19
+ $this->properties['label'] = __( 'Author email', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/author-ip.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Author_Ip extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_ip';
19
- $this->properties['label'] = __( 'Author IP', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_ip';
19
+ $this->properties['label'] = __( 'Author IP', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/author-name.php CHANGED
@@ -9,7 +9,7 @@ class CPAC_Column_Comment_Author_Name extends CPAC_Column {
9
 
10
  // Properties
11
  $this->properties['type'] = 'column-author_name';
12
- $this->properties['label'] = __( 'Author name', 'cpac' );
13
  }
14
 
15
  public function get_value( $id ) {
9
 
10
  // Properties
11
  $this->properties['type'] = 'column-author_name';
12
+ $this->properties['label'] = __( 'Author name', 'codepress-admin-columns' );
13
  }
14
 
15
  public function get_value( $id ) {
classes/column/comment/author-url.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Author_Url extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_url';
19
- $this->properties['label'] = __( 'Author url', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author_url';
19
+ $this->properties['label'] = __( 'Author url', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/author.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Author extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author';
19
- $this->properties['label'] = __( 'Author', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-author';
19
+ $this->properties['label'] = __( 'Author', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/date-gmt.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Date_Gmt extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-date_gmt';
19
- $this->properties['label'] = __( 'Date GMT', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-date_gmt';
19
+ $this->properties['label'] = __( 'Date GMT', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/date.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Date extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-date';
19
- $this->properties['label'] = __( 'Date', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-date';
19
+ $this->properties['label'] = __( 'Date', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/excerpt.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Excerpt extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-excerpt';
19
- $this->properties['label'] = __( 'Content', 'cpac' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 15;
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-excerpt';
19
+ $this->properties['label'] = __( 'Content', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 15;
classes/column/comment/post.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * CPAC_Column_Comment_Post
4
+ *
5
+ * @since 2.4.7
6
+ */
7
+ class CPAC_Column_Comment_Post extends CPAC_Column {
8
+
9
+ /**
10
+ * @see CPAC_Column::init()
11
+ * @since 2.4.7
12
+ */
13
+ public function init() {
14
+
15
+ parent::init();
16
+
17
+ // Properties
18
+ $this->properties['type'] = 'column-post';
19
+ $this->properties['label'] = __( 'Post', 'codepress-admin-columns' );
20
+
21
+ // Options
22
+ $this->options['post_property_display'] = 'title';
23
+ $this->options['post_link_to'] = 'edit_post';
24
+ }
25
+
26
+ /**
27
+ * @see CPAC_Column::get_value()
28
+ * @since 2.4.7
29
+ */
30
+ public function get_value( $id ) {
31
+
32
+ $raw_value = $this->get_raw_value( $id );
33
+
34
+ // Get page to link to
35
+ switch ( $this->get_option( 'post_link_to' ) ) {
36
+ case 'edit_post':
37
+ $link = get_edit_post_link( $raw_value );
38
+ break;
39
+ case 'view_post':
40
+ $link = get_permalink( $raw_value );
41
+ break;
42
+ case 'edit_author':
43
+ $link = get_edit_user_link( get_post_field( 'post_author', $raw_value ) );
44
+ break;
45
+ case 'view_author':
46
+ $link = get_author_posts_url( get_post_field( 'post_author', $raw_value ) );
47
+ break;
48
+ }
49
+
50
+ // Get property of post to display
51
+ switch ( $this->get_option( 'post_property_display' ) ) {
52
+ case 'author':
53
+ $label = get_the_author_meta( 'display_name', get_post_field( 'post_author', $raw_value ) );
54
+ break;
55
+ case 'id':
56
+ $label = $raw_value;
57
+ break;
58
+ default:
59
+ $label = get_the_title( $raw_value );
60
+ break;
61
+ }
62
+
63
+ $value = $link ? "<a href='{$link}'>{$label}</a>" : $label;
64
+
65
+ return $value;
66
+ }
67
+
68
+ /**
69
+ * @see CPAC_Column::get_raw_value()
70
+ * @since 2.4.7
71
+ */
72
+ public function get_raw_value( $id ) {
73
+
74
+ $comment = get_comment( $id );
75
+
76
+ return $comment->comment_post_ID;
77
+ }
78
+
79
+ /**
80
+ * @see CPAC_Column::display_settings()
81
+ * @since 2.4.7
82
+ */
83
+ public function display_settings() {
84
+
85
+ $this->display_field_post_property_display();
86
+ $this->display_field_post_link_to();
87
+ }
88
+
89
+ }
classes/column/comment/reply-to.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Reply_To extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-reply_to';
19
- $this->properties['label'] = __( 'In Reply To', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-reply_to';
19
+ $this->properties['label'] = __( 'In Reply To', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/comment/type.php CHANGED
@@ -10,7 +10,7 @@ class CPAC_Column_Comment_Type extends CPAC_Column {
10
 
11
  // Properties
12
  $this->properties['type'] = 'column-type';
13
- $this->properties['label'] = __( 'Type', 'cpac' );
14
  }
15
 
16
  public function get_value( $id ) {
10
 
11
  // Properties
12
  $this->properties['type'] = 'column-type';
13
+ $this->properties['label'] = __( 'Type', 'codepress-admin-columns' );
14
  }
15
 
16
  public function get_value( $id ) {
classes/column/comment/user.php CHANGED
@@ -8,7 +8,7 @@ class CPAC_Column_Comment_User extends CPAC_Column {
8
  parent::init();
9
 
10
  $this->properties['type'] = 'column-user';
11
- $this->properties['label'] = __( 'User', 'cpac' );
12
  }
13
 
14
  public function get_value( $id ) {
8
  parent::init();
9
 
10
  $this->properties['type'] = 'column-user';
11
+ $this->properties['label'] = __( 'User', 'codepress-admin-columns' );
12
  }
13
 
14
  public function get_value( $id ) {
classes/column/comment/word-count.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Comment_Word_Count extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-word_count';
19
- $this->properties['label'] = __( 'Word count', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-word_count';
19
+ $this->properties['label'] = __( 'Word count', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/custom-field.php CHANGED
@@ -20,7 +20,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
20
 
21
  // Properties
22
  $this->properties['type'] = 'column-meta';
23
- $this->properties['label'] = __( 'Custom Field', 'cpac' );
24
  $this->properties['classes'] = 'cpac-box-metafield';
25
  $this->properties['is_cloneable'] = true;
26
  $this->properties['group'] = 'custom-field';
@@ -92,19 +92,19 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
92
  public function get_custom_field_types() {
93
 
94
  $custom_field_types = array(
95
- '' => __( 'Default', 'cpac' ),
96
- 'checkmark' => __( 'Checkmark (true/false)', 'cpac' ),
97
- 'color' => __( 'Color', 'cpac' ),
98
- 'count' => __( 'Counter', 'cpac' ),
99
- 'date' => __( 'Date', 'cpac' ),
100
  'excerpt' => __( 'Excerpt'),
101
- 'image' => __( 'Image', 'cpac' ),
102
- 'library_id' => __( 'Media Library', 'cpac' ),
103
- 'array' => __( 'Multiple Values', 'cpac' ),
104
- 'numeric' => __( 'Numeric', 'cpac' ),
105
- 'title_by_id' => __( 'Post Title (Post ID\'s)', 'cpac' ),
106
- 'user_by_id' => __( 'Username (User ID\'s)', 'cpac' ),
107
- 'term_by_id' => __( 'Term Name (Term ID\'s)', 'cpac' ),
108
  );
109
 
110
  // deprecated. do not use, will be removed.
@@ -376,7 +376,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
376
  }
377
 
378
  /**
379
- * @since NEWVERSION
380
  */
381
  public function get_meta_keys() {
382
  return $this->storage_model->get_meta_keys();
@@ -388,7 +388,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
388
  */
389
  public function display_settings() { ?>
390
  <tr class="column_field">
391
- <?php $this->label_view( __( "Custom Field", 'cpac' ), __( "Select your custom field.", 'cpac' ), 'field' ); ?>
392
  <td class="input">
393
 
394
  <?php if ( $meta_keys = $this->get_meta_keys() ) : ?>
@@ -398,14 +398,14 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
398
  <?php endforeach; ?>
399
  </select>
400
  <?php else : ?>
401
- <?php _e( 'No custom fields available.', 'cpac' ); ?> <?php printf( __( 'Please create a %s item first.', 'cpac' ), '<em>' . $this->storage_model->singular_label . '</em>' ); ?>
402
  <?php endif; ?>
403
 
404
  </td>
405
  </tr>
406
 
407
  <tr class="column_field_type">
408
- <?php $this->label_view( __( "Field Type", 'cpac' ), __( 'This will determine how the value will be displayed.', 'cpac' ) . '<em>' . __( 'Type', 'cpac' ) . ': ' . $this->options->field_type . '</em>', 'field_type' ); ?>
409
  <td class="input">
410
  <select name="<?php $this->attr_name( 'field_type' ); ?>" id="<?php $this->attr_id( 'field_type' ); ?>">
411
  <?php foreach ( $this->get_custom_field_types() as $fieldkey => $fieldtype ) : ?>
20
 
21
  // Properties
22
  $this->properties['type'] = 'column-meta';
23
+ $this->properties['label'] = __( 'Custom Field', 'codepress-admin-columns' );
24
  $this->properties['classes'] = 'cpac-box-metafield';
25
  $this->properties['is_cloneable'] = true;
26
  $this->properties['group'] = 'custom-field';
92
  public function get_custom_field_types() {
93
 
94
  $custom_field_types = array(
95
+ '' => __( 'Default', 'codepress-admin-columns' ),
96
+ 'checkmark' => __( 'Checkmark (true/false)', 'codepress-admin-columns' ),
97
+ 'color' => __( 'Color', 'codepress-admin-columns' ),
98
+ 'count' => __( 'Counter', 'codepress-admin-columns' ),
99
+ 'date' => __( 'Date', 'codepress-admin-columns' ),
100
  'excerpt' => __( 'Excerpt'),
101
+ 'image' => __( 'Image', 'codepress-admin-columns' ),
102
+ 'library_id' => __( 'Media Library', 'codepress-admin-columns' ),
103
+ 'array' => __( 'Multiple Values', 'codepress-admin-columns' ),
104
+ 'numeric' => __( 'Numeric', 'codepress-admin-columns' ),
105
+ 'title_by_id' => __( 'Post Title (Post ID\'s)', 'codepress-admin-columns' ),
106
+ 'user_by_id' => __( 'Username (User ID\'s)', 'codepress-admin-columns' ),
107
+ 'term_by_id' => __( 'Term Name (Term ID\'s)', 'codepress-admin-columns' ),
108
  );
109
 
110
  // deprecated. do not use, will be removed.
376
  }
377
 
378
  /**
379
+ * @since 2.4.7
380
  */
381
  public function get_meta_keys() {
382
  return $this->storage_model->get_meta_keys();
388
  */
389
  public function display_settings() { ?>
390
  <tr class="column_field">
391
+ <?php $this->label_view( __( "Custom Field", 'codepress-admin-columns' ), __( "Select your custom field.", 'codepress-admin-columns' ), 'field' ); ?>
392
  <td class="input">
393
 
394
  <?php if ( $meta_keys = $this->get_meta_keys() ) : ?>
398
  <?php endforeach; ?>
399
  </select>
400
  <?php else : ?>
401
+ <?php _e( 'No custom fields available.', 'codepress-admin-columns' ); ?> <?php printf( __( 'Please create a %s item first.', 'codepress-admin-columns' ), '<em>' . $this->storage_model->singular_label . '</em>' ); ?>
402
  <?php endif; ?>
403
 
404
  </td>
405
  </tr>
406
 
407
  <tr class="column_field_type">
408
+ <?php $this->label_view( __( "Field Type", 'codepress-admin-columns' ), __( 'This will determine how the value will be displayed.', 'codepress-admin-columns' ) . '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->options->field_type . '</em>', 'field_type' ); ?>
409
  <td class="input">
410
  <select name="<?php $this->attr_name( 'field_type' ); ?>" id="<?php $this->attr_id( 'field_type' ); ?>">
411
  <?php foreach ( $this->get_custom_field_types() as $fieldkey => $fieldtype ) : ?>
classes/column/link/ID.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_ID extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-link_id';
19
- $this->properties['label'] = __( 'ID', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-link_id';
19
+ $this->properties['label'] = __( 'ID', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/link/actions.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Actions extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-actions';
19
- $this->properties['label'] = __( 'Actions', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-actions';
19
+ $this->properties['label'] = __( 'Actions', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/link/description.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Description extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-description';
19
- $this->properties['label'] = __( 'Description', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-description';
19
+ $this->properties['label'] = __( 'Description', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/link/image.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Image extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-image';
19
- $this->properties['label'] = __( 'Image', 'cpac' );
20
 
21
  // Options
22
  $this->options['image_size'] = '';
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-image';
19
+ $this->properties['label'] = __( 'Image', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['image_size'] = '';
classes/column/link/length.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Length extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-length';
19
- $this->properties['label'] = __( 'Length', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-length';
19
+ $this->properties['label'] = __( 'Length', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/link/notes.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Notes extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-notes';
19
- $this->properties['label'] = __( 'Notes', 'cpac' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 30;
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-notes';
19
+ $this->properties['label'] = __( 'Notes', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 30;
classes/column/link/owner.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Owner extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-owner';
19
- $this->properties['label'] = __( 'Owner', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-owner';
19
+ $this->properties['label'] = __( 'Owner', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/link/rss.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Rss extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-rss';
19
- $this->properties['label'] = __( 'Rss', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-rss';
19
+ $this->properties['label'] = __( 'Rss', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/link/target.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Link_Target extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-target';
19
- $this->properties['label'] = __( 'Target', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-target';
19
+ $this->properties['label'] = __( 'Target', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/ID.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_ID extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-mediaid';
19
- $this->properties['label'] = __( 'ID', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-mediaid';
19
+ $this->properties['label'] = __( 'ID', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/alternate-text.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Alternate_Text extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-alternate_text';
19
- $this->properties['label'] = __( 'Alt', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-alternate_text';
19
+ $this->properties['label'] = __( 'Alt', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/attached-to.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Attached_To extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-attached_to';
19
- $this->properties['label'] = __( 'Attached to post', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-attached_to';
19
+ $this->properties['label'] = __( 'Attached to post', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/available-sizes.php CHANGED
@@ -17,7 +17,7 @@ class CPAC_Column_Media_Available_Sizes extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-available_sizes';
20
- $this->properties['label'] = __( 'Available Sizes', 'cpac' );
21
  }
22
 
23
  /**
@@ -37,7 +37,7 @@ class CPAC_Column_Media_Available_Sizes extends CPAC_Column {
37
 
38
  $url = wp_get_attachment_url( $id );
39
  $filename = basename( $url );
40
- $paths[] = "<a title='{$filename}' href='{$url}'>" . __( 'full size', 'cpac' ) . "</a>";
41
 
42
  foreach ( $intersect as $size ) {
43
  $src = wp_get_attachment_image_src( $id, $size );
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-available_sizes';
20
+ $this->properties['label'] = __( 'Available Sizes', 'codepress-admin-columns' );
21
  }
22
 
23
  /**
37
 
38
  $url = wp_get_attachment_url( $id );
39
  $filename = basename( $url );
40
+ $paths[] = "<a title='{$filename}' href='{$url}'>" . __( 'full size', 'codepress-admin-columns' ) . "</a>";
41
 
42
  foreach ( $intersect as $size ) {
43
  $src = wp_get_attachment_image_src( $id, $size );
classes/column/media/caption.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Caption extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-caption';
19
- $this->properties['label'] = __( 'Caption', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-caption';
19
+ $this->properties['label'] = __( 'Caption', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/description.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Description extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-description';
19
- $this->properties['label'] = __( 'Description', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-description';
19
+ $this->properties['label'] = __( 'Description', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/dimensions.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Dimensions extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-dimensions';
19
- $this->properties['label'] = __( 'Dimensions', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-dimensions';
19
+ $this->properties['label'] = __( 'Dimensions', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/exif-data.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Exif_Data extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-exif_data';
19
- $this->properties['label'] = __( 'EXIF data', 'cpac' );
20
  $this->properties['is_cloneable'] = true;
21
 
22
  // Options
@@ -35,16 +35,16 @@ class CPAC_Column_Media_Exif_Data extends CPAC_Column {
35
  private function get_exif_types() {
36
 
37
  $exif_types = array(
38
- 'aperture' => __( 'Aperture', 'cpac' ),
39
- 'credit' => __( 'Credit', 'cpac' ),
40
- 'camera' => __( 'Camera', 'cpac' ),
41
- 'caption' => __( 'Caption', 'cpac' ),
42
- 'created_timestamp' => __( 'Timestamp', 'cpac' ),
43
- 'copyright' => __( 'Copyright EXIF', 'cpac' ),
44
- 'focal_length' => __( 'Focal Length', 'cpac' ),
45
- 'iso' => __( 'ISO', 'cpac' ),
46
- 'shutter_speed' => __( 'Shutter Speed', 'cpac' ),
47
- 'title' => __( 'Title', 'cpac' ),
48
  );
49
 
50
  return $exif_types;
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-exif_data';
19
+ $this->properties['label'] = __( 'EXIF data', 'codepress-admin-columns' );
20
  $this->properties['is_cloneable'] = true;
21
 
22
  // Options
35
  private function get_exif_types() {
36
 
37
  $exif_types = array(
38
+ 'aperture' => __( 'Aperture', 'codepress-admin-columns' ),
39
+ 'credit' => __( 'Credit', 'codepress-admin-columns' ),
40
+ 'camera' => __( 'Camera', 'codepress-admin-columns' ),
41
+ 'caption' => __( 'Caption', 'codepress-admin-columns' ),
42
+ 'created_timestamp' => __( 'Timestamp', 'codepress-admin-columns' ),
43
+ 'copyright' => __( 'Copyright EXIF', 'codepress-admin-columns' ),
44
+ 'focal_length' => __( 'Focal Length', 'codepress-admin-columns' ),
45
+ 'iso' => __( 'ISO', 'codepress-admin-columns' ),
46
+ 'shutter_speed' => __( 'Shutter Speed', 'codepress-admin-columns' ),
47
+ 'title' => __( 'Title', 'codepress-admin-columns' ),
48
  );
49
 
50
  return $exif_types;
classes/column/media/file-name.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_File_Name extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-file_name';
19
- $this->properties['label'] = __( 'File name', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-file_name';
19
+ $this->properties['label'] = __( 'File name', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/file-size.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_File_Size extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-file_size';
19
- $this->properties['label'] = __( 'File size', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-file_size';
19
+ $this->properties['label'] = __( 'File size', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/full-path.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Full_Path extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-full_path';
19
- $this->properties['label'] = __( 'Full path', 'cpac' );
20
 
21
  // Options
22
  $this->options['path_scope'] = 'full';
@@ -80,8 +80,8 @@ class CPAC_Column_Media_Full_Path extends CPAC_Column {
80
  public function display_field_path_scope() {
81
 
82
  $field_key = 'path_scope';
83
- $label = __( 'Path scope', 'cpac' );
84
- $description = __( 'Part of the file path to display', 'cpac' );
85
 
86
  ?>
87
  <tr class="column_<?php echo $field_key; ?>">
@@ -89,17 +89,17 @@ class CPAC_Column_Media_Full_Path extends CPAC_Column {
89
  <td class="input">
90
  <label for="<?php $this->attr_id( $field_key ); ?>-full">
91
  <input type="radio" value="full" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-full"<?php checked( $this->options->path_scope, 'full' ); ?> />
92
- <?php _e( 'Full path', 'cpac' ); ?>
93
  </label>
94
  <br/>
95
  <label for="<?php $this->attr_id( $field_key ); ?>-relative-domain">
96
  <input type="radio" value="relative-domain" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-relative-domain"<?php checked( $this->options->path_scope, 'relative-domain' ); ?> />
97
- <?php _e( 'Relative to domain', 'cpac' ); ?>
98
  </label>
99
  <br/>
100
  <label for="<?php $this->attr_id( $field_key ); ?>-relative-uploads">
101
  <input type="radio" value="relative-uploads" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-relative-uploads"<?php checked( $this->options->path_scope, 'relative-uploads' ); ?> />
102
- <?php _e( 'Relative to main uploads folder ', 'cpac' ); ?>
103
  </label>
104
  </td>
105
  </tr>
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-full_path';
19
+ $this->properties['label'] = __( 'Full path', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['path_scope'] = 'full';
80
  public function display_field_path_scope() {
81
 
82
  $field_key = 'path_scope';
83
+ $label = __( 'Path scope', 'codepress-admin-columns' );
84
+ $description = __( 'Part of the file path to display', 'codepress-admin-columns' );
85
 
86
  ?>
87
  <tr class="column_<?php echo $field_key; ?>">
89
  <td class="input">
90
  <label for="<?php $this->attr_id( $field_key ); ?>-full">
91
  <input type="radio" value="full" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-full"<?php checked( $this->options->path_scope, 'full' ); ?> />
92
+ <?php _e( 'Full path', 'codepress-admin-columns' ); ?>
93
  </label>
94
  <br/>
95
  <label for="<?php $this->attr_id( $field_key ); ?>-relative-domain">
96
  <input type="radio" value="relative-domain" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-relative-domain"<?php checked( $this->options->path_scope, 'relative-domain' ); ?> />
97
+ <?php _e( 'Relative to domain', 'codepress-admin-columns' ); ?>
98
  </label>
99
  <br/>
100
  <label for="<?php $this->attr_id( $field_key ); ?>-relative-uploads">
101
  <input type="radio" value="relative-uploads" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-relative-uploads"<?php checked( $this->options->path_scope, 'relative-uploads' ); ?> />
102
+ <?php _e( 'Relative to main uploads folder ', 'codepress-admin-columns' ); ?>
103
  </label>
104
  </td>
105
  </tr>
classes/column/media/height.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Height extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-height';
19
- $this->properties['label'] = __( 'Height', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-height';
19
+ $this->properties['label'] = __( 'Height', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/mime-type.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Mime_Type extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-mime_type';
19
- $this->properties['label'] = __( 'Mime type', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-mime_type';
19
+ $this->properties['label'] = __( 'Mime type', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/media/width.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Media_Width extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-width';
19
- $this->properties['label'] = __( 'Width', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-width';
19
+ $this->properties['label'] = __( 'Width', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/ID.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_ID extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-postid';
19
- $this->properties['label'] = __( 'ID', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-postid';
19
+ $this->properties['label'] = __( 'ID', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/attachment-count.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Attachment_Count extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-attachment_count';
19
- $this->properties['label'] = __( 'No. of Attachments', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-attachment_count';
19
+ $this->properties['label'] = __( 'No. of Attachments', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/attachment.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Attachment extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-attachment';
19
- $this->properties['label'] = __( 'Attachments', 'cpac' );
20
 
21
  // Options
22
  $this->options['image_size'] = '';
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-attachment';
19
+ $this->properties['label'] = __( 'Attachments', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['image_size'] = '';
classes/column/post/author-name.php CHANGED
@@ -17,12 +17,13 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-author_name';
20
- $this->properties['label'] = __( 'Display Author As', 'cpac' );
21
  $this->properties['is_cloneable'] = true;
22
  $this->properties['object_property'] = 'post_author';
23
 
24
  // Options
25
- $this->options['display_author_as'] = '';
 
26
  }
27
 
28
  /**
@@ -37,6 +38,27 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
37
  $value = $this->get_display_name( $user_id );
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  return $value;
41
  }
42
 
@@ -58,5 +80,27 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
58
  public function display_settings() {
59
 
60
  $this->display_field_user_format();
 
61
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  }
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-author_name';
20
+ $this->properties['label'] = __( 'Display Author As', 'codepress-admin-columns' );
21
  $this->properties['is_cloneable'] = true;
22
  $this->properties['object_property'] = 'post_author';
23
 
24
  // Options
25
+ $this->options['display_author_as'] = '';
26
+ $this->options['user_link_to'] = '';
27
  }
28
 
29
  /**
38
  $value = $this->get_display_name( $user_id );
39
  }
40
 
41
+ switch ( $this->get_option( 'user_link_to' ) ) {
42
+ case 'edit_user':
43
+ $link = get_edit_user_link( $user_id );
44
+ break;
45
+ case 'view_user_posts':
46
+ $link = add_query_arg( array(
47
+ 'post_type' => get_post_field( 'post_type', $post_id ),
48
+ 'author' => get_the_author_meta( 'ID' )
49
+ ), 'edit.php' );
50
+ break;
51
+ case 'view_author':
52
+ $link = get_author_posts_url( $user_id );
53
+ break;
54
+ default:
55
+ $link = '';
56
+ }
57
+
58
+ if ( $link ) {
59
+ $value = '<a href="' . esc_url( $link ) . '">' . $value . '</a>';
60
+ }
61
+
62
  return $value;
63
  }
64
 
80
  public function display_settings() {
81
 
82
  $this->display_field_user_format();
83
+ $this->display_field_user_link_to();
84
  }
85
+
86
+ /**
87
+ * Display settings field for the page the posts should link to
88
+ *
89
+ * @since 2.4.7
90
+ */
91
+ public function display_field_user_link_to() {
92
+
93
+ $this->display_field_select(
94
+ 'user_link_to',
95
+ __( 'Link To', 'codepress-admin-columns' ),
96
+ array(
97
+ '' => __( 'None' ),
98
+ 'edit_user' => __( 'Edit User Profile' ),
99
+ 'view_user_posts' => __( 'View User Posts' ),
100
+ 'view_author' => __( 'View Public Author Page', 'codepress-admin-columns' )
101
+ ),
102
+ __( 'Page the author name should link to.', 'codepress-admin-columns' )
103
+ );
104
+ }
105
+
106
  }
classes/column/post/before-moretag.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Before_Moretag extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-before_moretag';
19
- $this->properties['label'] = __( 'Before More Tag', 'cpac' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 15;
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-before_moretag';
19
+ $this->properties['label'] = __( 'Before More Tag', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 15;
classes/column/post/comment-count.php CHANGED
@@ -17,7 +17,7 @@ class CPAC_Column_Post_Comment_Count extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-comment_count';
20
- $this->properties['label'] = __( 'Comment count', 'cpac' );
21
  $this->properties['is_cloneable'] = true;
22
 
23
  // Options
@@ -31,11 +31,11 @@ class CPAC_Column_Post_Comment_Count extends CPAC_Column {
31
  function get_comment_stati() {
32
 
33
  return array(
34
- 'total_comments' => __( 'Total', 'cpac' ),
35
- 'approved' => __( 'Approved', 'cpac' ),
36
- 'moderated' => __( 'Pending', 'cpac' ),
37
- 'spam' => __( 'Spam', 'cpac' ),
38
- 'trash' => __( 'Trash', 'cpac' ),
39
  );
40
  }
41
 
@@ -96,7 +96,7 @@ class CPAC_Column_Post_Comment_Count extends CPAC_Column {
96
  function display_settings() {
97
  ?>
98
  <tr class="column_comment-count">
99
- <?php $this->label_view( __( 'Comment status', 'cpac' ), __( 'Select which comment status you like to display.', 'cpac' ), 'comment-status' ); ?>
100
  <td class="input">
101
  <select name="<?php $this->attr_name( 'comment_status' ); ?>" id="<?php $this->attr_id( 'comment-status' ); ?>">
102
  <?php foreach ( $this->get_comment_stati() as $key => $label ) : ?>
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-comment_count';
20
+ $this->properties['label'] = __( 'Comment count', 'codepress-admin-columns' );
21
  $this->properties['is_cloneable'] = true;
22
 
23
  // Options
31
  function get_comment_stati() {
32
 
33
  return array(
34
+ 'total_comments' => __( 'Total', 'codepress-admin-columns' ),
35
+ 'approved' => __( 'Approved', 'codepress-admin-columns' ),
36
+ 'moderated' => __( 'Pending', 'codepress-admin-columns' ),
37
+ 'spam' => __( 'Spam', 'codepress-admin-columns' ),
38
+ 'trash' => __( 'Trash', 'codepress-admin-columns' ),
39
  );
40
  }
41
 
96
  function display_settings() {
97
  ?>
98
  <tr class="column_comment-count">
99
+ <?php $this->label_view( __( 'Comment status', 'codepress-admin-columns' ), __( 'Select which comment status you like to display.', 'codepress-admin-columns' ), 'comment-status' ); ?>
100
  <td class="input">
101
  <select name="<?php $this->attr_name( 'comment_status' ); ?>" id="<?php $this->attr_id( 'comment-status' ); ?>">
102
  <?php foreach ( $this->get_comment_stati() as $key => $label ) : ?>
classes/column/post/comment-status.php CHANGED
@@ -17,7 +17,7 @@ class CPAC_Column_Post_Comment_Status extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-comment_status';
20
- $this->properties['label'] = __( 'Comment status', 'cpac' );
21
  $this->properties['object_property'] = 'comment_status';
22
  }
23
 
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-comment_status';
20
+ $this->properties['label'] = __( 'Comment status', 'codepress-admin-columns' );
21
  $this->properties['object_property'] = 'comment_status';
22
  }
23
 
classes/column/post/content.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Content extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-content';
19
- $this->properties['label'] = __( 'Content', 'cpac' );
20
  $this->properties['object_property'] = 'post_content';
21
 
22
  // Options
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-content';
19
+ $this->properties['label'] = __( 'Content', 'codepress-admin-columns' );
20
  $this->properties['object_property'] = 'post_content';
21
 
22
  // Options
classes/column/post/depth.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Depth extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-depth';
19
- $this->properties['label'] = __( 'Depth', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-depth';
19
+ $this->properties['label'] = __( 'Depth', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/estimated-reading-time.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Estimated_Reading_Time extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-estimated_reading_time';
19
- $this->properties['label'] = __( 'Estimated Reading Time', 'cpac' );
20
 
21
  // Options
22
  $this->options['words_per_minute'] = 200;
@@ -63,10 +63,10 @@ class CPAC_Column_Post_Estimated_Reading_Time extends CPAC_Column {
63
  $time .= ':' . $seconds;
64
  }
65
  if ( $minutes < 1 ) {
66
- $time = $seconds . ' ' . _n( 'second', 'seconds', $seconds, 'cpac' );
67
  }
68
  else {
69
- $time .= ' ' . _n( 'minute', 'minutes', $minutes, 'cpac' );
70
  }
71
  }
72
 
@@ -104,8 +104,8 @@ class CPAC_Column_Post_Estimated_Reading_Time extends CPAC_Column {
104
  public function display_settings() {
105
 
106
  $field_key = 'words_per_minute';
107
- $label = __( 'Words per minute', 'cpac' );
108
- $description = __( 'Estimated reading time in words per minute', 'cpac' );
109
 
110
  ?>
111
  <tr class="column_<?php echo $field_key; ?>">
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-estimated_reading_time';
19
+ $this->properties['label'] = __( 'Estimated Reading Time', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['words_per_minute'] = 200;
63
  $time .= ':' . $seconds;
64
  }
65
  if ( $minutes < 1 ) {
66
+ $time = $seconds . ' ' . _n( 'second', 'seconds', $seconds, 'codepress-admin-columns' );
67
  }
68
  else {
69
+ $time .= ' ' . _n( 'minute', 'minutes', $minutes, 'codepress-admin-columns' );
70
  }
71
  }
72
 
104
  public function display_settings() {
105
 
106
  $field_key = 'words_per_minute';
107
+ $label = __( 'Words per minute', 'codepress-admin-columns' );
108
+ $description = __( 'Estimated reading time in words per minute', 'codepress-admin-columns' );
109
 
110
  ?>
111
  <tr class="column_<?php echo $field_key; ?>">
classes/column/post/excerpt.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Excerpt extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-excerpt';
19
- $this->properties['label'] = __( 'Excerpt', 'cpac' );
20
  $this->properties['object_property'] = 'post_excerpt';
21
 
22
  // Options
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-excerpt';
19
+ $this->properties['label'] = __( 'Excerpt', 'codepress-admin-columns' );
20
  $this->properties['object_property'] = 'post_excerpt';
21
 
22
  // Options
classes/column/post/featured-image.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Featured_Image extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-featured_image';
19
- $this->properties['label'] = __( 'Featured Image', 'cpac' );
20
 
21
  // Options
22
  $this->options['image_size'] = '';
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-featured_image';
19
+ $this->properties['label'] = __( 'Featured Image', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['image_size'] = '';
classes/column/post/formats.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Formats extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-post_formats';
19
- $this->properties['label'] = __( 'Post Format', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-post_formats';
19
+ $this->properties['label'] = __( 'Post Format', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/last-modified-author.php CHANGED
@@ -17,7 +17,7 @@ class CPAC_Column_Post_Last_Modified_Author extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-last_modified_author';
20
- $this->properties['label'] = __( 'Last Modified Author', 'cpac' );
21
  $this->properties['is_cloneable'] = true;
22
 
23
  // Options
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-last_modified_author';
20
+ $this->properties['label'] = __( 'Last Modified Author', 'codepress-admin-columns' );
21
  $this->properties['is_cloneable'] = true;
22
 
23
  // Options
classes/column/post/modified.php CHANGED
@@ -16,8 +16,8 @@ class CPAC_Column_Post_Modified extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-modified';
19
- $this->properties['label'] = __( 'Last modified', 'cpac' );
20
-
21
  // Options
22
  $this->options['date_format'] = '';
23
  }
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-modified';
19
+ $this->properties['label'] = __( 'Last modified', 'codepress-admin-columns' );
20
+
21
  // Options
22
  $this->options['date_format'] = '';
23
  }
classes/column/post/order.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Order extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-order';
19
- $this->properties['label'] = __( 'Order', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-order';
19
+ $this->properties['label'] = __( 'Order', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/page-template.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Page_Template extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-page_template';
19
- $this->properties['label'] = __( 'Page Template', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-page_template';
19
+ $this->properties['label'] = __( 'Page Template', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/parent.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Parent extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-parent';
19
- $this->properties['label'] = __( 'Parent', 'cpac' );
20
  $this->properties['object_property'] = 'post_parent';
21
  }
22
 
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-parent';
19
+ $this->properties['label'] = __( 'Parent', 'codepress-admin-columns' );
20
  $this->properties['object_property'] = 'post_parent';
21
  }
22
 
classes/column/post/path.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Path extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-path';
19
- $this->properties['label'] = __( 'Path', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-path';
19
+ $this->properties['label'] = __( 'Path', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/permalink.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Permalink extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-permalink';
19
- $this->properties['label'] = __( 'Permalink', 'cpac' );
20
 
21
  // Options
22
  $this->options['link_to_post'] = false;
@@ -65,15 +65,15 @@ class CPAC_Column_Post_Permalink extends CPAC_Column {
65
  $field_key = 'link_to_post';
66
  ?>
67
  <tr class="column_<?php echo $field_key; ?>">
68
- <?php $this->label_view( __( 'Link to post', 'cpac' ), __( 'This will make the permalink clickable.', 'cpac' ), $field_key ); ?>
69
  <td class="input">
70
  <label for="<?php $this->attr_id( $field_key ); ?>-on">
71
  <input type="radio" value="on" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-on"<?php checked( $this->options->link_to_post, 'on' ); ?> />
72
- <?php _e( 'Yes'); ?>
73
  </label>
74
  <label for="<?php $this->attr_id( $field_key ); ?>-off">
75
  <input type="radio" value="off" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-off"<?php checked( in_array( $this->options->link_to_post, array( '', 'off' ) ) ); ?> />
76
- <?php _e( 'No'); ?>
77
  </label>
78
  </td>
79
  </tr>
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-permalink';
19
+ $this->properties['label'] = __( 'Permalink', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['link_to_post'] = false;
65
  $field_key = 'link_to_post';
66
  ?>
67
  <tr class="column_<?php echo $field_key; ?>">
68
+ <?php $this->label_view( __( 'Link to post', 'codepress-admin-columns' ), __( 'This will make the permalink clickable.', 'codepress-admin-columns' ), $field_key ); ?>
69
  <td class="input">
70
  <label for="<?php $this->attr_id( $field_key ); ?>-on">
71
  <input type="radio" value="on" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-on"<?php checked( $this->options->link_to_post, 'on' ); ?> />
72
+ <?php _e( 'Yes' ); ?>
73
  </label>
74
  <label for="<?php $this->attr_id( $field_key ); ?>-off">
75
  <input type="radio" value="off" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-off"<?php checked( in_array( $this->options->link_to_post, array( '', 'off' ) ) ); ?> />
76
+ <?php _e( 'No' ); ?>
77
  </label>
78
  </td>
79
  </tr>
classes/column/post/ping-status.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Ping_Status extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-ping_status';
19
- $this->properties['label'] = __( 'Ping status', 'cpac' );
20
  $this->properties['object_property'] = 'ping_status';
21
  }
22
 
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-ping_status';
19
+ $this->properties['label'] = __( 'Ping status', 'codepress-admin-columns' );
20
  $this->properties['object_property'] = 'ping_status';
21
  }
22
 
classes/column/post/roles.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Roles extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-roles';
19
- $this->properties['label'] = __( 'Roles', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-roles';
19
+ $this->properties['label'] = __( 'Roles', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/shortcodes.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Shortcodes extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-shortcode';
19
- $this->properties['label'] = __( 'Shortcodes', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-shortcode';
19
+ $this->properties['label'] = __( 'Shortcodes', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/slug.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Slug extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-slug';
19
- $this->properties['label'] = __( 'Slug', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-slug';
19
+ $this->properties['label'] = __( 'Slug', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/status.php CHANGED
@@ -18,7 +18,7 @@ class CPAC_Column_Post_Status extends CPAC_Column {
18
 
19
  // Properties
20
  $this->properties['type'] = 'column-status';
21
- $this->properties['label'] = __( 'Status', 'cpac' );
22
  }
23
 
24
  /**
18
 
19
  // Properties
20
  $this->properties['type'] = 'column-status';
21
+ $this->properties['label'] = __( 'Status', 'codepress-admin-columns' );
22
  }
23
 
24
  /**
classes/column/post/sticky.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Sticky extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-sticky';
19
- $this->properties['label'] = __( 'Sticky', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-sticky';
19
+ $this->properties['label'] = __( 'Sticky', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/title-raw.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Title_Raw extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-title_raw';
19
- $this->properties['label'] = __( 'Title without actions', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-title_raw';
19
+ $this->properties['label'] = __( 'Title without actions', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/post/word-count.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_Post_Word_Count extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-word_count';
19
- $this->properties['label'] = __( 'Word count', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-word_count';
19
+ $this->properties['label'] = __( 'Word count', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/taxonomy.php CHANGED
@@ -17,7 +17,7 @@ class CPAC_Column_Taxonomy extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-taxonomy';
20
- $this->properties['label'] = __( 'Taxonomy', 'cpac' );
21
  $this->properties['is_cloneable'] = true;
22
 
23
  // Options
@@ -80,7 +80,7 @@ class CPAC_Column_Taxonomy extends CPAC_Column {
80
  ?>
81
 
82
  <tr class="column_taxonomy">
83
- <?php $this->label_view( __( "Taxonomy", 'cpac' ), '', 'taxonomy' ); ?>
84
  <td class="input">
85
  <select name="<?php $this->attr_name( 'taxonomy' ); ?>" id="<?php $this->attr_id( 'taxonomy' ); ?>">
86
  <?php foreach ( $taxonomies as $taxonomy ) : ?>
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-taxonomy';
20
+ $this->properties['label'] = __( 'Taxonomy', 'codepress-admin-columns' );
21
  $this->properties['is_cloneable'] = true;
22
 
23
  // Options
80
  ?>
81
 
82
  <tr class="column_taxonomy">
83
+ <?php $this->label_view( __( "Taxonomy", 'codepress-admin-columns' ), '', 'taxonomy' ); ?>
84
  <td class="input">
85
  <select name="<?php $this->attr_name( 'taxonomy' ); ?>" id="<?php $this->attr_id( 'taxonomy' ); ?>">
86
  <?php foreach ( $taxonomies as $taxonomy ) : ?>
classes/column/used-by-menu.php CHANGED
@@ -17,7 +17,7 @@ class CPAC_Column_Used_By_Menu extends CPAC_Column {
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-used_by_menu';
20
- $this->properties['label'] = __( 'Used by Menu', 'cpac' );
21
 
22
  // Options
23
  $this->options['link_to_menu'] = false;
@@ -130,7 +130,7 @@ class CPAC_Column_Used_By_Menu extends CPAC_Column {
130
  $field_key = 'link_to_menu';
131
  ?>
132
  <tr class="column_<?php echo $field_key; ?>">
133
- <?php $this->label_view( __( 'Link to menu', 'cpac' ), __( 'This will make the title link to the menu.', 'cpac' ), $field_key ); ?>
134
  <td class="input">
135
  <label for="<?php $this->attr_id( $field_key ); ?>-on">
136
  <input type="radio" value="on" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-on"<?php checked( $this->options->link_to_menu, 'on' ); ?> />
17
 
18
  // Properties
19
  $this->properties['type'] = 'column-used_by_menu';
20
+ $this->properties['label'] = __( 'Used by Menu', 'codepress-admin-columns' );
21
 
22
  // Options
23
  $this->options['link_to_menu'] = false;
130
  $field_key = 'link_to_menu';
131
  ?>
132
  <tr class="column_<?php echo $field_key; ?>">
133
+ <?php $this->label_view( __( 'Link to menu', 'codepress-admin-columns' ), __( 'This will make the title link to the menu.', 'codepress-admin-columns' ), $field_key ); ?>
134
  <td class="input">
135
  <label for="<?php $this->attr_id( $field_key ); ?>-on">
136
  <input type="radio" value="on" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-on"<?php checked( $this->options->link_to_menu, 'on' ); ?> />
classes/column/user/ID.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_ID extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_id';
19
- $this->properties['label'] = __( 'User ID', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_id';
19
+ $this->properties['label'] = __( 'User ID', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/user/actions.php CHANGED
@@ -4,50 +4,13 @@
4
  *
5
  * @since 2.0
6
  */
7
- class CPAC_Column_User_Actions extends CPAC_Column {
8
 
9
  /**
10
- * @see CPAC_Column::init()
11
- * @since 2.2.1
12
  */
13
- public function init() {
14
-
15
- parent::init();
16
-
17
- // Properties
18
- $this->properties['type'] = 'column-actions';
19
- $this->properties['label'] = __( 'Actions', 'cpac' );
20
- }
21
-
22
- /**
23
- * @see CPAC_Column::get_value()
24
- * @since 2.0
25
- */
26
- function get_value( $user_id ) {
27
-
28
- return $this->get_raw_value( $user_id );
29
- }
30
-
31
- /**
32
- * @see CPAC_Column::get_raw_value()
33
- * @since 2.0.3
34
- */
35
- function get_raw_value( $user_id ) {
36
-
37
- return $this->get_column_value_actions( $user_id );
38
- }
39
-
40
- /**
41
- * Get column value of user actions
42
- *
43
- * This part is copied from the Users List Table class
44
- *
45
- * @since 1.4.2
46
- *
47
- * @param int $id User ID
48
- * @return string Actions
49
- */
50
- private function get_column_value_actions( $id ) {
51
  $actions = array();
52
 
53
  $user_object = new WP_User( $id );
@@ -76,6 +39,7 @@ class CPAC_Column_User_Actions extends CPAC_Column {
76
  if ( is_multisite() && get_current_user_id() != $user_object->ID && current_user_can( 'remove_user', $user_object->ID ) )
77
  $actions['remove'] = "<a class='submitdelete' href='" . wp_nonce_url( $url."action=remove&amp;user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Remove' ) . "</a>";
78
 
79
- return implode(' | ', $actions);
80
  }
 
81
  }
4
  *
5
  * @since 2.0
6
  */
7
+ class CPAC_Column_User_Actions extends CPAC_Column_Actions {
8
 
9
  /**
10
+ * @see CPAC_Column_Actions::get_actions()
11
+ * @since 2.4.7
12
  */
13
+ public function get_actions( $id ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  $actions = array();
15
 
16
  $user_object = new WP_User( $id );
39
  if ( is_multisite() && get_current_user_id() != $user_object->ID && current_user_can( 'remove_user', $user_object->ID ) )
40
  $actions['remove'] = "<a class='submitdelete' href='" . wp_nonce_url( $url."action=remove&amp;user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Remove' ) . "</a>";
41
 
42
+ return $actions;
43
  }
44
+
45
  }
classes/column/user/description.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Description extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_description';
19
- $this->properties['label'] = __( 'Description', 'cpac' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 30;
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_description';
19
+ $this->properties['label'] = __( 'Description', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['excerpt_length'] = 30;
classes/column/user/display-name.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Display_Name extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-display_name';
19
- $this->properties['label'] = __( 'Display name', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-display_name';
19
+ $this->properties['label'] = __( 'Display name', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/user/first-name.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_First_Name extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-first_name';
19
- $this->properties['label'] = __( 'First name', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-first_name';
19
+ $this->properties['label'] = __( 'First name', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/user/last-name.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Last_Name extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-last_name';
19
- $this->properties['label'] = __( 'Last name', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-last_name';
19
+ $this->properties['label'] = __( 'Last name', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/user/nickname.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Nickname extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-nickname';
19
- $this->properties['label'] = __( 'Nickname', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-nickname';
19
+ $this->properties['label'] = __( 'Nickname', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/user/post-count.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Post_Count extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_postcount';
19
- $this->properties['label'] = __( 'Post Count', 'cpac' );
20
  $this->properties['is_cloneable'] = true;
21
 
22
  // Options
@@ -86,7 +86,7 @@ class CPAC_Column_User_Post_Count extends CPAC_Column {
86
 
87
  ?>
88
  <tr class="<?php $this->properties->type; ?>">
89
- <?php $this->label_view( __( 'Post Type', 'cpac' ), '', 'post_type' ); ?>
90
  <td class="input">
91
  <select name="<?php $this->attr_name( 'post_type' ); ?>" id="<?php $this->attr_id( 'post_type' ); ?>">
92
  <?php foreach ( $post_types as $key => $label ) : ?>
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_postcount';
19
+ $this->properties['label'] = __( 'Post Count', 'codepress-admin-columns' );
20
  $this->properties['is_cloneable'] = true;
21
 
22
  // Options
86
 
87
  ?>
88
  <tr class="<?php $this->properties->type; ?>">
89
+ <?php $this->label_view( __( 'Post Type', 'codepress-admin-columns' ), '', 'post_type' ); ?>
90
  <td class="input">
91
  <select name="<?php $this->attr_name( 'post_type' ); ?>" id="<?php $this->attr_id( 'post_type' ); ?>">
92
  <?php foreach ( $post_types as $key => $label ) : ?>
classes/column/user/registered.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Registered extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_registered';
19
- $this->properties['label'] = __( 'Registered', 'cpac' );
20
 
21
  // Options
22
  $this->options['date_format'] = '';
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_registered';
19
+ $this->properties['label'] = __( 'Registered', 'codepress-admin-columns' );
20
 
21
  // Options
22
  $this->options['date_format'] = '';
classes/column/user/rich-editing.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Rich_Editing extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-rich_editing';
19
- $this->properties['label'] = __( 'Visual Editor', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-rich_editing';
19
+ $this->properties['label'] = __( 'Visual Editor', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/user/url.php CHANGED
@@ -16,7 +16,7 @@ class CPAC_Column_User_Url extends CPAC_Column {
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_url';
19
- $this->properties['label'] = __( 'Url', 'cpac' );
20
  }
21
 
22
  /**
16
 
17
  // Properties
18
  $this->properties['type'] = 'column-user_url';
19
+ $this->properties['label'] = __( 'Url', 'codepress-admin-columns' );
20
  }
21
 
22
  /**
classes/column/wc-placeholder.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @since 2.4.7
4
+ */
5
+ class CPAC_Column_WC_Placeholder extends CPAC_Column {
6
+
7
+ public function init() {
8
+
9
+ parent::init();
10
+
11
+ // Properties
12
+ $this->properties['type'] = 'column-wc_placeholder';
13
+ $this->properties['label'] = __( 'WooCommerce', 'codepress-admin-columns' );
14
+ $this->properties['is_pro_only'] = true;
15
+ $this->properties['group'] = 'woocommerce';
16
+ }
17
+
18
+ public function apply_conditional() {
19
+ return in_array( $this->storage_model->get_post_type(), array( 'product', 'shop_order', 'shop_coupon' ) );
20
+ }
21
+
22
+ public function display_settings() {
23
+ $this->display_settings_placeholder( 'https://www.admincolumns.com/woocommerce-columns/' );
24
+ }
25
+ }
classes/review_notice.php CHANGED
@@ -52,45 +52,45 @@ class CPAC_Review_Notice {
52
  return false;
53
  }
54
 
55
- $product = __( 'Admin Columns', 'cpac' );
56
 
57
  if ( defined( 'ACP_VERSION' ) ) {
58
- $product = __( 'Admin Columns Pro', 'cpac' );
59
  }
60
  ?>
61
  <div class="cpac_message updated">
62
  <div class="info">
63
  <p>
64
  <?php printf( __(
65
- "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.", 'cpac' ),
66
  '<strong>' . $product . '</strong>',
67
  $product,
68
- '<a class="hide-review-notice hide-review-notice-soft" href="#">' . __( 'click here', 'cpac' ) . '</a>'
69
  ); ?>
70
  </p>
71
  <p class="buttons">
72
- <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!', 'cpac' ); ?></a>
73
- <a class="button button-secondary hide-review-notice" href='#'><?php _e( "Permanently hide notice", 'cpac' ); ?></a>
74
  </p>
75
  </div>
76
  <div class="help">
77
  <a href="#" class="hide-notice hide-review-notice"></a>
78
  <p>
79
  <?php printf(
80
- __( "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.", 'cpac' ),
81
  $product,
82
- '<a href="http://admincolumns.com/documentation/" target="_blank">' . __( 'documentation page', 'cpac' ) . '</a>'
83
  ); ?>
84
  <?php if ( defined( 'ACP_VERSION' ) ) : ?>
85
  <?php printf(
86
- __( 'As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!', 'cpac' ),
87
- '<a href="https://www.admincolumns.com/forums/" target="_blank">' . __( 'our forums', 'cpac' ) . '</a>'
88
  ); ?>
89
  <?php else : ?>
90
  <?php printf(
91
- __( 'You can also find help on the %s, and %s.', 'cpac' ),
92
- '<a href="https://wordpress.org/support/plugin/codepress-admin-columns#postform" target="_blank">' . __( 'Admin Columns forums on WordPress.org', 'cpac' ) . '</a>',
93
- '<a href="https://wordpress.org/plugins/codepress-admin-columns/faq/#plugin-info" target="_blank">' . __( 'find answers to some frequently asked questions', 'cpac' ) . '</a>'
94
  ); ?>
95
  <?php endif; ?>
96
  </p>
52
  return false;
53
  }
54
 
55
+ $product = __( 'Admin Columns', 'codepress-admin-columns' );
56
 
57
  if ( defined( 'ACP_VERSION' ) ) {
58
+ $product = __( 'Admin Columns Pro', 'codepress-admin-columns' );
59
  }
60
  ?>
61
  <div class="cpac_message updated">
62
  <div class="info">
63
  <p>
64
  <?php printf( __(
65
+ "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' ),
66
  '<strong>' . $product . '</strong>',
67
  $product,
68
+ '<a class="hide-review-notice hide-review-notice-soft" href="#">' . __( 'click here', 'codepress-admin-columns' ) . '</a>'
69
  ); ?>
70
  </p>
71
  <p class="buttons">
72
+ <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>
73
+ <a class="button button-secondary hide-review-notice" href='#'><?php _e( "Permanently hide notice", 'codepress-admin-columns' ); ?></a>
74
  </p>
75
  </div>
76
  <div class="help">
77
  <a href="#" class="hide-notice hide-review-notice"></a>
78
  <p>
79
  <?php printf(
80
+ __( "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' ),
81
  $product,
82
+ '<a href="http://admincolumns.com/documentation/" target="_blank">' . __( 'documentation page', 'codepress-admin-columns' ) . '</a>'
83
  ); ?>
84
  <?php if ( defined( 'ACP_VERSION' ) ) : ?>
85
  <?php printf(
86
+ __( 'As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!', 'codepress-admin-columns' ),
87
+ '<a href="https://www.admincolumns.com/forums/" target="_blank">' . __( 'our forums', 'codepress-admin-columns' ) . '</a>'
88
  ); ?>
89
  <?php else : ?>
90
  <?php printf(
91
+ __( 'You can also find help on the %s, and %s.', 'codepress-admin-columns' ),
92
+ '<a href="https://wordpress.org/support/plugin/codepress-admin-columns#postform" target="_blank">' . __( 'Admin Columns forums on WordPress.org', 'codepress-admin-columns' ) . '</a>',
93
+ '<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>'
94
  ); ?>
95
  <?php endif; ?>
96
  </p>
classes/settings.php CHANGED
@@ -64,10 +64,11 @@ class CPAC_Settings {
64
  * @param CPAC_Settings $settings_instance Settings class instance
65
  */
66
  $settings_urls = apply_filters( 'cac/settings/settings_urls', array(
67
- 'admin' => admin_url( 'options-general.php?page=codepress-admin-columns' ),
68
- 'settings' => admin_url( 'options-general.php?page=codepress-admin-columns&tab=settings' ),
69
- 'info' => admin_url( 'options-general.php?page=codepress-admin-columns&info=' ),
70
- 'upgrade' => admin_url( 'options-general.php?page=cpac-upgrade' )
 
71
  ), $this );
72
 
73
  return $settings_urls;
@@ -89,7 +90,7 @@ class CPAC_Settings {
89
  }
90
 
91
  if ( ! $page ) {
92
- return $settings_urls['admin'];;
93
  }
94
 
95
  return add_query_arg( 'tab', $page, $this->get_settings_url() );
@@ -109,10 +110,10 @@ class CPAC_Settings {
109
  $message = '';
110
 
111
  if ( ! empty( $_REQUEST['activate'] ) ) {
112
- $message = __( 'Add-on successfully activated.', 'cpac' );
113
  }
114
  else if ( ! empty( $_REQUEST['deactivate'] ) ) {
115
- $message = __( 'Add-on successfully deactivated.', 'cpac' );
116
  }
117
 
118
  if ( ! $message ) {
@@ -165,22 +166,29 @@ class CPAC_Settings {
165
  * @since 1.0
166
  */
167
  public function settings_menu() {
168
-
169
  // add settings page
170
- $this->settings_page = add_submenu_page( 'options-general.php', __( 'Admin Columns Settings', 'cpac' ), __( 'Admin Columns', 'cpac' ), 'manage_admin_columns', 'codepress-admin-columns', array( $this, 'display' ), false, 98 );
171
 
172
  // add help tabs
173
  add_action( "load-{$this->settings_page}", array( $this, 'help_tabs' ) );
174
 
175
- // add scripts & styles
176
- add_action( "admin_print_styles-{$this->settings_page}", array( $this, 'admin_styles' ) );
177
- add_action( "admin_print_scripts-{$this->settings_page}", array( $this, 'admin_scripts' ) );
178
-
179
  // register setting
180
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
181
 
182
  // add cap to options.php
183
  add_filter( 'option_page_capability_cpac-general-settings', array( $this, 'add_capability' ) );
 
 
 
 
 
 
 
 
 
 
 
 
184
  }
185
 
186
  /**
@@ -217,7 +225,7 @@ class CPAC_Settings {
217
 
218
  // javascript translations
219
  wp_localize_script( 'cpac-admin-settings', 'cpac_i18n', array(
220
- 'clone' => __( '%s column is already present and can not be duplicated.', 'cpac' ),
221
  ));
222
  }
223
 
@@ -273,7 +281,7 @@ class CPAC_Settings {
273
 
274
  $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'cpac_options_%'" );
275
 
276
- cpac_admin_message( __( 'Default settings succesfully restored.', 'cpac' ), 'updated' );
277
  }
278
 
279
  /**
@@ -290,39 +298,39 @@ class CPAC_Settings {
290
 
291
  $tabs = array(
292
  array(
293
- 'title' => __( "Overview", 'cpac' ),
294
  'content' =>
295
  "<h5>Admin Columns</h5>
296
- <p>". __( "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.", 'cpac' ) . "</p>"
297
  ),
298
  array(
299
- 'title' => __( "Basics", 'cpac' ),
300
  'content' => "
301
- <h5>" . __( "Change order", 'cpac' ) . "</h5>
302
- <p>" . __( "By dragging the columns you can change the order which they will appear in.", 'cpac' ) . "</p>
303
- <h5>" . __( "Change label", 'cpac' ) . "</h5>
304
- <p>" . __( "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading.", 'cpac' ) . "</p>
305
- <h5>" . __( "Change column width", 'cpac' ) . "</h5>
306
- <p>" . __( "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages.", 'cpac' ) . "</p>
307
  "
308
  ),
309
  array(
310
- 'title' => __( "Custom Field", 'cpac' ),
311
  'content' =>
312
- "<h5>". __( "'Custom Field' column", 'cpac' ) . "</h5>
313
- <p>". __( "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set.", 'cpac' ) . "</p>
314
  <ul>
315
- <li><strong>". __( "Default", 'cpac' ) . "</strong><br/>". __( "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma.", 'cpac' ) . "</li>
316
- <li><strong>". __( "Image", 'cpac' ) . "</strong><br/>". __( "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma ).", 'cpac' ) . "</li>
317
- <li><strong>". __( "Excerpt", 'cpac' ) . "</strong><br/>". __( "Value: This will show the first 20 words of the Post content.", 'cpac' ) . "</li>
318
- <li><strong>". __( "Multiple Values", 'cpac' ) . "</strong><br/>". __( "Value: should be an array. This will flatten any ( multi dimensional ) array.", 'cpac' ) . "</li>
319
- <li><strong>". __( "Numeric", 'cpac' ) . "</strong><br/>". __( "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.", 'cpac' ) . "</li>
320
- <li><strong>". __( "Date", 'cpac' ) . "</strong><br/>". sprintf( __( "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.", 'cpac' ), 'http://codex.wordpress.org/Formatting_Date_and_Time', get_admin_url() . 'options-general.php' ) . "</li>
321
- <li><strong>". __( "Post Titles", 'cpac' ) . "</strong><br/>". __( "Value: can be one or more Post ID's (seperated by ',').", 'cpac' ) . "</li>
322
- <li><strong>". __( "Usernames", 'cpac' ) . "</strong><br/>". __( "Value: can be one or more User ID's (seperated by ',').", 'cpac' ) . "</li>
323
- <li><strong>". __( "Checkmark", 'cpac' ) . "</strong><br/>". __( "Value: should be a 1 (one) or 0 (zero).", 'cpac' ) . "</li>
324
- <li><strong>". __( "Color", 'cpac' ) . "</strong><br/>". __( "Value: hex value color, such as #808080.", 'cpac' ) . "</li>
325
- <li><strong>". __( "Counter", 'cpac' ) . "</strong><br/>". __( "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.", 'cpac' ) . "</li>
326
  </ul>
327
  "
328
  )
@@ -411,41 +419,41 @@ class CPAC_Settings {
411
 
412
  <div id="cpac-welcome" class="wrap about-wrap">
413
 
414
- <h1><?php _e( "Welcome to Admin Columns",'cpac'); ?> <?php echo CPAC_VERSION; ?></h1>
415
 
416
  <div class="about-text">
417
- <?php _e( "Thank you for updating to the latest version!", 'cpac' ); ?>
418
- <?php _e( "Admin Columns is more polished and enjoyable than ever before. We hope you like it.", 'cpac' ); ?>
419
  </div>
420
 
421
  <div class="cpac-content-body">
422
  <h2 class="nav-tab-wrapper">
423
- <a class="cpac-tab-toggle nav-tab <?php if( $tab == 'whats-new' ){ echo 'nav-tab-active'; } ?>" href="<?php echo $this->get_settings_url( 'info' ); ?>whats-new"><?php _e( "What’s New", 'cpac' ); ?></a>
424
- <a class="cpac-tab-toggle nav-tab <?php if( $tab == 'changelog' ){ echo 'nav-tab-active'; } ?>" href="<?php echo $this->get_settings_url( 'info' ); ?>changelog"><?php _e( "Changelog", 'cpac' ); ?></a>
425
  </h2>
426
 
427
  <?php if ( 'whats-new' === $tab ) : ?>
428
 
429
- <h3><?php _e( "Important", 'cpac' ); ?></h3>
430
 
431
- <h4><?php _e( "Database Changes", 'cpac' ); ?></h4>
432
- <p><?php _e("The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues.",'cpac'); ?></p>
433
 
434
  <?php if ( get_option( 'cpac_version', false ) < CPAC_UPGRADE_VERSION ) : ?>
435
- <p><?php _e("Make sure you backup your database and then click",'cpac'); ?> <a href="<?php echo $this->get_settings_url( 'upgrade' ); ?>" class="button-primary"><?php _e( "Upgrade Database", 'cpac' );?></a></p>
436
  <?php endif; ?>
437
 
438
- <h4><?php _e( "Potential Issues", 'cpac' ); ?></h4>
439
- <p><?php _e( "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full", 'cpac' ); ?> <a href="<?php echo $this->get_url('admincolumns'); ?>migrating-from-v1-to-v2" target="_blank"><?php _e( "Migrating from v1 to v2", 'cpac' ); ?></a> <?php _e( "guide to view the full list of changes.", 'cpac' ); ?> <?php printf( __( 'When you have found a bug please <a href="%s">report them to us</a> so we can fix it in the next release.', 'cpac'), 'mailto:info@codepress.nl' ); ?></p>
440
 
441
  <div class="cpac-alert cpac-alert-error">
442
- <p><strong><?php _e( "Important!", 'cpac' ); ?></strong> <?php _e( "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest", 'cpac' ); ?> <a href="http://downloads.wordpress.org/plugin/codepress-admin-columns.1.4.9.zip"> <?php _e( "version 1", 'cpac' ); ?></a> <?php _e( "of this plugin.", 'cpac' ); ?></p>
443
  </div>
444
 
445
  <?php endif; ?>
446
  <?php if ( 'changelog' === $tab ) : ?>
447
 
448
- <h3><?php _e("Changelog for", 'cpac'); ?> <?php echo CPAC_VERSION; ?></h3>
449
  <?php
450
 
451
  $items = file_get_contents( CPAC_DIR . 'readme.txt' );
@@ -460,7 +468,7 @@ class CPAC_Settings {
460
  <?php foreach( $items as $item ) :
461
  $item = explode('http', $item);
462
  ?>
463
- <li><?php echo $item[0]; ?><?php if( isset($item[1]) ): ?><a href="http<?php echo $item[1]; ?>" target="_blank"><?php _e("Learn more", 'cpac'); ?></a><?php endif; ?></li>
464
  <?php endforeach; ?>
465
  </ul>
466
 
@@ -470,7 +478,7 @@ class CPAC_Settings {
470
  </div><!--.cpac-content-body-->
471
 
472
  <div class="cpac-content-footer">
473
- <a class="button-primary button-large" href="<?php echo $this->get_settings_url( 'general' ); ?>"><?php _e("Start using Admin Columns",'cpac'); ?></a>
474
  </div><!--.cpac-content-footer-->
475
 
476
  </div>
@@ -489,8 +497,8 @@ class CPAC_Settings {
489
 
490
  <tr class="general">
491
  <th scope="row">
492
- <h3><?php _e( 'General Settings', 'cpac' ); ?></h3>
493
- <p><?php _e( 'Customize your Admin Columns settings.', 'cpac' ); ?></p>
494
  </th>
495
  <td class="padding-22">
496
  <div class="cpac_general">
@@ -501,7 +509,7 @@ class CPAC_Settings {
501
  <label for="show_edit_button">
502
  <input name="cpac_general_options[show_edit_button]" type="hidden" value="0" >
503
  <input name="cpac_general_options[show_edit_button]" id="show_edit_button" type="checkbox" value="1" <?php checked( ! isset( $options['show_edit_button'] ) || ( '1' == $options['show_edit_button'] ) ); ?>>
504
- <?php _e( 'Show "Edit Columns" button on admin screens. Default is <code>on</code>.', 'cpac' ); ?>
505
  </label>
506
  </p>
507
 
@@ -548,14 +556,14 @@ class CPAC_Settings {
548
 
549
  <tr class="restore">
550
  <th scope="row">
551
- <h3><?php _e( 'Restore Settings', 'cpac' ); ?></h3>
552
- <p><?php _e( 'This will delete all column settings and restore the default settings.', 'cpac' ); ?></p>
553
  </th>
554
  <td class="padding-22">
555
  <form method="post" action="">
556
  <?php wp_nonce_field( 'restore-all','_cpac_nonce'); ?>
557
  <input type="hidden" name="cpac_action" value="restore_all" />
558
- <input type="submit" class="button" name="cpac-restore-defaults" value="<?php _e( 'Restore default settings', 'cpac' ) ?>" onclick="return confirm('<?php _e("Warning! ALL saved admin columns data will be deleted. This cannot be undone. \'OK\' to delete, \'Cancel\' to stop", 'cpac' ); ?>');" />
559
  </form>
560
  </td>
561
  </tr><!--.restore-->
@@ -571,9 +579,9 @@ class CPAC_Settings {
571
  */
572
  private function get_menu_types() {
573
  $menu_types = array(
574
- 'post' => __( 'Posttypes', 'cpac' ),
575
- 'other' => __( 'Others', 'cpac' ),
576
- 'taxonomy' => __( 'Taxonomies', 'cpac' ),
577
  );
578
  return apply_filters( 'cac/menu_types', $menu_types );
579
  }
@@ -588,9 +596,9 @@ class CPAC_Settings {
588
  }
589
 
590
  $tabs = array(
591
- 'general' => __( 'Admin Columns', 'cpac' ),
592
- 'settings' => __( 'Settings', 'cpac' ),
593
- 'addons' => __( 'Add-ons', 'cpac' )
594
  );
595
 
596
  /**
@@ -658,7 +666,7 @@ class CPAC_Settings {
658
 
659
  <?php if ( $storage_model->is_using_php_export() ) : ?>
660
  <div class="error below-h2">
661
- <p><?php printf( __( 'The columns for %s are set up via PHP and can therefore not be edited in the admin panel.', 'cpac' ), '<strong>' . $storage_model->label . '</strong>' ); ?></p>
662
  </div>
663
  <?php endif; ?>
664
  </div>
@@ -668,7 +676,7 @@ class CPAC_Settings {
668
  <?php if ( ! $storage_model->is_using_php_export() ) : ?>
669
  <div class="sidebox" id="form-actions">
670
  <h3>
671
- <?php _e( 'Store settings', 'cpac' ) ?>
672
  </h3>
673
  <?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
674
  <div class="form-update">
@@ -676,8 +684,8 @@ class CPAC_Settings {
676
  </div>
677
  <?php if ( $has_been_stored ) : ?>
678
  <div class="form-reset">
679
- <a href="<?php echo add_query_arg( array( '_cpac_nonce' => wp_create_nonce('restore-type'), 'cpac_key' => $storage_model->key, 'cpac_action' => 'restore_by_type' ), $this->get_settings_url( 'admin' ) ); ?>" class="reset-column-type" onclick="return confirm('<?php printf( __( "Warning! The %s columns data will be deleted. This cannot be undone. \'OK\' to delete, \'Cancel\' to stop", 'cpac' ), $storage_model->label ); ?>');">
680
- <?php _e( 'Restore', 'cpac' ); ?> <?php echo $storage_model->label; ?> <?php _e( 'columns', 'cpac' ); ?>
681
  </a>
682
  </div>
683
  <?php endif; ?>
@@ -687,7 +695,7 @@ class CPAC_Settings {
687
  </div><!--form-actions-->
688
  <?php endif; ?>
689
 
690
- <?php if ( ! class_exists( 'CAC_Addon_Pro' ) ) : ?>
691
  <?php $url_args = array(
692
  'utm_source' => 'plugin-installation',
693
  'utm_medium' => 'banner',
@@ -696,48 +704,25 @@ class CPAC_Settings {
696
  <div class="sidebox" id="pro-version">
697
  <div class="padding-box cta">
698
  <h3>
699
- <a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'title' ) ), $this->get_url( 'admincolumnspro' ) ); ?>"><?php _e( 'Get Admin Columns Pro', 'cpac' ) ?></a>
700
  </h3>
701
  <div class="inside">
702
  <ul>
703
- <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-sorting' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Sorting', 'cpac' ); ?></a></li>
704
- <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-filtering' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Filtering', 'cpac' ); ?></a></li>
705
- <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-import-export' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Import/Export', 'cpac' ); ?></a></li>
706
- <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-editing' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Direct Editing', 'cpac' ); ?></a></li>
707
  </ul>
708
  <p>
709
- <?php printf( __( 'Check out <a href="%s">Admin Columns Pro</a> for more details!', 'cpac' ), add_query_arg( array_merge( $url_args, array( 'utm_content' => 'cta' ) ), $this->get_url( 'admincolumnspro' ) ) ); ?>
710
  </p>
711
  </div>
712
  </div>
713
  </div>
714
 
715
- <?php
716
- // @todo: add newsletter
717
- /* ?>
718
- <div class="padding-box newsletter">
719
- <form action="http://codepress.us4.list-manage.com/subscribe/post?u=902ae7f162ce5bc38a0bc8a4f&amp;id=183e843a76" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank">
720
- <?php $user = wp_get_current_user(); ?>
721
- <p>
722
- <?php _e ( "Subscribe to receive news &amp; updates below.", 'cpac' ); ?>
723
- </p>
724
- <div class="mc-field-group">
725
- <label for="mce-FNAME"><?php _e( 'First Name', 'cpac' ); ?></label>
726
- <input type="text" value="<?php echo trim( esc_attr( $user->first_name ) ); ?>" name="FNAME" class="" id="mce-FNAME">
727
- </div>
728
- <div class="mc-field-group">
729
- <label for="mce-EMAIL"><?php _e( 'Your Email', 'cpac' ); ?></label>
730
- <input type="email" value="<?php echo trim( esc_attr( $user->user_email ) ); ?>" name="EMAIL" class="required email" id="mce-EMAIL">
731
- </div>
732
- <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
733
- </form>
734
- </div>
735
- <?php */ ?>
736
-
737
-
738
  <div class="sidebox" id="direct-feedback">
739
  <div id="feedback-choice">
740
- <h3><?php _e( 'Are you happy with Admin Columns?', 'cpac' ); ?></h3>
741
  <div class="inside">
742
  <a href="#" class="yes">Yes</a>
743
  <a href="#" class="no">No</a>
@@ -745,8 +730,8 @@ class CPAC_Settings {
745
  </div>
746
  <div id="feedback-support">
747
  <div class="inside">
748
- <p><?php _e( "What's wrong? Need help? Let us know!", 'cpac' ); ?></p>
749
- <p><?php _e( 'Check out our extensive documentation, or you can open a support topic on WordPress.org!', 'cpac' ); ?></p>
750
  <ul class="share">
751
  <li>
752
  <a href="<?php echo add_query_arg( array(
@@ -754,12 +739,12 @@ class CPAC_Settings {
754
  'utm_medium' => 'feedback-docs-button',
755
  'utm_campaign' => 'plugin-installation'
756
  ), $this->get_url( 'documentation' ) ); ?>" target="_blank">
757
- <div class="dashicons dashicons-editor-help"></div> <?php _e( 'Docs', 'cpac' ); ?>
758
  </a>
759
  </li>
760
  <li>
761
  <a href="https://wordpress.org/support/plugin/codepress-admin-columns" target="_blank">
762
- <div class="dashicons dashicons-wordpress"></div> <?php _e( 'Forums', 'cpac' ); ?>
763
  </a>
764
  </li>
765
  </ul>
@@ -768,23 +753,23 @@ class CPAC_Settings {
768
  </div>
769
  <div id="feedback-rate">
770
  <div class="inside">
771
- <p><?php _e( "Woohoo! We're glad to hear that!", 'cpac' ); ?></p>
772
- <p><?php _e( 'We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!', 'cpac' ); ?></p>
773
  <ul class="share">
774
  <li>
775
  <a href="http://wordpress.org/support/view/plugin-reviews/codepress-admin-columns#postform" target="_blank">
776
- <div class="dashicons dashicons-star-empty"></div> <?php _e( 'Rate', 'cpac' ); ?>
777
  </a>
778
  </li>
779
 
780
  <li>
781
  <a href="<?php echo add_query_arg( array(
782
- 'hashtags' => 'wordpress',
783
  'text' => urlencode( "I'm using Admin Columns for WordPress!" ),
784
  'url' => urlencode( 'http://wordpress.org/plugins/codepress-admin-columns/' ),
785
- 'via' => 'wpcolumns'
786
  ), 'https://twitter.com/intent/tweet' ); ?>" target="_blank">
787
- <div class="dashicons dashicons-twitter"></div> <?php _e( 'Tweet', 'cpac' ); ?>
788
  </a>
789
  </li>
790
 
@@ -794,7 +779,7 @@ class CPAC_Settings {
794
  'utm_medium' => 'feedback-purchase-button',
795
  'utm_campaign' => 'plugin-installation'
796
  ), $this->get_url( 'admincolumnspro' ) ); ?>" target="_blank">
797
- <div class="dashicons dashicons-cart"></div> <?php _e( 'Buy Pro', 'cpac' ); ?>
798
  </a>
799
  </li>
800
  </ul>
@@ -806,13 +791,13 @@ class CPAC_Settings {
806
  <?php endif; ?>
807
 
808
  <div class="sidebox" id="plugin-support">
809
- <h3><?php _e( 'Support', 'cpac' ); ?></h3>
810
  <div class="inside">
811
  <?php if ( version_compare( get_bloginfo( 'version' ), '3.2', '>' ) ) : ?>
812
- <p><?php _e( 'Check the <strong>Help</strong> section in the top-right screen.', 'cpac' ); ?></p>
813
  <?php endif; ?>
814
  <p>
815
- <?php printf( __("For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>", 'cpac' ), $this->get_url('documentation') ); ?>
816
  </p>
817
  </div>
818
  </div><!--plugin-support-->
@@ -841,10 +826,10 @@ class CPAC_Settings {
841
  </div><!--.cpac-columns-->
842
 
843
  <div class="column-footer">
844
- <div class="order-message"><?php _e( 'Drag and drop to reorder', 'cpac' ); ?></div>
845
 
846
  <div class="button-container">
847
- <a href="javascript:;" class="add_column button button-primary">+ <?php _e( 'Add Column', 'cpac' );?></a><br/>
848
  </div>
849
 
850
  </div><!--.cpac-column-footer-->
@@ -925,16 +910,16 @@ class CPAC_Settings {
925
  'plugin' => urlencode( $plugin_basename ),
926
  'cpac-redirect' => true
927
  ), admin_url( 'plugins.php' ) ), 'deactivate-plugin_' . $plugin_basename ); ?>
928
- <a href="#" class="button button-disabled cpac-installed"><?php _e( 'Active', 'cpac' ); ?></a>
929
- <a href="<?php echo esc_attr( $deactivation_url ); ?>" class="button right"><?php _e( 'Deactivate', 'cpac' ); ?></a>
930
  <?php else : ?>
931
  <?php $activation_url = wp_nonce_url( add_query_arg( array(
932
  'action' => 'activate',
933
  'plugin' => urlencode( $plugin_basename ),
934
  'cpac-redirect' => true
935
  ), admin_url( 'plugins.php' ) ), 'activate-plugin_' . $plugin_basename ); ?>
936
- <a href="#" class="button button-disabled cpac-installed"><?php _e( 'Installed', 'cpac' ); ?></a>
937
- <a href="<?php echo esc_attr( $activation_url ); ?>" class="button right"><?php _e( 'Activate', 'cpac' ); ?></a>
938
  <?php endif; ?>
939
  <?php
940
 
@@ -948,12 +933,12 @@ class CPAC_Settings {
948
  'plugin' => $addon_name,
949
  ), $this->get_settings_url( 'addons' ) ), 'install-cac-addon' );
950
  ?>
951
- <a href="<?php echo esc_attr( $install_url ); ?>" class="button"><?php _e( 'Download & Install', 'cpac' ); ?></a>
952
  <?php
953
 
954
  // Get ACP?
955
  else : ?>
956
- <a target="_blank" href="<?php echo esc_attr( $this->get_url('pricing') ); ?>" class="button"><?php _e( 'Get this add-on', 'cpac' ); ?></a>
957
  <?php endif; ?>
958
  <?php endif; ?>
959
  </div>
64
  * @param CPAC_Settings $settings_instance Settings class instance
65
  */
66
  $settings_urls = apply_filters( 'cac/settings/settings_urls', array(
67
+ 'admin' => admin_url( 'options-general.php?page=codepress-admin-columns' ),
68
+ 'settings' => admin_url( 'options-general.php?page=codepress-admin-columns&tab=settings' ),
69
+ 'network_settings' => network_admin_url( 'settings.php?page=codepress-admin-columns' ),
70
+ 'info' => admin_url( 'options-general.php?page=codepress-admin-columns&info=' ),
71
+ 'upgrade' => admin_url( 'options-general.php?page=cpac-upgrade' )
72
  ), $this );
73
 
74
  return $settings_urls;
90
  }
91
 
92
  if ( ! $page ) {
93
+ return $settings_urls['admin'];
94
  }
95
 
96
  return add_query_arg( 'tab', $page, $this->get_settings_url() );
110
  $message = '';
111
 
112
  if ( ! empty( $_REQUEST['activate'] ) ) {
113
+ $message = __( 'Add-on successfully activated.', 'codepress-admin-columns' );
114
  }
115
  else if ( ! empty( $_REQUEST['deactivate'] ) ) {
116
+ $message = __( 'Add-on successfully deactivated.', 'codepress-admin-columns' );
117
  }
118
 
119
  if ( ! $message ) {
166
  * @since 1.0
167
  */
168
  public function settings_menu() {
 
169
  // add settings page
170
+ $this->settings_page = add_submenu_page( 'options-general.php', __( 'Admin Columns Settings', 'codepress-admin-columns' ), __( 'Admin Columns', 'codepress-admin-columns' ), 'manage_admin_columns', 'codepress-admin-columns', array( $this, 'display' ), false, 98 );
171
 
172
  // add help tabs
173
  add_action( "load-{$this->settings_page}", array( $this, 'help_tabs' ) );
174
 
 
 
 
 
175
  // register setting
176
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
177
 
178
  // add cap to options.php
179
  add_filter( 'option_page_capability_cpac-general-settings', array( $this, 'add_capability' ) );
180
+
181
+ $this->enqueue_admin_scripts();
182
+ }
183
+
184
+ /**
185
+ * Print scripts and styles
186
+ *
187
+ * @since 2.4.7
188
+ */
189
+ public function enqueue_admin_scripts() {
190
+ add_action( 'admin_print_styles-' . $this->settings_page, array( $this, 'admin_styles' ) );
191
+ add_action( 'admin_print_scripts-' . $this->settings_page, array( $this, 'admin_scripts' ) );
192
  }
193
 
194
  /**
225
 
226
  // javascript translations
227
  wp_localize_script( 'cpac-admin-settings', 'cpac_i18n', array(
228
+ 'clone' => __( '%s column is already present and can not be duplicated.', 'codepress-admin-columns' ),
229
  ));
230
  }
231
 
281
 
282
  $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'cpac_options_%'" );
283
 
284
+ cpac_admin_message( __( 'Default settings succesfully restored.', 'codepress-admin-columns' ), 'updated' );
285
  }
286
 
287
  /**
298
 
299
  $tabs = array(
300
  array(
301
+ 'title' => __( "Overview", 'codepress-admin-columns' ),
302
  'content' =>
303
  "<h5>Admin Columns</h5>
304
+ <p>". __( "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.", 'codepress-admin-columns' ) . "</p>"
305
  ),
306
  array(
307
+ 'title' => __( "Basics", 'codepress-admin-columns' ),
308
  'content' => "
309
+ <h5>" . __( "Change order", 'codepress-admin-columns' ) . "</h5>
310
+ <p>" . __( "By dragging the columns you can change the order which they will appear in.", 'codepress-admin-columns' ) . "</p>
311
+ <h5>" . __( "Change label", 'codepress-admin-columns' ) . "</h5>
312
+ <p>" . __( "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading.", 'codepress-admin-columns' ) . "</p>
313
+ <h5>" . __( "Change column width", 'codepress-admin-columns' ) . "</h5>
314
+ <p>" . __( "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages.", 'codepress-admin-columns' ) . "</p>
315
  "
316
  ),
317
  array(
318
+ 'title' => __( "Custom Field", 'codepress-admin-columns' ),
319
  'content' =>
320
+ "<h5>". __( "'Custom Field' column", 'codepress-admin-columns' ) . "</h5>
321
+ <p>". __( "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set.", 'codepress-admin-columns' ) . "</p>
322
  <ul>
323
+ <li><strong>". __( "Default", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma.", 'codepress-admin-columns' ) . "</li>
324
+ <li><strong>". __( "Image", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma ).", 'codepress-admin-columns' ) . "</li>
325
+ <li><strong>". __( "Excerpt", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: This will show the first 20 words of the Post content.", 'codepress-admin-columns' ) . "</li>
326
+ <li><strong>". __( "Multiple Values", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: should be an array. This will flatten any ( multi dimensional ) array.", 'codepress-admin-columns' ) . "</li>
327
+ <li><strong>". __( "Numeric", 'codepress-admin-columns' ) . "</strong><br/>". __( "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.", 'codepress-admin-columns' ) . "</li>
328
+ <li><strong>". __( "Date", 'codepress-admin-columns' ) . "</strong><br/>". sprintf( __( "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.", 'codepress-admin-columns' ), 'http://codex.wordpress.org/Formatting_Date_and_Time', get_admin_url() . 'options-general.php' ) . "</li>
329
+ <li><strong>". __( "Post Titles", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: can be one or more Post ID's (seperated by ',').", 'codepress-admin-columns' ) . "</li>
330
+ <li><strong>". __( "Usernames", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: can be one or more User ID's (seperated by ',').", 'codepress-admin-columns' ) . "</li>
331
+ <li><strong>". __( "Checkmark", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: should be a 1 (one) or 0 (zero).", 'codepress-admin-columns' ) . "</li>
332
+ <li><strong>". __( "Color", 'codepress-admin-columns' ) . "</strong><br/>". __( "Value: hex value color, such as #808080.", 'codepress-admin-columns' ) . "</li>
333
+ <li><strong>". __( "Counter", 'codepress-admin-columns' ) . "</strong><br/>". __( "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.", 'codepress-admin-columns' ) . "</li>
334
  </ul>
335
  "
336
  )
419
 
420
  <div id="cpac-welcome" class="wrap about-wrap">
421
 
422
+ <h1><?php _e( "Welcome to Admin Columns", 'codepress-admin-columns' ); ?> <?php echo CPAC_VERSION; ?></h1>
423
 
424
  <div class="about-text">
425
+ <?php _e( "Thank you for updating to the latest version!", 'codepress-admin-columns' ); ?>
426
+ <?php _e( "Admin Columns is more polished and enjoyable than ever before. We hope you like it.", 'codepress-admin-columns' ); ?>
427
  </div>
428
 
429
  <div class="cpac-content-body">
430
  <h2 class="nav-tab-wrapper">
431
+ <a class="cpac-tab-toggle nav-tab <?php if( $tab == 'whats-new' ){ echo 'nav-tab-active'; } ?>" href="<?php echo $this->get_settings_url( 'info' ); ?>whats-new"><?php _e( "What’s New", 'codepress-admin-columns' ); ?></a>
432
+ <a class="cpac-tab-toggle nav-tab <?php if( $tab == 'changelog' ){ echo 'nav-tab-active'; } ?>" href="<?php echo $this->get_settings_url( 'info' ); ?>changelog"><?php _e( "Changelog", 'codepress-admin-columns' ); ?></a>
433
  </h2>
434
 
435
  <?php if ( 'whats-new' === $tab ) : ?>
436
 
437
+ <h3><?php _e( "Important", 'codepress-admin-columns' ); ?></h3>
438
 
439
+ <h4><?php _e( "Database Changes", 'codepress-admin-columns' ); ?></h4>
440
+ <p><?php _e("The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues.", 'codepress-admin-columns' ); ?></p>
441
 
442
  <?php if ( get_option( 'cpac_version', false ) < CPAC_UPGRADE_VERSION ) : ?>
443
+ <p><?php _e("Make sure you backup your database and then click", 'codepress-admin-columns' ); ?> <a href="<?php echo $this->get_settings_url( 'upgrade' ); ?>" class="button-primary"><?php _e( "Upgrade Database", 'codepress-admin-columns' );?></a></p>
444
  <?php endif; ?>
445
 
446
+ <h4><?php _e( "Potential Issues", 'codepress-admin-columns' ); ?></h4>
447
+ <p><?php _e( "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full", 'codepress-admin-columns' ); ?> <a href="<?php echo $this->get_url('admincolumns'); ?>migrating-from-v1-to-v2" target="_blank"><?php _e( "Migrating from v1 to v2", 'codepress-admin-columns' ); ?></a> <?php _e( "guide to view the full list of changes.", 'codepress-admin-columns' ); ?> <?php printf( __( "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release.", 'codepress-admin-columns'), 'mailto:info@codepress.nl' ); ?></p>
448
 
449
  <div class="cpac-alert cpac-alert-error">
450
+ <p><strong><?php _e( "Important!", 'codepress-admin-columns' ); ?></strong> <?php _e( "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest", 'codepress-admin-columns' ); ?> <a href="http://downloads.wordpress.org/plugin/codepress-admin-columns.1.4.9.zip"> <?php _e( "version 1", 'codepress-admin-columns' ); ?></a> <?php _e( "of this plugin.", 'codepress-admin-columns' ); ?></p>
451
  </div>
452
 
453
  <?php endif; ?>
454
  <?php if ( 'changelog' === $tab ) : ?>
455
 
456
+ <h3><?php _e("Changelog for", 'codepress-admin-columns'); ?> <?php echo CPAC_VERSION; ?></h3>
457
  <?php
458
 
459
  $items = file_get_contents( CPAC_DIR . 'readme.txt' );
468
  <?php foreach( $items as $item ) :
469
  $item = explode('http', $item);
470
  ?>
471
+ <li><?php echo $item[0]; ?><?php if( isset($item[1]) ): ?><a href="http<?php echo $item[1]; ?>" target="_blank"><?php _e("Learn more", 'codepress-admin-columns'); ?></a><?php endif; ?></li>
472
  <?php endforeach; ?>
473
  </ul>
474
 
478
  </div><!--.cpac-content-body-->
479
 
480
  <div class="cpac-content-footer">
481
+ <a class="button-primary button-large" href="<?php echo $this->get_settings_url( 'general' ); ?>"><?php _e("Start using Admin Columns", 'codepress-admin-columns' ); ?></a>
482
  </div><!--.cpac-content-footer-->
483
 
484
  </div>
497
 
498
  <tr class="general">
499
  <th scope="row">
500
+ <h3><?php _e( 'General Settings', 'codepress-admin-columns' ); ?></h3>
501
+ <p><?php _e( 'Customize your Admin Columns settings.', 'codepress-admin-columns' ); ?></p>
502
  </th>
503
  <td class="padding-22">
504
  <div class="cpac_general">
509
  <label for="show_edit_button">
510
  <input name="cpac_general_options[show_edit_button]" type="hidden" value="0" >
511
  <input name="cpac_general_options[show_edit_button]" id="show_edit_button" type="checkbox" value="1" <?php checked( ! isset( $options['show_edit_button'] ) || ( '1' == $options['show_edit_button'] ) ); ?>>
512
+ <?php _e( "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>.", 'codepress-admin-columns' ); ?>
513
  </label>
514
  </p>
515
 
556
 
557
  <tr class="restore">
558
  <th scope="row">
559
+ <h3><?php _e( 'Restore Settings', 'codepress-admin-columns' ); ?></h3>
560
+ <p><?php _e( 'This will delete all column settings and restore the default settings.', 'codepress-admin-columns' ); ?></p>
561
  </th>
562
  <td class="padding-22">
563
  <form method="post" action="">
564
  <?php wp_nonce_field( 'restore-all','_cpac_nonce'); ?>
565
  <input type="hidden" name="cpac_action" value="restore_all" />
566
+ <input type="submit" class="button" name="cpac-restore-defaults" value="<?php _e( 'Restore default settings', 'codepress-admin-columns' ) ?>" onclick="return confirm('<?php _e("Warning! ALL saved admin columns data will be deleted. This cannot be undone. \'OK\' to delete, \'Cancel\' to stop", 'codepress-admin-columns' ); ?>');" />
567
  </form>
568
  </td>
569
  </tr><!--.restore-->
579
  */
580
  private function get_menu_types() {
581
  $menu_types = array(
582
+ 'post' => __( 'Posttypes', 'codepress-admin-columns' ),
583
+ 'other' => __( 'Others', 'codepress-admin-columns' ),
584
+ 'taxonomy' => __( 'Taxonomies', 'codepress-admin-columns' ),
585
  );
586
  return apply_filters( 'cac/menu_types', $menu_types );
587
  }
596
  }
597
 
598
  $tabs = array(
599
+ 'general' => __( 'Admin Columns', 'codepress-admin-columns' ),
600
+ 'settings' => __( 'Settings', 'codepress-admin-columns' ),
601
+ 'addons' => __( 'Add-ons', 'codepress-admin-columns' )
602
  );
603
 
604
  /**
666
 
667
  <?php if ( $storage_model->is_using_php_export() ) : ?>
668
  <div class="error below-h2">
669
+ <p><?php printf( __( 'The columns for %s are set up via PHP and can therefore not be edited in the admin panel.', 'codepress-admin-columns' ), '<strong>' . $storage_model->label . '</strong>' ); ?></p>
670
  </div>
671
  <?php endif; ?>
672
  </div>
676
  <?php if ( ! $storage_model->is_using_php_export() ) : ?>
677
  <div class="sidebox" id="form-actions">
678
  <h3>
679
+ <?php _e( 'Store settings', 'codepress-admin-columns' ) ?>
680
  </h3>
681
  <?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
682
  <div class="form-update">
684
  </div>
685
  <?php if ( $has_been_stored ) : ?>
686
  <div class="form-reset">
687
+ <a href="<?php echo add_query_arg( array( '_cpac_nonce' => wp_create_nonce('restore-type'), 'cpac_key' => $storage_model->key, 'cpac_action' => 'restore_by_type' ), $this->get_settings_url( 'admin' ) ); ?>" class="reset-column-type" onclick="return confirm('<?php printf( __( "Warning! The %s columns data will be deleted. This cannot be undone. \'OK\' to delete, \'Cancel\' to stop", 'codepress-admin-columns' ), $storage_model->label ); ?>');">
688
+ <?php _e( 'Restore', 'codepress-admin-columns' ); ?> <?php echo $storage_model->label; ?> <?php _e( 'columns', 'codepress-admin-columns' ); ?>
689
  </a>
690
  </div>
691
  <?php endif; ?>
695
  </div><!--form-actions-->
696
  <?php endif; ?>
697
 
698
+ <?php if ( ! cpac_is_pro_active() ) : ?>
699
  <?php $url_args = array(
700
  'utm_source' => 'plugin-installation',
701
  'utm_medium' => 'banner',
704
  <div class="sidebox" id="pro-version">
705
  <div class="padding-box cta">
706
  <h3>
707
+ <a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'title' ) ), $this->get_url( 'admincolumnspro' ) ); ?>"><?php _e( 'Get Admin Columns Pro', 'codepress-admin-columns' ) ?></a>
708
  </h3>
709
  <div class="inside">
710
  <ul>
711
+ <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-sorting' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Sorting', 'codepress-admin-columns' ); ?></a></li>
712
+ <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-filtering' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Filtering', 'codepress-admin-columns' ); ?></a></li>
713
+ <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-import-export' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Import/Export', 'codepress-admin-columns' ); ?></a></li>
714
+ <li><a href="<?php echo add_query_arg( array_merge( $url_args, array( 'utm_content' => 'usp-editing' ) ), $this->get_url( 'admincolumnspro' ) ) ?>"><?php _e( 'Add Direct Editing', 'codepress-admin-columns' ); ?></a></li>
715
  </ul>
716
  <p>
717
+ <?php printf( __( "Check out <a href='%s'>Admin Columns Pro</a> for more details!", 'codepress-admin-columns' ), add_query_arg( array_merge( $url_args, array( 'utm_content' => 'cta' ) ), $this->get_url( 'admincolumnspro' ) ) ); ?>
718
  </p>
719
  </div>
720
  </div>
721
  </div>
722
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  <div class="sidebox" id="direct-feedback">
724
  <div id="feedback-choice">
725
+ <h3><?php _e( 'Are you happy with Admin Columns?', 'codepress-admin-columns' ); ?></h3>
726
  <div class="inside">
727
  <a href="#" class="yes">Yes</a>
728
  <a href="#" class="no">No</a>
730
  </div>
731
  <div id="feedback-support">
732
  <div class="inside">
733
+ <p><?php _e( "What's wrong? Need help? Let us know!", 'codepress-admin-columns' ); ?></p>
734
+ <p><?php _e( 'Check out our extensive documentation, or you can open a support topic on WordPress.org!', 'codepress-admin-columns' ); ?></p>
735
  <ul class="share">
736
  <li>
737
  <a href="<?php echo add_query_arg( array(
739
  'utm_medium' => 'feedback-docs-button',
740
  'utm_campaign' => 'plugin-installation'
741
  ), $this->get_url( 'documentation' ) ); ?>" target="_blank">
742
+ <div class="dashicons dashicons-editor-help"></div> <?php _e( 'Docs', 'codepress-admin-columns' ); ?>
743
  </a>
744
  </li>
745
  <li>
746
  <a href="https://wordpress.org/support/plugin/codepress-admin-columns" target="_blank">
747
+ <div class="dashicons dashicons-wordpress"></div> <?php _e( 'Forums', 'codepress-admin-columns' ); ?>
748
  </a>
749
  </li>
750
  </ul>
753
  </div>
754
  <div id="feedback-rate">
755
  <div class="inside">
756
+ <p><?php _e( "Woohoo! We're glad to hear that!", 'codepress-admin-columns' ); ?></p>
757
+ <p><?php _e( 'We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!', 'codepress-admin-columns' ); ?></p>
758
  <ul class="share">
759
  <li>
760
  <a href="http://wordpress.org/support/view/plugin-reviews/codepress-admin-columns#postform" target="_blank">
761
+ <div class="dashicons dashicons-star-empty"></div> <?php _e( 'Rate', 'codepress-admin-columns' ); ?>
762
  </a>
763
  </li>
764
 
765
  <li>
766
  <a href="<?php echo add_query_arg( array(
767
+ 'hashtags' => 'admincolumns',
768
  'text' => urlencode( "I'm using Admin Columns for WordPress!" ),
769
  'url' => urlencode( 'http://wordpress.org/plugins/codepress-admin-columns/' ),
770
+ //'via' => 'wpcolumns'
771
  ), 'https://twitter.com/intent/tweet' ); ?>" target="_blank">
772
+ <div class="dashicons dashicons-twitter"></div> <?php _e( 'Tweet', 'codepress-admin-columns' ); ?>
773
  </a>
774
  </li>
775
 
779
  'utm_medium' => 'feedback-purchase-button',
780
  'utm_campaign' => 'plugin-installation'
781
  ), $this->get_url( 'admincolumnspro' ) ); ?>" target="_blank">
782
+ <div class="dashicons dashicons-cart"></div> <?php _e( 'Buy Pro', 'codepress-admin-columns' ); ?>
783
  </a>
784
  </li>
785
  </ul>
791
  <?php endif; ?>
792
 
793
  <div class="sidebox" id="plugin-support">
794
+ <h3><?php _e( 'Support', 'codepress-admin-columns' ); ?></h3>
795
  <div class="inside">
796
  <?php if ( version_compare( get_bloginfo( 'version' ), '3.2', '>' ) ) : ?>
797
+ <p><?php _e( 'Check the <strong>Help</strong> section in the top-right screen.', 'codepress-admin-columns' ); ?></p>
798
  <?php endif; ?>
799
  <p>
800
+ <?php printf( __("For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>", 'codepress-admin-columns' ), $this->get_url('documentation') ); ?>
801
  </p>
802
  </div>
803
  </div><!--plugin-support-->
826
  </div><!--.cpac-columns-->
827
 
828
  <div class="column-footer">
829
+ <div class="order-message"><?php _e( 'Drag and drop to reorder', 'codepress-admin-columns' ); ?></div>
830
 
831
  <div class="button-container">
832
+ <a href="javascript:;" class="add_column button button-primary">+ <?php _e( 'Add Column', 'codepress-admin-columns' );?></a><br/>
833
  </div>
834
 
835
  </div><!--.cpac-column-footer-->
910
  'plugin' => urlencode( $plugin_basename ),
911
  'cpac-redirect' => true
912
  ), admin_url( 'plugins.php' ) ), 'deactivate-plugin_' . $plugin_basename ); ?>
913
+ <a href="#" class="button button-disabled cpac-installed"><?php _e( 'Active', 'codepress-admin-columns' ); ?></a>
914
+ <a href="<?php echo esc_attr( $deactivation_url ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
915
  <?php else : ?>
916
  <?php $activation_url = wp_nonce_url( add_query_arg( array(
917
  'action' => 'activate',
918
  'plugin' => urlencode( $plugin_basename ),
919
  'cpac-redirect' => true
920
  ), admin_url( 'plugins.php' ) ), 'activate-plugin_' . $plugin_basename ); ?>
921
+ <a href="#" class="button button-disabled cpac-installed"><?php _e( 'Installed', 'codepress-admin-columns' ); ?></a>
922
+ <a href="<?php echo esc_attr( $activation_url ); ?>" class="button right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
923
  <?php endif; ?>
924
  <?php
925
 
933
  'plugin' => $addon_name,
934
  ), $this->get_settings_url( 'addons' ) ), 'install-cac-addon' );
935
  ?>
936
+ <a href="<?php echo esc_attr( $install_url ); ?>" class="button"><?php _e( 'Download & Install', 'codepress-admin-columns' ); ?></a>
937
  <?php
938
 
939
  // Get ACP?
940
  else : ?>
941
+ <a target="_blank" href="<?php echo esc_attr( $this->get_url('pricing') ); ?>" class="button"><?php _e( 'Get this add-on', 'codepress-admin-columns' ); ?></a>
942
  <?php endif; ?>
943
  <?php endif; ?>
944
  </div>
classes/storage_model.php CHANGED
@@ -45,6 +45,11 @@ abstract class CPAC_Storage_Model {
45
  */
46
  public $menu_type;
47
 
 
 
 
 
 
48
  /**
49
  * @since 2.0
50
  * @var string
@@ -142,9 +147,10 @@ abstract class CPAC_Storage_Model {
142
  if ( $_REQUEST['cpac_key'] == $this->key ) {
143
  return true;
144
  }
 
145
 
146
  // settings page has not yet been saved
147
- } elseif ( $first_posttype == $this->key ) {
148
  return true;
149
  }
150
 
@@ -152,7 +158,7 @@ abstract class CPAC_Storage_Model {
152
  }
153
 
154
  /**
155
- * @since NEWVERSION
156
  */
157
  public function format_meta_keys( $keys ) {
158
  $add_hidden_meta = true; // always true @todo
@@ -220,8 +226,9 @@ abstract class CPAC_Storage_Model {
220
  * @return array Custom fields.
221
  */
222
  protected function add_hidden_meta( $fields ) {
223
- if ( ! $fields )
224
  return false;
 
225
 
226
  $combined_fields = array();
227
 
@@ -252,7 +259,7 @@ abstract class CPAC_Storage_Model {
252
 
253
  delete_option( "cpac_options_{$this->key}" );
254
 
255
- cpac_admin_message( "<strong>{$this->label}</strong> " . __( 'settings succesfully restored.', 'cpac' ), 'updated' );
256
 
257
  // refresh columns otherwise the removed columns will still display
258
  $this->set_columns_on_current_screen();
@@ -268,7 +275,7 @@ abstract class CPAC_Storage_Model {
268
  }
269
 
270
  if ( ! $columns ) {
271
- cpac_admin_message( __( 'No columns settings available.', 'cpac' ), 'error' );
272
  return false;
273
  }
274
 
@@ -289,11 +296,11 @@ abstract class CPAC_Storage_Model {
289
 
290
  // error
291
  if ( ! $result && ! $result_default ) {
292
- cpac_admin_message( sprintf( __( 'You are trying to store the same settings for %s.', 'cpac' ), "<strong>{$this->label}</strong>" ), 'error' );
293
  return false;
294
  }
295
 
296
- cpac_admin_message( sprintf( __( 'Settings for %s updated successfully.', 'cpac' ), "<strong>{$this->label}</strong>" ), 'updated' );
297
 
298
  // refresh columns otherwise the newly added columns will not be displayed
299
  $this->set_columns_on_current_screen();
@@ -326,9 +333,18 @@ abstract class CPAC_Storage_Model {
326
  'CPAC_Column_Used_By_Menu' => CPAC_DIR . 'classes/column/used-by-menu.php'
327
  );
328
 
329
- // Display ACF placeholder
330
- if ( class_exists('acf') && ! class_exists( 'CAC_Addon_Pro' ) ) {
331
- $columns[ 'CPAC_Column_ACF_Placeholder' ] = CPAC_DIR . 'classes/column/acf-placeholder.php';
 
 
 
 
 
 
 
 
 
332
  }
333
 
334
  // Directory to iterate
@@ -600,6 +616,8 @@ abstract class CPAC_Storage_Model {
600
  $this->default_columns = $this->get_default_registered_columns();
601
  $this->column_types = $this->get_grouped_column_types();
602
  $this->columns = $this->get_columns();
 
 
603
  }
604
 
605
  public function get_grouped_column_types() {
@@ -628,10 +646,12 @@ abstract class CPAC_Storage_Model {
628
  public function get_column_type_groups() {
629
 
630
  $groups = array(
631
- 'default' => __( 'Default', 'cpac' ),
632
- 'custom-field' => __( 'Custom Field', 'cpac' ),
633
- 'custom' => __( 'Custom', 'cpac' ),
634
- 'plugin' => __( 'Columns by Plugins', 'cpac' ),
 
 
635
  );
636
 
637
  /**
@@ -776,6 +796,11 @@ abstract class CPAC_Storage_Model {
776
  */
777
  public function add_headings( $columns ) {
778
 
 
 
 
 
 
779
  // only add headings on overview screens, to prevent deactivating columns on the column settings screen
780
  if ( ! $this->is_columns_screen() ) {
781
  return $columns;
@@ -785,11 +810,15 @@ abstract class CPAC_Storage_Model {
785
  return $columns;
786
  }
787
 
788
- $column_headings = array();
 
 
 
 
789
 
790
  // add mandatory checkbox
791
  if ( isset( $columns['cb'] ) ) {
792
- $column_headings['cb'] = $columns['cb'];
793
  }
794
 
795
  // add active stored headings
@@ -811,7 +840,7 @@ abstract class CPAC_Storage_Model {
811
  $label = apply_filters( 'cac/headings/label', $label, $column_name, $options, $this );
812
  $label = str_replace( '[cpac_site_url]', site_url(), $label );
813
 
814
- $column_headings[ $column_name ] = $label;
815
  }
816
 
817
  // Add 3rd party columns that have ( or could ) not been stored.
@@ -819,11 +848,11 @@ abstract class CPAC_Storage_Model {
819
  // When $diff contains items, it means an available column has not been stored.
820
  if ( ! $this->is_using_php_export() && ( $diff = array_diff( array_keys( $columns ), $this->get_default_stored_columns() ) ) ) {
821
  foreach ( $diff as $column_name ) {
822
- $column_headings[ $column_name ] = $columns[ $column_name ];
823
  }
824
  }
825
 
826
- return $column_headings;
827
  }
828
 
829
  /**
@@ -841,7 +870,7 @@ abstract class CPAC_Storage_Model {
841
  public function screen_link() {
842
 
843
  if ( $link = $this->get_screen_link() ) {
844
- echo '<a href="' . $link . '" class="add-new-h2">' . __('View', 'cpac') . '</a>';
845
  }
846
  }
847
 
@@ -937,60 +966,4 @@ abstract class CPAC_Storage_Model {
937
 
938
  return $options[ $option ];
939
  }
940
-
941
- /**
942
- * @since 2.4.2
943
- */
944
- public function is_cache_enabled() {
945
- return apply_filters( 'cac/is_cache_enabled', true );
946
- }
947
-
948
- /**
949
- * @since 3.1.2
950
- * @param $id Cache ID
951
- * @param $column_name Column property name
952
- * @return string MD5 Cache ID
953
- */
954
- public function get_cache_id( $id, $column_name ) {
955
- return md5( $this->key . $id . $column_name );
956
- }
957
-
958
- /**
959
- * @since 3.1.2
960
- * @param $id Cache ID
961
- * @param $column_name Column property name
962
- * @param $cache_object Cache Object
963
- * @param $duration int Cache duration in seconds. default is 1 day.
964
- */
965
- public function set_cache( $id, $column_name, $cache_object, $duration = 86400 ) {
966
- if ( empty( $cache_object ) ) {
967
- return false;
968
- }
969
- set_transient( $this->get_cache_id( $id, $column_name ), $cache_object, $duration );
970
- }
971
-
972
- /**
973
- * @since 3.1.2
974
- * @param $id Cache ID ( could be a name of an addon for example )
975
- * @param $column_name Column property name
976
- * @return false | mixed Returns either false or the cached objects
977
- */
978
- public function get_cache( $id, $column_name ) {
979
- $cache = get_transient( $this->get_cache_id( $id, $column_name ) );
980
-
981
- if ( empty( $cache ) ) {
982
- return false;
983
- }
984
-
985
- return $cache;
986
- }
987
-
988
- /**
989
- * @since 3.1.2
990
- * @param $id Cache ID
991
- * @param $column_name Column property name
992
- */
993
- public function delete_cache( $id, $column_name ) {
994
- delete_transient( $this->get_cache_id( $id, $column_name ) );
995
- }
996
  }
45
  */
46
  public $menu_type;
47
 
48
+ /**
49
+ * @since NEWVERSIOM
50
+ */
51
+ private $column_headings;
52
+
53
  /**
54
  * @since 2.0
55
  * @var string
147
  if ( $_REQUEST['cpac_key'] == $this->key ) {
148
  return true;
149
  }
150
+ }
151
 
152
  // settings page has not yet been saved
153
+ elseif ( $first_posttype == $this->key ) {
154
  return true;
155
  }
156
 
158
  }
159
 
160
  /**
161
+ * @since 2.4.7
162
  */
163
  public function format_meta_keys( $keys ) {
164
  $add_hidden_meta = true; // always true @todo
226
  * @return array Custom fields.
227
  */
228
  protected function add_hidden_meta( $fields ) {
229
+ if ( ! $fields ) {
230
  return false;
231
+ }
232
 
233
  $combined_fields = array();
234
 
259
 
260
  delete_option( "cpac_options_{$this->key}" );
261
 
262
+ cpac_admin_message( "<strong>{$this->label}</strong> " . __( 'settings succesfully restored.', 'codepress-admin-columns' ), 'updated' );
263
 
264
  // refresh columns otherwise the removed columns will still display
265
  $this->set_columns_on_current_screen();
275
  }
276
 
277
  if ( ! $columns ) {
278
+ cpac_admin_message( __( 'No columns settings available.', 'codepress-admin-columns' ), 'error' );
279
  return false;
280
  }
281
 
296
 
297
  // error
298
  if ( ! $result && ! $result_default ) {
299
+ cpac_admin_message( sprintf( __( 'You are trying to store the same settings for %s.', 'codepress-admin-columns' ), "<strong>{$this->label}</strong>" ), 'error' );
300
  return false;
301
  }
302
 
303
+ cpac_admin_message( sprintf( __( 'Settings for %s updated successfully.', 'codepress-admin-columns' ), "<strong>{$this->label}</strong>" ), 'updated' );
304
 
305
  // refresh columns otherwise the newly added columns will not be displayed
306
  $this->set_columns_on_current_screen();
333
  'CPAC_Column_Used_By_Menu' => CPAC_DIR . 'classes/column/used-by-menu.php'
334
  );
335
 
336
+ // Add-on placeholders
337
+ if ( ! cpac_is_pro_active() ) {
338
+
339
+ // Display ACF placeholder
340
+ if ( cpac_is_acf_active() ) {
341
+ $columns[ 'CPAC_Column_ACF_Placeholder' ] = CPAC_DIR . 'classes/column/acf-placeholder.php';
342
+ }
343
+
344
+ // Display WooCommerce placeholder
345
+ if ( cpac_is_woocommerce_active() ) {
346
+ $columns[ 'CPAC_Column_WC_Placeholder' ] = CPAC_DIR . 'classes/column/wc-placeholder.php';
347
+ }
348
  }
349
 
350
  // Directory to iterate
616
  $this->default_columns = $this->get_default_registered_columns();
617
  $this->column_types = $this->get_grouped_column_types();
618
  $this->columns = $this->get_columns();
619
+
620
+ do_action( 'cac/set_columns/after', $this );
621
  }
622
 
623
  public function get_grouped_column_types() {
646
  public function get_column_type_groups() {
647
 
648
  $groups = array(
649
+ 'default' => __( 'Default', 'codepress-admin-columns' ),
650
+ 'custom-field' => __( 'Custom Field', 'codepress-admin-columns' ),
651
+ 'custom' => __( 'Custom', 'codepress-admin-columns' ),
652
+ 'plugin' => __( 'Columns by Plugins', 'codepress-admin-columns' ),
653
+ 'acf' => __( 'Advanced Custom Fields', 'codepress-admin-columns' ),
654
+ 'woocommerce' => __( 'WooCommerce', 'codepress-admin-columns' )
655
  );
656
 
657
  /**
796
  */
797
  public function add_headings( $columns ) {
798
 
799
+ // make sure we run this only once
800
+ if ( $this->column_headings ) {
801
+ return $this->column_headings;
802
+ }
803
+
804
  // only add headings on overview screens, to prevent deactivating columns on the column settings screen
805
  if ( ! $this->is_columns_screen() ) {
806
  return $columns;
810
  return $columns;
811
  }
812
 
813
+ if ( ! $this->default_columns ) {
814
+ return $columns;
815
+ }
816
+
817
+ $this->column_headings = array();
818
 
819
  // add mandatory checkbox
820
  if ( isset( $columns['cb'] ) ) {
821
+ $this->column_headings['cb'] = $columns['cb'];
822
  }
823
 
824
  // add active stored headings
840
  $label = apply_filters( 'cac/headings/label', $label, $column_name, $options, $this );
841
  $label = str_replace( '[cpac_site_url]', site_url(), $label );
842
 
843
+ $this->column_headings[ $column_name ] = $label;
844
  }
845
 
846
  // Add 3rd party columns that have ( or could ) not been stored.
848
  // When $diff contains items, it means an available column has not been stored.
849
  if ( ! $this->is_using_php_export() && ( $diff = array_diff( array_keys( $columns ), $this->get_default_stored_columns() ) ) ) {
850
  foreach ( $diff as $column_name ) {
851
+ $this->column_headings[ $column_name ] = $columns[ $column_name ];
852
  }
853
  }
854
 
855
+ return $this->column_headings;
856
  }
857
 
858
  /**
870
  public function screen_link() {
871
 
872
  if ( $link = $this->get_screen_link() ) {
873
+ echo '<a href="' . $link . '" class="add-new-h2">' . __('View', 'codepress-admin-columns') . '</a>';
874
  }
875
  }
876
 
966
 
967
  return $options[ $option ];
968
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
969
  }
classes/storage_model/post.php CHANGED
@@ -26,13 +26,13 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
26
  // Headings
27
 
28
  // Since 3.1
29
- add_filter( "manage_{$post_type}_posts_columns", array( $this, 'add_headings' ), 100, 1 );
30
 
31
  // Deprecated ( as of 3.1 ) Note: This one is still used by woocommerce.
32
  // Priority set to 100 top make sure the WooCommerce headings are overwritten by CAC
33
  // Filter is located in get_column_headers().
34
  // @todo_minor check compatibility issues for this deprecated filter
35
- add_filter( "manage_{$this->page}-{$post_type}_columns", array( $this, 'add_headings' ), 100, 1 );
36
 
37
  // values
38
  add_action( "manage_{$this->post_type}_posts_custom_column", array( $this, 'manage_value_callback' ), 100, 2 );
@@ -56,7 +56,7 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
56
  /**
57
  * Get post ID's
58
  *
59
- * @since NEWVERSION
60
  *
61
  * @param array $args
62
  * @return array Posts
@@ -134,10 +134,26 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
134
  * @since 2.4.4
135
  */
136
  public function get_default_column_names() {
137
- if ( ! in_array( $this->post_type, array( 'post', 'page' ) ) ) {
138
- return false;
 
 
 
 
 
 
139
  }
140
- return array( 'author', 'cb', 'categories', 'comments', 'date', 'parent', 'tags', 'title' );
 
 
 
 
 
 
 
 
 
 
141
  }
142
 
143
  /**
26
  // Headings
27
 
28
  // Since 3.1
29
+ add_filter( "manage_{$post_type}_posts_columns", array( $this, 'add_headings' ), 100 );
30
 
31
  // Deprecated ( as of 3.1 ) Note: This one is still used by woocommerce.
32
  // Priority set to 100 top make sure the WooCommerce headings are overwritten by CAC
33
  // Filter is located in get_column_headers().
34
  // @todo_minor check compatibility issues for this deprecated filter
35
+ add_filter( "manage_{$this->page}-{$post_type}_columns", array( $this, 'add_headings' ), 100 );
36
 
37
  // values
38
  add_action( "manage_{$this->post_type}_posts_custom_column", array( $this, 'manage_value_callback' ), 100, 2 );
56
  /**
57
  * Get post ID's
58
  *
59
+ * @since 2.4.7
60
  *
61
  * @param array $args
62
  * @return array Posts
134
  * @since 2.4.4
135
  */
136
  public function get_default_column_names() {
137
+
138
+ $defaults = array( 'date' );
139
+
140
+ if ( post_type_supports( $this->post_type, 'title' ) ) {
141
+ $defaults[] = 'title';
142
+ }
143
+ if ( post_type_supports( $this->post_type, 'comments' ) ) {
144
+ $defaults[] = 'comments';
145
  }
146
+
147
+ if ( in_array( $this->post_type, array( 'post', 'page' ) ) ) {
148
+ $defaults[] = 'cb';
149
+ $defaults[] = 'author';
150
+ $defaults[] = 'categories';
151
+ $defaults[] = 'comments';
152
+ $defaults[] = 'parent';
153
+ $defaults[] = 'tags';
154
+ }
155
+
156
+ return $defaults;
157
  }
158
 
159
  /**
classes/storage_model/user.php CHANGED
@@ -26,6 +26,26 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
26
  parent::__construct();
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * Get WP default supported admin columns per post type.
31
  *
26
  parent::__construct();
27
  }
28
 
29
+ /**
30
+ * @since 2.4.7
31
+ */
32
+ public function get_original_column_value( $column, $id ) {
33
+
34
+ // Remove Admin Columns action for this column's value
35
+ remove_action( "manage_users_custom_column", array( $this, 'manage_value_callback' ), 100, 3 );
36
+
37
+ ob_start();
38
+
39
+ do_action( "manage_users_custom_column", $column, $id );
40
+
41
+ $contents = ob_get_clean();
42
+
43
+ // Add removed Admin Columns action for this column's value
44
+ add_action( "manage_users_custom_column", array( $this, 'manage_value_callback' ), 100, 3 );
45
+
46
+ return $contents;
47
+ }
48
+
49
  /**
50
  * Get WP default supported admin columns per post type.
51
  *
classes/third_party.php CHANGED
@@ -1,198 +1,6 @@
1
  <?php
2
-
3
- /**
4
- * Fix for getting the columns loaded by WordPress SEO Yoast
5
- *
6
- * The added columns from WordPress SEO by Yoast weren't available on
7
- * the admin columns settings page. The reason was that class-metabox.php was prevented
8
- * from loading. This fix will also load this class when admin columns is loaded.
9
- *
10
- * @since 1.4.6
11
- */
12
- function cpac_pre_load_wordpress_seo_class_metabox() {
13
-
14
- if ( ! defined('WPSEO_PATH') || ! file_exists( WPSEO_PATH . 'admin/class-metabox.php' ) ) {
15
- return;
16
- }
17
-
18
- global $pagenow;
19
-
20
- // page is a CPAC page or CPAC ajax event
21
- if (
22
- ( isset( $_GET['page'] ) && 'codepress-admin-columns' == $_GET['page'] && 'options-general.php' == $pagenow )
23
- ||
24
- // for when column list is populated through ajax
25
- ( defined('DOING_AJAX') && DOING_AJAX &&
26
- ( ! empty( $_POST['type'] )
27
- ||
28
- ( ! empty( $_POST['plugin_id'] ) && 'cpac' === $_POST['plugin_id'] ) )
29
- )
30
- ) {
31
-
32
- require_once WPSEO_PATH . 'admin/class-metabox.php';
33
- if ( class_exists( 'WPSEO_Metabox', false ) ) {
34
- new WPSEO_Metabox;
35
- }
36
- }
37
-
38
- }
39
- add_action( 'plugins_loaded', 'cpac_pre_load_wordpress_seo_class_metabox', 0 );
40
-
41
- /**
42
- * WPML compatibility
43
- *
44
- * @since 2.0
45
- */
46
- function cac_add_wpml_columns( $storage_model ) {
47
-
48
- if ( ! class_exists( 'SitePress', false ) ) {
49
- return;
50
- }
51
-
52
- if ( 'post' !== $storage_model->type ) {
53
- return;
54
- }
55
-
56
- global $pagenow, $cpac;
57
-
58
- // check if we are on the correct page or when a columns is being refreshed by ajax.
59
- if ( ( 'options-general.php' !== $pagenow ) && ( empty( $_POST['action'] ) || 'cpac_column_refresh' !== $_POST['action'] ) ) {
60
- return;
61
- }
62
-
63
- // prevent PHP errors from SitePress
64
- global $sitepress, $posts, $__management_columns_posts_translations;
65
- $__management_columns_posts_translations = 'not_null';
66
- $posts = get_posts( array(
67
- 'post_type' => $storage_model->post_type,
68
- 'numberposts' => -1
69
- ));
70
-
71
- // Trigger SitePress::add_posts_management_column()
72
- add_filter( 'manage_' . $storage_model->post_type . 's_columns', array( $sitepress, 'add_posts_management_column' ) );
73
- }
74
- add_action( 'cac/set_columns', 'cac_add_wpml_columns' );
75
-
76
- /**
77
- * Fix which remove the Advanced Custom Fields Type (acf) from the admin columns settings page
78
- *
79
- * @since 2.0
80
- *
81
- * @return array Posttypes
82
- */
83
- function cpac_remove_acf_from_cpac_post_types( $post_types ) {
84
- if ( class_exists( 'Acf', false ) ) {
85
- if ( isset( $post_types['acf'] ) ) {
86
- unset( $post_types['acf'] );
87
- }
88
- if ( isset( $post_types['acf-field-group'] ) ) {
89
- unset( $post_types['acf-field-group'] );
90
- }
91
- }
92
-
93
- return $post_types;
94
- }
95
- add_filter( 'cac/post_types', 'cpac_remove_acf_from_cpac_post_types' );
96
-
97
- /**
98
- * bbPress - remove posttypes: forum, reply and topic
99
- *
100
- * The default columns of bbPress are not recognised by Admin Columns as of yet.
101
- *
102
- * @since 2.0
103
- *
104
- * @return array Posttypes
105
- */
106
- function cpac_posttypes_remove_bbpress( $post_types ) {
107
- if ( class_exists( 'bbPress', false ) ) {
108
- unset( $post_types['topic'] );
109
- unset( $post_types['reply'] );
110
- unset( $post_types['forum'] );
111
- }
112
-
113
- return $post_types;
114
- }
115
- add_filter( 'cac/post_types', 'cpac_posttypes_remove_bbpress' );
116
-
117
- /**
118
- * Fix for Ninja Forms
119
- *
120
- * @since 2.0
121
- *
122
- * @return array Posttypes
123
- */
124
- function cpac_remove_ninja_forms_from_cpac_post_types( $post_types ) {
125
- if ( class_exists( 'Ninja_Forms', false ) ) {
126
- if ( isset( $post_types['nf_sub'] ) ) {
127
- unset( $post_types['nf_sub'] );
128
- }
129
- }
130
-
131
- return $post_types;
132
- }
133
- add_filter( 'cac/post_types', 'cpac_remove_ninja_forms_from_cpac_post_types' );
134
-
135
- /**
136
- * Add support for All in SEO columns
137
- *
138
- * @since 2.0
139
- */
140
- function cpac_load_aioseop_addmycolumns() {
141
- if ( function_exists('aioseop_addmycolumns') ) {
142
- aioseop_addmycolumns();
143
- }
144
- }
145
- add_action( 'cac/columns/default/posts', 'cpac_load_aioseop_addmycolumns' );
146
-
147
- /**
148
- * WPML Register labels
149
- *
150
- * To enable the translation of the column labels
151
- *
152
- * @since 2.0
153
- */
154
- function cpac_wpml_register_column_labels() {
155
- global $cpac;
156
-
157
- // dont load this unless required by WPML
158
- if ( !isset( $_GET['page'] ) || 'wpml-string-translation/menu/string-translation.php' !== $_GET['page'] ) return;
159
-
160
- foreach ( $cpac->storage_models as $storage_model ) {
161
- foreach ( $storage_model->get_stored_columns() as $column_name => $options ) {
162
- icl_register_string( 'Admin Columns', $storage_model->key . '_' . $column_name, stripslashes( $options['label'] ) );
163
- }
164
- }
165
- }
166
- add_action( 'wp_loaded', 'cpac_wpml_register_column_labels', 99 );
167
-
168
- /**
169
- * WPML Display translated label
170
- *
171
- * @since 2.0
172
- */
173
- function cpac_wpml_set_translated_label( $label, $column_name, $column_options, $storage_model ) {
174
-
175
- // register with WPML
176
- if( function_exists('icl_t') ) {
177
- $name = $storage_model->key . '_' . $column_name;
178
- $label = icl_t( 'Admin Columns', $name, $label );
179
- }
180
-
181
- return $label;
182
- }
183
- add_filter( 'cac/headings/label', 'cpac_wpml_set_translated_label', 10, 4 );
184
-
185
- /**
186
- * Set WPML to be a columns screen for translation so that storage models are loaded
187
- *
188
- * @since 2.2
189
- */
190
- function cpac_wpml_is_cac_screen( $is_columns_screen ) {
191
-
192
- if ( isset( $_GET['page'] ) && $_GET['page'] == 'wpml-string-translation/menu/string-translation.php' ) {
193
- return true;
194
- }
195
-
196
- return $is_columns_screen;
197
- }
198
- add_filter( 'cac/is_cac_screen', 'cpac_wpml_is_cac_screen' );
1
  <?php
2
+ require_once CPAC_DIR . 'classes/third_party/all-in-seo.php';
3
+ require_once CPAC_DIR . 'classes/third_party/bbpress.php';
4
+ require_once CPAC_DIR . 'classes/third_party/ninja_forms.php';
5
+ require_once CPAC_DIR . 'classes/third_party/wpml.php';
6
+ require_once CPAC_DIR . 'classes/third_party/yoast_seo.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/third_party/acf.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Fix which remove the Advanced Custom Fields Type (acf) from the admin columns settings page
5
+ *
6
+ * @since 2.0
7
+ *
8
+ * @return array Posttypes
9
+ */
10
+ function cpac_remove_acf_from_cpac_post_types( $post_types ) {
11
+ if ( class_exists( 'Acf', false ) ) {
12
+ if ( isset( $post_types['acf'] ) ) {
13
+ unset( $post_types['acf'] );
14
+ }
15
+ if ( isset( $post_types['acf-field-group'] ) ) {
16
+ unset( $post_types['acf-field-group'] );
17
+ }
18
+ }
19
+
20
+ return $post_types;
21
+ }
22
+ add_filter( 'cac/post_types', 'cpac_remove_acf_from_cpac_post_types' );
classes/third_party/all-in-seo.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Add support for All in SEO columns
5
+ *
6
+ * @since 2.0
7
+ */
8
+ function cpac_load_aioseop_addmycolumns() {
9
+ if ( function_exists('aioseop_addmycolumns') ) {
10
+ aioseop_addmycolumns();
11
+ }
12
+ }
13
+ add_action( 'cac/columns/default/posts', 'cpac_load_aioseop_addmycolumns' );
classes/third_party/bbpress.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * bbPress - remove posttypes: forum, reply and topic
5
+ *
6
+ * The default columns of bbPress are not recognised by Admin Columns as of yet.
7
+ *
8
+ * @since 2.0
9
+ *
10
+ * @return array Posttypes
11
+ */
12
+ function cpac_posttypes_remove_bbpress( $post_types ) {
13
+ if ( class_exists( 'bbPress', false ) ) {
14
+ unset( $post_types['topic'] );
15
+ unset( $post_types['reply'] );
16
+ unset( $post_types['forum'] );
17
+ }
18
+
19
+ return $post_types;
20
+ }
21
+ add_filter( 'cac/post_types', 'cpac_posttypes_remove_bbpress' );
classes/third_party/ninja_forms.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Fix for Ninja Forms
5
+ *
6
+ * @since 2.0
7
+ *
8
+ * @return array Posttypes
9
+ */
10
+ function cpac_remove_ninja_forms_from_cpac_post_types( $post_types ) {
11
+ if ( class_exists( 'Ninja_Forms', false ) ) {
12
+ if ( isset( $post_types['nf_sub'] ) ) {
13
+ unset( $post_types['nf_sub'] );
14
+ }
15
+ }
16
+
17
+ return $post_types;
18
+ }
19
+ add_filter( 'cac/post_types', 'cpac_remove_ninja_forms_from_cpac_post_types' );
classes/third_party/wpml.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * WPML: display correct flags on the overview screens
5
+ */
6
+ class CPAC_WPML_COLUMN {
7
+
8
+ CONST COLUMN_NAME = 'icl_translations';
9
+
10
+ private $column;
11
+
12
+ function __construct( $post_type ) {
13
+ add_filter( "manage_{$post_type}_posts_columns", array( $this, 'store_wpml_column' ), 11 ); // prio just after WPML set's it's column
14
+ add_filter( "manage_edit-{$post_type}_columns", array( $this, 'replace_wpml_column' ), 101 ); // prio just after AC overwrite all columns
15
+ }
16
+ public function store_wpml_column( $columns ) {
17
+ if ( empty( $this->column ) && isset( $columns[ self::COLUMN_NAME ] ) ) {
18
+ $this->column = $columns[ self::COLUMN_NAME ];
19
+ }
20
+ return $columns;
21
+ }
22
+ public function replace_wpml_column( $columns ) {
23
+ if ( $this->column && isset( $columns[ self::COLUMN_NAME ] ) ) {
24
+ $columns[ self::COLUMN_NAME ] = $this->column;
25
+ }
26
+ return $columns;
27
+ }
28
+ }
29
+
30
+ /**
31
+ * WPML compatibility
32
+ */
33
+ class CPAC_WPML {
34
+
35
+ function __construct() {
36
+
37
+ // load wpml columns in AC columns menu
38
+ add_action( 'cac/set_columns', array( $this, 'add_columns_to_settings_menu' ) );
39
+
40
+ // display correct flags on the overview screens
41
+ add_action( 'cac/loaded', array( $this, 'replace_flags' ) );
42
+
43
+ // enable the translation of the column labels
44
+ add_action( 'wp_loaded', array( $this, 'register_column_labels' ), 99 );
45
+
46
+ // enable the WPML translation of column headings
47
+ add_filter( 'cac/headings/label', array( $this, 'register_translated_label' ), 10, 4 );
48
+
49
+ // set WPML to be a columns screen for translation so that storage models are loaded
50
+ add_filter( 'cac/is_cac_screen', array( $this, 'is_cac_screen' ) );
51
+ }
52
+
53
+ public function replace_flags( $cac ) {
54
+ if ( ! class_exists( 'SitePress', false ) ) {
55
+ return;
56
+ }
57
+ if ( ! $cac->is_columns_screen() ) {
58
+ return;
59
+ }
60
+
61
+ $settings = get_option( 'icl_sitepress_settings' );
62
+ if ( ! isset( $settings['custom_posts_sync_option'] ) ) {
63
+ return;
64
+ }
65
+ $post_types = (array) $settings['custom_posts_sync_option'];
66
+ $post_types['post'] = 1;
67
+ $post_types['page'] = 1;
68
+ foreach ( $post_types as $post_type => $value ) {
69
+ if ( $value ) {
70
+ new CPAC_WPML_COLUMN( $post_type );
71
+ }
72
+ }
73
+ }
74
+
75
+ public function add_columns_to_settings_menu( $storage_model ) {
76
+ if ( ! class_exists( 'SitePress', false ) ) {
77
+ return;
78
+ }
79
+ if ( 'post' !== $storage_model->type ) {
80
+ return;
81
+ }
82
+
83
+ global $pagenow, $cpac;
84
+
85
+ // check if we are on the correct page or when a column is being refreshed by ajax.
86
+ if ( ( 'options-general.php' !== $pagenow ) && ( empty( $_POST['action'] ) || 'cpac_column_refresh' !== $_POST['action'] ) ) {
87
+ return;
88
+ }
89
+
90
+ // prevent PHP errors from SitePress
91
+ global $sitepress, $posts;
92
+ $posts = get_posts( array(
93
+ 'post_type' => $storage_model->post_type,
94
+ 'posts_per_page' => 1
95
+ ));
96
+
97
+ add_filter( 'manage_' . $storage_model->post_type . 's_columns', array( $sitepress, 'add_posts_management_column' ) );
98
+ }
99
+
100
+ public function register_column_labels() {
101
+ global $cpac;
102
+
103
+ // dont load this unless required by WPML
104
+ if ( ! isset( $_GET['page'] ) || 'wpml-string-translation/menu/string-translation.php' !== $_GET['page'] ) {
105
+ return;
106
+ }
107
+
108
+ foreach ( $cpac->storage_models as $storage_model ) {
109
+ foreach ( $storage_model->get_stored_columns() as $column_name => $options ) {
110
+ icl_register_string( 'Admin Columns', $storage_model->key . '_' . $column_name, stripslashes( $options['label'] ) );
111
+ }
112
+ }
113
+ }
114
+
115
+ public function register_translated_label( $label, $column_name, $column_options, $storage_model ) {
116
+
117
+ if ( function_exists( 'icl_t' ) ) {
118
+ $name = $storage_model->key . '_' . $column_name;
119
+ $label = icl_t( 'Admin Columns', $name, $label );
120
+ }
121
+ return $label;
122
+ }
123
+
124
+ public function is_cac_screen( $is_columns_screen ) {
125
+
126
+ if ( isset( $_GET['page'] ) && 'wpml-string-translation/menu/string-translation.php' == $_GET['page'] ) {
127
+ return true;
128
+ }
129
+ return $is_columns_screen;
130
+ }
131
+ }
132
+ new CPAC_WPML;
classes/third_party/yoast_seo.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Fix for getting the columns loaded by WordPress SEO Yoast
5
+ *
6
+ * The added columns from WordPress SEO by Yoast weren't available on
7
+ * the admin columns settings page. The reason was that class-metabox.php was prevented
8
+ * from loading. This fix will also load this class when admin columns is loaded.
9
+ *
10
+ * @since 1.4.6
11
+ */
12
+ function cpac_pre_load_wordpress_seo_class_metabox() {
13
+
14
+ if ( ! defined('WPSEO_PATH') || ! file_exists( WPSEO_PATH . 'admin/class-metabox.php' ) ) {
15
+ return;
16
+ }
17
+
18
+ global $pagenow;
19
+
20
+ // page is a CPAC page or CPAC ajax event
21
+ if (
22
+ ( isset( $_GET['page'] ) && 'codepress-admin-columns' == $_GET['page'] && 'options-general.php' == $pagenow )
23
+ ||
24
+ // for when column list is populated through ajax
25
+ ( defined('DOING_AJAX') && DOING_AJAX &&
26
+ ( ! empty( $_POST['type'] )
27
+ ||
28
+ ( ! empty( $_POST['plugin_id'] ) && 'cpac' === $_POST['plugin_id'] ) )
29
+ )
30
+ ) {
31
+
32
+ require_once WPSEO_PATH . 'admin/class-metabox.php';
33
+ if ( class_exists( 'WPSEO_Metabox', false ) ) {
34
+ new WPSEO_Metabox;
35
+ }
36
+ }
37
+
38
+ }
39
+ add_action( 'plugins_loaded', 'cpac_pre_load_wordpress_seo_class_metabox', 0 );
classes/upgrade.php CHANGED
@@ -59,8 +59,8 @@ class CPAC_Upgrade {
59
  ?>
60
  <div class="message error">
61
  <p>
62
- <?php _e( 'The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro', 'cpac' ); ?>
63
- <a href="https://www.admincolumns.com/pro-addon-information/" target="_blank"><?php _e( 'Learn more', 'cpac' ); ?></a>
64
  </p>
65
  </div>
66
  <?php
@@ -92,7 +92,7 @@ class CPAC_Upgrade {
92
  return;
93
  }
94
 
95
- $upgrade_page = add_submenu_page( 'options-general.php', __( 'Upgrade', 'cpac' ), __( 'Upgrade', 'cpac' ), 'manage_options', 'cpac-upgrade', array( $this, 'start_upgrade' ) );
96
  add_action( "admin_print_scripts-{$upgrade_page}", array( $this, 'admin_scripts' ) );
97
  }
98
 
@@ -132,15 +132,15 @@ class CPAC_Upgrade {
132
  // display upgrade message on every page except upgrade page itself
133
  if ( ! ( isset( $_REQUEST['page'] ) && 'cpac-upgrade' === $_REQUEST['page'] ) ) {
134
 
135
- $message = __( 'Admin Columns', 'cpac' ) . ' v' . CPAC_VERSION . ' ' .
136
- __( 'requires a database upgrade','cpac' ) .
137
  ' (<a class="thickbox" href="' . admin_url() .
138
  'plugin-install.php?tab=plugin-information&plugin=codepress-admin-columns&section=changelog&TB_iframe=true&width=640&height=559">' .
139
- __( 'why?', 'cpac' ) .'</a>). ' .
140
- __( "Please", 'cpac' ) .' <a href="http://codex.wordpress.org/Backing_Up_Your_Database">' .
141
- __( "backup your database", 'cpac' ) .'</a>, '.
142
- __( "then click", 'cpac' ) . ' <a href="' . admin_url() . 'options-general.php?page=cpac-upgrade" class="button">' .
143
- __( "Upgrade Database", 'cpac' ) . '</a>';
144
 
145
  cpac_admin_message( $message, 'updated' );
146
  }
@@ -348,7 +348,7 @@ class CPAC_Upgrade {
348
 
349
  $return = array(
350
  'status' => true,
351
- 'message' => __( "Migrating Column Settings", 'cpac' ) . '...',
352
  'next' => false,
353
  );
354
 
@@ -384,8 +384,8 @@ class CPAC_Upgrade {
384
 
385
  // No update required
386
  else : ?>
387
- <p><?php _e( 'No Upgrade Required', 'cpac' ); ?></p>
388
- <a href="<?php echo admin_url('options-general.php'); ?>?page=codepress-admin-columns&amp;info"><?php _e( 'Return to welcome screen.', 'cpac' ); ?></a>
389
  <?php
390
  endif;
391
  }
@@ -403,9 +403,9 @@ class CPAC_Upgrade {
403
 
404
  // javascript translations
405
  wp_localize_script( 'cpac-upgrade', 'cpac_upgrade_i18n', array(
406
- 'complete' => __( 'Upgrade Complete!', 'cpac' ) . '</p><p><a href="' . admin_url('options-general.php') . '?page=codepress-admin-columns&info">' . __( 'Return to settings.', 'cpac' ) . "</a>" ,
407
- 'error' => __( 'Error', 'cpac' ),
408
- 'major_error' => __( 'Sorry. Something went wrong during the upgrade process. Please report this on the support forum.', 'cpac' )
409
  ));
410
  }
411
  }
59
  ?>
60
  <div class="message error">
61
  <p>
62
+ <?php _e( 'The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro', 'codepress-admin-columns' ); ?>
63
+ <a href="https://www.admincolumns.com/pro-addon-information/" target="_blank"><?php _e( 'Learn more', 'codepress-admin-columns' ); ?></a>
64
  </p>
65
  </div>
66
  <?php
92
  return;
93
  }
94
 
95
+ $upgrade_page = add_submenu_page( 'options-general.php', __( 'Upgrade', 'codepress-admin-columns' ), __( 'Upgrade', 'codepress-admin-columns' ), 'manage_options', 'cpac-upgrade', array( $this, 'start_upgrade' ) );
96
  add_action( "admin_print_scripts-{$upgrade_page}", array( $this, 'admin_scripts' ) );
97
  }
98
 
132
  // display upgrade message on every page except upgrade page itself
133
  if ( ! ( isset( $_REQUEST['page'] ) && 'cpac-upgrade' === $_REQUEST['page'] ) ) {
134
 
135
+ $message = __( 'Admin Columns', 'codepress-admin-columns' ) . ' v' . CPAC_VERSION . ' ' .
136
+ __( 'requires a database upgrade','codepress-admin-columns' ) .
137
  ' (<a class="thickbox" href="' . admin_url() .
138
  'plugin-install.php?tab=plugin-information&plugin=codepress-admin-columns&section=changelog&TB_iframe=true&width=640&height=559">' .
139
+ __( 'why?', 'codepress-admin-columns' ) .'</a>). ' .
140
+ __( "Please", 'codepress-admin-columns' ) .' <a href="http://codex.wordpress.org/Backing_Up_Your_Database">' .
141
+ __( "backup your database", 'codepress-admin-columns' ) .'</a>, '.
142
+ __( "then click", 'codepress-admin-columns' ) . ' <a href="' . admin_url() . 'options-general.php?page=cpac-upgrade" class="button">' .
143
+ __( "Upgrade Database", 'codepress-admin-columns' ) . '</a>';
144
 
145
  cpac_admin_message( $message, 'updated' );
146
  }
348
 
349
  $return = array(
350
  'status' => true,
351
+ 'message' => __( "Migrating Column Settings", 'codepress-admin-columns' ) . '...',
352
  'next' => false,
353
  );
354
 
384
 
385
  // No update required
386
  else : ?>
387
+ <p><?php _e( 'No Upgrade Required', 'codepress-admin-columns' ); ?></p>
388
+ <a href="<?php echo admin_url('options-general.php'); ?>?page=codepress-admin-columns&amp;info"><?php _e( 'Return to welcome screen.', 'codepress-admin-columns' ); ?></a>
389
  <?php
390
  endif;
391
  }
403
 
404
  // javascript translations
405
  wp_localize_script( 'cpac-upgrade', 'cpac_upgrade_i18n', array(
406
+ 'complete' => __( 'Upgrade Complete!', 'codepress-admin-columns' ) . '</p><p><a href="' . admin_url('options-general.php') . '?page=codepress-admin-columns&info">' . __( 'Return to settings.', 'codepress-admin-columns' ) . "</a>" ,
407
+ 'error' => __( 'Error', 'codepress-admin-columns' ),
408
+ 'major_error' => __( 'Sorry. Something went wrong during the upgrade process. Please report this on the support forum.', 'codepress-admin-columns' )
409
  ));
410
  }
411
  }
classes/utility.php CHANGED
@@ -69,15 +69,14 @@ function cpac_is_wc_version_gte( $version = '1.0' ) {
69
  return $wc_version && version_compare( $wc_version, $version, '>=' );
70
  }
71
 
72
- function cpac_get_ids_from_array( $array ) {
73
- $array = trim( str_replace( ' ','', $array ) );
74
- $ids = array();
75
- if ( strpos( $array, ',' ) !== false ) {
76
- $ids = explode( ',', $array );
77
- $ids = array_map( 'intval', $ids );
78
- }
79
- elseif ( is_numeric( $array ) ) {
80
- $ids[] = $array;
81
- }
82
- return $ids;
83
  }
69
  return $wc_version && version_compare( $wc_version, $version, '>=' );
70
  }
71
 
72
+ function cpac_is_acf_active() {
73
+ return class_exists( 'acf', false );
74
+ }
75
+
76
+ function cpac_is_woocommerce_active() {
77
+ return class_exists( 'WooCommerce', false );
78
+ }
79
+
80
+ function cpac_is_pro_active() {
81
+ return class_exists( 'CAC_Addon_Pro', false );
 
82
  }
codepress-admin-columns.php CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
- Version: 2.4.6
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: http://www.admincolumns.com
8
  Plugin URI: http://www.admincolumns.com
9
- Text Domain: cpac
10
  Domain Path: /languages
11
  License: GPLv2
12
 
@@ -32,7 +32,7 @@ if ( ! defined( 'ABSPATH' ) ) {
32
  }
33
 
34
  // Plugin information
35
- define( 'CPAC_VERSION', '2.4.6' ); // Current plugin version
36
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // Latest version which requires an upgrade
37
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
38
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
@@ -95,6 +95,14 @@ class CPAC {
95
  */
96
  private $_upgrade;
97
 
 
 
 
 
 
 
 
 
98
  /**
99
  * @since 1.0
100
  */
@@ -150,7 +158,7 @@ class CPAC {
150
  */
151
  public function localize() {
152
 
153
- load_plugin_textdomain( 'cpac', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
154
  }
155
 
156
  /**
@@ -207,9 +215,8 @@ class CPAC {
207
  * @since 2.3.5
208
  */
209
  public function maybe_load_php_export() {
210
- global $_cac_exported_columns;
211
- if ( $_cac_exported_columns ) {
212
- foreach( $_cac_exported_columns as $model => $columns ) {
213
  if ( $storage_model = $this->get_storage_model( $model ) ) {
214
  $storage_model->set_stored_columns( $columns );
215
  }
@@ -441,7 +448,7 @@ class CPAC {
441
  <?php if ( $edit_link ) : ?>
442
  <script type="text/javascript">
443
  jQuery(document).ready(function() {
444
- jQuery('.tablenav.top .actions:last').append('<a href="<?php echo $edit_link; ?>" class="cpac-edit add-new-h2"><?php _e( 'Edit columns', 'cpac' ); ?></a>');
445
  });
446
  </script>
447
  <?php endif; ?>
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
+ Version: 2.4.7
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: http://www.admincolumns.com
8
  Plugin URI: http://www.admincolumns.com
9
+ Text Domain: codepress-admin-columns
10
  Domain Path: /languages
11
  License: GPLv2
12
 
32
  }
33
 
34
  // Plugin information
35
+ define( 'CPAC_VERSION', '2.4.7' ); // Current plugin version
36
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // Latest version which requires an upgrade
37
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
38
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
95
  */
96
  private $_upgrade;
97
 
98
+ /**
99
+ * Column settings to import from a column PHP export
100
+ *
101
+ * @since 2.4.7
102
+ * @var array
103
+ */
104
+ public $exported_columns;
105
+
106
  /**
107
  * @since 1.0
108
  */
158
  */
159
  public function localize() {
160
 
161
+ load_plugin_textdomain( 'codepress-admin-columns', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
162
  }
163
 
164
  /**
215
  * @since 2.3.5
216
  */
217
  public function maybe_load_php_export() {
218
+ if ( ! empty( $this->exported_columns ) ) {
219
+ foreach( $this->exported_columns as $model => $columns ) {
 
220
  if ( $storage_model = $this->get_storage_model( $model ) ) {
221
  $storage_model->set_stored_columns( $columns );
222
  }
448
  <?php if ( $edit_link ) : ?>
449
  <script type="text/javascript">
450
  jQuery(document).ready(function() {
451
+ jQuery('.tablenav.top .actions:last').append('<a href="<?php echo $edit_link; ?>" class="cpac-edit add-new-h2"><?php _e( 'Edit columns', 'codepress-admin-columns' ); ?></a>');
452
  });
453
  </script>
454
  <?php endif; ?>
languages/codepress-admin-columns-ar.mo ADDED
Binary file
languages/{cpac-ar.po → codepress-admin-columns-ar.po} RENAMED
@@ -1,32 +1,32 @@
1
- #
 
2
  # Translators:
3
  # Hassan, 2013
4
  # Hassan, 2013
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
10
- "PO-Revision-Date: 2015-06-26 13:21+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/language/ar/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ar\n"
17
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
18
- "X-Generator: Poedit 1.8.1\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
- "X-Poedit-SearchPathExcluded-0: ../src\n"
25
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
@@ -48,1263 +48,1220 @@ msgstr ""
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr ""
50
 
51
- #: ../classes/column.php:597
52
  msgid "Thumbnail"
53
  msgstr "صورة مصغرة"
54
 
55
- #: ../classes/column.php:598
56
  msgid "Medium"
57
  msgstr "وسط"
58
 
59
- #: ../classes/column.php:599
60
  msgid "Large"
61
  msgstr "كبير"
62
 
63
- #: ../classes/column.php:600
64
  msgid "Full"
65
  msgstr "كامل"
66
 
67
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "Date Format"
69
  msgstr "تنسيق التاريخ"
70
 
71
- #: ../classes/column.php:1042
72
  msgid "This will determine how the date will be displayed."
73
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
74
 
75
- #: ../classes/column.php:1048
76
  msgid "Example:"
77
  msgstr "مثال:"
78
 
79
- #: ../classes/column.php:1050
80
- #, php-format
81
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
82
- msgstr "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق التاريخ الخاص بك هنا</a>."
83
 
84
- #: ../classes/column.php:1051
85
  msgid "Documentation on date and time formatting."
86
  msgstr "توثيق حول تنسيق التاريخ والوقت."
87
 
88
- #: ../classes/column.php:1065
89
  msgid "Excerpt length"
90
  msgstr "طول المقتطف"
91
 
92
- #: ../classes/column.php:1066
93
  msgid "Number of words"
94
  msgstr "عدد الكلمات"
95
 
96
- #: ../classes/column.php:1084
97
  msgid "Preview size"
98
  msgstr "حجم المعاينة"
99
 
100
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
101
  msgid "Custom"
102
  msgstr "مخصوص"
103
 
104
- #: ../classes/column.php:1104 ../classes/column.php:1251
105
  msgid "width"
106
  msgstr "عرض"
107
 
108
- #: ../classes/column.php:1107
109
  msgid "height"
110
  msgstr "إرتفاع"
111
 
112
- #: ../classes/column.php:1119
113
  msgid "Before"
114
  msgstr "قبل"
115
 
116
- #: ../classes/column.php:1119
117
  msgid "This text will appear before the custom field value."
118
  msgstr "هذا النص سيظهر قبل الحقل المخصوص."
119
 
120
- #: ../classes/column.php:1120
121
  msgid "After"
122
  msgstr "بعد"
123
 
124
- #: ../classes/column.php:1120
125
  msgid "This text will appear after the custom field value."
126
  msgstr "هذا النص سيظهر بعد الحقل المخصوص."
127
 
128
- #: ../classes/column.php:1129
129
  msgid "Display Name"
130
  msgstr "اسم العرض"
131
 
132
- #: ../classes/column.php:1130
133
  msgid "First Name"
134
  msgstr "الاسم الأول"
135
 
136
- #: ../classes/column.php:1131
137
  msgid "Last Name"
138
  msgstr "الاسم الأخير"
139
 
140
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
141
  msgid "Nickname"
142
  msgstr "الاسم المستعار"
143
 
144
- #: ../classes/column.php:1133
145
  msgid "User Login"
146
  msgstr "اسم الدخول"
147
 
148
- #: ../classes/column.php:1134
149
  msgid "User Email"
150
  msgstr "بريد المستخدم"
151
 
152
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
153
  msgid "User ID"
154
  msgstr "رقم المستخدم"
155
 
156
- #: ../classes/column.php:1136
157
  msgid "First and Last Name"
158
  msgstr "الاسم الأول والأخير"
159
 
160
- #: ../classes/column.php:1139
161
  msgid "Display format"
162
  msgstr ""
163
 
164
- #: ../classes/column.php:1139
165
  msgid "This is the format of the author name."
166
  msgstr "هذا هو تنسيق اسم الكاتب."
167
 
168
- #: ../classes/column.php:1273
169
  msgid "Edit"
170
  msgstr "تحرير"
171
 
172
- #: ../classes/column.php:1275 ../classes/column.php:1367
173
  msgid "Clone"
174
  msgstr ""
175
 
176
- #: ../classes/column.php:1277 ../classes/column.php:1369
177
  msgid "Remove"
178
  msgstr "إزالة"
179
 
180
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
181
  msgid "Type"
182
  msgstr "نوع"
183
 
184
- #: ../classes/column.php:1295
185
  msgid "Choose a column type."
186
  msgstr "اختر نوع عمود"
187
 
188
- #: ../classes/column.php:1295
189
  msgid "Name"
190
  msgstr ""
191
 
192
- #: ../classes/column.php:1305
193
  msgid "Label"
194
  msgstr "العنوان"
195
 
196
- #: ../classes/column.php:1305
197
  msgid "This is the name which will appear as the column header."
198
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
199
 
200
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
201
  msgid "Width"
202
  msgstr "عرض"
203
 
204
- #: ../classes/column.php:1314
205
  msgid "default"
206
  msgstr "إفتراضي"
207
 
208
- #: ../classes/column.php:1315
209
  msgid "auto"
210
  msgstr ""
211
 
212
- #: ../classes/column/acf-placeholder.php:19
213
- msgid "ACF Field"
214
  msgstr ""
215
 
216
- #: ../classes/column/acf-placeholder.php:32
217
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
218
  msgstr ""
219
 
220
- #: ../classes/column/acf-placeholder.php:35
221
- #, php-format
222
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
223
  msgstr ""
224
 
225
- #: ../classes/column/acf-placeholder.php:38
226
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
227
  msgstr ""
228
 
229
- #: ../classes/column/acf-placeholder.php:44
230
- msgid "Find out more"
231
  msgstr ""
232
 
233
- #: ../classes/column/actions.php:29
234
- msgid "Actions"
235
- msgstr "تطبيقات"
236
 
237
- #: ../classes/column/actions.php:96
238
- msgid "Use icons?"
 
 
 
 
239
  msgstr ""
240
 
241
- #: ../classes/column/actions.php:96
242
- msgid "Use icons instead of text for displaying the actions."
243
  msgstr ""
244
 
245
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
246
- msgid "Yes"
247
  msgstr ""
248
 
249
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
250
- msgid "No"
251
  msgstr ""
252
 
253
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
254
- msgid "ID"
255
- msgstr "رقم"
256
 
257
- #: ../classes/column/comment/agent.php:19
258
- msgid "Agent"
259
- msgstr "عميل"
260
 
261
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
262
- msgid "Approved"
263
- msgstr "موافق عليه"
264
 
265
- #: ../classes/column/comment/author-avatar.php:19
266
- msgid "Avatar"
267
- msgstr "صورة"
268
 
269
- #: ../classes/column/comment/author-email.php:19
270
- msgid "Author email"
271
- msgstr "بريد الكاتب"
272
 
273
- #: ../classes/column/comment/author-ip.php:19
274
- msgid "Author IP"
275
- msgstr "عنوان آي بي الكاتب"
276
 
277
- #: ../classes/column/comment/author-name.php:12
278
- msgid "Author name"
279
  msgstr ""
280
 
281
- #: ../classes/column/comment/author-url.php:19
282
- msgid "Author url"
283
- msgstr "عنوان موقع الكاتب"
284
 
285
- #: ../classes/column/comment/author.php:19
286
- msgid "Author"
287
- msgstr "الكاتب"
288
 
289
- #: ../classes/column/comment/date-gmt.php:19
290
- msgid "Date GMT"
291
- msgstr "تاريخ GMT"
292
 
293
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
294
- #, php-format
295
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
296
- msgstr "أرسل في <a href=\"%1$s\">%2$s في %3$s</a>"
297
 
298
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
299
- msgid "Date"
300
- msgstr "تاريخ"
301
 
302
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
303
- msgid "Content"
304
- msgstr ""
305
 
306
- #: ../classes/column/comment/reply-to.php:19
307
- msgid "In Reply To"
308
- msgstr "ردا على"
 
 
309
 
310
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
311
- msgid "User"
312
- msgstr ""
313
 
314
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
315
- msgid "Word count"
316
- msgstr "عدد الكلمات"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
319
  msgid "Custom Field"
320
  msgstr "حقل مخصوص"
321
 
322
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
323
  msgid "Default"
324
  msgstr "إفتراضي"
325
 
326
- #: ../classes/column/custom-field.php:95
327
- msgid "Checkmark (true/false)"
328
- msgstr "علامة إختيار (صح/خطأ)"
329
 
330
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
331
- msgid "Color"
332
- msgstr "لون"
333
 
334
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
335
- msgid "Counter"
336
- msgstr "عداد"
337
 
338
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
339
  msgid "Excerpt"
340
  msgstr "مقتطف"
341
 
342
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
343
- msgid "Image"
344
- msgstr "صورة"
345
-
346
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
347
- msgid "Media Library"
348
- msgstr "مكتبة الوسائط"
349
 
350
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
351
  msgid "Multiple Values"
352
  msgstr "قيم متعددة"
353
 
354
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
355
  msgid "Numeric"
356
  msgstr "رقمي"
357
 
358
- #: ../classes/column/custom-field.php:104
359
- msgid "Post Title (Post ID's)"
360
- msgstr "عنوان تدوينة (أرقام تدوينات)"
361
-
362
- #: ../classes/column/custom-field.php:105
363
- msgid "Username (User ID's)"
364
- msgstr "اسم مستخدم (أرقام مستخدمين)"
365
 
366
- #: ../classes/column/custom-field.php:106
367
- msgid "Term Name (Term ID's)"
368
- msgstr ""
369
 
370
- #: ../classes/column/custom-field.php:390
371
- msgid "Select your custom field."
372
- msgstr "اختر حقلك المخصوص"
373
 
374
- #: ../classes/column/custom-field.php:400
375
- msgid "No custom fields available."
376
- msgstr "لا توجد حقول مخصوصة متوفرة."
377
 
378
- #: ../classes/column/custom-field.php:400
379
- #, php-format
380
- msgid "Please create a %s item first."
381
- msgstr ""
382
 
383
- #: ../classes/column/custom-field.php:407
384
- msgid "Field Type"
385
- msgstr "نوع الحقل"
386
 
387
- #: ../classes/column/custom-field.php:407
388
- msgid "This will determine how the value will be displayed."
389
- msgstr "هذا سيحدد كيف سيتم عرض القيمة."
390
 
391
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
392
- msgid "Description"
393
- msgstr "وصف"
394
 
395
- #: ../classes/column/link/length.php:19
396
- msgid "Length"
397
- msgstr "طول"
398
 
399
- #: ../classes/column/link/notes.php:19
400
- msgid "Notes"
401
- msgstr "ملاحظات"
402
 
403
- #: ../classes/column/link/owner.php:19
404
- msgid "Owner"
405
- msgstr "مالك"
406
 
407
- #: ../classes/column/link/rss.php:19
408
- msgid "Rss"
409
- msgstr "Rss"
410
 
411
- #: ../classes/column/link/target.php:19
412
- msgid "Target"
413
- msgstr "هدف"
414
 
415
- #: ../classes/column/media/alternate-text.php:19
416
- msgid "Alt"
417
- msgstr "بديل"
418
 
419
- #: ../classes/column/media/attached-to.php:19
420
- msgid "Attached to post"
421
- msgstr ""
422
 
423
- #: ../classes/column/media/available-sizes.php:20
424
- msgid "Available Sizes"
425
- msgstr "الأحجام المتوفرة"
426
 
427
- #: ../classes/column/media/available-sizes.php:40
428
- msgid "full size"
429
- msgstr "حجم كامل"
430
 
431
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
432
- msgid "Caption"
433
- msgstr "شرح"
434
 
435
- #: ../classes/column/media/dimensions.php:19
436
- msgid "Dimensions"
437
- msgstr "أبعاد"
438
-
439
- #: ../classes/column/media/exif-data.php:19
440
- msgid "EXIF data"
441
- msgstr "بيانات EXIF"
442
-
443
- #: ../classes/column/media/exif-data.php:38
444
- msgid "Aperture"
445
- msgstr "فتحة"
446
 
447
- #: ../classes/column/media/exif-data.php:39
448
- msgid "Credit"
449
- msgstr "شرف"
450
 
451
- #: ../classes/column/media/exif-data.php:40
452
- msgid "Camera"
453
- msgstr "كاميرا"
454
 
455
- #: ../classes/column/media/exif-data.php:42
456
- msgid "Timestamp"
457
- msgstr "طابع زمني"
458
 
459
- #: ../classes/column/media/exif-data.php:43
460
- msgid "Copyright EXIF"
461
- msgstr "بيانات EXIF حق النشر"
462
 
463
- #: ../classes/column/media/exif-data.php:44
464
- msgid "Focal Length"
465
- msgstr "بعد بؤري"
466
 
467
- #: ../classes/column/media/exif-data.php:45
468
- msgid "ISO"
469
- msgstr "ISO"
470
 
471
- #: ../classes/column/media/exif-data.php:46
472
- msgid "Shutter Speed"
473
- msgstr "سرعة مصراع"
474
 
475
- #: ../classes/column/media/exif-data.php:47
476
- msgid "Title"
477
- msgstr "عنوان"
478
 
479
- #: ../classes/column/media/file-name.php:19
480
- msgid "File name"
481
- msgstr "اسم ملف"
482
 
483
- #: ../classes/column/media/file-size.php:19
484
- msgid "File size"
485
- msgstr "حجم ملف"
486
 
487
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
488
- msgid "Full path"
489
- msgstr "مسار كامل"
490
 
491
- #: ../classes/column/media/full-path.php:83
492
- msgid "Path scope"
493
- msgstr ""
494
 
495
- #: ../classes/column/media/full-path.php:84
496
- msgid "Part of the file path to display"
497
- msgstr ""
498
 
499
- #: ../classes/column/media/full-path.php:97
500
- msgid "Relative to domain"
501
- msgstr ""
502
 
503
- #: ../classes/column/media/full-path.php:102
504
- msgid "Relative to main uploads folder "
505
- msgstr ""
506
 
507
- #: ../classes/column/media/height.php:19
508
- msgid "Height"
509
- msgstr "إرتفاع"
510
 
511
- #: ../classes/column/media/mime-type.php:19
512
- msgid "Mime type"
513
- msgstr "نوع Mime"
514
 
515
- #: ../classes/column/post/attachment-count.php:19
516
- msgid "No. of Attachments"
517
- msgstr "عدد المرفقات"
518
 
519
- #: ../classes/column/post/attachment.php:19
520
- msgid "Attachments"
521
  msgstr ""
522
 
523
- #: ../classes/column/post/author-name.php:20
524
- msgid "Display Author As"
525
- msgstr "عرض الكاتب كـ"
526
-
527
- #: ../classes/column/post/before-moretag.php:19
528
- msgid "Before More Tag"
529
- msgstr "قبل وسم المزيد"
530
 
531
- #: ../classes/column/post/comment-count.php:20
532
- msgid "Comment count"
533
- msgstr "عدد التعليقات"
534
 
535
- #: ../classes/column/post/comment-count.php:34
536
- msgid "Total"
537
- msgstr "المجموع"
538
 
539
- #: ../classes/column/post/comment-count.php:36
540
- msgid "Pending"
541
- msgstr "بالانتظار"
542
 
543
- #: ../classes/column/post/comment-count.php:37
544
- msgid "Spam"
545
- msgstr "مزعج"
546
 
547
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
548
- msgid "Trash"
549
- msgstr "المهملات"
550
 
551
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
552
- msgid "Comment status"
553
- msgstr "حالة التعليق"
554
 
555
- #: ../classes/column/post/comment-count.php:99
556
- msgid "Select which comment status you like to display."
557
- msgstr "اختر حالة التعليق الذي تريد عرضه."
558
 
559
- #: ../classes/column/post/date-published.php:17
560
- msgid "Date Published"
561
  msgstr ""
562
 
563
- #: ../classes/column/post/depth.php:19
564
- msgid "Depth"
565
  msgstr ""
566
 
567
- #: ../classes/column/post/estimated-reading-time.php:19
568
- msgid "Estimated Reading Time"
 
 
 
 
569
  msgstr ""
570
 
571
- #: ../classes/column/post/estimated-reading-time.php:63
572
- msgid "second"
573
- msgid_plural "seconds"
574
- msgstr[0] ""
575
- msgstr[1] ""
576
- msgstr[2] ""
577
- msgstr[3] ""
578
- msgstr[4] ""
579
- msgstr[5] ""
580
 
581
- #: ../classes/column/post/estimated-reading-time.php:66
582
- msgid "minute"
583
- msgid_plural "minutes"
584
- msgstr[0] ""
585
- msgstr[1] ""
586
- msgstr[2] ""
587
- msgstr[3] ""
588
- msgstr[4] ""
589
- msgstr[5] ""
590
 
591
- #: ../classes/column/post/estimated-reading-time.php:103
592
- msgid "Words per minute"
593
  msgstr ""
594
 
595
- #: ../classes/column/post/estimated-reading-time.php:104
596
- msgid "Estimated reading time in words per minute"
597
- msgstr ""
598
 
599
- #: ../classes/column/post/featured-image.php:19
600
- msgid "Featured Image"
601
- msgstr "الصورة المميزة"
602
 
603
- #: ../classes/column/post/formats.php:19
604
- msgid "Post Format"
605
- msgstr "تنسيق التدوينة"
606
 
607
- #: ../classes/column/post/last-modified-author.php:20
608
- msgid "Last Modified Author"
609
  msgstr ""
610
 
611
- #: ../classes/column/post/modified.php:19
612
- msgid "Last modified"
613
- msgstr "آخر تحديث"
614
 
615
- #: ../classes/column/post/order.php:19
616
- msgid "Page Order"
617
- msgstr "ترتيب الصفحة"
618
 
619
- #: ../classes/column/post/page-template.php:19
620
- msgid "Page Template"
621
- msgstr "قالب الصفحة"
622
 
623
- #: ../classes/column/post/parent.php:19
624
- msgid "Parent"
625
- msgstr "الأب"
626
 
627
- #: ../classes/column/post/path.php:19
628
- msgid "Path"
629
  msgstr ""
630
 
631
- #: ../classes/column/post/permalink.php:19
632
- msgid "Permalink"
633
  msgstr ""
634
 
635
- #: ../classes/column/post/permalink.php:68
636
- msgid "Link to post"
637
  msgstr ""
638
 
639
- #: ../classes/column/post/permalink.php:68
640
- msgid "This will make the permalink clickable."
641
  msgstr ""
642
 
643
- #: ../classes/column/post/ping-status.php:19
644
- msgid "Ping status"
645
- msgstr "حالة التنبيه"
646
 
647
- #: ../classes/column/post/roles.php:19
648
- msgid "Roles"
649
- msgstr "الأدوار"
650
 
651
- #: ../classes/column/post/shortcodes.php:19
652
- msgid "Shortcodes"
653
  msgstr ""
654
 
655
- #: ../classes/column/post/slug.php:19
656
- msgid "Slug"
657
- msgstr "الاسم اللطيف"
658
 
659
- #: ../classes/column/post/status.php:19
660
- msgid "Status"
661
- msgstr "الحالة"
662
 
663
- #: ../classes/column/post/status.php:29
664
- msgid "Published"
665
- msgstr "منشور"
666
 
667
- #: ../classes/column/post/status.php:30
668
- msgid "Draft"
669
- msgstr "مسودة"
670
 
671
- #: ../classes/column/post/status.php:31
672
- msgid "Scheduled"
673
- msgstr "مجدول"
674
 
675
- #: ../classes/column/post/status.php:32
676
- msgid "Private"
677
- msgstr "خاص"
678
-
679
- #: ../classes/column/post/status.php:33
680
- msgid "Pending Review"
681
- msgstr "بانتظار المراجعة"
682
-
683
- #: ../classes/column/post/status.php:34
684
- msgid "Auto Draft"
685
- msgstr ""
686
-
687
- #: ../classes/column/post/sticky.php:19
688
- msgid "Sticky"
689
- msgstr "لاصق"
690
-
691
- #: ../classes/column/post/title-raw.php:19
692
- msgid "Title without actions"
693
- msgstr ""
694
-
695
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
696
- msgid "Taxonomy"
697
- msgstr "التصنيف"
698
-
699
- #: ../classes/column/used-by-menu.php:20
700
- msgid "Used by Menu"
701
- msgstr ""
702
-
703
- #: ../classes/column/used-by-menu.php:133
704
- msgid "Link to menu"
705
- msgstr ""
706
-
707
- #: ../classes/column/used-by-menu.php:133
708
- msgid "This will make the title link to the menu."
709
- msgstr ""
710
-
711
- #: ../classes/column/user/comment-count.php:19
712
- msgid "Comment Count"
713
- msgstr "عدد التعليقات"
714
-
715
- #: ../classes/column/user/display-name.php:19
716
- msgid "Display name"
717
- msgstr ""
718
-
719
- #: ../classes/column/user/first-name.php:19
720
- msgid "First name"
721
- msgstr "الاسم الأول"
722
-
723
- #: ../classes/column/user/last-name.php:19
724
- msgid "Last name"
725
- msgstr "الاسم الأخير"
726
-
727
- #: ../classes/column/user/post-count.php:19
728
- msgid "Post Count"
729
- msgstr "عدد التدوينات"
730
-
731
- #: ../classes/column/user/post-count.php:89
732
- msgid "Post Type"
733
- msgstr "نوع تدوبنة"
734
-
735
- #: ../classes/column/user/registered.php:19
736
- msgid "Registered"
737
- msgstr "مسجل"
738
-
739
- #: ../classes/column/user/rich-editing.php:19
740
- msgid "Visual Editor"
741
- msgstr ""
742
-
743
- #: ../classes/column/user/url.php:19
744
- msgid "Url"
745
- msgstr "عنوان موقع"
746
-
747
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
748
- msgid "Admin Columns"
749
- msgstr "Admin Columns"
750
 
751
- #: ../classes/review_notice.php:58
752
- msgid "Admin Columns Pro"
753
- msgstr ""
754
 
755
- #: ../classes/review_notice.php:65
756
- #, php-format
757
- msgid ""
758
- "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 "
759
- "you're not happy with %s, please %s."
760
  msgstr ""
761
 
762
- #: ../classes/review_notice.php:68
763
- msgid "click here"
764
  msgstr ""
765
 
766
- #: ../classes/review_notice.php:72
767
- msgid "Leave a review!"
768
  msgstr ""
769
 
770
- #: ../classes/review_notice.php:73
771
- msgid "Permanently hide notice"
772
  msgstr ""
773
 
774
- #: ../classes/review_notice.php:80
775
- #, php-format
776
- 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."
777
  msgstr ""
778
 
779
- #: ../classes/review_notice.php:82
780
- msgid "documentation page"
781
  msgstr ""
782
 
783
- #: ../classes/review_notice.php:86
784
- #, php-format
785
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
786
- msgstr ""
787
 
788
- #: ../classes/review_notice.php:87
789
- msgid "our forums"
790
- msgstr ""
791
 
792
- #: ../classes/review_notice.php:91
793
- #, php-format
794
- msgid "You can also find help on the %s, and %s."
795
- msgstr ""
796
 
797
- #: ../classes/review_notice.php:92
798
- msgid "Admin Columns forums on WordPress.org"
799
  msgstr ""
800
 
801
- #: ../classes/review_notice.php:93
802
- msgid "find answers to some frequently asked questions"
803
  msgstr ""
804
 
805
- #: ../classes/settings.php:112
806
- msgid "Add-on successfully activated."
807
- msgstr ""
808
 
809
- #: ../classes/settings.php:115
810
- msgid "Add-on successfully deactivated."
811
  msgstr ""
812
 
813
- #: ../classes/settings.php:170
814
- msgid "Admin Columns Settings"
815
- msgstr "إعدادات Admin Columns"
816
-
817
- #: ../classes/settings.php:220
818
- #, php-format
819
- msgid "%s column is already present and can not be duplicated."
820
- msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
821
-
822
- #: ../classes/settings.php:274
823
- msgid "Default settings succesfully restored."
824
- msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
825
 
826
- #: ../classes/settings.php:291
827
- msgid "Overview"
828
- msgstr "نظرة عامة"
829
 
830
- #: ../classes/settings.php:294
831
- msgid ""
832
- "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 "
833
- "reorder them."
834
- msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير تسمية الأعمدة وإعادة ترتيبها."
835
 
836
- #: ../classes/settings.php:297
837
- msgid "Basics"
838
- msgstr "مبادئ"
839
 
840
- #: ../classes/settings.php:299
841
- msgid "Change order"
842
- msgstr "تغيير الترتيب"
843
 
844
- #: ../classes/settings.php:300
845
- msgid "By dragging the columns you can change the order which they will appear in."
846
- msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
847
 
848
- #: ../classes/settings.php:301
849
- msgid "Change label"
850
- msgstr "تغيير العنوان"
851
 
852
- #: ../classes/settings.php:302
853
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
854
- msgstr "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
855
 
856
- #: ../classes/settings.php:303
857
- msgid "Change column width"
858
- msgstr "تغيير عرض العمود"
859
 
860
- #: ../classes/settings.php:304
861
- 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."
862
- msgstr "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب يمكنك تعيين عرض الأعمدة بالنسب المئوية."
863
 
864
- #: ../classes/settings.php:310
865
- msgid "'Custom Field' column"
866
- msgstr "عمود 'حقل مخصوص'"
867
 
868
- #: ../classes/settings.php:311
869
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
870
- msgstr "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 أنواع يمكنك تعيينها."
871
 
872
- #: ../classes/settings.php:313
873
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
874
- msgstr "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم بـ '،' فاصلة."
875
 
876
- #: ../classes/settings.php:314
877
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
878
- msgstr "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
879
 
880
- #: ../classes/settings.php:315
881
- msgid "Value: This will show the first 20 words of the Post content."
882
- msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
883
 
884
- #: ../classes/settings.php:316
885
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
886
- msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
887
 
888
- #: ../classes/settings.php:317
889
- 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."
890
- msgstr "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
891
 
892
- #: ../classes/settings.php:318
893
- #, php-format
894
- 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."
895
- msgstr "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a href='%s'>الإعدادات العامة</a>."
896
 
897
- #: ../classes/settings.php:319
898
- msgid "Post Titles"
899
- msgstr "عناوين تدوينات"
900
 
901
- #: ../classes/settings.php:319
902
- msgid "Value: can be one or more Post ID's (seperated by ',')."
903
- msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
904
 
905
- #: ../classes/settings.php:320
906
- msgid "Usernames"
907
- msgstr "أسماء مستخدمين"
908
 
909
- #: ../classes/settings.php:320
910
- msgid "Value: can be one or more User ID's (seperated by ',')."
911
- msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
912
 
913
- #: ../classes/settings.php:321
914
- msgid "Checkmark"
915
- msgstr "علامة اختيار"
916
 
917
- #: ../classes/settings.php:321
918
- msgid "Value: should be a 1 (one) or 0 (zero)."
919
- msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
920
 
921
- #: ../classes/settings.php:322
922
- msgid "Value: hex value color, such as #808080."
923
- msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
924
 
925
- #: ../classes/settings.php:323
926
- 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."
927
- msgstr "القيمة: يمكن أن يكون إما سلسلة أو مجموعة. هذا سيعرض عدد مرات استخدام المفتاح من قبل العنصر."
928
 
929
- #: ../classes/settings.php:412
930
- msgid "Welcome to Admin Columns"
931
- msgstr "مرحبا في Admin Columns"
932
 
933
- #: ../classes/settings.php:415
934
- msgid "Thank you for updating to the latest version!"
935
- msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
936
 
937
- #: ../classes/settings.php:416
938
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
939
- msgstr "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
940
 
941
- #: ../classes/settings.php:421
942
- msgid "What’s New"
943
- msgstr "ما الجديد"
944
 
945
- #: ../classes/settings.php:422
946
- msgid "Changelog"
947
- msgstr "سجل التغييرات"
948
 
949
- #: ../classes/settings.php:427
950
- msgid "Important"
951
- msgstr "مهم"
952
 
953
- #: ../classes/settings.php:429
954
- msgid "Database Changes"
955
- msgstr "تغييرات قاعدة البيانات"
956
 
957
- #: ../classes/settings.php:430
958
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
959
- msgstr "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك الرجوع إلى إصدار 1x دون أية مشاكل."
960
 
961
- #: ../classes/settings.php:433
962
- msgid "Make sure you backup your database and then click"
963
- msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
964
 
965
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
966
- msgid "Upgrade Database"
967
- msgstr "تحديث قاعدة البيانات"
968
 
969
- #: ../classes/settings.php:436
970
- msgid "Potential Issues"
971
- msgstr "مشاكل محتملة"
972
 
973
- #: ../classes/settings.php:437
974
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
975
- msgstr "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
976
 
977
- #: ../classes/settings.php:437
978
- msgid "Migrating from v1 to v2"
979
- msgstr "الانتقال من النسخة 1 إلى النسخة 2"
980
 
981
- #: ../classes/settings.php:437
982
- msgid "guide to view the full list of changes."
983
- msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
984
 
985
- #: ../classes/settings.php:437
986
- #, php-format
987
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
988
- msgstr "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من إصلاحها في النسخة القادمة."
989
 
990
- #: ../classes/settings.php:440
991
- msgid "Important!"
992
- msgstr "مهم!"
993
 
994
- #: ../classes/settings.php:440
995
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
996
- msgstr "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع لآخر"
997
 
998
- #: ../classes/settings.php:440
999
- msgid "version 1"
1000
- msgstr "النسخة 1"
1001
 
1002
- #: ../classes/settings.php:440
1003
- msgid "of this plugin."
1004
- msgstr "من هذه الإضافة"
1005
 
1006
- #: ../classes/settings.php:446
1007
- msgid "Changelog for"
1008
- msgstr "سجل التغييرات لـ"
1009
 
1010
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1011
- msgid "Learn more"
1012
- msgstr "تعلم المزيد"
1013
 
1014
- #: ../classes/settings.php:471
1015
- msgid "Start using Admin Columns"
1016
- msgstr "البدء باستخدام Admin Columns"
1017
 
1018
- #: ../classes/settings.php:490
1019
- msgid "General Settings"
1020
- msgstr "إعدادات عامة"
1021
 
1022
- #: ../classes/settings.php:491
1023
- msgid "Customize your Admin Columns settings."
1024
- msgstr "قم بتخصيص إعدادات Admin Columns."
1025
 
1026
- #: ../classes/settings.php:502
1027
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1028
  msgstr ""
1029
 
1030
- #: ../classes/settings.php:509 ../classes/settings.php:673
1031
- msgid "Save"
1032
- msgstr "حفظ"
1033
-
1034
- #: ../classes/settings.php:549
1035
- msgid "Restore Settings"
1036
- msgstr "استرجاع الإعدادات"
1037
-
1038
- #: ../classes/settings.php:550
1039
- msgid "This will delete all column settings and restore the default settings."
1040
- msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
1041
 
1042
- #: ../classes/settings.php:556
1043
- msgid "Restore default settings"
1044
- msgstr "استرجاع الإعدادات الإفتراضية"
1045
 
1046
- #: ../classes/settings.php:556
1047
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1048
- msgstr "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
1049
 
1050
- #: ../classes/settings.php:572
1051
- msgid "Posttypes"
1052
- msgstr ""
1053
 
1054
- #: ../classes/settings.php:573
1055
- msgid "Others"
1056
- msgstr ""
1057
 
1058
- #: ../classes/settings.php:574
1059
- msgid "Taxonomies"
1060
- msgstr ""
1061
 
1062
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1063
- msgid "Settings"
1064
- msgstr "إعدادات"
1065
 
1066
- #: ../classes/settings.php:591
1067
- msgid "Add-ons"
1068
- msgstr ""
1069
 
1070
- #: ../classes/settings.php:659
1071
- #, php-format
1072
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1073
- msgstr ""
1074
 
1075
- #: ../classes/settings.php:669
1076
- msgid "Store settings"
1077
- msgstr "حفظ الإعدادات"
1078
 
1079
- #: ../classes/settings.php:673
1080
- msgid "Update"
1081
- msgstr "تحديث"
1082
 
1083
- #: ../classes/settings.php:677
1084
- #, php-format
1085
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1086
- msgstr "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
1087
 
1088
- #: ../classes/settings.php:678
1089
- msgid "Restore"
1090
- msgstr "استرجاع"
1091
 
1092
- #: ../classes/settings.php:678
1093
- msgid "columns"
1094
- msgstr "أعمدة"
1095
 
1096
- #: ../classes/settings.php:697
1097
- msgid "Get Admin Columns Pro"
1098
- msgstr ""
1099
 
1100
- #: ../classes/settings.php:701
1101
- msgid "Add Sorting"
1102
- msgstr "أضف ترتيب"
1103
 
1104
- #: ../classes/settings.php:702
1105
- msgid "Add Filtering"
1106
- msgstr "أضف تصفية"
1107
 
1108
- #: ../classes/settings.php:703
1109
- msgid "Add Import/Export"
1110
- msgstr "أضف استيراد/تصدير"
1111
 
1112
- #: ../classes/settings.php:704
1113
- msgid "Add Direct Editing"
1114
  msgstr ""
1115
 
1116
- #: ../classes/settings.php:707
1117
- #, php-format
1118
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1119
  msgstr ""
1120
 
1121
- #: ../classes/settings.php:738
1122
- msgid "Are you happy with Admin Columns?"
1123
  msgstr ""
1124
 
1125
- #: ../classes/settings.php:746
1126
- msgid "What's wrong? Need help? Let us know!"
1127
  msgstr ""
1128
 
1129
- #: ../classes/settings.php:747
1130
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1131
- msgstr ""
1132
 
1133
- #: ../classes/settings.php:755
1134
- msgid "Docs"
1135
- msgstr ""
1136
 
1137
- #: ../classes/settings.php:760
1138
- msgid "Forums"
1139
- msgstr ""
1140
 
1141
- #: ../classes/settings.php:769
1142
- msgid "Woohoo! We're glad to hear that!"
1143
  msgstr ""
1144
 
1145
- #: ../classes/settings.php:770
1146
- 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!"
1147
- msgstr ""
1148
 
1149
- #: ../classes/settings.php:774
1150
- msgid "Rate"
1151
  msgstr ""
1152
 
1153
- #: ../classes/settings.php:785
1154
- msgid "Tweet"
1155
  msgstr ""
1156
 
1157
- #: ../classes/settings.php:795
1158
- msgid "Buy Pro"
1159
- msgstr ""
1160
 
1161
- #: ../classes/settings.php:807
1162
- msgid "Support"
1163
- msgstr "دعم"
1164
 
1165
- #: ../classes/settings.php:810
1166
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1167
- msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
1168
 
1169
- #: ../classes/settings.php:813
1170
- #, php-format
1171
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1172
- msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
1173
 
1174
- #: ../classes/settings.php:842
1175
- msgid "Drag and drop to reorder"
1176
- msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
1177
 
1178
- #: ../classes/settings.php:845
1179
- msgid "Add Column"
1180
- msgstr "أضف عمود"
1181
 
1182
- #: ../classes/settings.php:926
1183
- msgid "Active"
1184
- msgstr ""
1185
 
1186
- #: ../classes/settings.php:927
1187
- msgid "Deactivate"
1188
- msgstr ""
1189
 
1190
- #: ../classes/settings.php:934
1191
- msgid "Installed"
1192
  msgstr ""
1193
 
1194
- #: ../classes/settings.php:935
1195
- msgid "Activate"
1196
  msgstr ""
1197
 
1198
- #: ../classes/settings.php:949
1199
- msgid "Download & Install"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1200
  msgstr ""
1201
 
1202
- #: ../classes/settings.php:954
1203
- msgid "Get this add-on"
1204
  msgstr ""
1205
 
1206
- #: ../classes/storage_model.php:237
1207
- msgid "settings succesfully restored."
1208
- msgstr "تمت إستعادة الإعدادات بنجاح."
1209
 
1210
- #: ../classes/storage_model.php:253
1211
- msgid "No columns settings available."
1212
- msgstr "لا توجد إعدادات أعمدة متوفرة."
1213
 
1214
- #: ../classes/storage_model.php:274
1215
- #, php-format
1216
- msgid "You are trying to store the same settings for %s."
1217
- msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
1218
 
1219
- #: ../classes/storage_model.php:278
1220
- #, php-format
1221
- msgid "Settings for %s updated successfully."
 
 
 
1222
  msgstr ""
1223
 
1224
- #: ../classes/storage_model.php:809
1225
- msgid "View"
1226
- msgstr "عرض"
1227
 
1228
- #: ../classes/storage_model/comment.php:13
1229
- msgid "Comments"
1230
- msgstr "تعليقات"
1231
 
1232
- #: ../classes/storage_model/comment.php:14
1233
- msgid "Comment"
1234
  msgstr ""
1235
 
1236
- #: ../classes/storage_model/link.php:13
1237
- msgid "Links"
1238
- msgstr "وصلات"
1239
 
1240
- #: ../classes/storage_model/link.php:14
1241
- msgid "Link"
1242
  msgstr ""
1243
 
1244
- #: ../classes/storage_model/media.php:14
1245
- msgid "Media"
1246
  msgstr ""
1247
 
1248
- #: ../classes/storage_model/user.php:13
1249
- msgid "Users"
1250
- msgstr "مستخدمون"
1251
 
1252
- #: ../classes/upgrade.php:62
1253
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1254
  msgstr ""
1255
 
1256
- #: ../classes/upgrade.php:95
1257
- msgid "Upgrade"
1258
- msgstr "تحديث"
1259
 
1260
- #: ../classes/upgrade.php:136
1261
- msgid "requires a database upgrade"
1262
- msgstr "يتطلب ترقية قاعدة البيانات"
1263
 
1264
- #: ../classes/upgrade.php:139
1265
- msgid "why?"
1266
- msgstr "لماذا؟"
1267
 
1268
- #: ../classes/upgrade.php:140
1269
- msgid "Please"
1270
- msgstr "فضلا"
1271
 
1272
- #: ../classes/upgrade.php:141
1273
- msgid "backup your database"
1274
- msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
1275
 
1276
- #: ../classes/upgrade.php:142
1277
- msgid "then click"
1278
- msgstr "ثم انقر"
1279
 
1280
- #: ../classes/upgrade.php:351
1281
- msgid "Migrating Column Settings"
1282
- msgstr "نقل إعدادات الأعمدة"
1283
 
1284
- #: ../classes/upgrade.php:387
1285
- msgid "No Upgrade Required"
1286
- msgstr "لا تحديث مطلوب"
1287
 
1288
- #: ../classes/upgrade.php:388
1289
- msgid "Return to welcome screen."
1290
- msgstr "رجوع إلى صفحة الترحيب."
1291
 
1292
- #: ../classes/upgrade.php:406
1293
- msgid "Upgrade Complete!"
1294
- msgstr "اكتمل التحديث"
1295
 
1296
- #: ../classes/upgrade.php:406
1297
- msgid "Return to settings."
1298
- msgstr "العودة للإعدادات."
1299
 
1300
- #: ../classes/upgrade.php:407
1301
- msgid "Error"
1302
- msgstr "خطأ"
1303
 
1304
- #: ../classes/upgrade.php:408
1305
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1306
- msgstr "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
1307
 
1308
- #: ../codepress-admin-columns.php:444
1309
- msgid "Edit columns"
1310
- msgstr "تحرير الأعمدة"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Hassan, 2013
5
  # Hassan, 2013
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
10
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Arabic (http://www.transifex.com/codepress/admin-columns/language/ar/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ar\n"
17
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;"
20
+ "__ngettext_noop:1,2\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
+ "POT-Creation-Date: \n"
23
+ "X-Generator: Poedit 1.8.5\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
26
+
27
+ #: ../codepress-admin-columns.php:451
28
+ msgid "Edit columns"
29
+ msgstr "تحرير الأعمدة"
 
 
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr ""
50
 
51
+ #: ../classes/column.php:624
52
  msgid "Thumbnail"
53
  msgstr "صورة مصغرة"
54
 
55
+ #: ../classes/column.php:625
56
  msgid "Medium"
57
  msgstr "وسط"
58
 
59
+ #: ../classes/column.php:626
60
  msgid "Large"
61
  msgstr "كبير"
62
 
63
+ #: ../classes/column.php:627
64
  msgid "Full"
65
  msgstr "كامل"
66
 
67
+ #: ../classes/column.php:1059
68
+ msgid "Exact match"
69
+ msgstr ""
70
+
71
+ #: ../classes/column.php:1060
72
+ msgid "Lesser than"
73
+ msgstr ""
74
+
75
+ #: ../classes/column.php:1061
76
+ msgid "Greater than"
77
+ msgstr ""
78
+
79
+ #: ../classes/column.php:1062
80
+ msgid "Between"
81
+ msgstr ""
82
+
83
+ #: ../classes/column.php:1089
84
  msgid "Date Format"
85
  msgstr "تنسيق التاريخ"
86
 
87
+ #: ../classes/column.php:1090
88
  msgid "This will determine how the date will be displayed."
89
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
90
 
91
+ #: ../classes/column.php:1096
92
  msgid "Example:"
93
  msgstr "مثال:"
94
 
95
+ #: ../classes/column.php:1098
96
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
97
+ msgstr ""
 
98
 
99
+ #: ../classes/column.php:1099
100
  msgid "Documentation on date and time formatting."
101
  msgstr "توثيق حول تنسيق التاريخ والوقت."
102
 
103
+ #: ../classes/column.php:1113
104
  msgid "Excerpt length"
105
  msgstr "طول المقتطف"
106
 
107
+ #: ../classes/column.php:1114
108
  msgid "Number of words"
109
  msgstr "عدد الكلمات"
110
 
111
+ #: ../classes/column.php:1132
112
  msgid "Preview size"
113
  msgstr "حجم المعاينة"
114
 
115
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
116
  msgid "Custom"
117
  msgstr "مخصوص"
118
 
119
+ #: ../classes/column.php1152, ../classes/column.php:1328
120
  msgid "width"
121
  msgstr "عرض"
122
 
123
+ #: ../classes/column.php:1155
124
  msgid "height"
125
  msgstr "إرتفاع"
126
 
127
+ #: ../classes/column.php:1167
128
  msgid "Before"
129
  msgstr "قبل"
130
 
131
+ #: ../classes/column.php:1167
132
  msgid "This text will appear before the custom field value."
133
  msgstr "هذا النص سيظهر قبل الحقل المخصوص."
134
 
135
+ #: ../classes/column.php:1168
136
  msgid "After"
137
  msgstr "بعد"
138
 
139
+ #: ../classes/column.php:1168
140
  msgid "This text will appear after the custom field value."
141
  msgstr "هذا النص سيظهر بعد الحقل المخصوص."
142
 
143
+ #: ../classes/column.php:1177
144
  msgid "Display Name"
145
  msgstr "اسم العرض"
146
 
147
+ #: ../classes/column.php1178, ../classes/settings.php:733
148
  msgid "First Name"
149
  msgstr "الاسم الأول"
150
 
151
+ #: ../classes/column.php:1179
152
  msgid "Last Name"
153
  msgstr "الاسم الأخير"
154
 
155
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
156
  msgid "Nickname"
157
  msgstr "الاسم المستعار"
158
 
159
+ #: ../classes/column.php:1181
160
  msgid "User Login"
161
  msgstr "اسم الدخول"
162
 
163
+ #: ../classes/column.php:1182
164
  msgid "User Email"
165
  msgstr "بريد المستخدم"
166
 
167
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
168
  msgid "User ID"
169
  msgstr "رقم المستخدم"
170
 
171
+ #: ../classes/column.php:1184
172
  msgid "First and Last Name"
173
  msgstr "الاسم الأول والأخير"
174
 
175
+ #: ../classes/column.php:1187
176
  msgid "Display format"
177
  msgstr ""
178
 
179
+ #: ../classes/column.php:1187
180
  msgid "This is the format of the author name."
181
  msgstr "هذا هو تنسيق اسم الكاتب."
182
 
183
+ #: ../classes/column.php:1350
184
  msgid "Edit"
185
  msgstr "تحرير"
186
 
187
+ #: ../classes/column.php1352, ../classes/column.php:1444
188
  msgid "Clone"
189
  msgstr ""
190
 
191
+ #: ../classes/column.php:1354
192
  msgid "Remove"
193
  msgstr "إزالة"
194
 
195
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
196
  msgid "Type"
197
  msgstr "نوع"
198
 
199
+ #: ../classes/column.php:1372
200
  msgid "Choose a column type."
201
  msgstr "اختر نوع عمود"
202
 
203
+ #: ../classes/column.php:1372
204
  msgid "Name"
205
  msgstr ""
206
 
207
+ #: ../classes/column.php:1382
208
  msgid "Label"
209
  msgstr "العنوان"
210
 
211
+ #: ../classes/column.php:1382
212
  msgid "This is the name which will appear as the column header."
213
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
214
 
215
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
216
  msgid "Width"
217
  msgstr "عرض"
218
 
219
+ #: ../classes/column.php:1391
220
  msgid "default"
221
  msgstr "إفتراضي"
222
 
223
+ #: ../classes/column.php:1392
224
  msgid "auto"
225
  msgstr ""
226
 
227
+ #: ../classes/column.php:1466
228
+ msgid "Property To Display"
229
  msgstr ""
230
 
231
+ #: ../classes/column.php:1472
232
+ msgid "Post property to display for related post(s)."
233
  msgstr ""
234
 
235
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
236
+ msgid "Link To"
 
237
  msgstr ""
238
 
239
+ #: ../classes/column.php:1489
240
+ msgid "Edit Post Author"
241
  msgstr ""
242
 
243
+ #: ../classes/column.php:1490
244
+ msgid "View Public Post Author Page"
245
  msgstr ""
246
 
247
+ #: ../classes/column.php:1492
248
+ msgid "Page the posts should link to."
249
+ msgstr ""
250
 
251
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
252
+ msgid "Admin Columns"
253
+ msgstr "Admin Columns"
254
+
255
+ #: ../classes/review_notice.php:58
256
+ msgid "Admin Columns Pro"
257
  msgstr ""
258
 
259
+ #: ../classes/review_notice.php:68
260
+ msgid "click here"
261
  msgstr ""
262
 
263
+ #: ../classes/review_notice.php:72
264
+ msgid "Leave a review!"
265
  msgstr ""
266
 
267
+ #: ../classes/review_notice.php:73
268
+ msgid "Permanently hide notice"
269
  msgstr ""
270
 
271
+ #: ../classes/review_notice.php:80
272
+ 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."
273
+ msgstr ""
274
 
275
+ #: ../classes/review_notice.php:82
276
+ msgid "documentation page"
277
+ msgstr ""
278
 
279
+ #: ../classes/review_notice.php:86
280
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
281
+ msgstr ""
282
 
283
+ #: ../classes/review_notice.php:87
284
+ msgid "our forums"
285
+ msgstr ""
286
 
287
+ #: ../classes/review_notice.php:91
288
+ msgid "You can also find help on the %s, and %s."
289
+ msgstr ""
290
 
291
+ #: ../classes/review_notice.php:92
292
+ msgid "Admin Columns forums on WordPress.org"
293
+ msgstr ""
294
 
295
+ #: ../classes/review_notice.php:93
296
+ msgid "find answers to some frequently asked questions"
297
  msgstr ""
298
 
299
+ #: ../classes/settings.php:113
300
+ msgid "Add-on successfully activated."
301
+ msgstr ""
302
 
303
+ #: ../classes/settings.php:116
304
+ msgid "Add-on successfully deactivated."
305
+ msgstr ""
306
 
307
+ #: ../classes/settings.php:170
308
+ msgid "Admin Columns Settings"
309
+ msgstr "إعدادات Admin Columns"
310
 
311
+ #: ../classes/settings.php:228
312
+ msgid "%s column is already present and can not be duplicated."
313
+ msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
 
314
 
315
+ #: ../classes/settings.php:284
316
+ msgid "Default settings succesfully restored."
317
+ msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
318
 
319
+ #: ../classes/settings.php:301
320
+ msgid "Overview"
321
+ msgstr "نظرة عامة"
322
 
323
+ #: ../classes/settings.php:304
324
+ msgid ""
325
+ "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 "
326
+ "reorder them."
327
+ msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير تسمية الأعمدة وإعادة ترتيبها."
328
 
329
+ #: ../classes/settings.php:307
330
+ msgid "Basics"
331
+ msgstr "مبادئ"
332
 
333
+ #: ../classes/settings.php:309
334
+ msgid "Change order"
335
+ msgstr "تغيير الترتيب"
336
+
337
+ #: ../classes/settings.php:310
338
+ msgid "By dragging the columns you can change the order which they will appear in."
339
+ msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
340
+
341
+ #: ../classes/settings.php:311
342
+ msgid "Change label"
343
+ msgstr "تغيير العنوان"
344
+
345
+ #: ../classes/settings.php:312
346
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
347
+ msgstr "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
348
+
349
+ #: ../classes/settings.php:313
350
+ msgid "Change column width"
351
+ msgstr "تغيير عرض العمود"
352
+
353
+ #: ../classes/settings.php:314
354
+ 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."
355
+ msgstr "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب يمكنك تعيين عرض الأعمدة بالنسب المئوية."
356
 
357
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
358
  msgid "Custom Field"
359
  msgstr "حقل مخصوص"
360
 
361
+ #: ../classes/settings.php:320
362
+ msgid "'Custom Field' column"
363
+ msgstr "عمود 'حقل مخصوص'"
364
+
365
+ #: ../classes/settings.php:321
366
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
367
+ msgstr "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 أنواع يمكنك تعيينها."
368
+
369
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
370
  msgid "Default"
371
  msgstr "إفتراضي"
372
 
373
+ #: ../classes/settings.php:323
374
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
375
+ msgstr "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم بـ '،' فاصلة."
376
 
377
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
378
+ msgid "Image"
379
+ msgstr "صورة"
380
 
381
+ #: ../classes/settings.php:324
382
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
383
+ msgstr "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
384
 
385
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
386
  msgid "Excerpt"
387
  msgstr "مقتطف"
388
 
389
+ #: ../classes/settings.php:325
390
+ msgid "Value: This will show the first 20 words of the Post content."
391
+ msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
 
 
 
 
392
 
393
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
394
  msgid "Multiple Values"
395
  msgstr "قيم متعددة"
396
 
397
+ #: ../classes/settings.php:326
398
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
399
+ msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
400
+
401
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
402
  msgid "Numeric"
403
  msgstr "رقمي"
404
 
405
+ #: ../classes/settings.php:327
406
+ 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."
407
+ msgstr "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
 
 
 
 
408
 
409
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
410
+ msgid "Date"
411
+ msgstr "تاريخ"
412
 
413
+ #: ../classes/settings.php:328
414
+ 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."
415
+ msgstr "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a href='%s'>الإعدادات العامة</a>."
416
 
417
+ #: ../classes/settings.php:329
418
+ msgid "Post Titles"
419
+ msgstr "عناوين تدوينات"
420
 
421
+ #: ../classes/settings.php:329
422
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
423
+ msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
 
424
 
425
+ #: ../classes/settings.php:330
426
+ msgid "Usernames"
427
+ msgstr "أسماء مستخدمين"
428
 
429
+ #: ../classes/settings.php:330
430
+ msgid "Value: can be one or more User ID's (seperated by ',')."
431
+ msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
432
 
433
+ #: ../classes/settings.php:331
434
+ msgid "Checkmark"
435
+ msgstr "علامة اختيار"
436
 
437
+ #: ../classes/settings.php:331
438
+ msgid "Value: should be a 1 (one) or 0 (zero)."
439
+ msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
440
 
441
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
442
+ msgid "Color"
443
+ msgstr "لون"
444
 
445
+ #: ../classes/settings.php:332
446
+ msgid "Value: hex value color, such as #808080."
447
+ msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
448
 
449
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
450
+ msgid "Counter"
451
+ msgstr "عداد"
452
 
453
+ #: ../classes/settings.php:333
454
+ 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."
455
+ msgstr "القيمة: يمكن أن يكون إما سلسلة أو مجموعة. هذا سيعرض عدد مرات استخدام المفتاح من قبل العنصر."
456
 
457
+ #: ../classes/settings.php:422
458
+ msgid "Welcome to Admin Columns"
459
+ msgstr "مرحبا في Admin Columns"
460
 
461
+ #: ../classes/settings.php:425
462
+ msgid "Thank you for updating to the latest version!"
463
+ msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
464
 
465
+ #: ../classes/settings.php:426
466
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
467
+ msgstr "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
468
 
469
+ #: ../classes/settings.php:431
470
+ msgid "What’s New"
471
+ msgstr "ما الجديد"
472
 
473
+ #: ../classes/settings.php:432
474
+ msgid "Changelog"
475
+ msgstr "سجل التغييرات"
476
 
477
+ #: ../classes/settings.php:437
478
+ msgid "Important"
479
+ msgstr "مهم"
 
 
 
 
 
 
 
 
480
 
481
+ #: ../classes/settings.php:439
482
+ msgid "Database Changes"
483
+ msgstr "تغييرات قاعدة البيانات"
484
 
485
+ #: ../classes/settings.php:440
486
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
487
+ msgstr "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك الرجوع إلى إصدار 1x دون أية مشاكل."
488
 
489
+ #: ../classes/settings.php:443
490
+ msgid "Make sure you backup your database and then click"
491
+ msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
492
 
493
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
494
+ msgid "Upgrade Database"
495
+ msgstr "تحديث قاعدة البيانات"
496
 
497
+ #: ../classes/settings.php:446
498
+ msgid "Potential Issues"
499
+ msgstr "مشاكل محتملة"
500
 
501
+ #: ../classes/settings.php:447
502
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
503
+ msgstr "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
504
 
505
+ #: ../classes/settings.php:447
506
+ msgid "Migrating from v1 to v2"
507
+ msgstr "الانتقال من النسخة 1 إلى النسخة 2"
508
 
509
+ #: ../classes/settings.php:447
510
+ msgid "guide to view the full list of changes."
511
+ msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
512
 
513
+ #: ../classes/settings.php:447
514
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
515
+ msgstr ""
516
 
517
+ #: ../classes/settings.php:450
518
+ msgid "Important!"
519
+ msgstr "مهم!"
520
 
521
+ #: ../classes/settings.php:450
522
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
523
+ msgstr "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع لآخر"
524
 
525
+ #: ../classes/settings.php:450
526
+ msgid "version 1"
527
+ msgstr "النسخة 1"
528
 
529
+ #: ../classes/settings.php:450
530
+ msgid "of this plugin."
531
+ msgstr "من هذه الإضافة"
532
 
533
+ #: ../classes/settings.php:456
534
+ msgid "Changelog for"
535
+ msgstr "سجل التغييرات لـ"
536
 
537
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
538
+ msgid "Learn more"
539
+ msgstr "تعلم المزيد"
540
 
541
+ #: ../classes/settings.php:481
542
+ msgid "Start using Admin Columns"
543
+ msgstr "البدء باستخدام Admin Columns"
544
 
545
+ #: ../classes/settings.php:500
546
+ msgid "General Settings"
547
+ msgstr "إعدادات عامة"
548
 
549
+ #: ../classes/settings.php:501
550
+ msgid "Customize your Admin Columns settings."
551
+ msgstr "قم بتخصيص إعدادات Admin Columns."
552
 
553
+ #: ../classes/settings.php:512
554
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
555
  msgstr ""
556
 
557
+ #: ../classes/settings.php:559
558
+ msgid "Restore Settings"
559
+ msgstr "استرجاع الإعدادات"
 
 
 
 
560
 
561
+ #: ../classes/settings.php:560
562
+ msgid "This will delete all column settings and restore the default settings."
563
+ msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
564
 
565
+ #: ../classes/settings.php:566
566
+ msgid "Restore default settings"
567
+ msgstr "استرجاع الإعدادات الإفتراضية"
568
 
569
+ #: ../classes/settings.php:566
570
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
571
+ msgstr ""
572
 
573
+ #: ../classes/settings.php:582
574
+ msgid "Posttypes"
575
+ msgstr ""
576
 
577
+ #: ../classes/settings.php:583
578
+ msgid "Others"
579
+ msgstr ""
580
 
581
+ #: ../classes/settings.php:584
582
+ msgid "Taxonomies"
583
+ msgstr ""
584
 
585
+ #: ../classes/settings.php:600
586
+ msgid "Settings"
587
+ msgstr "إعدادات"
588
 
589
+ #: ../classes/settings.php:601
590
+ msgid "Add-ons"
591
  msgstr ""
592
 
593
+ #: ../classes/settings.php:669
594
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
595
  msgstr ""
596
 
597
+ #: ../classes/settings.php:679
598
+ msgid "Store settings"
599
+ msgstr "حفظ الإعدادات"
600
+
601
+ #: ../classes/settings.php:687
602
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
603
  msgstr ""
604
 
605
+ #: ../classes/settings.php:688
606
+ msgid "Restore"
607
+ msgstr "استرجاع"
 
 
 
 
 
 
608
 
609
+ #: ../classes/settings.php:688
610
+ msgid "columns"
611
+ msgstr "أعمدة"
 
 
 
 
 
 
612
 
613
+ #: ../classes/settings.php:707
614
+ msgid "Get Admin Columns Pro"
615
  msgstr ""
616
 
617
+ #: ../classes/settings.php:711
618
+ msgid "Add Sorting"
619
+ msgstr "أضف ترتيب"
620
 
621
+ #: ../classes/settings.php:712
622
+ msgid "Add Filtering"
623
+ msgstr "أضف تصفية"
624
 
625
+ #: ../classes/settings.php:713
626
+ msgid "Add Import/Export"
627
+ msgstr "أضف استيراد/تصدير"
628
 
629
+ #: ../classes/settings.php:714
630
+ msgid "Add Direct Editing"
631
  msgstr ""
632
 
633
+ #: ../classes/settings.php:717
634
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
635
+ msgstr ""
636
 
637
+ #: ../classes/settings.php:730
638
+ msgid "Subscribe to receive news &amp; updates below."
639
+ msgstr ""
640
 
641
+ #: ../classes/settings.php:737
642
+ msgid "Your Email"
643
+ msgstr ""
644
 
645
+ #: ../classes/settings.php:748
646
+ msgid "Are you happy with Admin Columns?"
647
+ msgstr ""
648
 
649
+ #: ../classes/settings.php:756
650
+ msgid "What's wrong? Need help? Let us know!"
651
  msgstr ""
652
 
653
+ #: ../classes/settings.php:757
654
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
655
  msgstr ""
656
 
657
+ #: ../classes/settings.php:765
658
+ msgid "Docs"
659
  msgstr ""
660
 
661
+ #: ../classes/settings.php:770
662
+ msgid "Forums"
663
  msgstr ""
664
 
665
+ #: ../classes/settings.php:779
666
+ msgid "Woohoo! We're glad to hear that!"
667
+ msgstr ""
668
 
669
+ #: ../classes/settings.php:780
670
+ 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!"
671
+ msgstr ""
672
 
673
+ #: ../classes/settings.php:784
674
+ msgid "Rate"
675
  msgstr ""
676
 
677
+ #: ../classes/settings.php:795
678
+ msgid "Tweet"
679
+ msgstr ""
680
 
681
+ #: ../classes/settings.php:805
682
+ msgid "Buy Pro"
683
+ msgstr ""
684
 
685
+ #: ../classes/settings.php:817
686
+ msgid "Support"
687
+ msgstr "دعم"
688
 
689
+ #: ../classes/settings.php:820
690
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
691
+ msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
692
 
693
+ #: ../classes/settings.php:823
694
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
695
+ msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
696
 
697
+ #: ../classes/settings.php:852
698
+ msgid "Drag and drop to reorder"
699
+ msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
700
 
701
+ #: ../classes/settings.php:855
702
+ msgid "Add Column"
703
+ msgstr "أضف عمود"
704
 
705
+ #: ../classes/settings.php:936
706
+ msgid "Active"
 
 
 
707
  msgstr ""
708
 
709
+ #: ../classes/settings.php:937
710
+ msgid "Deactivate"
711
  msgstr ""
712
 
713
+ #: ../classes/settings.php:944
714
+ msgid "Installed"
715
  msgstr ""
716
 
717
+ #: ../classes/settings.php:945
718
+ msgid "Activate"
719
  msgstr ""
720
 
721
+ #: ../classes/settings.php:959
722
+ msgid "Download & Install"
 
723
  msgstr ""
724
 
725
+ #: ../classes/settings.php:964
726
+ msgid "Get this add-on"
727
  msgstr ""
728
 
729
+ #: ../classes/storage_model.php:262
730
+ msgid "settings succesfully restored."
731
+ msgstr "تمت إستعادة الإعدادات بنجاح."
 
732
 
733
+ #: ../classes/storage_model.php:278
734
+ msgid "No columns settings available."
735
+ msgstr "لا توجد إعدادات أعمدة متوفرة."
736
 
737
+ #: ../classes/storage_model.php:299
738
+ msgid "You are trying to store the same settings for %s."
739
+ msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
 
740
 
741
+ #: ../classes/storage_model.php:303
742
+ msgid "Settings for %s updated successfully."
743
  msgstr ""
744
 
745
+ #: ../classes/storage_model.php:643
746
+ msgid "Columns by Plugins"
747
  msgstr ""
748
 
749
+ #: ../classes/storage_model.php:862
750
+ msgid "View"
751
+ msgstr "عرض"
752
 
753
+ #: ../classes/upgrade.php:62
754
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
755
  msgstr ""
756
 
757
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
758
+ msgid "Upgrade"
759
+ msgstr "تحديث"
 
 
 
 
 
 
 
 
 
760
 
761
+ #: ../classes/upgrade.php:136
762
+ msgid "requires a database upgrade"
763
+ msgstr "يتطلب ترقية قاعدة البيانات"
764
 
765
+ #: ../classes/upgrade.php:139
766
+ msgid "why?"
767
+ msgstr "لماذا؟"
 
 
768
 
769
+ #: ../classes/upgrade.php:140
770
+ msgid "Please"
771
+ msgstr "فضلا"
772
 
773
+ #: ../classes/upgrade.php:141
774
+ msgid "backup your database"
775
+ msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
776
 
777
+ #: ../classes/upgrade.php:142
778
+ msgid "then click"
779
+ msgstr "ثم انقر"
780
 
781
+ #: ../classes/upgrade.php:351
782
+ msgid "Migrating Column Settings"
783
+ msgstr "نقل إعدادات الأعمدة"
784
 
785
+ #: ../classes/upgrade.php:387
786
+ msgid "No Upgrade Required"
787
+ msgstr "لا تحديث مطلوب"
788
 
789
+ #: ../classes/upgrade.php:388
790
+ msgid "Return to welcome screen."
791
+ msgstr "رجوع إلى صفحة الترحيب."
792
 
793
+ #: ../classes/upgrade.php:406
794
+ msgid "Upgrade Complete!"
795
+ msgstr "اكتمل التحديث"
796
 
797
+ #: ../classes/upgrade.php:406
798
+ msgid "Return to settings."
799
+ msgstr "العودة للإعدادات."
800
 
801
+ #: ../classes/upgrade.php:407
802
+ msgid "Error"
803
+ msgstr "خطأ"
804
 
805
+ #: ../classes/upgrade.php:408
806
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
807
+ msgstr "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
808
 
809
+ #: ../classes/column/acf-placeholder.php:19
810
+ msgid "ACF Field"
811
+ msgstr ""
812
 
813
+ #: ../classes/column/acf-placeholder.php:35
814
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
815
+ msgstr ""
816
 
817
+ #: ../classes/column/acf-placeholder.php:38
818
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
819
+ msgstr ""
820
 
821
+ #: ../classes/column/acf-placeholder.php:44
822
+ msgid "Find out more"
823
+ msgstr ""
824
 
825
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
826
+ msgid "Actions"
827
+ msgstr "تطبيقات"
 
828
 
829
+ #: ../classes/column/actions.php:96
830
+ msgid "Use icons?"
831
+ msgstr ""
832
 
833
+ #: ../classes/column/actions.php:96
834
+ msgid "Use icons instead of text for displaying the actions."
835
+ msgstr ""
836
 
837
+ #: ../classes/column/custom-field.php:96
838
+ msgid "Checkmark (true/false)"
839
+ msgstr "علامة إختيار (صح/خطأ)"
840
 
841
+ #: ../classes/column/custom-field.php:102
842
+ msgid "Media Library"
843
+ msgstr "مكتبة الوسائط"
844
 
845
+ #: ../classes/column/custom-field.php:105
846
+ msgid "Post Title (Post ID's)"
847
+ msgstr "عنوان تدوينة (أرقام تدوينات)"
848
 
849
+ #: ../classes/column/custom-field.php:106
850
+ msgid "Username (User ID's)"
851
+ msgstr "اسم مستخدم (أرقام مستخدمين)"
852
 
853
+ #: ../classes/column/custom-field.php:107
854
+ msgid "Term Name (Term ID's)"
855
+ msgstr ""
856
 
857
+ #: ../classes/column/custom-field.php:391
858
+ msgid "Select your custom field."
859
+ msgstr "اختر حقلك المخصوص"
860
 
861
+ #: ../classes/column/custom-field.php:401
862
+ msgid "No custom fields available."
863
+ msgstr "لا توجد حقول مخصوصة متوفرة."
864
 
865
+ #: ../classes/column/custom-field.php:401
866
+ msgid "Please create a %s item first."
867
+ msgstr ""
868
 
869
+ #: ../classes/column/custom-field.php:408
870
+ msgid "Field Type"
871
+ msgstr "نوع الحقل"
872
 
873
+ #: ../classes/column/custom-field.php:408
874
+ msgid "This will determine how the value will be displayed."
875
+ msgstr "هذا سيحدد كيف سيتم عرض القيمة."
876
 
877
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
878
+ msgid "Taxonomy"
879
+ msgstr "التصنيف"
880
 
881
+ #: ../classes/column/used-by-menu.php:20
882
+ msgid "Used by Menu"
883
+ msgstr ""
884
 
885
+ #: ../classes/column/used-by-menu.php:133
886
+ msgid "Link to menu"
887
+ msgstr ""
888
 
889
+ #: ../classes/column/used-by-menu.php:133
890
+ msgid "This will make the title link to the menu."
891
+ msgstr ""
892
 
893
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
894
+ msgid "ID"
895
+ msgstr "رقم"
896
 
897
+ #: ../classes/column/comment/agent.php:19
898
+ msgid "Agent"
899
+ msgstr "عميل"
900
 
901
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
902
+ msgid "Approved"
903
+ msgstr "موافق عليه"
904
 
905
+ #: ../classes/column/comment/author-avatar.php:19
906
+ msgid "Avatar"
907
+ msgstr "صورة"
908
 
909
+ #: ../classes/column/comment/author-email.php:19
910
+ msgid "Author email"
911
+ msgstr "بريد الكاتب"
912
 
913
+ #: ../classes/column/comment/author-ip.php:19
914
+ msgid "Author IP"
915
+ msgstr "عنوان آي بي الكاتب"
916
 
917
+ #: ../classes/column/comment/author-name.php:12
918
+ msgid "Author name"
919
+ msgstr ""
 
920
 
921
+ #: ../classes/column/comment/author-url.php:19
922
+ msgid "Author url"
923
+ msgstr "عنوان موقع الكاتب"
924
 
925
+ #: ../classes/column/comment/author.php:19
926
+ msgid "Author"
927
+ msgstr "الكاتب"
928
 
929
+ #: ../classes/column/comment/date-gmt.php:19
930
+ msgid "Date GMT"
931
+ msgstr "تاريخ GMT"
932
 
933
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
934
+ msgid "Content"
935
+ msgstr ""
936
 
937
+ #: ../classes/column/comment/post.php:19
938
+ msgid "Post"
939
+ msgstr ""
940
 
941
+ #: ../classes/column/comment/reply-to.php:19
942
+ msgid "In Reply To"
943
+ msgstr "ردا على"
944
 
945
+ #: ../classes/column/comment/user.php:11
946
+ msgid "User"
947
+ msgstr ""
948
 
949
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
950
+ msgid "Word count"
951
+ msgstr "عدد الكلمات"
952
 
953
+ #: ../classes/column/media/alternate-text.php:19
954
+ msgid "Alt"
955
+ msgstr "بديل"
956
 
957
+ #: ../classes/column/media/attached-to.php:19
958
+ msgid "Attached to post"
959
  msgstr ""
960
 
961
+ #: ../classes/column/media/available-sizes.php:20
962
+ msgid "Available Sizes"
963
+ msgstr "الأحجام المتوفرة"
 
 
 
 
 
 
 
 
964
 
965
+ #: ../classes/column/media/available-sizes.php:40
966
+ msgid "full size"
967
+ msgstr "حجم كامل"
968
 
969
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
970
+ msgid "Caption"
971
+ msgstr "شرح"
972
 
973
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
974
+ msgid "Description"
975
+ msgstr "وصف"
976
 
977
+ #: ../classes/column/media/dimensions.php:19
978
+ msgid "Dimensions"
979
+ msgstr "أبعاد"
980
 
981
+ #: ../classes/column/media/exif-data.php:19
982
+ msgid "EXIF data"
983
+ msgstr "بيانات EXIF"
984
 
985
+ #: ../classes/column/media/exif-data.php:38
986
+ msgid "Aperture"
987
+ msgstr "فتحة"
988
 
989
+ #: ../classes/column/media/exif-data.php:39
990
+ msgid "Credit"
991
+ msgstr "شرف"
992
 
993
+ #: ../classes/column/media/exif-data.php:40
994
+ msgid "Camera"
995
+ msgstr "كاميرا"
 
996
 
997
+ #: ../classes/column/media/exif-data.php:42
998
+ msgid "Timestamp"
999
+ msgstr "طابع زمني"
1000
 
1001
+ #: ../classes/column/media/exif-data.php:43
1002
+ msgid "Copyright EXIF"
1003
+ msgstr "بيانات EXIF حق النشر"
1004
 
1005
+ #: ../classes/column/media/exif-data.php:44
1006
+ msgid "Focal Length"
1007
+ msgstr "بعد بؤري"
 
1008
 
1009
+ #: ../classes/column/media/exif-data.php:45
1010
+ msgid "ISO"
1011
+ msgstr "ISO"
1012
 
1013
+ #: ../classes/column/media/exif-data.php:46
1014
+ msgid "Shutter Speed"
1015
+ msgstr "سرعة مصراع"
1016
 
1017
+ #: ../classes/column/media/exif-data.php:47
1018
+ msgid "Title"
1019
+ msgstr "عنوان"
1020
 
1021
+ #: ../classes/column/media/file-name.php:19
1022
+ msgid "File name"
1023
+ msgstr "اسم ملف"
1024
 
1025
+ #: ../classes/column/media/file-size.php:19
1026
+ msgid "File size"
1027
+ msgstr "حجم ملف"
1028
 
1029
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1030
+ msgid "Full path"
1031
+ msgstr "مسار كامل"
1032
 
1033
+ #: ../classes/column/media/full-path.php:83
1034
+ msgid "Path scope"
1035
  msgstr ""
1036
 
1037
+ #: ../classes/column/media/full-path.php:84
1038
+ msgid "Part of the file path to display"
 
1039
  msgstr ""
1040
 
1041
+ #: ../classes/column/media/full-path.php:97
1042
+ msgid "Relative to domain"
1043
  msgstr ""
1044
 
1045
+ #: ../classes/column/media/full-path.php:102
1046
+ msgid "Relative to main uploads folder "
1047
  msgstr ""
1048
 
1049
+ #: ../classes/column/media/height.php:19
1050
+ msgid "Height"
1051
+ msgstr "إرتفاع"
1052
 
1053
+ #: ../classes/column/media/mime-type.php:19
1054
+ msgid "Mime type"
1055
+ msgstr "نوع Mime"
1056
 
1057
+ #: ../classes/column/post/attachment-count.php:19
1058
+ msgid "No. of Attachments"
1059
+ msgstr "عدد المرفقات"
1060
 
1061
+ #: ../classes/column/post/attachment.php:19
1062
+ msgid "Attachments"
1063
  msgstr ""
1064
 
1065
+ #: ../classes/column/post/author-name.php:20
1066
+ msgid "Display Author As"
1067
+ msgstr "عرض الكاتب كـ"
1068
 
1069
+ #: ../classes/column/post/author-name.php:100
1070
+ msgid "View Public Author Page"
1071
  msgstr ""
1072
 
1073
+ #: ../classes/column/post/author-name.php:102
1074
+ msgid "Page the author name should link to."
1075
  msgstr ""
1076
 
1077
+ #: ../classes/column/post/before-moretag.php:19
1078
+ msgid "Before More Tag"
1079
+ msgstr "قبل وسم المزيد"
1080
 
1081
+ #: ../classes/column/post/comment-count.php:20
1082
+ msgid "Comment count"
1083
+ msgstr "عدد التعليقات"
1084
 
1085
+ #: ../classes/column/post/comment-count.php:34
1086
+ msgid "Total"
1087
+ msgstr "المجموع"
1088
 
1089
+ #: ../classes/column/post/comment-count.php:36
1090
+ msgid "Pending"
1091
+ msgstr "بالانتظار"
 
1092
 
1093
+ #: ../classes/column/post/comment-count.php:37
1094
+ msgid "Spam"
1095
+ msgstr "مزعج"
1096
 
1097
+ #: ../classes/column/post/comment-count.php:38
1098
+ msgid "Trash"
1099
+ msgstr "المهملات"
1100
 
1101
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1102
+ msgid "Comment status"
1103
+ msgstr "حالة التعليق"
1104
 
1105
+ #: ../classes/column/post/comment-count.php:99
1106
+ msgid "Select which comment status you like to display."
1107
+ msgstr "اختر حالة التعليق الذي تريد عرضه."
1108
 
1109
+ #: ../classes/column/post/depth.php:19
1110
+ msgid "Depth"
1111
  msgstr ""
1112
 
1113
+ #: ../classes/column/post/estimated-reading-time.php:19
1114
+ msgid "Estimated Reading Time"
1115
  msgstr ""
1116
 
1117
+ #: ../classes/column/post/estimated-reading-time.php:66
1118
+ msgid "second"
1119
+ msgid_plural "seconds"
1120
+ msgstr[0] ""
1121
+ msgstr[1] ""
1122
+ msgstr[2] ""
1123
+ msgstr[3] ""
1124
+ msgstr[4] ""
1125
+ msgstr[5] ""
1126
+
1127
+ #: ../classes/column/post/estimated-reading-time.php:69
1128
+ msgid "minute"
1129
+ msgid_plural "minutes"
1130
+ msgstr[0] ""
1131
+ msgstr[1] ""
1132
+ msgstr[2] ""
1133
+ msgstr[3] ""
1134
+ msgstr[4] ""
1135
+ msgstr[5] ""
1136
+
1137
+ #: ../classes/column/post/estimated-reading-time.php:107
1138
+ msgid "Words per minute"
1139
  msgstr ""
1140
 
1141
+ #: ../classes/column/post/estimated-reading-time.php:108
1142
+ msgid "Estimated reading time in words per minute"
1143
  msgstr ""
1144
 
1145
+ #: ../classes/column/post/featured-image.php:19
1146
+ msgid "Featured Image"
1147
+ msgstr "الصورة المميزة"
1148
 
1149
+ #: ../classes/column/post/formats.php:19
1150
+ msgid "Post Format"
1151
+ msgstr "تنسيق التدوينة"
1152
 
1153
+ #: ../classes/column/post/last-modified-author.php:20
1154
+ msgid "Last Modified Author"
1155
+ msgstr ""
 
1156
 
1157
+ #: ../classes/column/post/modified.php:19
1158
+ msgid "Last modified"
1159
+ msgstr "آخر تحديث"
1160
+
1161
+ #: ../classes/column/post/order.php:19
1162
+ msgid "Order"
1163
  msgstr ""
1164
 
1165
+ #: ../classes/column/post/page-template.php:19
1166
+ msgid "Page Template"
1167
+ msgstr "قالب الصفحة"
1168
 
1169
+ #: ../classes/column/post/parent.php:19
1170
+ msgid "Parent"
1171
+ msgstr "الأب"
1172
 
1173
+ #: ../classes/column/post/path.php:19
1174
+ msgid "Path"
1175
  msgstr ""
1176
 
1177
+ #: ../classes/column/post/permalink.php:19
1178
+ msgid "Permalink"
1179
+ msgstr ""
1180
 
1181
+ #: ../classes/column/post/permalink.php:68
1182
+ msgid "Link to post"
1183
  msgstr ""
1184
 
1185
+ #: ../classes/column/post/permalink.php:68
1186
+ msgid "This will make the permalink clickable."
1187
  msgstr ""
1188
 
1189
+ #: ../classes/column/post/ping-status.php:19
1190
+ msgid "Ping status"
1191
+ msgstr "حالة التنبيه"
1192
 
1193
+ #: ../classes/column/post/roles.php:19
1194
+ msgid "Roles"
1195
+ msgstr "الأدوار"
1196
+
1197
+ #: ../classes/column/post/shortcodes.php:19
1198
+ msgid "Shortcodes"
1199
  msgstr ""
1200
 
1201
+ #: ../classes/column/post/slug.php:19
1202
+ msgid "Slug"
1203
+ msgstr "الاسم اللطيف"
1204
 
1205
+ #: ../classes/column/post/status.php:21
1206
+ msgid "Status"
1207
+ msgstr "الحالة"
1208
 
1209
+ #: ../classes/column/post/sticky.php:19
1210
+ msgid "Sticky"
1211
+ msgstr "لاصق"
1212
 
1213
+ #: ../classes/column/post/title-raw.php:19
1214
+ msgid "Title without actions"
1215
+ msgstr ""
1216
 
1217
+ #: ../classes/column/link/length.php:19
1218
+ msgid "Length"
1219
+ msgstr "طول"
1220
 
1221
+ #: ../classes/column/link/notes.php:19
1222
+ msgid "Notes"
1223
+ msgstr "ملاحظات"
1224
 
1225
+ #: ../classes/column/link/owner.php:19
1226
+ msgid "Owner"
1227
+ msgstr "مالك"
1228
 
1229
+ #: ../classes/column/link/rss.php:19
1230
+ msgid "Rss"
1231
+ msgstr "Rss"
1232
 
1233
+ #: ../classes/column/link/target.php:19
1234
+ msgid "Target"
1235
+ msgstr "هدف"
1236
 
1237
+ #: ../classes/column/user/display-name.php:19
1238
+ msgid "Display name"
1239
+ msgstr ""
1240
 
1241
+ #: ../classes/column/user/first-name.php:19
1242
+ msgid "First name"
1243
+ msgstr "الاسم الأول"
1244
 
1245
+ #: ../classes/column/user/last-name.php:19
1246
+ msgid "Last name"
1247
+ msgstr "الاسم الأخير"
1248
 
1249
+ #: ../classes/column/user/post-count.php:19
1250
+ msgid "Post Count"
1251
+ msgstr "عدد التدوينات"
1252
 
1253
+ #: ../classes/column/user/post-count.php:89
1254
+ msgid "Post Type"
1255
+ msgstr "نوع تدوبنة"
1256
+
1257
+ #: ../classes/column/user/registered.php:19
1258
+ msgid "Registered"
1259
+ msgstr "مسجل"
1260
+
1261
+ #: ../classes/column/user/rich-editing.php:19
1262
+ msgid "Visual Editor"
1263
+ msgstr ""
1264
+
1265
+ #: ../classes/column/user/url.php:19
1266
+ msgid "Url"
1267
+ msgstr "عنوان موقع"
languages/codepress-admin-columns-da_DK.mo ADDED
Binary file
languages/{cpac-da_DK.po → codepress-admin-columns-da_DK.po} RENAMED
@@ -1,32 +1,31 @@
1
- #
 
2
  # Translators:
3
  # Mikkel Breum <mikkel@wpkitchen.com>, 2013
4
  # Morten Dalgaard Johansen <support@iosoftgame.com>, 2013
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
10
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-columns/language/da_DK/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: da_DK\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.8.1\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
- "X-Poedit-SearchPathExcluded-0: ../src\n"
25
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
@@ -48,1254 +47,1211 @@ msgstr ""
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr ""
50
 
51
- #: ../classes/column.php:597
52
  msgid "Thumbnail"
53
  msgstr "Miniaturebillede"
54
 
55
- #: ../classes/column.php:598
56
  msgid "Medium"
57
  msgstr "Medium"
58
 
59
- #: ../classes/column.php:599
60
  msgid "Large"
61
  msgstr "Stor"
62
 
63
- #: ../classes/column.php:600
64
  msgid "Full"
65
  msgstr "Fuld"
66
 
67
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "Date Format"
69
  msgstr "Datoformat"
70
 
71
- #: ../classes/column.php:1042
72
  msgid "This will determine how the date will be displayed."
73
  msgstr "Dette vil bestmme hvordan datoen vil blive vist."
74
 
75
- #: ../classes/column.php:1048
76
  msgid "Example:"
77
  msgstr "Eksempel:"
78
 
79
- #: ../classes/column.php:1050
80
- #, php-format
81
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
82
- msgstr "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s\">standard datoformat her</a>."
83
 
84
- #: ../classes/column.php:1051
85
  msgid "Documentation on date and time formatting."
86
  msgstr "Dokumentation for dato- og tidsformattering."
87
 
88
- #: ../classes/column.php:1065
89
  msgid "Excerpt length"
90
  msgstr "Længden for uddrag"
91
 
92
- #: ../classes/column.php:1066
93
  msgid "Number of words"
94
  msgstr "Antal ord"
95
 
96
- #: ../classes/column.php:1084
97
  msgid "Preview size"
98
  msgstr "Forhåndsvisningsstørrelse"
99
 
100
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
101
  msgid "Custom"
102
  msgstr "Brugerdefineret"
103
 
104
- #: ../classes/column.php:1104 ../classes/column.php:1251
105
  msgid "width"
106
  msgstr "bredde"
107
 
108
- #: ../classes/column.php:1107
109
  msgid "height"
110
  msgstr "højde"
111
 
112
- #: ../classes/column.php:1119
113
  msgid "Before"
114
  msgstr "Før"
115
 
116
- #: ../classes/column.php:1119
117
  msgid "This text will appear before the custom field value."
118
  msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
119
 
120
- #: ../classes/column.php:1120
121
  msgid "After"
122
  msgstr "Efter"
123
 
124
- #: ../classes/column.php:1120
125
  msgid "This text will appear after the custom field value."
126
  msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
127
 
128
- #: ../classes/column.php:1129
129
  msgid "Display Name"
130
  msgstr "Offentligt navn"
131
 
132
- #: ../classes/column.php:1130
133
  msgid "First Name"
134
  msgstr "Fornavn"
135
 
136
- #: ../classes/column.php:1131
137
  msgid "Last Name"
138
  msgstr "Efternavn"
139
 
140
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
141
  msgid "Nickname"
142
  msgstr "Kaldenavn"
143
 
144
- #: ../classes/column.php:1133
145
  msgid "User Login"
146
  msgstr "Brugerlogin"
147
 
148
- #: ../classes/column.php:1134
149
  msgid "User Email"
150
  msgstr "Bruger e-mail"
151
 
152
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
153
  msgid "User ID"
154
  msgstr "Bruger ID"
155
 
156
- #: ../classes/column.php:1136
157
  msgid "First and Last Name"
158
  msgstr "For- og efternavn"
159
 
160
- #: ../classes/column.php:1139
161
  msgid "Display format"
162
  msgstr ""
163
 
164
- #: ../classes/column.php:1139
165
  msgid "This is the format of the author name."
166
  msgstr "Dette er formattet for forfatterens navn"
167
 
168
- #: ../classes/column.php:1273
169
  msgid "Edit"
170
  msgstr "Rediger"
171
 
172
- #: ../classes/column.php:1275 ../classes/column.php:1367
173
  msgid "Clone"
174
  msgstr ""
175
 
176
- #: ../classes/column.php:1277 ../classes/column.php:1369
177
  msgid "Remove"
178
  msgstr "Fjern"
179
 
180
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
181
  msgid "Type"
182
  msgstr "Type"
183
 
184
- #: ../classes/column.php:1295
185
  msgid "Choose a column type."
186
  msgstr "Vælg en kolonne type."
187
 
188
- #: ../classes/column.php:1295
189
  msgid "Name"
190
  msgstr ""
191
 
192
- #: ../classes/column.php:1305
193
  msgid "Label"
194
  msgstr "Etikette"
195
 
196
- #: ../classes/column.php:1305
197
  msgid "This is the name which will appear as the column header."
198
  msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
199
 
200
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
201
  msgid "Width"
202
  msgstr "Bredde"
203
 
204
- #: ../classes/column.php:1314
205
  msgid "default"
206
  msgstr "standard"
207
 
208
- #: ../classes/column.php:1315
209
  msgid "auto"
210
  msgstr ""
211
 
212
- #: ../classes/column/acf-placeholder.php:19
213
- msgid "ACF Field"
214
  msgstr ""
215
 
216
- #: ../classes/column/acf-placeholder.php:32
217
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
218
  msgstr ""
219
 
220
- #: ../classes/column/acf-placeholder.php:35
221
- #, php-format
222
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
223
  msgstr ""
224
 
225
- #: ../classes/column/acf-placeholder.php:38
226
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
227
  msgstr ""
228
 
229
- #: ../classes/column/acf-placeholder.php:44
230
- msgid "Find out more"
231
  msgstr ""
232
 
233
- #: ../classes/column/actions.php:29
234
- msgid "Actions"
235
- msgstr "Handlinger"
236
 
237
- #: ../classes/column/actions.php:96
238
- msgid "Use icons?"
 
 
 
 
239
  msgstr ""
240
 
241
- #: ../classes/column/actions.php:96
242
- msgid "Use icons instead of text for displaying the actions."
243
  msgstr ""
244
 
245
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
246
- msgid "Yes"
247
  msgstr ""
248
 
249
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
250
- msgid "No"
251
  msgstr ""
252
 
253
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
254
- msgid "ID"
255
- msgstr "ID"
256
 
257
- #: ../classes/column/comment/agent.php:19
258
- msgid "Agent"
259
- msgstr "Agent"
260
 
261
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
262
- msgid "Approved"
263
- msgstr "Godkendt"
264
 
265
- #: ../classes/column/comment/author-avatar.php:19
266
- msgid "Avatar"
267
- msgstr "Avatar"
268
 
269
- #: ../classes/column/comment/author-email.php:19
270
- msgid "Author email"
271
- msgstr "Forfatter email"
272
 
273
- #: ../classes/column/comment/author-ip.php:19
274
- msgid "Author IP"
275
- msgstr "Forfatter IP"
276
 
277
- #: ../classes/column/comment/author-name.php:12
278
- msgid "Author name"
279
  msgstr ""
280
 
281
- #: ../classes/column/comment/author-url.php:19
282
- msgid "Author url"
283
- msgstr "Forfatter webadresse"
284
 
285
- #: ../classes/column/comment/author.php:19
286
- msgid "Author"
287
- msgstr "Forfatter"
288
 
289
- #: ../classes/column/comment/date-gmt.php:19
290
- msgid "Date GMT"
291
- msgstr "Dato GMT"
292
 
293
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
294
- #, php-format
295
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
296
- msgstr "Indsendt af <a href=\"%1$s\">%2$s at %3$s</a>"
297
 
298
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
299
- msgid "Date"
300
- msgstr "Dato"
301
 
302
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
303
- msgid "Content"
304
- msgstr ""
305
 
306
- #: ../classes/column/comment/reply-to.php:19
307
- msgid "In Reply To"
308
- msgstr "Som svar "
 
309
 
310
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
311
- msgid "User"
312
- msgstr ""
313
 
314
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
315
- msgid "Word count"
316
- msgstr "Antal ord"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
319
  msgid "Custom Field"
320
  msgstr "Brugerdefineret felt"
321
 
322
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
323
  msgid "Default"
324
  msgstr "Standard"
325
 
326
- #: ../classes/column/custom-field.php:95
327
- msgid "Checkmark (true/false)"
328
- msgstr "Flueben (ja/nej)"
329
 
330
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
331
- msgid "Color"
332
- msgstr "Farve"
333
 
334
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
335
- msgid "Counter"
336
- msgstr ""
337
 
338
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
339
  msgid "Excerpt"
340
  msgstr "Uddrag"
341
 
342
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
343
- msgid "Image"
344
- msgstr "Billede"
345
-
346
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
347
- msgid "Media Library"
348
- msgstr "Mediebibliotek"
349
 
350
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
351
  msgid "Multiple Values"
352
  msgstr "Flere værdier"
353
 
354
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
355
  msgid "Numeric"
356
  msgstr "Numerisk"
357
 
358
- #: ../classes/column/custom-field.php:104
359
- msgid "Post Title (Post ID's)"
360
- msgstr "Indlæg titel (Indlæg ID)"
361
-
362
- #: ../classes/column/custom-field.php:105
363
- msgid "Username (User ID's)"
364
- msgstr "Brugernavn (Bruger ID'er)"
365
-
366
- #: ../classes/column/custom-field.php:106
367
- msgid "Term Name (Term ID's)"
368
- msgstr ""
369
-
370
- #: ../classes/column/custom-field.php:390
371
- msgid "Select your custom field."
372
- msgstr "Vælg dit brugerdefineret felt."
373
 
374
- #: ../classes/column/custom-field.php:400
375
- msgid "No custom fields available."
376
- msgstr "Ingen brugerdefineret felter tilgængelige."
377
 
378
- #: ../classes/column/custom-field.php:400
379
- #, php-format
380
- msgid "Please create a %s item first."
381
- msgstr ""
382
 
383
- #: ../classes/column/custom-field.php:407
384
- msgid "Field Type"
385
- msgstr "Felttype"
386
 
387
- #: ../classes/column/custom-field.php:407
388
- msgid "This will determine how the value will be displayed."
389
- msgstr "Dette afgør hvordan værdien vil blive vist."
390
 
391
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
392
- msgid "Description"
393
- msgstr "Beskrivelse"
394
 
395
- #: ../classes/column/link/length.php:19
396
- msgid "Length"
397
- msgstr "Længde"
398
 
399
- #: ../classes/column/link/notes.php:19
400
- msgid "Notes"
401
- msgstr "Noter"
402
 
403
- #: ../classes/column/link/owner.php:19
404
- msgid "Owner"
405
- msgstr "Ejer"
406
 
407
- #: ../classes/column/link/rss.php:19
408
- msgid "Rss"
409
- msgstr "Rss"
410
 
411
- #: ../classes/column/link/target.php:19
412
- msgid "Target"
413
- msgstr "Mål"
414
 
415
- #: ../classes/column/media/alternate-text.php:19
416
- msgid "Alt"
417
- msgstr "Alt"
418
 
419
- #: ../classes/column/media/attached-to.php:19
420
- msgid "Attached to post"
421
  msgstr ""
422
 
423
- #: ../classes/column/media/available-sizes.php:20
424
- msgid "Available Sizes"
425
- msgstr "Tilgængelige størrelser"
426
 
427
- #: ../classes/column/media/available-sizes.php:40
428
- msgid "full size"
429
- msgstr "fuld størrelse"
430
 
431
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
432
- msgid "Caption"
433
- msgstr "Titeltekst"
434
 
435
- #: ../classes/column/media/dimensions.php:19
436
- msgid "Dimensions"
437
- msgstr "Mål"
438
 
439
- #: ../classes/column/media/exif-data.php:19
440
- msgid "EXIF data"
441
- msgstr "EXIF data"
442
 
443
- #: ../classes/column/media/exif-data.php:38
444
- msgid "Aperture"
445
- msgstr "Aperture"
446
 
447
- #: ../classes/column/media/exif-data.php:39
448
- msgid "Credit"
449
- msgstr "Credit"
450
 
451
- #: ../classes/column/media/exif-data.php:40
452
- msgid "Camera"
453
- msgstr "Kamera"
454
 
455
- #: ../classes/column/media/exif-data.php:42
456
- msgid "Timestamp"
457
- msgstr "Timestamp"
458
 
459
- #: ../classes/column/media/exif-data.php:43
460
- msgid "Copyright EXIF"
461
- msgstr "Copyright EXIF"
462
 
463
- #: ../classes/column/media/exif-data.php:44
464
- msgid "Focal Length"
465
- msgstr "Focal Length"
466
 
467
- #: ../classes/column/media/exif-data.php:45
468
- msgid "ISO"
469
- msgstr "ISO"
470
 
471
- #: ../classes/column/media/exif-data.php:46
472
- msgid "Shutter Speed"
473
- msgstr "Shutter Speed"
474
 
475
- #: ../classes/column/media/exif-data.php:47
476
- msgid "Title"
477
- msgstr "Title"
478
 
479
- #: ../classes/column/media/file-name.php:19
480
- msgid "File name"
481
- msgstr "Filnavn"
482
 
483
- #: ../classes/column/media/file-size.php:19
484
- msgid "File size"
485
- msgstr "Filstørrelse"
486
 
487
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
488
- msgid "Full path"
489
- msgstr "Fuld sti"
490
 
491
- #: ../classes/column/media/full-path.php:83
492
- msgid "Path scope"
493
- msgstr ""
494
 
495
- #: ../classes/column/media/full-path.php:84
496
- msgid "Part of the file path to display"
497
- msgstr ""
498
 
499
- #: ../classes/column/media/full-path.php:97
500
- msgid "Relative to domain"
501
- msgstr ""
502
 
503
- #: ../classes/column/media/full-path.php:102
504
- msgid "Relative to main uploads folder "
505
- msgstr ""
506
 
507
- #: ../classes/column/media/height.php:19
508
- msgid "Height"
509
- msgstr "Højde"
510
 
511
- #: ../classes/column/media/mime-type.php:19
512
- msgid "Mime type"
513
- msgstr "Mime type"
514
 
515
- #: ../classes/column/post/attachment-count.php:19
516
- msgid "No. of Attachments"
517
- msgstr "Antal vedhæftede filer"
518
 
519
- #: ../classes/column/post/attachment.php:19
520
- msgid "Attachments"
521
  msgstr ""
522
 
523
- #: ../classes/column/post/author-name.php:20
524
- msgid "Display Author As"
525
- msgstr "Vis forfatter som"
526
-
527
- #: ../classes/column/post/before-moretag.php:19
528
- msgid "Before More Tag"
529
- msgstr "Før mere-mærket"
530
 
531
- #: ../classes/column/post/comment-count.php:20
532
- msgid "Comment count"
533
- msgstr "Antal kommentare"
534
 
535
- #: ../classes/column/post/comment-count.php:34
536
- msgid "Total"
537
- msgstr "Total"
538
 
539
- #: ../classes/column/post/comment-count.php:36
540
- msgid "Pending"
541
- msgstr "Afventende"
542
 
543
- #: ../classes/column/post/comment-count.php:37
544
- msgid "Spam"
545
- msgstr "Spam"
546
 
547
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
548
- msgid "Trash"
549
- msgstr "Papirkurv"
550
 
551
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
552
- msgid "Comment status"
553
- msgstr "Kommentar status"
554
 
555
- #: ../classes/column/post/comment-count.php:99
556
- msgid "Select which comment status you like to display."
557
- msgstr "Vælg hvilken kommentarstatus du vil vise."
558
 
559
- #: ../classes/column/post/date-published.php:17
560
- msgid "Date Published"
561
  msgstr ""
562
 
563
- #: ../classes/column/post/depth.php:19
564
- msgid "Depth"
565
  msgstr ""
566
 
567
- #: ../classes/column/post/estimated-reading-time.php:19
568
- msgid "Estimated Reading Time"
 
 
 
 
569
  msgstr ""
570
 
571
- #: ../classes/column/post/estimated-reading-time.php:63
572
- msgid "second"
573
- msgid_plural "seconds"
574
- msgstr[0] ""
575
- msgstr[1] ""
576
 
577
- #: ../classes/column/post/estimated-reading-time.php:66
578
- msgid "minute"
579
- msgid_plural "minutes"
580
- msgstr[0] ""
581
- msgstr[1] ""
582
 
583
- #: ../classes/column/post/estimated-reading-time.php:103
584
- msgid "Words per minute"
585
  msgstr ""
586
 
587
- #: ../classes/column/post/estimated-reading-time.php:104
588
- msgid "Estimated reading time in words per minute"
589
- msgstr ""
590
 
591
- #: ../classes/column/post/featured-image.php:19
592
- msgid "Featured Image"
593
- msgstr "Udvalgt billede"
594
 
595
- #: ../classes/column/post/formats.php:19
596
- msgid "Post Format"
597
- msgstr "Indlæg format"
598
 
599
- #: ../classes/column/post/last-modified-author.php:20
600
- msgid "Last Modified Author"
601
  msgstr ""
602
 
603
- #: ../classes/column/post/modified.php:19
604
- msgid "Last modified"
605
- msgstr "Sidst ændret"
606
 
607
- #: ../classes/column/post/order.php:19
608
- msgid "Page Order"
609
- msgstr "Siderækkefølge"
610
 
611
- #: ../classes/column/post/page-template.php:19
612
- msgid "Page Template"
613
- msgstr "Sideskabelon"
614
 
615
- #: ../classes/column/post/parent.php:19
616
- msgid "Parent"
617
- msgstr "Forældre"
618
 
619
- #: ../classes/column/post/path.php:19
620
- msgid "Path"
621
  msgstr ""
622
 
623
- #: ../classes/column/post/permalink.php:19
624
- msgid "Permalink"
625
  msgstr ""
626
 
627
- #: ../classes/column/post/permalink.php:68
628
- msgid "Link to post"
629
  msgstr ""
630
 
631
- #: ../classes/column/post/permalink.php:68
632
- msgid "This will make the permalink clickable."
633
  msgstr ""
634
 
635
- #: ../classes/column/post/ping-status.php:19
636
- msgid "Ping status"
637
- msgstr "Ping status"
638
 
639
- #: ../classes/column/post/roles.php:19
640
- msgid "Roles"
641
- msgstr "Roller"
642
 
643
- #: ../classes/column/post/shortcodes.php:19
644
- msgid "Shortcodes"
645
  msgstr ""
646
 
647
- #: ../classes/column/post/slug.php:19
648
- msgid "Slug"
649
- msgstr "Kort titel"
650
 
651
- #: ../classes/column/post/status.php:19
652
- msgid "Status"
653
- msgstr "Status"
654
 
655
- #: ../classes/column/post/status.php:29
656
- msgid "Published"
657
- msgstr "Udgivet"
658
 
659
- #: ../classes/column/post/status.php:30
660
- msgid "Draft"
661
- msgstr "Klade"
662
 
663
- #: ../classes/column/post/status.php:31
664
- msgid "Scheduled"
665
- msgstr "Planlagt"
666
 
667
- #: ../classes/column/post/status.php:32
668
- msgid "Private"
669
- msgstr "Privat"
670
 
671
- #: ../classes/column/post/status.php:33
672
- msgid "Pending Review"
673
- msgstr "Afventer revision"
674
 
675
- #: ../classes/column/post/status.php:34
676
- msgid "Auto Draft"
677
  msgstr ""
678
 
679
- #: ../classes/column/post/sticky.php:19
680
- msgid "Sticky"
681
- msgstr "Opslag"
682
 
683
- #: ../classes/column/post/title-raw.php:19
684
- msgid "Title without actions"
685
  msgstr ""
686
 
687
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
688
- msgid "Taxonomy"
689
- msgstr "Taksonomi"
690
-
691
- #: ../classes/column/used-by-menu.php:20
692
- msgid "Used by Menu"
693
  msgstr ""
694
 
695
- #: ../classes/column/used-by-menu.php:133
696
- msgid "Link to menu"
697
  msgstr ""
698
 
699
- #: ../classes/column/used-by-menu.php:133
700
- msgid "This will make the title link to the menu."
701
  msgstr ""
702
 
703
- #: ../classes/column/user/comment-count.php:19
704
- msgid "Comment Count"
705
- msgstr "Antal kommentarer"
706
-
707
- #: ../classes/column/user/display-name.php:19
708
- msgid "Display name"
709
- msgstr ""
710
 
711
- #: ../classes/column/user/first-name.php:19
712
- msgid "First name"
713
- msgstr "Fornavn"
714
 
715
- #: ../classes/column/user/last-name.php:19
716
- msgid "Last name"
717
- msgstr "Efternavn"
718
 
719
- #: ../classes/column/user/post-count.php:19
720
- msgid "Post Count"
721
- msgstr "Antal indlæg"
722
 
723
- #: ../classes/column/user/post-count.php:89
724
- msgid "Post Type"
725
- msgstr "Indlægstype"
726
 
727
- #: ../classes/column/user/registered.php:19
728
- msgid "Registered"
729
- msgstr "Registreret"
730
 
731
- #: ../classes/column/user/rich-editing.php:19
732
- msgid "Visual Editor"
733
  msgstr ""
734
 
735
- #: ../classes/column/user/url.php:19
736
- msgid "Url"
737
- msgstr "Webadresse"
738
 
739
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
740
- msgid "Admin Columns"
741
- msgstr "Admin Columns"
742
 
743
- #: ../classes/review_notice.php:58
744
- msgid "Admin Columns Pro"
745
- msgstr ""
746
 
747
- #: ../classes/review_notice.php:65
748
- #, php-format
749
- msgid ""
750
- "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 "
751
- "with %s, please %s."
752
- msgstr ""
753
 
754
- #: ../classes/review_notice.php:68
755
- msgid "click here"
756
- msgstr ""
757
 
758
- #: ../classes/review_notice.php:72
759
- msgid "Leave a review!"
760
- msgstr ""
761
 
762
- #: ../classes/review_notice.php:73
763
- msgid "Permanently hide notice"
764
- msgstr ""
765
 
766
- #: ../classes/review_notice.php:80
767
- #, php-format
768
- 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."
769
- msgstr ""
770
 
771
- #: ../classes/review_notice.php:82
772
- msgid "documentation page"
773
- msgstr ""
774
 
775
- #: ../classes/review_notice.php:86
776
- #, php-format
777
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
778
- msgstr ""
779
 
780
- #: ../classes/review_notice.php:87
781
- msgid "our forums"
782
- msgstr ""
783
 
784
- #: ../classes/review_notice.php:91
785
- #, php-format
786
- msgid "You can also find help on the %s, and %s."
787
- msgstr ""
788
 
789
- #: ../classes/review_notice.php:92
790
- msgid "Admin Columns forums on WordPress.org"
791
- msgstr ""
792
 
793
- #: ../classes/review_notice.php:93
794
- msgid "find answers to some frequently asked questions"
795
  msgstr ""
796
 
797
- #: ../classes/settings.php:112
798
- msgid "Add-on successfully activated."
799
  msgstr ""
800
 
801
- #: ../classes/settings.php:115
802
- msgid "Add-on successfully deactivated."
803
  msgstr ""
804
 
805
- #: ../classes/settings.php:170
806
- msgid "Admin Columns Settings"
807
- msgstr "Admin Kolonne Indstillinger"
808
-
809
- #: ../classes/settings.php:220
810
- #, php-format
811
- msgid "%s column is already present and can not be duplicated."
812
- msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
813
-
814
- #: ../classes/settings.php:274
815
- msgid "Default settings succesfully restored."
816
- msgstr "Standard indstillinger gendannet med success."
817
-
818
- #: ../classes/settings.php:291
819
- msgid "Overview"
820
- msgstr "Overblik"
821
-
822
- #: ../classes/settings.php:294
823
- msgid ""
824
- "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."
825
- msgstr "Dette plugin er til at tilføje og fjerne tillægskolonner på administrationsskærme for indlægs(typer), sider, mediebibliotek, kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
826
-
827
- #: ../classes/settings.php:297
828
- msgid "Basics"
829
- msgstr "Grundlæggende"
830
-
831
- #: ../classes/settings.php:299
832
- msgid "Change order"
833
- msgstr "Ændre rækkefølge"
834
-
835
- #: ../classes/settings.php:300
836
- msgid "By dragging the columns you can change the order which they will appear in."
837
- msgstr "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
838
-
839
- #: ../classes/settings.php:301
840
- msgid "Change label"
841
- msgstr "Ændre etikette"
842
-
843
- #: ../classes/settings.php:302
844
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
845
- msgstr "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du vælge hver etikette for kolonnernes overskrift. "
846
-
847
- #: ../classes/settings.php:303
848
- msgid "Change column width"
849
- msgstr "Ændre kolonnebredden"
850
-
851
- #: ../classes/settings.php:304
852
- 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."
853
- msgstr "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at indstille kolonnebredden."
854
-
855
- #: ../classes/settings.php:310
856
- msgid "'Custom Field' column"
857
- msgstr "'Brugerdefineret felt' kolonne"
858
-
859
- #: ../classes/settings.php:311
860
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
861
- msgstr "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra indlæg og brugere. Der er 10 typer som du kan sætte."
862
-
863
- #: ../classes/settings.php:313
864
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
865
- msgstr "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive fladtrykt og værdier separeret ved et ',' komma."
866
-
867
- #: ../classes/settings.php:314
868
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
869
- msgstr "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret ved et ',' komma )."
870
-
871
- #: ../classes/settings.php:315
872
- msgid "Value: This will show the first 20 words of the Post content."
873
- msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
874
 
875
- #: ../classes/settings.php:316
876
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
877
- msgstr "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) tabel."
878
 
879
- #: ../classes/settings.php:317
880
- 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."
881
- msgstr "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret felt) værdier."
882
 
883
- #: ../classes/settings.php:318
884
- #, php-format
885
- 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."
886
- msgstr "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a href='%s'>generalle indstillinger</a> siden."
887
 
888
- #: ../classes/settings.php:319
889
- msgid "Post Titles"
890
- msgstr "Indlægstitler"
891
 
892
- #: ../classes/settings.php:319
893
- msgid "Value: can be one or more Post ID's (seperated by ',')."
894
- msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
895
 
896
- #: ../classes/settings.php:320
897
- msgid "Usernames"
898
- msgstr "Brugernavne"
899
 
900
- #: ../classes/settings.php:320
901
- msgid "Value: can be one or more User ID's (seperated by ',')."
902
- msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
903
 
904
- #: ../classes/settings.php:321
905
- msgid "Checkmark"
906
- msgstr "Flueben"
907
 
908
- #: ../classes/settings.php:321
909
- msgid "Value: should be a 1 (one) or 0 (zero)."
910
- msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
911
 
912
- #: ../classes/settings.php:322
913
- msgid "Value: hex value color, such as #808080."
914
- msgstr "Værdi: hex værdi farve, for eksempel #808080."
915
 
916
- #: ../classes/settings.php:323
917
- 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."
918
  msgstr ""
919
 
920
- #: ../classes/settings.php:412
921
- msgid "Welcome to Admin Columns"
922
- msgstr "Velkommen til Admin Columns"
923
-
924
- #: ../classes/settings.php:415
925
- msgid "Thank you for updating to the latest version!"
926
- msgstr "Tak fordi du opdaterede til den seneste version!"
927
-
928
- #: ../classes/settings.php:416
929
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
930
- msgstr "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du kan lide det."
931
 
932
- #: ../classes/settings.php:421
933
- msgid "What’s New"
934
- msgstr "Hvad er nyt"
935
 
936
- #: ../classes/settings.php:422
937
- msgid "Changelog"
938
- msgstr "Ændringslog"
939
 
940
- #: ../classes/settings.php:427
941
- msgid "Important"
942
- msgstr "Vigtigt"
943
 
944
- #: ../classes/settings.php:429
945
- msgid "Database Changes"
946
- msgstr "Database ændringer"
947
 
948
- #: ../classes/settings.php:430
949
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
950
- msgstr "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du stadig kan gå tilbage til version 1x uden nogen problemer."
951
 
952
- #: ../classes/settings.php:433
953
- msgid "Make sure you backup your database and then click"
954
- msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
955
 
956
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
957
- msgid "Upgrade Database"
958
- msgstr "Opgradér database"
959
 
960
- #: ../classes/settings.php:436
961
- msgid "Potential Issues"
962
- msgstr "Mulige problemer"
963
 
964
- #: ../classes/settings.php:437
965
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
966
- msgstr "På grund af den betydelige omstrukturering af koden omkring udvidelser og action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er vigtigt at du læser den fulde"
967
 
968
- #: ../classes/settings.php:437
969
- msgid "Migrating from v1 to v2"
970
- msgstr "Migration fra v1 til v2"
971
 
972
- #: ../classes/settings.php:437
973
- msgid "guide to view the full list of changes."
974
- msgstr "guide for at vise den fulde liste med ændringer."
975
 
976
- #: ../classes/settings.php:437
977
- #, php-format
978
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
979
- msgstr "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> så vi kan rette det inden næste udgivelse."
980
 
981
- #: ../classes/settings.php:440
982
- msgid "Important!"
983
- msgstr "Vigtigt!"
984
 
985
- #: ../classes/settings.php:440
986
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
987
- msgstr "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne ændringer, venligst gå tilbage til den seneste"
988
 
989
- #: ../classes/settings.php:440
990
- msgid "version 1"
991
- msgstr "version 1"
992
 
993
- #: ../classes/settings.php:440
994
- msgid "of this plugin."
995
- msgstr "af dette plugin."
996
 
997
- #: ../classes/settings.php:446
998
- msgid "Changelog for"
999
- msgstr "Ændringslog for"
1000
 
1001
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1002
- msgid "Learn more"
1003
- msgstr "Lær mere"
1004
 
1005
- #: ../classes/settings.php:471
1006
- msgid "Start using Admin Columns"
1007
- msgstr "Gå i gang med at bruge Admin Columns"
1008
 
1009
- #: ../classes/settings.php:490
1010
- msgid "General Settings"
1011
- msgstr "Generelle indstillinger"
1012
 
1013
- #: ../classes/settings.php:491
1014
- msgid "Customize your Admin Columns settings."
1015
- msgstr "Tilpas din Admin Columns indstillinger."
1016
 
1017
- #: ../classes/settings.php:502
1018
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1019
  msgstr ""
1020
 
1021
- #: ../classes/settings.php:509 ../classes/settings.php:673
1022
- msgid "Save"
1023
- msgstr "Gem"
1024
-
1025
- #: ../classes/settings.php:549
1026
- msgid "Restore Settings"
1027
- msgstr "Gendan indstillinger"
1028
-
1029
- #: ../classes/settings.php:550
1030
- msgid "This will delete all column settings and restore the default settings."
1031
- msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
1032
 
1033
- #: ../classes/settings.php:556
1034
- msgid "Restore default settings"
1035
- msgstr "Gendan standard indstillinger"
1036
 
1037
- #: ../classes/settings.php:556
1038
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1039
- msgstr "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
1040
 
1041
- #: ../classes/settings.php:572
1042
- msgid "Posttypes"
1043
- msgstr ""
1044
 
1045
- #: ../classes/settings.php:573
1046
- msgid "Others"
1047
- msgstr ""
1048
 
1049
- #: ../classes/settings.php:574
1050
- msgid "Taxonomies"
1051
- msgstr ""
1052
 
1053
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1054
- msgid "Settings"
1055
- msgstr "Indstillinger"
1056
 
1057
- #: ../classes/settings.php:591
1058
- msgid "Add-ons"
1059
- msgstr ""
1060
 
1061
- #: ../classes/settings.php:659
1062
- #, php-format
1063
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1064
- msgstr ""
1065
 
1066
- #: ../classes/settings.php:669
1067
- msgid "Store settings"
1068
- msgstr "Gem indstillinger"
1069
 
1070
- #: ../classes/settings.php:673
1071
- msgid "Update"
1072
- msgstr "Opdater"
1073
 
1074
- #: ../classes/settings.php:677
1075
- #, php-format
1076
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1077
- msgstr "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
1078
 
1079
- #: ../classes/settings.php:678
1080
- msgid "Restore"
1081
- msgstr "Gendan"
1082
 
1083
- #: ../classes/settings.php:678
1084
- msgid "columns"
1085
- msgstr "kolonner"
1086
 
1087
- #: ../classes/settings.php:697
1088
- msgid "Get Admin Columns Pro"
1089
- msgstr ""
1090
 
1091
- #: ../classes/settings.php:701
1092
- msgid "Add Sorting"
1093
- msgstr "Tilføj sortering"
1094
 
1095
- #: ../classes/settings.php:702
1096
- msgid "Add Filtering"
1097
- msgstr "Tilføj filtrering"
1098
 
1099
- #: ../classes/settings.php:703
1100
- msgid "Add Import/Export"
1101
- msgstr "Tilføj import/eksport"
1102
 
1103
- #: ../classes/settings.php:704
1104
- msgid "Add Direct Editing"
1105
  msgstr ""
1106
 
1107
- #: ../classes/settings.php:707
1108
- #, php-format
1109
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1110
  msgstr ""
1111
 
1112
- #: ../classes/settings.php:738
1113
- msgid "Are you happy with Admin Columns?"
1114
  msgstr ""
1115
 
1116
- #: ../classes/settings.php:746
1117
- msgid "What's wrong? Need help? Let us know!"
1118
  msgstr ""
1119
 
1120
- #: ../classes/settings.php:747
1121
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1122
- msgstr ""
1123
 
1124
- #: ../classes/settings.php:755
1125
- msgid "Docs"
1126
- msgstr ""
1127
 
1128
- #: ../classes/settings.php:760
1129
- msgid "Forums"
1130
- msgstr ""
1131
 
1132
- #: ../classes/settings.php:769
1133
- msgid "Woohoo! We're glad to hear that!"
1134
  msgstr ""
1135
 
1136
- #: ../classes/settings.php:770
1137
- 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!"
1138
- msgstr ""
1139
 
1140
- #: ../classes/settings.php:774
1141
- msgid "Rate"
1142
  msgstr ""
1143
 
1144
- #: ../classes/settings.php:785
1145
- msgid "Tweet"
1146
  msgstr ""
1147
 
1148
- #: ../classes/settings.php:795
1149
- msgid "Buy Pro"
1150
- msgstr ""
1151
 
1152
- #: ../classes/settings.php:807
1153
- msgid "Support"
1154
- msgstr "Hjælp"
1155
 
1156
- #: ../classes/settings.php:810
1157
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1158
- msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
1159
 
1160
- #: ../classes/settings.php:813
1161
- #, php-format
1162
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1163
- msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
1164
 
1165
- #: ../classes/settings.php:842
1166
- msgid "Drag and drop to reorder"
1167
- msgstr "Træk og slip for at ændre rækkefølgen"
1168
 
1169
- #: ../classes/settings.php:845
1170
- msgid "Add Column"
1171
- msgstr "Tilføj kolonne"
1172
 
1173
- #: ../classes/settings.php:926
1174
- msgid "Active"
1175
- msgstr ""
1176
 
1177
- #: ../classes/settings.php:927
1178
- msgid "Deactivate"
1179
- msgstr ""
1180
 
1181
- #: ../classes/settings.php:934
1182
- msgid "Installed"
1183
  msgstr ""
1184
 
1185
- #: ../classes/settings.php:935
1186
- msgid "Activate"
1187
  msgstr ""
1188
 
1189
- #: ../classes/settings.php:949
1190
- msgid "Download & Install"
 
 
 
 
 
 
 
 
 
 
 
 
1191
  msgstr ""
1192
 
1193
- #: ../classes/settings.php:954
1194
- msgid "Get this add-on"
1195
  msgstr ""
1196
 
1197
- #: ../classes/storage_model.php:237
1198
- msgid "settings succesfully restored."
1199
- msgstr "indstillinger er gendannet med success."
1200
 
1201
- #: ../classes/storage_model.php:253
1202
- msgid "No columns settings available."
1203
- msgstr "Ingen kolonneindstillinger tilgængelige."
1204
 
1205
- #: ../classes/storage_model.php:274
1206
- #, php-format
1207
- msgid "You are trying to store the same settings for %s."
1208
- msgstr "Du forsøger at gemme samme indstillinger for %s."
1209
 
1210
- #: ../classes/storage_model.php:278
1211
- #, php-format
1212
- msgid "Settings for %s updated successfully."
 
 
 
1213
  msgstr ""
1214
 
1215
- #: ../classes/storage_model.php:809
1216
- msgid "View"
1217
- msgstr "Vis"
1218
 
1219
- #: ../classes/storage_model/comment.php:13
1220
- msgid "Comments"
1221
- msgstr "Kommentarer"
1222
 
1223
- #: ../classes/storage_model/comment.php:14
1224
- msgid "Comment"
1225
  msgstr ""
1226
 
1227
- #: ../classes/storage_model/link.php:13
1228
- msgid "Links"
1229
- msgstr "Links"
1230
 
1231
- #: ../classes/storage_model/link.php:14
1232
- msgid "Link"
1233
  msgstr ""
1234
 
1235
- #: ../classes/storage_model/media.php:14
1236
- msgid "Media"
1237
  msgstr ""
1238
 
1239
- #: ../classes/storage_model/user.php:13
1240
- msgid "Users"
1241
- msgstr "Brugere"
1242
 
1243
- #: ../classes/upgrade.php:62
1244
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1245
  msgstr ""
1246
 
1247
- #: ../classes/upgrade.php:95
1248
- msgid "Upgrade"
1249
- msgstr "Opgrader"
1250
 
1251
- #: ../classes/upgrade.php:136
1252
- msgid "requires a database upgrade"
1253
- msgstr "en opgradering af databasen er påkrævet"
1254
 
1255
- #: ../classes/upgrade.php:139
1256
- msgid "why?"
1257
- msgstr "hvorfor?"
1258
 
1259
- #: ../classes/upgrade.php:140
1260
- msgid "Please"
1261
- msgstr "Venligst"
1262
 
1263
- #: ../classes/upgrade.php:141
1264
- msgid "backup your database"
1265
- msgstr "tag backup af din database"
1266
 
1267
- #: ../classes/upgrade.php:142
1268
- msgid "then click"
1269
- msgstr "derefter klik"
1270
 
1271
- #: ../classes/upgrade.php:351
1272
- msgid "Migrating Column Settings"
1273
- msgstr "Migration af kolonne indstillinger"
1274
 
1275
- #: ../classes/upgrade.php:387
1276
- msgid "No Upgrade Required"
1277
- msgstr "Ingen opgradering er påkrævet"
1278
 
1279
- #: ../classes/upgrade.php:388
1280
- msgid "Return to welcome screen."
1281
- msgstr "Gå tilbage til velkomstskærmen."
1282
 
1283
- #: ../classes/upgrade.php:406
1284
- msgid "Upgrade Complete!"
1285
- msgstr "Opgradering fuldført!"
1286
 
1287
- #: ../classes/upgrade.php:406
1288
- msgid "Return to settings."
1289
- msgstr "Gå tilbage til indstillinger."
1290
 
1291
- #: ../classes/upgrade.php:407
1292
- msgid "Error"
1293
- msgstr "Fejl"
1294
 
1295
- #: ../classes/upgrade.php:408
1296
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1297
- msgstr "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i support forummet."
1298
 
1299
- #: ../codepress-admin-columns.php:444
1300
- msgid "Edit columns"
1301
- msgstr "Rediger kolonner"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Mikkel Breum <mikkel@wpkitchen.com>, 2013
5
  # Morten Dalgaard Johansen <support@iosoftgame.com>, 2013
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
10
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Danish (Denmark) (http://www.transifex.com/codepress/admin-columns/language/da_DK/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: da_DK\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
+ "POT-Creation-Date: \n"
22
+ "X-Generator: Poedit 1.8.5\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
25
+
26
+ #: ../codepress-admin-columns.php:451
27
+ msgid "Edit columns"
28
+ msgstr "Rediger kolonner"
 
 
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
47
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
48
  msgstr ""
49
 
50
+ #: ../classes/column.php:624
51
  msgid "Thumbnail"
52
  msgstr "Miniaturebillede"
53
 
54
+ #: ../classes/column.php:625
55
  msgid "Medium"
56
  msgstr "Medium"
57
 
58
+ #: ../classes/column.php:626
59
  msgid "Large"
60
  msgstr "Stor"
61
 
62
+ #: ../classes/column.php:627
63
  msgid "Full"
64
  msgstr "Fuld"
65
 
66
+ #: ../classes/column.php:1059
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: ../classes/column.php:1060
71
+ msgid "Lesser than"
72
+ msgstr ""
73
+
74
+ #: ../classes/column.php:1061
75
+ msgid "Greater than"
76
+ msgstr ""
77
+
78
+ #: ../classes/column.php:1062
79
+ msgid "Between"
80
+ msgstr ""
81
+
82
+ #: ../classes/column.php:1089
83
  msgid "Date Format"
84
  msgstr "Datoformat"
85
 
86
+ #: ../classes/column.php:1090
87
  msgid "This will determine how the date will be displayed."
88
  msgstr "Dette vil bestmme hvordan datoen vil blive vist."
89
 
90
+ #: ../classes/column.php:1096
91
  msgid "Example:"
92
  msgstr "Eksempel:"
93
 
94
+ #: ../classes/column.php:1098
95
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
96
+ msgstr ""
 
97
 
98
+ #: ../classes/column.php:1099
99
  msgid "Documentation on date and time formatting."
100
  msgstr "Dokumentation for dato- og tidsformattering."
101
 
102
+ #: ../classes/column.php:1113
103
  msgid "Excerpt length"
104
  msgstr "Længden for uddrag"
105
 
106
+ #: ../classes/column.php:1114
107
  msgid "Number of words"
108
  msgstr "Antal ord"
109
 
110
+ #: ../classes/column.php:1132
111
  msgid "Preview size"
112
  msgstr "Forhåndsvisningsstørrelse"
113
 
114
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
115
  msgid "Custom"
116
  msgstr "Brugerdefineret"
117
 
118
+ #: ../classes/column.php1152, ../classes/column.php:1328
119
  msgid "width"
120
  msgstr "bredde"
121
 
122
+ #: ../classes/column.php:1155
123
  msgid "height"
124
  msgstr "højde"
125
 
126
+ #: ../classes/column.php:1167
127
  msgid "Before"
128
  msgstr "Før"
129
 
130
+ #: ../classes/column.php:1167
131
  msgid "This text will appear before the custom field value."
132
  msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
133
 
134
+ #: ../classes/column.php:1168
135
  msgid "After"
136
  msgstr "Efter"
137
 
138
+ #: ../classes/column.php:1168
139
  msgid "This text will appear after the custom field value."
140
  msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
141
 
142
+ #: ../classes/column.php:1177
143
  msgid "Display Name"
144
  msgstr "Offentligt navn"
145
 
146
+ #: ../classes/column.php1178, ../classes/settings.php:733
147
  msgid "First Name"
148
  msgstr "Fornavn"
149
 
150
+ #: ../classes/column.php:1179
151
  msgid "Last Name"
152
  msgstr "Efternavn"
153
 
154
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
155
  msgid "Nickname"
156
  msgstr "Kaldenavn"
157
 
158
+ #: ../classes/column.php:1181
159
  msgid "User Login"
160
  msgstr "Brugerlogin"
161
 
162
+ #: ../classes/column.php:1182
163
  msgid "User Email"
164
  msgstr "Bruger e-mail"
165
 
166
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
167
  msgid "User ID"
168
  msgstr "Bruger ID"
169
 
170
+ #: ../classes/column.php:1184
171
  msgid "First and Last Name"
172
  msgstr "For- og efternavn"
173
 
174
+ #: ../classes/column.php:1187
175
  msgid "Display format"
176
  msgstr ""
177
 
178
+ #: ../classes/column.php:1187
179
  msgid "This is the format of the author name."
180
  msgstr "Dette er formattet for forfatterens navn"
181
 
182
+ #: ../classes/column.php:1350
183
  msgid "Edit"
184
  msgstr "Rediger"
185
 
186
+ #: ../classes/column.php1352, ../classes/column.php:1444
187
  msgid "Clone"
188
  msgstr ""
189
 
190
+ #: ../classes/column.php:1354
191
  msgid "Remove"
192
  msgstr "Fjern"
193
 
194
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
195
  msgid "Type"
196
  msgstr "Type"
197
 
198
+ #: ../classes/column.php:1372
199
  msgid "Choose a column type."
200
  msgstr "Vælg en kolonne type."
201
 
202
+ #: ../classes/column.php:1372
203
  msgid "Name"
204
  msgstr ""
205
 
206
+ #: ../classes/column.php:1382
207
  msgid "Label"
208
  msgstr "Etikette"
209
 
210
+ #: ../classes/column.php:1382
211
  msgid "This is the name which will appear as the column header."
212
  msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
213
 
214
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
215
  msgid "Width"
216
  msgstr "Bredde"
217
 
218
+ #: ../classes/column.php:1391
219
  msgid "default"
220
  msgstr "standard"
221
 
222
+ #: ../classes/column.php:1392
223
  msgid "auto"
224
  msgstr ""
225
 
226
+ #: ../classes/column.php:1466
227
+ msgid "Property To Display"
228
  msgstr ""
229
 
230
+ #: ../classes/column.php:1472
231
+ msgid "Post property to display for related post(s)."
232
  msgstr ""
233
 
234
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
235
+ msgid "Link To"
 
236
  msgstr ""
237
 
238
+ #: ../classes/column.php:1489
239
+ msgid "Edit Post Author"
240
  msgstr ""
241
 
242
+ #: ../classes/column.php:1490
243
+ msgid "View Public Post Author Page"
244
  msgstr ""
245
 
246
+ #: ../classes/column.php:1492
247
+ msgid "Page the posts should link to."
248
+ msgstr ""
249
 
250
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
251
+ msgid "Admin Columns"
252
+ msgstr "Admin Columns"
253
+
254
+ #: ../classes/review_notice.php:58
255
+ msgid "Admin Columns Pro"
256
  msgstr ""
257
 
258
+ #: ../classes/review_notice.php:68
259
+ msgid "click here"
260
  msgstr ""
261
 
262
+ #: ../classes/review_notice.php:72
263
+ msgid "Leave a review!"
264
  msgstr ""
265
 
266
+ #: ../classes/review_notice.php:73
267
+ msgid "Permanently hide notice"
268
  msgstr ""
269
 
270
+ #: ../classes/review_notice.php:80
271
+ 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."
272
+ msgstr ""
273
 
274
+ #: ../classes/review_notice.php:82
275
+ msgid "documentation page"
276
+ msgstr ""
277
 
278
+ #: ../classes/review_notice.php:86
279
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
280
+ msgstr ""
281
 
282
+ #: ../classes/review_notice.php:87
283
+ msgid "our forums"
284
+ msgstr ""
285
 
286
+ #: ../classes/review_notice.php:91
287
+ msgid "You can also find help on the %s, and %s."
288
+ msgstr ""
289
 
290
+ #: ../classes/review_notice.php:92
291
+ msgid "Admin Columns forums on WordPress.org"
292
+ msgstr ""
293
 
294
+ #: ../classes/review_notice.php:93
295
+ msgid "find answers to some frequently asked questions"
296
  msgstr ""
297
 
298
+ #: ../classes/settings.php:113
299
+ msgid "Add-on successfully activated."
300
+ msgstr ""
301
 
302
+ #: ../classes/settings.php:116
303
+ msgid "Add-on successfully deactivated."
304
+ msgstr ""
305
 
306
+ #: ../classes/settings.php:170
307
+ msgid "Admin Columns Settings"
308
+ msgstr "Admin Kolonne Indstillinger"
309
 
310
+ #: ../classes/settings.php:228
311
+ msgid "%s column is already present and can not be duplicated."
312
+ msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
 
313
 
314
+ #: ../classes/settings.php:284
315
+ msgid "Default settings succesfully restored."
316
+ msgstr "Standard indstillinger gendannet med success."
317
 
318
+ #: ../classes/settings.php:301
319
+ msgid "Overview"
320
+ msgstr "Overblik"
321
 
322
+ #: ../classes/settings.php:304
323
+ msgid ""
324
+ "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."
325
+ msgstr "Dette plugin er til at tilføje og fjerne tillægskolonner på administrationsskærme for indlægs(typer), sider, mediebibliotek, kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
326
 
327
+ #: ../classes/settings.php:307
328
+ msgid "Basics"
329
+ msgstr "Grundlæggende"
330
 
331
+ #: ../classes/settings.php:309
332
+ msgid "Change order"
333
+ msgstr "Ændre rækkefølge"
334
+
335
+ #: ../classes/settings.php:310
336
+ msgid "By dragging the columns you can change the order which they will appear in."
337
+ msgstr "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
338
+
339
+ #: ../classes/settings.php:311
340
+ msgid "Change label"
341
+ msgstr "Ændre etikette"
342
+
343
+ #: ../classes/settings.php:312
344
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
345
+ msgstr "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du vælge hver etikette for kolonnernes overskrift. "
346
+
347
+ #: ../classes/settings.php:313
348
+ msgid "Change column width"
349
+ msgstr "Ændre kolonnebredden"
350
+
351
+ #: ../classes/settings.php:314
352
+ 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."
353
+ msgstr "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at indstille kolonnebredden."
354
 
355
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
356
  msgid "Custom Field"
357
  msgstr "Brugerdefineret felt"
358
 
359
+ #: ../classes/settings.php:320
360
+ msgid "'Custom Field' column"
361
+ msgstr "'Brugerdefineret felt' kolonne"
362
+
363
+ #: ../classes/settings.php:321
364
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
365
+ msgstr "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra indlæg og brugere. Der er 10 typer som du kan sætte."
366
+
367
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
368
  msgid "Default"
369
  msgstr "Standard"
370
 
371
+ #: ../classes/settings.php:323
372
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
373
+ msgstr "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive fladtrykt og værdier separeret ved et ',' komma."
374
 
375
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
376
+ msgid "Image"
377
+ msgstr "Billede"
378
 
379
+ #: ../classes/settings.php:324
380
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
381
+ msgstr "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret ved et ',' komma )."
382
 
383
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
384
  msgid "Excerpt"
385
  msgstr "Uddrag"
386
 
387
+ #: ../classes/settings.php:325
388
+ msgid "Value: This will show the first 20 words of the Post content."
389
+ msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
 
 
 
 
390
 
391
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
392
  msgid "Multiple Values"
393
  msgstr "Flere værdier"
394
 
395
+ #: ../classes/settings.php:326
396
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
397
+ msgstr "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) tabel."
398
+
399
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
400
  msgid "Numeric"
401
  msgstr "Numerisk"
402
 
403
+ #: ../classes/settings.php:327
404
+ 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."
405
+ msgstr "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret felt) værdier."
 
 
 
 
 
 
 
 
 
 
 
 
406
 
407
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
408
+ msgid "Date"
409
+ msgstr "Dato"
410
 
411
+ #: ../classes/settings.php:328
412
+ 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."
413
+ msgstr "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a href='%s'>generalle indstillinger</a> siden."
 
414
 
415
+ #: ../classes/settings.php:329
416
+ msgid "Post Titles"
417
+ msgstr "Indlægstitler"
418
 
419
+ #: ../classes/settings.php:329
420
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
421
+ msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
422
 
423
+ #: ../classes/settings.php:330
424
+ msgid "Usernames"
425
+ msgstr "Brugernavne"
426
 
427
+ #: ../classes/settings.php:330
428
+ msgid "Value: can be one or more User ID's (seperated by ',')."
429
+ msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
430
 
431
+ #: ../classes/settings.php:331
432
+ msgid "Checkmark"
433
+ msgstr "Flueben"
434
 
435
+ #: ../classes/settings.php:331
436
+ msgid "Value: should be a 1 (one) or 0 (zero)."
437
+ msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
438
 
439
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
440
+ msgid "Color"
441
+ msgstr "Farve"
442
 
443
+ #: ../classes/settings.php:332
444
+ msgid "Value: hex value color, such as #808080."
445
+ msgstr "Værdi: hex værdi farve, for eksempel #808080."
446
 
447
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
448
+ msgid "Counter"
449
+ msgstr ""
450
 
451
+ #: ../classes/settings.php:333
452
+ 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."
453
  msgstr ""
454
 
455
+ #: ../classes/settings.php:422
456
+ msgid "Welcome to Admin Columns"
457
+ msgstr "Velkommen til Admin Columns"
458
 
459
+ #: ../classes/settings.php:425
460
+ msgid "Thank you for updating to the latest version!"
461
+ msgstr "Tak fordi du opdaterede til den seneste version!"
462
 
463
+ #: ../classes/settings.php:426
464
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
465
+ msgstr "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du kan lide det."
466
 
467
+ #: ../classes/settings.php:431
468
+ msgid "What’s New"
469
+ msgstr "Hvad er nyt"
470
 
471
+ #: ../classes/settings.php:432
472
+ msgid "Changelog"
473
+ msgstr "Ændringslog"
474
 
475
+ #: ../classes/settings.php:437
476
+ msgid "Important"
477
+ msgstr "Vigtigt"
478
 
479
+ #: ../classes/settings.php:439
480
+ msgid "Database Changes"
481
+ msgstr "Database ændringer"
482
 
483
+ #: ../classes/settings.php:440
484
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
485
+ msgstr "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du stadig kan gå tilbage til version 1x uden nogen problemer."
486
 
487
+ #: ../classes/settings.php:443
488
+ msgid "Make sure you backup your database and then click"
489
+ msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
490
 
491
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
492
+ msgid "Upgrade Database"
493
+ msgstr "Opgradér database"
494
 
495
+ #: ../classes/settings.php:446
496
+ msgid "Potential Issues"
497
+ msgstr "Mulige problemer"
498
 
499
+ #: ../classes/settings.php:447
500
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
501
+ msgstr "På grund af den betydelige omstrukturering af koden omkring udvidelser og action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er vigtigt at du læser den fulde"
502
 
503
+ #: ../classes/settings.php:447
504
+ msgid "Migrating from v1 to v2"
505
+ msgstr "Migration fra v1 til v2"
506
 
507
+ #: ../classes/settings.php:447
508
+ msgid "guide to view the full list of changes."
509
+ msgstr "guide for at vise den fulde liste med ændringer."
510
 
511
+ #: ../classes/settings.php:447
512
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
513
+ msgstr ""
514
 
515
+ #: ../classes/settings.php:450
516
+ msgid "Important!"
517
+ msgstr "Vigtigt!"
518
 
519
+ #: ../classes/settings.php:450
520
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
521
+ msgstr "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne ændringer, venligst gå tilbage til den seneste"
522
 
523
+ #: ../classes/settings.php:450
524
+ msgid "version 1"
525
+ msgstr "version 1"
526
 
527
+ #: ../classes/settings.php:450
528
+ msgid "of this plugin."
529
+ msgstr "af dette plugin."
530
 
531
+ #: ../classes/settings.php:456
532
+ msgid "Changelog for"
533
+ msgstr "Ændringslog for"
534
 
535
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
536
+ msgid "Learn more"
537
+ msgstr "Lær mere"
538
 
539
+ #: ../classes/settings.php:481
540
+ msgid "Start using Admin Columns"
541
+ msgstr "Gå i gang med at bruge Admin Columns"
542
 
543
+ #: ../classes/settings.php:500
544
+ msgid "General Settings"
545
+ msgstr "Generelle indstillinger"
546
 
547
+ #: ../classes/settings.php:501
548
+ msgid "Customize your Admin Columns settings."
549
+ msgstr "Tilpas din Admin Columns indstillinger."
550
 
551
+ #: ../classes/settings.php:512
552
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
553
  msgstr ""
554
 
555
+ #: ../classes/settings.php:559
556
+ msgid "Restore Settings"
557
+ msgstr "Gendan indstillinger"
 
 
 
 
558
 
559
+ #: ../classes/settings.php:560
560
+ msgid "This will delete all column settings and restore the default settings."
561
+ msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
562
 
563
+ #: ../classes/settings.php:566
564
+ msgid "Restore default settings"
565
+ msgstr "Gendan standard indstillinger"
566
 
567
+ #: ../classes/settings.php:566
568
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
569
+ msgstr ""
570
 
571
+ #: ../classes/settings.php:582
572
+ msgid "Posttypes"
573
+ msgstr ""
574
 
575
+ #: ../classes/settings.php:583
576
+ msgid "Others"
577
+ msgstr ""
578
 
579
+ #: ../classes/settings.php:584
580
+ msgid "Taxonomies"
581
+ msgstr ""
582
 
583
+ #: ../classes/settings.php:600
584
+ msgid "Settings"
585
+ msgstr "Indstillinger"
586
 
587
+ #: ../classes/settings.php:601
588
+ msgid "Add-ons"
589
  msgstr ""
590
 
591
+ #: ../classes/settings.php:669
592
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
593
  msgstr ""
594
 
595
+ #: ../classes/settings.php:679
596
+ msgid "Store settings"
597
+ msgstr "Gem indstillinger"
598
+
599
+ #: ../classes/settings.php:687
600
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
601
  msgstr ""
602
 
603
+ #: ../classes/settings.php:688
604
+ msgid "Restore"
605
+ msgstr "Gendan"
 
 
606
 
607
+ #: ../classes/settings.php:688
608
+ msgid "columns"
609
+ msgstr "kolonner"
 
 
610
 
611
+ #: ../classes/settings.php:707
612
+ msgid "Get Admin Columns Pro"
613
  msgstr ""
614
 
615
+ #: ../classes/settings.php:711
616
+ msgid "Add Sorting"
617
+ msgstr "Tilføj sortering"
618
 
619
+ #: ../classes/settings.php:712
620
+ msgid "Add Filtering"
621
+ msgstr "Tilføj filtrering"
622
 
623
+ #: ../classes/settings.php:713
624
+ msgid "Add Import/Export"
625
+ msgstr "Tilføj import/eksport"
626
 
627
+ #: ../classes/settings.php:714
628
+ msgid "Add Direct Editing"
629
  msgstr ""
630
 
631
+ #: ../classes/settings.php:717
632
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
633
+ msgstr ""
634
 
635
+ #: ../classes/settings.php:730
636
+ msgid "Subscribe to receive news &amp; updates below."
637
+ msgstr ""
638
 
639
+ #: ../classes/settings.php:737
640
+ msgid "Your Email"
641
+ msgstr ""
642
 
643
+ #: ../classes/settings.php:748
644
+ msgid "Are you happy with Admin Columns?"
645
+ msgstr ""
646
 
647
+ #: ../classes/settings.php:756
648
+ msgid "What's wrong? Need help? Let us know!"
649
  msgstr ""
650
 
651
+ #: ../classes/settings.php:757
652
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
653
  msgstr ""
654
 
655
+ #: ../classes/settings.php:765
656
+ msgid "Docs"
657
  msgstr ""
658
 
659
+ #: ../classes/settings.php:770
660
+ msgid "Forums"
661
  msgstr ""
662
 
663
+ #: ../classes/settings.php:779
664
+ msgid "Woohoo! We're glad to hear that!"
665
+ msgstr ""
666
 
667
+ #: ../classes/settings.php:780
668
+ 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!"
669
+ msgstr ""
670
 
671
+ #: ../classes/settings.php:784
672
+ msgid "Rate"
673
  msgstr ""
674
 
675
+ #: ../classes/settings.php:795
676
+ msgid "Tweet"
677
+ msgstr ""
678
 
679
+ #: ../classes/settings.php:805
680
+ msgid "Buy Pro"
681
+ msgstr ""
682
 
683
+ #: ../classes/settings.php:817
684
+ msgid "Support"
685
+ msgstr "Hjælp"
686
 
687
+ #: ../classes/settings.php:820
688
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
689
+ msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
690
 
691
+ #: ../classes/settings.php:823
692
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
693
+ msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
694
 
695
+ #: ../classes/settings.php:852
696
+ msgid "Drag and drop to reorder"
697
+ msgstr "Træk og slip for at ændre rækkefølgen"
698
 
699
+ #: ../classes/settings.php:855
700
+ msgid "Add Column"
701
+ msgstr "Tilføj kolonne"
702
 
703
+ #: ../classes/settings.php:936
704
+ msgid "Active"
705
  msgstr ""
706
 
707
+ #: ../classes/settings.php:937
708
+ msgid "Deactivate"
709
+ msgstr ""
710
 
711
+ #: ../classes/settings.php:944
712
+ msgid "Installed"
713
  msgstr ""
714
 
715
+ #: ../classes/settings.php:945
716
+ msgid "Activate"
 
 
 
 
717
  msgstr ""
718
 
719
+ #: ../classes/settings.php:959
720
+ msgid "Download & Install"
721
  msgstr ""
722
 
723
+ #: ../classes/settings.php:964
724
+ msgid "Get this add-on"
725
  msgstr ""
726
 
727
+ #: ../classes/storage_model.php:262
728
+ msgid "settings succesfully restored."
729
+ msgstr "indstillinger er gendannet med success."
 
 
 
 
730
 
731
+ #: ../classes/storage_model.php:278
732
+ msgid "No columns settings available."
733
+ msgstr "Ingen kolonneindstillinger tilgængelige."
734
 
735
+ #: ../classes/storage_model.php:299
736
+ msgid "You are trying to store the same settings for %s."
737
+ msgstr "Du forsøger at gemme samme indstillinger for %s."
738
 
739
+ #: ../classes/storage_model.php:303
740
+ msgid "Settings for %s updated successfully."
741
+ msgstr ""
742
 
743
+ #: ../classes/storage_model.php:643
744
+ msgid "Columns by Plugins"
745
+ msgstr ""
746
 
747
+ #: ../classes/storage_model.php:862
748
+ msgid "View"
749
+ msgstr "Vis"
750
 
751
+ #: ../classes/upgrade.php:62
752
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
753
  msgstr ""
754
 
755
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
756
+ msgid "Upgrade"
757
+ msgstr "Opgrader"
758
 
759
+ #: ../classes/upgrade.php:136
760
+ msgid "requires a database upgrade"
761
+ msgstr "en opgradering af databasen er påkrævet"
762
 
763
+ #: ../classes/upgrade.php:139
764
+ msgid "why?"
765
+ msgstr "hvorfor?"
766
 
767
+ #: ../classes/upgrade.php:140
768
+ msgid "Please"
769
+ msgstr "Venligst"
 
 
 
770
 
771
+ #: ../classes/upgrade.php:141
772
+ msgid "backup your database"
773
+ msgstr "tag backup af din database"
774
 
775
+ #: ../classes/upgrade.php:142
776
+ msgid "then click"
777
+ msgstr "derefter klik"
778
 
779
+ #: ../classes/upgrade.php:351
780
+ msgid "Migrating Column Settings"
781
+ msgstr "Migration af kolonne indstillinger"
782
 
783
+ #: ../classes/upgrade.php:387
784
+ msgid "No Upgrade Required"
785
+ msgstr "Ingen opgradering er påkrævet"
 
786
 
787
+ #: ../classes/upgrade.php:388
788
+ msgid "Return to welcome screen."
789
+ msgstr "Gå tilbage til velkomstskærmen."
790
 
791
+ #: ../classes/upgrade.php:406
792
+ msgid "Upgrade Complete!"
793
+ msgstr "Opgradering fuldført!"
 
794
 
795
+ #: ../classes/upgrade.php:406
796
+ msgid "Return to settings."
797
+ msgstr "Gå tilbage til indstillinger."
798
 
799
+ #: ../classes/upgrade.php:407
800
+ msgid "Error"
801
+ msgstr "Fejl"
 
802
 
803
+ #: ../classes/upgrade.php:408
804
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
805
+ msgstr "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i support forummet."
806
 
807
+ #: ../classes/column/acf-placeholder.php:19
808
+ msgid "ACF Field"
809
  msgstr ""
810
 
811
+ #: ../classes/column/acf-placeholder.php:35
812
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
813
  msgstr ""
814
 
815
+ #: ../classes/column/acf-placeholder.php:38
816
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
817
  msgstr ""
818
 
819
+ #: ../classes/column/acf-placeholder.php:44
820
+ msgid "Find out more"
821
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
 
823
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
824
+ msgid "Actions"
825
+ msgstr "Handlinger"
826
 
827
+ #: ../classes/column/actions.php:96
828
+ msgid "Use icons?"
829
+ msgstr ""
830
 
831
+ #: ../classes/column/actions.php:96
832
+ msgid "Use icons instead of text for displaying the actions."
833
+ msgstr ""
 
834
 
835
+ #: ../classes/column/custom-field.php:96
836
+ msgid "Checkmark (true/false)"
837
+ msgstr "Flueben (ja/nej)"
838
 
839
+ #: ../classes/column/custom-field.php:102
840
+ msgid "Media Library"
841
+ msgstr "Mediebibliotek"
842
 
843
+ #: ../classes/column/custom-field.php:105
844
+ msgid "Post Title (Post ID's)"
845
+ msgstr "Indlæg titel (Indlæg ID)"
846
 
847
+ #: ../classes/column/custom-field.php:106
848
+ msgid "Username (User ID's)"
849
+ msgstr "Brugernavn (Bruger ID'er)"
850
 
851
+ #: ../classes/column/custom-field.php:107
852
+ msgid "Term Name (Term ID's)"
853
+ msgstr ""
854
 
855
+ #: ../classes/column/custom-field.php:391
856
+ msgid "Select your custom field."
857
+ msgstr "Vælg dit brugerdefineret felt."
858
 
859
+ #: ../classes/column/custom-field.php:401
860
+ msgid "No custom fields available."
861
+ msgstr "Ingen brugerdefineret felter tilgængelige."
862
 
863
+ #: ../classes/column/custom-field.php:401
864
+ msgid "Please create a %s item first."
865
  msgstr ""
866
 
867
+ #: ../classes/column/custom-field.php:408
868
+ msgid "Field Type"
869
+ msgstr "Felttype"
 
 
 
 
 
 
 
 
870
 
871
+ #: ../classes/column/custom-field.php:408
872
+ msgid "This will determine how the value will be displayed."
873
+ msgstr "Dette afgør hvordan værdien vil blive vist."
874
 
875
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
876
+ msgid "Taxonomy"
877
+ msgstr "Taksonomi"
878
 
879
+ #: ../classes/column/used-by-menu.php:20
880
+ msgid "Used by Menu"
881
+ msgstr ""
882
 
883
+ #: ../classes/column/used-by-menu.php:133
884
+ msgid "Link to menu"
885
+ msgstr ""
886
 
887
+ #: ../classes/column/used-by-menu.php:133
888
+ msgid "This will make the title link to the menu."
889
+ msgstr ""
890
 
891
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
892
+ msgid "ID"
893
+ msgstr "ID"
894
 
895
+ #: ../classes/column/comment/agent.php:19
896
+ msgid "Agent"
897
+ msgstr "Agent"
898
 
899
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
900
+ msgid "Approved"
901
+ msgstr "Godkendt"
902
 
903
+ #: ../classes/column/comment/author-avatar.php:19
904
+ msgid "Avatar"
905
+ msgstr "Avatar"
906
 
907
+ #: ../classes/column/comment/author-email.php:19
908
+ msgid "Author email"
909
+ msgstr "Forfatter email"
910
 
911
+ #: ../classes/column/comment/author-ip.php:19
912
+ msgid "Author IP"
913
+ msgstr "Forfatter IP"
914
 
915
+ #: ../classes/column/comment/author-name.php:12
916
+ msgid "Author name"
917
+ msgstr ""
 
918
 
919
+ #: ../classes/column/comment/author-url.php:19
920
+ msgid "Author url"
921
+ msgstr "Forfatter webadresse"
922
 
923
+ #: ../classes/column/comment/author.php:19
924
+ msgid "Author"
925
+ msgstr "Forfatter"
926
 
927
+ #: ../classes/column/comment/date-gmt.php:19
928
+ msgid "Date GMT"
929
+ msgstr "Dato GMT"
930
 
931
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
932
+ msgid "Content"
933
+ msgstr ""
934
 
935
+ #: ../classes/column/comment/post.php:19
936
+ msgid "Post"
937
+ msgstr ""
938
 
939
+ #: ../classes/column/comment/reply-to.php:19
940
+ msgid "In Reply To"
941
+ msgstr "Som svar på"
942
 
943
+ #: ../classes/column/comment/user.php:11
944
+ msgid "User"
945
+ msgstr ""
946
 
947
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
948
+ msgid "Word count"
949
+ msgstr "Antal ord"
950
 
951
+ #: ../classes/column/media/alternate-text.php:19
952
+ msgid "Alt"
953
+ msgstr "Alt"
954
 
955
+ #: ../classes/column/media/attached-to.php:19
956
+ msgid "Attached to post"
957
  msgstr ""
958
 
959
+ #: ../classes/column/media/available-sizes.php:20
960
+ msgid "Available Sizes"
961
+ msgstr "Tilgængelige størrelser"
 
 
 
 
 
 
 
 
962
 
963
+ #: ../classes/column/media/available-sizes.php:40
964
+ msgid "full size"
965
+ msgstr "fuld størrelse"
966
 
967
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
968
+ msgid "Caption"
969
+ msgstr "Titeltekst"
970
 
971
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
972
+ msgid "Description"
973
+ msgstr "Beskrivelse"
974
 
975
+ #: ../classes/column/media/dimensions.php:19
976
+ msgid "Dimensions"
977
+ msgstr "Mål"
978
 
979
+ #: ../classes/column/media/exif-data.php:19
980
+ msgid "EXIF data"
981
+ msgstr "EXIF data"
982
 
983
+ #: ../classes/column/media/exif-data.php:38
984
+ msgid "Aperture"
985
+ msgstr "Aperture"
986
 
987
+ #: ../classes/column/media/exif-data.php:39
988
+ msgid "Credit"
989
+ msgstr "Credit"
990
 
991
+ #: ../classes/column/media/exif-data.php:40
992
+ msgid "Camera"
993
+ msgstr "Kamera"
 
994
 
995
+ #: ../classes/column/media/exif-data.php:42
996
+ msgid "Timestamp"
997
+ msgstr "Timestamp"
998
 
999
+ #: ../classes/column/media/exif-data.php:43
1000
+ msgid "Copyright EXIF"
1001
+ msgstr "Copyright EXIF"
1002
 
1003
+ #: ../classes/column/media/exif-data.php:44
1004
+ msgid "Focal Length"
1005
+ msgstr "Focal Length"
 
1006
 
1007
+ #: ../classes/column/media/exif-data.php:45
1008
+ msgid "ISO"
1009
+ msgstr "ISO"
1010
 
1011
+ #: ../classes/column/media/exif-data.php:46
1012
+ msgid "Shutter Speed"
1013
+ msgstr "Shutter Speed"
1014
 
1015
+ #: ../classes/column/media/exif-data.php:47
1016
+ msgid "Title"
1017
+ msgstr "Title"
1018
 
1019
+ #: ../classes/column/media/file-name.php:19
1020
+ msgid "File name"
1021
+ msgstr "Filnavn"
1022
 
1023
+ #: ../classes/column/media/file-size.php:19
1024
+ msgid "File size"
1025
+ msgstr "Filstørrelse"
1026
 
1027
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1028
+ msgid "Full path"
1029
+ msgstr "Fuld sti"
1030
 
1031
+ #: ../classes/column/media/full-path.php:83
1032
+ msgid "Path scope"
1033
  msgstr ""
1034
 
1035
+ #: ../classes/column/media/full-path.php:84
1036
+ msgid "Part of the file path to display"
 
1037
  msgstr ""
1038
 
1039
+ #: ../classes/column/media/full-path.php:97
1040
+ msgid "Relative to domain"
1041
  msgstr ""
1042
 
1043
+ #: ../classes/column/media/full-path.php:102
1044
+ msgid "Relative to main uploads folder "
1045
  msgstr ""
1046
 
1047
+ #: ../classes/column/media/height.php:19
1048
+ msgid "Height"
1049
+ msgstr "Højde"
1050
 
1051
+ #: ../classes/column/media/mime-type.php:19
1052
+ msgid "Mime type"
1053
+ msgstr "Mime type"
1054
 
1055
+ #: ../classes/column/post/attachment-count.php:19
1056
+ msgid "No. of Attachments"
1057
+ msgstr "Antal vedhæftede filer"
1058
 
1059
+ #: ../classes/column/post/attachment.php:19
1060
+ msgid "Attachments"
1061
  msgstr ""
1062
 
1063
+ #: ../classes/column/post/author-name.php:20
1064
+ msgid "Display Author As"
1065
+ msgstr "Vis forfatter som"
1066
 
1067
+ #: ../classes/column/post/author-name.php:100
1068
+ msgid "View Public Author Page"
1069
  msgstr ""
1070
 
1071
+ #: ../classes/column/post/author-name.php:102
1072
+ msgid "Page the author name should link to."
1073
  msgstr ""
1074
 
1075
+ #: ../classes/column/post/before-moretag.php:19
1076
+ msgid "Before More Tag"
1077
+ msgstr "Før mere-mærket"
1078
 
1079
+ #: ../classes/column/post/comment-count.php:20
1080
+ msgid "Comment count"
1081
+ msgstr "Antal kommentare"
1082
 
1083
+ #: ../classes/column/post/comment-count.php:34
1084
+ msgid "Total"
1085
+ msgstr "Total"
1086
 
1087
+ #: ../classes/column/post/comment-count.php:36
1088
+ msgid "Pending"
1089
+ msgstr "Afventende"
 
1090
 
1091
+ #: ../classes/column/post/comment-count.php:37
1092
+ msgid "Spam"
1093
+ msgstr "Spam"
1094
 
1095
+ #: ../classes/column/post/comment-count.php:38
1096
+ msgid "Trash"
1097
+ msgstr "Papirkurv"
1098
 
1099
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1100
+ msgid "Comment status"
1101
+ msgstr "Kommentar status"
1102
 
1103
+ #: ../classes/column/post/comment-count.php:99
1104
+ msgid "Select which comment status you like to display."
1105
+ msgstr "Vælg hvilken kommentarstatus du vil vise."
1106
 
1107
+ #: ../classes/column/post/depth.php:19
1108
+ msgid "Depth"
1109
  msgstr ""
1110
 
1111
+ #: ../classes/column/post/estimated-reading-time.php:19
1112
+ msgid "Estimated Reading Time"
1113
  msgstr ""
1114
 
1115
+ #: ../classes/column/post/estimated-reading-time.php:66
1116
+ msgid "second"
1117
+ msgid_plural "seconds"
1118
+ msgstr[0] ""
1119
+ msgstr[1] ""
1120
+
1121
+ #: ../classes/column/post/estimated-reading-time.php:69
1122
+ msgid "minute"
1123
+ msgid_plural "minutes"
1124
+ msgstr[0] ""
1125
+ msgstr[1] ""
1126
+
1127
+ #: ../classes/column/post/estimated-reading-time.php:107
1128
+ msgid "Words per minute"
1129
  msgstr ""
1130
 
1131
+ #: ../classes/column/post/estimated-reading-time.php:108
1132
+ msgid "Estimated reading time in words per minute"
1133
  msgstr ""
1134
 
1135
+ #: ../classes/column/post/featured-image.php:19
1136
+ msgid "Featured Image"
1137
+ msgstr "Udvalgt billede"
1138
 
1139
+ #: ../classes/column/post/formats.php:19
1140
+ msgid "Post Format"
1141
+ msgstr "Indlæg format"
1142
 
1143
+ #: ../classes/column/post/last-modified-author.php:20
1144
+ msgid "Last Modified Author"
1145
+ msgstr ""
 
1146
 
1147
+ #: ../classes/column/post/modified.php:19
1148
+ msgid "Last modified"
1149
+ msgstr "Sidst ændret"
1150
+
1151
+ #: ../classes/column/post/order.php:19
1152
+ msgid "Order"
1153
  msgstr ""
1154
 
1155
+ #: ../classes/column/post/page-template.php:19
1156
+ msgid "Page Template"
1157
+ msgstr "Sideskabelon"
1158
 
1159
+ #: ../classes/column/post/parent.php:19
1160
+ msgid "Parent"
1161
+ msgstr "Forældre"
1162
 
1163
+ #: ../classes/column/post/path.php:19
1164
+ msgid "Path"
1165
  msgstr ""
1166
 
1167
+ #: ../classes/column/post/permalink.php:19
1168
+ msgid "Permalink"
1169
+ msgstr ""
1170
 
1171
+ #: ../classes/column/post/permalink.php:68
1172
+ msgid "Link to post"
1173
  msgstr ""
1174
 
1175
+ #: ../classes/column/post/permalink.php:68
1176
+ msgid "This will make the permalink clickable."
1177
  msgstr ""
1178
 
1179
+ #: ../classes/column/post/ping-status.php:19
1180
+ msgid "Ping status"
1181
+ msgstr "Ping status"
1182
 
1183
+ #: ../classes/column/post/roles.php:19
1184
+ msgid "Roles"
1185
+ msgstr "Roller"
1186
+
1187
+ #: ../classes/column/post/shortcodes.php:19
1188
+ msgid "Shortcodes"
1189
  msgstr ""
1190
 
1191
+ #: ../classes/column/post/slug.php:19
1192
+ msgid "Slug"
1193
+ msgstr "Kort titel"
1194
 
1195
+ #: ../classes/column/post/status.php:21
1196
+ msgid "Status"
1197
+ msgstr "Status"
1198
 
1199
+ #: ../classes/column/post/sticky.php:19
1200
+ msgid "Sticky"
1201
+ msgstr "Opslag"
1202
 
1203
+ #: ../classes/column/post/title-raw.php:19
1204
+ msgid "Title without actions"
1205
+ msgstr ""
1206
 
1207
+ #: ../classes/column/link/length.php:19
1208
+ msgid "Length"
1209
+ msgstr "Længde"
1210
 
1211
+ #: ../classes/column/link/notes.php:19
1212
+ msgid "Notes"
1213
+ msgstr "Noter"
1214
 
1215
+ #: ../classes/column/link/owner.php:19
1216
+ msgid "Owner"
1217
+ msgstr "Ejer"
1218
 
1219
+ #: ../classes/column/link/rss.php:19
1220
+ msgid "Rss"
1221
+ msgstr "Rss"
1222
 
1223
+ #: ../classes/column/link/target.php:19
1224
+ msgid "Target"
1225
+ msgstr "Mål"
1226
 
1227
+ #: ../classes/column/user/display-name.php:19
1228
+ msgid "Display name"
1229
+ msgstr ""
1230
 
1231
+ #: ../classes/column/user/first-name.php:19
1232
+ msgid "First name"
1233
+ msgstr "Fornavn"
1234
 
1235
+ #: ../classes/column/user/last-name.php:19
1236
+ msgid "Last name"
1237
+ msgstr "Efternavn"
1238
 
1239
+ #: ../classes/column/user/post-count.php:19
1240
+ msgid "Post Count"
1241
+ msgstr "Antal indlæg"
1242
 
1243
+ #: ../classes/column/user/post-count.php:89
1244
+ msgid "Post Type"
1245
+ msgstr "Indlægstype"
1246
+
1247
+ #: ../classes/column/user/registered.php:19
1248
+ msgid "Registered"
1249
+ msgstr "Registreret"
1250
+
1251
+ #: ../classes/column/user/rich-editing.php:19
1252
+ msgid "Visual Editor"
1253
+ msgstr ""
1254
+
1255
+ #: ../classes/column/user/url.php:19
1256
+ msgid "Url"
1257
+ msgstr "Webadresse"
languages/codepress-admin-columns-es_ES.mo ADDED
Binary file
languages/{cpac-es_ES.po → codepress-admin-columns-es_ES.po} RENAMED
@@ -1,31 +1,30 @@
1
- #
 
2
  # Translators:
3
  # redywebs <correo.1@redywebs.com>, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
- "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
9
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-columns/language/es_ES/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: es_ES\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Generator: Poedit 1.8.1\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
21
  "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPath-1: ..\n"
23
- "X-Poedit-SearchPathExcluded-0: ../src\n"
24
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
25
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
@@ -47,1272 +46,1210 @@ msgstr ""
47
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
48
  msgstr ""
49
 
50
- #: ../classes/column.php:597
51
  msgid "Thumbnail"
52
  msgstr "Miniatura"
53
 
54
- #: ../classes/column.php:598
55
  msgid "Medium"
56
  msgstr "Medio"
57
 
58
- #: ../classes/column.php:599
59
  msgid "Large"
60
  msgstr "Largo"
61
 
62
- #: ../classes/column.php:600
63
  msgid "Full"
64
  msgstr "Completo"
65
 
66
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "Date Format"
68
  msgstr "Formato de Fecha"
69
 
70
- #: ../classes/column.php:1042
71
  msgid "This will determine how the date will be displayed."
72
  msgstr "Esto determinará cómo la fecha se mostrará."
73
 
74
- #: ../classes/column.php:1048
75
  msgid "Example:"
76
  msgstr "Ejemplo:"
77
 
78
- #: ../classes/column.php:1050
79
- #, php-format
80
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
81
- msgstr "Dejar en blanco para formato de fecha de WordPress, cambie su <a href=\"%s\">formato de fecha por defecto aquí</a>."
82
 
83
- #: ../classes/column.php:1051
84
  msgid "Documentation on date and time formatting."
85
  msgstr "Documentación en formato de fecha y hora."
86
 
87
- #: ../classes/column.php:1065
88
  msgid "Excerpt length"
89
  msgstr "Tamaño de extracto"
90
 
91
- #: ../classes/column.php:1066
92
  msgid "Number of words"
93
  msgstr "Número de palabras"
94
 
95
- #: ../classes/column.php:1084
96
  msgid "Preview size"
97
  msgstr "Tamaño de vista previa"
98
 
99
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
100
  msgid "Custom"
101
  msgstr "Personalizado"
102
 
103
- #: ../classes/column.php:1104 ../classes/column.php:1251
104
  msgid "width"
105
  msgstr "ancho"
106
 
107
- #: ../classes/column.php:1107
108
  msgid "height"
109
  msgstr "largo"
110
 
111
- #: ../classes/column.php:1119
112
  msgid "Before"
113
  msgstr "Antes"
114
 
115
- #: ../classes/column.php:1119
116
  msgid "This text will appear before the custom field value."
117
  msgstr "Este texto aparecerá antes del valor del campo personalizado."
118
 
119
- #: ../classes/column.php:1120
120
  msgid "After"
121
  msgstr "Después"
122
 
123
- #: ../classes/column.php:1120
124
  msgid "This text will appear after the custom field value."
125
  msgstr "Este texto aparecerá después del valor del campo personalizado."
126
 
127
- #: ../classes/column.php:1129
128
  msgid "Display Name"
129
  msgstr "Nombre a Mostrar"
130
 
131
- #: ../classes/column.php:1130
132
  msgid "First Name"
133
  msgstr "Primer Nombre"
134
 
135
- #: ../classes/column.php:1131
136
  msgid "Last Name"
137
  msgstr "Apellido"
138
 
139
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
140
  msgid "Nickname"
141
  msgstr "Alias"
142
 
143
- #: ../classes/column.php:1133
144
  msgid "User Login"
145
  msgstr "Nombre de Usuario"
146
 
147
- #: ../classes/column.php:1134
148
  msgid "User Email"
149
  msgstr "Email de Usuario"
150
 
151
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
152
  msgid "User ID"
153
  msgstr "ID de Usuario"
154
 
155
- #: ../classes/column.php:1136
156
  msgid "First and Last Name"
157
  msgstr "Primer Nombre y Apellido"
158
 
159
- #: ../classes/column.php:1139
160
  msgid "Display format"
161
  msgstr ""
162
 
163
- #: ../classes/column.php:1139
164
  msgid "This is the format of the author name."
165
  msgstr "Esto es el formato del nombre del autor."
166
 
167
- #: ../classes/column.php:1273
168
  msgid "Edit"
169
  msgstr "Editar"
170
 
171
- #: ../classes/column.php:1275 ../classes/column.php:1367
172
  msgid "Clone"
173
  msgstr ""
174
 
175
- #: ../classes/column.php:1277 ../classes/column.php:1369
176
  msgid "Remove"
177
  msgstr "Borrar"
178
 
179
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13
180
- #: ../classes/column/custom-field.php:407
181
  msgid "Type"
182
  msgstr "Tipo"
183
 
184
- #: ../classes/column.php:1295
185
  msgid "Choose a column type."
186
  msgstr "Escoger un tipo de columna."
187
 
188
- #: ../classes/column.php:1295
189
  msgid "Name"
190
  msgstr ""
191
 
192
- #: ../classes/column.php:1305
193
  msgid "Label"
194
  msgstr "Etiqueta"
195
 
196
- #: ../classes/column.php:1305
197
  msgid "This is the name which will appear as the column header."
198
  msgstr "Este es el nombre que aparecerá como el encabezado de la columna."
199
 
200
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
201
  msgid "Width"
202
  msgstr "Ancho"
203
 
204
- #: ../classes/column.php:1314
205
  msgid "default"
206
  msgstr "por defecto"
207
 
208
- #: ../classes/column.php:1315
209
  msgid "auto"
210
  msgstr ""
211
 
212
- #: ../classes/column/acf-placeholder.php:19
213
- msgid "ACF Field"
214
- msgstr "Campo ACF"
215
 
216
- #: ../classes/column/acf-placeholder.php:32
217
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
218
  msgstr ""
219
 
220
- #: ../classes/column/acf-placeholder.php:35
221
- #, php-format
222
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
223
- msgstr "Si tiene una licencia de desarrollador por favor baje e instale su add-on ACF de <a href='%s'>la pestaña de add-ons</a>."
224
 
225
- #: ../classes/column/acf-placeholder.php:38
226
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
227
- msgstr "Admin Columns Pro - Developer ofrece una integración completa de Campos Personalizados Avanzados, permitiéndole mostrar y editar fácilmente campos ACF desde el resumen de sus posts."
228
 
229
- #: ../classes/column/acf-placeholder.php:44
230
- msgid "Find out more"
231
- msgstr "Descubra más"
232
 
233
- #: ../classes/column/actions.php:29
234
- msgid "Actions"
235
- msgstr "Acciones"
236
 
237
- #: ../classes/column/actions.php:96
238
- msgid "Use icons?"
 
 
 
 
239
  msgstr ""
240
 
241
- #: ../classes/column/actions.php:96
242
- msgid "Use icons instead of text for displaying the actions."
243
  msgstr ""
244
 
245
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72
246
- #: ../classes/column/used-by-menu.php:137
247
- msgid "Yes"
248
  msgstr ""
249
 
250
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76
251
- #: ../classes/column/used-by-menu.php:141
252
- msgid "No"
253
  msgstr ""
254
 
255
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19
256
- #: ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
257
- msgid "ID"
258
- msgstr "ID"
259
 
260
- #: ../classes/column/comment/agent.php:19
261
- msgid "Agent"
262
- msgstr "Agente"
263
 
264
- #: ../classes/column/comment/approved.php:19
265
- #: ../classes/column/post/comment-count.php:35
266
- msgid "Approved"
267
- msgstr "Aprobado"
268
 
269
- #: ../classes/column/comment/author-avatar.php:19
270
- msgid "Avatar"
271
- msgstr "Avatar"
272
 
273
- #: ../classes/column/comment/author-email.php:19
274
- msgid "Author email"
275
- msgstr "Email del autor"
276
 
277
- #: ../classes/column/comment/author-ip.php:19
278
- msgid "Author IP"
279
- msgstr "IP del autor"
280
 
281
- #: ../classes/column/comment/author-name.php:12
282
- msgid "Author name"
283
  msgstr ""
284
 
285
- #: ../classes/column/comment/author-url.php:19
286
- msgid "Author url"
287
- msgstr "Url del autor"
288
 
289
- #: ../classes/column/comment/author.php:19
290
- msgid "Author"
291
- msgstr "Autor"
292
 
293
- #: ../classes/column/comment/date-gmt.php:19
294
- msgid "Date GMT"
295
- msgstr "Fecha GMT"
296
 
297
- #: ../classes/column/comment/date-gmt.php:30
298
- #: ../classes/column/comment/date.php:30
299
- #, php-format
300
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
301
- msgstr "Enviado el <a href=\"%1$s\">%2$s a las %3$s</a>"
302
 
303
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98
304
- #: ../classes/settings.php:318
305
- msgid "Date"
306
- msgstr "Fecha"
307
 
308
- #: ../classes/column/comment/excerpt.php:19
309
- #: ../classes/column/post/content.php:19
310
- msgid "Content"
311
- msgstr ""
312
 
313
- #: ../classes/column/comment/reply-to.php:19
314
- msgid "In Reply To"
315
- msgstr "En Respuesta A"
316
 
317
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
318
- msgid "User"
319
- msgstr ""
320
 
321
- #: ../classes/column/comment/word-count.php:19
322
- #: ../classes/column/post/word-count.php:19
323
- msgid "Word count"
324
- msgstr "Conteo de palabra"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
 
326
- #: ../classes/column/custom-field.php:23
327
- #: ../classes/column/custom-field.php:390 ../classes/settings.php:308
328
  msgid "Custom Field"
329
  msgstr "Campo Personalizado"
330
 
331
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313
332
- #: ../classes/storage_model.php:596
 
 
 
 
 
 
 
333
  msgid "Default"
334
  msgstr "Por Defecto"
335
 
336
- #: ../classes/column/custom-field.php:95
337
- msgid "Checkmark (true/false)"
338
- msgstr "Marca de Verificación (true/false)"
339
 
340
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
341
- msgid "Color"
342
- msgstr "Color"
343
 
344
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
345
- msgid "Counter"
346
- msgstr "Contador"
347
 
348
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19
349
- #: ../classes/settings.php:315
350
  msgid "Excerpt"
351
  msgstr "Extracto"
352
 
353
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19
354
- #: ../classes/settings.php:314
355
- msgid "Image"
356
- msgstr "Imagen"
357
-
358
- #: ../classes/column/custom-field.php:101
359
- #: ../classes/storage_model/media.php:13
360
- msgid "Media Library"
361
- msgstr "Librería de Media"
362
 
363
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
364
  msgid "Multiple Values"
365
  msgstr "Valores Múltiples"
366
 
367
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
368
  msgid "Numeric"
369
  msgstr "Numérico"
370
 
371
- #: ../classes/column/custom-field.php:104
372
- msgid "Post Title (Post ID's)"
373
- msgstr "Título del Post (IDs de Post)"
374
 
375
- #: ../classes/column/custom-field.php:105
376
- msgid "Username (User ID's)"
377
- msgstr "Nombre de Usuario (IDs de Usuario)"
378
 
379
- #: ../classes/column/custom-field.php:106
380
- msgid "Term Name (Term ID's)"
381
- msgstr ""
382
 
383
- #: ../classes/column/custom-field.php:390
384
- msgid "Select your custom field."
385
- msgstr "Seleccione su campo personalizado."
386
 
387
- #: ../classes/column/custom-field.php:400
388
- msgid "No custom fields available."
389
- msgstr "No hay campos personalizados disponibles."
390
 
391
- #: ../classes/column/custom-field.php:400
392
- #, php-format
393
- msgid "Please create a %s item first."
394
- msgstr ""
395
 
396
- #: ../classes/column/custom-field.php:407
397
- msgid "Field Type"
398
- msgstr "Tipo de Campo"
399
 
400
- #: ../classes/column/custom-field.php:407
401
- msgid "This will determine how the value will be displayed."
402
- msgstr "Esto determinará cómo el valor se mostrará."
403
 
404
- #: ../classes/column/link/description.php:19
405
- #: ../classes/column/media/description.php:19
406
- #: ../classes/column/user/description.php:19
407
- msgid "Description"
408
- msgstr "Decripción"
409
 
410
- #: ../classes/column/link/length.php:19
411
- msgid "Length"
412
- msgstr "Tamaño"
413
 
414
- #: ../classes/column/link/notes.php:19
415
- msgid "Notes"
416
- msgstr "Notas"
417
 
418
- #: ../classes/column/link/owner.php:19
419
- msgid "Owner"
420
- msgstr "Dueño"
421
 
422
- #: ../classes/column/link/rss.php:19
423
- msgid "Rss"
424
- msgstr "Rss"
425
 
426
- #: ../classes/column/link/target.php:19
427
- msgid "Target"
428
- msgstr "Objetivo"
429
 
430
- #: ../classes/column/media/alternate-text.php:19
431
- msgid "Alt"
432
- msgstr "Alt"
433
 
434
- #: ../classes/column/media/attached-to.php:19
435
- msgid "Attached to post"
436
- msgstr ""
437
 
438
- #: ../classes/column/media/available-sizes.php:20
439
- msgid "Available Sizes"
440
- msgstr "Tamaños Disponibles"
441
 
442
- #: ../classes/column/media/available-sizes.php:40
443
- msgid "full size"
444
- msgstr "tamaño completo"
445
 
446
- #: ../classes/column/media/caption.php:19
447
- #: ../classes/column/media/exif-data.php:41
448
- msgid "Caption"
449
- msgstr "Caption"
450
 
451
- #: ../classes/column/media/dimensions.php:19
452
- msgid "Dimensions"
453
- msgstr "Dimensiones"
454
 
455
- #: ../classes/column/media/exif-data.php:19
456
- msgid "EXIF data"
457
- msgstr "Datos EXIF"
458
 
459
- #: ../classes/column/media/exif-data.php:38
460
- msgid "Aperture"
461
- msgstr "Apertura"
462
 
463
- #: ../classes/column/media/exif-data.php:39
464
- msgid "Credit"
465
- msgstr "Crédito"
466
 
467
- #: ../classes/column/media/exif-data.php:40
468
- msgid "Camera"
469
- msgstr "Cámara"
470
 
471
- #: ../classes/column/media/exif-data.php:42
472
- msgid "Timestamp"
473
- msgstr "Marca de tiempo"
474
 
475
- #: ../classes/column/media/exif-data.php:43
476
- msgid "Copyright EXIF"
477
- msgstr "Copyright EXIF"
478
 
479
- #: ../classes/column/media/exif-data.php:44
480
- msgid "Focal Length"
481
- msgstr "Distancia Focal"
482
 
483
- #: ../classes/column/media/exif-data.php:45
484
- msgid "ISO"
485
- msgstr "ISO"
486
 
487
- #: ../classes/column/media/exif-data.php:46
488
- msgid "Shutter Speed"
489
- msgstr "Velocidad del Disparador"
490
 
491
- #: ../classes/column/media/exif-data.php:47
492
- msgid "Title"
493
- msgstr "Título"
494
 
495
- #: ../classes/column/media/file-name.php:19
496
- msgid "File name"
497
- msgstr "Nombre de archivo"
498
 
499
- #: ../classes/column/media/file-size.php:19
500
- msgid "File size"
501
- msgstr "Tamaño de archivo"
502
 
503
- #: ../classes/column/media/full-path.php:19
504
- #: ../classes/column/media/full-path.php:92
505
- msgid "Full path"
506
- msgstr "Camino completo"
507
 
508
- #: ../classes/column/media/full-path.php:83
509
- msgid "Path scope"
510
- msgstr ""
511
 
512
- #: ../classes/column/media/full-path.php:84
513
- msgid "Part of the file path to display"
514
- msgstr ""
515
 
516
- #: ../classes/column/media/full-path.php:97
517
- msgid "Relative to domain"
518
- msgstr ""
519
 
520
- #: ../classes/column/media/full-path.php:102
521
- msgid "Relative to main uploads folder "
 
 
 
 
522
  msgstr ""
523
 
524
- #: ../classes/column/media/height.php:19
525
- msgid "Height"
526
- msgstr "Largo"
527
 
528
- #: ../classes/column/media/mime-type.php:19
529
- msgid "Mime type"
530
- msgstr "Tipo de mime"
531
 
532
- #: ../classes/column/post/attachment-count.php:19
533
- msgid "No. of Attachments"
534
- msgstr "No. de Adjuntos"
535
 
536
- #: ../classes/column/post/attachment.php:19
537
- msgid "Attachments"
538
  msgstr ""
539
 
540
- #: ../classes/column/post/author-name.php:20
541
- msgid "Display Author As"
542
- msgstr "Mostrar Autor Como"
543
 
544
- #: ../classes/column/post/before-moretag.php:19
545
- msgid "Before More Tag"
546
- msgstr "Etiqueta de Antes de Más "
547
 
548
- #: ../classes/column/post/comment-count.php:20
549
- msgid "Comment count"
550
- msgstr "Cantidad de comentario"
551
 
552
- #: ../classes/column/post/comment-count.php:34
553
- msgid "Total"
554
- msgstr "Total"
555
 
556
- #: ../classes/column/post/comment-count.php:36
557
- msgid "Pending"
558
- msgstr "Pendiente"
559
 
560
- #: ../classes/column/post/comment-count.php:37
561
- msgid "Spam"
562
- msgstr "Spam"
563
 
564
- #: ../classes/column/post/comment-count.php:38
565
- #: ../classes/column/post/status.php:35
566
- msgid "Trash"
567
- msgstr "Papelera"
568
 
569
- #: ../classes/column/post/comment-count.php:99
570
- #: ../classes/column/post/comment-status.php:20
571
- msgid "Comment status"
572
- msgstr "Estado del comentario"
573
 
574
- #: ../classes/column/post/comment-count.php:99
575
- msgid "Select which comment status you like to display."
576
- msgstr "Seleccionar cuál estado de comentario desea mostrar."
577
 
578
- #: ../classes/column/post/date-published.php:17
579
- msgid "Date Published"
580
- msgstr ""
581
 
582
- #: ../classes/column/post/depth.php:19
583
- msgid "Depth"
584
- msgstr ""
585
 
586
- #: ../classes/column/post/estimated-reading-time.php:19
587
- msgid "Estimated Reading Time"
588
- msgstr ""
589
 
590
- #: ../classes/column/post/estimated-reading-time.php:63
591
- msgid "second"
592
- msgid_plural "seconds"
593
- msgstr[0] ""
594
- msgstr[1] ""
595
 
596
- #: ../classes/column/post/estimated-reading-time.php:66
597
- msgid "minute"
598
- msgid_plural "minutes"
599
- msgstr[0] ""
600
- msgstr[1] ""
601
 
602
- #: ../classes/column/post/estimated-reading-time.php:103
603
- msgid "Words per minute"
 
 
 
 
604
  msgstr ""
605
 
606
- #: ../classes/column/post/estimated-reading-time.php:104
607
- msgid "Estimated reading time in words per minute"
608
  msgstr ""
609
 
610
- #: ../classes/column/post/featured-image.php:19
611
- msgid "Featured Image"
612
- msgstr "Imagen Destacada"
613
 
614
- #: ../classes/column/post/formats.php:19
615
- msgid "Post Format"
616
- msgstr "Formato del Post"
617
 
618
- #: ../classes/column/post/last-modified-author.php:20
619
- msgid "Last Modified Author"
620
  msgstr ""
621
 
622
- #: ../classes/column/post/modified.php:19
623
- msgid "Last modified"
624
- msgstr "Última modificación"
625
 
626
- #: ../classes/column/post/order.php:19
627
- msgid "Page Order"
628
- msgstr "Orden de Página"
629
 
630
- #: ../classes/column/post/page-template.php:19
631
- msgid "Page Template"
632
- msgstr "Plantilla de Página"
633
 
634
- #: ../classes/column/post/parent.php:19
635
- msgid "Parent"
636
- msgstr "Padre"
637
 
638
- #: ../classes/column/post/path.php:19
639
- msgid "Path"
640
  msgstr ""
641
 
642
- #: ../classes/column/post/permalink.php:19
643
- msgid "Permalink"
644
- msgstr "Permalink"
645
 
646
- #: ../classes/column/post/permalink.php:68
647
- msgid "Link to post"
648
  msgstr ""
649
 
650
- #: ../classes/column/post/permalink.php:68
651
- msgid "This will make the permalink clickable."
652
  msgstr ""
653
 
654
- #: ../classes/column/post/ping-status.php:19
655
- msgid "Ping status"
656
- msgstr "Estado del Ping"
657
 
658
- #: ../classes/column/post/roles.php:19
659
- msgid "Roles"
660
- msgstr "Roles"
661
 
662
- #: ../classes/column/post/shortcodes.php:19
663
- msgid "Shortcodes"
664
- msgstr ""
665
 
666
- #: ../classes/column/post/slug.php:19
667
- msgid "Slug"
668
- msgstr "Alias"
669
-
670
- #: ../classes/column/post/status.php:19
671
- msgid "Status"
672
- msgstr "Estado"
673
 
674
- #: ../classes/column/post/status.php:29
675
- msgid "Published"
676
- msgstr "Publicado"
677
 
678
- #: ../classes/column/post/status.php:30
679
- msgid "Draft"
680
- msgstr "Borrador"
681
 
682
- #: ../classes/column/post/status.php:31
683
- msgid "Scheduled"
684
- msgstr "Programado"
685
 
686
- #: ../classes/column/post/status.php:32
687
- msgid "Private"
688
- msgstr "Privado"
689
 
690
- #: ../classes/column/post/status.php:33
691
- msgid "Pending Review"
692
- msgstr "Revisión Pendiente"
693
 
694
- #: ../classes/column/post/status.php:34
695
- msgid "Auto Draft"
696
- msgstr "Auto Borrador"
697
 
698
- #: ../classes/column/post/sticky.php:19
699
- msgid "Sticky"
700
- msgstr "Pegajoso"
701
 
702
- #: ../classes/column/post/title-raw.php:19
703
- msgid "Title without actions"
704
- msgstr ""
705
 
706
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
707
- msgid "Taxonomy"
708
- msgstr "Taxonomía"
709
 
710
- #: ../classes/column/used-by-menu.php:20
711
- msgid "Used by Menu"
712
- msgstr ""
713
 
714
- #: ../classes/column/used-by-menu.php:133
715
- msgid "Link to menu"
716
  msgstr ""
717
 
718
- #: ../classes/column/used-by-menu.php:133
719
- msgid "This will make the title link to the menu."
720
  msgstr ""
721
 
722
- #: ../classes/column/user/comment-count.php:19
723
- msgid "Comment Count"
724
- msgstr "Cantidad de Comentario"
725
 
726
- #: ../classes/column/user/display-name.php:19
727
- msgid "Display name"
728
  msgstr ""
729
 
730
- #: ../classes/column/user/first-name.php:19
731
- msgid "First name"
732
- msgstr "Primer Nombre"
733
 
734
- #: ../classes/column/user/last-name.php:19
735
- msgid "Last name"
736
- msgstr "Apellido"
737
 
738
- #: ../classes/column/user/post-count.php:19
739
- msgid "Post Count"
740
- msgstr "Cantidad de Post"
741
 
742
- #: ../classes/column/user/post-count.php:89
743
- msgid "Post Type"
744
- msgstr "Tipo de Post"
745
 
746
- #: ../classes/column/user/registered.php:19
747
- msgid "Registered"
748
- msgstr "Registrado"
749
 
750
- #: ../classes/column/user/rich-editing.php:19
751
- msgid "Visual Editor"
752
- msgstr ""
753
 
754
- #: ../classes/column/user/url.php:19
755
- msgid "Url"
756
- msgstr "Url"
757
 
758
- #: ../classes/review_notice.php:55 ../classes/settings.php:170
759
- #: ../classes/settings.php:589 ../classes/upgrade.php:135
760
- msgid "Admin Columns"
761
- msgstr "Admin Columns"
762
 
763
- #: ../classes/review_notice.php:58
764
- msgid "Admin Columns Pro"
765
- msgstr ""
766
 
767
- #: ../classes/review_notice.php:65
768
- #, php-format
769
- 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."
770
- msgstr ""
771
 
772
- #: ../classes/review_notice.php:68
773
- msgid "click here"
774
- msgstr ""
775
 
776
- #: ../classes/review_notice.php:72
777
- msgid "Leave a review!"
778
- msgstr ""
779
 
780
- #: ../classes/review_notice.php:73
781
- msgid "Permanently hide notice"
782
- msgstr ""
783
 
784
- #: ../classes/review_notice.php:80
785
- #, php-format
786
- 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."
787
- msgstr ""
788
 
789
- #: ../classes/review_notice.php:82
790
- msgid "documentation page"
791
- msgstr ""
792
 
793
- #: ../classes/review_notice.php:86
794
- #, php-format
795
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
796
- msgstr ""
797
 
798
- #: ../classes/review_notice.php:87
799
- msgid "our forums"
800
- msgstr ""
801
 
802
- #: ../classes/review_notice.php:91
803
- #, php-format
804
- msgid "You can also find help on the %s, and %s."
805
- msgstr ""
806
 
807
- #: ../classes/review_notice.php:92
808
- msgid "Admin Columns forums on WordPress.org"
809
  msgstr ""
810
 
811
- #: ../classes/review_notice.php:93
812
- msgid "find answers to some frequently asked questions"
813
  msgstr ""
814
 
815
- #: ../classes/settings.php:112
816
- msgid "Add-on successfully activated."
817
- msgstr "Add-on activado satisfactoriamente."
818
-
819
- #: ../classes/settings.php:115
820
- msgid "Add-on successfully deactivated."
821
- msgstr "Add-on desactivado satisfactoriamente."
822
-
823
- #: ../classes/settings.php:170
824
- msgid "Admin Columns Settings"
825
- msgstr "Ajustes de Admin Columns"
826
-
827
- #: ../classes/settings.php:220
828
- #, php-format
829
- msgid "%s column is already present and can not be duplicated."
830
- msgstr "%s columna está ya presente y no puede ser duplicada."
831
-
832
- #: ../classes/settings.php:274
833
- msgid "Default settings succesfully restored."
834
- msgstr "Ajustes por defecto restaurados satisfactoriamente."
835
-
836
- #: ../classes/settings.php:291
837
- msgid "Overview"
838
- msgstr "Resumen"
839
-
840
- #: ../classes/settings.php:294
841
- 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."
842
- msgstr "Este plugin es para adicionar y borrar columnas adicionales a las pantallas de administración para posts (tipos), páginas, librería de media, comentarios, enlaces y usuarios. Cambie la etiqueta de las columnas y reordénelas."
843
-
844
- #: ../classes/settings.php:297
845
- msgid "Basics"
846
- msgstr "Fundamentos"
847
-
848
- #: ../classes/settings.php:299
849
- msgid "Change order"
850
- msgstr "Cambiar orden"
851
-
852
- #: ../classes/settings.php:300
853
- msgid "By dragging the columns you can change the order which they will appear in."
854
- msgstr "Al arrastrar las columnas usted puede cambiar el orden en las que aparecerán."
855
-
856
- #: ../classes/settings.php:301
857
- msgid "Change label"
858
- msgstr "Cambiar etiqueta"
859
-
860
- #: ../classes/settings.php:302
861
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
862
- msgstr "Al hacer clic en el triángulo verá las opciones de la columna. Aquí puede cambiar cada etiqueta del encabezado de las columnas."
863
-
864
- #: ../classes/settings.php:303
865
- msgid "Change column width"
866
- msgstr "Cambiar ancho de columna"
867
-
868
- #: ../classes/settings.php:304
869
- 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."
870
- msgstr "Al hacer clic en el triángulo verá las opciones de la columna. Al usar el slider arrastrable puede establecer el ancho de las columnas en por ciento."
871
-
872
- #: ../classes/settings.php:310
873
- msgid "'Custom Field' column"
874
- msgstr "Columna 'Campo Personalizado'"
875
-
876
- #: ../classes/settings.php:311
877
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
878
- msgstr "La columna del campo personalizado utiliza los campos personalizados de los posts y los usuarios. Hay 10 tipos que puede establecer."
879
-
880
- #: ../classes/settings.php:313
881
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
882
- msgstr "Valor: Puede ser una cadena o un arreglo. Los arreglos serán aplanados y los valores serán separados por una coma ','."
883
-
884
- #: ../classes/settings.php:314
885
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
886
- msgstr "Valor: debería contener una URL de imagen o IDs de Adjunto (separados por una coma ',')."
887
-
888
- #: ../classes/settings.php:315
889
- msgid "Value: This will show the first 20 words of the Post content."
890
- msgstr "Valor: Esto mostrará las primeras 20 palabras del contenido del Post."
891
-
892
- #: ../classes/settings.php:316
893
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
894
- msgstr "Valor: debería ser un arreglo. Esto aplanará cualquier arreglo (multidimensional)."
895
-
896
- #: ../classes/settings.php:317
897
- 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."
898
- msgstr "Valor: Enteros solamente. <br/> Si usted tiene el 'addon de ordenación' esto será utilizado para ordenar, por lo que puede ordenar sus posts sobre valores numéricos (campo personalizado)."
899
-
900
- #: ../classes/settings.php:318
901
- #, php-format
902
- 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."
903
- msgstr "Valor: Puede ser una marca de tiempo unix o un formato de fecha como se describe en <a href='%s'>Codex</a>.Usted puede cambiar el formato de fecha devuelto en la página de <a href='%s'>ajustes generales</a>"
904
-
905
- #: ../classes/settings.php:319
906
- msgid "Post Titles"
907
- msgstr "Títulos de Post"
908
-
909
- #: ../classes/settings.php:319
910
- msgid "Value: can be one or more Post ID's (seperated by ',')."
911
- msgstr "Valor: puede ser uno o más IDs de Post (separados por ',')."
912
-
913
- #: ../classes/settings.php:320
914
- msgid "Usernames"
915
- msgstr "Nombres de Usuario"
916
-
917
- #: ../classes/settings.php:320
918
- msgid "Value: can be one or more User ID's (seperated by ',')."
919
- msgstr "Valor: puede ser uno o más IDs de Usuario (separados por ',')."
920
-
921
- #: ../classes/settings.php:321
922
- msgid "Checkmark"
923
- msgstr "Marca de Verificación"
924
-
925
- #: ../classes/settings.php:321
926
- msgid "Value: should be a 1 (one) or 0 (zero)."
927
- msgstr "Valor: debería ser un 1 (uno) o 0 (cero)."
928
 
929
- #: ../classes/settings.php:322
930
- msgid "Value: hex value color, such as #808080."
931
- msgstr "Valor: color de valor hex, ej. #808080."
932
 
933
- #: ../classes/settings.php:323
934
- 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."
935
- msgstr "Valor: Puede ser una cadena o un arreglo. Esto mostrará la cantidad del número de tiempos que la clave meta es usada por el elemento."
936
 
937
- #: ../classes/settings.php:412
938
- msgid "Welcome to Admin Columns"
939
- msgstr "Bienvenido a Admin Columns"
940
 
941
- #: ../classes/settings.php:415
942
- msgid "Thank you for updating to the latest version!"
943
- msgstr "¡Gracias por actualizar a la última versión!"
944
 
945
- #: ../classes/settings.php:416
946
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
947
- msgstr "Admin Columns está más pulido y es más disfrutable que nunca antes. Esperamos que le guste."
948
 
949
- #: ../classes/settings.php:421
950
- msgid "What’s New"
951
- msgstr "Qué hay de Nuevo"
952
 
953
- #: ../classes/settings.php:422
954
- msgid "Changelog"
955
- msgstr "Log de Cambio"
956
 
957
- #: ../classes/settings.php:427
958
- msgid "Important"
959
- msgstr "Importante"
960
 
961
- #: ../classes/settings.php:429
962
- msgid "Database Changes"
963
- msgstr "Cambios de Base de Datos"
964
 
965
- #: ../classes/settings.php:430
966
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
967
- msgstr "La base de datos ha sido cambiada entre las versiones 1 y 2. Pero nos aseguramos de que usted siempre pueda virar a la versión 1x sin ningún problema."
968
 
969
- #: ../classes/settings.php:433
970
- msgid "Make sure you backup your database and then click"
971
- msgstr "Esté seguro de hacer una copia de seguridad a su base de datos y luego haga clic"
972
 
973
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
974
- msgid "Upgrade Database"
975
- msgstr "Actualizar Base de Datos"
976
 
977
- #: ../classes/settings.php:436
978
- msgid "Potential Issues"
979
- msgstr "Problemas Potenciales"
980
 
981
- #: ../classes/settings.php:437
982
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
983
- msgstr "Debido a la refactorización cambiable del código, de los Add-ons circundantes y las acciones/filtros, su sitio web puede no operar correctamente. Es importante que lea la completa"
984
 
985
- #: ../classes/settings.php:437
986
- msgid "Migrating from v1 to v2"
987
- msgstr "Migración de v1 a v2"
988
 
989
- #: ../classes/settings.php:437
990
- msgid "guide to view the full list of changes."
991
- msgstr "guía para ver la lista completa de cambios."
992
 
993
- #: ../classes/settings.php:437
994
- #, php-format
995
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
996
- msgstr "Cuando usted encuentre un bug por favor <a href=\"%s\">repórtenoslo</a> para poder arreglarlo en el próximo release."
997
 
998
- #: ../classes/settings.php:440
999
- msgid "Important!"
1000
- msgstr "¡Importante!"
1001
 
1002
- #: ../classes/settings.php:440
1003
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
1004
- msgstr "Si usted actualizó el plugin Admin Columns sin conocimiento previo de tales cambios, Por favor vire hacia atrás a la última"
1005
 
1006
- #: ../classes/settings.php:440
1007
- msgid "version 1"
1008
- msgstr "versión 1"
1009
 
1010
- #: ../classes/settings.php:440
1011
- msgid "of this plugin."
1012
- msgstr "de este plugin."
1013
 
1014
- #: ../classes/settings.php:446
1015
- msgid "Changelog for"
1016
- msgstr "Log de cambios para "
1017
 
1018
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1019
- msgid "Learn more"
1020
- msgstr "Ver más"
1021
 
1022
- #: ../classes/settings.php:471
1023
- msgid "Start using Admin Columns"
1024
- msgstr "Comenzar a usar Admin Columns"
1025
 
1026
- #: ../classes/settings.php:490
1027
- msgid "General Settings"
1028
- msgstr "Ajustes Generales"
1029
 
1030
- #: ../classes/settings.php:491
1031
- msgid "Customize your Admin Columns settings."
1032
- msgstr "Personalice sus ajustes de Admin Columns."
1033
 
1034
- #: ../classes/settings.php:502
1035
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1036
  msgstr ""
1037
 
1038
- #: ../classes/settings.php:509 ../classes/settings.php:673
1039
- msgid "Save"
1040
- msgstr "Salvar"
1041
-
1042
- #: ../classes/settings.php:549
1043
- msgid "Restore Settings"
1044
- msgstr "Restaurar Ajustes"
1045
 
1046
- #: ../classes/settings.php:550
1047
- msgid "This will delete all column settings and restore the default settings."
1048
- msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
1049
 
1050
- #: ../classes/settings.php:556
1051
- msgid "Restore default settings"
1052
- msgstr "Restaurar ajustes por defecto"
1053
 
1054
- #: ../classes/settings.php:556
1055
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1056
- msgstr "¡Advertencia! Todos los datos salvados de Admin columns serán borrados. Esto no puede ser deshecho.\\'OK\\' para borrar, \\'Cancelar\\' para cancelar"
1057
 
1058
- #: ../classes/settings.php:572
1059
- msgid "Posttypes"
1060
- msgstr "Tipos de Post"
1061
 
1062
- #: ../classes/settings.php:573
1063
- msgid "Others"
1064
- msgstr "Otros"
1065
 
1066
- #: ../classes/settings.php:574
1067
- msgid "Taxonomies"
1068
- msgstr "Taxonomías"
1069
 
1070
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1071
- msgid "Settings"
1072
- msgstr "Ajustes"
1073
 
1074
- #: ../classes/settings.php:591
1075
- msgid "Add-ons"
1076
- msgstr "Add-ons"
1077
 
1078
- #: ../classes/settings.php:659
1079
- #, php-format
1080
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1081
- msgstr ""
1082
 
1083
- #: ../classes/settings.php:669
1084
- msgid "Store settings"
1085
- msgstr "Almacenar ajustes"
1086
 
1087
- #: ../classes/settings.php:673
1088
- msgid "Update"
1089
- msgstr "Actualizar"
1090
 
1091
- #: ../classes/settings.php:677
1092
- #, php-format
1093
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1094
- msgstr "¡Advertencia! Los %s datos de columnas serán borrados. Esto no puede ser deshecho. \\'OK\\' para borrar, \\'Cancelar\\' para cancelar"
1095
 
1096
- #: ../classes/settings.php:678
1097
- msgid "Restore"
1098
- msgstr "Restaurar"
1099
 
1100
- #: ../classes/settings.php:678
1101
- msgid "columns"
1102
- msgstr "columnas"
1103
 
1104
- #: ../classes/settings.php:697
1105
- msgid "Get Admin Columns Pro"
1106
- msgstr "Obtener Admin Columns Pro"
1107
 
1108
- #: ../classes/settings.php:701
1109
- msgid "Add Sorting"
1110
- msgstr "Adicionar Ordenamiento"
1111
 
1112
- #: ../classes/settings.php:702
1113
- msgid "Add Filtering"
1114
- msgstr "Adicionar Filtro"
1115
 
1116
- #: ../classes/settings.php:703
1117
- msgid "Add Import/Export"
1118
- msgstr "Adicionar Importar/Exportar"
1119
 
1120
- #: ../classes/settings.php:704
1121
- msgid "Add Direct Editing"
1122
- msgstr "Adicionar Edición Directa"
1123
 
1124
- #: ../classes/settings.php:707
1125
- #, php-format
1126
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1127
- msgstr "¡Vea <a href=\"%s\">Admin Columns Pro</a> para más detalles!"
1128
 
1129
- #: ../classes/settings.php:738
1130
- msgid "Are you happy with Admin Columns?"
1131
  msgstr ""
1132
 
1133
- #: ../classes/settings.php:746
1134
- msgid "What's wrong? Need help? Let us know!"
1135
  msgstr ""
1136
 
1137
- #: ../classes/settings.php:747
1138
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1139
  msgstr ""
1140
 
1141
- #: ../classes/settings.php:755
1142
- msgid "Docs"
1143
  msgstr ""
1144
 
1145
- #: ../classes/settings.php:760
1146
- msgid "Forums"
1147
- msgstr ""
1148
 
1149
- #: ../classes/settings.php:769
1150
- msgid "Woohoo! We're glad to hear that!"
1151
- msgstr ""
1152
 
1153
- #: ../classes/settings.php:770
1154
- 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!"
1155
- msgstr ""
1156
 
1157
- #: ../classes/settings.php:774
1158
- msgid "Rate"
1159
  msgstr ""
1160
 
1161
- #: ../classes/settings.php:785
1162
- msgid "Tweet"
 
 
 
 
1163
  msgstr ""
1164
 
1165
- #: ../classes/settings.php:795
1166
- msgid "Buy Pro"
1167
  msgstr ""
1168
 
1169
- #: ../classes/settings.php:807
1170
- msgid "Support"
1171
- msgstr "Soporte"
1172
 
1173
- #: ../classes/settings.php:810
1174
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1175
- msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
1176
 
1177
- #: ../classes/settings.php:813
1178
- #, php-format
1179
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1180
- 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>"
1181
 
1182
- #: ../classes/settings.php:842
1183
- msgid "Drag and drop to reorder"
1184
- msgstr "Arrastre y suelte para reordenar"
1185
 
1186
- #: ../classes/settings.php:845
1187
- msgid "Add Column"
1188
- msgstr "Adicionar Columna"
1189
 
1190
- #: ../classes/settings.php:926
1191
- msgid "Active"
1192
- msgstr "Activo"
1193
 
1194
- #: ../classes/settings.php:927
1195
- msgid "Deactivate"
1196
- msgstr "Inactivo"
1197
 
1198
- #: ../classes/settings.php:934
1199
- msgid "Installed"
1200
- msgstr "Instalado"
1201
 
1202
- #: ../classes/settings.php:935
1203
- msgid "Activate"
1204
- msgstr "Activar"
1205
 
1206
- #: ../classes/settings.php:949
1207
- msgid "Download & Install"
1208
- msgstr "Descargar e Instalar"
1209
 
1210
- #: ../classes/settings.php:954
1211
- msgid "Get this add-on"
1212
- msgstr "Obtener este add-on"
 
 
1213
 
1214
- #: ../classes/storage_model.php:237
1215
- msgid "settings succesfully restored."
1216
- msgstr "ajustes restaurados satisfactoriamente."
 
 
1217
 
1218
- #: ../classes/storage_model.php:253
1219
- msgid "No columns settings available."
1220
- msgstr "No hay ajustes de columnas disponibles."
1221
 
1222
- #: ../classes/storage_model.php:274
1223
- #, php-format
1224
- msgid "You are trying to store the same settings for %s."
1225
- msgstr "Está tratando de almacenar los mismos ajustes para %s."
1226
 
1227
- #: ../classes/storage_model.php:278
1228
- #, php-format
1229
- msgid "Settings for %s updated successfully."
 
 
 
 
 
 
 
1230
  msgstr ""
1231
 
1232
- #: ../classes/storage_model.php:809
1233
- msgid "View"
1234
- msgstr "Ver"
 
 
 
 
1235
 
1236
- #: ../classes/storage_model/comment.php:13
1237
- msgid "Comments"
1238
- msgstr "Comentarios"
 
 
 
 
1239
 
1240
- #: ../classes/storage_model/comment.php:14
1241
- msgid "Comment"
1242
  msgstr ""
1243
 
1244
- #: ../classes/storage_model/link.php:13
1245
- msgid "Links"
1246
- msgstr "Enlaces"
1247
 
1248
- #: ../classes/storage_model/link.php:14
1249
- msgid "Link"
1250
  msgstr ""
1251
 
1252
- #: ../classes/storage_model/media.php:14
1253
- msgid "Media"
1254
  msgstr ""
1255
 
1256
- #: ../classes/storage_model/user.php:13
1257
- msgid "Users"
1258
- msgstr "Usuarios"
1259
 
1260
- #: ../classes/upgrade.php:62
1261
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1262
  msgstr ""
1263
 
1264
- #: ../classes/upgrade.php:95
1265
- msgid "Upgrade"
1266
- msgstr "Actualizar"
1267
 
1268
- #: ../classes/upgrade.php:136
1269
- msgid "requires a database upgrade"
1270
- msgstr "requiere una actualización de la base de datos"
1271
 
1272
- #: ../classes/upgrade.php:139
1273
- msgid "why?"
1274
- msgstr "¿Por qué?"
1275
 
1276
- #: ../classes/upgrade.php:140
1277
- msgid "Please"
1278
- msgstr "Por favor"
1279
 
1280
- #: ../classes/upgrade.php:141
1281
- msgid "backup your database"
1282
- msgstr "haga una copia de seguridad de su base de datos"
1283
 
1284
- #: ../classes/upgrade.php:142
1285
- msgid "then click"
1286
- msgstr "luego haga clic"
1287
 
1288
- #: ../classes/upgrade.php:351
1289
- msgid "Migrating Column Settings"
1290
- msgstr "Migrando Ajustes de Columna"
1291
 
1292
- #: ../classes/upgrade.php:387
1293
- msgid "No Upgrade Required"
1294
- msgstr "No Hay Actualizaciones Obligatorias"
1295
 
1296
- #: ../classes/upgrade.php:388
1297
- msgid "Return to welcome screen."
1298
- msgstr "Volver a la pantalla de bienvenida."
1299
 
1300
- #: ../classes/upgrade.php:406
1301
- msgid "Upgrade Complete!"
1302
- msgstr "¡Actualización Completada!"
1303
 
1304
- #: ../classes/upgrade.php:406
1305
- msgid "Return to settings."
1306
- msgstr "Volver a la configuración."
1307
 
1308
- #: ../classes/upgrade.php:407
1309
- msgid "Error"
1310
- msgstr "Error"
1311
 
1312
- #: ../classes/upgrade.php:408
1313
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1314
- msgstr "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, reporte esto en el foro de soporte."
1315
 
1316
- #: ../codepress-admin-columns.php:444
1317
- msgid "Edit columns"
1318
- msgstr "Editar columnas"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # redywebs <correo.1@redywebs.com>, 2013
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
9
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/codepress/admin-columns/language/es_ES/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: es_ES\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
+ "POT-Creation-Date: \n"
21
+ "X-Generator: Poedit 1.8.5\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
24
+
25
+ #: ../codepress-admin-columns.php:451
26
+ msgid "Edit columns"
27
+ msgstr "Editar columnas"
 
 
28
 
29
  #: ../classes/addons.php:110
30
  msgid "Plugins"
46
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
47
  msgstr ""
48
 
49
+ #: ../classes/column.php:624
50
  msgid "Thumbnail"
51
  msgstr "Miniatura"
52
 
53
+ #: ../classes/column.php:625
54
  msgid "Medium"
55
  msgstr "Medio"
56
 
57
+ #: ../classes/column.php:626
58
  msgid "Large"
59
  msgstr "Largo"
60
 
61
+ #: ../classes/column.php:627
62
  msgid "Full"
63
  msgstr "Completo"
64
 
65
+ #: ../classes/column.php:1059
66
+ msgid "Exact match"
67
+ msgstr ""
68
+
69
+ #: ../classes/column.php:1060
70
+ msgid "Lesser than"
71
+ msgstr ""
72
+
73
+ #: ../classes/column.php:1061
74
+ msgid "Greater than"
75
+ msgstr ""
76
+
77
+ #: ../classes/column.php:1062
78
+ msgid "Between"
79
+ msgstr ""
80
+
81
+ #: ../classes/column.php:1089
82
  msgid "Date Format"
83
  msgstr "Formato de Fecha"
84
 
85
+ #: ../classes/column.php:1090
86
  msgid "This will determine how the date will be displayed."
87
  msgstr "Esto determinará cómo la fecha se mostrará."
88
 
89
+ #: ../classes/column.php:1096
90
  msgid "Example:"
91
  msgstr "Ejemplo:"
92
 
93
+ #: ../classes/column.php:1098
94
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
95
+ msgstr ""
 
96
 
97
+ #: ../classes/column.php:1099
98
  msgid "Documentation on date and time formatting."
99
  msgstr "Documentación en formato de fecha y hora."
100
 
101
+ #: ../classes/column.php:1113
102
  msgid "Excerpt length"
103
  msgstr "Tamaño de extracto"
104
 
105
+ #: ../classes/column.php:1114
106
  msgid "Number of words"
107
  msgstr "Número de palabras"
108
 
109
+ #: ../classes/column.php:1132
110
  msgid "Preview size"
111
  msgstr "Tamaño de vista previa"
112
 
113
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
114
  msgid "Custom"
115
  msgstr "Personalizado"
116
 
117
+ #: ../classes/column.php1152, ../classes/column.php:1328
118
  msgid "width"
119
  msgstr "ancho"
120
 
121
+ #: ../classes/column.php:1155
122
  msgid "height"
123
  msgstr "largo"
124
 
125
+ #: ../classes/column.php:1167
126
  msgid "Before"
127
  msgstr "Antes"
128
 
129
+ #: ../classes/column.php:1167
130
  msgid "This text will appear before the custom field value."
131
  msgstr "Este texto aparecerá antes del valor del campo personalizado."
132
 
133
+ #: ../classes/column.php:1168
134
  msgid "After"
135
  msgstr "Después"
136
 
137
+ #: ../classes/column.php:1168
138
  msgid "This text will appear after the custom field value."
139
  msgstr "Este texto aparecerá después del valor del campo personalizado."
140
 
141
+ #: ../classes/column.php:1177
142
  msgid "Display Name"
143
  msgstr "Nombre a Mostrar"
144
 
145
+ #: ../classes/column.php1178, ../classes/settings.php:733
146
  msgid "First Name"
147
  msgstr "Primer Nombre"
148
 
149
+ #: ../classes/column.php:1179
150
  msgid "Last Name"
151
  msgstr "Apellido"
152
 
153
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
154
  msgid "Nickname"
155
  msgstr "Alias"
156
 
157
+ #: ../classes/column.php:1181
158
  msgid "User Login"
159
  msgstr "Nombre de Usuario"
160
 
161
+ #: ../classes/column.php:1182
162
  msgid "User Email"
163
  msgstr "Email de Usuario"
164
 
165
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
166
  msgid "User ID"
167
  msgstr "ID de Usuario"
168
 
169
+ #: ../classes/column.php:1184
170
  msgid "First and Last Name"
171
  msgstr "Primer Nombre y Apellido"
172
 
173
+ #: ../classes/column.php:1187
174
  msgid "Display format"
175
  msgstr ""
176
 
177
+ #: ../classes/column.php:1187
178
  msgid "This is the format of the author name."
179
  msgstr "Esto es el formato del nombre del autor."
180
 
181
+ #: ../classes/column.php:1350
182
  msgid "Edit"
183
  msgstr "Editar"
184
 
185
+ #: ../classes/column.php1352, ../classes/column.php:1444
186
  msgid "Clone"
187
  msgstr ""
188
 
189
+ #: ../classes/column.php:1354
190
  msgid "Remove"
191
  msgstr "Borrar"
192
 
193
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
 
194
  msgid "Type"
195
  msgstr "Tipo"
196
 
197
+ #: ../classes/column.php:1372
198
  msgid "Choose a column type."
199
  msgstr "Escoger un tipo de columna."
200
 
201
+ #: ../classes/column.php:1372
202
  msgid "Name"
203
  msgstr ""
204
 
205
+ #: ../classes/column.php:1382
206
  msgid "Label"
207
  msgstr "Etiqueta"
208
 
209
+ #: ../classes/column.php:1382
210
  msgid "This is the name which will appear as the column header."
211
  msgstr "Este es el nombre que aparecerá como el encabezado de la columna."
212
 
213
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
214
  msgid "Width"
215
  msgstr "Ancho"
216
 
217
+ #: ../classes/column.php:1391
218
  msgid "default"
219
  msgstr "por defecto"
220
 
221
+ #: ../classes/column.php:1392
222
  msgid "auto"
223
  msgstr ""
224
 
225
+ #: ../classes/column.php:1466
226
+ msgid "Property To Display"
227
+ msgstr ""
228
 
229
+ #: ../classes/column.php:1472
230
+ msgid "Post property to display for related post(s)."
231
  msgstr ""
232
 
233
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
234
+ msgid "Link To"
235
+ msgstr ""
 
236
 
237
+ #: ../classes/column.php:1489
238
+ msgid "Edit Post Author"
239
+ msgstr ""
240
 
241
+ #: ../classes/column.php:1490
242
+ msgid "View Public Post Author Page"
243
+ msgstr ""
244
 
245
+ #: ../classes/column.php:1492
246
+ msgid "Page the posts should link to."
247
+ msgstr ""
248
 
249
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
250
+ msgid "Admin Columns"
251
+ msgstr "Admin Columns"
252
+
253
+ #: ../classes/review_notice.php:58
254
+ msgid "Admin Columns Pro"
255
  msgstr ""
256
 
257
+ #: ../classes/review_notice.php:68
258
+ msgid "click here"
259
  msgstr ""
260
 
261
+ #: ../classes/review_notice.php:72
262
+ msgid "Leave a review!"
 
263
  msgstr ""
264
 
265
+ #: ../classes/review_notice.php:73
266
+ msgid "Permanently hide notice"
 
267
  msgstr ""
268
 
269
+ #: ../classes/review_notice.php:80
270
+ 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."
271
+ msgstr ""
 
272
 
273
+ #: ../classes/review_notice.php:82
274
+ msgid "documentation page"
275
+ msgstr ""
276
 
277
+ #: ../classes/review_notice.php:86
278
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
279
+ msgstr ""
 
280
 
281
+ #: ../classes/review_notice.php:87
282
+ msgid "our forums"
283
+ msgstr ""
284
 
285
+ #: ../classes/review_notice.php:91
286
+ msgid "You can also find help on the %s, and %s."
287
+ msgstr ""
288
 
289
+ #: ../classes/review_notice.php:92
290
+ msgid "Admin Columns forums on WordPress.org"
291
+ msgstr ""
292
 
293
+ #: ../classes/review_notice.php:93
294
+ msgid "find answers to some frequently asked questions"
295
  msgstr ""
296
 
297
+ #: ../classes/settings.php:113
298
+ msgid "Add-on successfully activated."
299
+ msgstr "Add-on activado satisfactoriamente."
300
 
301
+ #: ../classes/settings.php:116
302
+ msgid "Add-on successfully deactivated."
303
+ msgstr "Add-on desactivado satisfactoriamente."
304
 
305
+ #: ../classes/settings.php:170
306
+ msgid "Admin Columns Settings"
307
+ msgstr "Ajustes de Admin Columns"
308
 
309
+ #: ../classes/settings.php:228
310
+ msgid "%s column is already present and can not be duplicated."
311
+ msgstr "%s columna está ya presente y no puede ser duplicada."
 
 
312
 
313
+ #: ../classes/settings.php:284
314
+ msgid "Default settings succesfully restored."
315
+ msgstr "Ajustes por defecto restaurados satisfactoriamente."
 
316
 
317
+ #: ../classes/settings.php:301
318
+ msgid "Overview"
319
+ msgstr "Resumen"
 
320
 
321
+ #: ../classes/settings.php:304
322
+ 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."
323
+ msgstr "Este plugin es para adicionar y borrar columnas adicionales a las pantallas de administración para posts (tipos), páginas, librería de media, comentarios, enlaces y usuarios. Cambie la etiqueta de las columnas y reordénelas."
324
 
325
+ #: ../classes/settings.php:307
326
+ msgid "Basics"
327
+ msgstr "Fundamentos"
328
 
329
+ #: ../classes/settings.php:309
330
+ msgid "Change order"
331
+ msgstr "Cambiar orden"
332
+
333
+ #: ../classes/settings.php:310
334
+ msgid "By dragging the columns you can change the order which they will appear in."
335
+ msgstr "Al arrastrar las columnas usted puede cambiar el orden en las que aparecerán."
336
+
337
+ #: ../classes/settings.php:311
338
+ msgid "Change label"
339
+ msgstr "Cambiar etiqueta"
340
+
341
+ #: ../classes/settings.php:312
342
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
343
+ msgstr "Al hacer clic en el triángulo verá las opciones de la columna. Aquí puede cambiar cada etiqueta del encabezado de las columnas."
344
+
345
+ #: ../classes/settings.php:313
346
+ msgid "Change column width"
347
+ msgstr "Cambiar ancho de columna"
348
+
349
+ #: ../classes/settings.php:314
350
+ 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."
351
+ msgstr "Al hacer clic en el triángulo verá las opciones de la columna. Al usar el slider arrastrable puede establecer el ancho de las columnas en por ciento."
352
 
353
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
 
354
  msgid "Custom Field"
355
  msgstr "Campo Personalizado"
356
 
357
+ #: ../classes/settings.php:320
358
+ msgid "'Custom Field' column"
359
+ msgstr "Columna 'Campo Personalizado'"
360
+
361
+ #: ../classes/settings.php:321
362
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
363
+ msgstr "La columna del campo personalizado utiliza los campos personalizados de los posts y los usuarios. Hay 10 tipos que puede establecer."
364
+
365
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
366
  msgid "Default"
367
  msgstr "Por Defecto"
368
 
369
+ #: ../classes/settings.php:323
370
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
371
+ msgstr "Valor: Puede ser una cadena o un arreglo. Los arreglos serán aplanados y los valores serán separados por una coma ','."
372
 
373
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
374
+ msgid "Image"
375
+ msgstr "Imagen"
376
 
377
+ #: ../classes/settings.php:324
378
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
379
+ msgstr "Valor: debería contener una URL de imagen o IDs de Adjunto (separados por una coma ',')."
380
 
381
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
 
382
  msgid "Excerpt"
383
  msgstr "Extracto"
384
 
385
+ #: ../classes/settings.php:325
386
+ msgid "Value: This will show the first 20 words of the Post content."
387
+ msgstr "Valor: Esto mostrará las primeras 20 palabras del contenido del Post."
 
 
 
 
 
 
388
 
389
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
390
  msgid "Multiple Values"
391
  msgstr "Valores Múltiples"
392
 
393
+ #: ../classes/settings.php:326
394
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
395
+ msgstr "Valor: debería ser un arreglo. Esto aplanará cualquier arreglo (multidimensional)."
396
+
397
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
398
  msgid "Numeric"
399
  msgstr "Numérico"
400
 
401
+ #: ../classes/settings.php:327
402
+ 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."
403
+ msgstr "Valor: Enteros solamente. <br/> Si usted tiene el 'addon de ordenación' esto será utilizado para ordenar, por lo que puede ordenar sus posts sobre valores numéricos (campo personalizado)."
404
 
405
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
406
+ msgid "Date"
407
+ msgstr "Fecha"
408
 
409
+ #: ../classes/settings.php:328
410
+ 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."
411
+ msgstr "Valor: Puede ser una marca de tiempo unix o un formato de fecha como se describe en <a href='%s'>Codex</a>.Usted puede cambiar el formato de fecha devuelto en la página de <a href='%s'>ajustes generales</a>"
412
 
413
+ #: ../classes/settings.php:329
414
+ msgid "Post Titles"
415
+ msgstr "Títulos de Post"
416
 
417
+ #: ../classes/settings.php:329
418
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
419
+ msgstr "Valor: puede ser uno o más IDs de Post (separados por ',')."
420
 
421
+ #: ../classes/settings.php:330
422
+ msgid "Usernames"
423
+ msgstr "Nombres de Usuario"
 
424
 
425
+ #: ../classes/settings.php:330
426
+ msgid "Value: can be one or more User ID's (seperated by ',')."
427
+ msgstr "Valor: puede ser uno o más IDs de Usuario (separados por ',')."
428
 
429
+ #: ../classes/settings.php:331
430
+ msgid "Checkmark"
431
+ msgstr "Marca de Verificación"
432
 
433
+ #: ../classes/settings.php:331
434
+ msgid "Value: should be a 1 (one) or 0 (zero)."
435
+ msgstr "Valor: debería ser un 1 (uno) o 0 (cero)."
 
 
436
 
437
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
438
+ msgid "Color"
439
+ msgstr "Color"
440
 
441
+ #: ../classes/settings.php:332
442
+ msgid "Value: hex value color, such as #808080."
443
+ msgstr "Valor: color de valor hex, ej. #808080."
444
 
445
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
446
+ msgid "Counter"
447
+ msgstr "Contador"
448
 
449
+ #: ../classes/settings.php:333
450
+ 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."
451
+ msgstr "Valor: Puede ser una cadena o un arreglo. Esto mostrará la cantidad del número de tiempos que la clave meta es usada por el elemento."
452
 
453
+ #: ../classes/settings.php:422
454
+ msgid "Welcome to Admin Columns"
455
+ msgstr "Bienvenido a Admin Columns"
456
 
457
+ #: ../classes/settings.php:425
458
+ msgid "Thank you for updating to the latest version!"
459
+ msgstr "¡Gracias por actualizar a la última versión!"
460
 
461
+ #: ../classes/settings.php:426
462
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
463
+ msgstr "Admin Columns está más pulido y es más disfrutable que nunca antes. Esperamos que le guste."
464
 
465
+ #: ../classes/settings.php:431
466
+ msgid "What’s New"
467
+ msgstr "Qué hay de Nuevo"
468
 
469
+ #: ../classes/settings.php:432
470
+ msgid "Changelog"
471
+ msgstr "Log de Cambio"
472
 
473
+ #: ../classes/settings.php:437
474
+ msgid "Important"
475
+ msgstr "Importante"
 
476
 
477
+ #: ../classes/settings.php:439
478
+ msgid "Database Changes"
479
+ msgstr "Cambios de Base de Datos"
480
 
481
+ #: ../classes/settings.php:440
482
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
483
+ msgstr "La base de datos ha sido cambiada entre las versiones 1 y 2. Pero nos aseguramos de que usted siempre pueda virar a la versión 1x sin ningún problema."
484
 
485
+ #: ../classes/settings.php:443
486
+ msgid "Make sure you backup your database and then click"
487
+ msgstr "Esté seguro de hacer una copia de seguridad a su base de datos y luego haga clic"
488
 
489
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
490
+ msgid "Upgrade Database"
491
+ msgstr "Actualizar Base de Datos"
492
 
493
+ #: ../classes/settings.php:446
494
+ msgid "Potential Issues"
495
+ msgstr "Problemas Potenciales"
496
 
497
+ #: ../classes/settings.php:447
498
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
499
+ msgstr "Debido a la refactorización cambiable del código, de los Add-ons circundantes y las acciones/filtros, su sitio web puede no operar correctamente. Es importante que lea la completa"
500
 
501
+ #: ../classes/settings.php:447
502
+ msgid "Migrating from v1 to v2"
503
+ msgstr "Migración de v1 a v2"
504
 
505
+ #: ../classes/settings.php:447
506
+ msgid "guide to view the full list of changes."
507
+ msgstr "guía para ver la lista completa de cambios."
508
 
509
+ #: ../classes/settings.php:447
510
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
511
+ msgstr ""
512
 
513
+ #: ../classes/settings.php:450
514
+ msgid "Important!"
515
+ msgstr "¡Importante!"
516
 
517
+ #: ../classes/settings.php:450
518
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
519
+ msgstr "Si usted actualizó el plugin Admin Columns sin conocimiento previo de tales cambios, Por favor vire hacia atrás a la última"
520
 
521
+ #: ../classes/settings.php:450
522
+ msgid "version 1"
523
+ msgstr "versión 1"
524
 
525
+ #: ../classes/settings.php:450
526
+ msgid "of this plugin."
527
+ msgstr "de este plugin."
528
 
529
+ #: ../classes/settings.php:456
530
+ msgid "Changelog for"
531
+ msgstr "Log de cambios para "
 
532
 
533
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
534
+ msgid "Learn more"
535
+ msgstr "Ver más"
536
 
537
+ #: ../classes/settings.php:481
538
+ msgid "Start using Admin Columns"
539
+ msgstr "Comenzar a usar Admin Columns"
540
 
541
+ #: ../classes/settings.php:500
542
+ msgid "General Settings"
543
+ msgstr "Ajustes Generales"
544
 
545
+ #: ../classes/settings.php:501
546
+ msgid "Customize your Admin Columns settings."
547
+ msgstr "Personalice sus ajustes de Admin Columns."
548
+
549
+ #: ../classes/settings.php:512
550
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
551
  msgstr ""
552
 
553
+ #: ../classes/settings.php:559
554
+ msgid "Restore Settings"
555
+ msgstr "Restaurar Ajustes"
556
 
557
+ #: ../classes/settings.php:560
558
+ msgid "This will delete all column settings and restore the default settings."
559
+ msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
560
 
561
+ #: ../classes/settings.php:566
562
+ msgid "Restore default settings"
563
+ msgstr "Restaurar ajustes por defecto"
564
 
565
+ #: ../classes/settings.php:566
566
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
567
  msgstr ""
568
 
569
+ #: ../classes/settings.php:582
570
+ msgid "Posttypes"
571
+ msgstr "Tipos de Post"
572
 
573
+ #: ../classes/settings.php:583
574
+ msgid "Others"
575
+ msgstr "Otros"
576
 
577
+ #: ../classes/settings.php:584
578
+ msgid "Taxonomies"
579
+ msgstr "Taxonomías"
580
 
581
+ #: ../classes/settings.php:600
582
+ msgid "Settings"
583
+ msgstr "Ajustes"
584
 
585
+ #: ../classes/settings.php:601
586
+ msgid "Add-ons"
587
+ msgstr "Add-ons"
588
 
589
+ #: ../classes/settings.php:669
590
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
591
+ msgstr ""
592
 
593
+ #: ../classes/settings.php:679
594
+ msgid "Store settings"
595
+ msgstr "Almacenar ajustes"
 
596
 
597
+ #: ../classes/settings.php:687
598
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
599
+ msgstr ""
 
600
 
601
+ #: ../classes/settings.php:688
602
+ msgid "Restore"
603
+ msgstr "Restaurar"
604
 
605
+ #: ../classes/settings.php:688
606
+ msgid "columns"
607
+ msgstr "columnas"
608
 
609
+ #: ../classes/settings.php:707
610
+ msgid "Get Admin Columns Pro"
611
+ msgstr "Obtener Admin Columns Pro"
612
 
613
+ #: ../classes/settings.php:711
614
+ msgid "Add Sorting"
615
+ msgstr "Adicionar Ordenamiento"
616
 
617
+ #: ../classes/settings.php:712
618
+ msgid "Add Filtering"
619
+ msgstr "Adicionar Filtro"
 
 
620
 
621
+ #: ../classes/settings.php:713
622
+ msgid "Add Import/Export"
623
+ msgstr "Adicionar Importar/Exportar"
 
 
624
 
625
+ #: ../classes/settings.php:714
626
+ msgid "Add Direct Editing"
627
+ msgstr "Adicionar Edición Directa"
628
+
629
+ #: ../classes/settings.php:717
630
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
631
  msgstr ""
632
 
633
+ #: ../classes/settings.php:730
634
+ msgid "Subscribe to receive news &amp; updates below."
635
  msgstr ""
636
 
637
+ #: ../classes/settings.php:737
638
+ msgid "Your Email"
639
+ msgstr ""
640
 
641
+ #: ../classes/settings.php:748
642
+ msgid "Are you happy with Admin Columns?"
643
+ msgstr ""
644
 
645
+ #: ../classes/settings.php:756
646
+ msgid "What's wrong? Need help? Let us know!"
647
  msgstr ""
648
 
649
+ #: ../classes/settings.php:757
650
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
651
+ msgstr ""
652
 
653
+ #: ../classes/settings.php:765
654
+ msgid "Docs"
655
+ msgstr ""
656
 
657
+ #: ../classes/settings.php:770
658
+ msgid "Forums"
659
+ msgstr ""
660
 
661
+ #: ../classes/settings.php:779
662
+ msgid "Woohoo! We're glad to hear that!"
663
+ msgstr ""
664
 
665
+ #: ../classes/settings.php:780
666
+ 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!"
667
  msgstr ""
668
 
669
+ #: ../classes/settings.php:784
670
+ msgid "Rate"
671
+ msgstr ""
672
 
673
+ #: ../classes/settings.php:795
674
+ msgid "Tweet"
675
  msgstr ""
676
 
677
+ #: ../classes/settings.php:805
678
+ msgid "Buy Pro"
679
  msgstr ""
680
 
681
+ #: ../classes/settings.php:817
682
+ msgid "Support"
683
+ msgstr "Soporte"
684
 
685
+ #: ../classes/settings.php:820
686
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
687
+ msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
688
 
689
+ #: ../classes/settings.php:823
690
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
691
+ 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>"
692
 
693
+ #: ../classes/settings.php:852
694
+ msgid "Drag and drop to reorder"
695
+ msgstr "Arrastre y suelte para reordenar"
 
 
 
 
696
 
697
+ #: ../classes/settings.php:855
698
+ msgid "Add Column"
699
+ msgstr "Adicionar Columna"
700
 
701
+ #: ../classes/settings.php:936
702
+ msgid "Active"
703
+ msgstr "Activo"
704
 
705
+ #: ../classes/settings.php:937
706
+ msgid "Deactivate"
707
+ msgstr "Inactivo"
708
 
709
+ #: ../classes/settings.php:944
710
+ msgid "Installed"
711
+ msgstr "Instalado"
712
 
713
+ #: ../classes/settings.php:945
714
+ msgid "Activate"
715
+ msgstr "Activar"
716
 
717
+ #: ../classes/settings.php:959
718
+ msgid "Download & Install"
719
+ msgstr "Descargar e Instalar"
720
 
721
+ #: ../classes/settings.php:964
722
+ msgid "Get this add-on"
723
+ msgstr "Obtener este add-on"
724
 
725
+ #: ../classes/storage_model.php:262
726
+ msgid "settings succesfully restored."
727
+ msgstr "ajustes restaurados satisfactoriamente."
728
 
729
+ #: ../classes/storage_model.php:278
730
+ msgid "No columns settings available."
731
+ msgstr "No hay ajustes de columnas disponibles."
732
 
733
+ #: ../classes/storage_model.php:299
734
+ msgid "You are trying to store the same settings for %s."
735
+ msgstr "Está tratando de almacenar los mismos ajustes para %s."
736
 
737
+ #: ../classes/storage_model.php:303
738
+ msgid "Settings for %s updated successfully."
739
  msgstr ""
740
 
741
+ #: ../classes/storage_model.php:643
742
+ msgid "Columns by Plugins"
743
  msgstr ""
744
 
745
+ #: ../classes/storage_model.php:862
746
+ msgid "View"
747
+ msgstr "Ver"
748
 
749
+ #: ../classes/upgrade.php:62
750
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
751
  msgstr ""
752
 
753
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
754
+ msgid "Upgrade"
755
+ msgstr "Actualizar"
756
 
757
+ #: ../classes/upgrade.php:136
758
+ msgid "requires a database upgrade"
759
+ msgstr "requiere una actualización de la base de datos"
760
 
761
+ #: ../classes/upgrade.php:139
762
+ msgid "why?"
763
+ msgstr "¿Por qué?"
764
 
765
+ #: ../classes/upgrade.php:140
766
+ msgid "Please"
767
+ msgstr "Por favor"
768
 
769
+ #: ../classes/upgrade.php:141
770
+ msgid "backup your database"
771
+ msgstr "haga una copia de seguridad de su base de datos"
772
 
773
+ #: ../classes/upgrade.php:142
774
+ msgid "then click"
775
+ msgstr "luego haga clic"
776
 
777
+ #: ../classes/upgrade.php:351
778
+ msgid "Migrating Column Settings"
779
+ msgstr "Migrando Ajustes de Columna"
780
 
781
+ #: ../classes/upgrade.php:387
782
+ msgid "No Upgrade Required"
783
+ msgstr "No Hay Actualizaciones Obligatorias"
 
784
 
785
+ #: ../classes/upgrade.php:388
786
+ msgid "Return to welcome screen."
787
+ msgstr "Volver a la pantalla de bienvenida."
788
 
789
+ #: ../classes/upgrade.php:406
790
+ msgid "Upgrade Complete!"
791
+ msgstr "¡Actualización Completada!"
 
792
 
793
+ #: ../classes/upgrade.php:406
794
+ msgid "Return to settings."
795
+ msgstr "Volver a la configuración."
796
 
797
+ #: ../classes/upgrade.php:407
798
+ msgid "Error"
799
+ msgstr "Error"
800
 
801
+ #: ../classes/upgrade.php:408
802
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
803
+ msgstr "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, reporte esto en el foro de soporte."
804
 
805
+ #: ../classes/column/acf-placeholder.php:19
806
+ msgid "ACF Field"
807
+ msgstr "Campo ACF"
 
808
 
809
+ #: ../classes/column/acf-placeholder.php:35
810
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
811
+ msgstr "Si tiene una licencia de desarrollador por favor baje e instale su add-on ACF de <a href='%s'>la pestaña de add-ons</a>."
812
 
813
+ #: ../classes/column/acf-placeholder.php:38
814
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
815
+ msgstr "Admin Columns Pro - Developer ofrece una integración completa de Campos Personalizados Avanzados, permitiéndole mostrar y editar fácilmente campos ACF desde el resumen de sus posts."
 
816
 
817
+ #: ../classes/column/acf-placeholder.php:44
818
+ msgid "Find out more"
819
+ msgstr "Descubra más"
820
 
821
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
822
+ msgid "Actions"
823
+ msgstr "Acciones"
 
824
 
825
+ #: ../classes/column/actions.php:96
826
+ msgid "Use icons?"
827
  msgstr ""
828
 
829
+ #: ../classes/column/actions.php:96
830
+ msgid "Use icons instead of text for displaying the actions."
831
  msgstr ""
832
 
833
+ #: ../classes/column/custom-field.php:96
834
+ msgid "Checkmark (true/false)"
835
+ msgstr "Marca de Verificación (true/false)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
836
 
837
+ #: ../classes/column/custom-field.php:102
838
+ msgid "Media Library"
839
+ msgstr "Librería de Media"
840
 
841
+ #: ../classes/column/custom-field.php:105
842
+ msgid "Post Title (Post ID's)"
843
+ msgstr "Título del Post (IDs de Post)"
844
 
845
+ #: ../classes/column/custom-field.php:106
846
+ msgid "Username (User ID's)"
847
+ msgstr "Nombre de Usuario (IDs de Usuario)"
848
 
849
+ #: ../classes/column/custom-field.php:107
850
+ msgid "Term Name (Term ID's)"
851
+ msgstr ""
852
 
853
+ #: ../classes/column/custom-field.php:391
854
+ msgid "Select your custom field."
855
+ msgstr "Seleccione su campo personalizado."
856
 
857
+ #: ../classes/column/custom-field.php:401
858
+ msgid "No custom fields available."
859
+ msgstr "No hay campos personalizados disponibles."
860
 
861
+ #: ../classes/column/custom-field.php:401
862
+ msgid "Please create a %s item first."
863
+ msgstr ""
864
 
865
+ #: ../classes/column/custom-field.php:408
866
+ msgid "Field Type"
867
+ msgstr "Tipo de Campo"
868
 
869
+ #: ../classes/column/custom-field.php:408
870
+ msgid "This will determine how the value will be displayed."
871
+ msgstr "Esto determinará cómo el valor se mostrará."
872
 
873
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
874
+ msgid "Taxonomy"
875
+ msgstr "Taxonomía"
876
 
877
+ #: ../classes/column/used-by-menu.php:20
878
+ msgid "Used by Menu"
879
+ msgstr ""
880
 
881
+ #: ../classes/column/used-by-menu.php:133
882
+ msgid "Link to menu"
883
+ msgstr ""
884
 
885
+ #: ../classes/column/used-by-menu.php:133
886
+ msgid "This will make the title link to the menu."
887
+ msgstr ""
888
 
889
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
890
+ msgid "ID"
891
+ msgstr "ID"
892
 
893
+ #: ../classes/column/comment/agent.php:19
894
+ msgid "Agent"
895
+ msgstr "Agente"
896
 
897
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
898
+ msgid "Approved"
899
+ msgstr "Aprobado"
900
 
901
+ #: ../classes/column/comment/author-avatar.php:19
902
+ msgid "Avatar"
903
+ msgstr "Avatar"
 
904
 
905
+ #: ../classes/column/comment/author-email.php:19
906
+ msgid "Author email"
907
+ msgstr "Email del autor"
908
 
909
+ #: ../classes/column/comment/author-ip.php:19
910
+ msgid "Author IP"
911
+ msgstr "IP del autor"
912
 
913
+ #: ../classes/column/comment/author-name.php:12
914
+ msgid "Author name"
915
+ msgstr ""
916
 
917
+ #: ../classes/column/comment/author-url.php:19
918
+ msgid "Author url"
919
+ msgstr "Url del autor"
920
 
921
+ #: ../classes/column/comment/author.php:19
922
+ msgid "Author"
923
+ msgstr "Autor"
924
 
925
+ #: ../classes/column/comment/date-gmt.php:19
926
+ msgid "Date GMT"
927
+ msgstr "Fecha GMT"
928
 
929
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
930
+ msgid "Content"
931
+ msgstr ""
932
 
933
+ #: ../classes/column/comment/post.php:19
934
+ msgid "Post"
935
+ msgstr ""
936
 
937
+ #: ../classes/column/comment/reply-to.php:19
938
+ msgid "In Reply To"
939
+ msgstr "En Respuesta A"
940
 
941
+ #: ../classes/column/comment/user.php:11
942
+ msgid "User"
943
  msgstr ""
944
 
945
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
946
+ msgid "Word count"
947
+ msgstr "Conteo de palabra"
 
 
 
 
948
 
949
+ #: ../classes/column/media/alternate-text.php:19
950
+ msgid "Alt"
951
+ msgstr "Alt"
952
 
953
+ #: ../classes/column/media/attached-to.php:19
954
+ msgid "Attached to post"
955
+ msgstr ""
956
 
957
+ #: ../classes/column/media/available-sizes.php:20
958
+ msgid "Available Sizes"
959
+ msgstr "Tamaños Disponibles"
960
 
961
+ #: ../classes/column/media/available-sizes.php:40
962
+ msgid "full size"
963
+ msgstr "tamaño completo"
964
 
965
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
966
+ msgid "Caption"
967
+ msgstr "Caption"
968
 
969
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
970
+ msgid "Description"
971
+ msgstr "Decripción"
972
 
973
+ #: ../classes/column/media/dimensions.php:19
974
+ msgid "Dimensions"
975
+ msgstr "Dimensiones"
976
 
977
+ #: ../classes/column/media/exif-data.php:19
978
+ msgid "EXIF data"
979
+ msgstr "Datos EXIF"
980
 
981
+ #: ../classes/column/media/exif-data.php:38
982
+ msgid "Aperture"
983
+ msgstr "Apertura"
 
984
 
985
+ #: ../classes/column/media/exif-data.php:39
986
+ msgid "Credit"
987
+ msgstr "Crédito"
988
 
989
+ #: ../classes/column/media/exif-data.php:40
990
+ msgid "Camera"
991
+ msgstr "Cámara"
992
 
993
+ #: ../classes/column/media/exif-data.php:42
994
+ msgid "Timestamp"
995
+ msgstr "Marca de tiempo"
 
996
 
997
+ #: ../classes/column/media/exif-data.php:43
998
+ msgid "Copyright EXIF"
999
+ msgstr "Copyright EXIF"
1000
 
1001
+ #: ../classes/column/media/exif-data.php:44
1002
+ msgid "Focal Length"
1003
+ msgstr "Distancia Focal"
1004
 
1005
+ #: ../classes/column/media/exif-data.php:45
1006
+ msgid "ISO"
1007
+ msgstr "ISO"
1008
 
1009
+ #: ../classes/column/media/exif-data.php:46
1010
+ msgid "Shutter Speed"
1011
+ msgstr "Velocidad del Disparador"
1012
 
1013
+ #: ../classes/column/media/exif-data.php:47
1014
+ msgid "Title"
1015
+ msgstr "Título"
1016
 
1017
+ #: ../classes/column/media/file-name.php:19
1018
+ msgid "File name"
1019
+ msgstr "Nombre de archivo"
1020
 
1021
+ #: ../classes/column/media/file-size.php:19
1022
+ msgid "File size"
1023
+ msgstr "Tamaño de archivo"
1024
 
1025
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1026
+ msgid "Full path"
1027
+ msgstr "Camino completo"
 
1028
 
1029
+ #: ../classes/column/media/full-path.php:83
1030
+ msgid "Path scope"
1031
  msgstr ""
1032
 
1033
+ #: ../classes/column/media/full-path.php:84
1034
+ msgid "Part of the file path to display"
1035
  msgstr ""
1036
 
1037
+ #: ../classes/column/media/full-path.php:97
1038
+ msgid "Relative to domain"
1039
  msgstr ""
1040
 
1041
+ #: ../classes/column/media/full-path.php:102
1042
+ msgid "Relative to main uploads folder "
1043
  msgstr ""
1044
 
1045
+ #: ../classes/column/media/height.php:19
1046
+ msgid "Height"
1047
+ msgstr "Largo"
1048
 
1049
+ #: ../classes/column/media/mime-type.php:19
1050
+ msgid "Mime type"
1051
+ msgstr "Tipo de mime"
1052
 
1053
+ #: ../classes/column/post/attachment-count.php:19
1054
+ msgid "No. of Attachments"
1055
+ msgstr "No. de Adjuntos"
1056
 
1057
+ #: ../classes/column/post/attachment.php:19
1058
+ msgid "Attachments"
1059
  msgstr ""
1060
 
1061
+ #: ../classes/column/post/author-name.php:20
1062
+ msgid "Display Author As"
1063
+ msgstr "Mostrar Autor Como"
1064
+
1065
+ #: ../classes/column/post/author-name.php:100
1066
+ msgid "View Public Author Page"
1067
  msgstr ""
1068
 
1069
+ #: ../classes/column/post/author-name.php:102
1070
+ msgid "Page the author name should link to."
1071
  msgstr ""
1072
 
1073
+ #: ../classes/column/post/before-moretag.php:19
1074
+ msgid "Before More Tag"
1075
+ msgstr "Etiqueta de Antes de Más "
1076
 
1077
+ #: ../classes/column/post/comment-count.php:20
1078
+ msgid "Comment count"
1079
+ msgstr "Cantidad de comentario"
1080
 
1081
+ #: ../classes/column/post/comment-count.php:34
1082
+ msgid "Total"
1083
+ msgstr "Total"
 
1084
 
1085
+ #: ../classes/column/post/comment-count.php:36
1086
+ msgid "Pending"
1087
+ msgstr "Pendiente"
1088
 
1089
+ #: ../classes/column/post/comment-count.php:37
1090
+ msgid "Spam"
1091
+ msgstr "Spam"
1092
 
1093
+ #: ../classes/column/post/comment-count.php:38
1094
+ msgid "Trash"
1095
+ msgstr "Papelera"
1096
 
1097
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1098
+ msgid "Comment status"
1099
+ msgstr "Estado del comentario"
1100
 
1101
+ #: ../classes/column/post/comment-count.php:99
1102
+ msgid "Select which comment status you like to display."
1103
+ msgstr "Seleccionar cuál estado de comentario desea mostrar."
1104
 
1105
+ #: ../classes/column/post/depth.php:19
1106
+ msgid "Depth"
1107
+ msgstr ""
1108
 
1109
+ #: ../classes/column/post/estimated-reading-time.php:19
1110
+ msgid "Estimated Reading Time"
1111
+ msgstr ""
1112
 
1113
+ #: ../classes/column/post/estimated-reading-time.php:66
1114
+ msgid "second"
1115
+ msgid_plural "seconds"
1116
+ msgstr[0] ""
1117
+ msgstr[1] ""
1118
 
1119
+ #: ../classes/column/post/estimated-reading-time.php:69
1120
+ msgid "minute"
1121
+ msgid_plural "minutes"
1122
+ msgstr[0] ""
1123
+ msgstr[1] ""
1124
 
1125
+ #: ../classes/column/post/estimated-reading-time.php:107
1126
+ msgid "Words per minute"
1127
+ msgstr ""
1128
 
1129
+ #: ../classes/column/post/estimated-reading-time.php:108
1130
+ msgid "Estimated reading time in words per minute"
1131
+ msgstr ""
 
1132
 
1133
+ #: ../classes/column/post/featured-image.php:19
1134
+ msgid "Featured Image"
1135
+ msgstr "Imagen Destacada"
1136
+
1137
+ #: ../classes/column/post/formats.php:19
1138
+ msgid "Post Format"
1139
+ msgstr "Formato del Post"
1140
+
1141
+ #: ../classes/column/post/last-modified-author.php:20
1142
+ msgid "Last Modified Author"
1143
  msgstr ""
1144
 
1145
+ #: ../classes/column/post/modified.php:19
1146
+ msgid "Last modified"
1147
+ msgstr "Última modificación"
1148
+
1149
+ #: ../classes/column/post/order.php:19
1150
+ msgid "Order"
1151
+ msgstr ""
1152
 
1153
+ #: ../classes/column/post/page-template.php:19
1154
+ msgid "Page Template"
1155
+ msgstr "Plantilla de Página"
1156
+
1157
+ #: ../classes/column/post/parent.php:19
1158
+ msgid "Parent"
1159
+ msgstr "Padre"
1160
 
1161
+ #: ../classes/column/post/path.php:19
1162
+ msgid "Path"
1163
  msgstr ""
1164
 
1165
+ #: ../classes/column/post/permalink.php:19
1166
+ msgid "Permalink"
1167
+ msgstr "Permalink"
1168
 
1169
+ #: ../classes/column/post/permalink.php:68
1170
+ msgid "Link to post"
1171
  msgstr ""
1172
 
1173
+ #: ../classes/column/post/permalink.php:68
1174
+ msgid "This will make the permalink clickable."
1175
  msgstr ""
1176
 
1177
+ #: ../classes/column/post/ping-status.php:19
1178
+ msgid "Ping status"
1179
+ msgstr "Estado del Ping"
1180
 
1181
+ #: ../classes/column/post/roles.php:19
1182
+ msgid "Roles"
1183
+ msgstr "Roles"
1184
+
1185
+ #: ../classes/column/post/shortcodes.php:19
1186
+ msgid "Shortcodes"
1187
  msgstr ""
1188
 
1189
+ #: ../classes/column/post/slug.php:19
1190
+ msgid "Slug"
1191
+ msgstr "Alias"
1192
 
1193
+ #: ../classes/column/post/status.php:21
1194
+ msgid "Status"
1195
+ msgstr "Estado"
1196
 
1197
+ #: ../classes/column/post/sticky.php:19
1198
+ msgid "Sticky"
1199
+ msgstr "Pegajoso"
1200
 
1201
+ #: ../classes/column/post/title-raw.php:19
1202
+ msgid "Title without actions"
1203
+ msgstr ""
1204
 
1205
+ #: ../classes/column/link/length.php:19
1206
+ msgid "Length"
1207
+ msgstr "Tamaño"
1208
 
1209
+ #: ../classes/column/link/notes.php:19
1210
+ msgid "Notes"
1211
+ msgstr "Notas"
1212
 
1213
+ #: ../classes/column/link/owner.php:19
1214
+ msgid "Owner"
1215
+ msgstr "Dueño"
1216
 
1217
+ #: ../classes/column/link/rss.php:19
1218
+ msgid "Rss"
1219
+ msgstr "Rss"
1220
 
1221
+ #: ../classes/column/link/target.php:19
1222
+ msgid "Target"
1223
+ msgstr "Objetivo"
1224
 
1225
+ #: ../classes/column/user/display-name.php:19
1226
+ msgid "Display name"
1227
+ msgstr ""
1228
 
1229
+ #: ../classes/column/user/first-name.php:19
1230
+ msgid "First name"
1231
+ msgstr "Primer Nombre"
1232
 
1233
+ #: ../classes/column/user/last-name.php:19
1234
+ msgid "Last name"
1235
+ msgstr "Apellido"
1236
 
1237
+ #: ../classes/column/user/post-count.php:19
1238
+ msgid "Post Count"
1239
+ msgstr "Cantidad de Post"
1240
 
1241
+ #: ../classes/column/user/post-count.php:89
1242
+ msgid "Post Type"
1243
+ msgstr "Tipo de Post"
1244
+
1245
+ #: ../classes/column/user/registered.php:19
1246
+ msgid "Registered"
1247
+ msgstr "Registrado"
1248
+
1249
+ #: ../classes/column/user/rich-editing.php:19
1250
+ msgid "Visual Editor"
1251
+ msgstr ""
1252
+
1253
+ #: ../classes/column/user/url.php:19
1254
+ msgid "Url"
1255
+ msgstr "Url"
languages/codepress-admin-columns-fa_IR.mo ADDED
Binary file
languages/{cpac-fa_IR.po → codepress-admin-columns-fa_IR.po} RENAMED
@@ -1,31 +1,30 @@
1
- #
 
2
  # Translators:
3
  # kamel kimiaei <kamel.kimiaei.fard@gmail.com>, 2014
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
- "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
9
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Persian (http://www.transifex.com/projects/p/admin-columns/language/fa/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: fa\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
- "X-Generator: Poedit 1.8.1\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
21
  "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPath-1: ..\n"
23
- "X-Poedit-SearchPathExcluded-0: ../src\n"
24
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
25
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
@@ -47,1253 +46,1210 @@ msgstr ""
47
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
48
  msgstr ""
49
 
50
- #: ../classes/column.php:597
51
  msgid "Thumbnail"
52
  msgstr "بندانگشتی"
53
 
54
- #: ../classes/column.php:598
55
  msgid "Medium"
56
  msgstr "متوسط"
57
 
58
- #: ../classes/column.php:599
59
  msgid "Large"
60
  msgstr "بزرگ"
61
 
62
- #: ../classes/column.php:600
63
  msgid "Full"
64
  msgstr "کامل"
65
 
66
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "Date Format"
68
  msgstr "قابل تاریخ"
69
 
70
- #: ../classes/column.php:1042
71
  msgid "This will determine how the date will be displayed."
72
  msgstr "چگونگی نمایش تاریخ را مشخص می کند."
73
 
74
- #: ../classes/column.php:1048
75
  msgid "Example:"
76
  msgstr "مثال:"
77
 
78
- #: ../classes/column.php:1050
79
- #, php-format
80
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
81
- msgstr "برای استفاده از قالب تاریخ وردپرس خالی بگذارید، یا به <a href=\"%s\">قالب دلخواهی از اینجا</a> تغییر دهید."
82
 
83
- #: ../classes/column.php:1051
84
  msgid "Documentation on date and time formatting."
85
  msgstr "مستندات در باره قالب بندی تاریخ و زمان."
86
 
87
- #: ../classes/column.php:1065
88
  msgid "Excerpt length"
89
  msgstr "طول چکیده"
90
 
91
- #: ../classes/column.php:1066
92
  msgid "Number of words"
93
  msgstr "تعداد کلمات"
94
 
95
- #: ../classes/column.php:1084
96
  msgid "Preview size"
97
  msgstr "اندازه پیش نمایش"
98
 
99
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
100
  msgid "Custom"
101
  msgstr "دلخواه"
102
 
103
- #: ../classes/column.php:1104 ../classes/column.php:1251
104
  msgid "width"
105
  msgstr "عرض"
106
 
107
- #: ../classes/column.php:1107
108
  msgid "height"
109
  msgstr "ارتفاع"
110
 
111
- #: ../classes/column.php:1119
112
  msgid "Before"
113
  msgstr "قبل"
114
 
115
- #: ../classes/column.php:1119
116
  msgid "This text will appear before the custom field value."
117
  msgstr "این متن قبل از مقدار زمینه دلخواه نمایش داده خواهد شد."
118
 
119
- #: ../classes/column.php:1120
120
  msgid "After"
121
  msgstr "بعد"
122
 
123
- #: ../classes/column.php:1120
124
  msgid "This text will appear after the custom field value."
125
  msgstr "این متن بعد از مقدار زمینه دلخواه نمایش داده خواهد شد."
126
 
127
- #: ../classes/column.php:1129
128
  msgid "Display Name"
129
  msgstr "نام عمومی"
130
 
131
- #: ../classes/column.php:1130
132
  msgid "First Name"
133
  msgstr "نام"
134
 
135
- #: ../classes/column.php:1131
136
  msgid "Last Name"
137
  msgstr "نام خانوادگی"
138
 
139
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
140
  msgid "Nickname"
141
  msgstr "لغب"
142
 
143
- #: ../classes/column.php:1133
144
  msgid "User Login"
145
  msgstr "نام کاربری"
146
 
147
- #: ../classes/column.php:1134
148
  msgid "User Email"
149
  msgstr "ایمیل کاربر"
150
 
151
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
152
  msgid "User ID"
153
  msgstr "شناسه کاربر"
154
 
155
- #: ../classes/column.php:1136
156
  msgid "First and Last Name"
157
  msgstr "نام و نام خانوادگی"
158
 
159
- #: ../classes/column.php:1139
160
  msgid "Display format"
161
  msgstr ""
162
 
163
- #: ../classes/column.php:1139
164
  msgid "This is the format of the author name."
165
  msgstr "فرمت نمایش نام نویسنده"
166
 
167
- #: ../classes/column.php:1273
168
  msgid "Edit"
169
  msgstr "ویرایش"
170
 
171
- #: ../classes/column.php:1275 ../classes/column.php:1367
172
  msgid "Clone"
173
  msgstr ""
174
 
175
- #: ../classes/column.php:1277 ../classes/column.php:1369
176
  msgid "Remove"
177
  msgstr "حذف"
178
 
179
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
180
  msgid "Type"
181
  msgstr "نوع"
182
 
183
- #: ../classes/column.php:1295
184
  msgid "Choose a column type."
185
  msgstr "انتخاب نوع ستون"
186
 
187
- #: ../classes/column.php:1295
188
  msgid "Name"
189
  msgstr ""
190
 
191
- #: ../classes/column.php:1305
192
  msgid "Label"
193
  msgstr "برچسب"
194
 
195
- #: ../classes/column.php:1305
196
  msgid "This is the name which will appear as the column header."
197
  msgstr "این نامی است که در تیتر ستون دیده می شود."
198
 
199
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
200
  msgid "Width"
201
  msgstr "عرض"
202
 
203
- #: ../classes/column.php:1314
204
  msgid "default"
205
  msgstr "پیش فرض"
206
 
207
- #: ../classes/column.php:1315
208
  msgid "auto"
209
  msgstr ""
210
 
211
- #: ../classes/column/acf-placeholder.php:19
212
- msgid "ACF Field"
213
- msgstr "زمینه ACF"
214
 
215
- #: ../classes/column/acf-placeholder.php:32
216
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
217
  msgstr ""
218
 
219
- #: ../classes/column/acf-placeholder.php:35
220
- #, php-format
221
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
222
- msgstr "اگر شما مجوز نسخه توسعه دهنده دارید می توانید افزونه ی ACF را از <a href='%s'>تب افزونه ها</a> دانلود و نصب نمایید."
223
 
224
- #: ../classes/column/acf-placeholder.php:38
225
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
226
- msgstr "این افزونه در نسخه توسعه دهندگان به صورت کامل افزونه زمینه دلخواه پیشرفته را در بر خواهد گرفتو به شما اجازه می دهد به آسانی زمینه های ACF را از قسمت همه نوشته ها مشاهده و ویرایش کنید."
227
 
228
- #: ../classes/column/acf-placeholder.php:44
229
- msgid "Find out more"
230
- msgstr "اطلاعات بیشتر"
231
 
232
- #: ../classes/column/actions.php:29
233
- msgid "Actions"
234
- msgstr "عملیات ها"
235
 
236
- #: ../classes/column/actions.php:96
237
- msgid "Use icons?"
 
 
 
 
238
  msgstr ""
239
 
240
- #: ../classes/column/actions.php:96
241
- msgid "Use icons instead of text for displaying the actions."
242
  msgstr ""
243
 
244
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
245
- msgid "Yes"
246
  msgstr ""
247
 
248
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
249
- msgid "No"
250
  msgstr ""
251
 
252
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
253
- msgid "ID"
254
- msgstr "شناسه"
255
 
256
- #: ../classes/column/comment/agent.php:19
257
- msgid "Agent"
258
- msgstr "مرورگر"
259
 
260
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
261
- msgid "Approved"
262
- msgstr "تایید شده"
263
 
264
- #: ../classes/column/comment/author-avatar.php:19
265
- msgid "Avatar"
266
- msgstr "آواتار"
267
 
268
- #: ../classes/column/comment/author-email.php:19
269
- msgid "Author email"
270
- msgstr "ایمیل نویسنده"
271
 
272
- #: ../classes/column/comment/author-ip.php:19
273
- msgid "Author IP"
274
- msgstr "آی پی نویسنده"
275
 
276
- #: ../classes/column/comment/author-name.php:12
277
- msgid "Author name"
278
  msgstr ""
279
 
280
- #: ../classes/column/comment/author-url.php:19
281
- msgid "Author url"
282
- msgstr "آدرس نویسنده"
283
 
284
- #: ../classes/column/comment/author.php:19
285
- msgid "Author"
286
- msgstr "نویسنده"
287
 
288
- #: ../classes/column/comment/date-gmt.php:19
289
- msgid "Date GMT"
290
- msgstr "تاریخ مرجع"
291
 
292
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
293
- #, php-format
294
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
295
- msgstr "ارسالی در <a href=\"%1$s\">%2$s در %3$s</a>"
296
 
297
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
298
- msgid "Date"
299
- msgstr "تاریخ"
300
 
301
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
302
- msgid "Content"
303
- msgstr ""
304
 
305
- #: ../classes/column/comment/reply-to.php:19
306
- msgid "In Reply To"
307
- msgstr "در پاسخ به"
 
 
308
 
309
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
310
- msgid "User"
311
- msgstr ""
312
 
313
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
314
- msgid "Word count"
315
- msgstr "تعداد کلمات"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
 
317
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
318
  msgid "Custom Field"
319
  msgstr "زمینه دلخواه"
320
 
321
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
322
  msgid "Default"
323
  msgstr "پیش فرض"
324
 
325
- #: ../classes/column/custom-field.php:95
326
- msgid "Checkmark (true/false)"
327
- msgstr "تیک(صحیح غلط)"
328
 
329
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
330
- msgid "Color"
331
- msgstr "رنگ"
332
 
333
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
334
- msgid "Counter"
335
- msgstr "شمارنده"
336
 
337
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
338
  msgid "Excerpt"
339
  msgstr "چکیده"
340
 
341
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
342
- msgid "Image"
343
- msgstr "تصویر"
344
-
345
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
346
- msgid "Media Library"
347
- msgstr "کتابخانه رسانه"
348
 
349
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
350
  msgid "Multiple Values"
351
  msgstr "چندین مقدار"
352
 
353
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
354
  msgid "Numeric"
355
  msgstr "عددی"
356
 
357
- #: ../classes/column/custom-field.php:104
358
- msgid "Post Title (Post ID's)"
359
- msgstr "تیتر نوشته (شناسه نوشته)"
360
 
361
- #: ../classes/column/custom-field.php:105
362
- msgid "Username (User ID's)"
363
- msgstr "نام کاربری(شناسه کاربری)"
364
 
365
- #: ../classes/column/custom-field.php:106
366
- msgid "Term Name (Term ID's)"
367
- msgstr ""
368
 
369
- #: ../classes/column/custom-field.php:390
370
- msgid "Select your custom field."
371
- msgstr "زمینه دلخواه خود را انتخاب کنید."
372
 
373
- #: ../classes/column/custom-field.php:400
374
- msgid "No custom fields available."
375
- msgstr "زمینه دلخواهی موجود نیست."
376
 
377
- #: ../classes/column/custom-field.php:400
378
- #, php-format
379
- msgid "Please create a %s item first."
380
- msgstr ""
381
 
382
- #: ../classes/column/custom-field.php:407
383
- msgid "Field Type"
384
- msgstr "نوع فیلد"
385
 
386
- #: ../classes/column/custom-field.php:407
387
- msgid "This will determine how the value will be displayed."
388
- msgstr "نمایانگر این موضوع که مقادیر چگونه نمایش داده خواهند شد."
389
 
390
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
391
- msgid "Description"
392
- msgstr "توضیحات"
393
 
394
- #: ../classes/column/link/length.php:19
395
- msgid "Length"
396
- msgstr "طول"
397
 
398
- #: ../classes/column/link/notes.php:19
399
- msgid "Notes"
400
- msgstr "نکته ها"
401
 
402
- #: ../classes/column/link/owner.php:19
403
- msgid "Owner"
404
- msgstr "مالک"
405
 
406
- #: ../classes/column/link/rss.php:19
407
- msgid "Rss"
408
- msgstr "Rss"
409
 
410
- #: ../classes/column/link/target.php:19
411
- msgid "Target"
412
- msgstr "هدف"
413
 
414
- #: ../classes/column/media/alternate-text.php:19
415
- msgid "Alt"
416
- msgstr "متن جایگزین"
417
 
418
- #: ../classes/column/media/attached-to.php:19
419
- msgid "Attached to post"
420
- msgstr ""
421
 
422
- #: ../classes/column/media/available-sizes.php:20
423
- msgid "Available Sizes"
424
- msgstr "اندازه های موجود"
425
 
426
- #: ../classes/column/media/available-sizes.php:40
427
- msgid "full size"
428
- msgstr "اندازه کامل"
429
 
430
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
431
- msgid "Caption"
432
- msgstr "عنوان"
433
 
434
- #: ../classes/column/media/dimensions.php:19
435
- msgid "Dimensions"
436
- msgstr "ابعاد"
437
 
438
- #: ../classes/column/media/exif-data.php:19
439
- msgid "EXIF data"
440
- msgstr "داده های EXIF"
441
 
442
- #: ../classes/column/media/exif-data.php:38
443
- msgid "Aperture"
444
- msgstr "دیافراگم"
445
 
446
- #: ../classes/column/media/exif-data.php:39
447
- msgid "Credit"
448
- msgstr "اعتبار"
449
 
450
- #: ../classes/column/media/exif-data.php:40
451
- msgid "Camera"
452
- msgstr "دوربین"
453
 
454
- #: ../classes/column/media/exif-data.php:42
455
- msgid "Timestamp"
456
- msgstr "زمان"
457
 
458
- #: ../classes/column/media/exif-data.php:43
459
- msgid "Copyright EXIF"
460
- msgstr "کپی رایت EXIF"
461
 
462
- #: ../classes/column/media/exif-data.php:44
463
- msgid "Focal Length"
464
- msgstr "فاصله کانونی"
465
 
466
- #: ../classes/column/media/exif-data.php:45
467
- msgid "ISO"
468
- msgstr "ISO"
469
 
470
- #: ../classes/column/media/exif-data.php:46
471
- msgid "Shutter Speed"
472
- msgstr "سرعت شاتر"
473
 
474
- #: ../classes/column/media/exif-data.php:47
475
- msgid "Title"
476
- msgstr "تیتر"
477
 
478
- #: ../classes/column/media/file-name.php:19
479
- msgid "File name"
480
- msgstr "نام فایل"
481
 
482
- #: ../classes/column/media/file-size.php:19
483
- msgid "File size"
484
- msgstr "حجم فایل"
485
 
486
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
487
- msgid "Full path"
488
- msgstr "مسیر کامل"
489
 
490
- #: ../classes/column/media/full-path.php:83
491
- msgid "Path scope"
492
- msgstr ""
493
 
494
- #: ../classes/column/media/full-path.php:84
495
- msgid "Part of the file path to display"
496
- msgstr ""
497
 
498
- #: ../classes/column/media/full-path.php:97
499
- msgid "Relative to domain"
500
- msgstr ""
501
 
502
- #: ../classes/column/media/full-path.php:102
503
- msgid "Relative to main uploads folder "
 
 
 
 
504
  msgstr ""
505
 
506
- #: ../classes/column/media/height.php:19
507
- msgid "Height"
508
- msgstr "ارتفاع"
509
 
510
- #: ../classes/column/media/mime-type.php:19
511
- msgid "Mime type"
512
- msgstr "نوع فایل"
513
 
514
- #: ../classes/column/post/attachment-count.php:19
515
- msgid "No. of Attachments"
516
- msgstr "تعداد پیوست ها"
517
 
518
- #: ../classes/column/post/attachment.php:19
519
- msgid "Attachments"
520
  msgstr ""
521
 
522
- #: ../classes/column/post/author-name.php:20
523
- msgid "Display Author As"
524
- msgstr "نمایش نویسنده با"
525
-
526
- #: ../classes/column/post/before-moretag.php:19
527
- msgid "Before More Tag"
528
- msgstr "قبل از تگ بیشتر"
529
-
530
- #: ../classes/column/post/comment-count.php:20
531
- msgid "Comment count"
532
- msgstr "تعداد نظرات"
533
 
534
- #: ../classes/column/post/comment-count.php:34
535
- msgid "Total"
536
- msgstr "مجموع"
537
 
538
- #: ../classes/column/post/comment-count.php:36
539
- msgid "Pending"
540
- msgstr "منتظر"
541
 
542
- #: ../classes/column/post/comment-count.php:37
543
- msgid "Spam"
544
- msgstr "جفنگ"
545
 
546
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
547
- msgid "Trash"
548
- msgstr "زباله دان"
549
 
550
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
551
- msgid "Comment status"
552
- msgstr "وضعیت نظر"
553
 
554
- #: ../classes/column/post/comment-count.php:99
555
- msgid "Select which comment status you like to display."
556
- msgstr "مشخص کنید چه نوع نظراتی مایلید نمایش داده شود."
557
 
558
- #: ../classes/column/post/date-published.php:17
559
- msgid "Date Published"
560
  msgstr ""
561
 
562
- #: ../classes/column/post/depth.php:19
563
- msgid "Depth"
564
- msgstr ""
565
 
566
- #: ../classes/column/post/estimated-reading-time.php:19
567
- msgid "Estimated Reading Time"
568
- msgstr ""
569
 
570
- #: ../classes/column/post/estimated-reading-time.php:63
571
- msgid "second"
572
- msgid_plural "seconds"
573
- msgstr[0] ""
574
 
575
- #: ../classes/column/post/estimated-reading-time.php:66
576
- msgid "minute"
577
- msgid_plural "minutes"
578
- msgstr[0] ""
579
 
580
- #: ../classes/column/post/estimated-reading-time.php:103
581
- msgid "Words per minute"
582
- msgstr ""
583
 
584
- #: ../classes/column/post/estimated-reading-time.php:104
585
- msgid "Estimated reading time in words per minute"
586
- msgstr ""
587
 
588
- #: ../classes/column/post/featured-image.php:19
589
- msgid "Featured Image"
590
- msgstr "تصویر شاخص"
591
 
592
- #: ../classes/column/post/formats.php:19
593
- msgid "Post Format"
594
- msgstr "قالب نوشته"
595
 
596
- #: ../classes/column/post/last-modified-author.php:20
597
- msgid "Last Modified Author"
598
  msgstr ""
599
 
600
- #: ../classes/column/post/modified.php:19
601
- msgid "Last modified"
602
- msgstr "آخرین ویرایش"
603
 
604
- #: ../classes/column/post/order.php:19
605
- msgid "Page Order"
606
- msgstr "ترتیب صفحه"
607
 
608
- #: ../classes/column/post/page-template.php:19
609
- msgid "Page Template"
610
- msgstr "قالب صفحه"
611
 
612
- #: ../classes/column/post/parent.php:19
613
- msgid "Parent"
614
- msgstr "مادر"
615
 
616
- #: ../classes/column/post/path.php:19
617
- msgid "Path"
618
  msgstr ""
619
 
620
- #: ../classes/column/post/permalink.php:19
621
- msgid "Permalink"
622
- msgstr "پیوندیکتا"
623
 
624
- #: ../classes/column/post/permalink.php:68
625
- msgid "Link to post"
626
  msgstr ""
627
 
628
- #: ../classes/column/post/permalink.php:68
629
- msgid "This will make the permalink clickable."
630
  msgstr ""
631
 
632
- #: ../classes/column/post/ping-status.php:19
633
- msgid "Ping status"
634
- msgstr "وضعیت پینگ"
635
 
636
- #: ../classes/column/post/roles.php:19
637
- msgid "Roles"
638
- msgstr "نقش ها"
639
 
640
- #: ../classes/column/post/shortcodes.php:19
641
- msgid "Shortcodes"
642
  msgstr ""
643
 
644
- #: ../classes/column/post/slug.php:19
645
- msgid "Slug"
646
- msgstr "نامک"
647
 
648
- #: ../classes/column/post/status.php:19
649
- msgid "Status"
650
- msgstr "وضعیت"
651
 
652
- #: ../classes/column/post/status.php:29
653
- msgid "Published"
654
- msgstr "منتشرشده"
655
-
656
- #: ../classes/column/post/status.php:30
657
- msgid "Draft"
658
- msgstr "پیش نویس"
659
-
660
- #: ../classes/column/post/status.php:31
661
- msgid "Scheduled"
662
- msgstr "زمانبندی شده"
663
-
664
- #: ../classes/column/post/status.php:32
665
- msgid "Private"
666
- msgstr "خصوصی"
667
-
668
- #: ../classes/column/post/status.php:33
669
- msgid "Pending Review"
670
- msgstr "منتظر بازبینی"
671
-
672
- #: ../classes/column/post/status.php:34
673
- msgid "Auto Draft"
674
- msgstr "پیش نویس خودکار"
675
-
676
- #: ../classes/column/post/sticky.php:19
677
- msgid "Sticky"
678
- msgstr "سنجاق شده"
679
-
680
- #: ../classes/column/post/title-raw.php:19
681
- msgid "Title without actions"
682
- msgstr ""
683
-
684
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
685
- msgid "Taxonomy"
686
- msgstr "طبقه بندی"
687
-
688
- #: ../classes/column/used-by-menu.php:20
689
- msgid "Used by Menu"
690
- msgstr ""
691
-
692
- #: ../classes/column/used-by-menu.php:133
693
- msgid "Link to menu"
694
- msgstr ""
695
-
696
- #: ../classes/column/used-by-menu.php:133
697
- msgid "This will make the title link to the menu."
698
- msgstr ""
699
-
700
- #: ../classes/column/user/comment-count.php:19
701
- msgid "Comment Count"
702
- msgstr "تعداد کامنت"
703
-
704
- #: ../classes/column/user/display-name.php:19
705
- msgid "Display name"
706
- msgstr ""
707
-
708
- #: ../classes/column/user/first-name.php:19
709
- msgid "First name"
710
- msgstr "نام"
711
-
712
- #: ../classes/column/user/last-name.php:19
713
- msgid "Last name"
714
- msgstr "نام خانوادگی"
715
-
716
- #: ../classes/column/user/post-count.php:19
717
- msgid "Post Count"
718
- msgstr "تعداد نوشته"
719
-
720
- #: ../classes/column/user/post-count.php:89
721
- msgid "Post Type"
722
- msgstr "نوع نوشته"
723
-
724
- #: ../classes/column/user/registered.php:19
725
- msgid "Registered"
726
- msgstr "ثبت نام شده"
727
 
728
- #: ../classes/column/user/rich-editing.php:19
729
- msgid "Visual Editor"
730
- msgstr ""
731
 
732
- #: ../classes/column/user/url.php:19
733
- msgid "Url"
734
- msgstr "آدرس"
735
 
736
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
737
- msgid "Admin Columns"
738
- msgstr "تنظیمات ستون ها"
739
 
740
- #: ../classes/review_notice.php:58
741
- msgid "Admin Columns Pro"
742
- msgstr ""
743
 
744
- #: ../classes/review_notice.php:65
745
- #, php-format
746
- msgid ""
747
- "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 "
748
- "you're not happy with %s, please %s."
749
- msgstr ""
750
 
751
- #: ../classes/review_notice.php:68
752
- msgid "click here"
753
- msgstr ""
754
 
755
- #: ../classes/review_notice.php:72
756
- msgid "Leave a review!"
757
- msgstr ""
758
 
759
- #: ../classes/review_notice.php:73
760
- msgid "Permanently hide notice"
761
- msgstr ""
762
 
763
- #: ../classes/review_notice.php:80
764
- #, php-format
765
- 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."
766
- msgstr ""
767
 
768
- #: ../classes/review_notice.php:82
769
- msgid "documentation page"
770
- msgstr ""
771
 
772
- #: ../classes/review_notice.php:86
773
- #, php-format
774
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
775
- msgstr ""
776
 
777
- #: ../classes/review_notice.php:87
778
- msgid "our forums"
779
  msgstr ""
780
 
781
- #: ../classes/review_notice.php:91
782
- #, php-format
783
- msgid "You can also find help on the %s, and %s."
784
  msgstr ""
785
 
786
- #: ../classes/review_notice.php:92
787
- msgid "Admin Columns forums on WordPress.org"
788
- msgstr ""
789
 
790
- #: ../classes/review_notice.php:93
791
- msgid "find answers to some frequently asked questions"
792
  msgstr ""
793
 
794
- #: ../classes/settings.php:112
795
- msgid "Add-on successfully activated."
796
- msgstr "افزونه با موفقیت فعال شد"
797
-
798
- #: ../classes/settings.php:115
799
- msgid "Add-on successfully deactivated."
800
- msgstr "افزونه با موفقیت غیرفعال شد"
801
-
802
- #: ../classes/settings.php:170
803
- msgid "Admin Columns Settings"
804
- msgstr "تنظیمات ستون ها"
805
-
806
- #: ../classes/settings.php:220
807
- #, php-format
808
- msgid "%s column is already present and can not be duplicated."
809
- msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
810
-
811
- #: ../classes/settings.php:274
812
- msgid "Default settings succesfully restored."
813
- msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
814
-
815
- #: ../classes/settings.php:291
816
- msgid "Overview"
817
- msgstr "مرورکلی"
818
-
819
- #: ../classes/settings.php:294
820
- msgid ""
821
- "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 "
822
- "reorder them."
823
- msgstr "این افزونه برای ایجاد ستون های دلخواه و یا حذف آنها و مرتب سازی و همچنین تغییر نام آنها در نوشته ها و برگه ها ، رسانه ها ، نظرات، لینک ها و کاربران طراحی شده است."
824
-
825
- #: ../classes/settings.php:297
826
- msgid "Basics"
827
- msgstr "مقدمات"
828
 
829
- #: ../classes/settings.php:299
830
- msgid "Change order"
831
- msgstr "تغییر ترتیب"
832
 
833
- #: ../classes/settings.php:300
834
- msgid "By dragging the columns you can change the order which they will appear in."
835
- msgstr "با گرفتن و کشیدن ستون ها می توانید ترتیب نمایش آنها را تغییر دهید."
836
 
837
- #: ../classes/settings.php:301
838
- msgid "Change label"
839
- msgstr "تغییر برچسب"
840
 
841
- #: ../classes/settings.php:302
842
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
843
- msgstr "با کلیک روی مثلث می توانید تنظیمات ستون را مشاهده فرمایید. در اینجا می توانید برچسب هر ستون را تغییر دهید."
844
 
845
- #: ../classes/settings.php:303
846
- msgid "Change column width"
847
- msgstr "تغییر عرض ستون"
848
 
849
- #: ../classes/settings.php:304
850
- 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."
851
- msgstr "با کلیک روی مثلث تنظیمات ستون را مشاهده خواهید کرد. به کمک جابجایی اسلایدر می توانید عرض هر ستون را به صورت درصد مشخص کنید."
852
 
853
- #: ../classes/settings.php:310
854
- msgid "'Custom Field' column"
855
- msgstr "ستون 'زمینه دلخواه'"
856
 
857
- #: ../classes/settings.php:311
858
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
859
- msgstr "ستون زمینه دلخواه از زمینه های دلخواه نوشته ها و کاربران استفاده می کند. ده نوع مختلف برای تنظیم وجود دارد."
860
 
861
- #: ../classes/settings.php:313
862
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
863
- msgstr "مقدار:می تواند متن یا آرایه باشد. آرایه ها به متن تبدیل خواهند شد و با ',' جدا خواهند شد."
864
 
865
- #: ../classes/settings.php:314
866
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
867
- msgstr "مثدار: باید شامل یک آدرس (url) تصویر باشد یا شناسه هایی (ID) از پیوست ها که با ',' جدا شده اند."
868
 
869
- #: ../classes/settings.php:315
870
- msgid "Value: This will show the first 20 words of the Post content."
871
- msgstr "مقدار: بیست کلمه ابتدای متن را نشان خواهد داد."
872
 
873
- #: ../classes/settings.php:316
874
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
875
- msgstr "مثدار: باید آرایه باشد. هر آرایه ای (چند بعدی) متنی خواهد شد."
876
 
877
- #: ../classes/settings.php:317
878
- 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."
879
- msgstr "مقدار: فقط عددی. <br/> اگر از افزونه 'مرتب سازی' استفاده کنید، از این مقدار برای مرتب سازی استفاده خواهد شد. می توانید نوشته هایتان را یک مقدار عددی (زمینه دلخواه) مرتب سازی کنید."
880
 
881
- #: ../classes/settings.php:318
882
- #, php-format
883
- 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."
884
- msgstr "مقدار: باید زمان تاریخ سیستم یونیکس یا تاریخ قالب بندی شده باشد که در <a href='%s'>راهنما</a> شرح داده شده. می توانید خروجی تاریخ را از <a href='%s'>تنظیمات همگانی</a> تغییر دهید."
885
 
886
- #: ../classes/settings.php:319
887
- msgid "Post Titles"
888
- msgstr "تیترهای نوشته"
889
 
890
- #: ../classes/settings.php:319
891
- msgid "Value: can be one or more Post ID's (seperated by ',')."
892
- msgstr "مقدار: می تواند شامل یک یا چند شناسه (ID) نوشته ها (جدا شده با ',') باشد."
893
 
894
- #: ../classes/settings.php:320
895
- msgid "Usernames"
896
- msgstr "نام های کاربری"
897
 
898
- #: ../classes/settings.php:320
899
- msgid "Value: can be one or more User ID's (seperated by ',')."
900
- msgstr "می تواند شامل یک یا چند شناسه (ID) کاربری (جداشده با ',') باشد."
901
 
902
- #: ../classes/settings.php:321
903
- msgid "Checkmark"
904
- msgstr "تیک"
905
 
906
- #: ../classes/settings.php:321
907
- msgid "Value: should be a 1 (one) or 0 (zero)."
908
- msgstr "مقدار: می تواند یک یا صفر باشد"
909
 
910
- #: ../classes/settings.php:322
911
- msgid "Value: hex value color, such as #808080."
912
- msgstr "مقدار: می تواند کد هکس رنگ مانند #808080 باشد"
913
 
914
- #: ../classes/settings.php:323
915
- 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."
916
- msgstr "مقدار: می تواند متن یا آرایه باشد. تعداد دفعات استفاده از meta key های آیتم را نمایش می دهد."
917
 
918
- #: ../classes/settings.php:412
919
- msgid "Welcome to Admin Columns"
920
- msgstr "به مدیریت ستون ها خوش آمدید"
921
 
922
- #: ../classes/settings.php:415
923
- msgid "Thank you for updating to the latest version!"
924
- msgstr "از اینکه به نسخه نهایی به روزرسانی کردید متشکریم!"
925
 
926
- #: ../classes/settings.php:416
927
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
928
- msgstr "مدیریت ستون ها بهینه تر و لذت بخش تر از قبل شده است. امیدواریم شما بپسندید."
929
 
930
- #: ../classes/settings.php:421
931
- msgid "What’s New"
932
- msgstr "چه چیز جدید است"
933
 
934
- #: ../classes/settings.php:422
935
- msgid "Changelog"
936
- msgstr "تغییرات"
937
 
938
- #: ../classes/settings.php:427
939
- msgid "Important"
940
- msgstr "مهم"
941
 
942
- #: ../classes/settings.php:429
943
- msgid "Database Changes"
944
- msgstr "تغییرات بانک اطلاعاتی"
945
 
946
- #: ../classes/settings.php:430
947
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
948
- msgstr "بانک اطلاعاتی بین نسخه های 1 و 2 تغییراتی داشته است ولی اطمینان داشته باشید هر زمان می توانید به نسخه 1 برگردید."
949
 
950
- #: ../classes/settings.php:433
951
- msgid "Make sure you backup your database and then click"
952
- msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید و روی "
953
 
954
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
955
- msgid "Upgrade Database"
956
- msgstr "به روز رسانی بانک اطلاعاتی کلیک کنید"
957
 
958
- #: ../classes/settings.php:436
959
- msgid "Potential Issues"
960
- msgstr "مشکلات بالقوه"
961
 
962
- #: ../classes/settings.php:437
963
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
964
- msgstr "به دلیل تغییرات در کدهای برنامه نویسی این امکان وجود دارد که بعضی افزونه های شما به خوبی کار نکند. توصیه می شود راهنما انتقال از "
965
 
966
- #: ../classes/settings.php:437
967
- msgid "Migrating from v1 to v2"
968
- msgstr "نسخه 1 به 2 را به صورت کامل مطالعه فرمایید"
969
 
970
- #: ../classes/settings.php:437
971
- msgid "guide to view the full list of changes."
972
- msgstr "راهنما برای دیدن لیست تمام تغییرات."
973
 
974
- #: ../classes/settings.php:437
975
- #, php-format
976
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
977
- msgstr "زمانی که مشکلی مشاهده کردید لطفا آنرا به ما <a href=\"%s\">گزارش کنید</a>تا در نسخه بعدی تصحیح کنیم."
978
 
979
- #: ../classes/settings.php:440
980
- msgid "Important!"
981
- msgstr "مهم !"
982
 
983
- #: ../classes/settings.php:440
984
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
985
- msgstr "اگر بدون آگاهی از تغییرات رخ داده افزونه را به روز رسانی کرده اید به آخرین "
986
 
987
- #: ../classes/settings.php:440
988
- msgid "version 1"
989
- msgstr "نسخه 1"
990
 
991
- #: ../classes/settings.php:440
992
- msgid "of this plugin."
993
- msgstr "از افزونه برگردید."
994
 
995
- #: ../classes/settings.php:446
996
- msgid "Changelog for"
997
- msgstr "تغییرات برای"
998
 
999
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1000
- msgid "Learn more"
1001
- msgstr "آموزش بیشتر"
1002
 
1003
- #: ../classes/settings.php:471
1004
- msgid "Start using Admin Columns"
1005
- msgstr "شروع استفاده از ستون های مدیریت"
1006
 
1007
- #: ../classes/settings.php:490
1008
- msgid "General Settings"
1009
- msgstr "تنظیمات عمومی"
1010
 
1011
- #: ../classes/settings.php:491
1012
- msgid "Customize your Admin Columns settings."
1013
- msgstr "دلخواه سازی تنظیمات افزونه"
1014
 
1015
- #: ../classes/settings.php:502
1016
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1017
  msgstr ""
1018
 
1019
- #: ../classes/settings.php:509 ../classes/settings.php:673
1020
- msgid "Save"
1021
- msgstr "ذخیره"
1022
-
1023
- #: ../classes/settings.php:549
1024
- msgid "Restore Settings"
1025
- msgstr "بازنشانی تنظیمات"
1026
 
1027
- #: ../classes/settings.php:550
1028
- msgid "This will delete all column settings and restore the default settings."
1029
- msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
1030
 
1031
- #: ../classes/settings.php:556
1032
- msgid "Restore default settings"
1033
- msgstr "بازسازی تنظیمات پیش فرض"
1034
 
1035
- #: ../classes/settings.php:556
1036
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1037
- msgstr "اخطار! تمام ستون های مدیریت ذخیره شده حذف خواهند شد. این کار بازگشت پذیر نیست!"
1038
 
1039
- #: ../classes/settings.php:572
1040
- msgid "Posttypes"
1041
- msgstr "نوع نوشته ها"
1042
 
1043
- #: ../classes/settings.php:573
1044
- msgid "Others"
1045
- msgstr "دیگر"
1046
 
1047
- #: ../classes/settings.php:574
1048
- msgid "Taxonomies"
1049
- msgstr "طبقه بندی ها"
1050
 
1051
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1052
- msgid "Settings"
1053
- msgstr "تنظیمات"
1054
 
1055
- #: ../classes/settings.php:591
1056
- msgid "Add-ons"
1057
- msgstr "افزودنی ها"
1058
 
1059
- #: ../classes/settings.php:659
1060
- #, php-format
1061
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1062
- msgstr ""
1063
 
1064
- #: ../classes/settings.php:669
1065
- msgid "Store settings"
1066
- msgstr "ذخیره تنظیمات"
1067
 
1068
- #: ../classes/settings.php:673
1069
- msgid "Update"
1070
- msgstr "به روز رسانی"
1071
 
1072
- #: ../classes/settings.php:677
1073
- #, php-format
1074
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1075
- msgstr "اخطار! داده های %s ستون حذف خواهد شد. این کار بازگشت ناپذیر است."
1076
 
1077
- #: ../classes/settings.php:678
1078
- msgid "Restore"
1079
- msgstr "بازسازی"
1080
 
1081
- #: ../classes/settings.php:678
1082
- msgid "columns"
1083
- msgstr "ستون ها"
1084
 
1085
- #: ../classes/settings.php:697
1086
- msgid "Get Admin Columns Pro"
1087
- msgstr "خرید نسخه حرفه ای"
1088
 
1089
- #: ../classes/settings.php:701
1090
- msgid "Add Sorting"
1091
- msgstr "اضافه کردن مرتب سازی"
1092
 
1093
- #: ../classes/settings.php:702
1094
- msgid "Add Filtering"
1095
- msgstr "اضافه کردن فیلترسازی"
1096
 
1097
- #: ../classes/settings.php:703
1098
- msgid "Add Import/Export"
1099
- msgstr "اضافه کردن وارد/ خارج کردن"
1100
 
1101
- #: ../classes/settings.php:704
1102
- msgid "Add Direct Editing"
1103
- msgstr "اضافه کردن ویرایش مستقیم"
1104
 
1105
- #: ../classes/settings.php:707
1106
- #, php-format
1107
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1108
- msgstr "برای اطلاعات بیشتر <a href=\"%s\">نسخه حرفه ای</a> را بررسی کنید."
1109
 
1110
- #: ../classes/settings.php:738
1111
- msgid "Are you happy with Admin Columns?"
1112
  msgstr ""
1113
 
1114
- #: ../classes/settings.php:746
1115
- msgid "What's wrong? Need help? Let us know!"
1116
  msgstr ""
1117
 
1118
- #: ../classes/settings.php:747
1119
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1120
  msgstr ""
1121
 
1122
- #: ../classes/settings.php:755
1123
- msgid "Docs"
1124
  msgstr ""
1125
 
1126
- #: ../classes/settings.php:760
1127
- msgid "Forums"
1128
- msgstr ""
1129
 
1130
- #: ../classes/settings.php:769
1131
- msgid "Woohoo! We're glad to hear that!"
1132
- msgstr ""
1133
 
1134
- #: ../classes/settings.php:770
1135
- 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!"
1136
- msgstr ""
1137
 
1138
- #: ../classes/settings.php:774
1139
- msgid "Rate"
1140
  msgstr ""
1141
 
1142
- #: ../classes/settings.php:785
1143
- msgid "Tweet"
 
 
 
 
1144
  msgstr ""
1145
 
1146
- #: ../classes/settings.php:795
1147
- msgid "Buy Pro"
1148
  msgstr ""
1149
 
1150
- #: ../classes/settings.php:807
1151
- msgid "Support"
1152
- msgstr "پشتیبانی"
1153
 
1154
- #: ../classes/settings.php:810
1155
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1156
- msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
1157
 
1158
- #: ../classes/settings.php:813
1159
- #, php-format
1160
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1161
- msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
1162
 
1163
- #: ../classes/settings.php:842
1164
- msgid "Drag and drop to reorder"
1165
- msgstr "برای مرتب سازی بگیرید و بکشید"
1166
 
1167
- #: ../classes/settings.php:845
1168
- msgid "Add Column"
1169
- msgstr "ستون جدید"
1170
 
1171
- #: ../classes/settings.php:926
1172
- msgid "Active"
1173
- msgstr "فعال"
1174
 
1175
- #: ../classes/settings.php:927
1176
- msgid "Deactivate"
1177
- msgstr "غیرفعال"
1178
 
1179
- #: ../classes/settings.php:934
1180
- msgid "Installed"
1181
- msgstr "نصب شده"
1182
 
1183
- #: ../classes/settings.php:935
1184
- msgid "Activate"
1185
- msgstr "فعال"
1186
 
1187
- #: ../classes/settings.php:949
1188
- msgid "Download & Install"
1189
- msgstr "دانلود و نصب"
1190
 
1191
- #: ../classes/settings.php:954
1192
- msgid "Get this add-on"
1193
- msgstr "دریافت این افزودنی"
 
1194
 
1195
- #: ../classes/storage_model.php:237
1196
- msgid "settings succesfully restored."
1197
- msgstr "تنظیمات با موفقیت بازنشانی شدند."
 
1198
 
1199
- #: ../classes/storage_model.php:253
1200
- msgid "No columns settings available."
1201
- msgstr "هیچ تنظیمی برای ستونها موجود نیست."
1202
 
1203
- #: ../classes/storage_model.php:274
1204
- #, php-format
1205
- msgid "You are trying to store the same settings for %s."
1206
- msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
1207
 
1208
- #: ../classes/storage_model.php:278
1209
- #, php-format
1210
- msgid "Settings for %s updated successfully."
 
 
 
 
 
 
 
1211
  msgstr ""
1212
 
1213
- #: ../classes/storage_model.php:809
1214
- msgid "View"
1215
- msgstr "نمایش"
 
 
 
 
1216
 
1217
- #: ../classes/storage_model/comment.php:13
1218
- msgid "Comments"
1219
- msgstr "نظرات"
 
 
 
 
1220
 
1221
- #: ../classes/storage_model/comment.php:14
1222
- msgid "Comment"
1223
  msgstr ""
1224
 
1225
- #: ../classes/storage_model/link.php:13
1226
- msgid "Links"
1227
- msgstr "لینک ها"
1228
 
1229
- #: ../classes/storage_model/link.php:14
1230
- msgid "Link"
1231
  msgstr ""
1232
 
1233
- #: ../classes/storage_model/media.php:14
1234
- msgid "Media"
1235
  msgstr ""
1236
 
1237
- #: ../classes/storage_model/user.php:13
1238
- msgid "Users"
1239
- msgstr "کاربران"
1240
 
1241
- #: ../classes/upgrade.php:62
1242
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1243
  msgstr ""
1244
 
1245
- #: ../classes/upgrade.php:95
1246
- msgid "Upgrade"
1247
- msgstr "به روزرسانی"
1248
 
1249
- #: ../classes/upgrade.php:136
1250
- msgid "requires a database upgrade"
1251
- msgstr "نیاز به به روزرسانی بانک اطلاعاتی دارد"
1252
 
1253
- #: ../classes/upgrade.php:139
1254
- msgid "why?"
1255
- msgstr "چرا؟"
1256
 
1257
- #: ../classes/upgrade.php:140
1258
- msgid "Please"
1259
- msgstr "لطفا"
1260
 
1261
- #: ../classes/upgrade.php:141
1262
- msgid "backup your database"
1263
- msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید"
1264
 
1265
- #: ../classes/upgrade.php:142
1266
- msgid "then click"
1267
- msgstr "سپس روی "
1268
 
1269
- #: ../classes/upgrade.php:351
1270
- msgid "Migrating Column Settings"
1271
- msgstr "همگام سازی تنظیمات ستون ها کلیک کنید"
1272
 
1273
- #: ../classes/upgrade.php:387
1274
- msgid "No Upgrade Required"
1275
- msgstr "به روزرسانی لازم نیست"
1276
 
1277
- #: ../classes/upgrade.php:388
1278
- msgid "Return to welcome screen."
1279
- msgstr "بازگشت به صفحه خوش آمد گویی."
1280
 
1281
- #: ../classes/upgrade.php:406
1282
- msgid "Upgrade Complete!"
1283
- msgstr "به روز رسانی تکمیل شد!"
1284
 
1285
- #: ../classes/upgrade.php:406
1286
- msgid "Return to settings."
1287
- msgstr "بازگشت به تنظیمات."
1288
 
1289
- #: ../classes/upgrade.php:407
1290
- msgid "Error"
1291
- msgstr "خطا"
1292
 
1293
- #: ../classes/upgrade.php:408
1294
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1295
- msgstr "متاسفبم. به نظر می آید خطایی در فرایند به روز رسانی رخ داده است. لطفا این مشکل را فروم پشتیبانی ما مطرح کنید."
1296
 
1297
- #: ../codepress-admin-columns.php:444
1298
- msgid "Edit columns"
1299
- msgstr "ویرایش ستون ها"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # kamel kimiaei <kamel.kimiaei.fard@gmail.com>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
9
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Persian (http://www.transifex.com/codepress/admin-columns/language/fa/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: fa\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
+ "POT-Creation-Date: \n"
21
+ "X-Generator: Poedit 1.8.5\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
24
+
25
+ #: ../codepress-admin-columns.php:451
26
+ msgid "Edit columns"
27
+ msgstr "ویرایش ستون ها"
 
 
28
 
29
  #: ../classes/addons.php:110
30
  msgid "Plugins"
46
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
47
  msgstr ""
48
 
49
+ #: ../classes/column.php:624
50
  msgid "Thumbnail"
51
  msgstr "بندانگشتی"
52
 
53
+ #: ../classes/column.php:625
54
  msgid "Medium"
55
  msgstr "متوسط"
56
 
57
+ #: ../classes/column.php:626
58
  msgid "Large"
59
  msgstr "بزرگ"
60
 
61
+ #: ../classes/column.php:627
62
  msgid "Full"
63
  msgstr "کامل"
64
 
65
+ #: ../classes/column.php:1059
66
+ msgid "Exact match"
67
+ msgstr ""
68
+
69
+ #: ../classes/column.php:1060
70
+ msgid "Lesser than"
71
+ msgstr ""
72
+
73
+ #: ../classes/column.php:1061
74
+ msgid "Greater than"
75
+ msgstr ""
76
+
77
+ #: ../classes/column.php:1062
78
+ msgid "Between"
79
+ msgstr ""
80
+
81
+ #: ../classes/column.php:1089
82
  msgid "Date Format"
83
  msgstr "قابل تاریخ"
84
 
85
+ #: ../classes/column.php:1090
86
  msgid "This will determine how the date will be displayed."
87
  msgstr "چگونگی نمایش تاریخ را مشخص می کند."
88
 
89
+ #: ../classes/column.php:1096
90
  msgid "Example:"
91
  msgstr "مثال:"
92
 
93
+ #: ../classes/column.php:1098
94
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
95
+ msgstr ""
 
96
 
97
+ #: ../classes/column.php:1099
98
  msgid "Documentation on date and time formatting."
99
  msgstr "مستندات در باره قالب بندی تاریخ و زمان."
100
 
101
+ #: ../classes/column.php:1113
102
  msgid "Excerpt length"
103
  msgstr "طول چکیده"
104
 
105
+ #: ../classes/column.php:1114
106
  msgid "Number of words"
107
  msgstr "تعداد کلمات"
108
 
109
+ #: ../classes/column.php:1132
110
  msgid "Preview size"
111
  msgstr "اندازه پیش نمایش"
112
 
113
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
114
  msgid "Custom"
115
  msgstr "دلخواه"
116
 
117
+ #: ../classes/column.php1152, ../classes/column.php:1328
118
  msgid "width"
119
  msgstr "عرض"
120
 
121
+ #: ../classes/column.php:1155
122
  msgid "height"
123
  msgstr "ارتفاع"
124
 
125
+ #: ../classes/column.php:1167
126
  msgid "Before"
127
  msgstr "قبل"
128
 
129
+ #: ../classes/column.php:1167
130
  msgid "This text will appear before the custom field value."
131
  msgstr "این متن قبل از مقدار زمینه دلخواه نمایش داده خواهد شد."
132
 
133
+ #: ../classes/column.php:1168
134
  msgid "After"
135
  msgstr "بعد"
136
 
137
+ #: ../classes/column.php:1168
138
  msgid "This text will appear after the custom field value."
139
  msgstr "این متن بعد از مقدار زمینه دلخواه نمایش داده خواهد شد."
140
 
141
+ #: ../classes/column.php:1177
142
  msgid "Display Name"
143
  msgstr "نام عمومی"
144
 
145
+ #: ../classes/column.php1178, ../classes/settings.php:733
146
  msgid "First Name"
147
  msgstr "نام"
148
 
149
+ #: ../classes/column.php:1179
150
  msgid "Last Name"
151
  msgstr "نام خانوادگی"
152
 
153
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
154
  msgid "Nickname"
155
  msgstr "لغب"
156
 
157
+ #: ../classes/column.php:1181
158
  msgid "User Login"
159
  msgstr "نام کاربری"
160
 
161
+ #: ../classes/column.php:1182
162
  msgid "User Email"
163
  msgstr "ایمیل کاربر"
164
 
165
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
166
  msgid "User ID"
167
  msgstr "شناسه کاربر"
168
 
169
+ #: ../classes/column.php:1184
170
  msgid "First and Last Name"
171
  msgstr "نام و نام خانوادگی"
172
 
173
+ #: ../classes/column.php:1187
174
  msgid "Display format"
175
  msgstr ""
176
 
177
+ #: ../classes/column.php:1187
178
  msgid "This is the format of the author name."
179
  msgstr "فرمت نمایش نام نویسنده"
180
 
181
+ #: ../classes/column.php:1350
182
  msgid "Edit"
183
  msgstr "ویرایش"
184
 
185
+ #: ../classes/column.php1352, ../classes/column.php:1444
186
  msgid "Clone"
187
  msgstr ""
188
 
189
+ #: ../classes/column.php:1354
190
  msgid "Remove"
191
  msgstr "حذف"
192
 
193
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
194
  msgid "Type"
195
  msgstr "نوع"
196
 
197
+ #: ../classes/column.php:1372
198
  msgid "Choose a column type."
199
  msgstr "انتخاب نوع ستون"
200
 
201
+ #: ../classes/column.php:1372
202
  msgid "Name"
203
  msgstr ""
204
 
205
+ #: ../classes/column.php:1382
206
  msgid "Label"
207
  msgstr "برچسب"
208
 
209
+ #: ../classes/column.php:1382
210
  msgid "This is the name which will appear as the column header."
211
  msgstr "این نامی است که در تیتر ستون دیده می شود."
212
 
213
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
214
  msgid "Width"
215
  msgstr "عرض"
216
 
217
+ #: ../classes/column.php:1391
218
  msgid "default"
219
  msgstr "پیش فرض"
220
 
221
+ #: ../classes/column.php:1392
222
  msgid "auto"
223
  msgstr ""
224
 
225
+ #: ../classes/column.php:1466
226
+ msgid "Property To Display"
227
+ msgstr ""
228
 
229
+ #: ../classes/column.php:1472
230
+ msgid "Post property to display for related post(s)."
231
  msgstr ""
232
 
233
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
234
+ msgid "Link To"
235
+ msgstr ""
 
236
 
237
+ #: ../classes/column.php:1489
238
+ msgid "Edit Post Author"
239
+ msgstr ""
240
 
241
+ #: ../classes/column.php:1490
242
+ msgid "View Public Post Author Page"
243
+ msgstr ""
244
 
245
+ #: ../classes/column.php:1492
246
+ msgid "Page the posts should link to."
247
+ msgstr ""
248
 
249
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
250
+ msgid "Admin Columns"
251
+ msgstr "تنظیمات ستون ها"
252
+
253
+ #: ../classes/review_notice.php:58
254
+ msgid "Admin Columns Pro"
255
  msgstr ""
256
 
257
+ #: ../classes/review_notice.php:68
258
+ msgid "click here"
259
  msgstr ""
260
 
261
+ #: ../classes/review_notice.php:72
262
+ msgid "Leave a review!"
263
  msgstr ""
264
 
265
+ #: ../classes/review_notice.php:73
266
+ msgid "Permanently hide notice"
267
  msgstr ""
268
 
269
+ #: ../classes/review_notice.php:80
270
+ 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."
271
+ msgstr ""
272
 
273
+ #: ../classes/review_notice.php:82
274
+ msgid "documentation page"
275
+ msgstr ""
276
 
277
+ #: ../classes/review_notice.php:86
278
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
279
+ msgstr ""
280
 
281
+ #: ../classes/review_notice.php:87
282
+ msgid "our forums"
283
+ msgstr ""
284
 
285
+ #: ../classes/review_notice.php:91
286
+ msgid "You can also find help on the %s, and %s."
287
+ msgstr ""
288
 
289
+ #: ../classes/review_notice.php:92
290
+ msgid "Admin Columns forums on WordPress.org"
291
+ msgstr ""
292
 
293
+ #: ../classes/review_notice.php:93
294
+ msgid "find answers to some frequently asked questions"
295
  msgstr ""
296
 
297
+ #: ../classes/settings.php:113
298
+ msgid "Add-on successfully activated."
299
+ msgstr "افزونه با موفقیت فعال شد"
300
 
301
+ #: ../classes/settings.php:116
302
+ msgid "Add-on successfully deactivated."
303
+ msgstr "افزونه با موفقیت غیرفعال شد"
304
 
305
+ #: ../classes/settings.php:170
306
+ msgid "Admin Columns Settings"
307
+ msgstr "تنظیمات ستون ها"
308
 
309
+ #: ../classes/settings.php:228
310
+ msgid "%s column is already present and can not be duplicated."
311
+ msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
 
312
 
313
+ #: ../classes/settings.php:284
314
+ msgid "Default settings succesfully restored."
315
+ msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
316
 
317
+ #: ../classes/settings.php:301
318
+ msgid "Overview"
319
+ msgstr "مرورکلی"
320
 
321
+ #: ../classes/settings.php:304
322
+ msgid ""
323
+ "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 "
324
+ "reorder them."
325
+ msgstr "این افزونه برای ایجاد ستون های دلخواه و یا حذف آنها و مرتب سازی و همچنین تغییر نام آنها در نوشته ها و برگه ها ، رسانه ها ، نظرات، لینک ها و کاربران طراحی شده است."
326
 
327
+ #: ../classes/settings.php:307
328
+ msgid "Basics"
329
+ msgstr "مقدمات"
330
 
331
+ #: ../classes/settings.php:309
332
+ msgid "Change order"
333
+ msgstr "تغییر ترتیب"
334
+
335
+ #: ../classes/settings.php:310
336
+ msgid "By dragging the columns you can change the order which they will appear in."
337
+ msgstr "با گرفتن و کشیدن ستون ها می توانید ترتیب نمایش آنها را تغییر دهید."
338
+
339
+ #: ../classes/settings.php:311
340
+ msgid "Change label"
341
+ msgstr "تغییر برچسب"
342
+
343
+ #: ../classes/settings.php:312
344
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
345
+ msgstr "با کلیک روی مثلث می توانید تنظیمات ستون را مشاهده فرمایید. در اینجا می توانید برچسب هر ستون را تغییر دهید."
346
+
347
+ #: ../classes/settings.php:313
348
+ msgid "Change column width"
349
+ msgstr "تغییر عرض ستون"
350
+
351
+ #: ../classes/settings.php:314
352
+ 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."
353
+ msgstr "با کلیک روی مثلث تنظیمات ستون را مشاهده خواهید کرد. به کمک جابجایی اسلایدر می توانید عرض هر ستون را به صورت درصد مشخص کنید."
354
 
355
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
356
  msgid "Custom Field"
357
  msgstr "زمینه دلخواه"
358
 
359
+ #: ../classes/settings.php:320
360
+ msgid "'Custom Field' column"
361
+ msgstr "ستون 'زمینه دلخواه'"
362
+
363
+ #: ../classes/settings.php:321
364
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
365
+ msgstr "ستون زمینه دلخواه از زمینه های دلخواه نوشته ها و کاربران استفاده می کند. ده نوع مختلف برای تنظیم وجود دارد."
366
+
367
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
368
  msgid "Default"
369
  msgstr "پیش فرض"
370
 
371
+ #: ../classes/settings.php:323
372
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
373
+ msgstr "مقدار:می تواند متن یا آرایه باشد. آرایه ها به متن تبدیل خواهند شد و با ',' جدا خواهند شد."
374
 
375
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
376
+ msgid "Image"
377
+ msgstr "تصویر"
378
 
379
+ #: ../classes/settings.php:324
380
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
381
+ msgstr "مثدار: باید شامل یک آدرس (url) تصویر باشد یا شناسه هایی (ID) از پیوست ها که با ',' جدا شده اند."
382
 
383
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
384
  msgid "Excerpt"
385
  msgstr "چکیده"
386
 
387
+ #: ../classes/settings.php:325
388
+ msgid "Value: This will show the first 20 words of the Post content."
389
+ msgstr "مقدار: بیست کلمه ابتدای متن را نشان خواهد داد."
 
 
 
 
390
 
391
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
392
  msgid "Multiple Values"
393
  msgstr "چندین مقدار"
394
 
395
+ #: ../classes/settings.php:326
396
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
397
+ msgstr "مثدار: باید آرایه باشد. هر آرایه ای (چند بعدی) متنی خواهد شد."
398
+
399
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
400
  msgid "Numeric"
401
  msgstr "عددی"
402
 
403
+ #: ../classes/settings.php:327
404
+ 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."
405
+ msgstr "مقدار: فقط عددی. <br/> اگر از افزونه 'مرتب سازی' استفاده کنید، از این مقدار برای مرتب سازی استفاده خواهد شد. می توانید نوشته هایتان را یک مقدار عددی (زمینه دلخواه) مرتب سازی کنید."
406
 
407
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
408
+ msgid "Date"
409
+ msgstr "تاریخ"
410
 
411
+ #: ../classes/settings.php:328
412
+ 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."
413
+ msgstr "مقدار: باید زمان تاریخ سیستم یونیکس یا تاریخ قالب بندی شده باشد که در <a href='%s'>راهنما</a> شرح داده شده. می توانید خروجی تاریخ را از <a href='%s'>تنظیمات همگانی</a> تغییر دهید."
414
 
415
+ #: ../classes/settings.php:329
416
+ msgid "Post Titles"
417
+ msgstr "تیترهای نوشته"
418
 
419
+ #: ../classes/settings.php:329
420
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
421
+ msgstr "مقدار: می تواند شامل یک یا چند شناسه (ID) نوشته ها (جدا شده با ',') باشد."
422
 
423
+ #: ../classes/settings.php:330
424
+ msgid "Usernames"
425
+ msgstr "نام های کاربری"
 
426
 
427
+ #: ../classes/settings.php:330
428
+ msgid "Value: can be one or more User ID's (seperated by ',')."
429
+ msgstr "می تواند شامل یک یا چند شناسه (ID) کاربری (جداشده با ',') باشد."
430
 
431
+ #: ../classes/settings.php:331
432
+ msgid "Checkmark"
433
+ msgstr "تیک"
434
 
435
+ #: ../classes/settings.php:331
436
+ msgid "Value: should be a 1 (one) or 0 (zero)."
437
+ msgstr "مقدار: می تواند یک یا صفر باشد"
438
 
439
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
440
+ msgid "Color"
441
+ msgstr "رنگ"
442
 
443
+ #: ../classes/settings.php:332
444
+ msgid "Value: hex value color, such as #808080."
445
+ msgstr "مقدار: می تواند کد هکس رنگ مانند #808080 باشد"
446
 
447
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
448
+ msgid "Counter"
449
+ msgstr "شمارنده"
450
 
451
+ #: ../classes/settings.php:333
452
+ 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."
453
+ msgstr "مقدار: می تواند متن یا آرایه باشد. تعداد دفعات استفاده از meta key های آیتم را نمایش می دهد."
454
 
455
+ #: ../classes/settings.php:422
456
+ msgid "Welcome to Admin Columns"
457
+ msgstr "به مدیریت ستون ها خوش آمدید"
458
 
459
+ #: ../classes/settings.php:425
460
+ msgid "Thank you for updating to the latest version!"
461
+ msgstr "از اینکه به نسخه نهایی به روزرسانی کردید متشکریم!"
462
 
463
+ #: ../classes/settings.php:426
464
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
465
+ msgstr "مدیریت ستون ها بهینه تر و لذت بخش تر از قبل شده است. امیدواریم شما بپسندید."
466
 
467
+ #: ../classes/settings.php:431
468
+ msgid "What’s New"
469
+ msgstr "چه چیز جدید است"
470
 
471
+ #: ../classes/settings.php:432
472
+ msgid "Changelog"
473
+ msgstr "تغییرات"
474
 
475
+ #: ../classes/settings.php:437
476
+ msgid "Important"
477
+ msgstr "مهم"
478
 
479
+ #: ../classes/settings.php:439
480
+ msgid "Database Changes"
481
+ msgstr "تغییرات بانک اطلاعاتی"
482
 
483
+ #: ../classes/settings.php:440
484
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
485
+ msgstr "بانک اطلاعاتی بین نسخه های 1 و 2 تغییراتی داشته است ولی اطمینان داشته باشید هر زمان می توانید به نسخه 1 برگردید."
486
 
487
+ #: ../classes/settings.php:443
488
+ msgid "Make sure you backup your database and then click"
489
+ msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید و روی "
490
 
491
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
492
+ msgid "Upgrade Database"
493
+ msgstr "به روز رسانی بانک اطلاعاتی کلیک کنید"
494
 
495
+ #: ../classes/settings.php:446
496
+ msgid "Potential Issues"
497
+ msgstr "مشکلات بالقوه"
498
 
499
+ #: ../classes/settings.php:447
500
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
501
+ msgstr "به دلیل تغییرات در کدهای برنامه نویسی این امکان وجود دارد که بعضی افزونه های شما به خوبی کار نکند. توصیه می شود راهنما انتقال از "
502
 
503
+ #: ../classes/settings.php:447
504
+ msgid "Migrating from v1 to v2"
505
+ msgstr "نسخه 1 به 2 را به صورت کامل مطالعه فرمایید"
506
 
507
+ #: ../classes/settings.php:447
508
+ msgid "guide to view the full list of changes."
509
+ msgstr "راهنما برای دیدن لیست تمام تغییرات."
510
 
511
+ #: ../classes/settings.php:447
512
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
513
+ msgstr ""
514
 
515
+ #: ../classes/settings.php:450
516
+ msgid "Important!"
517
+ msgstr "مهم !"
518
 
519
+ #: ../classes/settings.php:450
520
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
521
+ msgstr "اگر بدون آگاهی از تغییرات رخ داده افزونه را به روز رسانی کرده اید به آخرین "
522
 
523
+ #: ../classes/settings.php:450
524
+ msgid "version 1"
525
+ msgstr "نسخه 1"
526
 
527
+ #: ../classes/settings.php:450
528
+ msgid "of this plugin."
529
+ msgstr "از افزونه برگردید."
530
 
531
+ #: ../classes/settings.php:456
532
+ msgid "Changelog for"
533
+ msgstr "تغییرات برای"
534
 
535
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
536
+ msgid "Learn more"
537
+ msgstr "آموزش بیشتر"
538
 
539
+ #: ../classes/settings.php:481
540
+ msgid "Start using Admin Columns"
541
+ msgstr "شروع استفاده از ستون های مدیریت"
542
 
543
+ #: ../classes/settings.php:500
544
+ msgid "General Settings"
545
+ msgstr "تنظیمات عمومی"
546
 
547
+ #: ../classes/settings.php:501
548
+ msgid "Customize your Admin Columns settings."
549
+ msgstr "دلخواه سازی تنظیمات افزونه"
550
+
551
+ #: ../classes/settings.php:512
552
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
553
  msgstr ""
554
 
555
+ #: ../classes/settings.php:559
556
+ msgid "Restore Settings"
557
+ msgstr "بازنشانی تنظیمات"
558
 
559
+ #: ../classes/settings.php:560
560
+ msgid "This will delete all column settings and restore the default settings."
561
+ msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
562
 
563
+ #: ../classes/settings.php:566
564
+ msgid "Restore default settings"
565
+ msgstr "بازسازی تنظیمات پیش فرض"
566
 
567
+ #: ../classes/settings.php:566
568
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
569
  msgstr ""
570
 
571
+ #: ../classes/settings.php:582
572
+ msgid "Posttypes"
573
+ msgstr "نوع نوشته ها"
 
 
 
 
 
 
 
 
574
 
575
+ #: ../classes/settings.php:583
576
+ msgid "Others"
577
+ msgstr "دیگر"
578
 
579
+ #: ../classes/settings.php:584
580
+ msgid "Taxonomies"
581
+ msgstr "طبقه بندی ها"
582
 
583
+ #: ../classes/settings.php:600
584
+ msgid "Settings"
585
+ msgstr "تنظیمات"
586
 
587
+ #: ../classes/settings.php:601
588
+ msgid "Add-ons"
589
+ msgstr "افزودنی ها"
590
 
591
+ #: ../classes/settings.php:669
592
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
593
+ msgstr ""
594
 
595
+ #: ../classes/settings.php:679
596
+ msgid "Store settings"
597
+ msgstr "ذخیره تنظیمات"
598
 
599
+ #: ../classes/settings.php:687
600
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
601
  msgstr ""
602
 
603
+ #: ../classes/settings.php:688
604
+ msgid "Restore"
605
+ msgstr "بازسازی"
606
 
607
+ #: ../classes/settings.php:688
608
+ msgid "columns"
609
+ msgstr "ستون ها"
610
 
611
+ #: ../classes/settings.php:707
612
+ msgid "Get Admin Columns Pro"
613
+ msgstr "خرید نسخه حرفه ای"
 
614
 
615
+ #: ../classes/settings.php:711
616
+ msgid "Add Sorting"
617
+ msgstr "اضافه کردن مرتب سازی"
 
618
 
619
+ #: ../classes/settings.php:712
620
+ msgid "Add Filtering"
621
+ msgstr "اضافه کردن فیلترسازی"
622
 
623
+ #: ../classes/settings.php:713
624
+ msgid "Add Import/Export"
625
+ msgstr "اضافه کردن وارد/ خارج کردن"
626
 
627
+ #: ../classes/settings.php:714
628
+ msgid "Add Direct Editing"
629
+ msgstr "اضافه کردن ویرایش مستقیم"
630
 
631
+ #: ../classes/settings.php:717
632
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
633
+ msgstr ""
634
 
635
+ #: ../classes/settings.php:730
636
+ msgid "Subscribe to receive news &amp; updates below."
637
  msgstr ""
638
 
639
+ #: ../classes/settings.php:737
640
+ msgid "Your Email"
641
+ msgstr ""
642
 
643
+ #: ../classes/settings.php:748
644
+ msgid "Are you happy with Admin Columns?"
645
+ msgstr ""
646
 
647
+ #: ../classes/settings.php:756
648
+ msgid "What's wrong? Need help? Let us know!"
649
+ msgstr ""
650
 
651
+ #: ../classes/settings.php:757
652
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
653
+ msgstr ""
654
 
655
+ #: ../classes/settings.php:765
656
+ msgid "Docs"
657
  msgstr ""
658
 
659
+ #: ../classes/settings.php:770
660
+ msgid "Forums"
661
+ msgstr ""
662
 
663
+ #: ../classes/settings.php:779
664
+ msgid "Woohoo! We're glad to hear that!"
665
  msgstr ""
666
 
667
+ #: ../classes/settings.php:780
668
+ 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!"
669
  msgstr ""
670
 
671
+ #: ../classes/settings.php:784
672
+ msgid "Rate"
673
+ msgstr ""
674
 
675
+ #: ../classes/settings.php:795
676
+ msgid "Tweet"
677
+ msgstr ""
678
 
679
+ #: ../classes/settings.php:805
680
+ msgid "Buy Pro"
681
  msgstr ""
682
 
683
+ #: ../classes/settings.php:817
684
+ msgid "Support"
685
+ msgstr "پشتیبانی"
686
 
687
+ #: ../classes/settings.php:820
688
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
689
+ msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
690
 
691
+ #: ../classes/settings.php:823
692
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
693
+ msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
 
695
+ #: ../classes/settings.php:852
696
+ msgid "Drag and drop to reorder"
697
+ msgstr "برای مرتب سازی بگیرید و بکشید"
698
 
699
+ #: ../classes/settings.php:855
700
+ msgid "Add Column"
701
+ msgstr "ستون جدید"
702
 
703
+ #: ../classes/settings.php:936
704
+ msgid "Active"
705
+ msgstr "فعال"
706
 
707
+ #: ../classes/settings.php:937
708
+ msgid "Deactivate"
709
+ msgstr "غیرفعال"
710
 
711
+ #: ../classes/settings.php:944
712
+ msgid "Installed"
713
+ msgstr "نصب شده"
 
 
 
714
 
715
+ #: ../classes/settings.php:945
716
+ msgid "Activate"
717
+ msgstr "فعال"
718
 
719
+ #: ../classes/settings.php:959
720
+ msgid "Download & Install"
721
+ msgstr "دانلود و نصب"
722
 
723
+ #: ../classes/settings.php:964
724
+ msgid "Get this add-on"
725
+ msgstr "دریافت این افزودنی"
726
 
727
+ #: ../classes/storage_model.php:262
728
+ msgid "settings succesfully restored."
729
+ msgstr "تنظیمات با موفقیت بازنشانی شدند."
 
730
 
731
+ #: ../classes/storage_model.php:278
732
+ msgid "No columns settings available."
733
+ msgstr "هیچ تنظیمی برای ستونها موجود نیست."
734
 
735
+ #: ../classes/storage_model.php:299
736
+ msgid "You are trying to store the same settings for %s."
737
+ msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
 
738
 
739
+ #: ../classes/storage_model.php:303
740
+ msgid "Settings for %s updated successfully."
741
  msgstr ""
742
 
743
+ #: ../classes/storage_model.php:643
744
+ msgid "Columns by Plugins"
 
745
  msgstr ""
746
 
747
+ #: ../classes/storage_model.php:862
748
+ msgid "View"
749
+ msgstr "نمایش"
750
 
751
+ #: ../classes/upgrade.php:62
752
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
753
  msgstr ""
754
 
755
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
756
+ msgid "Upgrade"
757
+ msgstr "به روزرسانی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
 
759
+ #: ../classes/upgrade.php:136
760
+ msgid "requires a database upgrade"
761
+ msgstr "نیاز به به روزرسانی بانک اطلاعاتی دارد"
762
 
763
+ #: ../classes/upgrade.php:139
764
+ msgid "why?"
765
+ msgstr "چرا؟"
766
 
767
+ #: ../classes/upgrade.php:140
768
+ msgid "Please"
769
+ msgstr "لطفا"
770
 
771
+ #: ../classes/upgrade.php:141
772
+ msgid "backup your database"
773
+ msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید"
774
 
775
+ #: ../classes/upgrade.php:142
776
+ msgid "then click"
777
+ msgstr "سپس روی "
778
 
779
+ #: ../classes/upgrade.php:351
780
+ msgid "Migrating Column Settings"
781
+ msgstr "همگام سازی تنظیمات ستون ها کلیک کنید"
782
 
783
+ #: ../classes/upgrade.php:387
784
+ msgid "No Upgrade Required"
785
+ msgstr "به روزرسانی لازم نیست"
786
 
787
+ #: ../classes/upgrade.php:388
788
+ msgid "Return to welcome screen."
789
+ msgstr "بازگشت به صفحه خوش آمد گویی."
790
 
791
+ #: ../classes/upgrade.php:406
792
+ msgid "Upgrade Complete!"
793
+ msgstr "به روز رسانی تکمیل شد!"
794
 
795
+ #: ../classes/upgrade.php:406
796
+ msgid "Return to settings."
797
+ msgstr "بازگشت به تنظیمات."
798
 
799
+ #: ../classes/upgrade.php:407
800
+ msgid "Error"
801
+ msgstr "خطا"
802
 
803
+ #: ../classes/upgrade.php:408
804
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
805
+ msgstr "متاسفبم. به نظر می آید خطایی در فرایند به روز رسانی رخ داده است. لطفا این مشکل را فروم پشتیبانی ما مطرح کنید."
806
 
807
+ #: ../classes/column/acf-placeholder.php:19
808
+ msgid "ACF Field"
809
+ msgstr "زمینه ACF"
810
 
811
+ #: ../classes/column/acf-placeholder.php:35
812
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
813
+ msgstr "اگر شما مجوز نسخه توسعه دهنده دارید می توانید افزونه ی ACF را از <a href='%s'>تب افزونه ها</a> دانلود و نصب نمایید."
 
814
 
815
+ #: ../classes/column/acf-placeholder.php:38
816
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
817
+ msgstr "این افزونه در نسخه توسعه دهندگان به صورت کامل افزونه زمینه دلخواه پیشرفته را در بر خواهد گرفتو به شما اجازه می دهد به آسانی زمینه های ACF را از قسمت همه نوشته ها مشاهده و ویرایش کنید."
818
 
819
+ #: ../classes/column/acf-placeholder.php:44
820
+ msgid "Find out more"
821
+ msgstr "اطلاعات بیشتر"
822
 
823
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
824
+ msgid "Actions"
825
+ msgstr "عملیات ها"
826
 
827
+ #: ../classes/column/actions.php:96
828
+ msgid "Use icons?"
829
+ msgstr ""
830
 
831
+ #: ../classes/column/actions.php:96
832
+ msgid "Use icons instead of text for displaying the actions."
833
+ msgstr ""
834
 
835
+ #: ../classes/column/custom-field.php:96
836
+ msgid "Checkmark (true/false)"
837
+ msgstr "تیک(صحیح غلط)"
838
 
839
+ #: ../classes/column/custom-field.php:102
840
+ msgid "Media Library"
841
+ msgstr "کتابخانه رسانه"
842
 
843
+ #: ../classes/column/custom-field.php:105
844
+ msgid "Post Title (Post ID's)"
845
+ msgstr "تیتر نوشته (شناسه نوشته)"
846
 
847
+ #: ../classes/column/custom-field.php:106
848
+ msgid "Username (User ID's)"
849
+ msgstr "نام کاربری(شناسه کاربری)"
850
 
851
+ #: ../classes/column/custom-field.php:107
852
+ msgid "Term Name (Term ID's)"
853
+ msgstr ""
854
 
855
+ #: ../classes/column/custom-field.php:391
856
+ msgid "Select your custom field."
857
+ msgstr "زمینه دلخواه خود را انتخاب کنید."
858
 
859
+ #: ../classes/column/custom-field.php:401
860
+ msgid "No custom fields available."
861
+ msgstr "زمینه دلخواهی موجود نیست."
862
 
863
+ #: ../classes/column/custom-field.php:401
864
+ msgid "Please create a %s item first."
865
+ msgstr ""
866
 
867
+ #: ../classes/column/custom-field.php:408
868
+ msgid "Field Type"
869
+ msgstr "نوع فیلد"
870
 
871
+ #: ../classes/column/custom-field.php:408
872
+ msgid "This will determine how the value will be displayed."
873
+ msgstr "نمایانگر این موضوع که مقادیر چگونه نمایش داده خواهند شد."
874
 
875
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
876
+ msgid "Taxonomy"
877
+ msgstr "طبقه بندی"
878
 
879
+ #: ../classes/column/used-by-menu.php:20
880
+ msgid "Used by Menu"
881
+ msgstr ""
882
 
883
+ #: ../classes/column/used-by-menu.php:133
884
+ msgid "Link to menu"
885
+ msgstr ""
886
 
887
+ #: ../classes/column/used-by-menu.php:133
888
+ msgid "This will make the title link to the menu."
889
+ msgstr ""
890
 
891
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
892
+ msgid "ID"
893
+ msgstr "شناسه"
894
 
895
+ #: ../classes/column/comment/agent.php:19
896
+ msgid "Agent"
897
+ msgstr "مرورگر"
898
 
899
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
900
+ msgid "Approved"
901
+ msgstr "تایید شده"
902
 
903
+ #: ../classes/column/comment/author-avatar.php:19
904
+ msgid "Avatar"
905
+ msgstr "آواتار"
 
906
 
907
+ #: ../classes/column/comment/author-email.php:19
908
+ msgid "Author email"
909
+ msgstr "ایمیل نویسنده"
910
 
911
+ #: ../classes/column/comment/author-ip.php:19
912
+ msgid "Author IP"
913
+ msgstr "آی پی نویسنده"
914
 
915
+ #: ../classes/column/comment/author-name.php:12
916
+ msgid "Author name"
917
+ msgstr ""
918
 
919
+ #: ../classes/column/comment/author-url.php:19
920
+ msgid "Author url"
921
+ msgstr "آدرس نویسنده"
922
 
923
+ #: ../classes/column/comment/author.php:19
924
+ msgid "Author"
925
+ msgstr "نویسنده"
926
 
927
+ #: ../classes/column/comment/date-gmt.php:19
928
+ msgid "Date GMT"
929
+ msgstr "تاریخ مرجع"
930
 
931
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
932
+ msgid "Content"
933
+ msgstr ""
934
 
935
+ #: ../classes/column/comment/post.php:19
936
+ msgid "Post"
937
+ msgstr ""
938
 
939
+ #: ../classes/column/comment/reply-to.php:19
940
+ msgid "In Reply To"
941
+ msgstr "در پاسخ به"
942
 
943
+ #: ../classes/column/comment/user.php:11
944
+ msgid "User"
945
  msgstr ""
946
 
947
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
948
+ msgid "Word count"
949
+ msgstr "تعداد کلمات"
 
 
 
 
950
 
951
+ #: ../classes/column/media/alternate-text.php:19
952
+ msgid "Alt"
953
+ msgstr "متن جایگزین"
954
 
955
+ #: ../classes/column/media/attached-to.php:19
956
+ msgid "Attached to post"
957
+ msgstr ""
958
 
959
+ #: ../classes/column/media/available-sizes.php:20
960
+ msgid "Available Sizes"
961
+ msgstr "اندازه های موجود"
962
 
963
+ #: ../classes/column/media/available-sizes.php:40
964
+ msgid "full size"
965
+ msgstr "اندازه کامل"
966
 
967
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
968
+ msgid "Caption"
969
+ msgstr "عنوان"
970
 
971
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
972
+ msgid "Description"
973
+ msgstr "توضیحات"
974
 
975
+ #: ../classes/column/media/dimensions.php:19
976
+ msgid "Dimensions"
977
+ msgstr "ابعاد"
978
 
979
+ #: ../classes/column/media/exif-data.php:19
980
+ msgid "EXIF data"
981
+ msgstr "داده های EXIF"
982
 
983
+ #: ../classes/column/media/exif-data.php:38
984
+ msgid "Aperture"
985
+ msgstr "دیافراگم"
 
986
 
987
+ #: ../classes/column/media/exif-data.php:39
988
+ msgid "Credit"
989
+ msgstr "اعتبار"
990
 
991
+ #: ../classes/column/media/exif-data.php:40
992
+ msgid "Camera"
993
+ msgstr "دوربین"
994
 
995
+ #: ../classes/column/media/exif-data.php:42
996
+ msgid "Timestamp"
997
+ msgstr "زمان"
 
998
 
999
+ #: ../classes/column/media/exif-data.php:43
1000
+ msgid "Copyright EXIF"
1001
+ msgstr "کپی رایت EXIF"
1002
 
1003
+ #: ../classes/column/media/exif-data.php:44
1004
+ msgid "Focal Length"
1005
+ msgstr "فاصله کانونی"
1006
 
1007
+ #: ../classes/column/media/exif-data.php:45
1008
+ msgid "ISO"
1009
+ msgstr "ISO"
1010
 
1011
+ #: ../classes/column/media/exif-data.php:46
1012
+ msgid "Shutter Speed"
1013
+ msgstr "سرعت شاتر"
1014
 
1015
+ #: ../classes/column/media/exif-data.php:47
1016
+ msgid "Title"
1017
+ msgstr "تیتر"
1018
 
1019
+ #: ../classes/column/media/file-name.php:19
1020
+ msgid "File name"
1021
+ msgstr "نام فایل"
1022
 
1023
+ #: ../classes/column/media/file-size.php:19
1024
+ msgid "File size"
1025
+ msgstr "حجم فایل"
1026
 
1027
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1028
+ msgid "Full path"
1029
+ msgstr "مسیر کامل"
 
1030
 
1031
+ #: ../classes/column/media/full-path.php:83
1032
+ msgid "Path scope"
1033
  msgstr ""
1034
 
1035
+ #: ../classes/column/media/full-path.php:84
1036
+ msgid "Part of the file path to display"
1037
  msgstr ""
1038
 
1039
+ #: ../classes/column/media/full-path.php:97
1040
+ msgid "Relative to domain"
1041
  msgstr ""
1042
 
1043
+ #: ../classes/column/media/full-path.php:102
1044
+ msgid "Relative to main uploads folder "
1045
  msgstr ""
1046
 
1047
+ #: ../classes/column/media/height.php:19
1048
+ msgid "Height"
1049
+ msgstr "ارتفاع"
1050
 
1051
+ #: ../classes/column/media/mime-type.php:19
1052
+ msgid "Mime type"
1053
+ msgstr "نوع فایل"
1054
 
1055
+ #: ../classes/column/post/attachment-count.php:19
1056
+ msgid "No. of Attachments"
1057
+ msgstr "تعداد پیوست ها"
1058
 
1059
+ #: ../classes/column/post/attachment.php:19
1060
+ msgid "Attachments"
1061
  msgstr ""
1062
 
1063
+ #: ../classes/column/post/author-name.php:20
1064
+ msgid "Display Author As"
1065
+ msgstr "نمایش نویسنده با"
1066
+
1067
+ #: ../classes/column/post/author-name.php:100
1068
+ msgid "View Public Author Page"
1069
  msgstr ""
1070
 
1071
+ #: ../classes/column/post/author-name.php:102
1072
+ msgid "Page the author name should link to."
1073
  msgstr ""
1074
 
1075
+ #: ../classes/column/post/before-moretag.php:19
1076
+ msgid "Before More Tag"
1077
+ msgstr "قبل از تگ بیشتر"
1078
 
1079
+ #: ../classes/column/post/comment-count.php:20
1080
+ msgid "Comment count"
1081
+ msgstr "تعداد نظرات"
1082
 
1083
+ #: ../classes/column/post/comment-count.php:34
1084
+ msgid "Total"
1085
+ msgstr "مجموع"
 
1086
 
1087
+ #: ../classes/column/post/comment-count.php:36
1088
+ msgid "Pending"
1089
+ msgstr "منتظر"
1090
 
1091
+ #: ../classes/column/post/comment-count.php:37
1092
+ msgid "Spam"
1093
+ msgstr "جفنگ"
1094
 
1095
+ #: ../classes/column/post/comment-count.php:38
1096
+ msgid "Trash"
1097
+ msgstr "زباله دان"
1098
 
1099
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1100
+ msgid "Comment status"
1101
+ msgstr "وضعیت نظر"
1102
 
1103
+ #: ../classes/column/post/comment-count.php:99
1104
+ msgid "Select which comment status you like to display."
1105
+ msgstr "مشخص کنید چه نوع نظراتی مایلید نمایش داده شود."
1106
 
1107
+ #: ../classes/column/post/depth.php:19
1108
+ msgid "Depth"
1109
+ msgstr ""
1110
 
1111
+ #: ../classes/column/post/estimated-reading-time.php:19
1112
+ msgid "Estimated Reading Time"
1113
+ msgstr ""
1114
 
1115
+ #: ../classes/column/post/estimated-reading-time.php:66
1116
+ msgid "second"
1117
+ msgid_plural "seconds"
1118
+ msgstr[0] ""
1119
 
1120
+ #: ../classes/column/post/estimated-reading-time.php:69
1121
+ msgid "minute"
1122
+ msgid_plural "minutes"
1123
+ msgstr[0] ""
1124
 
1125
+ #: ../classes/column/post/estimated-reading-time.php:107
1126
+ msgid "Words per minute"
1127
+ msgstr ""
1128
 
1129
+ #: ../classes/column/post/estimated-reading-time.php:108
1130
+ msgid "Estimated reading time in words per minute"
1131
+ msgstr ""
 
1132
 
1133
+ #: ../classes/column/post/featured-image.php:19
1134
+ msgid "Featured Image"
1135
+ msgstr "تصویر شاخص"
1136
+
1137
+ #: ../classes/column/post/formats.php:19
1138
+ msgid "Post Format"
1139
+ msgstr "قالب نوشته"
1140
+
1141
+ #: ../classes/column/post/last-modified-author.php:20
1142
+ msgid "Last Modified Author"
1143
  msgstr ""
1144
 
1145
+ #: ../classes/column/post/modified.php:19
1146
+ msgid "Last modified"
1147
+ msgstr "آخرین ویرایش"
1148
+
1149
+ #: ../classes/column/post/order.php:19
1150
+ msgid "Order"
1151
+ msgstr ""
1152
 
1153
+ #: ../classes/column/post/page-template.php:19
1154
+ msgid "Page Template"
1155
+ msgstr "قالب صفحه"
1156
+
1157
+ #: ../classes/column/post/parent.php:19
1158
+ msgid "Parent"
1159
+ msgstr "مادر"
1160
 
1161
+ #: ../classes/column/post/path.php:19
1162
+ msgid "Path"
1163
  msgstr ""
1164
 
1165
+ #: ../classes/column/post/permalink.php:19
1166
+ msgid "Permalink"
1167
+ msgstr "پیوندیکتا"
1168
 
1169
+ #: ../classes/column/post/permalink.php:68
1170
+ msgid "Link to post"
1171
  msgstr ""
1172
 
1173
+ #: ../classes/column/post/permalink.php:68
1174
+ msgid "This will make the permalink clickable."
1175
  msgstr ""
1176
 
1177
+ #: ../classes/column/post/ping-status.php:19
1178
+ msgid "Ping status"
1179
+ msgstr "وضعیت پینگ"
1180
 
1181
+ #: ../classes/column/post/roles.php:19
1182
+ msgid "Roles"
1183
+ msgstr "نقش ها"
1184
+
1185
+ #: ../classes/column/post/shortcodes.php:19
1186
+ msgid "Shortcodes"
1187
  msgstr ""
1188
 
1189
+ #: ../classes/column/post/slug.php:19
1190
+ msgid "Slug"
1191
+ msgstr "نامک"
1192
 
1193
+ #: ../classes/column/post/status.php:21
1194
+ msgid "Status"
1195
+ msgstr "وضعیت"
1196
 
1197
+ #: ../classes/column/post/sticky.php:19
1198
+ msgid "Sticky"
1199
+ msgstr "سنجاق شده"
1200
 
1201
+ #: ../classes/column/post/title-raw.php:19
1202
+ msgid "Title without actions"
1203
+ msgstr ""
1204
 
1205
+ #: ../classes/column/link/length.php:19
1206
+ msgid "Length"
1207
+ msgstr "طول"
1208
 
1209
+ #: ../classes/column/link/notes.php:19
1210
+ msgid "Notes"
1211
+ msgstr "نکته ها"
1212
 
1213
+ #: ../classes/column/link/owner.php:19
1214
+ msgid "Owner"
1215
+ msgstr "مالک"
1216
 
1217
+ #: ../classes/column/link/rss.php:19
1218
+ msgid "Rss"
1219
+ msgstr "Rss"
1220
 
1221
+ #: ../classes/column/link/target.php:19
1222
+ msgid "Target"
1223
+ msgstr "هدف"
1224
 
1225
+ #: ../classes/column/user/display-name.php:19
1226
+ msgid "Display name"
1227
+ msgstr ""
1228
 
1229
+ #: ../classes/column/user/first-name.php:19
1230
+ msgid "First name"
1231
+ msgstr "نام"
1232
 
1233
+ #: ../classes/column/user/last-name.php:19
1234
+ msgid "Last name"
1235
+ msgstr "نام خانوادگی"
1236
 
1237
+ #: ../classes/column/user/post-count.php:19
1238
+ msgid "Post Count"
1239
+ msgstr "تعداد نوشته"
1240
 
1241
+ #: ../classes/column/user/post-count.php:89
1242
+ msgid "Post Type"
1243
+ msgstr "نوع نوشته"
1244
+
1245
+ #: ../classes/column/user/registered.php:19
1246
+ msgid "Registered"
1247
+ msgstr "ثبت نام شده"
1248
+
1249
+ #: ../classes/column/user/rich-editing.php:19
1250
+ msgid "Visual Editor"
1251
+ msgstr ""
1252
+
1253
+ #: ../classes/column/user/url.php:19
1254
+ msgid "Url"
1255
+ msgstr "آدرس"
languages/codepress-admin-columns-fr_FR.mo ADDED
Binary file
languages/{cpac-fr_FR.po → codepress-admin-columns-fr_FR.po} RENAMED
@@ -1,4 +1,5 @@
1
- #
 
2
  # Translators:
3
  # 16kbit <code@ms-studio.net>, 2014
4
  # 16kbit <code@ms-studio.net>, 2014
@@ -10,28 +11,26 @@
10
  msgid ""
11
  msgstr ""
12
  "Project-Id-Version: Admin Columns\n"
13
- "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
15
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
16
  "Last-Translator: Codepress <info@codepress.nl>\n"
17
- "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-columns/language/fr_FR/)\n"
18
  "MIME-Version: 1.0\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Language: fr_FR\n"
22
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
23
- "X-Generator: Poedit 1.8.1\n"
24
- "X-Poedit-Basepath: .\n"
25
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
26
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
27
  "X-Poedit-SearchPath-0: .\n"
28
- "X-Poedit-SearchPath-1: ..\n"
29
- "X-Poedit-SearchPathExcluded-0: ../src\n"
30
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
31
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
32
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
33
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
34
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
35
 
36
  #: ../classes/addons.php:110
37
  msgid "Plugins"
@@ -53,1272 +52,1210 @@ msgstr ""
53
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
54
  msgstr ""
55
 
56
- #: ../classes/column.php:597
57
  msgid "Thumbnail"
58
  msgstr "Vignette"
59
 
60
- #: ../classes/column.php:598
61
  msgid "Medium"
62
  msgstr "Moyen"
63
 
64
- #: ../classes/column.php:599
65
  msgid "Large"
66
  msgstr "Large"
67
 
68
- #: ../classes/column.php:600
69
  msgid "Full"
70
  msgstr "Pleine taille"
71
 
72
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  msgid "Date Format"
74
  msgstr "Format de date"
75
 
76
- #: ../classes/column.php:1042
77
  msgid "This will determine how the date will be displayed."
78
  msgstr "Ceci déterminera l'affichage de la date."
79
 
80
- #: ../classes/column.php:1048
81
  msgid "Example:"
82
  msgstr "Exemple :"
83
 
84
- #: ../classes/column.php:1050
85
- #, php-format
86
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
87
- msgstr "Laisser vide pour utiliser le format spécifié par WordPress, modifier votre <a href=\"%s\">votre format de date par défaut ici</a>."
88
 
89
- #: ../classes/column.php:1051
90
  msgid "Documentation on date and time formatting."
91
  msgstr "Documentation sur le formatage de la date et du temps."
92
 
93
- #: ../classes/column.php:1065
94
  msgid "Excerpt length"
95
  msgstr "Longueur de l'extrait"
96
 
97
- #: ../classes/column.php:1066
98
  msgid "Number of words"
99
  msgstr "Nombre de mots"
100
 
101
- #: ../classes/column.php:1084
102
  msgid "Preview size"
103
  msgstr "Taille de prévisualisation"
104
 
105
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
106
  msgid "Custom"
107
  msgstr "Personnalisé"
108
 
109
- #: ../classes/column.php:1104 ../classes/column.php:1251
110
  msgid "width"
111
  msgstr "largeur"
112
 
113
- #: ../classes/column.php:1107
114
  msgid "height"
115
  msgstr "hauteur"
116
 
117
- #: ../classes/column.php:1119
118
  msgid "Before"
119
  msgstr "Avant"
120
 
121
- #: ../classes/column.php:1119
122
  msgid "This text will appear before the custom field value."
123
  msgstr "Ce texte apparaîtra avant la valeur du champ personnalisé."
124
 
125
- #: ../classes/column.php:1120
126
  msgid "After"
127
  msgstr "Après"
128
 
129
- #: ../classes/column.php:1120
130
  msgid "This text will appear after the custom field value."
131
  msgstr "Ce texte apparaîtra après la valeur du champ personnalisé."
132
 
133
- #: ../classes/column.php:1129
134
  msgid "Display Name"
135
  msgstr "Afficher nom"
136
 
137
- #: ../classes/column.php:1130
138
  msgid "First Name"
139
  msgstr "Nom"
140
 
141
- #: ../classes/column.php:1131
142
  msgid "Last Name"
143
  msgstr "Prénom"
144
 
145
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
146
  msgid "Nickname"
147
  msgstr "Surnom"
148
 
149
- #: ../classes/column.php:1133
150
  msgid "User Login"
151
  msgstr "Nom d'utilisateur"
152
 
153
- #: ../classes/column.php:1134
154
  msgid "User Email"
155
  msgstr "E-mail"
156
 
157
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
158
  msgid "User ID"
159
  msgstr "ID utilisateur"
160
 
161
- #: ../classes/column.php:1136
162
  msgid "First and Last Name"
163
  msgstr "Nom et prénom"
164
 
165
- #: ../classes/column.php:1139
166
  msgid "Display format"
167
  msgstr ""
168
 
169
- #: ../classes/column.php:1139
170
  msgid "This is the format of the author name."
171
  msgstr "Ceci est le format du nom de l'auteur"
172
 
173
- #: ../classes/column.php:1273
174
  msgid "Edit"
175
  msgstr "Modifier"
176
 
177
- #: ../classes/column.php:1275 ../classes/column.php:1367
178
  msgid "Clone"
179
  msgstr ""
180
 
181
- #: ../classes/column.php:1277 ../classes/column.php:1369
182
  msgid "Remove"
183
  msgstr "Retirer"
184
 
185
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13
186
- #: ../classes/column/custom-field.php:407
187
  msgid "Type"
188
  msgstr "Type"
189
 
190
- #: ../classes/column.php:1295
191
  msgid "Choose a column type."
192
  msgstr "Choisissez le type de colonne."
193
 
194
- #: ../classes/column.php:1295
195
  msgid "Name"
196
  msgstr ""
197
 
198
- #: ../classes/column.php:1305
199
  msgid "Label"
200
  msgstr "Libellé"
201
 
202
- #: ../classes/column.php:1305
203
  msgid "This is the name which will appear as the column header."
204
  msgstr "Ceci est le nom qui apparaitra comme l'entête de colonne."
205
 
206
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
207
  msgid "Width"
208
  msgstr "Largeur"
209
 
210
- #: ../classes/column.php:1314
211
  msgid "default"
212
  msgstr "Par défaut"
213
 
214
- #: ../classes/column.php:1315
215
  msgid "auto"
216
  msgstr ""
217
 
218
- #: ../classes/column/acf-placeholder.php:19
219
- msgid "ACF Field"
220
- msgstr "Champ ACF"
221
 
222
- #: ../classes/column/acf-placeholder.php:32
223
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
224
  msgstr ""
225
 
226
- #: ../classes/column/acf-placeholder.php:35
227
- #, php-format
228
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
229
  msgstr ""
230
 
231
- #: ../classes/column/acf-placeholder.php:38
232
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
233
  msgstr ""
234
 
235
- #: ../classes/column/acf-placeholder.php:44
236
- msgid "Find out more"
237
- msgstr "En savoir plus"
238
 
239
- #: ../classes/column/actions.php:29
240
- msgid "Actions"
241
- msgstr "Actions"
242
 
243
- #: ../classes/column/actions.php:96
244
- msgid "Use icons?"
 
 
 
 
245
  msgstr ""
246
 
247
- #: ../classes/column/actions.php:96
248
- msgid "Use icons instead of text for displaying the actions."
249
  msgstr ""
250
 
251
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72
252
- #: ../classes/column/used-by-menu.php:137
253
- msgid "Yes"
254
  msgstr ""
255
 
256
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76
257
- #: ../classes/column/used-by-menu.php:141
258
- msgid "No"
259
  msgstr ""
260
 
261
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19
262
- #: ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
263
- msgid "ID"
264
- msgstr "ID"
265
 
266
- #: ../classes/column/comment/agent.php:19
267
- msgid "Agent"
268
- msgstr "Agent"
269
 
270
- #: ../classes/column/comment/approved.php:19
271
- #: ../classes/column/post/comment-count.php:35
272
- msgid "Approved"
273
- msgstr "Approuvé"
274
 
275
- #: ../classes/column/comment/author-avatar.php:19
276
- msgid "Avatar"
277
- msgstr "Avatar"
278
 
279
- #: ../classes/column/comment/author-email.php:19
280
- msgid "Author email"
281
- msgstr "Courriel de l'auteur"
282
 
283
- #: ../classes/column/comment/author-ip.php:19
284
- msgid "Author IP"
285
- msgstr "IP de l'auteur"
286
 
287
- #: ../classes/column/comment/author-name.php:12
288
- msgid "Author name"
289
  msgstr ""
290
 
291
- #: ../classes/column/comment/author-url.php:19
292
- msgid "Author url"
293
- msgstr "URL de l'auteur"
294
 
295
- #: ../classes/column/comment/author.php:19
296
- msgid "Author"
297
- msgstr "Auteur"
298
 
299
- #: ../classes/column/comment/date-gmt.php:19
300
- msgid "Date GMT"
301
- msgstr "Date GMT"
302
 
303
- #: ../classes/column/comment/date-gmt.php:30
304
- #: ../classes/column/comment/date.php:30
305
- #, php-format
306
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
307
- msgstr "Soumis le<a href=\"%1$s\">%2$s à %3$s</a>"
308
 
309
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98
310
- #: ../classes/settings.php:318
311
- msgid "Date"
312
- msgstr "Date"
313
 
314
- #: ../classes/column/comment/excerpt.php:19
315
- #: ../classes/column/post/content.php:19
316
- msgid "Content"
317
- msgstr ""
318
 
319
- #: ../classes/column/comment/reply-to.php:19
320
- msgid "In Reply To"
321
- msgstr "En réponse à"
322
 
323
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
324
- msgid "User"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  msgstr ""
326
 
327
- #: ../classes/column/comment/word-count.php:19
328
- #: ../classes/column/post/word-count.php:19
329
- msgid "Word count"
330
- msgstr "Nombre de mots"
 
 
 
331
 
332
- #: ../classes/column/custom-field.php:23
333
- #: ../classes/column/custom-field.php:390 ../classes/settings.php:308
334
  msgid "Custom Field"
335
  msgstr "Champ personnalisé"
336
 
337
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313
338
- #: ../classes/storage_model.php:596
 
 
 
 
 
 
 
339
  msgid "Default"
340
  msgstr "Par défaut"
341
 
342
- #: ../classes/column/custom-field.php:95
343
- msgid "Checkmark (true/false)"
344
- msgstr "Cocher (vrai/faux)"
345
 
346
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
347
- msgid "Color"
348
- msgstr "Couleur"
349
 
350
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
351
- msgid "Counter"
352
- msgstr "Compteur"
353
 
354
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19
355
- #: ../classes/settings.php:315
356
  msgid "Excerpt"
357
  msgstr "Extrait"
358
 
359
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19
360
- #: ../classes/settings.php:314
361
- msgid "Image"
362
- msgstr "Image"
363
-
364
- #: ../classes/column/custom-field.php:101
365
- #: ../classes/storage_model/media.php:13
366
- msgid "Media Library"
367
- msgstr "Bibliothèque des médias"
368
 
369
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
370
  msgid "Multiple Values"
371
  msgstr "Valeurs multiples"
372
 
373
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
374
  msgid "Numeric"
375
  msgstr "Numérique"
376
 
377
- #: ../classes/column/custom-field.php:104
378
- msgid "Post Title (Post ID's)"
379
- msgstr "Titre du post (Post ID)"
380
 
381
- #: ../classes/column/custom-field.php:105
382
- msgid "Username (User ID's)"
383
- msgstr "Nom d'utilisateur (ID d'utilisateur)"
384
 
385
- #: ../classes/column/custom-field.php:106
386
- msgid "Term Name (Term ID's)"
387
  msgstr ""
388
 
389
- #: ../classes/column/custom-field.php:390
390
- msgid "Select your custom field."
391
- msgstr "Sélectionnez votre champ personnalisé."
392
-
393
- #: ../classes/column/custom-field.php:400
394
- msgid "No custom fields available."
395
- msgstr "Aucun champ personnalisé disponible."
396
 
397
- #: ../classes/column/custom-field.php:400
398
- #, php-format
399
- msgid "Please create a %s item first."
400
  msgstr ""
401
 
402
- #: ../classes/column/custom-field.php:407
403
- msgid "Field Type"
404
- msgstr "Type de champ"
405
 
406
- #: ../classes/column/custom-field.php:407
407
- msgid "This will determine how the value will be displayed."
408
- msgstr "Ceci va déterminer la manière dont la valeur sera affichée."
409
 
410
- #: ../classes/column/link/description.php:19
411
- #: ../classes/column/media/description.php:19
412
- #: ../classes/column/user/description.php:19
413
- msgid "Description"
414
- msgstr "Description"
415
 
416
- #: ../classes/column/link/length.php:19
417
- msgid "Length"
418
- msgstr "Longueur"
419
 
420
- #: ../classes/column/link/notes.php:19
421
- msgid "Notes"
422
- msgstr "Notes"
423
 
424
- #: ../classes/column/link/owner.php:19
425
- msgid "Owner"
426
- msgstr "Propriétaire"
427
 
428
- #: ../classes/column/link/rss.php:19
429
- msgid "Rss"
430
- msgstr "Rss"
431
 
432
- #: ../classes/column/link/target.php:19
433
- msgid "Target"
434
- msgstr "Cible"
435
 
436
- #: ../classes/column/media/alternate-text.php:19
437
- msgid "Alt"
438
- msgstr "Texte alternatif"
439
 
440
- #: ../classes/column/media/attached-to.php:19
441
- msgid "Attached to post"
 
 
 
 
442
  msgstr ""
443
 
444
- #: ../classes/column/media/available-sizes.php:20
445
- msgid "Available Sizes"
446
- msgstr "Tailles disponibles"
447
 
448
- #: ../classes/column/media/available-sizes.php:40
449
- msgid "full size"
450
- msgstr "Taille réelle"
451
 
452
- #: ../classes/column/media/caption.php:19
453
- #: ../classes/column/media/exif-data.php:41
454
- msgid "Caption"
455
- msgstr "Légende"
456
 
457
- #: ../classes/column/media/dimensions.php:19
458
- msgid "Dimensions"
459
- msgstr "Dimensions"
460
 
461
- #: ../classes/column/media/exif-data.php:19
462
- msgid "EXIF data"
463
- msgstr "Données EXIF"
464
 
465
- #: ../classes/column/media/exif-data.php:38
466
- msgid "Aperture"
467
- msgstr "Ouverture"
468
 
469
- #: ../classes/column/media/exif-data.php:39
470
- msgid "Credit"
471
- msgstr "Crédit"
472
 
473
- #: ../classes/column/media/exif-data.php:40
474
- msgid "Camera"
475
- msgstr "Appareil photo"
476
 
477
- #: ../classes/column/media/exif-data.php:42
478
- msgid "Timestamp"
479
- msgstr "Horodateur"
480
 
481
- #: ../classes/column/media/exif-data.php:43
482
- msgid "Copyright EXIF"
483
- msgstr "Copyright EXIF"
484
 
485
- #: ../classes/column/media/exif-data.php:44
486
- msgid "Focal Length"
487
- msgstr "Distance focale"
488
 
489
- #: ../classes/column/media/exif-data.php:45
490
- msgid "ISO"
491
- msgstr "ISO"
492
 
493
- #: ../classes/column/media/exif-data.php:46
494
- msgid "Shutter Speed"
495
- msgstr "Vitesse d'obturation"
496
 
497
- #: ../classes/column/media/exif-data.php:47
498
- msgid "Title"
499
- msgstr "Titre"
500
 
501
- #: ../classes/column/media/file-name.php:19
502
- msgid "File name"
503
- msgstr "Nom du fichier"
504
 
505
- #: ../classes/column/media/file-size.php:19
506
- msgid "File size"
507
- msgstr "Taille du fichier"
508
 
509
- #: ../classes/column/media/full-path.php:19
510
- #: ../classes/column/media/full-path.php:92
511
- msgid "Full path"
512
- msgstr "Chemin d'accès complet"
513
 
514
- #: ../classes/column/media/full-path.php:83
515
- msgid "Path scope"
516
- msgstr ""
517
 
518
- #: ../classes/column/media/full-path.php:84
519
- msgid "Part of the file path to display"
520
- msgstr ""
521
 
522
- #: ../classes/column/media/full-path.php:97
523
- msgid "Relative to domain"
524
- msgstr ""
525
 
526
- #: ../classes/column/media/full-path.php:102
527
- msgid "Relative to main uploads folder "
 
 
 
 
528
  msgstr ""
529
 
530
- #: ../classes/column/media/height.php:19
531
- msgid "Height"
532
- msgstr "Hauteur"
533
 
534
- #: ../classes/column/media/mime-type.php:19
535
- msgid "Mime type"
536
- msgstr "Type Mime"
537
 
538
- #: ../classes/column/post/attachment-count.php:19
539
- msgid "No. of Attachments"
540
- msgstr "Nombre de pièces jointes"
541
 
542
- #: ../classes/column/post/attachment.php:19
543
- msgid "Attachments"
544
  msgstr ""
545
 
546
- #: ../classes/column/post/author-name.php:20
547
- msgid "Display Author As"
548
- msgstr "Afficher l'auteur comme"
549
 
550
- #: ../classes/column/post/before-moretag.php:19
551
- msgid "Before More Tag"
552
- msgstr "Avant plus de balise"
553
 
554
- #: ../classes/column/post/comment-count.php:20
555
- msgid "Comment count"
556
- msgstr "Nombre de commentaires"
557
 
558
- #: ../classes/column/post/comment-count.php:34
559
- msgid "Total"
560
- msgstr "Total"
561
 
562
- #: ../classes/column/post/comment-count.php:36
563
- msgid "Pending"
564
- msgstr "En attente"
565
 
566
- #: ../classes/column/post/comment-count.php:37
567
- msgid "Spam"
568
- msgstr "Indésirable"
569
 
570
- #: ../classes/column/post/comment-count.php:38
571
- #: ../classes/column/post/status.php:35
572
- msgid "Trash"
573
- msgstr "Corbeille"
574
 
575
- #: ../classes/column/post/comment-count.php:99
576
- #: ../classes/column/post/comment-status.php:20
577
- msgid "Comment status"
578
- msgstr "Status de commentaire"
579
 
580
- #: ../classes/column/post/comment-count.php:99
581
- msgid "Select which comment status you like to display."
582
- msgstr "Sélectionnez quel commentaire voulez-vous afficher."
583
 
584
- #: ../classes/column/post/date-published.php:17
585
- msgid "Date Published"
586
- msgstr ""
587
 
588
- #: ../classes/column/post/depth.php:19
589
- msgid "Depth"
590
  msgstr ""
591
 
592
- #: ../classes/column/post/estimated-reading-time.php:19
593
- msgid "Estimated Reading Time"
594
- msgstr ""
595
 
596
- #: ../classes/column/post/estimated-reading-time.php:63
597
- msgid "second"
598
- msgid_plural "seconds"
599
- msgstr[0] ""
600
- msgstr[1] ""
601
 
602
- #: ../classes/column/post/estimated-reading-time.php:66
603
- msgid "minute"
604
- msgid_plural "minutes"
605
- msgstr[0] ""
606
- msgstr[1] ""
607
 
608
- #: ../classes/column/post/estimated-reading-time.php:103
609
- msgid "Words per minute"
 
 
 
 
610
  msgstr ""
611
 
612
- #: ../classes/column/post/estimated-reading-time.php:104
613
- msgid "Estimated reading time in words per minute"
614
  msgstr ""
615
 
616
- #: ../classes/column/post/featured-image.php:19
617
- msgid "Featured Image"
618
- msgstr "Image à la Une"
619
 
620
- #: ../classes/column/post/formats.php:19
621
- msgid "Post Format"
622
- msgstr "Format de post"
623
 
624
- #: ../classes/column/post/last-modified-author.php:20
625
- msgid "Last Modified Author"
626
  msgstr ""
627
 
628
- #: ../classes/column/post/modified.php:19
629
- msgid "Last modified"
630
- msgstr "Dernière modification"
631
 
632
- #: ../classes/column/post/order.php:19
633
- msgid "Page Order"
634
- msgstr "Ordre de page"
635
 
636
- #: ../classes/column/post/page-template.php:19
637
- msgid "Page Template"
638
- msgstr "Modèle de page"
639
 
640
- #: ../classes/column/post/parent.php:19
641
- msgid "Parent"
642
- msgstr "Parent"
643
 
644
- #: ../classes/column/post/path.php:19
645
- msgid "Path"
646
  msgstr ""
647
 
648
- #: ../classes/column/post/permalink.php:19
649
- msgid "Permalink"
650
- msgstr "Permalien"
651
 
652
- #: ../classes/column/post/permalink.php:68
653
- msgid "Link to post"
654
  msgstr ""
655
 
656
- #: ../classes/column/post/permalink.php:68
657
- msgid "This will make the permalink clickable."
658
  msgstr ""
659
 
660
- #: ../classes/column/post/ping-status.php:19
661
- msgid "Ping status"
662
- msgstr "Status du ping"
663
 
664
- #: ../classes/column/post/roles.php:19
665
- msgid "Roles"
666
- msgstr "Rôles"
667
 
668
- #: ../classes/column/post/shortcodes.php:19
669
- msgid "Shortcodes"
670
  msgstr ""
671
 
672
- #: ../classes/column/post/slug.php:19
673
- msgid "Slug"
674
- msgstr "Slug"
675
 
676
- #: ../classes/column/post/status.php:19
677
- msgid "Status"
678
- msgstr "Status"
679
 
680
- #: ../classes/column/post/status.php:29
681
- msgid "Published"
682
- msgstr "Publié"
683
 
684
- #: ../classes/column/post/status.php:30
685
- msgid "Draft"
686
- msgstr "Brouillon"
687
 
688
- #: ../classes/column/post/status.php:31
689
- msgid "Scheduled"
690
- msgstr "Planifié"
691
 
692
- #: ../classes/column/post/status.php:32
693
- msgid "Private"
694
- msgstr "Privé"
695
-
696
- #: ../classes/column/post/status.php:33
697
- msgid "Pending Review"
698
- msgstr "Avis en attente"
699
 
700
- #: ../classes/column/post/status.php:34
701
- msgid "Auto Draft"
702
- msgstr "Projet automatique"
703
 
704
- #: ../classes/column/post/sticky.php:19
705
- msgid "Sticky"
706
- msgstr "Attaché"
707
 
708
- #: ../classes/column/post/title-raw.php:19
709
- msgid "Title without actions"
710
- msgstr ""
711
 
712
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
713
- msgid "Taxonomy"
714
- msgstr "Taxonomy"
715
 
716
- #: ../classes/column/used-by-menu.php:20
717
- msgid "Used by Menu"
718
- msgstr ""
719
 
720
- #: ../classes/column/used-by-menu.php:133
721
- msgid "Link to menu"
722
  msgstr ""
723
 
724
- #: ../classes/column/used-by-menu.php:133
725
- msgid "This will make the title link to the menu."
726
  msgstr ""
727
 
728
- #: ../classes/column/user/comment-count.php:19
729
- msgid "Comment Count"
730
- msgstr "Nombre de commentaires"
731
 
732
- #: ../classes/column/user/display-name.php:19
733
- msgid "Display name"
734
  msgstr ""
735
 
736
- #: ../classes/column/user/first-name.php:19
737
- msgid "First name"
738
- msgstr "Prénom"
739
 
740
- #: ../classes/column/user/last-name.php:19
741
- msgid "Last name"
742
- msgstr "Nom"
743
 
744
- #: ../classes/column/user/post-count.php:19
745
- msgid "Post Count"
746
- msgstr "Nombre d'article"
747
 
748
- #: ../classes/column/user/post-count.php:89
749
- msgid "Post Type"
750
- msgstr "Type d'article"
751
 
752
- #: ../classes/column/user/registered.php:19
753
- msgid "Registered"
754
- msgstr "Inscrit"
755
 
756
- #: ../classes/column/user/rich-editing.php:19
757
- msgid "Visual Editor"
758
- msgstr ""
759
 
760
- #: ../classes/column/user/url.php:19
761
- msgid "Url"
762
- msgstr "URL"
763
 
764
- #: ../classes/review_notice.php:55 ../classes/settings.php:170
765
- #: ../classes/settings.php:589 ../classes/upgrade.php:135
766
- msgid "Admin Columns"
767
- msgstr "Admin Columns"
768
 
769
- #: ../classes/review_notice.php:58
770
- msgid "Admin Columns Pro"
771
- msgstr ""
772
 
773
- #: ../classes/review_notice.php:65
774
- #, php-format
775
- 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."
776
- msgstr ""
777
 
778
- #: ../classes/review_notice.php:68
779
- msgid "click here"
780
- msgstr ""
781
 
782
- #: ../classes/review_notice.php:72
783
- msgid "Leave a review!"
784
- msgstr ""
785
 
786
- #: ../classes/review_notice.php:73
787
- msgid "Permanently hide notice"
788
- msgstr ""
789
 
790
- #: ../classes/review_notice.php:80
791
- #, php-format
792
- 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."
793
- msgstr ""
794
 
795
- #: ../classes/review_notice.php:82
796
- msgid "documentation page"
797
  msgstr ""
798
 
799
- #: ../classes/review_notice.php:86
800
- #, php-format
801
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
802
  msgstr ""
803
 
804
- #: ../classes/review_notice.php:87
805
- msgid "our forums"
806
- msgstr ""
807
 
808
- #: ../classes/review_notice.php:91
809
- #, php-format
810
- msgid "You can also find help on the %s, and %s."
811
- msgstr ""
812
 
813
- #: ../classes/review_notice.php:92
814
- msgid "Admin Columns forums on WordPress.org"
815
  msgstr ""
816
 
817
- #: ../classes/review_notice.php:93
818
- msgid "find answers to some frequently asked questions"
819
  msgstr ""
820
 
821
- #: ../classes/settings.php:112
822
- msgid "Add-on successfully activated."
823
- msgstr "Module correctement activé."
824
 
825
- #: ../classes/settings.php:115
826
- msgid "Add-on successfully deactivated."
827
- msgstr "Module correctement désactivé."
828
 
829
- #: ../classes/settings.php:170
830
- msgid "Admin Columns Settings"
831
- msgstr "Réglages Admin Columns"
832
 
833
- #: ../classes/settings.php:220
834
- #, php-format
835
- msgid "%s column is already present and can not be duplicated."
836
- msgstr ""
837
 
838
- #: ../classes/settings.php:274
839
- msgid "Default settings succesfully restored."
840
- msgstr "Les paramètres par défaut ont été restaurés avec succès."
841
 
842
- #: ../classes/settings.php:291
843
- msgid "Overview"
844
- msgstr "Résumé"
845
 
846
- #: ../classes/settings.php:294
847
- 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."
848
- msgstr "Cette extension permet l'ajout et la suppression de colonnes additionnelles dans les écrans d'administration pour les articles (types), pages, librairie des médias, commentaires, liens et usagers. Modifier le libellé des colonnes et réarranger leur ordre à votre guise."
849
 
850
- #: ../classes/settings.php:297
851
- msgid "Basics"
852
- msgstr "Basiques"
853
 
854
- #: ../classes/settings.php:299
855
- msgid "Change order"
856
- msgstr "Modifier l'ordre"
857
 
858
- #: ../classes/settings.php:300
859
- msgid "By dragging the columns you can change the order which they will appear in."
860
- msgstr "En déplaçant les colonnes vous modifierez ainsi l'ordre dans lequel ils apparaissent."
861
 
862
- #: ../classes/settings.php:301
863
- msgid "Change label"
864
- msgstr "Modifier le label"
865
 
866
- #: ../classes/settings.php:302
867
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
868
  msgstr ""
869
 
870
- #: ../classes/settings.php:303
871
- msgid "Change column width"
872
- msgstr "Modifier la largeur de colonne"
873
 
874
- #: ../classes/settings.php:304
875
- 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."
876
  msgstr ""
877
 
878
- #: ../classes/settings.php:310
879
- msgid "'Custom Field' column"
880
- msgstr "Colonne 'Champ personnalisé'"
881
 
882
- #: ../classes/settings.php:311
883
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
884
- msgstr ""
885
 
886
- #: ../classes/settings.php:313
887
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
888
- msgstr ""
889
 
890
- #: ../classes/settings.php:314
891
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
892
- msgstr ""
893
 
894
- #: ../classes/settings.php:315
895
- msgid "Value: This will show the first 20 words of the Post content."
896
- msgstr "Utile : Ceci affiche les 20 premiers mots de l'article."
897
 
898
- #: ../classes/settings.php:316
899
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
900
- msgstr "Utile : Ce devrait être un tableau. Ce sera n'importe quel tableau (multidimensionnel) flottant."
901
 
902
- #: ../classes/settings.php:317
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 ""
905
 
906
- #: ../classes/settings.php:318
907
- #, php-format
908
- 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."
909
- msgstr ""
910
 
911
- #: ../classes/settings.php:319
912
- msgid "Post Titles"
913
- msgstr "Titre de l'article"
914
 
915
- #: ../classes/settings.php:319
916
- msgid "Value: can be one or more Post ID's (seperated by ',')."
 
 
 
 
917
  msgstr ""
918
 
919
- #: ../classes/settings.php:320
920
- msgid "Usernames"
921
- msgstr "Noms d'utilisateurs"
922
-
923
- #: ../classes/settings.php:320
924
- msgid "Value: can be one or more User ID's (seperated by ',')."
925
  msgstr ""
926
 
927
- #: ../classes/settings.php:321
928
- msgid "Checkmark"
929
- msgstr "Cocher"
930
-
931
- #: ../classes/settings.php:321
932
- msgid "Value: should be a 1 (one) or 0 (zero)."
933
- msgstr "Utile : Peut être la valeur un (1) ou zéro (0)."
934
-
935
- #: ../classes/settings.php:322
936
- msgid "Value: hex value color, such as #808080."
937
- msgstr "Utile : code couleur en hexadécimal, comme #808080."
938
 
939
- #: ../classes/settings.php:323
940
- 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."
941
  msgstr ""
942
 
943
- #: ../classes/settings.php:412
944
- msgid "Welcome to Admin Columns"
945
- msgstr "Bienvenue dans Admin Columns"
946
 
947
- #: ../classes/settings.php:415
948
- msgid "Thank you for updating to the latest version!"
949
- msgstr "Merci d'avoir mis à jour vers la dernière version!"
950
 
951
- #: ../classes/settings.php:416
952
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
953
  msgstr ""
954
 
955
- #: ../classes/settings.php:421
956
- msgid "What’s New"
957
- msgstr "Quoi de neuf"
958
-
959
- #: ../classes/settings.php:422
960
- msgid "Changelog"
961
- msgstr "Modifications"
962
-
963
- #: ../classes/settings.php:427
964
- msgid "Important"
965
- msgstr "Important"
966
-
967
- #: ../classes/settings.php:429
968
- msgid "Database Changes"
969
- msgstr "Changements dans la base de données"
970
 
971
- #: ../classes/settings.php:430
972
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
973
- msgstr "La base de données à été modifiée entre les versions 1 et 2. Mais nous sommes sûr que vous pouvez retourner à la version 1x sans aucun problème."
974
 
975
- #: ../classes/settings.php:433
976
- msgid "Make sure you backup your database and then click"
977
- msgstr "Assurez-vous de sauvegarder votre base de données et cliquez "
978
 
979
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
980
- msgid "Upgrade Database"
981
- msgstr "Mettre à jour la base de données"
982
 
983
- #: ../classes/settings.php:436
984
- msgid "Potential Issues"
985
- msgstr "Problèmes potentiels"
986
 
987
- #: ../classes/settings.php:437
988
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
989
- msgstr ""
990
 
991
- #: ../classes/settings.php:437
992
- msgid "Migrating from v1 to v2"
993
- msgstr "Migration de la v1 à la v2"
994
 
995
- #: ../classes/settings.php:437
996
- msgid "guide to view the full list of changes."
997
- msgstr "guide pour voir la liste complète des modifications."
998
 
999
- #: ../classes/settings.php:437
1000
- #, php-format
1001
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
1002
- msgstr ""
1003
 
1004
- #: ../classes/settings.php:440
1005
- msgid "Important!"
1006
- msgstr "Important!"
1007
 
1008
- #: ../classes/settings.php:440
1009
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
1010
- msgstr ""
1011
 
1012
- #: ../classes/settings.php:440
1013
- msgid "version 1"
1014
- msgstr "version 1"
1015
 
1016
- #: ../classes/settings.php:440
1017
- msgid "of this plugin."
1018
- msgstr "de ce plugin."
1019
 
1020
- #: ../classes/settings.php:446
1021
- msgid "Changelog for"
1022
- msgstr "Nouveautés pour"
1023
 
1024
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1025
- msgid "Learn more"
1026
- msgstr "En savoir plus"
1027
 
1028
- #: ../classes/settings.php:471
1029
- msgid "Start using Admin Columns"
1030
- msgstr "Commencer à utiliser Admin Columns"
1031
 
1032
- #: ../classes/settings.php:490
1033
- msgid "General Settings"
1034
- msgstr "Réglages généraux"
1035
 
1036
- #: ../classes/settings.php:491
1037
- msgid "Customize your Admin Columns settings."
1038
- msgstr "Personnalisez vos réglages Admin Columns."
1039
 
1040
- #: ../classes/settings.php:502
1041
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1042
  msgstr ""
1043
 
1044
- #: ../classes/settings.php:509 ../classes/settings.php:673
1045
- msgid "Save"
1046
- msgstr "Enregistrer"
1047
-
1048
- #: ../classes/settings.php:549
1049
- msgid "Restore Settings"
1050
- msgstr "Rétablir les réglages"
1051
-
1052
- #: ../classes/settings.php:550
1053
- msgid "This will delete all column settings and restore the default settings."
1054
- msgstr "Cette opération va supprimer tous les paramètres de colonnes et restaure tous les paramètres par défaut."
1055
-
1056
- #: ../classes/settings.php:556
1057
- msgid "Restore default settings"
1058
- msgstr "Restaurer les paramètres par défaut"
1059
-
1060
- #: ../classes/settings.php:556
1061
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1062
- msgstr "Attention! Tous les données des colonnes d'administration seront supprimées. Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
1063
 
1064
- #: ../classes/settings.php:572
1065
- msgid "Posttypes"
1066
- msgstr "Type d'article"
1067
 
1068
- #: ../classes/settings.php:573
1069
- msgid "Others"
1070
- msgstr "Autres"
1071
 
1072
- #: ../classes/settings.php:574
1073
- msgid "Taxonomies"
1074
- msgstr "Taxonomie"
1075
 
1076
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1077
- msgid "Settings"
1078
- msgstr "Réglages"
1079
 
1080
- #: ../classes/settings.php:591
1081
- msgid "Add-ons"
1082
- msgstr "Modules"
1083
 
1084
- #: ../classes/settings.php:659
1085
- #, php-format
1086
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1087
  msgstr ""
1088
 
1089
- #: ../classes/settings.php:669
1090
- msgid "Store settings"
1091
- msgstr "Enregistrer les réglages"
1092
-
1093
- #: ../classes/settings.php:673
1094
- msgid "Update"
1095
- msgstr "Mettre à jour"
1096
 
1097
- #: ../classes/settings.php:677
1098
- #, php-format
1099
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1100
  msgstr ""
1101
 
1102
- #: ../classes/settings.php:678
1103
- msgid "Restore"
1104
- msgstr "Restaurer"
1105
-
1106
- #: ../classes/settings.php:678
1107
- msgid "columns"
1108
- msgstr "colonnes"
1109
-
1110
- #: ../classes/settings.php:697
1111
- msgid "Get Admin Columns Pro"
1112
  msgstr ""
1113
 
1114
- #: ../classes/settings.php:701
1115
- msgid "Add Sorting"
1116
- msgstr "Ajouter le tri"
1117
-
1118
- #: ../classes/settings.php:702
1119
- msgid "Add Filtering"
1120
- msgstr "Ajouter le filtrage"
1121
 
1122
- #: ../classes/settings.php:703
1123
- msgid "Add Import/Export"
1124
- msgstr "Ajouter l'import/export"
1125
 
1126
- #: ../classes/settings.php:704
1127
- msgid "Add Direct Editing"
1128
- msgstr "Ajouter la modification directe"
1129
 
1130
- #: ../classes/settings.php:707
1131
- #, php-format
1132
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1133
- msgstr ""
1134
 
1135
- #: ../classes/settings.php:738
1136
- msgid "Are you happy with Admin Columns?"
1137
- msgstr ""
1138
 
1139
- #: ../classes/settings.php:746
1140
- msgid "What's wrong? Need help? Let us know!"
1141
- msgstr ""
1142
 
1143
- #: ../classes/settings.php:747
1144
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1145
- msgstr ""
1146
 
1147
- #: ../classes/settings.php:755
1148
- msgid "Docs"
1149
- msgstr ""
1150
 
1151
- #: ../classes/settings.php:760
1152
- msgid "Forums"
1153
  msgstr ""
1154
 
1155
- #: ../classes/settings.php:769
1156
- msgid "Woohoo! We're glad to hear that!"
1157
  msgstr ""
1158
 
1159
- #: ../classes/settings.php:770
1160
- 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!"
1161
- msgstr ""
 
 
1162
 
1163
- #: ../classes/settings.php:774
1164
- msgid "Rate"
1165
- msgstr ""
 
 
1166
 
1167
- #: ../classes/settings.php:785
1168
- msgid "Tweet"
1169
  msgstr ""
1170
 
1171
- #: ../classes/settings.php:795
1172
- msgid "Buy Pro"
1173
  msgstr ""
1174
 
1175
- #: ../classes/settings.php:807
1176
- msgid "Support"
1177
- msgstr "Aide"
1178
 
1179
- #: ../classes/settings.php:810
1180
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1181
- msgstr ""
1182
 
1183
- #: ../classes/settings.php:813
1184
- #, php-format
1185
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1186
  msgstr ""
1187
 
1188
- #: ../classes/settings.php:842
1189
- msgid "Drag and drop to reorder"
1190
- msgstr "Vous pouvez modifier l'ordre."
1191
-
1192
- #: ../classes/settings.php:845
1193
- msgid "Add Column"
1194
- msgstr "Ajouter une colonne."
1195
-
1196
- #: ../classes/settings.php:926
1197
- msgid "Active"
1198
- msgstr "Actif"
1199
-
1200
- #: ../classes/settings.php:927
1201
- msgid "Deactivate"
1202
- msgstr "Désactiver"
1203
-
1204
- #: ../classes/settings.php:934
1205
- msgid "Installed"
1206
- msgstr "Installé"
1207
 
1208
- #: ../classes/settings.php:935
1209
- msgid "Activate"
1210
- msgstr "Activer"
1211
 
1212
- #: ../classes/settings.php:949
1213
- msgid "Download & Install"
1214
- msgstr "Télécharger & Installer"
1215
 
1216
- #: ../classes/settings.php:954
1217
- msgid "Get this add-on"
1218
- msgstr "Obtenir ce module"
1219
 
1220
- #: ../classes/storage_model.php:237
1221
- msgid "settings succesfully restored."
1222
- msgstr "les paramètres ont été restaurés avec succès."
1223
 
1224
- #: ../classes/storage_model.php:253
1225
- msgid "No columns settings available."
1226
- msgstr "Aucun paramètre de colonne disponible."
1227
 
1228
- #: ../classes/storage_model.php:274
1229
- #, php-format
1230
- msgid "You are trying to store the same settings for %s."
1231
- msgstr "Vous essayez de conserver les mêmes paramètres pour %s."
1232
 
1233
- #: ../classes/storage_model.php:278
1234
- #, php-format
1235
- msgid "Settings for %s updated successfully."
1236
  msgstr ""
1237
 
1238
- #: ../classes/storage_model.php:809
1239
- msgid "View"
1240
- msgstr "Voir"
1241
 
1242
- #: ../classes/storage_model/comment.php:13
1243
- msgid "Comments"
1244
- msgstr "Commentaires"
1245
 
1246
- #: ../classes/storage_model/comment.php:14
1247
- msgid "Comment"
1248
  msgstr ""
1249
 
1250
- #: ../classes/storage_model/link.php:13
1251
- msgid "Links"
1252
- msgstr "Liens"
1253
-
1254
- #: ../classes/storage_model/link.php:14
1255
- msgid "Link"
1256
- msgstr ""
1257
 
1258
- #: ../classes/storage_model/media.php:14
1259
- msgid "Media"
1260
- msgstr ""
1261
 
1262
- #: ../classes/storage_model/user.php:13
1263
- msgid "Users"
1264
- msgstr "Utilisateurs"
1265
 
1266
- #: ../classes/upgrade.php:62
1267
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
1268
  msgstr ""
1269
 
1270
- #: ../classes/upgrade.php:95
1271
- msgid "Upgrade"
1272
- msgstr "Mettre à jour"
1273
-
1274
- #: ../classes/upgrade.php:136
1275
- msgid "requires a database upgrade"
1276
- msgstr "nécessite une mise à jour de la base de données"
1277
 
1278
- #: ../classes/upgrade.php:139
1279
- msgid "why?"
1280
- msgstr "pourquoi?"
1281
 
1282
- #: ../classes/upgrade.php:140
1283
- msgid "Please"
1284
- msgstr "Veuillez"
1285
 
1286
- #: ../classes/upgrade.php:141
1287
- msgid "backup your database"
1288
- msgstr "sauvegarder votre base de données"
1289
 
1290
- #: ../classes/upgrade.php:142
1291
- msgid "then click"
1292
- msgstr "puis cliquer"
1293
 
1294
- #: ../classes/upgrade.php:351
1295
- msgid "Migrating Column Settings"
1296
- msgstr "Migration des paramètres de colonne"
1297
 
1298
- #: ../classes/upgrade.php:387
1299
- msgid "No Upgrade Required"
1300
- msgstr "Aucune mise à jour n'est nécessaire."
1301
 
1302
- #: ../classes/upgrade.php:388
1303
- msgid "Return to welcome screen."
1304
- msgstr "Retour à l'écran d'accueil."
1305
 
1306
- #: ../classes/upgrade.php:406
1307
- msgid "Upgrade Complete!"
1308
- msgstr "Mise à jour terminée!"
1309
 
1310
- #: ../classes/upgrade.php:406
1311
- msgid "Return to settings."
1312
- msgstr "Retour aux réglages."
1313
 
1314
- #: ../classes/upgrade.php:407
1315
- msgid "Error"
1316
- msgstr "Erreur"
1317
 
1318
- #: ../classes/upgrade.php:408
1319
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1320
- msgstr "Désoler. Quelque chose ne c'est pas bien déroulé durant la mise à jour. Veuillez reporter cela au support du forum."
1321
 
1322
- #: ../codepress-admin-columns.php:444
1323
- msgid "Edit columns"
1324
- msgstr "Éditer les colonnes"
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # 16kbit <code@ms-studio.net>, 2014
5
  # 16kbit <code@ms-studio.net>, 2014
11
  msgid ""
12
  msgstr ""
13
  "Project-Id-Version: Admin Columns\n"
14
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
15
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
16
  "Last-Translator: Codepress <info@codepress.nl>\n"
17
+ "Language-Team: French (France) (http://www.transifex.com/codepress/admin-columns/language/fr_FR/)\n"
18
  "MIME-Version: 1.0\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Language: fr_FR\n"
22
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
23
+ "X-Poedit-Basepath: ..\n"
24
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
+ "POT-Creation-Date: \n"
27
+ "X-Generator: Poedit 1.8.5\n"
28
  "X-Poedit-SearchPath-0: .\n"
29
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
30
+
31
+ #: ../codepress-admin-columns.php:451
32
+ msgid "Edit columns"
33
+ msgstr "Éditer les colonnes"
 
 
34
 
35
  #: ../classes/addons.php:110
36
  msgid "Plugins"
52
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
53
  msgstr ""
54
 
55
+ #: ../classes/column.php:624
56
  msgid "Thumbnail"
57
  msgstr "Vignette"
58
 
59
+ #: ../classes/column.php:625
60
  msgid "Medium"
61
  msgstr "Moyen"
62
 
63
+ #: ../classes/column.php:626
64
  msgid "Large"
65
  msgstr "Large"
66
 
67
+ #: ../classes/column.php:627
68
  msgid "Full"
69
  msgstr "Pleine taille"
70
 
71
+ #: ../classes/column.php:1059
72
+ msgid "Exact match"
73
+ msgstr ""
74
+
75
+ #: ../classes/column.php:1060
76
+ msgid "Lesser than"
77
+ msgstr ""
78
+
79
+ #: ../classes/column.php:1061
80
+ msgid "Greater than"
81
+ msgstr ""
82
+
83
+ #: ../classes/column.php:1062
84
+ msgid "Between"
85
+ msgstr ""
86
+
87
+ #: ../classes/column.php:1089
88
  msgid "Date Format"
89
  msgstr "Format de date"
90
 
91
+ #: ../classes/column.php:1090
92
  msgid "This will determine how the date will be displayed."
93
  msgstr "Ceci déterminera l'affichage de la date."
94
 
95
+ #: ../classes/column.php:1096
96
  msgid "Example:"
97
  msgstr "Exemple :"
98
 
99
+ #: ../classes/column.php:1098
100
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
101
+ msgstr ""
 
102
 
103
+ #: ../classes/column.php:1099
104
  msgid "Documentation on date and time formatting."
105
  msgstr "Documentation sur le formatage de la date et du temps."
106
 
107
+ #: ../classes/column.php:1113
108
  msgid "Excerpt length"
109
  msgstr "Longueur de l'extrait"
110
 
111
+ #: ../classes/column.php:1114
112
  msgid "Number of words"
113
  msgstr "Nombre de mots"
114
 
115
+ #: ../classes/column.php:1132
116
  msgid "Preview size"
117
  msgstr "Taille de prévisualisation"
118
 
119
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
120
  msgid "Custom"
121
  msgstr "Personnalisé"
122
 
123
+ #: ../classes/column.php1152, ../classes/column.php:1328
124
  msgid "width"
125
  msgstr "largeur"
126
 
127
+ #: ../classes/column.php:1155
128
  msgid "height"
129
  msgstr "hauteur"
130
 
131
+ #: ../classes/column.php:1167
132
  msgid "Before"
133
  msgstr "Avant"
134
 
135
+ #: ../classes/column.php:1167
136
  msgid "This text will appear before the custom field value."
137
  msgstr "Ce texte apparaîtra avant la valeur du champ personnalisé."
138
 
139
+ #: ../classes/column.php:1168
140
  msgid "After"
141
  msgstr "Après"
142
 
143
+ #: ../classes/column.php:1168
144
  msgid "This text will appear after the custom field value."
145
  msgstr "Ce texte apparaîtra après la valeur du champ personnalisé."
146
 
147
+ #: ../classes/column.php:1177
148
  msgid "Display Name"
149
  msgstr "Afficher nom"
150
 
151
+ #: ../classes/column.php1178, ../classes/settings.php:733
152
  msgid "First Name"
153
  msgstr "Nom"
154
 
155
+ #: ../classes/column.php:1179
156
  msgid "Last Name"
157
  msgstr "Prénom"
158
 
159
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
160
  msgid "Nickname"
161
  msgstr "Surnom"
162
 
163
+ #: ../classes/column.php:1181
164
  msgid "User Login"
165
  msgstr "Nom d'utilisateur"
166
 
167
+ #: ../classes/column.php:1182
168
  msgid "User Email"
169
  msgstr "E-mail"
170
 
171
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
172
  msgid "User ID"
173
  msgstr "ID utilisateur"
174
 
175
+ #: ../classes/column.php:1184
176
  msgid "First and Last Name"
177
  msgstr "Nom et prénom"
178
 
179
+ #: ../classes/column.php:1187
180
  msgid "Display format"
181
  msgstr ""
182
 
183
+ #: ../classes/column.php:1187
184
  msgid "This is the format of the author name."
185
  msgstr "Ceci est le format du nom de l'auteur"
186
 
187
+ #: ../classes/column.php:1350
188
  msgid "Edit"
189
  msgstr "Modifier"
190
 
191
+ #: ../classes/column.php1352, ../classes/column.php:1444
192
  msgid "Clone"
193
  msgstr ""
194
 
195
+ #: ../classes/column.php:1354
196
  msgid "Remove"
197
  msgstr "Retirer"
198
 
199
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
 
200
  msgid "Type"
201
  msgstr "Type"
202
 
203
+ #: ../classes/column.php:1372
204
  msgid "Choose a column type."
205
  msgstr "Choisissez le type de colonne."
206
 
207
+ #: ../classes/column.php:1372
208
  msgid "Name"
209
  msgstr ""
210
 
211
+ #: ../classes/column.php:1382
212
  msgid "Label"
213
  msgstr "Libellé"
214
 
215
+ #: ../classes/column.php:1382
216
  msgid "This is the name which will appear as the column header."
217
  msgstr "Ceci est le nom qui apparaitra comme l'entête de colonne."
218
 
219
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
220
  msgid "Width"
221
  msgstr "Largeur"
222
 
223
+ #: ../classes/column.php:1391
224
  msgid "default"
225
  msgstr "Par défaut"
226
 
227
+ #: ../classes/column.php:1392
228
  msgid "auto"
229
  msgstr ""
230
 
231
+ #: ../classes/column.php:1466
232
+ msgid "Property To Display"
233
+ msgstr ""
234
 
235
+ #: ../classes/column.php:1472
236
+ msgid "Post property to display for related post(s)."
237
  msgstr ""
238
 
239
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
240
+ msgid "Link To"
 
241
  msgstr ""
242
 
243
+ #: ../classes/column.php:1489
244
+ msgid "Edit Post Author"
245
  msgstr ""
246
 
247
+ #: ../classes/column.php:1490
248
+ msgid "View Public Post Author Page"
249
+ msgstr ""
250
 
251
+ #: ../classes/column.php:1492
252
+ msgid "Page the posts should link to."
253
+ msgstr ""
254
 
255
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
256
+ msgid "Admin Columns"
257
+ msgstr "Admin Columns"
258
+
259
+ #: ../classes/review_notice.php:58
260
+ msgid "Admin Columns Pro"
261
  msgstr ""
262
 
263
+ #: ../classes/review_notice.php:68
264
+ msgid "click here"
265
  msgstr ""
266
 
267
+ #: ../classes/review_notice.php:72
268
+ msgid "Leave a review!"
 
269
  msgstr ""
270
 
271
+ #: ../classes/review_notice.php:73
272
+ msgid "Permanently hide notice"
 
273
  msgstr ""
274
 
275
+ #: ../classes/review_notice.php:80
276
+ 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."
277
+ msgstr ""
 
278
 
279
+ #: ../classes/review_notice.php:82
280
+ msgid "documentation page"
281
+ msgstr ""
282
 
283
+ #: ../classes/review_notice.php:86
284
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
285
+ msgstr ""
 
286
 
287
+ #: ../classes/review_notice.php:87
288
+ msgid "our forums"
289
+ msgstr ""
290
 
291
+ #: ../classes/review_notice.php:91
292
+ msgid "You can also find help on the %s, and %s."
293
+ msgstr ""
294
 
295
+ #: ../classes/review_notice.php:92
296
+ msgid "Admin Columns forums on WordPress.org"
297
+ msgstr ""
298
 
299
+ #: ../classes/review_notice.php:93
300
+ msgid "find answers to some frequently asked questions"
301
  msgstr ""
302
 
303
+ #: ../classes/settings.php:113
304
+ msgid "Add-on successfully activated."
305
+ msgstr "Module correctement activé."
306
 
307
+ #: ../classes/settings.php:116
308
+ msgid "Add-on successfully deactivated."
309
+ msgstr "Module correctement désactivé."
310
 
311
+ #: ../classes/settings.php:170
312
+ msgid "Admin Columns Settings"
313
+ msgstr "Réglages Admin Columns"
314
 
315
+ #: ../classes/settings.php:228
316
+ msgid "%s column is already present and can not be duplicated."
317
+ msgstr ""
 
 
318
 
319
+ #: ../classes/settings.php:284
320
+ msgid "Default settings succesfully restored."
321
+ msgstr "Les paramètres par défaut ont été restaurés avec succès."
 
322
 
323
+ #: ../classes/settings.php:301
324
+ msgid "Overview"
325
+ msgstr "Résumé"
 
326
 
327
+ #: ../classes/settings.php:304
328
+ 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."
329
+ msgstr "Cette extension permet l'ajout et la suppression de colonnes additionnelles dans les écrans d'administration pour les articles (types), pages, librairie des médias, commentaires, liens et usagers. Modifier le libellé des colonnes et réarranger leur ordre à votre guise."
330
 
331
+ #: ../classes/settings.php:307
332
+ msgid "Basics"
333
+ msgstr "Basiques"
334
+
335
+ #: ../classes/settings.php:309
336
+ msgid "Change order"
337
+ msgstr "Modifier l'ordre"
338
+
339
+ #: ../classes/settings.php:310
340
+ msgid "By dragging the columns you can change the order which they will appear in."
341
+ msgstr "En déplaçant les colonnes vous modifierez ainsi l'ordre dans lequel ils apparaissent."
342
+
343
+ #: ../classes/settings.php:311
344
+ msgid "Change label"
345
+ msgstr "Modifier le label"
346
+
347
+ #: ../classes/settings.php:312
348
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
349
  msgstr ""
350
 
351
+ #: ../classes/settings.php:313
352
+ msgid "Change column width"
353
+ msgstr "Modifier la largeur de colonne"
354
+
355
+ #: ../classes/settings.php:314
356
+ 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."
357
+ msgstr ""
358
 
359
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
 
360
  msgid "Custom Field"
361
  msgstr "Champ personnalisé"
362
 
363
+ #: ../classes/settings.php:320
364
+ msgid "'Custom Field' column"
365
+ msgstr "Colonne 'Champ personnalisé'"
366
+
367
+ #: ../classes/settings.php:321
368
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
369
+ msgstr ""
370
+
371
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
372
  msgid "Default"
373
  msgstr "Par défaut"
374
 
375
+ #: ../classes/settings.php:323
376
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
377
+ msgstr ""
378
 
379
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
380
+ msgid "Image"
381
+ msgstr "Image"
382
 
383
+ #: ../classes/settings.php:324
384
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
385
+ msgstr ""
386
 
387
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
 
388
  msgid "Excerpt"
389
  msgstr "Extrait"
390
 
391
+ #: ../classes/settings.php:325
392
+ msgid "Value: This will show the first 20 words of the Post content."
393
+ msgstr "Utile : Ceci affiche les 20 premiers mots de l'article."
 
 
 
 
 
 
394
 
395
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
396
  msgid "Multiple Values"
397
  msgstr "Valeurs multiples"
398
 
399
+ #: ../classes/settings.php:326
400
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
401
+ msgstr "Utile : Ce devrait être un tableau. Ce sera n'importe quel tableau (multidimensionnel) flottant."
402
+
403
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
404
  msgid "Numeric"
405
  msgstr "Numérique"
406
 
407
+ #: ../classes/settings.php:327
408
+ 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."
409
+ msgstr ""
410
 
411
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
412
+ msgid "Date"
413
+ msgstr "Date"
414
 
415
+ #: ../classes/settings.php:328
416
+ 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."
417
  msgstr ""
418
 
419
+ #: ../classes/settings.php:329
420
+ msgid "Post Titles"
421
+ msgstr "Titre de l'article"
 
 
 
 
422
 
423
+ #: ../classes/settings.php:329
424
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
 
425
  msgstr ""
426
 
427
+ #: ../classes/settings.php:330
428
+ msgid "Usernames"
429
+ msgstr "Noms d'utilisateurs"
430
 
431
+ #: ../classes/settings.php:330
432
+ msgid "Value: can be one or more User ID's (seperated by ',')."
433
+ msgstr ""
434
 
435
+ #: ../classes/settings.php:331
436
+ msgid "Checkmark"
437
+ msgstr "Cocher"
 
 
438
 
439
+ #: ../classes/settings.php:331
440
+ msgid "Value: should be a 1 (one) or 0 (zero)."
441
+ msgstr "Utile : Peut être la valeur un (1) ou zéro (0)."
442
 
443
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
444
+ msgid "Color"
445
+ msgstr "Couleur"
446
 
447
+ #: ../classes/settings.php:332
448
+ msgid "Value: hex value color, such as #808080."
449
+ msgstr "Utile : code couleur en hexadécimal, comme #808080."
450
 
451
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
452
+ msgid "Counter"
453
+ msgstr "Compteur"
454
 
455
+ #: ../classes/settings.php:333
456
+ 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."
457
+ msgstr ""
458
 
459
+ #: ../classes/settings.php:422
460
+ msgid "Welcome to Admin Columns"
461
+ msgstr "Bienvenue dans Admin Columns"
462
 
463
+ #: ../classes/settings.php:425
464
+ msgid "Thank you for updating to the latest version!"
465
+ msgstr "Merci d'avoir mis à jour vers la dernière version!"
466
+
467
+ #: ../classes/settings.php:426
468
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
469
  msgstr ""
470
 
471
+ #: ../classes/settings.php:431
472
+ msgid "What’s New"
473
+ msgstr "Quoi de neuf"
474
 
475
+ #: ../classes/settings.php:432
476
+ msgid "Changelog"
477
+ msgstr "Modifications"
478
 
479
+ #: ../classes/settings.php:437
480
+ msgid "Important"
481
+ msgstr "Important"
 
482
 
483
+ #: ../classes/settings.php:439
484
+ msgid "Database Changes"
485
+ msgstr "Changements dans la base de données"
486
 
487
+ #: ../classes/settings.php:440
488
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
489
+ msgstr "La base de données à été modifiée entre les versions 1 et 2. Mais nous sommes sûr que vous pouvez retourner à la version 1x sans aucun problème."
490
 
491
+ #: ../classes/settings.php:443
492
+ msgid "Make sure you backup your database and then click"
493
+ msgstr "Assurez-vous de sauvegarder votre base de données et cliquez "
494
 
495
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
496
+ msgid "Upgrade Database"
497
+ msgstr "Mettre à jour la base de données"
498
 
499
+ #: ../classes/settings.php:446
500
+ msgid "Potential Issues"
501
+ msgstr "Problèmes potentiels"
502
 
503
+ #: ../classes/settings.php:447
504
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
505
+ msgstr ""
506
 
507
+ #: ../classes/settings.php:447
508
+ msgid "Migrating from v1 to v2"
509
+ msgstr "Migration de la v1 à la v2"
510
 
511
+ #: ../classes/settings.php:447
512
+ msgid "guide to view the full list of changes."
513
+ msgstr "guide pour voir la liste complète des modifications."
514
 
515
+ #: ../classes/settings.php:447
516
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
517
+ msgstr ""
518
 
519
+ #: ../classes/settings.php:450
520
+ msgid "Important!"
521
+ msgstr "Important!"
522
 
523
+ #: ../classes/settings.php:450
524
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
525
+ msgstr ""
526
 
527
+ #: ../classes/settings.php:450
528
+ msgid "version 1"
529
+ msgstr "version 1"
530
 
531
+ #: ../classes/settings.php:450
532
+ msgid "of this plugin."
533
+ msgstr "de ce plugin."
534
 
535
+ #: ../classes/settings.php:456
536
+ msgid "Changelog for"
537
+ msgstr "Nouveautés pour"
 
538
 
539
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
540
+ msgid "Learn more"
541
+ msgstr "En savoir plus"
542
 
543
+ #: ../classes/settings.php:481
544
+ msgid "Start using Admin Columns"
545
+ msgstr "Commencer à utiliser Admin Columns"
546
 
547
+ #: ../classes/settings.php:500
548
+ msgid "General Settings"
549
+ msgstr "Réglages généraux"
550
 
551
+ #: ../classes/settings.php:501
552
+ msgid "Customize your Admin Columns settings."
553
+ msgstr "Personnalisez vos réglages Admin Columns."
554
+
555
+ #: ../classes/settings.php:512
556
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
557
  msgstr ""
558
 
559
+ #: ../classes/settings.php:559
560
+ msgid "Restore Settings"
561
+ msgstr "Rétablir les réglages"
562
 
563
+ #: ../classes/settings.php:560
564
+ msgid "This will delete all column settings and restore the default settings."
565
+ msgstr "Cette opération va supprimer tous les paramètres de colonnes et restaure tous les paramètres par défaut."
566
 
567
+ #: ../classes/settings.php:566
568
+ msgid "Restore default settings"
569
+ msgstr "Restaurer les paramètres par défaut"
570
 
571
+ #: ../classes/settings.php:566
572
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
573
  msgstr ""
574
 
575
+ #: ../classes/settings.php:582
576
+ msgid "Posttypes"
577
+ msgstr "Type d'article"
578
 
579
+ #: ../classes/settings.php:583
580
+ msgid "Others"
581
+ msgstr "Autres"
582
 
583
+ #: ../classes/settings.php:584
584
+ msgid "Taxonomies"
585
+ msgstr "Taxonomie"
586
 
587
+ #: ../classes/settings.php:600
588
+ msgid "Settings"
589
+ msgstr "Réglages"
590
 
591
+ #: ../classes/settings.php:601
592
+ msgid "Add-ons"
593
+ msgstr "Modules"
594
 
595
+ #: ../classes/settings.php:669
596
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
597
+ msgstr ""
598
 
599
+ #: ../classes/settings.php:679
600
+ msgid "Store settings"
601
+ msgstr "Enregistrer les réglages"
 
602
 
603
+ #: ../classes/settings.php:687
604
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
605
+ msgstr ""
 
606
 
607
+ #: ../classes/settings.php:688
608
+ msgid "Restore"
609
+ msgstr "Restaurer"
610
 
611
+ #: ../classes/settings.php:688
612
+ msgid "columns"
613
+ msgstr "colonnes"
614
 
615
+ #: ../classes/settings.php:707
616
+ msgid "Get Admin Columns Pro"
617
  msgstr ""
618
 
619
+ #: ../classes/settings.php:711
620
+ msgid "Add Sorting"
621
+ msgstr "Ajouter le tri"
622
 
623
+ #: ../classes/settings.php:712
624
+ msgid "Add Filtering"
625
+ msgstr "Ajouter le filtrage"
 
 
626
 
627
+ #: ../classes/settings.php:713
628
+ msgid "Add Import/Export"
629
+ msgstr "Ajouter l'import/export"
 
 
630
 
631
+ #: ../classes/settings.php:714
632
+ msgid "Add Direct Editing"
633
+ msgstr "Ajouter la modification directe"
634
+
635
+ #: ../classes/settings.php:717
636
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
637
  msgstr ""
638
 
639
+ #: ../classes/settings.php:730
640
+ msgid "Subscribe to receive news &amp; updates below."
641
  msgstr ""
642
 
643
+ #: ../classes/settings.php:737
644
+ msgid "Your Email"
645
+ msgstr ""
646
 
647
+ #: ../classes/settings.php:748
648
+ msgid "Are you happy with Admin Columns?"
649
+ msgstr ""
650
 
651
+ #: ../classes/settings.php:756
652
+ msgid "What's wrong? Need help? Let us know!"
653
  msgstr ""
654
 
655
+ #: ../classes/settings.php:757
656
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
657
+ msgstr ""
658
 
659
+ #: ../classes/settings.php:765
660
+ msgid "Docs"
661
+ msgstr ""
662
 
663
+ #: ../classes/settings.php:770
664
+ msgid "Forums"
665
+ msgstr ""
666
 
667
+ #: ../classes/settings.php:779
668
+ msgid "Woohoo! We're glad to hear that!"
669
+ msgstr ""
670
 
671
+ #: ../classes/settings.php:780
672
+ 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!"
673
  msgstr ""
674
 
675
+ #: ../classes/settings.php:784
676
+ msgid "Rate"
677
+ msgstr ""
678
 
679
+ #: ../classes/settings.php:795
680
+ msgid "Tweet"
681
  msgstr ""
682
 
683
+ #: ../classes/settings.php:805
684
+ msgid "Buy Pro"
685
  msgstr ""
686
 
687
+ #: ../classes/settings.php:817
688
+ msgid "Support"
689
+ msgstr "Aide"
690
 
691
+ #: ../classes/settings.php:820
692
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
693
+ msgstr ""
694
 
695
+ #: ../classes/settings.php:823
696
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
697
  msgstr ""
698
 
699
+ #: ../classes/settings.php:852
700
+ msgid "Drag and drop to reorder"
701
+ msgstr "Vous pouvez modifier l'ordre."
702
 
703
+ #: ../classes/settings.php:855
704
+ msgid "Add Column"
705
+ msgstr "Ajouter une colonne."
706
 
707
+ #: ../classes/settings.php:936
708
+ msgid "Active"
709
+ msgstr "Actif"
710
 
711
+ #: ../classes/settings.php:937
712
+ msgid "Deactivate"
713
+ msgstr "Désactiver"
714
 
715
+ #: ../classes/settings.php:944
716
+ msgid "Installed"
717
+ msgstr "Installé"
718
 
719
+ #: ../classes/settings.php:945
720
+ msgid "Activate"
721
+ msgstr "Activer"
 
 
 
 
722
 
723
+ #: ../classes/settings.php:959
724
+ msgid "Download & Install"
725
+ msgstr "Télécharger & Installer"
726
 
727
+ #: ../classes/settings.php:964
728
+ msgid "Get this add-on"
729
+ msgstr "Obtenir ce module"
730
 
731
+ #: ../classes/storage_model.php:262
732
+ msgid "settings succesfully restored."
733
+ msgstr "les paramètres ont été restaurés avec succès."
734
 
735
+ #: ../classes/storage_model.php:278
736
+ msgid "No columns settings available."
737
+ msgstr "Aucun paramètre de colonne disponible."
738
 
739
+ #: ../classes/storage_model.php:299
740
+ msgid "You are trying to store the same settings for %s."
741
+ msgstr "Vous essayez de conserver les mêmes paramètres pour %s."
742
 
743
+ #: ../classes/storage_model.php:303
744
+ msgid "Settings for %s updated successfully."
745
  msgstr ""
746
 
747
+ #: ../classes/storage_model.php:643
748
+ msgid "Columns by Plugins"
749
  msgstr ""
750
 
751
+ #: ../classes/storage_model.php:862
752
+ msgid "View"
753
+ msgstr "Voir"
754
 
755
+ #: ../classes/upgrade.php:62
756
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
757
  msgstr ""
758
 
759
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
760
+ msgid "Upgrade"
761
+ msgstr "Mettre à jour"
762
 
763
+ #: ../classes/upgrade.php:136
764
+ msgid "requires a database upgrade"
765
+ msgstr "nécessite une mise à jour de la base de données"
766
 
767
+ #: ../classes/upgrade.php:139
768
+ msgid "why?"
769
+ msgstr "pourquoi?"
770
 
771
+ #: ../classes/upgrade.php:140
772
+ msgid "Please"
773
+ msgstr "Veuillez"
774
 
775
+ #: ../classes/upgrade.php:141
776
+ msgid "backup your database"
777
+ msgstr "sauvegarder votre base de données"
778
 
779
+ #: ../classes/upgrade.php:142
780
+ msgid "then click"
781
+ msgstr "puis cliquer"
782
 
783
+ #: ../classes/upgrade.php:351
784
+ msgid "Migrating Column Settings"
785
+ msgstr "Migration des paramètres de colonne"
786
 
787
+ #: ../classes/upgrade.php:387
788
+ msgid "No Upgrade Required"
789
+ msgstr "Aucune mise à jour n'est nécessaire."
 
790
 
791
+ #: ../classes/upgrade.php:388
792
+ msgid "Return to welcome screen."
793
+ msgstr "Retour à l'écran d'accueil."
794
 
795
+ #: ../classes/upgrade.php:406
796
+ msgid "Upgrade Complete!"
797
+ msgstr "Mise à jour terminée!"
 
798
 
799
+ #: ../classes/upgrade.php:406
800
+ msgid "Return to settings."
801
+ msgstr "Retour aux réglages."
802
 
803
+ #: ../classes/upgrade.php:407
804
+ msgid "Error"
805
+ msgstr "Erreur"
806
 
807
+ #: ../classes/upgrade.php:408
808
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
809
+ msgstr "Désoler. Quelque chose ne c'est pas bien déroulé durant la mise à jour. Veuillez reporter cela au support du forum."
810
 
811
+ #: ../classes/column/acf-placeholder.php:19
812
+ msgid "ACF Field"
813
+ msgstr "Champ ACF"
 
814
 
815
+ #: ../classes/column/acf-placeholder.php:35
816
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
817
  msgstr ""
818
 
819
+ #: ../classes/column/acf-placeholder.php:38
820
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
821
  msgstr ""
822
 
823
+ #: ../classes/column/acf-placeholder.php:44
824
+ msgid "Find out more"
825
+ msgstr "En savoir plus"
826
 
827
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
828
+ msgid "Actions"
829
+ msgstr "Actions"
 
830
 
831
+ #: ../classes/column/actions.php:96
832
+ msgid "Use icons?"
833
  msgstr ""
834
 
835
+ #: ../classes/column/actions.php:96
836
+ msgid "Use icons instead of text for displaying the actions."
837
  msgstr ""
838
 
839
+ #: ../classes/column/custom-field.php:96
840
+ msgid "Checkmark (true/false)"
841
+ msgstr "Cocher (vrai/faux)"
842
 
843
+ #: ../classes/column/custom-field.php:102
844
+ msgid "Media Library"
845
+ msgstr "Bibliothèque des médias"
846
 
847
+ #: ../classes/column/custom-field.php:105
848
+ msgid "Post Title (Post ID's)"
849
+ msgstr "Titre du post (Post ID)"
850
 
851
+ #: ../classes/column/custom-field.php:106
852
+ msgid "Username (User ID's)"
853
+ msgstr "Nom d'utilisateur (ID d'utilisateur)"
 
854
 
855
+ #: ../classes/column/custom-field.php:107
856
+ msgid "Term Name (Term ID's)"
857
+ msgstr ""
858
 
859
+ #: ../classes/column/custom-field.php:391
860
+ msgid "Select your custom field."
861
+ msgstr "Sélectionnez votre champ personnalisé."
862
 
863
+ #: ../classes/column/custom-field.php:401
864
+ msgid "No custom fields available."
865
+ msgstr "Aucun champ personnalisé disponible."
866
 
867
+ #: ../classes/column/custom-field.php:401
868
+ msgid "Please create a %s item first."
869
+ msgstr ""
870
 
871
+ #: ../classes/column/custom-field.php:408
872
+ msgid "Field Type"
873
+ msgstr "Type de champ"
874
 
875
+ #: ../classes/column/custom-field.php:408
876
+ msgid "This will determine how the value will be displayed."
877
+ msgstr "Ceci va déterminer la manière dont la valeur sera affichée."
878
 
879
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
880
+ msgid "Taxonomy"
881
+ msgstr "Taxonomy"
882
 
883
+ #: ../classes/column/used-by-menu.php:20
884
+ msgid "Used by Menu"
885
  msgstr ""
886
 
887
+ #: ../classes/column/used-by-menu.php:133
888
+ msgid "Link to menu"
889
+ msgstr ""
890
 
891
+ #: ../classes/column/used-by-menu.php:133
892
+ msgid "This will make the title link to the menu."
893
  msgstr ""
894
 
895
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
896
+ msgid "ID"
897
+ msgstr "ID"
898
 
899
+ #: ../classes/column/comment/agent.php:19
900
+ msgid "Agent"
901
+ msgstr "Agent"
902
 
903
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
904
+ msgid "Approved"
905
+ msgstr "Approuvé"
906
 
907
+ #: ../classes/column/comment/author-avatar.php:19
908
+ msgid "Avatar"
909
+ msgstr "Avatar"
910
 
911
+ #: ../classes/column/comment/author-email.php:19
912
+ msgid "Author email"
913
+ msgstr "Courriel de l'auteur"
914
 
915
+ #: ../classes/column/comment/author-ip.php:19
916
+ msgid "Author IP"
917
+ msgstr "IP de l'auteur"
918
 
919
+ #: ../classes/column/comment/author-name.php:12
920
+ msgid "Author name"
921
  msgstr ""
922
 
923
+ #: ../classes/column/comment/author-url.php:19
924
+ msgid "Author url"
925
+ msgstr "URL de l'auteur"
 
926
 
927
+ #: ../classes/column/comment/author.php:19
928
+ msgid "Author"
929
+ msgstr "Auteur"
930
 
931
+ #: ../classes/column/comment/date-gmt.php:19
932
+ msgid "Date GMT"
933
+ msgstr "Date GMT"
934
+
935
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
936
+ msgid "Content"
937
  msgstr ""
938
 
939
+ #: ../classes/column/comment/post.php:19
940
+ msgid "Post"
 
 
 
 
941
  msgstr ""
942
 
943
+ #: ../classes/column/comment/reply-to.php:19
944
+ msgid "In Reply To"
945
+ msgstr "En réponse à"
 
 
 
 
 
 
 
 
946
 
947
+ #: ../classes/column/comment/user.php:11
948
+ msgid "User"
949
  msgstr ""
950
 
951
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
952
+ msgid "Word count"
953
+ msgstr "Nombre de mots"
954
 
955
+ #: ../classes/column/media/alternate-text.php:19
956
+ msgid "Alt"
957
+ msgstr "Texte alternatif"
958
 
959
+ #: ../classes/column/media/attached-to.php:19
960
+ msgid "Attached to post"
961
  msgstr ""
962
 
963
+ #: ../classes/column/media/available-sizes.php:20
964
+ msgid "Available Sizes"
965
+ msgstr "Tailles disponibles"
 
 
 
 
 
 
 
 
 
 
 
 
966
 
967
+ #: ../classes/column/media/available-sizes.php:40
968
+ msgid "full size"
969
+ msgstr "Taille réelle"
970
 
971
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
972
+ msgid "Caption"
973
+ msgstr "Légende"
974
 
975
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
976
+ msgid "Description"
977
+ msgstr "Description"
978
 
979
+ #: ../classes/column/media/dimensions.php:19
980
+ msgid "Dimensions"
981
+ msgstr "Dimensions"
982
 
983
+ #: ../classes/column/media/exif-data.php:19
984
+ msgid "EXIF data"
985
+ msgstr "Données EXIF"
986
 
987
+ #: ../classes/column/media/exif-data.php:38
988
+ msgid "Aperture"
989
+ msgstr "Ouverture"
990
 
991
+ #: ../classes/column/media/exif-data.php:39
992
+ msgid "Credit"
993
+ msgstr "Crédit"
994
 
995
+ #: ../classes/column/media/exif-data.php:40
996
+ msgid "Camera"
997
+ msgstr "Appareil photo"
 
998
 
999
+ #: ../classes/column/media/exif-data.php:42
1000
+ msgid "Timestamp"
1001
+ msgstr "Horodateur"
1002
 
1003
+ #: ../classes/column/media/exif-data.php:43
1004
+ msgid "Copyright EXIF"
1005
+ msgstr "Copyright EXIF"
1006
 
1007
+ #: ../classes/column/media/exif-data.php:44
1008
+ msgid "Focal Length"
1009
+ msgstr "Distance focale"
1010
 
1011
+ #: ../classes/column/media/exif-data.php:45
1012
+ msgid "ISO"
1013
+ msgstr "ISO"
1014
 
1015
+ #: ../classes/column/media/exif-data.php:46
1016
+ msgid "Shutter Speed"
1017
+ msgstr "Vitesse d'obturation"
1018
 
1019
+ #: ../classes/column/media/exif-data.php:47
1020
+ msgid "Title"
1021
+ msgstr "Titre"
1022
 
1023
+ #: ../classes/column/media/file-name.php:19
1024
+ msgid "File name"
1025
+ msgstr "Nom du fichier"
1026
 
1027
+ #: ../classes/column/media/file-size.php:19
1028
+ msgid "File size"
1029
+ msgstr "Taille du fichier"
1030
 
1031
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1032
+ msgid "Full path"
1033
+ msgstr "Chemin d'accès complet"
1034
 
1035
+ #: ../classes/column/media/full-path.php:83
1036
+ msgid "Path scope"
1037
  msgstr ""
1038
 
1039
+ #: ../classes/column/media/full-path.php:84
1040
+ msgid "Part of the file path to display"
1041
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1042
 
1043
+ #: ../classes/column/media/full-path.php:97
1044
+ msgid "Relative to domain"
1045
+ msgstr ""
1046
 
1047
+ #: ../classes/column/media/full-path.php:102
1048
+ msgid "Relative to main uploads folder "
1049
+ msgstr ""
1050
 
1051
+ #: ../classes/column/media/height.php:19
1052
+ msgid "Height"
1053
+ msgstr "Hauteur"
1054
 
1055
+ #: ../classes/column/media/mime-type.php:19
1056
+ msgid "Mime type"
1057
+ msgstr "Type Mime"
1058
 
1059
+ #: ../classes/column/post/attachment-count.php:19
1060
+ msgid "No. of Attachments"
1061
+ msgstr "Nombre de pièces jointes"
1062
 
1063
+ #: ../classes/column/post/attachment.php:19
1064
+ msgid "Attachments"
 
1065
  msgstr ""
1066
 
1067
+ #: ../classes/column/post/author-name.php:20
1068
+ msgid "Display Author As"
1069
+ msgstr "Afficher l'auteur comme"
 
 
 
 
1070
 
1071
+ #: ../classes/column/post/author-name.php:100
1072
+ msgid "View Public Author Page"
 
1073
  msgstr ""
1074
 
1075
+ #: ../classes/column/post/author-name.php:102
1076
+ msgid "Page the author name should link to."
 
 
 
 
 
 
 
 
1077
  msgstr ""
1078
 
1079
+ #: ../classes/column/post/before-moretag.php:19
1080
+ msgid "Before More Tag"
1081
+ msgstr "Avant plus de balise"
 
 
 
 
1082
 
1083
+ #: ../classes/column/post/comment-count.php:20
1084
+ msgid "Comment count"
1085
+ msgstr "Nombre de commentaires"
1086
 
1087
+ #: ../classes/column/post/comment-count.php:34
1088
+ msgid "Total"
1089
+ msgstr "Total"
1090
 
1091
+ #: ../classes/column/post/comment-count.php:36
1092
+ msgid "Pending"
1093
+ msgstr "En attente"
 
1094
 
1095
+ #: ../classes/column/post/comment-count.php:37
1096
+ msgid "Spam"
1097
+ msgstr "Indésirable"
1098
 
1099
+ #: ../classes/column/post/comment-count.php:38
1100
+ msgid "Trash"
1101
+ msgstr "Corbeille"
1102
 
1103
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1104
+ msgid "Comment status"
1105
+ msgstr "Status de commentaire"
1106
 
1107
+ #: ../classes/column/post/comment-count.php:99
1108
+ msgid "Select which comment status you like to display."
1109
+ msgstr "Sélectionnez quel commentaire voulez-vous afficher."
1110
 
1111
+ #: ../classes/column/post/depth.php:19
1112
+ msgid "Depth"
1113
  msgstr ""
1114
 
1115
+ #: ../classes/column/post/estimated-reading-time.php:19
1116
+ msgid "Estimated Reading Time"
1117
  msgstr ""
1118
 
1119
+ #: ../classes/column/post/estimated-reading-time.php:66
1120
+ msgid "second"
1121
+ msgid_plural "seconds"
1122
+ msgstr[0] ""
1123
+ msgstr[1] ""
1124
 
1125
+ #: ../classes/column/post/estimated-reading-time.php:69
1126
+ msgid "minute"
1127
+ msgid_plural "minutes"
1128
+ msgstr[0] ""
1129
+ msgstr[1] ""
1130
 
1131
+ #: ../classes/column/post/estimated-reading-time.php:107
1132
+ msgid "Words per minute"
1133
  msgstr ""
1134
 
1135
+ #: ../classes/column/post/estimated-reading-time.php:108
1136
+ msgid "Estimated reading time in words per minute"
1137
  msgstr ""
1138
 
1139
+ #: ../classes/column/post/featured-image.php:19
1140
+ msgid "Featured Image"
1141
+ msgstr "Image à la Une"
1142
 
1143
+ #: ../classes/column/post/formats.php:19
1144
+ msgid "Post Format"
1145
+ msgstr "Format de post"
1146
 
1147
+ #: ../classes/column/post/last-modified-author.php:20
1148
+ msgid "Last Modified Author"
 
1149
  msgstr ""
1150
 
1151
+ #: ../classes/column/post/modified.php:19
1152
+ msgid "Last modified"
1153
+ msgstr "Dernière modification"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1154
 
1155
+ #: ../classes/column/post/order.php:19
1156
+ msgid "Order"
1157
+ msgstr ""
1158
 
1159
+ #: ../classes/column/post/page-template.php:19
1160
+ msgid "Page Template"
1161
+ msgstr "Modèle de page"
1162
 
1163
+ #: ../classes/column/post/parent.php:19
1164
+ msgid "Parent"
1165
+ msgstr "Parent"
1166
 
1167
+ #: ../classes/column/post/path.php:19
1168
+ msgid "Path"
1169
+ msgstr ""
1170
 
1171
+ #: ../classes/column/post/permalink.php:19
1172
+ msgid "Permalink"
1173
+ msgstr "Permalien"
1174
 
1175
+ #: ../classes/column/post/permalink.php:68
1176
+ msgid "Link to post"
1177
+ msgstr ""
 
1178
 
1179
+ #: ../classes/column/post/permalink.php:68
1180
+ msgid "This will make the permalink clickable."
 
1181
  msgstr ""
1182
 
1183
+ #: ../classes/column/post/ping-status.php:19
1184
+ msgid "Ping status"
1185
+ msgstr "Status du ping"
1186
 
1187
+ #: ../classes/column/post/roles.php:19
1188
+ msgid "Roles"
1189
+ msgstr "Rôles"
1190
 
1191
+ #: ../classes/column/post/shortcodes.php:19
1192
+ msgid "Shortcodes"
1193
  msgstr ""
1194
 
1195
+ #: ../classes/column/post/slug.php:19
1196
+ msgid "Slug"
1197
+ msgstr "Slug"
 
 
 
 
1198
 
1199
+ #: ../classes/column/post/status.php:21
1200
+ msgid "Status"
1201
+ msgstr "Status"
1202
 
1203
+ #: ../classes/column/post/sticky.php:19
1204
+ msgid "Sticky"
1205
+ msgstr "Attaché"
1206
 
1207
+ #: ../classes/column/post/title-raw.php:19
1208
+ msgid "Title without actions"
1209
  msgstr ""
1210
 
1211
+ #: ../classes/column/link/length.php:19
1212
+ msgid "Length"
1213
+ msgstr "Longueur"
 
 
 
 
1214
 
1215
+ #: ../classes/column/link/notes.php:19
1216
+ msgid "Notes"
1217
+ msgstr "Notes"
1218
 
1219
+ #: ../classes/column/link/owner.php:19
1220
+ msgid "Owner"
1221
+ msgstr "Propriétaire"
1222
 
1223
+ #: ../classes/column/link/rss.php:19
1224
+ msgid "Rss"
1225
+ msgstr "Rss"
1226
 
1227
+ #: ../classes/column/link/target.php:19
1228
+ msgid "Target"
1229
+ msgstr "Cible"
1230
 
1231
+ #: ../classes/column/user/display-name.php:19
1232
+ msgid "Display name"
1233
+ msgstr ""
1234
 
1235
+ #: ../classes/column/user/first-name.php:19
1236
+ msgid "First name"
1237
+ msgstr "Prénom"
1238
 
1239
+ #: ../classes/column/user/last-name.php:19
1240
+ msgid "Last name"
1241
+ msgstr "Nom"
1242
 
1243
+ #: ../classes/column/user/post-count.php:19
1244
+ msgid "Post Count"
1245
+ msgstr "Nombre d'article"
1246
 
1247
+ #: ../classes/column/user/post-count.php:89
1248
+ msgid "Post Type"
1249
+ msgstr "Type d'article"
1250
 
1251
+ #: ../classes/column/user/registered.php:19
1252
+ msgid "Registered"
1253
+ msgstr "Inscrit"
1254
 
1255
+ #: ../classes/column/user/rich-editing.php:19
1256
+ msgid "Visual Editor"
1257
+ msgstr ""
1258
 
1259
+ #: ../classes/column/user/url.php:19
1260
+ msgid "Url"
1261
+ msgstr "URL"
languages/codepress-admin-columns-hu_HU.mo ADDED
Binary file
languages/{cpac-hu_HU.po → codepress-admin-columns-hu_HU.po} RENAMED
@@ -1,32 +1,31 @@
1
- #
 
2
  # Translators:
3
  # tpr <tproli@gmail.com>, 2014
4
  # tpr <tproli@gmail.com>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
10
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/admin-columns/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: hu_HU\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.8.1\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
- "X-Poedit-SearchPathExcluded-0: ../src\n"
25
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
@@ -48,1253 +47,1210 @@ msgstr ""
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr ""
50
 
51
- #: ../classes/column.php:597
52
  msgid "Thumbnail"
53
  msgstr "Bélyegkép"
54
 
55
- #: ../classes/column.php:598
56
  msgid "Medium"
57
  msgstr "Közepes"
58
 
59
- #: ../classes/column.php:599
60
  msgid "Large"
61
  msgstr "Nagy"
62
 
63
- #: ../classes/column.php:600
64
  msgid "Full"
65
  msgstr "Teljes méretű"
66
 
67
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "Date Format"
69
  msgstr "Dátumformátum"
70
 
71
- #: ../classes/column.php:1042
72
  msgid "This will determine how the date will be displayed."
73
  msgstr "Meghatározza, hogy fog a dátum megjelenni."
74
 
75
- #: ../classes/column.php:1048
76
  msgid "Example:"
77
  msgstr "Például:"
78
 
79
- #: ../classes/column.php:1050
80
- #, php-format
81
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
82
- msgstr "Hagyd üresen a WordPress dátumformátumának használatához, vagy változtasd meg saját formátumra <a href=\"%s\">ide kattintva</a>."
83
 
84
- #: ../classes/column.php:1051
85
  msgid "Documentation on date and time formatting."
86
  msgstr "Dokumentáció a dátum- és időformátumokhoz."
87
 
88
- #: ../classes/column.php:1065
89
  msgid "Excerpt length"
90
  msgstr "Kivonat hossza"
91
 
92
- #: ../classes/column.php:1066
93
  msgid "Number of words"
94
  msgstr "Szavak száma"
95
 
96
- #: ../classes/column.php:1084
97
  msgid "Preview size"
98
  msgstr "Előnézet mérete"
99
 
100
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
101
  msgid "Custom"
102
  msgstr "Egyedi"
103
 
104
- #: ../classes/column.php:1104 ../classes/column.php:1251
105
  msgid "width"
106
  msgstr "szélesség"
107
 
108
- #: ../classes/column.php:1107
109
  msgid "height"
110
  msgstr "magasság"
111
 
112
- #: ../classes/column.php:1119
113
  msgid "Before"
114
  msgstr "Előtte"
115
 
116
- #: ../classes/column.php:1119
117
  msgid "This text will appear before the custom field value."
118
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke előtt."
119
 
120
- #: ../classes/column.php:1120
121
  msgid "After"
122
  msgstr "Utána"
123
 
124
- #: ../classes/column.php:1120
125
  msgid "This text will appear after the custom field value."
126
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke után."
127
 
128
- #: ../classes/column.php:1129
129
  msgid "Display Name"
130
  msgstr "Megjelenő név"
131
 
132
- #: ../classes/column.php:1130
133
  msgid "First Name"
134
  msgstr "Utónév"
135
 
136
- #: ../classes/column.php:1131
137
  msgid "Last Name"
138
  msgstr "Vezetéknév"
139
 
140
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
141
  msgid "Nickname"
142
  msgstr "Becenév"
143
 
144
- #: ../classes/column.php:1133
145
  msgid "User Login"
146
  msgstr "Felhasználó bejelentkezés"
147
 
148
- #: ../classes/column.php:1134
149
  msgid "User Email"
150
  msgstr "Felhasználó email"
151
 
152
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
153
  msgid "User ID"
154
  msgstr "Felhasználó ID "
155
 
156
- #: ../classes/column.php:1136
157
  msgid "First and Last Name"
158
  msgstr "Elő- és utónév"
159
 
160
- #: ../classes/column.php:1139
161
  msgid "Display format"
162
  msgstr ""
163
 
164
- #: ../classes/column.php:1139
165
  msgid "This is the format of the author name."
166
  msgstr "Ez a szerző nevének formátuma"
167
 
168
- #: ../classes/column.php:1273
169
  msgid "Edit"
170
  msgstr "Szerkesztés"
171
 
172
- #: ../classes/column.php:1275 ../classes/column.php:1367
173
  msgid "Clone"
174
  msgstr ""
175
 
176
- #: ../classes/column.php:1277 ../classes/column.php:1369
177
  msgid "Remove"
178
  msgstr "Eltávolítás"
179
 
180
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
181
  msgid "Type"
182
  msgstr "Típus"
183
 
184
- #: ../classes/column.php:1295
185
  msgid "Choose a column type."
186
  msgstr "Válassz egy oszloptípust."
187
 
188
- #: ../classes/column.php:1295
189
  msgid "Name"
190
  msgstr ""
191
 
192
- #: ../classes/column.php:1305
193
  msgid "Label"
194
  msgstr "Címke"
195
 
196
- #: ../classes/column.php:1305
197
  msgid "This is the name which will appear as the column header."
198
  msgstr "Ez a név fog megjelenni az oszlop fejlécében."
199
 
200
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
201
  msgid "Width"
202
  msgstr "Szélesség"
203
 
204
- #: ../classes/column.php:1314
205
  msgid "default"
206
  msgstr "alapértelmezett"
207
 
208
- #: ../classes/column.php:1315
209
  msgid "auto"
210
  msgstr ""
211
 
212
- #: ../classes/column/acf-placeholder.php:19
213
- msgid "ACF Field"
214
  msgstr ""
215
 
216
- #: ../classes/column/acf-placeholder.php:32
217
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
218
  msgstr ""
219
 
220
- #: ../classes/column/acf-placeholder.php:35
221
- #, php-format
222
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
223
  msgstr ""
224
 
225
- #: ../classes/column/acf-placeholder.php:38
226
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
227
  msgstr ""
228
 
229
- #: ../classes/column/acf-placeholder.php:44
230
- msgid "Find out more"
231
  msgstr ""
232
 
233
- #: ../classes/column/actions.php:29
234
- msgid "Actions"
235
- msgstr "Műveletek"
236
 
237
- #: ../classes/column/actions.php:96
238
- msgid "Use icons?"
 
 
 
 
239
  msgstr ""
240
 
241
- #: ../classes/column/actions.php:96
242
- msgid "Use icons instead of text for displaying the actions."
243
  msgstr ""
244
 
245
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
246
- msgid "Yes"
247
  msgstr ""
248
 
249
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
250
- msgid "No"
251
  msgstr ""
252
 
253
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
254
- msgid "ID"
255
- msgstr "ID"
256
 
257
- #: ../classes/column/comment/agent.php:19
258
- msgid "Agent"
259
- msgstr "Ügynök"
260
 
261
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
262
- msgid "Approved"
263
- msgstr "Jóváhagyva"
264
 
265
- #: ../classes/column/comment/author-avatar.php:19
266
- msgid "Avatar"
267
- msgstr "Avatar"
268
 
269
- #: ../classes/column/comment/author-email.php:19
270
- msgid "Author email"
271
- msgstr "Szerző email-je"
272
 
273
- #: ../classes/column/comment/author-ip.php:19
274
- msgid "Author IP"
275
- msgstr "Szerző IP-je"
276
 
277
- #: ../classes/column/comment/author-name.php:12
278
- msgid "Author name"
279
  msgstr ""
280
 
281
- #: ../classes/column/comment/author-url.php:19
282
- msgid "Author url"
283
- msgstr "Szerző URL-je"
284
 
285
- #: ../classes/column/comment/author.php:19
286
- msgid "Author"
287
- msgstr "Szerző"
288
 
289
- #: ../classes/column/comment/date-gmt.php:19
290
- msgid "Date GMT"
291
- msgstr "GMT dátum"
292
 
293
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
294
- #, php-format
295
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
296
- msgstr "Beküldve: <a href=\"%1$s\">%2$s, %3$s</a>"
297
 
298
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
299
- msgid "Date"
300
- msgstr "Dátum"
301
 
302
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
303
- msgid "Content"
304
- msgstr ""
305
 
306
- #: ../classes/column/comment/reply-to.php:19
307
- msgid "In Reply To"
308
- msgstr "Válaszolva erre:"
309
 
310
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
311
- msgid "User"
312
- msgstr ""
313
 
314
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
315
- msgid "Word count"
316
- msgstr "Szavak száma"
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
 
 
 
 
 
 
 
 
319
  msgid "Custom Field"
320
  msgstr "Egyedi mező"
321
 
322
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
323
  msgid "Default"
324
  msgstr "Alapértelmezett"
325
 
326
- #: ../classes/column/custom-field.php:95
327
- msgid "Checkmark (true/false)"
328
- msgstr "Pipa (igaz/hamis)"
329
 
330
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
331
- msgid "Color"
332
- msgstr "Szín"
333
 
334
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
335
- msgid "Counter"
336
- msgstr "Számláló"
337
 
338
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
339
  msgid "Excerpt"
340
  msgstr "Kivonat"
341
 
342
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
343
- msgid "Image"
344
- msgstr "Kép"
345
-
346
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
347
- msgid "Media Library"
348
- msgstr "Médiatár"
349
 
350
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
351
  msgid "Multiple Values"
352
  msgstr "Többszörös érték"
353
 
354
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
355
  msgid "Numeric"
356
  msgstr "Numerikus"
357
 
358
- #: ../classes/column/custom-field.php:104
359
- msgid "Post Title (Post ID's)"
360
- msgstr "Bejegyzés címe (bejegyzés ID)"
361
 
362
- #: ../classes/column/custom-field.php:105
363
- msgid "Username (User ID's)"
364
- msgstr "Felhasználónév (Felhasználó ID)"
365
 
366
- #: ../classes/column/custom-field.php:106
367
- msgid "Term Name (Term ID's)"
368
- msgstr ""
369
 
370
- #: ../classes/column/custom-field.php:390
371
- msgid "Select your custom field."
372
- msgstr "Válassz egyedi mezőt."
373
 
374
- #: ../classes/column/custom-field.php:400
375
- msgid "No custom fields available."
376
- msgstr "Nincsenek egyedi mezők."
377
 
378
- #: ../classes/column/custom-field.php:400
379
- #, php-format
380
- msgid "Please create a %s item first."
381
- msgstr ""
382
 
383
- #: ../classes/column/custom-field.php:407
384
- msgid "Field Type"
385
- msgstr "Mező típusa"
386
 
387
- #: ../classes/column/custom-field.php:407
388
- msgid "This will determine how the value will be displayed."
389
- msgstr "Meghatározza, hogy fog az érték megjelenni."
390
 
391
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
392
- msgid "Description"
393
- msgstr "Leírás"
394
 
395
- #: ../classes/column/link/length.php:19
396
- msgid "Length"
397
- msgstr "Hossz"
398
 
399
- #: ../classes/column/link/notes.php:19
400
- msgid "Notes"
401
- msgstr "Megjegyzések"
402
 
403
- #: ../classes/column/link/owner.php:19
404
- msgid "Owner"
405
- msgstr "Tulajdonos"
406
 
407
- #: ../classes/column/link/rss.php:19
408
- msgid "Rss"
409
- msgstr "RSS"
410
 
411
- #: ../classes/column/link/target.php:19
412
- msgid "Target"
413
- msgstr "Cél"
414
 
415
- #: ../classes/column/media/alternate-text.php:19
416
- msgid "Alt"
417
- msgstr "Alt"
418
 
419
- #: ../classes/column/media/attached-to.php:19
420
- msgid "Attached to post"
421
- msgstr ""
422
 
423
- #: ../classes/column/media/available-sizes.php:20
424
- msgid "Available Sizes"
425
- msgstr "Elérhető méretek"
426
 
427
- #: ../classes/column/media/available-sizes.php:40
428
- msgid "full size"
429
- msgstr "teljes méret"
430
 
431
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
432
- msgid "Caption"
433
- msgstr "Kép felirata"
434
 
435
- #: ../classes/column/media/dimensions.php:19
436
- msgid "Dimensions"
437
- msgstr "Kép kiterjedése"
438
 
439
- #: ../classes/column/media/exif-data.php:19
440
- msgid "EXIF data"
441
- msgstr "EXIF adato"
442
 
443
- #: ../classes/column/media/exif-data.php:38
444
- msgid "Aperture"
445
- msgstr "Rekesz"
446
 
447
- #: ../classes/column/media/exif-data.php:39
448
- msgid "Credit"
449
- msgstr "Érdem"
450
 
451
- #: ../classes/column/media/exif-data.php:40
452
- msgid "Camera"
453
- msgstr "Fényképezőgép"
454
 
455
- #: ../classes/column/media/exif-data.php:42
456
- msgid "Timestamp"
457
- msgstr "Időbélyeg"
458
 
459
- #: ../classes/column/media/exif-data.php:43
460
- msgid "Copyright EXIF"
461
- msgstr "EXIF szerzői jog"
462
 
463
- #: ../classes/column/media/exif-data.php:44
464
- msgid "Focal Length"
465
- msgstr "Fókusztávolság"
466
 
467
- #: ../classes/column/media/exif-data.php:45
468
- msgid "ISO"
469
- msgstr "ISO"
470
 
471
- #: ../classes/column/media/exif-data.php:46
472
- msgid "Shutter Speed"
473
- msgstr "Zársebesség"
474
 
475
- #: ../classes/column/media/exif-data.php:47
476
- msgid "Title"
477
- msgstr "Cím"
478
 
479
- #: ../classes/column/media/file-name.php:19
480
- msgid "File name"
481
- msgstr "Fájlnév"
482
 
483
- #: ../classes/column/media/file-size.php:19
484
- msgid "File size"
485
- msgstr "Fájlméret"
486
 
487
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
488
- msgid "Full path"
489
- msgstr "Teljes útvonal"
490
 
491
- #: ../classes/column/media/full-path.php:83
492
- msgid "Path scope"
493
- msgstr ""
494
 
495
- #: ../classes/column/media/full-path.php:84
496
- msgid "Part of the file path to display"
497
- msgstr ""
498
 
499
- #: ../classes/column/media/full-path.php:97
500
- msgid "Relative to domain"
501
- msgstr ""
502
 
503
- #: ../classes/column/media/full-path.php:102
504
- msgid "Relative to main uploads folder "
 
 
 
 
505
  msgstr ""
506
 
507
- #: ../classes/column/media/height.php:19
508
- msgid "Height"
509
- msgstr "Magasság"
510
 
511
- #: ../classes/column/media/mime-type.php:19
512
- msgid "Mime type"
513
- msgstr "Mime típus"
514
 
515
- #: ../classes/column/post/attachment-count.php:19
516
- msgid "No. of Attachments"
517
- msgstr "Csatolmányok száma"
518
 
519
- #: ../classes/column/post/attachment.php:19
520
- msgid "Attachments"
521
  msgstr ""
522
 
523
- #: ../classes/column/post/author-name.php:20
524
- msgid "Display Author As"
525
- msgstr "Szerző megjelenítése mint"
526
 
527
- #: ../classes/column/post/before-moretag.php:19
528
- msgid "Before More Tag"
529
- msgstr "A \"További\" címke előtti rész"
530
 
531
- #: ../classes/column/post/comment-count.php:20
532
- msgid "Comment count"
533
- msgstr "Hozzászólások száma"
534
 
535
- #: ../classes/column/post/comment-count.php:34
536
- msgid "Total"
537
- msgstr "Összesen"
538
 
539
- #: ../classes/column/post/comment-count.php:36
540
- msgid "Pending"
541
- msgstr "Folyamatban"
542
 
543
- #: ../classes/column/post/comment-count.php:37
544
- msgid "Spam"
545
- msgstr "Levélszemét"
546
 
547
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
548
- msgid "Trash"
549
- msgstr "Kuka"
550
 
551
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
552
- msgid "Comment status"
553
- msgstr "Hozzászólás státusza"
554
 
555
- #: ../classes/column/post/comment-count.php:99
556
- msgid "Select which comment status you like to display."
557
- msgstr "Válasz ki, melyik hozzászólás státuszt szeretnéd megjeleníteni."
558
 
559
- #: ../classes/column/post/date-published.php:17
560
- msgid "Date Published"
561
- msgstr ""
562
 
563
- #: ../classes/column/post/depth.php:19
564
- msgid "Depth"
565
  msgstr ""
566
 
567
- #: ../classes/column/post/estimated-reading-time.php:19
568
- msgid "Estimated Reading Time"
569
- msgstr ""
570
 
571
- #: ../classes/column/post/estimated-reading-time.php:63
572
- msgid "second"
573
- msgid_plural "seconds"
574
- msgstr[0] ""
575
- msgstr[1] ""
576
 
577
- #: ../classes/column/post/estimated-reading-time.php:66
578
- msgid "minute"
579
- msgid_plural "minutes"
580
- msgstr[0] ""
581
- msgstr[1] ""
582
 
583
- #: ../classes/column/post/estimated-reading-time.php:103
584
- msgid "Words per minute"
585
  msgstr ""
586
 
587
- #: ../classes/column/post/estimated-reading-time.php:104
588
- msgid "Estimated reading time in words per minute"
589
  msgstr ""
590
 
591
- #: ../classes/column/post/featured-image.php:19
592
- msgid "Featured Image"
593
- msgstr "Kiemelt kép"
594
-
595
- #: ../classes/column/post/formats.php:19
596
- msgid "Post Format"
597
- msgstr "Bejegyzés formátum"
598
-
599
- #: ../classes/column/post/last-modified-author.php:20
600
- msgid "Last Modified Author"
601
  msgstr ""
602
 
603
- #: ../classes/column/post/modified.php:19
604
- msgid "Last modified"
605
- msgstr "Utoljára módosítva"
606
 
607
- #: ../classes/column/post/order.php:19
608
- msgid "Page Order"
609
- msgstr "Sorrend megváltoztatása"
610
 
611
- #: ../classes/column/post/page-template.php:19
612
- msgid "Page Template"
613
- msgstr "Oldal sablon"
614
 
615
- #: ../classes/column/post/parent.php:19
616
- msgid "Parent"
617
- msgstr "Szülő"
618
 
619
- #: ../classes/column/post/path.php:19
620
- msgid "Path"
621
  msgstr ""
622
 
623
- #: ../classes/column/post/permalink.php:19
624
- msgid "Permalink"
625
  msgstr ""
626
 
627
- #: ../classes/column/post/permalink.php:68
628
- msgid "Link to post"
629
  msgstr ""
630
 
631
- #: ../classes/column/post/permalink.php:68
632
- msgid "This will make the permalink clickable."
633
  msgstr ""
634
 
635
- #: ../classes/column/post/ping-status.php:19
636
- msgid "Ping status"
637
- msgstr "Ping státusz"
638
 
639
- #: ../classes/column/post/roles.php:19
640
- msgid "Roles"
641
- msgstr "Jogkörök"
642
 
643
- #: ../classes/column/post/shortcodes.php:19
644
- msgid "Shortcodes"
645
  msgstr ""
646
 
647
- #: ../classes/column/post/slug.php:19
648
- msgid "Slug"
649
- msgstr "Keresőbarát név/slug"
650
 
651
- #: ../classes/column/post/status.php:19
652
- msgid "Status"
653
- msgstr "Státusz"
654
 
655
- #: ../classes/column/post/status.php:29
656
- msgid "Published"
657
- msgstr "Közzétéve"
658
 
659
- #: ../classes/column/post/status.php:30
660
- msgid "Draft"
661
- msgstr "Vázlat"
662
 
663
- #: ../classes/column/post/status.php:31
664
- msgid "Scheduled"
665
- msgstr "Időzítve"
666
 
667
- #: ../classes/column/post/status.php:32
668
- msgid "Private"
669
- msgstr "Magánjellegű"
670
 
671
- #: ../classes/column/post/status.php:33
672
- msgid "Pending Review"
673
- msgstr "Jóváhagyás alatt"
674
 
675
- #: ../classes/column/post/status.php:34
676
- msgid "Auto Draft"
677
  msgstr ""
678
 
679
- #: ../classes/column/post/sticky.php:19
680
- msgid "Sticky"
681
- msgstr "Ragadós"
682
-
683
- #: ../classes/column/post/title-raw.php:19
684
- msgid "Title without actions"
685
  msgstr ""
686
 
687
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
688
- msgid "Taxonomy"
689
- msgstr "Taxonómia"
690
-
691
- #: ../classes/column/used-by-menu.php:20
692
- msgid "Used by Menu"
693
  msgstr ""
694
 
695
- #: ../classes/column/used-by-menu.php:133
696
- msgid "Link to menu"
697
  msgstr ""
698
 
699
- #: ../classes/column/used-by-menu.php:133
700
- msgid "This will make the title link to the menu."
701
- msgstr ""
702
 
703
- #: ../classes/column/user/comment-count.php:19
704
- msgid "Comment Count"
705
- msgstr "Hozzászólások száma"
706
 
707
- #: ../classes/column/user/display-name.php:19
708
- msgid "Display name"
 
 
 
 
709
  msgstr ""
710
 
711
- #: ../classes/column/user/first-name.php:19
712
- msgid "First name"
713
- msgstr "Utónév"
714
 
715
- #: ../classes/column/user/last-name.php:19
716
- msgid "Last name"
717
- msgstr "Vezetéknév"
718
 
719
- #: ../classes/column/user/post-count.php:19
720
- msgid "Post Count"
721
- msgstr "Bejegyzések száma"
722
 
723
- #: ../classes/column/user/post-count.php:89
724
- msgid "Post Type"
725
- msgstr "Bejegyzés típus"
726
 
727
- #: ../classes/column/user/registered.php:19
728
- msgid "Registered"
729
- msgstr "Feliratkozott"
730
 
731
- #: ../classes/column/user/rich-editing.php:19
732
- msgid "Visual Editor"
733
- msgstr ""
734
 
735
- #: ../classes/column/user/url.php:19
736
- msgid "Url"
737
- msgstr "URL"
738
 
739
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
740
- msgid "Admin Columns"
741
- msgstr "Admin Columns"
742
 
743
- #: ../classes/review_notice.php:58
744
- msgid "Admin Columns Pro"
745
- msgstr ""
746
 
747
- #: ../classes/review_notice.php:65
748
- #, php-format
749
- msgid ""
750
- "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 "
751
- "%s, please %s."
752
- msgstr ""
753
 
754
- #: ../classes/review_notice.php:68
755
- msgid "click here"
756
- msgstr ""
757
 
758
- #: ../classes/review_notice.php:72
759
- msgid "Leave a review!"
760
- msgstr ""
761
 
762
- #: ../classes/review_notice.php:73
763
- msgid "Permanently hide notice"
764
- msgstr ""
765
 
766
- #: ../classes/review_notice.php:80
767
- #, php-format
768
- 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."
769
- msgstr ""
770
 
771
- #: ../classes/review_notice.php:82
772
- msgid "documentation page"
773
- msgstr ""
774
 
775
- #: ../classes/review_notice.php:86
776
- #, php-format
777
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
778
- msgstr ""
779
 
780
- #: ../classes/review_notice.php:87
781
- msgid "our forums"
782
  msgstr ""
783
 
784
- #: ../classes/review_notice.php:91
785
- #, php-format
786
- msgid "You can also find help on the %s, and %s."
787
  msgstr ""
788
 
789
- #: ../classes/review_notice.php:92
790
- msgid "Admin Columns forums on WordPress.org"
791
  msgstr ""
792
 
793
- #: ../classes/review_notice.php:93
794
- msgid "find answers to some frequently asked questions"
795
  msgstr ""
796
 
797
- #: ../classes/settings.php:112
798
- msgid "Add-on successfully activated."
799
- msgstr ""
800
 
801
- #: ../classes/settings.php:115
802
- msgid "Add-on successfully deactivated."
803
  msgstr ""
804
 
805
- #: ../classes/settings.php:170
806
- msgid "Admin Columns Settings"
807
- msgstr "Admin Columns beállítások"
808
-
809
- #: ../classes/settings.php:220
810
- #, php-format
811
- msgid "%s column is already present and can not be duplicated."
812
- msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
813
-
814
- #: ../classes/settings.php:274
815
- msgid "Default settings succesfully restored."
816
- msgstr "Alapértelmezett beállítások sikeresen visszaállítva."
817
-
818
- #: ../classes/settings.php:291
819
- msgid "Overview"
820
- msgstr "Áttekintés"
821
-
822
- #: ../classes/settings.php:294
823
- 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."
824
- msgstr "A plugin segítségével további oszlopokat lehet hozzáadni bejegyzések (egyedi bejegyzéstípusok), oldalak, médiatár, hivatkozások és felhasználók adminisztrációs felületekhez."
825
-
826
- #: ../classes/settings.php:297
827
- msgid "Basics"
828
- msgstr "Alapok"
829
-
830
- #: ../classes/settings.php:299
831
- msgid "Change order"
832
- msgstr "Sorrend megváltoztatása"
833
-
834
- #: ../classes/settings.php:300
835
- msgid "By dragging the columns you can change the order which they will appear in."
836
- msgstr "Az oszlopok más helyre húzásával lehet változtatni az oszlopok sorrendjén."
837
-
838
- #: ../classes/settings.php:301
839
- msgid "Change label"
840
- msgstr "Címke megváltoztatása"
841
-
842
- #: ../classes/settings.php:302
843
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
844
- msgstr "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet módosítani az oszlopok fejléceinek neveit."
845
-
846
- #: ../classes/settings.php:303
847
- msgid "Change column width"
848
- msgstr "Oszlopszélesség módosítása"
849
-
850
- #: ../classes/settings.php:304
851
- 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."
852
- msgstr "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet módosítani az oszlopok fejléceinek neveit. A csúszka húzásával beállítható az oszlopok százalékos szélessége."
853
-
854
- #: ../classes/settings.php:310
855
- msgid "'Custom Field' column"
856
- msgstr "\"Egyedi mező\" oszlop"
857
-
858
- #: ../classes/settings.php:311
859
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
860
- msgstr "Az egyedi mező oszlop a bejegyzések és felhasználók egyedi mezőit használja. 10-féle típust lehet beállítani."
861
-
862
- #: ../classes/settings.php:313
863
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
864
- msgstr "Érték: karakterlánc vagy tömb. A tömbökből egydimenziós tömbök lesznek, az értékek vesszővel lesznek elválasztva \",\"."
865
-
866
- #: ../classes/settings.php:314
867
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
868
- msgstr "Érték: kép URL vagy Csatolmány ID-t fog tartalmazni, vesszővel elválasztva (\",\")"
869
-
870
- #: ../classes/settings.php:315
871
- msgid "Value: This will show the first 20 words of the Post content."
872
- msgstr "Érték: az első 20 szót fogja tartalmazni a Bejegyzés tartalmából."
873
-
874
- #: ../classes/settings.php:316
875
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
876
- msgstr "Érték: tömb. A többdimenziós tömbökből egydimenziósak lesznek."
877
-
878
- #: ../classes/settings.php:317
879
- 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."
880
- msgstr "Érték: csak egész számok.<br/>Ha rendelkezésre áll a \"Rendezés\" kiegészítő, ez az érték fog a rendezés alapjául szolgálni, tehát a bejegyzéseket numerikus (egyedi mező) értékek alapján lehet rendezni. "
881
-
882
- #: ../classes/settings.php:318
883
- #, php-format
884
- 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."
885
- msgstr "Érték: unix időpecsét vagy a <a href='%s'>Codex</a>-ben leírt dátumformátum. A visszaadott dátum értékét az <a href='%s'>általános beállítások</a> oldalon lehet beállítani."
886
-
887
- #: ../classes/settings.php:319
888
- msgid "Post Titles"
889
- msgstr "Bejegyzések címei"
890
-
891
- #: ../classes/settings.php:319
892
- msgid "Value: can be one or more Post ID's (seperated by ',')."
893
- msgstr "Érték: egy vagy több bejegyzés ID-ja (vesszővel elválasztva \",\")."
894
 
895
- #: ../classes/settings.php:320
896
- msgid "Usernames"
897
- msgstr "Felhasználónevek"
898
 
899
- #: ../classes/settings.php:320
900
- msgid "Value: can be one or more User ID's (seperated by ',')."
901
- msgstr "Érték: egy vagy több felhasználó ID-ja (vesszővel elválasztva \",\")."
902
 
903
- #: ../classes/settings.php:321
904
- msgid "Checkmark"
905
- msgstr "Pipa"
906
 
907
- #: ../classes/settings.php:321
908
- msgid "Value: should be a 1 (one) or 0 (zero)."
909
- msgstr "Érték: 1 (egy) vagy 0 (nulla)."
910
 
911
- #: ../classes/settings.php:322
912
- msgid "Value: hex value color, such as #808080."
913
- msgstr "Érték: hex színkód, pl. #808080."
914
 
915
- #: ../classes/settings.php:323
916
- 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."
917
- msgstr "Érték: karakterlánc vagy tömb. Megjeleníti, hogy az elem hányszor használja a meta kulcsot."
918
 
919
- #: ../classes/settings.php:412
920
- msgid "Welcome to Admin Columns"
921
- msgstr "Üdvözöl az Admin Columns"
922
 
923
- #: ../classes/settings.php:415
924
- msgid "Thank you for updating to the latest version!"
925
- msgstr "Köszönjük, hogy frissítetted a legújabb verzióra!"
926
 
927
- #: ../classes/settings.php:416
928
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
929
- msgstr "Az Admin Columns még fejlettebb és élvezetesebb, mint valaha. Reméljük tetszeni fog."
930
 
931
- #: ../classes/settings.php:421
932
- msgid "What’s New"
933
- msgstr "Újdonságok"
934
 
935
- #: ../classes/settings.php:422
936
- msgid "Changelog"
937
- msgstr "Változtatások listája"
938
 
939
- #: ../classes/settings.php:427
940
- msgid "Important"
941
- msgstr "Fontos"
942
 
943
- #: ../classes/settings.php:429
944
- msgid "Database Changes"
945
- msgstr "Adatbázis változtatások"
946
 
947
- #: ../classes/settings.php:430
948
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
949
- msgstr "Az adatbázis változott az 1-es és a 2-es verzió között. A lefelé történő frissítés 1-es verziója probléma nélkül lehetséges."
950
 
951
- #: ../classes/settings.php:433
952
- msgid "Make sure you backup your database and then click"
953
- msgstr "Bizonyosodj meg róla, hogy van adatbázis mentésed, majd kattints"
954
 
955
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
956
- msgid "Upgrade Database"
957
- msgstr "Adatbázis frissítése"
958
 
959
- #: ../classes/settings.php:436
960
- msgid "Potential Issues"
961
- msgstr "Lehetséges problémák"
962
 
963
- #: ../classes/settings.php:437
964
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
965
- msgstr "A kód refraktorálása után, beleértve a kiegészítőket és filtereket, előfordulhat, hogy a weboldal nem fog megfelelően működni. Fontos, hogy olvasd el a teljes"
966
 
967
- #: ../classes/settings.php:437
968
- msgid "Migrating from v1 to v2"
969
- msgstr "Frissítés v1-ről v2-re"
970
 
971
- #: ../classes/settings.php:437
972
- msgid "guide to view the full list of changes."
973
- msgstr "leírást a változtatások teljes listájáért."
974
 
975
- #: ../classes/settings.php:437
976
- #, php-format
977
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
978
- msgstr "Ha hibát találsz, kérlek <a href=\"%s\">jelezd őket felénk</a>, hogy javíthassuk a következő verzióban."
979
 
980
- #: ../classes/settings.php:440
981
- msgid "Important!"
982
- msgstr "Fontos!"
983
 
984
- #: ../classes/settings.php:440
985
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
986
- msgstr "Ha frissítetted az Admin Columns bővítményt az ilyen jellegű változtatások hatásának előzetes tudta nélkül, kérjük állítsd vissza a korábbi"
987
 
988
- #: ../classes/settings.php:440
989
- msgid "version 1"
990
- msgstr "verzió 1"
991
 
992
- #: ../classes/settings.php:440
993
- msgid "of this plugin."
994
- msgstr "a bővítménynek."
995
 
996
- #: ../classes/settings.php:446
997
- msgid "Changelog for"
998
- msgstr "Változtatások listája"
999
 
1000
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1001
- msgid "Learn more"
1002
- msgstr "Bővebb információ"
1003
 
1004
- #: ../classes/settings.php:471
1005
- msgid "Start using Admin Columns"
1006
- msgstr "Admin Columns használatának megkezdése"
1007
 
1008
- #: ../classes/settings.php:490
1009
- msgid "General Settings"
1010
- msgstr "Általános beállítások"
1011
 
1012
- #: ../classes/settings.php:491
1013
- msgid "Customize your Admin Columns settings."
1014
- msgstr "Az Admin Columns beállítások módosítása"
1015
 
1016
- #: ../classes/settings.php:502
1017
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1018
  msgstr ""
1019
 
1020
- #: ../classes/settings.php:509 ../classes/settings.php:673
1021
- msgid "Save"
1022
- msgstr "Mentés"
1023
-
1024
- #: ../classes/settings.php:549
1025
- msgid "Restore Settings"
1026
- msgstr "Beállítások visszaállítása"
1027
-
1028
- #: ../classes/settings.php:550
1029
- msgid "This will delete all column settings and restore the default settings."
1030
- msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
1031
 
1032
- #: ../classes/settings.php:556
1033
- msgid "Restore default settings"
1034
- msgstr "Alapértelmezett beállítások visszaállítása"
1035
 
1036
- #: ../classes/settings.php:556
1037
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1038
- msgstr "Figyelem! Minden mentett admin oszlop adat törlésre kerül. A művelet nem visszavonható. \\'OK\\': törlés, \\'Mégse\\': megállítás"
1039
 
1040
- #: ../classes/settings.php:572
1041
- msgid "Posttypes"
1042
- msgstr ""
1043
 
1044
- #: ../classes/settings.php:573
1045
- msgid "Others"
1046
- msgstr ""
1047
 
1048
- #: ../classes/settings.php:574
1049
- msgid "Taxonomies"
1050
- msgstr ""
1051
 
1052
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1053
- msgid "Settings"
1054
- msgstr "Beállítások"
1055
 
1056
- #: ../classes/settings.php:591
1057
- msgid "Add-ons"
1058
- msgstr ""
1059
 
1060
- #: ../classes/settings.php:659
1061
- #, php-format
1062
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1063
- msgstr ""
1064
 
1065
- #: ../classes/settings.php:669
1066
- msgid "Store settings"
1067
- msgstr "Beállítások tárolása"
1068
 
1069
- #: ../classes/settings.php:673
1070
- msgid "Update"
1071
- msgstr "Frissítés"
1072
 
1073
- #: ../classes/settings.php:677
1074
- #, php-format
1075
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1076
- msgstr "Figyelem! A %s oszlopok adatai törölve lesznek. A művelet nem visszavonható. \\'OK\\': törlés, \\Mégse\\': megállítás"
1077
 
1078
- #: ../classes/settings.php:678
1079
- msgid "Restore"
1080
- msgstr "Visszaállítás"
1081
 
1082
- #: ../classes/settings.php:678
1083
- msgid "columns"
1084
- msgstr "oszlopok"
1085
 
1086
- #: ../classes/settings.php:697
1087
- msgid "Get Admin Columns Pro"
1088
- msgstr ""
1089
 
1090
- #: ../classes/settings.php:701
1091
- msgid "Add Sorting"
1092
- msgstr "Rendezés hozzáadása"
1093
 
1094
- #: ../classes/settings.php:702
1095
- msgid "Add Filtering"
1096
- msgstr "Szűrés hozzáadása"
1097
 
1098
- #: ../classes/settings.php:703
1099
- msgid "Add Import/Export"
1100
- msgstr "Import/export hozzáadása"
1101
 
1102
- #: ../classes/settings.php:704
1103
- msgid "Add Direct Editing"
1104
  msgstr ""
1105
 
1106
- #: ../classes/settings.php:707
1107
- #, php-format
1108
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1109
  msgstr ""
1110
 
1111
- #: ../classes/settings.php:738
1112
- msgid "Are you happy with Admin Columns?"
1113
  msgstr ""
1114
 
1115
- #: ../classes/settings.php:746
1116
- msgid "What's wrong? Need help? Let us know!"
1117
  msgstr ""
1118
 
1119
- #: ../classes/settings.php:747
1120
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1121
- msgstr ""
1122
 
1123
- #: ../classes/settings.php:755
1124
- msgid "Docs"
1125
- msgstr ""
1126
 
1127
- #: ../classes/settings.php:760
1128
- msgid "Forums"
1129
- msgstr ""
1130
 
1131
- #: ../classes/settings.php:769
1132
- msgid "Woohoo! We're glad to hear that!"
1133
  msgstr ""
1134
 
1135
- #: ../classes/settings.php:770
1136
- 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!"
1137
- msgstr ""
1138
 
1139
- #: ../classes/settings.php:774
1140
- msgid "Rate"
1141
  msgstr ""
1142
 
1143
- #: ../classes/settings.php:785
1144
- msgid "Tweet"
1145
  msgstr ""
1146
 
1147
- #: ../classes/settings.php:795
1148
- msgid "Buy Pro"
1149
- msgstr ""
1150
 
1151
- #: ../classes/settings.php:807
1152
- msgid "Support"
1153
- msgstr "Támogatás"
1154
 
1155
- #: ../classes/settings.php:810
1156
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1157
- msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
1158
 
1159
- #: ../classes/settings.php:813
1160
- #, php-format
1161
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1162
- 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>"
1163
 
1164
- #: ../classes/settings.php:842
1165
- msgid "Drag and drop to reorder"
1166
- msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
1167
 
1168
- #: ../classes/settings.php:845
1169
- msgid "Add Column"
1170
- msgstr "Oszlop hozzáadása"
1171
 
1172
- #: ../classes/settings.php:926
1173
- msgid "Active"
1174
- msgstr ""
1175
 
1176
- #: ../classes/settings.php:927
1177
- msgid "Deactivate"
1178
- msgstr ""
1179
 
1180
- #: ../classes/settings.php:934
1181
- msgid "Installed"
1182
  msgstr ""
1183
 
1184
- #: ../classes/settings.php:935
1185
- msgid "Activate"
1186
  msgstr ""
1187
 
1188
- #: ../classes/settings.php:949
1189
- msgid "Download & Install"
 
 
 
 
 
 
 
 
 
 
 
 
1190
  msgstr ""
1191
 
1192
- #: ../classes/settings.php:954
1193
- msgid "Get this add-on"
1194
  msgstr ""
1195
 
1196
- #: ../classes/storage_model.php:237
1197
- msgid "settings succesfully restored."
1198
- msgstr "Beállítások sikeresen visszaállítva."
1199
 
1200
- #: ../classes/storage_model.php:253
1201
- msgid "No columns settings available."
1202
- msgstr "Nincs elérhető oszlopbeállítás."
1203
 
1204
- #: ../classes/storage_model.php:274
1205
- #, php-format
1206
- msgid "You are trying to store the same settings for %s."
1207
- msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
1208
 
1209
- #: ../classes/storage_model.php:278
1210
- #, php-format
1211
- msgid "Settings for %s updated successfully."
 
 
 
1212
  msgstr ""
1213
 
1214
- #: ../classes/storage_model.php:809
1215
- msgid "View"
1216
- msgstr "Megtekintés"
1217
 
1218
- #: ../classes/storage_model/comment.php:13
1219
- msgid "Comments"
1220
- msgstr "Hozzászólások"
1221
 
1222
- #: ../classes/storage_model/comment.php:14
1223
- msgid "Comment"
1224
  msgstr ""
1225
 
1226
- #: ../classes/storage_model/link.php:13
1227
- msgid "Links"
1228
- msgstr "Hivatkozások"
1229
 
1230
- #: ../classes/storage_model/link.php:14
1231
- msgid "Link"
1232
  msgstr ""
1233
 
1234
- #: ../classes/storage_model/media.php:14
1235
- msgid "Media"
1236
  msgstr ""
1237
 
1238
- #: ../classes/storage_model/user.php:13
1239
- msgid "Users"
1240
- msgstr "Felhasználók"
1241
 
1242
- #: ../classes/upgrade.php:62
1243
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1244
  msgstr ""
1245
 
1246
- #: ../classes/upgrade.php:95
1247
- msgid "Upgrade"
1248
- msgstr "Frissítés"
1249
 
1250
- #: ../classes/upgrade.php:136
1251
- msgid "requires a database upgrade"
1252
- msgstr "adatbázis frissítést igényel"
1253
 
1254
- #: ../classes/upgrade.php:139
1255
- msgid "why?"
1256
- msgstr "miért?"
1257
 
1258
- #: ../classes/upgrade.php:140
1259
- msgid "Please"
1260
- msgstr "Kérlek"
1261
 
1262
- #: ../classes/upgrade.php:141
1263
- msgid "backup your database"
1264
- msgstr "készíts biztonsági mentést az adatbázisról"
1265
 
1266
- #: ../classes/upgrade.php:142
1267
- msgid "then click"
1268
- msgstr "majd kattints az"
1269
 
1270
- #: ../classes/upgrade.php:351
1271
- msgid "Migrating Column Settings"
1272
- msgstr "Oszlopbeállítások migrálása"
1273
 
1274
- #: ../classes/upgrade.php:387
1275
- msgid "No Upgrade Required"
1276
- msgstr "Nincs szükség frissítésre"
1277
 
1278
- #: ../classes/upgrade.php:388
1279
- msgid "Return to welcome screen."
1280
- msgstr "Vissza a nyitóoldalra"
1281
 
1282
- #: ../classes/upgrade.php:406
1283
- msgid "Upgrade Complete!"
1284
- msgstr "Frissítés kész!"
1285
 
1286
- #: ../classes/upgrade.php:406
1287
- msgid "Return to settings."
1288
- msgstr "Vissza a beállításokhoz."
1289
 
1290
- #: ../classes/upgrade.php:407
1291
- msgid "Error"
1292
- msgstr "Hiba"
1293
 
1294
- #: ../classes/upgrade.php:408
1295
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1296
- msgstr "Sajnáljuk. Hiba történt a frissítés során. Kérjük jelezd a támogatói fórumon."
1297
 
1298
- #: ../codepress-admin-columns.php:444
1299
- msgid "Edit columns"
1300
- msgstr "Oszlopok szerkesztése"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # tpr <tproli@gmail.com>, 2014
5
  # tpr <tproli@gmail.com>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
10
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Hungarian (Hungary) (http://www.transifex.com/codepress/admin-columns/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: hu_HU\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
+ "POT-Creation-Date: \n"
22
+ "X-Generator: Poedit 1.8.5\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
25
+
26
+ #: ../codepress-admin-columns.php:451
27
+ msgid "Edit columns"
28
+ msgstr "Oszlopok szerkesztése"
 
 
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
47
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
48
  msgstr ""
49
 
50
+ #: ../classes/column.php:624
51
  msgid "Thumbnail"
52
  msgstr "Bélyegkép"
53
 
54
+ #: ../classes/column.php:625
55
  msgid "Medium"
56
  msgstr "Közepes"
57
 
58
+ #: ../classes/column.php:626
59
  msgid "Large"
60
  msgstr "Nagy"
61
 
62
+ #: ../classes/column.php:627
63
  msgid "Full"
64
  msgstr "Teljes méretű"
65
 
66
+ #: ../classes/column.php:1059
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: ../classes/column.php:1060
71
+ msgid "Lesser than"
72
+ msgstr ""
73
+
74
+ #: ../classes/column.php:1061
75
+ msgid "Greater than"
76
+ msgstr ""
77
+
78
+ #: ../classes/column.php:1062
79
+ msgid "Between"
80
+ msgstr ""
81
+
82
+ #: ../classes/column.php:1089
83
  msgid "Date Format"
84
  msgstr "Dátumformátum"
85
 
86
+ #: ../classes/column.php:1090
87
  msgid "This will determine how the date will be displayed."
88
  msgstr "Meghatározza, hogy fog a dátum megjelenni."
89
 
90
+ #: ../classes/column.php:1096
91
  msgid "Example:"
92
  msgstr "Például:"
93
 
94
+ #: ../classes/column.php:1098
95
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
96
+ msgstr ""
 
97
 
98
+ #: ../classes/column.php:1099
99
  msgid "Documentation on date and time formatting."
100
  msgstr "Dokumentáció a dátum- és időformátumokhoz."
101
 
102
+ #: ../classes/column.php:1113
103
  msgid "Excerpt length"
104
  msgstr "Kivonat hossza"
105
 
106
+ #: ../classes/column.php:1114
107
  msgid "Number of words"
108
  msgstr "Szavak száma"
109
 
110
+ #: ../classes/column.php:1132
111
  msgid "Preview size"
112
  msgstr "Előnézet mérete"
113
 
114
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
115
  msgid "Custom"
116
  msgstr "Egyedi"
117
 
118
+ #: ../classes/column.php1152, ../classes/column.php:1328
119
  msgid "width"
120
  msgstr "szélesség"
121
 
122
+ #: ../classes/column.php:1155
123
  msgid "height"
124
  msgstr "magasság"
125
 
126
+ #: ../classes/column.php:1167
127
  msgid "Before"
128
  msgstr "Előtte"
129
 
130
+ #: ../classes/column.php:1167
131
  msgid "This text will appear before the custom field value."
132
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke előtt."
133
 
134
+ #: ../classes/column.php:1168
135
  msgid "After"
136
  msgstr "Utána"
137
 
138
+ #: ../classes/column.php:1168
139
  msgid "This text will appear after the custom field value."
140
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke után."
141
 
142
+ #: ../classes/column.php:1177
143
  msgid "Display Name"
144
  msgstr "Megjelenő név"
145
 
146
+ #: ../classes/column.php1178, ../classes/settings.php:733
147
  msgid "First Name"
148
  msgstr "Utónév"
149
 
150
+ #: ../classes/column.php:1179
151
  msgid "Last Name"
152
  msgstr "Vezetéknév"
153
 
154
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
155
  msgid "Nickname"
156
  msgstr "Becenév"
157
 
158
+ #: ../classes/column.php:1181
159
  msgid "User Login"
160
  msgstr "Felhasználó bejelentkezés"
161
 
162
+ #: ../classes/column.php:1182
163
  msgid "User Email"
164
  msgstr "Felhasználó email"
165
 
166
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
167
  msgid "User ID"
168
  msgstr "Felhasználó ID "
169
 
170
+ #: ../classes/column.php:1184
171
  msgid "First and Last Name"
172
  msgstr "Elő- és utónév"
173
 
174
+ #: ../classes/column.php:1187
175
  msgid "Display format"
176
  msgstr ""
177
 
178
+ #: ../classes/column.php:1187
179
  msgid "This is the format of the author name."
180
  msgstr "Ez a szerző nevének formátuma"
181
 
182
+ #: ../classes/column.php:1350
183
  msgid "Edit"
184
  msgstr "Szerkesztés"
185
 
186
+ #: ../classes/column.php1352, ../classes/column.php:1444
187
  msgid "Clone"
188
  msgstr ""
189
 
190
+ #: ../classes/column.php:1354
191
  msgid "Remove"
192
  msgstr "Eltávolítás"
193
 
194
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
195
  msgid "Type"
196
  msgstr "Típus"
197
 
198
+ #: ../classes/column.php:1372
199
  msgid "Choose a column type."
200
  msgstr "Válassz egy oszloptípust."
201
 
202
+ #: ../classes/column.php:1372
203
  msgid "Name"
204
  msgstr ""
205
 
206
+ #: ../classes/column.php:1382
207
  msgid "Label"
208
  msgstr "Címke"
209
 
210
+ #: ../classes/column.php:1382
211
  msgid "This is the name which will appear as the column header."
212
  msgstr "Ez a név fog megjelenni az oszlop fejlécében."
213
 
214
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
215
  msgid "Width"
216
  msgstr "Szélesség"
217
 
218
+ #: ../classes/column.php:1391
219
  msgid "default"
220
  msgstr "alapértelmezett"
221
 
222
+ #: ../classes/column.php:1392
223
  msgid "auto"
224
  msgstr ""
225
 
226
+ #: ../classes/column.php:1466
227
+ msgid "Property To Display"
228
  msgstr ""
229
 
230
+ #: ../classes/column.php:1472
231
+ msgid "Post property to display for related post(s)."
232
  msgstr ""
233
 
234
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
235
+ msgid "Link To"
 
236
  msgstr ""
237
 
238
+ #: ../classes/column.php:1489
239
+ msgid "Edit Post Author"
240
  msgstr ""
241
 
242
+ #: ../classes/column.php:1490
243
+ msgid "View Public Post Author Page"
244
  msgstr ""
245
 
246
+ #: ../classes/column.php:1492
247
+ msgid "Page the posts should link to."
248
+ msgstr ""
249
 
250
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
251
+ msgid "Admin Columns"
252
+ msgstr "Admin Columns"
253
+
254
+ #: ../classes/review_notice.php:58
255
+ msgid "Admin Columns Pro"
256
  msgstr ""
257
 
258
+ #: ../classes/review_notice.php:68
259
+ msgid "click here"
260
  msgstr ""
261
 
262
+ #: ../classes/review_notice.php:72
263
+ msgid "Leave a review!"
264
  msgstr ""
265
 
266
+ #: ../classes/review_notice.php:73
267
+ msgid "Permanently hide notice"
268
  msgstr ""
269
 
270
+ #: ../classes/review_notice.php:80
271
+ 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."
272
+ msgstr ""
273
 
274
+ #: ../classes/review_notice.php:82
275
+ msgid "documentation page"
276
+ msgstr ""
277
 
278
+ #: ../classes/review_notice.php:86
279
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
280
+ msgstr ""
281
 
282
+ #: ../classes/review_notice.php:87
283
+ msgid "our forums"
284
+ msgstr ""
285
 
286
+ #: ../classes/review_notice.php:91
287
+ msgid "You can also find help on the %s, and %s."
288
+ msgstr ""
289
 
290
+ #: ../classes/review_notice.php:92
291
+ msgid "Admin Columns forums on WordPress.org"
292
+ msgstr ""
293
 
294
+ #: ../classes/review_notice.php:93
295
+ msgid "find answers to some frequently asked questions"
296
  msgstr ""
297
 
298
+ #: ../classes/settings.php:113
299
+ msgid "Add-on successfully activated."
300
+ msgstr ""
301
 
302
+ #: ../classes/settings.php:116
303
+ msgid "Add-on successfully deactivated."
304
+ msgstr ""
305
 
306
+ #: ../classes/settings.php:170
307
+ msgid "Admin Columns Settings"
308
+ msgstr "Admin Columns beállítások"
309
 
310
+ #: ../classes/settings.php:228
311
+ msgid "%s column is already present and can not be duplicated."
312
+ msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
 
313
 
314
+ #: ../classes/settings.php:284
315
+ msgid "Default settings succesfully restored."
316
+ msgstr "Alapértelmezett beállítások sikeresen visszaállítva."
317
 
318
+ #: ../classes/settings.php:301
319
+ msgid "Overview"
320
+ msgstr "Áttekintés"
321
 
322
+ #: ../classes/settings.php:304
323
+ 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."
324
+ msgstr "A plugin segítségével további oszlopokat lehet hozzáadni bejegyzések (egyedi bejegyzéstípusok), oldalak, médiatár, hivatkozások és felhasználók adminisztrációs felületekhez."
325
 
326
+ #: ../classes/settings.php:307
327
+ msgid "Basics"
328
+ msgstr "Alapok"
329
 
330
+ #: ../classes/settings.php:309
331
+ msgid "Change order"
332
+ msgstr "Sorrend megváltoztatása"
333
+
334
+ #: ../classes/settings.php:310
335
+ msgid "By dragging the columns you can change the order which they will appear in."
336
+ msgstr "Az oszlopok más helyre húzásával lehet változtatni az oszlopok sorrendjén."
337
+
338
+ #: ../classes/settings.php:311
339
+ msgid "Change label"
340
+ msgstr "Címke megváltoztatása"
341
+
342
+ #: ../classes/settings.php:312
343
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
344
+ msgstr "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet módosítani az oszlopok fejléceinek neveit."
345
 
346
+ #: ../classes/settings.php:313
347
+ msgid "Change column width"
348
+ msgstr "Oszlopszélesség módosítása"
349
+
350
+ #: ../classes/settings.php:314
351
+ 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."
352
+ msgstr "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet módosítani az oszlopok fejléceinek neveit. A csúszka húzásával beállítható az oszlopok százalékos szélessége."
353
+
354
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
355
  msgid "Custom Field"
356
  msgstr "Egyedi mező"
357
 
358
+ #: ../classes/settings.php:320
359
+ msgid "'Custom Field' column"
360
+ msgstr "\"Egyedi mező\" oszlop"
361
+
362
+ #: ../classes/settings.php:321
363
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
364
+ msgstr "Az egyedi mező oszlop a bejegyzések és felhasználók egyedi mezőit használja. 10-féle típust lehet beállítani."
365
+
366
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
367
  msgid "Default"
368
  msgstr "Alapértelmezett"
369
 
370
+ #: ../classes/settings.php:323
371
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
372
+ msgstr "Érték: karakterlánc vagy tömb. A tömbökből egydimenziós tömbök lesznek, az értékek vesszővel lesznek elválasztva \",\"."
373
 
374
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
375
+ msgid "Image"
376
+ msgstr "Kép"
377
 
378
+ #: ../classes/settings.php:324
379
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
380
+ msgstr "Érték: kép URL vagy Csatolmány ID-t fog tartalmazni, vesszővel elválasztva (\",\")"
381
 
382
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
383
  msgid "Excerpt"
384
  msgstr "Kivonat"
385
 
386
+ #: ../classes/settings.php:325
387
+ msgid "Value: This will show the first 20 words of the Post content."
388
+ msgstr "Érték: az első 20 szót fogja tartalmazni a Bejegyzés tartalmából."
 
 
 
 
389
 
390
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
391
  msgid "Multiple Values"
392
  msgstr "Többszörös érték"
393
 
394
+ #: ../classes/settings.php:326
395
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
396
+ msgstr "Érték: tömb. A többdimenziós tömbökből egydimenziósak lesznek."
397
+
398
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
399
  msgid "Numeric"
400
  msgstr "Numerikus"
401
 
402
+ #: ../classes/settings.php:327
403
+ 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."
404
+ msgstr "Érték: csak egész számok.<br/>Ha rendelkezésre áll a \"Rendezés\" kiegészítő, ez az érték fog a rendezés alapjául szolgálni, tehát a bejegyzéseket numerikus (egyedi mező) értékek alapján lehet rendezni. "
405
 
406
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
407
+ msgid "Date"
408
+ msgstr "Dátum"
409
 
410
+ #: ../classes/settings.php:328
411
+ 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."
412
+ msgstr "Érték: unix időpecsét vagy a <a href='%s'>Codex</a>-ben leírt dátumformátum. A visszaadott dátum értékét az <a href='%s'>általános beállítások</a> oldalon lehet beállítani."
413
 
414
+ #: ../classes/settings.php:329
415
+ msgid "Post Titles"
416
+ msgstr "Bejegyzések címei"
417
 
418
+ #: ../classes/settings.php:329
419
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
420
+ msgstr "Érték: egy vagy több bejegyzés ID-ja (vesszővel elválasztva \",\")."
421
 
422
+ #: ../classes/settings.php:330
423
+ msgid "Usernames"
424
+ msgstr "Felhasználónevek"
 
425
 
426
+ #: ../classes/settings.php:330
427
+ msgid "Value: can be one or more User ID's (seperated by ',')."
428
+ msgstr "Érték: egy vagy több felhasználó ID-ja (vesszővel elválasztva \",\")."
429
 
430
+ #: ../classes/settings.php:331
431
+ msgid "Checkmark"
432
+ msgstr "Pipa"
433
 
434
+ #: ../classes/settings.php:331
435
+ msgid "Value: should be a 1 (one) or 0 (zero)."
436
+ msgstr "Érték: 1 (egy) vagy 0 (nulla)."
437
 
438
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
439
+ msgid "Color"
440
+ msgstr "Szín"
441
 
442
+ #: ../classes/settings.php:332
443
+ msgid "Value: hex value color, such as #808080."
444
+ msgstr "Érték: hex színkód, pl. #808080."
445
 
446
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
447
+ msgid "Counter"
448
+ msgstr "Számláló"
449
 
450
+ #: ../classes/settings.php:333
451
+ 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."
452
+ msgstr "Érték: karakterlánc vagy tömb. Megjeleníti, hogy az elem hányszor használja a meta kulcsot."
453
 
454
+ #: ../classes/settings.php:422
455
+ msgid "Welcome to Admin Columns"
456
+ msgstr "Üdvözöl az Admin Columns"
457
 
458
+ #: ../classes/settings.php:425
459
+ msgid "Thank you for updating to the latest version!"
460
+ msgstr "Köszönjük, hogy frissítetted a legújabb verzióra!"
461
 
462
+ #: ../classes/settings.php:426
463
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
464
+ msgstr "Az Admin Columns még fejlettebb és élvezetesebb, mint valaha. Reméljük tetszeni fog."
465
 
466
+ #: ../classes/settings.php:431
467
+ msgid "What’s New"
468
+ msgstr "Újdonságok"
469
 
470
+ #: ../classes/settings.php:432
471
+ msgid "Changelog"
472
+ msgstr "Változtatások listája"
473
 
474
+ #: ../classes/settings.php:437
475
+ msgid "Important"
476
+ msgstr "Fontos"
477
 
478
+ #: ../classes/settings.php:439
479
+ msgid "Database Changes"
480
+ msgstr "Adatbázis változtatások"
481
 
482
+ #: ../classes/settings.php:440
483
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
484
+ msgstr "Az adatbázis változott az 1-es és a 2-es verzió között. A lefelé történő frissítés 1-es verziója probléma nélkül lehetséges."
485
 
486
+ #: ../classes/settings.php:443
487
+ msgid "Make sure you backup your database and then click"
488
+ msgstr "Bizonyosodj meg róla, hogy van adatbázis mentésed, majd kattints"
489
 
490
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
491
+ msgid "Upgrade Database"
492
+ msgstr "Adatbázis frissítése"
493
 
494
+ #: ../classes/settings.php:446
495
+ msgid "Potential Issues"
496
+ msgstr "Lehetséges problémák"
497
 
498
+ #: ../classes/settings.php:447
499
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
500
+ msgstr "A kód refraktorálása után, beleértve a kiegészítőket és filtereket, előfordulhat, hogy a weboldal nem fog megfelelően működni. Fontos, hogy olvasd el a teljes"
501
 
502
+ #: ../classes/settings.php:447
503
+ msgid "Migrating from v1 to v2"
504
+ msgstr "Frissítés v1-ről v2-re"
505
 
506
+ #: ../classes/settings.php:447
507
+ msgid "guide to view the full list of changes."
508
+ msgstr "leírást a változtatások teljes listájáért."
509
 
510
+ #: ../classes/settings.php:447
511
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
512
+ msgstr ""
513
 
514
+ #: ../classes/settings.php:450
515
+ msgid "Important!"
516
+ msgstr "Fontos!"
517
 
518
+ #: ../classes/settings.php:450
519
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
520
+ msgstr "Ha frissítetted az Admin Columns bővítményt az ilyen jellegű változtatások hatásának előzetes tudta nélkül, kérjük állítsd vissza a korábbi"
521
 
522
+ #: ../classes/settings.php:450
523
+ msgid "version 1"
524
+ msgstr "verzió 1"
525
 
526
+ #: ../classes/settings.php:450
527
+ msgid "of this plugin."
528
+ msgstr "a bővítménynek."
529
 
530
+ #: ../classes/settings.php:456
531
+ msgid "Changelog for"
532
+ msgstr "Változtatások listája"
533
 
534
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
535
+ msgid "Learn more"
536
+ msgstr "Bővebb információ"
537
 
538
+ #: ../classes/settings.php:481
539
+ msgid "Start using Admin Columns"
540
+ msgstr "Admin Columns használatának megkezdése"
541
 
542
+ #: ../classes/settings.php:500
543
+ msgid "General Settings"
544
+ msgstr "Általános beállítások"
545
 
546
+ #: ../classes/settings.php:501
547
+ msgid "Customize your Admin Columns settings."
548
+ msgstr "Az Admin Columns beállítások módosítása"
549
+
550
+ #: ../classes/settings.php:512
551
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
552
  msgstr ""
553
 
554
+ #: ../classes/settings.php:559
555
+ msgid "Restore Settings"
556
+ msgstr "Beállítások visszaállítása"
557
 
558
+ #: ../classes/settings.php:560
559
+ msgid "This will delete all column settings and restore the default settings."
560
+ msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
561
 
562
+ #: ../classes/settings.php:566
563
+ msgid "Restore default settings"
564
+ msgstr "Alapértelmezett beállítások visszaállítása"
565
 
566
+ #: ../classes/settings.php:566
567
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
568
  msgstr ""
569
 
570
+ #: ../classes/settings.php:582
571
+ msgid "Posttypes"
572
+ msgstr ""
573
 
574
+ #: ../classes/settings.php:583
575
+ msgid "Others"
576
+ msgstr ""
577
 
578
+ #: ../classes/settings.php:584
579
+ msgid "Taxonomies"
580
+ msgstr ""
581
 
582
+ #: ../classes/settings.php:600
583
+ msgid "Settings"
584
+ msgstr "Beállítások"
585
 
586
+ #: ../classes/settings.php:601
587
+ msgid "Add-ons"
588
+ msgstr ""
589
 
590
+ #: ../classes/settings.php:669
591
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
592
+ msgstr ""
593
 
594
+ #: ../classes/settings.php:679
595
+ msgid "Store settings"
596
+ msgstr "Beállítások tárolása"
597
 
598
+ #: ../classes/settings.php:687
599
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
600
+ msgstr ""
601
 
602
+ #: ../classes/settings.php:688
603
+ msgid "Restore"
604
+ msgstr "Visszaállítás"
605
 
606
+ #: ../classes/settings.php:688
607
+ msgid "columns"
608
+ msgstr "oszlopok"
609
 
610
+ #: ../classes/settings.php:707
611
+ msgid "Get Admin Columns Pro"
612
  msgstr ""
613
 
614
+ #: ../classes/settings.php:711
615
+ msgid "Add Sorting"
616
+ msgstr "Rendezés hozzáadása"
617
 
618
+ #: ../classes/settings.php:712
619
+ msgid "Add Filtering"
620
+ msgstr "Szűrés hozzáadása"
 
 
621
 
622
+ #: ../classes/settings.php:713
623
+ msgid "Add Import/Export"
624
+ msgstr "Import/export hozzáadása"
 
 
625
 
626
+ #: ../classes/settings.php:714
627
+ msgid "Add Direct Editing"
628
  msgstr ""
629
 
630
+ #: ../classes/settings.php:717
631
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
632
  msgstr ""
633
 
634
+ #: ../classes/settings.php:730
635
+ msgid "Subscribe to receive news &amp; updates below."
 
 
 
 
 
 
 
 
636
  msgstr ""
637
 
638
+ #: ../classes/settings.php:737
639
+ msgid "Your Email"
640
+ msgstr ""
641
 
642
+ #: ../classes/settings.php:748
643
+ msgid "Are you happy with Admin Columns?"
644
+ msgstr ""
645
 
646
+ #: ../classes/settings.php:756
647
+ msgid "What's wrong? Need help? Let us know!"
648
+ msgstr ""
649
 
650
+ #: ../classes/settings.php:757
651
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
652
+ msgstr ""
653
 
654
+ #: ../classes/settings.php:765
655
+ msgid "Docs"
656
  msgstr ""
657
 
658
+ #: ../classes/settings.php:770
659
+ msgid "Forums"
660
  msgstr ""
661
 
662
+ #: ../classes/settings.php:779
663
+ msgid "Woohoo! We're glad to hear that!"
664
  msgstr ""
665
 
666
+ #: ../classes/settings.php:780
667
+ 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!"
668
  msgstr ""
669
 
670
+ #: ../classes/settings.php:784
671
+ msgid "Rate"
672
+ msgstr ""
673
 
674
+ #: ../classes/settings.php:795
675
+ msgid "Tweet"
676
+ msgstr ""
677
 
678
+ #: ../classes/settings.php:805
679
+ msgid "Buy Pro"
680
  msgstr ""
681
 
682
+ #: ../classes/settings.php:817
683
+ msgid "Support"
684
+ msgstr "Támogatás"
685
 
686
+ #: ../classes/settings.php:820
687
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
688
+ msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
689
 
690
+ #: ../classes/settings.php:823
691
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
692
+ 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>"
693
 
694
+ #: ../classes/settings.php:852
695
+ msgid "Drag and drop to reorder"
696
+ msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
697
 
698
+ #: ../classes/settings.php:855
699
+ msgid "Add Column"
700
+ msgstr "Oszlop hozzáadása"
701
 
702
+ #: ../classes/settings.php:936
703
+ msgid "Active"
704
+ msgstr ""
705
 
706
+ #: ../classes/settings.php:937
707
+ msgid "Deactivate"
708
+ msgstr ""
709
 
710
+ #: ../classes/settings.php:944
711
+ msgid "Installed"
712
  msgstr ""
713
 
714
+ #: ../classes/settings.php:945
715
+ msgid "Activate"
 
 
 
 
716
  msgstr ""
717
 
718
+ #: ../classes/settings.php:959
719
+ msgid "Download & Install"
 
 
 
 
720
  msgstr ""
721
 
722
+ #: ../classes/settings.php:964
723
+ msgid "Get this add-on"
724
  msgstr ""
725
 
726
+ #: ../classes/storage_model.php:262
727
+ msgid "settings succesfully restored."
728
+ msgstr "Beállítások sikeresen visszaállítva."
729
 
730
+ #: ../classes/storage_model.php:278
731
+ msgid "No columns settings available."
732
+ msgstr "Nincs elérhető oszlopbeállítás."
733
 
734
+ #: ../classes/storage_model.php:299
735
+ msgid "You are trying to store the same settings for %s."
736
+ msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
737
+
738
+ #: ../classes/storage_model.php:303
739
+ msgid "Settings for %s updated successfully."
740
  msgstr ""
741
 
742
+ #: ../classes/storage_model.php:643
743
+ msgid "Columns by Plugins"
744
+ msgstr ""
745
 
746
+ #: ../classes/storage_model.php:862
747
+ msgid "View"
748
+ msgstr "Megtekintés"
749
 
750
+ #: ../classes/upgrade.php:62
751
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
752
+ msgstr ""
753
 
754
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
755
+ msgid "Upgrade"
756
+ msgstr "Frissítés"
757
 
758
+ #: ../classes/upgrade.php:136
759
+ msgid "requires a database upgrade"
760
+ msgstr "adatbázis frissítést igényel"
761
 
762
+ #: ../classes/upgrade.php:139
763
+ msgid "why?"
764
+ msgstr "miért?"
765
 
766
+ #: ../classes/upgrade.php:140
767
+ msgid "Please"
768
+ msgstr "Kérlek"
769
 
770
+ #: ../classes/upgrade.php:141
771
+ msgid "backup your database"
772
+ msgstr "készíts biztonsági mentést az adatbázisról"
773
 
774
+ #: ../classes/upgrade.php:142
775
+ msgid "then click"
776
+ msgstr "majd kattints az"
777
 
778
+ #: ../classes/upgrade.php:351
779
+ msgid "Migrating Column Settings"
780
+ msgstr "Oszlopbeállítások migrálása"
 
 
 
781
 
782
+ #: ../classes/upgrade.php:387
783
+ msgid "No Upgrade Required"
784
+ msgstr "Nincs szükség frissítésre"
785
 
786
+ #: ../classes/upgrade.php:388
787
+ msgid "Return to welcome screen."
788
+ msgstr "Vissza a nyitóoldalra"
789
 
790
+ #: ../classes/upgrade.php:406
791
+ msgid "Upgrade Complete!"
792
+ msgstr "Frissítés kész!"
793
 
794
+ #: ../classes/upgrade.php:406
795
+ msgid "Return to settings."
796
+ msgstr "Vissza a beállításokhoz."
 
797
 
798
+ #: ../classes/upgrade.php:407
799
+ msgid "Error"
800
+ msgstr "Hiba"
801
 
802
+ #: ../classes/upgrade.php:408
803
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
804
+ msgstr "Sajnáljuk. Hiba történt a frissítés során. Kérjük jelezd a támogatói fórumon."
 
805
 
806
+ #: ../classes/column/acf-placeholder.php:19
807
+ msgid "ACF Field"
808
  msgstr ""
809
 
810
+ #: ../classes/column/acf-placeholder.php:35
811
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
812
  msgstr ""
813
 
814
+ #: ../classes/column/acf-placeholder.php:38
815
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
816
  msgstr ""
817
 
818
+ #: ../classes/column/acf-placeholder.php:44
819
+ msgid "Find out more"
820
  msgstr ""
821
 
822
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
823
+ msgid "Actions"
824
+ msgstr "Műveletek"
825
 
826
+ #: ../classes/column/actions.php:96
827
+ msgid "Use icons?"
828
  msgstr ""
829
 
830
+ #: ../classes/column/actions.php:96
831
+ msgid "Use icons instead of text for displaying the actions."
832
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
833
 
834
+ #: ../classes/column/custom-field.php:96
835
+ msgid "Checkmark (true/false)"
836
+ msgstr "Pipa (igaz/hamis)"
837
 
838
+ #: ../classes/column/custom-field.php:102
839
+ msgid "Media Library"
840
+ msgstr "Médiatár"
841
 
842
+ #: ../classes/column/custom-field.php:105
843
+ msgid "Post Title (Post ID's)"
844
+ msgstr "Bejegyzés címe (bejegyzés ID)"
845
 
846
+ #: ../classes/column/custom-field.php:106
847
+ msgid "Username (User ID's)"
848
+ msgstr "Felhasználónév (Felhasználó ID)"
849
 
850
+ #: ../classes/column/custom-field.php:107
851
+ msgid "Term Name (Term ID's)"
852
+ msgstr ""
853
 
854
+ #: ../classes/column/custom-field.php:391
855
+ msgid "Select your custom field."
856
+ msgstr "Válassz egyedi mezőt."
857
 
858
+ #: ../classes/column/custom-field.php:401
859
+ msgid "No custom fields available."
860
+ msgstr "Nincsenek egyedi mezők."
861
 
862
+ #: ../classes/column/custom-field.php:401
863
+ msgid "Please create a %s item first."
864
+ msgstr ""
865
 
866
+ #: ../classes/column/custom-field.php:408
867
+ msgid "Field Type"
868
+ msgstr "Mező típusa"
869
 
870
+ #: ../classes/column/custom-field.php:408
871
+ msgid "This will determine how the value will be displayed."
872
+ msgstr "Meghatározza, hogy fog az érték megjelenni."
873
 
874
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
875
+ msgid "Taxonomy"
876
+ msgstr "Taxonómia"
877
 
878
+ #: ../classes/column/used-by-menu.php:20
879
+ msgid "Used by Menu"
880
+ msgstr ""
881
 
882
+ #: ../classes/column/used-by-menu.php:133
883
+ msgid "Link to menu"
884
+ msgstr ""
885
 
886
+ #: ../classes/column/used-by-menu.php:133
887
+ msgid "This will make the title link to the menu."
888
+ msgstr ""
889
 
890
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
891
+ msgid "ID"
892
+ msgstr "ID"
893
 
894
+ #: ../classes/column/comment/agent.php:19
895
+ msgid "Agent"
896
+ msgstr "Ügynök"
897
 
898
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
899
+ msgid "Approved"
900
+ msgstr "Jóváhagyva"
901
 
902
+ #: ../classes/column/comment/author-avatar.php:19
903
+ msgid "Avatar"
904
+ msgstr "Avatar"
905
 
906
+ #: ../classes/column/comment/author-email.php:19
907
+ msgid "Author email"
908
+ msgstr "Szerző email-je"
909
 
910
+ #: ../classes/column/comment/author-ip.php:19
911
+ msgid "Author IP"
912
+ msgstr "Szerző IP-je"
913
 
914
+ #: ../classes/column/comment/author-name.php:12
915
+ msgid "Author name"
916
+ msgstr ""
 
917
 
918
+ #: ../classes/column/comment/author-url.php:19
919
+ msgid "Author url"
920
+ msgstr "Szerző URL-je"
921
 
922
+ #: ../classes/column/comment/author.php:19
923
+ msgid "Author"
924
+ msgstr "Szerző"
925
 
926
+ #: ../classes/column/comment/date-gmt.php:19
927
+ msgid "Date GMT"
928
+ msgstr "GMT dátum"
929
 
930
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
931
+ msgid "Content"
932
+ msgstr ""
933
 
934
+ #: ../classes/column/comment/post.php:19
935
+ msgid "Post"
936
+ msgstr ""
937
 
938
+ #: ../classes/column/comment/reply-to.php:19
939
+ msgid "In Reply To"
940
+ msgstr "Válaszolva erre:"
941
 
942
+ #: ../classes/column/comment/user.php:11
943
+ msgid "User"
944
+ msgstr ""
945
 
946
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
947
+ msgid "Word count"
948
+ msgstr "Szavak száma"
949
 
950
+ #: ../classes/column/media/alternate-text.php:19
951
+ msgid "Alt"
952
+ msgstr "Alt"
953
 
954
+ #: ../classes/column/media/attached-to.php:19
955
+ msgid "Attached to post"
956
  msgstr ""
957
 
958
+ #: ../classes/column/media/available-sizes.php:20
959
+ msgid "Available Sizes"
960
+ msgstr "Elérhető méretek"
 
 
 
 
 
 
 
 
961
 
962
+ #: ../classes/column/media/available-sizes.php:40
963
+ msgid "full size"
964
+ msgstr "teljes méret"
965
 
966
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
967
+ msgid "Caption"
968
+ msgstr "Kép felirata"
969
 
970
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
971
+ msgid "Description"
972
+ msgstr "Leírás"
973
 
974
+ #: ../classes/column/media/dimensions.php:19
975
+ msgid "Dimensions"
976
+ msgstr "Kép kiterjedése"
977
 
978
+ #: ../classes/column/media/exif-data.php:19
979
+ msgid "EXIF data"
980
+ msgstr "EXIF adato"
981
 
982
+ #: ../classes/column/media/exif-data.php:38
983
+ msgid "Aperture"
984
+ msgstr "Rekesz"
985
 
986
+ #: ../classes/column/media/exif-data.php:39
987
+ msgid "Credit"
988
+ msgstr "Érdem"
989
 
990
+ #: ../classes/column/media/exif-data.php:40
991
+ msgid "Camera"
992
+ msgstr "Fényképezőgép"
 
993
 
994
+ #: ../classes/column/media/exif-data.php:42
995
+ msgid "Timestamp"
996
+ msgstr "Időbélyeg"
997
 
998
+ #: ../classes/column/media/exif-data.php:43
999
+ msgid "Copyright EXIF"
1000
+ msgstr "EXIF szerzői jog"
1001
 
1002
+ #: ../classes/column/media/exif-data.php:44
1003
+ msgid "Focal Length"
1004
+ msgstr "Fókusztávolság"
 
1005
 
1006
+ #: ../classes/column/media/exif-data.php:45
1007
+ msgid "ISO"
1008
+ msgstr "ISO"
1009
 
1010
+ #: ../classes/column/media/exif-data.php:46
1011
+ msgid "Shutter Speed"
1012
+ msgstr "Zársebesség"
1013
 
1014
+ #: ../classes/column/media/exif-data.php:47
1015
+ msgid "Title"
1016
+ msgstr "Cím"
1017
 
1018
+ #: ../classes/column/media/file-name.php:19
1019
+ msgid "File name"
1020
+ msgstr "Fájlnév"
1021
 
1022
+ #: ../classes/column/media/file-size.php:19
1023
+ msgid "File size"
1024
+ msgstr "Fájlméret"
1025
 
1026
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1027
+ msgid "Full path"
1028
+ msgstr "Teljes útvonal"
1029
 
1030
+ #: ../classes/column/media/full-path.php:83
1031
+ msgid "Path scope"
1032
  msgstr ""
1033
 
1034
+ #: ../classes/column/media/full-path.php:84
1035
+ msgid "Part of the file path to display"
 
1036
  msgstr ""
1037
 
1038
+ #: ../classes/column/media/full-path.php:97
1039
+ msgid "Relative to domain"
1040
  msgstr ""
1041
 
1042
+ #: ../classes/column/media/full-path.php:102
1043
+ msgid "Relative to main uploads folder "
1044
  msgstr ""
1045
 
1046
+ #: ../classes/column/media/height.php:19
1047
+ msgid "Height"
1048
+ msgstr "Magasság"
1049
 
1050
+ #: ../classes/column/media/mime-type.php:19
1051
+ msgid "Mime type"
1052
+ msgstr "Mime típus"
1053
 
1054
+ #: ../classes/column/post/attachment-count.php:19
1055
+ msgid "No. of Attachments"
1056
+ msgstr "Csatolmányok száma"
1057
 
1058
+ #: ../classes/column/post/attachment.php:19
1059
+ msgid "Attachments"
1060
  msgstr ""
1061
 
1062
+ #: ../classes/column/post/author-name.php:20
1063
+ msgid "Display Author As"
1064
+ msgstr "Szerző megjelenítése mint"
1065
 
1066
+ #: ../classes/column/post/author-name.php:100
1067
+ msgid "View Public Author Page"
1068
  msgstr ""
1069
 
1070
+ #: ../classes/column/post/author-name.php:102
1071
+ msgid "Page the author name should link to."
1072
  msgstr ""
1073
 
1074
+ #: ../classes/column/post/before-moretag.php:19
1075
+ msgid "Before More Tag"
1076
+ msgstr "A \"További\" címke előtti rész"
1077
 
1078
+ #: ../classes/column/post/comment-count.php:20
1079
+ msgid "Comment count"
1080
+ msgstr "Hozzászólások száma"
1081
 
1082
+ #: ../classes/column/post/comment-count.php:34
1083
+ msgid "Total"
1084
+ msgstr "Összesen"
1085
 
1086
+ #: ../classes/column/post/comment-count.php:36
1087
+ msgid "Pending"
1088
+ msgstr "Folyamatban"
 
1089
 
1090
+ #: ../classes/column/post/comment-count.php:37
1091
+ msgid "Spam"
1092
+ msgstr "Levélszemét"
1093
 
1094
+ #: ../classes/column/post/comment-count.php:38
1095
+ msgid "Trash"
1096
+ msgstr "Kuka"
1097
 
1098
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1099
+ msgid "Comment status"
1100
+ msgstr "Hozzászólás státusza"
1101
 
1102
+ #: ../classes/column/post/comment-count.php:99
1103
+ msgid "Select which comment status you like to display."
1104
+ msgstr "Válasz ki, melyik hozzászólás státuszt szeretnéd megjeleníteni."
1105
 
1106
+ #: ../classes/column/post/depth.php:19
1107
+ msgid "Depth"
1108
  msgstr ""
1109
 
1110
+ #: ../classes/column/post/estimated-reading-time.php:19
1111
+ msgid "Estimated Reading Time"
1112
  msgstr ""
1113
 
1114
+ #: ../classes/column/post/estimated-reading-time.php:66
1115
+ msgid "second"
1116
+ msgid_plural "seconds"
1117
+ msgstr[0] ""
1118
+ msgstr[1] ""
1119
+
1120
+ #: ../classes/column/post/estimated-reading-time.php:69
1121
+ msgid "minute"
1122
+ msgid_plural "minutes"
1123
+ msgstr[0] ""
1124
+ msgstr[1] ""
1125
+
1126
+ #: ../classes/column/post/estimated-reading-time.php:107
1127
+ msgid "Words per minute"
1128
  msgstr ""
1129
 
1130
+ #: ../classes/column/post/estimated-reading-time.php:108
1131
+ msgid "Estimated reading time in words per minute"
1132
  msgstr ""
1133
 
1134
+ #: ../classes/column/post/featured-image.php:19
1135
+ msgid "Featured Image"
1136
+ msgstr "Kiemelt kép"
1137
 
1138
+ #: ../classes/column/post/formats.php:19
1139
+ msgid "Post Format"
1140
+ msgstr "Bejegyzés formátum"
1141
 
1142
+ #: ../classes/column/post/last-modified-author.php:20
1143
+ msgid "Last Modified Author"
1144
+ msgstr ""
 
1145
 
1146
+ #: ../classes/column/post/modified.php:19
1147
+ msgid "Last modified"
1148
+ msgstr "Utoljára módosítva"
1149
+
1150
+ #: ../classes/column/post/order.php:19
1151
+ msgid "Order"
1152
  msgstr ""
1153
 
1154
+ #: ../classes/column/post/page-template.php:19
1155
+ msgid "Page Template"
1156
+ msgstr "Oldal sablon"
1157
 
1158
+ #: ../classes/column/post/parent.php:19
1159
+ msgid "Parent"
1160
+ msgstr "Szülő"
1161
 
1162
+ #: ../classes/column/post/path.php:19
1163
+ msgid "Path"
1164
  msgstr ""
1165
 
1166
+ #: ../classes/column/post/permalink.php:19
1167
+ msgid "Permalink"
1168
+ msgstr ""
1169
 
1170
+ #: ../classes/column/post/permalink.php:68
1171
+ msgid "Link to post"
1172
  msgstr ""
1173
 
1174
+ #: ../classes/column/post/permalink.php:68
1175
+ msgid "This will make the permalink clickable."
1176
  msgstr ""
1177
 
1178
+ #: ../classes/column/post/ping-status.php:19
1179
+ msgid "Ping status"
1180
+ msgstr "Ping státusz"
1181
 
1182
+ #: ../classes/column/post/roles.php:19
1183
+ msgid "Roles"
1184
+ msgstr "Jogkörök"
1185
+
1186
+ #: ../classes/column/post/shortcodes.php:19
1187
+ msgid "Shortcodes"
1188
  msgstr ""
1189
 
1190
+ #: ../classes/column/post/slug.php:19
1191
+ msgid "Slug"
1192
+ msgstr "Keresőbarát név/slug"
1193
 
1194
+ #: ../classes/column/post/status.php:21
1195
+ msgid "Status"
1196
+ msgstr "Státusz"
1197
 
1198
+ #: ../classes/column/post/sticky.php:19
1199
+ msgid "Sticky"
1200
+ msgstr "Ragadós"
1201
 
1202
+ #: ../classes/column/post/title-raw.php:19
1203
+ msgid "Title without actions"
1204
+ msgstr ""
1205
 
1206
+ #: ../classes/column/link/length.php:19
1207
+ msgid "Length"
1208
+ msgstr "Hossz"
1209
 
1210
+ #: ../classes/column/link/notes.php:19
1211
+ msgid "Notes"
1212
+ msgstr "Megjegyzések"
1213
 
1214
+ #: ../classes/column/link/owner.php:19
1215
+ msgid "Owner"
1216
+ msgstr "Tulajdonos"
1217
 
1218
+ #: ../classes/column/link/rss.php:19
1219
+ msgid "Rss"
1220
+ msgstr "RSS"
1221
 
1222
+ #: ../classes/column/link/target.php:19
1223
+ msgid "Target"
1224
+ msgstr "Cél"
1225
 
1226
+ #: ../classes/column/user/display-name.php:19
1227
+ msgid "Display name"
1228
+ msgstr ""
1229
 
1230
+ #: ../classes/column/user/first-name.php:19
1231
+ msgid "First name"
1232
+ msgstr "Utónév"
1233
 
1234
+ #: ../classes/column/user/last-name.php:19
1235
+ msgid "Last name"
1236
+ msgstr "Vezetéknév"
1237
 
1238
+ #: ../classes/column/user/post-count.php:19
1239
+ msgid "Post Count"
1240
+ msgstr "Bejegyzések száma"
1241
 
1242
+ #: ../classes/column/user/post-count.php:89
1243
+ msgid "Post Type"
1244
+ msgstr "Bejegyzés típus"
1245
+
1246
+ #: ../classes/column/user/registered.php:19
1247
+ msgid "Registered"
1248
+ msgstr "Feliratkozott"
1249
+
1250
+ #: ../classes/column/user/rich-editing.php:19
1251
+ msgid "Visual Editor"
1252
+ msgstr ""
1253
+
1254
+ #: ../classes/column/user/url.php:19
1255
+ msgid "Url"
1256
+ msgstr "URL"
languages/codepress-admin-columns-it_IT.mo ADDED
Binary file
languages/{cpac-it_IT.po → codepress-admin-columns-it_IT.po} RENAMED
@@ -1,33 +1,33 @@
1
- #
 
2
  # Translators:
3
  # Adriano Genovese <adrygese@gmail.com>, 2015
 
4
  # francesco <francesco.tosi@gmail.com>, 2014
5
  # Werther <werther.d@gmail.com>, 2013
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
11
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
12
  "Last-Translator: Codepress <info@codepress.nl>\n"
13
- "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-columns/language/it_IT/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: it_IT\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Generator: Poedit 1.8.1\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
23
  "X-Poedit-SearchPath-0: .\n"
24
- "X-Poedit-SearchPath-1: ..\n"
25
- "X-Poedit-SearchPathExcluded-0: ../src\n"
26
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
30
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
31
 
32
  #: ../classes/addons.php:110
33
  msgid "Plugins"
@@ -39,7 +39,7 @@ msgstr "Campi personalizzati avanzati"
39
 
40
  #: ../classes/addons.php:136
41
  msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
42
- msgstr "Visualizza e modifica i Campi personalizzati avanzati nella panoramica dei messaggi in pochi secondi!"
43
 
44
  #: ../classes/addons.php:141
45
  msgid "WooCommerce"
@@ -49,1251 +49,1210 @@ msgstr "WooCommerce"
49
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
50
  msgstr "Valorizzare i prodotti, ordini e panoramiche coupons con nuove colonne e modifica in linea."
51
 
52
- #: ../classes/column.php:597
53
  msgid "Thumbnail"
54
  msgstr "Miniatura"
55
 
56
- #: ../classes/column.php:598
57
  msgid "Medium"
58
  msgstr "Media"
59
 
60
- #: ../classes/column.php:599
61
  msgid "Large"
62
  msgstr "Grande"
63
 
64
- #: ../classes/column.php:600
65
  msgid "Full"
66
  msgstr "Dimensione reale"
67
 
68
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  msgid "Date Format"
70
  msgstr "Formato Data"
71
 
72
- #: ../classes/column.php:1042
73
  msgid "This will determine how the date will be displayed."
74
  msgstr "Questo determinerà il modo in cui verrà visualizzata la data."
75
 
76
- #: ../classes/column.php:1048
77
  msgid "Example:"
78
  msgstr "Esempio:"
79
 
80
- #: ../classes/column.php:1050
81
- #, php-format
82
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
83
- msgstr "Lasciare vuoto per utilizzare il formato data di WordPress, o modifica <a href=\"%s\">qui il formato data</a>."
84
 
85
- #: ../classes/column.php:1051
86
  msgid "Documentation on date and time formatting."
87
  msgstr "Documentazione sulla formattazione \"data e ora\"."
88
 
89
- #: ../classes/column.php:1065
90
  msgid "Excerpt length"
91
  msgstr "Lunghezza riassunto"
92
 
93
- #: ../classes/column.php:1066
94
  msgid "Number of words"
95
  msgstr "Numero di parole"
96
 
97
- #: ../classes/column.php:1084
98
  msgid "Preview size"
99
  msgstr "Dimensione anteprima"
100
 
101
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
102
  msgid "Custom"
103
  msgstr "Personalizzata"
104
 
105
- #: ../classes/column.php:1104 ../classes/column.php:1251
106
  msgid "width"
107
  msgstr "larghezza"
108
 
109
- #: ../classes/column.php:1107
110
  msgid "height"
111
  msgstr "altezza"
112
 
113
- #: ../classes/column.php:1119
114
  msgid "Before"
115
  msgstr "Prima"
116
 
117
- #: ../classes/column.php:1119
118
  msgid "This text will appear before the custom field value."
119
  msgstr "Questo testo apparirà prima del valore campo personalizzato."
120
 
121
- #: ../classes/column.php:1120
122
  msgid "After"
123
  msgstr "Dopo"
124
 
125
- #: ../classes/column.php:1120
126
  msgid "This text will appear after the custom field value."
127
  msgstr "Questo testo apparirà dopo il valore campo personalizzato."
128
 
129
- #: ../classes/column.php:1129
130
  msgid "Display Name"
131
  msgstr "Nome da visualizzare"
132
 
133
- #: ../classes/column.php:1130
134
  msgid "First Name"
135
  msgstr "Nome"
136
 
137
- #: ../classes/column.php:1131
138
  msgid "Last Name"
139
  msgstr "Cognome"
140
 
141
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
142
  msgid "Nickname"
143
  msgstr "Soprannome"
144
 
145
- #: ../classes/column.php:1133
146
  msgid "User Login"
147
  msgstr "Login utente"
148
 
149
- #: ../classes/column.php:1134
150
  msgid "User Email"
151
  msgstr "Email utente"
152
 
153
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
154
  msgid "User ID"
155
  msgstr "ID utente"
156
 
157
- #: ../classes/column.php:1136
158
  msgid "First and Last Name"
159
  msgstr "Nome e Cognome"
160
 
161
- #: ../classes/column.php:1139
162
  msgid "Display format"
163
  msgstr "Formato di visualizzazione"
164
 
165
- #: ../classes/column.php:1139
166
  msgid "This is the format of the author name."
167
  msgstr "Questo è il formato del nome autore."
168
 
169
- #: ../classes/column.php:1273
170
  msgid "Edit"
171
  msgstr "Modifica"
172
 
173
- #: ../classes/column.php:1275 ../classes/column.php:1367
174
  msgid "Clone"
175
  msgstr "Clone"
176
 
177
- #: ../classes/column.php:1277 ../classes/column.php:1369
178
  msgid "Remove"
179
  msgstr "Rimuovi"
180
 
181
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
182
  msgid "Type"
183
  msgstr "TIpo"
184
 
185
- #: ../classes/column.php:1295
186
  msgid "Choose a column type."
187
  msgstr "Scegli un tipo di colonna."
188
 
189
- #: ../classes/column.php:1295
190
  msgid "Name"
191
  msgstr "Nome"
192
 
193
- #: ../classes/column.php:1305
194
  msgid "Label"
195
  msgstr "Etichetta"
196
 
197
- #: ../classes/column.php:1305
198
  msgid "This is the name which will appear as the column header."
199
  msgstr "Questo è il nome che apparirà come intestazione della colonna."
200
 
201
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
202
  msgid "Width"
203
  msgstr "Larghezza"
204
 
205
- #: ../classes/column.php:1314
206
  msgid "default"
207
  msgstr "predefinito"
208
 
209
- #: ../classes/column.php:1315
210
  msgid "auto"
211
  msgstr "auto"
212
 
213
- #: ../classes/column/acf-placeholder.php:19
214
- msgid "ACF Field"
215
- msgstr "Campo ACF"
216
 
217
- #: ../classes/column/acf-placeholder.php:32
218
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
219
- msgstr "Questa funzione è disponibile solo in Admin Columns Pro - Business o Sviluppatore."
220
 
221
- #: ../classes/column/acf-placeholder.php:35
222
- #, php-format
223
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
224
- msgstr "Se hai una licenza di sviluppatore scarica e installa il tuo componente aggiuntivo ACF dal <a href='%s'> componente aggiuntivo tab </a>."
225
 
226
- #: ../classes/column/acf-placeholder.php:38
227
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
228
- msgstr "Admin Columns Pro - Sviluppatore offre piena integrazione ai Campi personalizzati avanzati, consente di visualizzare facilmente e modificare i campi ACF all'interno della panoramica messaggi."
229
 
230
- #: ../classes/column/acf-placeholder.php:44
231
- msgid "Find out more"
232
- msgstr "Per saperne di più"
233
 
234
- #: ../classes/column/actions.php:29
235
- msgid "Actions"
236
- msgstr "Azioni"
237
 
238
- #: ../classes/column/actions.php:96
239
- msgid "Use icons?"
240
- msgstr "Utilizzare le icone?"
241
 
242
- #: ../classes/column/actions.php:96
243
- msgid "Use icons instead of text for displaying the actions."
244
- msgstr "Utilizza le icone al posto del testo per visualizzare le azioni."
245
 
246
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
247
- msgid "Yes"
248
- msgstr "Si"
249
 
250
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
251
- msgid "No"
252
- msgstr "No"
253
 
254
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
255
- msgid "ID"
256
- msgstr "ID"
257
 
258
- #: ../classes/column/comment/agent.php:19
259
- msgid "Agent"
260
- msgstr "Agente"
261
 
262
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
263
- msgid "Approved"
264
- msgstr "Approvato"
265
 
266
- #: ../classes/column/comment/author-avatar.php:19
267
- msgid "Avatar"
268
- msgstr "Avatar"
269
 
270
- #: ../classes/column/comment/author-email.php:19
271
- msgid "Author email"
272
- msgstr "Email autore"
273
 
274
- #: ../classes/column/comment/author-ip.php:19
275
- msgid "Author IP"
276
- msgstr "IP autore"
277
 
278
- #: ../classes/column/comment/author-name.php:12
279
- msgid "Author name"
280
- msgstr "Nome autore"
281
 
282
- #: ../classes/column/comment/author-url.php:19
283
- msgid "Author url"
284
- msgstr "Url autore"
285
 
286
- #: ../classes/column/comment/author.php:19
287
- msgid "Author"
288
- msgstr "Autore"
289
 
290
- #: ../classes/column/comment/date-gmt.php:19
291
- msgid "Date GMT"
292
- msgstr "Data GTM"
293
 
294
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
295
- #, php-format
296
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
297
- msgstr "Inviato a <a href=\"%1$s\">%2$s a %3$s</a>"
298
 
299
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
300
- msgid "Date"
301
- msgstr "Data"
302
 
303
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
304
- msgid "Content"
305
- msgstr "Contenuto"
306
 
307
- #: ../classes/column/comment/reply-to.php:19
308
- msgid "In Reply To"
309
- msgstr "In risposta a"
310
 
311
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
312
- msgid "User"
313
- msgstr "Utente"
314
 
315
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
316
- msgid "Word count"
317
- msgstr "Conteggio parole"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
 
319
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
 
 
 
 
 
 
 
 
320
  msgid "Custom Field"
321
  msgstr "Campo personalizzato"
322
 
323
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
324
  msgid "Default"
325
  msgstr "Predefinito"
326
 
327
- #: ../classes/column/custom-field.php:95
328
- msgid "Checkmark (true/false)"
329
- msgstr "Segno di spunta (vero/falso)"
330
 
331
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
332
- msgid "Color"
333
- msgstr "Colore"
334
 
335
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
336
- msgid "Counter"
337
- msgstr "Contatore"
338
 
339
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
340
  msgid "Excerpt"
341
  msgstr "Riassunto"
342
 
343
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
344
- msgid "Image"
345
- msgstr "Immagine"
346
-
347
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
348
- msgid "Media Library"
349
- msgstr "Media Library"
350
 
351
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
352
  msgid "Multiple Values"
353
  msgstr "Valori multipli"
354
 
355
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
356
  msgid "Numeric"
357
  msgstr "Numerico"
358
 
359
- #: ../classes/column/custom-field.php:104
360
- msgid "Post Title (Post ID's)"
361
- msgstr "Titolo del post (ID Post)"
362
 
363
- #: ../classes/column/custom-field.php:105
364
- msgid "Username (User ID's)"
365
- msgstr "Nome utente (ID User)"
366
 
367
- #: ../classes/column/custom-field.php:106
368
- msgid "Term Name (Term ID's)"
369
- msgstr "Nome del termine (ID Termine)"
370
 
371
- #: ../classes/column/custom-field.php:390
372
- msgid "Select your custom field."
373
- msgstr "Seleziona il tuo campo personalizzato."
374
 
375
- #: ../classes/column/custom-field.php:400
376
- msgid "No custom fields available."
377
- msgstr "Nessun campo personalizzato disponibile."
378
 
379
- #: ../classes/column/custom-field.php:400
380
- #, php-format
381
- msgid "Please create a %s item first."
382
- msgstr "Per piacere prima crea un %s elemento."
383
 
384
- #: ../classes/column/custom-field.php:407
385
- msgid "Field Type"
386
- msgstr "Tipo di campo"
387
 
388
- #: ../classes/column/custom-field.php:407
389
- msgid "This will determine how the value will be displayed."
390
- msgstr "Questo determinerà come verrà visualizzato il valore."
391
 
392
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
393
- msgid "Description"
394
- msgstr "Descrizione"
395
 
396
- #: ../classes/column/link/length.php:19
397
- msgid "Length"
398
- msgstr "Lunghezza"
399
 
400
- #: ../classes/column/link/notes.php:19
401
- msgid "Notes"
402
- msgstr "Note"
403
 
404
- #: ../classes/column/link/owner.php:19
405
- msgid "Owner"
406
- msgstr "Proprietario"
407
 
408
- #: ../classes/column/link/rss.php:19
409
- msgid "Rss"
410
- msgstr "Rss"
411
 
412
- #: ../classes/column/link/target.php:19
413
- msgid "Target"
414
- msgstr "Destinazione"
415
 
416
- #: ../classes/column/media/alternate-text.php:19
417
- msgid "Alt"
418
- msgstr "Alt"
419
 
420
- #: ../classes/column/media/attached-to.php:19
421
- msgid "Attached to post"
422
- msgstr "Allegato al post"
423
 
424
- #: ../classes/column/media/available-sizes.php:20
425
- msgid "Available Sizes"
426
- msgstr "Dimensioni Disponibili"
427
 
428
- #: ../classes/column/media/available-sizes.php:40
429
- msgid "full size"
430
- msgstr "dimensione intera"
431
 
432
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
433
- msgid "Caption"
434
- msgstr "Didascalia"
435
 
436
- #: ../classes/column/media/dimensions.php:19
437
- msgid "Dimensions"
438
- msgstr "Dimensioni"
439
 
440
- #: ../classes/column/media/exif-data.php:19
441
- msgid "EXIF data"
442
- msgstr "Dati EXIF"
443
 
444
- #: ../classes/column/media/exif-data.php:38
445
- msgid "Aperture"
446
  msgstr ""
447
 
448
- #: ../classes/column/media/exif-data.php:39
449
- msgid "Credit"
450
- msgstr "Credito"
451
 
452
- #: ../classes/column/media/exif-data.php:40
453
- msgid "Camera"
454
- msgstr "Macchina fotografica"
455
 
456
- #: ../classes/column/media/exif-data.php:42
457
- msgid "Timestamp"
458
- msgstr "Marca temporale"
459
 
460
- #: ../classes/column/media/exif-data.php:43
461
- msgid "Copyright EXIF"
462
- msgstr "Copyright EXIF"
463
 
464
- #: ../classes/column/media/exif-data.php:44
465
- msgid "Focal Length"
466
- msgstr "Focale"
467
 
468
- #: ../classes/column/media/exif-data.php:45
469
- msgid "ISO"
470
- msgstr "ISO"
471
 
472
- #: ../classes/column/media/exif-data.php:46
473
- msgid "Shutter Speed"
474
- msgstr "Velocità otturatore"
475
 
476
- #: ../classes/column/media/exif-data.php:47
477
- msgid "Title"
478
- msgstr "Titolo"
479
 
480
- #: ../classes/column/media/file-name.php:19
481
- msgid "File name"
482
- msgstr "Nome del file"
483
 
484
- #: ../classes/column/media/file-size.php:19
485
- msgid "File size"
486
- msgstr "Dimensione del file"
487
 
488
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
489
- msgid "Full path"
490
- msgstr "Percorso completo"
491
 
492
- #: ../classes/column/media/full-path.php:83
493
- msgid "Path scope"
494
- msgstr "Percorso del campo"
495
 
496
- #: ../classes/column/media/full-path.php:84
497
- msgid "Part of the file path to display"
498
- msgstr "Parte del percorso del file da visualizzare"
499
 
500
- #: ../classes/column/media/full-path.php:97
501
- msgid "Relative to domain"
502
- msgstr "Relativo al dominio"
503
 
504
- #: ../classes/column/media/full-path.php:102
505
- msgid "Relative to main uploads folder "
506
- msgstr "Relativo alla cartella caricamenti principale"
507
 
508
- #: ../classes/column/media/height.php:19
509
- msgid "Height"
510
- msgstr "Altezza"
511
 
512
- #: ../classes/column/media/mime-type.php:19
513
- msgid "Mime type"
514
- msgstr "Tipi di MIME"
515
 
516
- #: ../classes/column/post/attachment-count.php:19
517
- msgid "No. of Attachments"
518
- msgstr "No. di allegati"
519
 
520
- #: ../classes/column/post/attachment.php:19
521
- msgid "Attachments"
522
- msgstr "Allegati"
523
 
524
- #: ../classes/column/post/author-name.php:20
525
- msgid "Display Author As"
526
  msgstr ""
527
 
528
- #: ../classes/column/post/before-moretag.php:19
529
- msgid "Before More Tag"
530
  msgstr ""
531
 
532
- #: ../classes/column/post/comment-count.php:20
533
- msgid "Comment count"
534
- msgstr "Conteggio commento"
535
 
536
- #: ../classes/column/post/comment-count.php:34
537
- msgid "Total"
538
- msgstr "Totale"
539
 
540
- #: ../classes/column/post/comment-count.php:36
541
- msgid "Pending"
542
- msgstr "In sospeso"
543
 
544
- #: ../classes/column/post/comment-count.php:37
545
- msgid "Spam"
546
- msgstr "Spam"
547
 
548
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
549
- msgid "Trash"
550
- msgstr "Cestino"
551
 
552
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
553
- msgid "Comment status"
554
- msgstr "Status del commento"
555
 
556
- #: ../classes/column/post/comment-count.php:99
557
- msgid "Select which comment status you like to display."
558
- msgstr "Seleziona lo status del commento che vuoi mostrare."
559
 
560
- #: ../classes/column/post/date-published.php:17
561
- msgid "Date Published"
562
- msgstr "Data di pubblicazione"
563
 
564
- #: ../classes/column/post/depth.php:19
565
- msgid "Depth"
566
- msgstr "Profondità"
567
 
568
- #: ../classes/column/post/estimated-reading-time.php:19
569
- msgid "Estimated Reading Time"
570
- msgstr "Tempo stimato di lettura"
571
 
572
- #: ../classes/column/post/estimated-reading-time.php:63
573
- msgid "second"
574
- msgid_plural "seconds"
575
- msgstr[0] "secondo"
576
- msgstr[1] "secondi"
577
 
578
- #: ../classes/column/post/estimated-reading-time.php:66
579
- msgid "minute"
580
- msgid_plural "minutes"
581
- msgstr[0] "minuto"
582
- msgstr[1] "minuti"
583
 
584
- #: ../classes/column/post/estimated-reading-time.php:103
585
- msgid "Words per minute"
586
- msgstr "Parole al minuto"
587
 
588
- #: ../classes/column/post/estimated-reading-time.php:104
589
- msgid "Estimated reading time in words per minute"
590
- msgstr "Tempo di lettura stimato in parole al minuto"
591
 
592
- #: ../classes/column/post/featured-image.php:19
593
- msgid "Featured Image"
594
- msgstr "Immagine di presentazione"
595
 
596
- #: ../classes/column/post/formats.php:19
597
- msgid "Post Format"
598
- msgstr "Formato Post"
599
 
600
- #: ../classes/column/post/last-modified-author.php:20
601
- msgid "Last Modified Author"
602
- msgstr "Ultima modifica Autore"
603
 
604
- #: ../classes/column/post/modified.php:19
605
- msgid "Last modified"
606
- msgstr "Ultima modifica"
607
 
608
- #: ../classes/column/post/order.php:19
609
- msgid "Page Order"
610
- msgstr "Ordine Pagina"
611
 
612
- #: ../classes/column/post/page-template.php:19
613
- msgid "Page Template"
614
- msgstr "Modello di pagina"
615
 
616
- #: ../classes/column/post/parent.php:19
617
- msgid "Parent"
618
- msgstr "Genitore"
619
 
620
- #: ../classes/column/post/path.php:19
621
- msgid "Path"
622
- msgstr "Percorso"
623
 
624
- #: ../classes/column/post/permalink.php:19
625
- msgid "Permalink"
626
- msgstr "Permalink"
627
 
628
- #: ../classes/column/post/permalink.php:68
629
- msgid "Link to post"
630
- msgstr "Link al post"
631
 
632
- #: ../classes/column/post/permalink.php:68
633
- msgid "This will make the permalink clickable."
634
- msgstr "Questo renderà il permalink cliccabile"
635
 
636
- #: ../classes/column/post/ping-status.php:19
637
- msgid "Ping status"
638
- msgstr "Status del ping"
639
 
640
- #: ../classes/column/post/roles.php:19
641
- msgid "Roles"
642
- msgstr "Ruoli"
643
 
644
- #: ../classes/column/post/shortcodes.php:19
645
- msgid "Shortcodes"
646
- msgstr "Shortcodes"
647
 
648
- #: ../classes/column/post/slug.php:19
649
- msgid "Slug"
 
 
 
 
650
  msgstr ""
651
 
652
- #: ../classes/column/post/status.php:19
653
- msgid "Status"
654
- msgstr "Status"
655
 
656
- #: ../classes/column/post/status.php:29
657
- msgid "Published"
658
- msgstr "Pubblicato"
659
 
660
- #: ../classes/column/post/status.php:30
661
- msgid "Draft"
662
- msgstr "Bozza"
663
 
664
- #: ../classes/column/post/status.php:31
665
- msgid "Scheduled"
666
- msgstr "Programmato"
667
 
668
- #: ../classes/column/post/status.php:32
669
- msgid "Private"
670
- msgstr "Privato"
671
 
672
- #: ../classes/column/post/status.php:33
673
- msgid "Pending Review"
674
- msgstr "Visualizzazione in sospeso"
675
 
676
- #: ../classes/column/post/status.php:34
677
- msgid "Auto Draft"
678
- msgstr "Auto Bozza"
679
 
680
- #: ../classes/column/post/sticky.php:19
681
- msgid "Sticky"
682
- msgstr "Sticky"
683
 
684
- #: ../classes/column/post/title-raw.php:19
685
- msgid "Title without actions"
686
- msgstr "Titolo senza azioni"
687
 
688
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
689
- msgid "Taxonomy"
690
- msgstr "Tassonomia"
691
 
692
- #: ../classes/column/used-by-menu.php:20
693
- msgid "Used by Menu"
694
- msgstr "Usato dal Menu"
695
 
696
- #: ../classes/column/used-by-menu.php:133
697
- msgid "Link to menu"
698
- msgstr "Collegamento al menù"
699
 
700
- #: ../classes/column/used-by-menu.php:133
701
- msgid "This will make the title link to the menu."
702
- msgstr "Questo farà il link del titolo al menu."
703
 
704
- #: ../classes/column/user/comment-count.php:19
705
- msgid "Comment Count"
706
- msgstr "Conteggio Commento"
707
 
708
- #: ../classes/column/user/display-name.php:19
709
- msgid "Display name"
710
- msgstr "Nome da visualizzare"
711
 
712
- #: ../classes/column/user/first-name.php:19
713
- msgid "First name"
714
- msgstr "Nome"
715
 
716
- #: ../classes/column/user/last-name.php:19
717
- msgid "Last name"
718
- msgstr "Cognome"
719
 
720
- #: ../classes/column/user/post-count.php:19
721
- msgid "Post Count"
722
- msgstr "Conteggio Post"
723
 
724
- #: ../classes/column/user/post-count.php:89
725
- msgid "Post Type"
726
- msgstr "Tipo di Post"
727
 
728
- #: ../classes/column/user/registered.php:19
729
- msgid "Registered"
730
- msgstr "Registrato"
731
 
732
- #: ../classes/column/user/rich-editing.php:19
733
- msgid "Visual Editor"
734
- msgstr ""
735
 
736
- #: ../classes/column/user/url.php:19
737
- msgid "Url"
738
- msgstr "Url"
739
 
740
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
741
- msgid "Admin Columns"
742
- msgstr "Admin Columns"
743
 
744
- #: ../classes/review_notice.php:58
745
- msgid "Admin Columns Pro"
746
- msgstr "Admin Columns Pro"
747
 
748
- #: ../classes/review_notice.php:65
749
- #, php-format
750
- 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."
751
- msgstr "Noi non intendiamo disturbarti, ma stai utilizzando %s da qualche tempo, e ci chiedevamo se sei soddisfatto del plugin. Se è così, potrebbe per favore lasciare una recensione presso wordpress.org? Se non sei soddisfatto con %s, per favore %s."
752
 
753
- #: ../classes/review_notice.php:68
754
- msgid "click here"
755
- msgstr "clicca qui"
756
 
757
- #: ../classes/review_notice.php:72
758
- msgid "Leave a review!"
759
- msgstr "Lascia un commento!"
760
 
761
- #: ../classes/review_notice.php:73
762
- msgid "Permanently hide notice"
763
- msgstr "Avvisi permanentemente nascosti"
764
 
765
- #: ../classes/review_notice.php:80
766
- #, php-format
767
- 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."
768
- msgstr "Siamo spiacenti di sentire questo; forse possiamo aiutare! Se stai avendo problemi di impostare correttamente %s o se vuoi aiuto con alcune caratteristiche più avanzate, si prega di visitare il nostro %s."
769
 
770
- #: ../classes/review_notice.php:82
771
- msgid "documentation page"
772
- msgstr "pagina di documentazione"
773
 
774
- #: ../classes/review_notice.php:86
775
- #, php-format
776
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
777
- msgstr "Come utente Admin Columns Pro, tu puoi anche utilizzare il tuo account di AdminColumns.com per accedere al supporto del prodotto attraverso %s!"
778
 
779
- #: ../classes/review_notice.php:87
780
- msgid "our forums"
781
- msgstr "i nostri forum"
782
 
783
- #: ../classes/review_notice.php:91
784
- #, php-format
785
- msgid "You can also find help on the %s, and %s."
786
- msgstr "Tu puoi anche trovare aiuto su %s, e %s."
787
 
788
- #: ../classes/review_notice.php:92
789
- msgid "Admin Columns forums on WordPress.org"
790
- msgstr "Forum di Admin Columns su WordPress.org"
791
 
792
- #: ../classes/review_notice.php:93
793
- msgid "find answers to some frequently asked questions"
794
- msgstr "trova le risposte ad alcune domande frequenti"
795
 
796
- #: ../classes/settings.php:112
797
- msgid "Add-on successfully activated."
798
- msgstr "Add-on attivato con successo."
799
 
800
- #: ../classes/settings.php:115
801
- msgid "Add-on successfully deactivated."
802
- msgstr "Add-on disattivato con successo."
803
 
804
- #: ../classes/settings.php:170
805
- msgid "Admin Columns Settings"
806
- msgstr "Impostazioni Admin Columns"
807
 
808
- #: ../classes/settings.php:220
809
- #, php-format
810
- msgid "%s column is already present and can not be duplicated."
811
- msgstr ""
812
 
813
- #: ../classes/settings.php:274
814
- msgid "Default settings succesfully restored."
815
- msgstr "Le impostazioni predefinite sono state ripristinate."
816
 
817
- #: ../classes/settings.php:291
818
- msgid "Overview"
819
- msgstr "Panoramica"
820
 
821
- #: ../classes/settings.php:294
822
- 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."
823
- msgstr ""
824
 
825
- #: ../classes/settings.php:297
826
- msgid "Basics"
827
- msgstr "Nozioni di base"
828
 
829
- #: ../classes/settings.php:299
830
- msgid "Change order"
831
- msgstr "Cambia ordine"
832
 
833
- #: ../classes/settings.php:300
834
- msgid "By dragging the columns you can change the order which they will appear in."
835
- msgstr "Trascinando le colonne puoi modificare l'ordine in cui appariranno."
836
 
837
- #: ../classes/settings.php:301
838
- msgid "Change label"
839
- msgstr "Cambia etichetta"
840
 
841
- #: ../classes/settings.php:302
842
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
843
- msgstr "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi cambiare l'etichetta di ogni intestazione di colonna."
844
 
845
- #: ../classes/settings.php:303
846
- msgid "Change column width"
847
- msgstr "Cambia la larghezza della colonna"
848
 
849
- #: ../classes/settings.php:304
850
- 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."
851
- msgstr "Cliccando sul triangolo potrai vedere le opzioni della colonna. Utilizzando il cursore trascinabile è possibile impostare la larghezza delle colonne in percentuali."
852
 
853
- #: ../classes/settings.php:310
854
- msgid "'Custom Field' column"
855
- msgstr "Colonna 'Campo Personalizzato'"
856
 
857
- #: ../classes/settings.php:311
858
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
859
- msgstr ""
860
 
861
- #: ../classes/settings.php:313
862
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
863
- msgstr ""
864
 
865
- #: ../classes/settings.php:314
866
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
867
- msgstr ""
868
 
869
- #: ../classes/settings.php:315
870
- msgid "Value: This will show the first 20 words of the Post content."
871
- msgstr "Valore: Mostrerà le prime 20 parole del contenuto dell'Articolo."
872
-
873
- #: ../classes/settings.php:316
874
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
875
- msgstr ""
876
 
877
- #: ../classes/settings.php:317
878
- 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."
879
- msgstr ""
880
 
881
- #: ../classes/settings.php:318
882
- #, php-format
883
- 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."
884
- msgstr ""
885
 
886
- #: ../classes/settings.php:319
887
- msgid "Post Titles"
888
- msgstr "Titoli dei Post"
889
 
890
- #: ../classes/settings.php:319
891
- msgid "Value: can be one or more Post ID's (seperated by ',')."
892
- msgstr "Valore: può essere uno o più ID Post (separati da ',')."
893
 
894
- #: ../classes/settings.php:320
895
- msgid "Usernames"
896
- msgstr "Nomi utente"
897
 
898
- #: ../classes/settings.php:320
899
- msgid "Value: can be one or more User ID's (seperated by ',')."
900
- msgstr "Valore: può essere uno o più ID Utente (separati da ',')."
901
 
902
- #: ../classes/settings.php:321
903
- msgid "Checkmark"
904
- msgstr "Segno di spunta"
905
 
906
- #: ../classes/settings.php:321
907
- msgid "Value: should be a 1 (one) or 0 (zero)."
908
- msgstr "Valore: dovrebbe essere un 1 (uno) o 0 (zero)."
909
 
910
- #: ../classes/settings.php:322
911
- msgid "Value: hex value color, such as #808080."
912
- msgstr "Valore: valore del colore esadecimale, ad esempio #808080."
913
 
914
- #: ../classes/settings.php:323
915
- 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."
916
- msgstr ""
917
 
918
- #: ../classes/settings.php:412
919
- msgid "Welcome to Admin Columns"
920
- msgstr "Benvenuto tu Admin Columns"
921
 
922
- #: ../classes/settings.php:415
923
- msgid "Thank you for updating to the latest version!"
924
- msgstr "Grazie per l'aggiornamento alla versione più recente!"
925
 
926
- #: ../classes/settings.php:416
927
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
928
- msgstr ""
929
 
930
- #: ../classes/settings.php:421
931
- msgid "What’s New"
932
- msgstr "Cosa c'è di nuovo"
933
 
934
- #: ../classes/settings.php:422
935
- msgid "Changelog"
936
- msgstr "Changelog"
937
 
938
- #: ../classes/settings.php:427
939
- msgid "Important"
940
- msgstr "Importante"
941
 
942
- #: ../classes/settings.php:429
943
- msgid "Database Changes"
944
- msgstr "Modifiche Database"
945
 
946
- #: ../classes/settings.php:430
947
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
948
- msgstr ""
949
 
950
- #: ../classes/settings.php:433
951
- msgid "Make sure you backup your database and then click"
952
  msgstr ""
953
 
954
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
955
- msgid "Upgrade Database"
956
- msgstr "Aggiornamento Database"
957
-
958
- #: ../classes/settings.php:436
959
- msgid "Potential Issues"
960
- msgstr "Potenziali problemi"
961
 
962
- #: ../classes/settings.php:437
963
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
964
- msgstr ""
965
 
966
- #: ../classes/settings.php:437
967
- msgid "Migrating from v1 to v2"
968
- msgstr "Migrazione da v1 a v2"
969
 
970
- #: ../classes/settings.php:437
971
- msgid "guide to view the full list of changes."
972
- msgstr "Guida per visualizzare l'elenco completo delle modifiche."
973
 
974
- #: ../classes/settings.php:437
975
- #, php-format
976
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
977
- msgstr ""
978
 
979
- #: ../classes/settings.php:440
980
- msgid "Important!"
981
- msgstr "Importante!"
982
 
983
- #: ../classes/settings.php:440
984
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
985
- msgstr ""
986
 
987
- #: ../classes/settings.php:440
988
- msgid "version 1"
989
- msgstr "versione 1"
990
 
991
- #: ../classes/settings.php:440
992
- msgid "of this plugin."
993
- msgstr "di questo plugin."
994
 
995
- #: ../classes/settings.php:446
996
- msgid "Changelog for"
997
- msgstr "Changelog per"
998
 
999
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1000
- msgid "Learn more"
1001
- msgstr "Leggi altro"
1002
 
1003
- #: ../classes/settings.php:471
1004
- msgid "Start using Admin Columns"
1005
- msgstr "Inizia ad utilizzare Admin Columns"
1006
 
1007
- #: ../classes/settings.php:490
1008
- msgid "General Settings"
1009
- msgstr "Impostazioni generali"
1010
 
1011
- #: ../classes/settings.php:491
1012
- msgid "Customize your Admin Columns settings."
1013
- msgstr ""
1014
 
1015
- #: ../classes/settings.php:502
1016
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1017
- msgstr ""
1018
 
1019
- #: ../classes/settings.php:509 ../classes/settings.php:673
1020
- msgid "Save"
1021
- msgstr "Salva"
1022
 
1023
- #: ../classes/settings.php:549
1024
- msgid "Restore Settings"
1025
- msgstr "Ripristina Impostazioni"
1026
 
1027
- #: ../classes/settings.php:550
1028
- msgid "This will delete all column settings and restore the default settings."
1029
- msgstr ""
1030
 
1031
- #: ../classes/settings.php:556
1032
- msgid "Restore default settings"
1033
- msgstr "Ripristina le impostazioni predefinite"
1034
 
1035
- #: ../classes/settings.php:556
1036
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1037
  msgstr ""
1038
 
1039
- #: ../classes/settings.php:572
1040
- msgid "Posttypes"
1041
  msgstr ""
1042
 
1043
- #: ../classes/settings.php:573
1044
- msgid "Others"
1045
- msgstr "Altri"
1046
-
1047
- #: ../classes/settings.php:574
1048
- msgid "Taxonomies"
1049
- msgstr "Tassonomie"
1050
-
1051
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1052
- msgid "Settings"
1053
- msgstr "Impostazioni"
1054
-
1055
- #: ../classes/settings.php:591
1056
- msgid "Add-ons"
1057
- msgstr "Componenti aggiuntivi"
1058
-
1059
- #: ../classes/settings.php:659
1060
- #, php-format
1061
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1062
  msgstr ""
1063
 
1064
- #: ../classes/settings.php:669
1065
- msgid "Store settings"
1066
- msgstr "Memorizza le impostazioni"
1067
-
1068
- #: ../classes/settings.php:673
1069
- msgid "Update"
1070
- msgstr "Aggiornamento"
1071
-
1072
- #: ../classes/settings.php:677
1073
- #, php-format
1074
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1075
  msgstr ""
1076
 
1077
- #: ../classes/settings.php:678
1078
- msgid "Restore"
1079
- msgstr "Ripristina"
1080
-
1081
- #: ../classes/settings.php:678
1082
- msgid "columns"
1083
- msgstr "colonne"
1084
-
1085
- #: ../classes/settings.php:697
1086
- msgid "Get Admin Columns Pro"
1087
- msgstr "Ottieni Admin Columns Pro"
1088
-
1089
- #: ../classes/settings.php:701
1090
- msgid "Add Sorting"
1091
- msgstr "Aggiungi ordinamento"
1092
-
1093
- #: ../classes/settings.php:702
1094
- msgid "Add Filtering"
1095
- msgstr "Aggiungi filtraggio"
1096
-
1097
- #: ../classes/settings.php:703
1098
- msgid "Add Import/Export"
1099
- msgstr "Aggiungi Import/Export"
1100
-
1101
- #: ../classes/settings.php:704
1102
- msgid "Add Direct Editing"
1103
- msgstr "Aggiungi modifica diretta"
1104
-
1105
- #: ../classes/settings.php:707
1106
- #, php-format
1107
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1108
- msgstr "Scopri <a href=\"%s\">Admin Columns Pro</a> per maggiori dettagli!"
1109
-
1110
- #: ../classes/settings.php:738
1111
- msgid "Are you happy with Admin Columns?"
1112
- msgstr "Sei felice con Admin Columns?"
1113
-
1114
- #: ../classes/settings.php:746
1115
- msgid "What's wrong? Need help? Let us know!"
1116
- msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
1117
-
1118
- #: ../classes/settings.php:747
1119
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1120
- msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
1121
-
1122
- #: ../classes/settings.php:755
1123
- msgid "Docs"
1124
- msgstr "Documenti"
1125
 
1126
- #: ../classes/settings.php:760
1127
- msgid "Forums"
1128
- msgstr "Forums"
1129
 
1130
- #: ../classes/settings.php:769
1131
- msgid "Woohoo! We're glad to hear that!"
1132
- msgstr "Woohoo! Siamo lieti di sentire questo!"
1133
 
1134
- #: ../classes/settings.php:770
1135
- 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!"
1136
- msgstr ""
1137
 
1138
- #: ../classes/settings.php:774
1139
- msgid "Rate"
1140
- msgstr ""
1141
 
1142
- #: ../classes/settings.php:785
1143
- msgid "Tweet"
1144
- msgstr "Tweet"
1145
 
1146
- #: ../classes/settings.php:795
1147
- msgid "Buy Pro"
1148
- msgstr "Acquista Pro"
1149
 
1150
- #: ../classes/settings.php:807
1151
- msgid "Support"
1152
- msgstr "Supporto"
1153
 
1154
- #: ../classes/settings.php:810
1155
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1156
- msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
1157
 
1158
- #: ../classes/settings.php:813
1159
- #, php-format
1160
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1161
- msgstr ""
 
1162
 
1163
- #: ../classes/settings.php:842
1164
- msgid "Drag and drop to reorder"
1165
- msgstr "Trascina e rilascia per riordinare"
 
 
1166
 
1167
- #: ../classes/settings.php:845
1168
- msgid "Add Column"
1169
- msgstr "Aggiungi colonna"
1170
 
1171
- #: ../classes/settings.php:926
1172
- msgid "Active"
1173
- msgstr "Attivo"
1174
 
1175
- #: ../classes/settings.php:927
1176
- msgid "Deactivate"
1177
- msgstr "Disattivare"
1178
 
1179
- #: ../classes/settings.php:934
1180
- msgid "Installed"
1181
- msgstr "Installato"
1182
 
1183
- #: ../classes/settings.php:935
1184
- msgid "Activate"
1185
- msgstr "Attivare"
1186
 
1187
- #: ../classes/settings.php:949
1188
- msgid "Download & Install"
1189
- msgstr "Scarica & Installa"
1190
 
1191
- #: ../classes/settings.php:954
1192
- msgid "Get this add-on"
1193
- msgstr "Ottieni questo componente aggiuntivo"
1194
 
1195
- #: ../classes/storage_model.php:237
1196
- msgid "settings succesfully restored."
1197
- msgstr "le impostazioni sono state ripristinate."
1198
 
1199
- #: ../classes/storage_model.php:253
1200
- msgid "No columns settings available."
1201
- msgstr "Nessuna impostazione colonne disponibile."
1202
 
1203
- #: ../classes/storage_model.php:274
1204
- #, php-format
1205
- msgid "You are trying to store the same settings for %s."
1206
- msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
1207
 
1208
- #: ../classes/storage_model.php:278
1209
- #, php-format
1210
- msgid "Settings for %s updated successfully."
1211
- msgstr "Impostazioni per %s aggiornato con successo."
1212
 
1213
- #: ../classes/storage_model.php:809
1214
- msgid "View"
1215
- msgstr "Visualizza"
1216
 
1217
- #: ../classes/storage_model/comment.php:13
1218
- msgid "Comments"
1219
- msgstr "Commenti"
1220
 
1221
- #: ../classes/storage_model/comment.php:14
1222
- msgid "Comment"
1223
- msgstr "Commento"
1224
 
1225
- #: ../classes/storage_model/link.php:13
1226
- msgid "Links"
1227
- msgstr "Links"
1228
 
1229
- #: ../classes/storage_model/link.php:14
1230
- msgid "Link"
1231
- msgstr "Link"
1232
 
1233
- #: ../classes/storage_model/media.php:14
1234
- msgid "Media"
1235
- msgstr "Media"
1236
 
1237
- #: ../classes/storage_model/user.php:13
1238
- msgid "Users"
1239
- msgstr "Utenti"
1240
 
1241
- #: ../classes/upgrade.php:62
1242
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
1243
- msgstr "L'add-on pro non è più supportato. Effettua il login sul account e scarica Admin Columns Pro"
1244
 
1245
- #: ../classes/upgrade.php:95
1246
- msgid "Upgrade"
1247
- msgstr "Aggiornamento"
1248
 
1249
- #: ../classes/upgrade.php:136
1250
- msgid "requires a database upgrade"
1251
- msgstr "richiede un aggiornamento del database"
1252
 
1253
- #: ../classes/upgrade.php:139
1254
- msgid "why?"
1255
- msgstr "perché?"
1256
 
1257
- #: ../classes/upgrade.php:140
1258
- msgid "Please"
1259
- msgstr "Per favore"
1260
 
1261
- #: ../classes/upgrade.php:141
1262
- msgid "backup your database"
1263
- msgstr "backup del tuo database"
1264
 
1265
- #: ../classes/upgrade.php:142
1266
- msgid "then click"
1267
- msgstr "quindi fai clic"
1268
 
1269
- #: ../classes/upgrade.php:351
1270
- msgid "Migrating Column Settings"
1271
- msgstr "Migrazione Impostazioni colonna"
1272
 
1273
- #: ../classes/upgrade.php:387
1274
- msgid "No Upgrade Required"
1275
- msgstr "Nessun aggiornamento richiesto"
1276
 
1277
- #: ../classes/upgrade.php:388
1278
- msgid "Return to welcome screen."
1279
- msgstr "Tornare alla schermata di benvenuto."
1280
 
1281
- #: ../classes/upgrade.php:406
1282
- msgid "Upgrade Complete!"
1283
- msgstr "Aggiornamento completato!"
1284
 
1285
- #: ../classes/upgrade.php:406
1286
- msgid "Return to settings."
1287
- msgstr "Torna alle impostazioni."
1288
 
1289
- #: ../classes/upgrade.php:407
1290
- msgid "Error"
1291
- msgstr "Errore"
1292
 
1293
- #: ../classes/upgrade.php:408
1294
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1295
- msgstr "Scusa. Qualcosa è andato storto durante il processo di aggiornamento. Si prega di segnalare questo sul forum di supporto."
1296
 
1297
- #: ../codepress-admin-columns.php:444
1298
- msgid "Edit columns"
1299
- msgstr "Modifica colonne"
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Adriano Genovese <adrygese@gmail.com>, 2015
5
+ # Adriano Genovese <adrygese@gmail.com>, 2015
6
  # francesco <francesco.tosi@gmail.com>, 2014
7
  # Werther <werther.d@gmail.com>, 2013
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: Admin Columns\n"
11
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
12
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
13
  "Last-Translator: Codepress <info@codepress.nl>\n"
14
+ "Language-Team: Italian (Italy) (http://www.transifex.com/codepress/admin-columns/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
+ "POT-Creation-Date: \n"
24
+ "X-Generator: Poedit 1.8.5\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
27
+
28
+ #: ../codepress-admin-columns.php:451
29
+ msgid "Edit columns"
30
+ msgstr "Modifica colonne"
 
 
31
 
32
  #: ../classes/addons.php:110
33
  msgid "Plugins"
39
 
40
  #: ../classes/addons.php:136
41
  msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
42
+ msgstr "Visualizza e modifica i Campi personalizzati avanzati nella panoramica degli articoli in pochi secondi!"
43
 
44
  #: ../classes/addons.php:141
45
  msgid "WooCommerce"
49
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
50
  msgstr "Valorizzare i prodotti, ordini e panoramiche coupons con nuove colonne e modifica in linea."
51
 
52
+ #: ../classes/column.php:624
53
  msgid "Thumbnail"
54
  msgstr "Miniatura"
55
 
56
+ #: ../classes/column.php:625
57
  msgid "Medium"
58
  msgstr "Media"
59
 
60
+ #: ../classes/column.php:626
61
  msgid "Large"
62
  msgstr "Grande"
63
 
64
+ #: ../classes/column.php:627
65
  msgid "Full"
66
  msgstr "Dimensione reale"
67
 
68
+ #: ../classes/column.php:1059
69
+ msgid "Exact match"
70
+ msgstr ""
71
+
72
+ #: ../classes/column.php:1060
73
+ msgid "Lesser than"
74
+ msgstr ""
75
+
76
+ #: ../classes/column.php:1061
77
+ msgid "Greater than"
78
+ msgstr ""
79
+
80
+ #: ../classes/column.php:1062
81
+ msgid "Between"
82
+ msgstr ""
83
+
84
+ #: ../classes/column.php:1089
85
  msgid "Date Format"
86
  msgstr "Formato Data"
87
 
88
+ #: ../classes/column.php:1090
89
  msgid "This will determine how the date will be displayed."
90
  msgstr "Questo determinerà il modo in cui verrà visualizzata la data."
91
 
92
+ #: ../classes/column.php:1096
93
  msgid "Example:"
94
  msgstr "Esempio:"
95
 
96
+ #: ../classes/column.php:1098
97
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
98
+ msgstr ""
 
99
 
100
+ #: ../classes/column.php:1099
101
  msgid "Documentation on date and time formatting."
102
  msgstr "Documentazione sulla formattazione \"data e ora\"."
103
 
104
+ #: ../classes/column.php:1113
105
  msgid "Excerpt length"
106
  msgstr "Lunghezza riassunto"
107
 
108
+ #: ../classes/column.php:1114
109
  msgid "Number of words"
110
  msgstr "Numero di parole"
111
 
112
+ #: ../classes/column.php:1132
113
  msgid "Preview size"
114
  msgstr "Dimensione anteprima"
115
 
116
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
117
  msgid "Custom"
118
  msgstr "Personalizzata"
119
 
120
+ #: ../classes/column.php1152, ../classes/column.php:1328
121
  msgid "width"
122
  msgstr "larghezza"
123
 
124
+ #: ../classes/column.php:1155
125
  msgid "height"
126
  msgstr "altezza"
127
 
128
+ #: ../classes/column.php:1167
129
  msgid "Before"
130
  msgstr "Prima"
131
 
132
+ #: ../classes/column.php:1167
133
  msgid "This text will appear before the custom field value."
134
  msgstr "Questo testo apparirà prima del valore campo personalizzato."
135
 
136
+ #: ../classes/column.php:1168
137
  msgid "After"
138
  msgstr "Dopo"
139
 
140
+ #: ../classes/column.php:1168
141
  msgid "This text will appear after the custom field value."
142
  msgstr "Questo testo apparirà dopo il valore campo personalizzato."
143
 
144
+ #: ../classes/column.php:1177
145
  msgid "Display Name"
146
  msgstr "Nome da visualizzare"
147
 
148
+ #: ../classes/column.php1178, ../classes/settings.php:733
149
  msgid "First Name"
150
  msgstr "Nome"
151
 
152
+ #: ../classes/column.php:1179
153
  msgid "Last Name"
154
  msgstr "Cognome"
155
 
156
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
157
  msgid "Nickname"
158
  msgstr "Soprannome"
159
 
160
+ #: ../classes/column.php:1181
161
  msgid "User Login"
162
  msgstr "Login utente"
163
 
164
+ #: ../classes/column.php:1182
165
  msgid "User Email"
166
  msgstr "Email utente"
167
 
168
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
169
  msgid "User ID"
170
  msgstr "ID utente"
171
 
172
+ #: ../classes/column.php:1184
173
  msgid "First and Last Name"
174
  msgstr "Nome e Cognome"
175
 
176
+ #: ../classes/column.php:1187
177
  msgid "Display format"
178
  msgstr "Formato di visualizzazione"
179
 
180
+ #: ../classes/column.php:1187
181
  msgid "This is the format of the author name."
182
  msgstr "Questo è il formato del nome autore."
183
 
184
+ #: ../classes/column.php:1350
185
  msgid "Edit"
186
  msgstr "Modifica"
187
 
188
+ #: ../classes/column.php1352, ../classes/column.php:1444
189
  msgid "Clone"
190
  msgstr "Clone"
191
 
192
+ #: ../classes/column.php:1354
193
  msgid "Remove"
194
  msgstr "Rimuovi"
195
 
196
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
197
  msgid "Type"
198
  msgstr "TIpo"
199
 
200
+ #: ../classes/column.php:1372
201
  msgid "Choose a column type."
202
  msgstr "Scegli un tipo di colonna."
203
 
204
+ #: ../classes/column.php:1372
205
  msgid "Name"
206
  msgstr "Nome"
207
 
208
+ #: ../classes/column.php:1382
209
  msgid "Label"
210
  msgstr "Etichetta"
211
 
212
+ #: ../classes/column.php:1382
213
  msgid "This is the name which will appear as the column header."
214
  msgstr "Questo è il nome che apparirà come intestazione della colonna."
215
 
216
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
217
  msgid "Width"
218
  msgstr "Larghezza"
219
 
220
+ #: ../classes/column.php:1391
221
  msgid "default"
222
  msgstr "predefinito"
223
 
224
+ #: ../classes/column.php:1392
225
  msgid "auto"
226
  msgstr "auto"
227
 
228
+ #: ../classes/column.php:1466
229
+ msgid "Property To Display"
230
+ msgstr ""
231
 
232
+ #: ../classes/column.php:1472
233
+ msgid "Post property to display for related post(s)."
234
+ msgstr ""
235
 
236
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
237
+ msgid "Link To"
238
+ msgstr ""
 
239
 
240
+ #: ../classes/column.php:1489
241
+ msgid "Edit Post Author"
242
+ msgstr ""
243
 
244
+ #: ../classes/column.php:1490
245
+ msgid "View Public Post Author Page"
246
+ msgstr ""
247
 
248
+ #: ../classes/column.php:1492
249
+ msgid "Page the posts should link to."
250
+ msgstr ""
251
 
252
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
253
+ msgid "Admin Columns"
254
+ msgstr "Admin Columns"
255
 
256
+ #: ../classes/review_notice.php:58
257
+ msgid "Admin Columns Pro"
258
+ msgstr "Admin Columns Pro"
259
 
260
+ #: ../classes/review_notice.php:68
261
+ msgid "click here"
262
+ msgstr "clicca qui"
263
 
264
+ #: ../classes/review_notice.php:72
265
+ msgid "Leave a review!"
266
+ msgstr "Lascia un commento!"
267
 
268
+ #: ../classes/review_notice.php:73
269
+ msgid "Permanently hide notice"
270
+ msgstr "Avvisi permanentemente nascosti"
271
 
272
+ #: ../classes/review_notice.php:80
273
+ 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."
274
+ msgstr "Siamo spiacenti di sentire questo; forse possiamo aiutare! Se stai avendo problemi di impostare correttamente %s o se vuoi aiuto con alcune caratteristiche più avanzate, si prega di visitare il nostro %s."
275
 
276
+ #: ../classes/review_notice.php:82
277
+ msgid "documentation page"
278
+ msgstr "pagina di documentazione"
279
 
280
+ #: ../classes/review_notice.php:86
281
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
282
+ msgstr "Come utente Admin Columns Pro, tu puoi anche utilizzare il tuo account di AdminColumns.com per accedere al supporto del prodotto attraverso %s!"
283
 
284
+ #: ../classes/review_notice.php:87
285
+ msgid "our forums"
286
+ msgstr "i nostri forum"
287
 
288
+ #: ../classes/review_notice.php:91
289
+ msgid "You can also find help on the %s, and %s."
290
+ msgstr "Tu puoi anche trovare aiuto su %s, e %s."
291
 
292
+ #: ../classes/review_notice.php:92
293
+ msgid "Admin Columns forums on WordPress.org"
294
+ msgstr "Forum di Admin Columns su WordPress.org"
295
 
296
+ #: ../classes/review_notice.php:93
297
+ msgid "find answers to some frequently asked questions"
298
+ msgstr "trova le risposte ad alcune domande frequenti"
299
 
300
+ #: ../classes/settings.php:113
301
+ msgid "Add-on successfully activated."
302
+ msgstr "Add-on attivato con successo."
303
 
304
+ #: ../classes/settings.php:116
305
+ msgid "Add-on successfully deactivated."
306
+ msgstr "Add-on disattivato con successo."
307
 
308
+ #: ../classes/settings.php:170
309
+ msgid "Admin Columns Settings"
310
+ msgstr "Impostazioni Admin Columns"
 
311
 
312
+ #: ../classes/settings.php:228
313
+ msgid "%s column is already present and can not be duplicated."
314
+ msgstr "Colonna %s è già presente e non può essere duplicata."
315
 
316
+ #: ../classes/settings.php:284
317
+ msgid "Default settings succesfully restored."
318
+ msgstr "Le impostazioni predefinite sono state ripristinate."
319
 
320
+ #: ../classes/settings.php:301
321
+ msgid "Overview"
322
+ msgstr "Panoramica"
323
 
324
+ #: ../classes/settings.php:304
325
+ 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."
326
+ msgstr ""
327
 
328
+ #: ../classes/settings.php:307
329
+ msgid "Basics"
330
+ msgstr "Nozioni di base"
331
+
332
+ #: ../classes/settings.php:309
333
+ msgid "Change order"
334
+ msgstr "Cambia ordine"
335
+
336
+ #: ../classes/settings.php:310
337
+ msgid "By dragging the columns you can change the order which they will appear in."
338
+ msgstr "Trascinando le colonne puoi modificare l'ordine in cui appariranno."
339
+
340
+ #: ../classes/settings.php:311
341
+ msgid "Change label"
342
+ msgstr "Cambia etichetta"
343
+
344
+ #: ../classes/settings.php:312
345
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
346
+ msgstr "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi cambiare l'etichetta di ogni intestazione di colonna."
347
 
348
+ #: ../classes/settings.php:313
349
+ msgid "Change column width"
350
+ msgstr "Cambia la larghezza della colonna"
351
+
352
+ #: ../classes/settings.php:314
353
+ 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."
354
+ msgstr "Cliccando sul triangolo potrai vedere le opzioni della colonna. Utilizzando il cursore trascinabile è possibile impostare la larghezza delle colonne in percentuali."
355
+
356
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
357
  msgid "Custom Field"
358
  msgstr "Campo personalizzato"
359
 
360
+ #: ../classes/settings.php:320
361
+ msgid "'Custom Field' column"
362
+ msgstr "Colonna 'Campo Personalizzato'"
363
+
364
+ #: ../classes/settings.php:321
365
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
366
+ msgstr ""
367
+
368
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
369
  msgid "Default"
370
  msgstr "Predefinito"
371
 
372
+ #: ../classes/settings.php:323
373
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
374
+ msgstr ""
375
 
376
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
377
+ msgid "Image"
378
+ msgstr "Immagine"
379
 
380
+ #: ../classes/settings.php:324
381
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
382
+ msgstr ""
383
 
384
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
385
  msgid "Excerpt"
386
  msgstr "Riassunto"
387
 
388
+ #: ../classes/settings.php:325
389
+ msgid "Value: This will show the first 20 words of the Post content."
390
+ msgstr "Valore: Mostrerà le prime 20 parole del contenuto dell'Articolo."
 
 
 
 
391
 
392
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
393
  msgid "Multiple Values"
394
  msgstr "Valori multipli"
395
 
396
+ #: ../classes/settings.php:326
397
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
398
+ msgstr ""
399
+
400
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
401
  msgid "Numeric"
402
  msgstr "Numerico"
403
 
404
+ #: ../classes/settings.php:327
405
+ 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."
406
+ msgstr ""
407
 
408
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
409
+ msgid "Date"
410
+ msgstr "Data"
411
 
412
+ #: ../classes/settings.php:328
413
+ 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."
414
+ msgstr ""
415
 
416
+ #: ../classes/settings.php:329
417
+ msgid "Post Titles"
418
+ msgstr "Titoli dell'Articolo"
419
 
420
+ #: ../classes/settings.php:329
421
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
422
+ msgstr "Valore: può essere uno o più ID Articolo (separati da ',')."
423
 
424
+ #: ../classes/settings.php:330
425
+ msgid "Usernames"
426
+ msgstr "Nomi utente"
 
427
 
428
+ #: ../classes/settings.php:330
429
+ msgid "Value: can be one or more User ID's (seperated by ',')."
430
+ msgstr "Valore: può essere uno o più ID Utente (separati da ',')."
431
 
432
+ #: ../classes/settings.php:331
433
+ msgid "Checkmark"
434
+ msgstr "Segno di spunta"
435
 
436
+ #: ../classes/settings.php:331
437
+ msgid "Value: should be a 1 (one) or 0 (zero)."
438
+ msgstr "Valore: dovrebbe essere un 1 (uno) o 0 (zero)."
439
 
440
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
441
+ msgid "Color"
442
+ msgstr "Colore"
443
 
444
+ #: ../classes/settings.php:332
445
+ msgid "Value: hex value color, such as #808080."
446
+ msgstr "Valore: valore del colore esadecimale, ad esempio #808080."
447
 
448
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
449
+ msgid "Counter"
450
+ msgstr "Contatore"
451
 
452
+ #: ../classes/settings.php:333
453
+ 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."
454
+ msgstr ""
455
 
456
+ #: ../classes/settings.php:422
457
+ msgid "Welcome to Admin Columns"
458
+ msgstr "Benvenuto tu Admin Columns"
459
 
460
+ #: ../classes/settings.php:425
461
+ msgid "Thank you for updating to the latest version!"
462
+ msgstr "Grazie per l'aggiornamento alla versione più recente!"
463
 
464
+ #: ../classes/settings.php:426
465
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
466
+ msgstr ""
467
 
468
+ #: ../classes/settings.php:431
469
+ msgid "What’s New"
470
+ msgstr "Cosa c'è di nuovo"
471
 
472
+ #: ../classes/settings.php:432
473
+ msgid "Changelog"
474
+ msgstr "Changelog"
475
 
476
+ #: ../classes/settings.php:437
477
+ msgid "Important"
478
+ msgstr "Importante"
479
 
480
+ #: ../classes/settings.php:439
481
+ msgid "Database Changes"
482
+ msgstr "Modifiche Database"
483
 
484
+ #: ../classes/settings.php:440
485
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
486
+ msgstr ""
487
 
488
+ #: ../classes/settings.php:443
489
+ msgid "Make sure you backup your database and then click"
490
  msgstr ""
491
 
492
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
493
+ msgid "Upgrade Database"
494
+ msgstr "Aggiornamento Database"
495
 
496
+ #: ../classes/settings.php:446
497
+ msgid "Potential Issues"
498
+ msgstr "Potenziali problemi"
499
 
500
+ #: ../classes/settings.php:447
501
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
502
+ msgstr ""
503
 
504
+ #: ../classes/settings.php:447
505
+ msgid "Migrating from v1 to v2"
506
+ msgstr "Migrazione da v1 a v2"
507
 
508
+ #: ../classes/settings.php:447
509
+ msgid "guide to view the full list of changes."
510
+ msgstr "Guida per visualizzare l'elenco completo delle modifiche."
511
 
512
+ #: ../classes/settings.php:447
513
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
514
+ msgstr ""
515
 
516
+ #: ../classes/settings.php:450
517
+ msgid "Important!"
518
+ msgstr "Importante!"
519
 
520
+ #: ../classes/settings.php:450
521
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
522
+ msgstr ""
523
 
524
+ #: ../classes/settings.php:450
525
+ msgid "version 1"
526
+ msgstr "versione 1"
527
 
528
+ #: ../classes/settings.php:450
529
+ msgid "of this plugin."
530
+ msgstr "di questo plugin."
531
 
532
+ #: ../classes/settings.php:456
533
+ msgid "Changelog for"
534
+ msgstr "Changelog per"
535
 
536
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
537
+ msgid "Learn more"
538
+ msgstr "Leggi altro"
539
 
540
+ #: ../classes/settings.php:481
541
+ msgid "Start using Admin Columns"
542
+ msgstr "Inizia ad utilizzare Admin Columns"
543
 
544
+ #: ../classes/settings.php:500
545
+ msgid "General Settings"
546
+ msgstr "Impostazioni generali"
547
 
548
+ #: ../classes/settings.php:501
549
+ msgid "Customize your Admin Columns settings."
550
+ msgstr "Personalizza le impostazioni del tuo Admin Columns"
551
 
552
+ #: ../classes/settings.php:512
553
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
554
+ msgstr ""
555
 
556
+ #: ../classes/settings.php:559
557
+ msgid "Restore Settings"
558
+ msgstr "Ripristina Impostazioni"
559
 
560
+ #: ../classes/settings.php:560
561
+ msgid "This will delete all column settings and restore the default settings."
562
+ msgstr ""
563
 
564
+ #: ../classes/settings.php:566
565
+ msgid "Restore default settings"
566
+ msgstr "Ripristina le impostazioni predefinite"
567
 
568
+ #: ../classes/settings.php:566
569
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
570
  msgstr ""
571
 
572
+ #: ../classes/settings.php:582
573
+ msgid "Posttypes"
574
  msgstr ""
575
 
576
+ #: ../classes/settings.php:583
577
+ msgid "Others"
578
+ msgstr "Altri"
579
 
580
+ #: ../classes/settings.php:584
581
+ msgid "Taxonomies"
582
+ msgstr "Tassonomie"
583
 
584
+ #: ../classes/settings.php:600
585
+ msgid "Settings"
586
+ msgstr "Impostazioni"
587
 
588
+ #: ../classes/settings.php:601
589
+ msgid "Add-ons"
590
+ msgstr "Componenti aggiuntivi"
591
 
592
+ #: ../classes/settings.php:669
593
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
594
+ msgstr ""
595
 
596
+ #: ../classes/settings.php:679
597
+ msgid "Store settings"
598
+ msgstr "Memorizza le impostazioni"
599
 
600
+ #: ../classes/settings.php:687
601
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
602
+ msgstr ""
603
 
604
+ #: ../classes/settings.php:688
605
+ msgid "Restore"
606
+ msgstr "Ripristina"
607
 
608
+ #: ../classes/settings.php:688
609
+ msgid "columns"
610
+ msgstr "colonne"
611
 
612
+ #: ../classes/settings.php:707
613
+ msgid "Get Admin Columns Pro"
614
+ msgstr "Ottieni Admin Columns Pro"
615
 
616
+ #: ../classes/settings.php:711
617
+ msgid "Add Sorting"
618
+ msgstr "Aggiungi ordinamento"
 
 
619
 
620
+ #: ../classes/settings.php:712
621
+ msgid "Add Filtering"
622
+ msgstr "Aggiungi filtraggio"
 
 
623
 
624
+ #: ../classes/settings.php:713
625
+ msgid "Add Import/Export"
626
+ msgstr "Aggiungi Import/Export"
627
 
628
+ #: ../classes/settings.php:714
629
+ msgid "Add Direct Editing"
630
+ msgstr "Aggiungi modifica diretta"
631
 
632
+ #: ../classes/settings.php:717
633
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
634
+ msgstr ""
635
 
636
+ #: ../classes/settings.php:730
637
+ msgid "Subscribe to receive news &amp; updates below."
638
+ msgstr ""
639
 
640
+ #: ../classes/settings.php:737
641
+ msgid "Your Email"
642
+ msgstr ""
643
 
644
+ #: ../classes/settings.php:748
645
+ msgid "Are you happy with Admin Columns?"
646
+ msgstr "Sei felice con Admin Columns?"
647
 
648
+ #: ../classes/settings.php:756
649
+ msgid "What's wrong? Need help? Let us know!"
650
+ msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
651
 
652
+ #: ../classes/settings.php:757
653
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
654
+ msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
655
 
656
+ #: ../classes/settings.php:765
657
+ msgid "Docs"
658
+ msgstr "Documenti"
659
 
660
+ #: ../classes/settings.php:770
661
+ msgid "Forums"
662
+ msgstr "Forums"
663
 
664
+ #: ../classes/settings.php:779
665
+ msgid "Woohoo! We're glad to hear that!"
666
+ msgstr "Woohoo! Siamo lieti di sentire questo!"
667
 
668
+ #: ../classes/settings.php:780
669
+ 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!"
670
+ msgstr ""
671
 
672
+ #: ../classes/settings.php:784
673
+ msgid "Rate"
674
+ msgstr ""
675
 
676
+ #: ../classes/settings.php:795
677
+ msgid "Tweet"
678
+ msgstr "Tweet"
679
 
680
+ #: ../classes/settings.php:805
681
+ msgid "Buy Pro"
682
+ msgstr "Acquista Pro"
683
 
684
+ #: ../classes/settings.php:817
685
+ msgid "Support"
686
+ msgstr "Supporto"
687
 
688
+ #: ../classes/settings.php:820
689
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
690
+ msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
691
+
692
+ #: ../classes/settings.php:823
693
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
694
  msgstr ""
695
 
696
+ #: ../classes/settings.php:852
697
+ msgid "Drag and drop to reorder"
698
+ msgstr "Trascina e rilascia per riordinare"
699
 
700
+ #: ../classes/settings.php:855
701
+ msgid "Add Column"
702
+ msgstr "Aggiungi colonna"
703
 
704
+ #: ../classes/settings.php:936
705
+ msgid "Active"
706
+ msgstr "Attivo"
707
 
708
+ #: ../classes/settings.php:937
709
+ msgid "Deactivate"
710
+ msgstr "Disattivare"
711
 
712
+ #: ../classes/settings.php:944
713
+ msgid "Installed"
714
+ msgstr "Installato"
715
 
716
+ #: ../classes/settings.php:945
717
+ msgid "Activate"
718
+ msgstr "Attivare"
719
 
720
+ #: ../classes/settings.php:959
721
+ msgid "Download & Install"
722
+ msgstr "Scarica & Installa"
723
 
724
+ #: ../classes/settings.php:964
725
+ msgid "Get this add-on"
726
+ msgstr "Ottieni questo componente aggiuntivo"
727
 
728
+ #: ../classes/storage_model.php:262
729
+ msgid "settings succesfully restored."
730
+ msgstr "le impostazioni sono state ripristinate."
731
 
732
+ #: ../classes/storage_model.php:278
733
+ msgid "No columns settings available."
734
+ msgstr "Nessuna impostazione colonne disponibile."
735
 
736
+ #: ../classes/storage_model.php:299
737
+ msgid "You are trying to store the same settings for %s."
738
+ msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
739
 
740
+ #: ../classes/storage_model.php:303
741
+ msgid "Settings for %s updated successfully."
742
+ msgstr "Impostazioni per %s aggiornato con successo."
743
 
744
+ #: ../classes/storage_model.php:643
745
+ msgid "Columns by Plugins"
746
+ msgstr ""
747
 
748
+ #: ../classes/storage_model.php:862
749
+ msgid "View"
750
+ msgstr "Visualizza"
751
 
752
+ #: ../classes/upgrade.php:62
753
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
754
+ msgstr "L'add-on pro non è più supportato. Effettua il login sul account e scarica Admin Columns Pro"
755
 
756
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
757
+ msgid "Upgrade"
758
+ msgstr "Aggiornamento"
759
 
760
+ #: ../classes/upgrade.php:136
761
+ msgid "requires a database upgrade"
762
+ msgstr "richiede un aggiornamento del database"
763
 
764
+ #: ../classes/upgrade.php:139
765
+ msgid "why?"
766
+ msgstr "perché?"
767
 
768
+ #: ../classes/upgrade.php:140
769
+ msgid "Please"
770
+ msgstr "Per favore"
771
 
772
+ #: ../classes/upgrade.php:141
773
+ msgid "backup your database"
774
+ msgstr "backup del tuo database"
775
 
776
+ #: ../classes/upgrade.php:142
777
+ msgid "then click"
778
+ msgstr "quindi fai clic"
779
 
780
+ #: ../classes/upgrade.php:351
781
+ msgid "Migrating Column Settings"
782
+ msgstr "Migrazione Impostazioni colonna"
783
 
784
+ #: ../classes/upgrade.php:387
785
+ msgid "No Upgrade Required"
786
+ msgstr "Nessun aggiornamento richiesto"
787
 
788
+ #: ../classes/upgrade.php:388
789
+ msgid "Return to welcome screen."
790
+ msgstr "Tornare alla schermata di benvenuto."
791
 
792
+ #: ../classes/upgrade.php:406
793
+ msgid "Upgrade Complete!"
794
+ msgstr "Aggiornamento completato!"
 
795
 
796
+ #: ../classes/upgrade.php:406
797
+ msgid "Return to settings."
798
+ msgstr "Torna alle impostazioni."
799
 
800
+ #: ../classes/upgrade.php:407
801
+ msgid "Error"
802
+ msgstr "Errore"
803
 
804
+ #: ../classes/upgrade.php:408
805
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
806
+ msgstr "Scusa. Qualcosa è andato storto durante il processo di aggiornamento. Si prega di segnalare questo sul forum di supporto."
807
 
808
+ #: ../classes/column/acf-placeholder.php:19
809
+ msgid "ACF Field"
810
+ msgstr "Campo ACF"
 
811
 
812
+ #: ../classes/column/acf-placeholder.php:35
813
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
814
+ msgstr "Se hai una licenza di sviluppatore scarica e installa il tuo componente aggiuntivo ACF dal <a href='%s'> componente aggiuntivo tab </a>."
815
 
816
+ #: ../classes/column/acf-placeholder.php:38
817
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
818
+ msgstr "Admin Columns Pro - Sviluppatore offre piena integrazione ai Campi personalizzati avanzati, consente di visualizzare facilmente e modificare i campi ACF all'interno della panoramica articoli."
 
819
 
820
+ #: ../classes/column/acf-placeholder.php:44
821
+ msgid "Find out more"
822
+ msgstr "Per saperne di più"
823
 
824
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
825
+ msgid "Actions"
826
+ msgstr "Azioni"
 
827
 
828
+ #: ../classes/column/actions.php:96
829
+ msgid "Use icons?"
830
+ msgstr "Utilizzare le icone?"
831
 
832
+ #: ../classes/column/actions.php:96
833
+ msgid "Use icons instead of text for displaying the actions."
834
+ msgstr "Utilizza le icone al posto del testo per visualizzare le azioni."
835
 
836
+ #: ../classes/column/custom-field.php:96
837
+ msgid "Checkmark (true/false)"
838
+ msgstr "Segno di spunta (vero/falso)"
839
 
840
+ #: ../classes/column/custom-field.php:102
841
+ msgid "Media Library"
842
+ msgstr "Media Library"
843
 
844
+ #: ../classes/column/custom-field.php:105
845
+ msgid "Post Title (Post ID's)"
846
+ msgstr "Titolo dell'articolo (ID Articolo)"
847
 
848
+ #: ../classes/column/custom-field.php:106
849
+ msgid "Username (User ID's)"
850
+ msgstr "Nome utente (ID User)"
 
851
 
852
+ #: ../classes/column/custom-field.php:107
853
+ msgid "Term Name (Term ID's)"
854
+ msgstr "Nome del termine (ID Termine)"
855
 
856
+ #: ../classes/column/custom-field.php:391
857
+ msgid "Select your custom field."
858
+ msgstr "Seleziona il tuo campo personalizzato."
859
 
860
+ #: ../classes/column/custom-field.php:401
861
+ msgid "No custom fields available."
862
+ msgstr "Nessun campo personalizzato disponibile."
863
 
864
+ #: ../classes/column/custom-field.php:401
865
+ msgid "Please create a %s item first."
866
+ msgstr "Per piacere prima crea un %s elemento."
867
 
868
+ #: ../classes/column/custom-field.php:408
869
+ msgid "Field Type"
870
+ msgstr "Tipo di campo"
871
 
872
+ #: ../classes/column/custom-field.php:408
873
+ msgid "This will determine how the value will be displayed."
874
+ msgstr "Questo determinerà come verrà visualizzato il valore."
875
 
876
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
877
+ msgid "Taxonomy"
878
+ msgstr "Tassonomia"
879
 
880
+ #: ../classes/column/used-by-menu.php:20
881
+ msgid "Used by Menu"
882
+ msgstr "Usato dal Menu"
883
 
884
+ #: ../classes/column/used-by-menu.php:133
885
+ msgid "Link to menu"
886
+ msgstr "Collegamento al menù"
887
 
888
+ #: ../classes/column/used-by-menu.php:133
889
+ msgid "This will make the title link to the menu."
890
+ msgstr "Questo farà il link del titolo al menu."
891
 
892
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
893
+ msgid "ID"
894
+ msgstr "ID"
895
 
896
+ #: ../classes/column/comment/agent.php:19
897
+ msgid "Agent"
898
+ msgstr "Agente"
899
 
900
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
901
+ msgid "Approved"
902
+ msgstr "Approvato"
903
 
904
+ #: ../classes/column/comment/author-avatar.php:19
905
+ msgid "Avatar"
906
+ msgstr "Avatar"
907
 
908
+ #: ../classes/column/comment/author-email.php:19
909
+ msgid "Author email"
910
+ msgstr "Email autore"
 
 
 
 
911
 
912
+ #: ../classes/column/comment/author-ip.php:19
913
+ msgid "Author IP"
914
+ msgstr "IP autore"
915
 
916
+ #: ../classes/column/comment/author-name.php:12
917
+ msgid "Author name"
918
+ msgstr "Nome autore"
 
919
 
920
+ #: ../classes/column/comment/author-url.php:19
921
+ msgid "Author url"
922
+ msgstr "Url autore"
923
 
924
+ #: ../classes/column/comment/author.php:19
925
+ msgid "Author"
926
+ msgstr "Autore"
927
 
928
+ #: ../classes/column/comment/date-gmt.php:19
929
+ msgid "Date GMT"
930
+ msgstr "Data GTM"
931
 
932
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
933
+ msgid "Content"
934
+ msgstr "Contenuto"
935
 
936
+ #: ../classes/column/comment/post.php:19
937
+ msgid "Post"
938
+ msgstr ""
939
 
940
+ #: ../classes/column/comment/reply-to.php:19
941
+ msgid "In Reply To"
942
+ msgstr "In risposta a"
943
 
944
+ #: ../classes/column/comment/user.php:11
945
+ msgid "User"
946
+ msgstr "Utente"
947
 
948
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
949
+ msgid "Word count"
950
+ msgstr "Conteggio parole"
951
 
952
+ #: ../classes/column/media/alternate-text.php:19
953
+ msgid "Alt"
954
+ msgstr "Alt"
955
 
956
+ #: ../classes/column/media/attached-to.php:19
957
+ msgid "Attached to post"
958
+ msgstr "Allegato all'articolo"
959
 
960
+ #: ../classes/column/media/available-sizes.php:20
961
+ msgid "Available Sizes"
962
+ msgstr "Dimensioni Disponibili"
963
 
964
+ #: ../classes/column/media/available-sizes.php:40
965
+ msgid "full size"
966
+ msgstr "dimensione intera"
967
 
968
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
969
+ msgid "Caption"
970
+ msgstr "Didascalia"
971
 
972
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
973
+ msgid "Description"
974
+ msgstr "Descrizione"
975
 
976
+ #: ../classes/column/media/dimensions.php:19
977
+ msgid "Dimensions"
978
+ msgstr "Dimensioni"
979
 
980
+ #: ../classes/column/media/exif-data.php:19
981
+ msgid "EXIF data"
982
+ msgstr "Dati EXIF"
983
 
984
+ #: ../classes/column/media/exif-data.php:38
985
+ msgid "Aperture"
986
  msgstr ""
987
 
988
+ #: ../classes/column/media/exif-data.php:39
989
+ msgid "Credit"
990
+ msgstr "Credito"
 
 
 
 
991
 
992
+ #: ../classes/column/media/exif-data.php:40
993
+ msgid "Camera"
994
+ msgstr "Macchina fotografica"
995
 
996
+ #: ../classes/column/media/exif-data.php:42
997
+ msgid "Timestamp"
998
+ msgstr "Marca temporale"
999
 
1000
+ #: ../classes/column/media/exif-data.php:43
1001
+ msgid "Copyright EXIF"
1002
+ msgstr "Copyright EXIF"
1003
 
1004
+ #: ../classes/column/media/exif-data.php:44
1005
+ msgid "Focal Length"
1006
+ msgstr "Focale"
 
1007
 
1008
+ #: ../classes/column/media/exif-data.php:45
1009
+ msgid "ISO"
1010
+ msgstr "ISO"
1011
 
1012
+ #: ../classes/column/media/exif-data.php:46
1013
+ msgid "Shutter Speed"
1014
+ msgstr "Velocità otturatore"
1015
 
1016
+ #: ../classes/column/media/exif-data.php:47
1017
+ msgid "Title"
1018
+ msgstr "Titolo"
1019
 
1020
+ #: ../classes/column/media/file-name.php:19
1021
+ msgid "File name"
1022
+ msgstr "Nome del file"
1023
 
1024
+ #: ../classes/column/media/file-size.php:19
1025
+ msgid "File size"
1026
+ msgstr "Dimensione del file"
1027
 
1028
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1029
+ msgid "Full path"
1030
+ msgstr "Percorso completo"
1031
 
1032
+ #: ../classes/column/media/full-path.php:83
1033
+ msgid "Path scope"
1034
+ msgstr "Percorso del campo"
1035
 
1036
+ #: ../classes/column/media/full-path.php:84
1037
+ msgid "Part of the file path to display"
1038
+ msgstr "Parte del percorso del file da visualizzare"
1039
 
1040
+ #: ../classes/column/media/full-path.php:97
1041
+ msgid "Relative to domain"
1042
+ msgstr "Relativo al dominio"
1043
 
1044
+ #: ../classes/column/media/full-path.php:102
1045
+ msgid "Relative to main uploads folder "
1046
+ msgstr "Relativo alla cartella caricamenti principale"
1047
 
1048
+ #: ../classes/column/media/height.php:19
1049
+ msgid "Height"
1050
+ msgstr "Altezza"
1051
 
1052
+ #: ../classes/column/media/mime-type.php:19
1053
+ msgid "Mime type"
1054
+ msgstr "Tipi di MIME"
1055
 
1056
+ #: ../classes/column/post/attachment-count.php:19
1057
+ msgid "No. of Attachments"
1058
+ msgstr "No. di allegati"
1059
 
1060
+ #: ../classes/column/post/attachment.php:19
1061
+ msgid "Attachments"
1062
+ msgstr "Allegati"
1063
 
1064
+ #: ../classes/column/post/author-name.php:20
1065
+ msgid "Display Author As"
1066
  msgstr ""
1067
 
1068
+ #: ../classes/column/post/author-name.php:100
1069
+ msgid "View Public Author Page"
1070
  msgstr ""
1071
 
1072
+ #: ../classes/column/post/author-name.php:102
1073
+ msgid "Page the author name should link to."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1074
  msgstr ""
1075
 
1076
+ #: ../classes/column/post/before-moretag.php:19
1077
+ msgid "Before More Tag"
 
 
 
 
 
 
 
 
 
1078
  msgstr ""
1079
 
1080
+ #: ../classes/column/post/comment-count.php:20
1081
+ msgid "Comment count"
1082
+ msgstr "Conteggio commento"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1083
 
1084
+ #: ../classes/column/post/comment-count.php:34
1085
+ msgid "Total"
1086
+ msgstr "Totale"
1087
 
1088
+ #: ../classes/column/post/comment-count.php:36
1089
+ msgid "Pending"
1090
+ msgstr "In sospeso"
1091
 
1092
+ #: ../classes/column/post/comment-count.php:37
1093
+ msgid "Spam"
1094
+ msgstr "Spam"
1095
 
1096
+ #: ../classes/column/post/comment-count.php:38
1097
+ msgid "Trash"
1098
+ msgstr "Cestino"
1099
 
1100
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1101
+ msgid "Comment status"
1102
+ msgstr "Status del commento"
1103
 
1104
+ #: ../classes/column/post/comment-count.php:99
1105
+ msgid "Select which comment status you like to display."
1106
+ msgstr "Seleziona lo status del commento che vuoi mostrare."
1107
 
1108
+ #: ../classes/column/post/depth.php:19
1109
+ msgid "Depth"
1110
+ msgstr "Profondità"
1111
 
1112
+ #: ../classes/column/post/estimated-reading-time.php:19
1113
+ msgid "Estimated Reading Time"
1114
+ msgstr "Tempo stimato di lettura"
1115
 
1116
+ #: ../classes/column/post/estimated-reading-time.php:66
1117
+ msgid "second"
1118
+ msgid_plural "seconds"
1119
+ msgstr[0] "secondo"
1120
+ msgstr[1] "secondi"
1121
 
1122
+ #: ../classes/column/post/estimated-reading-time.php:69
1123
+ msgid "minute"
1124
+ msgid_plural "minutes"
1125
+ msgstr[0] "minuto"
1126
+ msgstr[1] "minuti"
1127
 
1128
+ #: ../classes/column/post/estimated-reading-time.php:107
1129
+ msgid "Words per minute"
1130
+ msgstr "Parole al minuto"
1131
 
1132
+ #: ../classes/column/post/estimated-reading-time.php:108
1133
+ msgid "Estimated reading time in words per minute"
1134
+ msgstr "Tempo di lettura stimato in parole al minuto"
1135
 
1136
+ #: ../classes/column/post/featured-image.php:19
1137
+ msgid "Featured Image"
1138
+ msgstr "Immagine di presentazione"
1139
 
1140
+ #: ../classes/column/post/formats.php:19
1141
+ msgid "Post Format"
1142
+ msgstr "Formato Articolo"
1143
 
1144
+ #: ../classes/column/post/last-modified-author.php:20
1145
+ msgid "Last Modified Author"
1146
+ msgstr "Ultima modifica Autore"
1147
 
1148
+ #: ../classes/column/post/modified.php:19
1149
+ msgid "Last modified"
1150
+ msgstr "Ultima modifica"
1151
 
1152
+ #: ../classes/column/post/order.php:19
1153
+ msgid "Order"
1154
+ msgstr "Ordine"
1155
 
1156
+ #: ../classes/column/post/page-template.php:19
1157
+ msgid "Page Template"
1158
+ msgstr "Modello di pagina"
1159
 
1160
+ #: ../classes/column/post/parent.php:19
1161
+ msgid "Parent"
1162
+ msgstr "Genitore"
1163
 
1164
+ #: ../classes/column/post/path.php:19
1165
+ msgid "Path"
1166
+ msgstr "Percorso"
 
1167
 
1168
+ #: ../classes/column/post/permalink.php:19
1169
+ msgid "Permalink"
1170
+ msgstr "Permalink"
 
1171
 
1172
+ #: ../classes/column/post/permalink.php:68
1173
+ msgid "Link to post"
1174
+ msgstr "Link all'articolo"
1175
 
1176
+ #: ../classes/column/post/permalink.php:68
1177
+ msgid "This will make the permalink clickable."
1178
+ msgstr "Questo renderà il permalink cliccabile"
1179
 
1180
+ #: ../classes/column/post/ping-status.php:19
1181
+ msgid "Ping status"
1182
+ msgstr "Status del ping"
1183
 
1184
+ #: ../classes/column/post/roles.php:19
1185
+ msgid "Roles"
1186
+ msgstr "Ruoli"
1187
 
1188
+ #: ../classes/column/post/shortcodes.php:19
1189
+ msgid "Shortcodes"
1190
+ msgstr "Shortcodes"
1191
 
1192
+ #: ../classes/column/post/slug.php:19
1193
+ msgid "Slug"
1194
+ msgstr ""
1195
 
1196
+ #: ../classes/column/post/status.php:21
1197
+ msgid "Status"
1198
+ msgstr "Status"
1199
 
1200
+ #: ../classes/column/post/sticky.php:19
1201
+ msgid "Sticky"
1202
+ msgstr "Sticky"
1203
 
1204
+ #: ../classes/column/post/title-raw.php:19
1205
+ msgid "Title without actions"
1206
+ msgstr "Titolo senza azioni"
1207
 
1208
+ #: ../classes/column/link/length.php:19
1209
+ msgid "Length"
1210
+ msgstr "Lunghezza"
1211
 
1212
+ #: ../classes/column/link/notes.php:19
1213
+ msgid "Notes"
1214
+ msgstr "Note"
1215
 
1216
+ #: ../classes/column/link/owner.php:19
1217
+ msgid "Owner"
1218
+ msgstr "Proprietario"
1219
 
1220
+ #: ../classes/column/link/rss.php:19
1221
+ msgid "Rss"
1222
+ msgstr "Rss"
1223
 
1224
+ #: ../classes/column/link/target.php:19
1225
+ msgid "Target"
1226
+ msgstr "Destinazione"
1227
 
1228
+ #: ../classes/column/user/display-name.php:19
1229
+ msgid "Display name"
1230
+ msgstr "Nome da visualizzare"
1231
 
1232
+ #: ../classes/column/user/first-name.php:19
1233
+ msgid "First name"
1234
+ msgstr "Nome"
1235
 
1236
+ #: ../classes/column/user/last-name.php:19
1237
+ msgid "Last name"
1238
+ msgstr "Cognome"
1239
 
1240
+ #: ../classes/column/user/post-count.php:19
1241
+ msgid "Post Count"
1242
+ msgstr "Conteggio Articolo"
1243
 
1244
+ #: ../classes/column/user/post-count.php:89
1245
+ msgid "Post Type"
1246
+ msgstr "Tipo di Articolo"
1247
 
1248
+ #: ../classes/column/user/registered.php:19
1249
+ msgid "Registered"
1250
+ msgstr "Registrato"
1251
 
1252
+ #: ../classes/column/user/rich-editing.php:19
1253
+ msgid "Visual Editor"
1254
+ msgstr ""
1255
 
1256
+ #: ../classes/column/user/url.php:19
1257
+ msgid "Url"
1258
+ msgstr "Url"
languages/codepress-admin-columns-ja.mo ADDED
Binary file
languages/{cpac-ja.po → codepress-admin-columns-ja.po} RENAMED
@@ -1,33 +1,32 @@
1
- #
 
2
  # Translators:
3
  # keisys <ken@keisys.com>, 2014
4
  # keisys <ken@keisys.com>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
10
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/admin-columns/language/ja_JP/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ja_JP\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Generator: Poedit 1.8.1\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
21
- "esc_html_x:1,2c\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
23
  "X-Poedit-SearchPath-0: .\n"
24
- "X-Poedit-SearchPath-1: ..\n"
25
- "X-Poedit-SearchPathExcluded-0: ../src\n"
26
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
30
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
31
 
32
  #: ../classes/addons.php:110
33
  msgid "Plugins"
@@ -49,1271 +48,1228 @@ msgstr ""
49
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
50
  msgstr ""
51
 
52
- #: ../classes/column.php:597
53
  msgid "Thumbnail"
54
  msgstr "サムネイル"
55
 
56
- #: ../classes/column.php:598
57
  msgid "Medium"
58
  msgstr "メディア"
59
 
60
- #: ../classes/column.php:599
61
  msgid "Large"
62
  msgstr "大"
63
 
64
- #: ../classes/column.php:600
65
  msgid "Full"
66
  msgstr "フルサイズ"
67
 
68
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  msgid "Date Format"
70
  msgstr "データフォーマット"
71
 
72
- #: ../classes/column.php:1042
73
  msgid "This will determine how the date will be displayed."
74
  msgstr "日付の表示方法を設定する。"
75
 
76
- #: ../classes/column.php:1048
77
  msgid "Example:"
78
  msgstr "例:"
79
 
80
- #: ../classes/column.php:1050
81
- #, php-format
82
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
83
- msgstr "設定>一般 <a href=\"%s\">日付フォーマット</a>を利用する場合は空白にしてください。"
84
 
85
- #: ../classes/column.php:1051
86
  msgid "Documentation on date and time formatting."
87
  msgstr "日付と時刻のフォーマット"
88
 
89
- #: ../classes/column.php:1065
90
  msgid "Excerpt length"
91
  msgstr "抜粋の長さ"
92
 
93
- #: ../classes/column.php:1066
94
  msgid "Number of words"
95
  msgstr "文字数"
96
 
97
- #: ../classes/column.php:1084
98
  msgid "Preview size"
99
  msgstr "プレビューサイズ"
100
 
101
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
102
  msgid "Custom"
103
  msgstr "カスタム"
104
 
105
- #: ../classes/column.php:1104 ../classes/column.php:1251
106
  msgid "width"
107
  msgstr "幅"
108
 
109
- #: ../classes/column.php:1107
110
  msgid "height"
111
  msgstr "高さ"
112
 
113
- #: ../classes/column.php:1119
114
  msgid "Before"
115
  msgstr "表示の前"
116
 
117
- #: ../classes/column.php:1119
118
  msgid "This text will appear before the custom field value."
119
  msgstr "このテキストはカスタムフィールドの値の前に表示されます。(HTMLタグ含む)"
120
 
121
- #: ../classes/column.php:1120
122
  msgid "After"
123
  msgstr "表示の後"
124
 
125
- #: ../classes/column.php:1120
126
  msgid "This text will appear after the custom field value."
127
  msgstr "このテキストはカスタムフィールドの値の後に表示されます。(HTMLタグ含む)"
128
 
129
- #: ../classes/column.php:1129
130
  msgid "Display Name"
131
  msgstr "表示名"
132
 
133
- #: ../classes/column.php:1130
134
  msgid "First Name"
135
  msgstr "姓"
136
 
137
- #: ../classes/column.php:1131
138
  msgid "Last Name"
139
  msgstr "名"
140
 
141
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
142
  msgid "Nickname"
143
  msgstr "ニックネーム"
144
 
145
- #: ../classes/column.php:1133
146
  msgid "User Login"
147
  msgstr "ユーザーログイン名"
148
 
149
- #: ../classes/column.php:1134
150
  msgid "User Email"
151
  msgstr "ユーザーメール"
152
 
153
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
154
  msgid "User ID"
155
  msgstr "ユーザーID"
156
 
157
- #: ../classes/column.php:1136
158
  msgid "First and Last Name"
159
  msgstr "姓名"
160
 
161
- #: ../classes/column.php:1139
162
  msgid "Display format"
163
  msgstr ""
164
 
165
- #: ../classes/column.php:1139
166
  msgid "This is the format of the author name."
167
  msgstr "投稿者の表示方法"
168
 
169
- #: ../classes/column.php:1273
170
  msgid "Edit"
171
  msgstr "編集"
172
 
173
- #: ../classes/column.php:1275 ../classes/column.php:1367
174
  msgid "Clone"
175
  msgstr ""
176
 
177
- #: ../classes/column.php:1277 ../classes/column.php:1369
178
  msgid "Remove"
179
  msgstr "削除"
180
 
181
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
182
  msgid "Type"
183
  msgstr "タイプ"
184
 
185
- #: ../classes/column.php:1295
186
  msgid "Choose a column type."
187
  msgstr "列に表示するタイプを設定します。"
188
 
189
- #: ../classes/column.php:1295
190
  msgid "Name"
191
  msgstr ""
192
 
193
- #: ../classes/column.php:1305
194
  msgid "Label"
195
  msgstr "ラベル"
196
 
197
- #: ../classes/column.php:1305
198
  msgid "This is the name which will appear as the column header."
199
  msgstr "列に表示される名前"
200
 
201
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
202
  msgid "Width"
203
  msgstr "表示幅"
204
 
205
- #: ../classes/column.php:1314
206
  msgid "default"
207
  msgstr "初期値"
208
 
209
- #: ../classes/column.php:1315
210
  msgid "auto"
211
  msgstr ""
212
 
213
- #: ../classes/column/acf-placeholder.php:19
214
- msgid "ACF Field"
215
  msgstr ""
216
 
217
- #: ../classes/column/acf-placeholder.php:32
218
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
219
  msgstr ""
220
 
221
- #: ../classes/column/acf-placeholder.php:35
222
- #, php-format
223
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
224
  msgstr ""
225
 
226
- #: ../classes/column/acf-placeholder.php:38
227
- msgid ""
228
- "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
229
  msgstr ""
230
 
231
- #: ../classes/column/acf-placeholder.php:44
232
- msgid "Find out more"
233
  msgstr ""
234
 
235
- #: ../classes/column/actions.php:29
236
- msgid "Actions"
237
- msgstr "アクション"
238
 
239
- #: ../classes/column/actions.php:96
240
- msgid "Use icons?"
 
 
 
 
241
  msgstr ""
242
 
243
- #: ../classes/column/actions.php:96
244
- msgid "Use icons instead of text for displaying the actions."
245
  msgstr ""
246
 
247
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
248
- msgid "Yes"
249
  msgstr ""
250
 
251
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
252
- msgid "No"
253
  msgstr ""
254
 
255
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
256
- msgid "ID"
257
- msgstr "ID"
 
 
258
 
259
- #: ../classes/column/comment/agent.php:19
260
- msgid "Agent"
261
- msgstr "エージェント"
262
 
263
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
264
- msgid "Approved"
265
- msgstr "承認された"
266
 
267
- #: ../classes/column/comment/author-avatar.php:19
268
- msgid "Avatar"
269
- msgstr "アバター"
270
 
271
- #: ../classes/column/comment/author-email.php:19
272
- msgid "Author email"
273
- msgstr "投稿者メール"
274
 
275
- #: ../classes/column/comment/author-ip.php:19
276
- msgid "Author IP"
277
- msgstr "投稿者IP"
278
 
279
- #: ../classes/column/comment/author-name.php:12
280
- msgid "Author name"
281
  msgstr ""
282
 
283
- #: ../classes/column/comment/author-url.php:19
284
- msgid "Author url"
285
- msgstr "投稿者URL"
286
 
287
- #: ../classes/column/comment/author.php:19
288
- msgid "Author"
289
- msgstr "投稿者"
290
 
291
- #: ../classes/column/comment/date-gmt.php:19
292
- msgid "Date GMT"
293
- msgstr "日時(GMT)"
 
 
 
 
294
 
295
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
296
- #, php-format
297
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
298
- msgstr "送信する <a href=\"%1$s\">%2$s at %3$s</a> "
299
 
300
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
301
- msgid "Date"
302
- msgstr "日付"
303
 
304
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
305
- msgid "Content"
 
 
306
  msgstr ""
 
 
 
307
 
308
- #: ../classes/column/comment/reply-to.php:19
309
- msgid "In Reply To"
310
- msgstr "返信先"
311
 
312
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
313
- msgid "User"
 
 
 
 
 
 
 
 
 
 
 
 
314
  msgstr ""
 
 
315
 
316
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
317
- msgid "Word count"
318
- msgstr "文字数"
 
 
 
 
319
 
320
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
321
  msgid "Custom Field"
322
  msgstr "カスタムフィールド"
323
 
324
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
325
  msgid "Default"
326
  msgstr "デフォルト"
327
 
328
- #: ../classes/column/custom-field.php:95
329
- msgid "Checkmark (true/false)"
330
- msgstr "チェックマーク(true/false)"
331
 
332
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
333
- msgid "Color"
334
- msgstr ""
335
 
336
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
337
- msgid "Counter"
338
- msgstr "カウンター"
339
 
340
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
341
  msgid "Excerpt"
342
  msgstr "エキスポート"
343
 
344
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
345
- msgid "Image"
346
- msgstr "画像"
347
-
348
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
349
- msgid "Media Library"
350
- msgstr "メディアライブラリー"
351
 
352
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
353
  msgid "Multiple Values"
354
  msgstr "複数の値"
355
 
356
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
357
  msgid "Numeric"
358
  msgstr "数値"
359
 
360
- #: ../classes/column/custom-field.php:104
361
- msgid "Post Title (Post ID's)"
362
- msgstr "タイトル(Post ID's)"
363
 
364
- #: ../classes/column/custom-field.php:105
365
- msgid "Username (User ID's)"
366
- msgstr "ユーザー名(User ID's)"
367
 
368
- #: ../classes/column/custom-field.php:106
369
- msgid "Term Name (Term ID's)"
370
- msgstr ""
 
 
371
 
372
- #: ../classes/column/custom-field.php:390
373
- msgid "Select your custom field."
374
- msgstr "カスタムフィールドを選択"
375
 
376
- #: ../classes/column/custom-field.php:400
377
- msgid "No custom fields available."
378
- msgstr "カスタムフィールドがありません"
379
 
380
- #: ../classes/column/custom-field.php:400
381
- #, php-format
382
- msgid "Please create a %s item first."
383
- msgstr ""
384
 
385
- #: ../classes/column/custom-field.php:407
386
- msgid "Field Type"
387
- msgstr "フィールドタイプ"
388
 
389
- #: ../classes/column/custom-field.php:407
390
- msgid "This will determine how the value will be displayed."
391
- msgstr "表示される方法を設定します"
392
 
393
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
394
- msgid "Description"
395
- msgstr "説明"
396
 
397
- #: ../classes/column/link/length.php:19
398
- msgid "Length"
399
- msgstr "長さ"
400
 
401
- #: ../classes/column/link/notes.php:19
402
- msgid "Notes"
403
- msgstr "注釈"
404
 
405
- #: ../classes/column/link/owner.php:19
406
- msgid "Owner"
407
- msgstr "オーナー"
408
 
409
- #: ../classes/column/link/rss.php:19
410
- msgid "Rss"
411
- msgstr "Rss"
412
 
413
- #: ../classes/column/link/target.php:19
414
- msgid "Target"
415
- msgstr "ターゲット"
416
 
417
- #: ../classes/column/media/alternate-text.php:19
418
- msgid "Alt"
419
- msgstr "代替テキスト"
420
 
421
- #: ../classes/column/media/attached-to.php:19
422
- msgid "Attached to post"
423
  msgstr ""
 
 
424
 
425
- #: ../classes/column/media/available-sizes.php:20
426
- msgid "Available Sizes"
427
- msgstr "利用できるサイズ"
428
 
429
- #: ../classes/column/media/available-sizes.php:40
430
- msgid "full size"
431
- msgstr "フルサイズ"
432
 
433
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
434
- msgid "Caption"
435
- msgstr "キャプション"
436
 
437
- #: ../classes/column/media/dimensions.php:19
438
- msgid "Dimensions"
439
- msgstr "大きさ"
440
 
441
- #: ../classes/column/media/exif-data.php:19
442
- msgid "EXIF data"
443
- msgstr "EXIFデータ"
444
 
445
- #: ../classes/column/media/exif-data.php:38
446
- msgid "Aperture"
447
- msgstr "絞り(Aperture)"
448
 
449
- #: ../classes/column/media/exif-data.php:39
450
- msgid "Credit"
451
- msgstr "クレジット"
452
 
453
- #: ../classes/column/media/exif-data.php:40
454
- msgid "Camera"
455
- msgstr "カメラ"
456
 
457
- #: ../classes/column/media/exif-data.php:42
458
- msgid "Timestamp"
459
- msgstr "タイムスタンプ"
460
 
461
- #: ../classes/column/media/exif-data.php:43
462
- msgid "Copyright EXIF"
463
- msgstr "EXIF著作権 "
464
 
465
- #: ../classes/column/media/exif-data.php:44
466
- msgid "Focal Length"
467
- msgstr "焦点距離(Focal Length)"
468
 
469
- #: ../classes/column/media/exif-data.php:45
470
- msgid "ISO"
471
- msgstr "感度(ISO)"
472
 
473
- #: ../classes/column/media/exif-data.php:46
474
- msgid "Shutter Speed"
475
- msgstr "シャッタースピード"
476
 
477
- #: ../classes/column/media/exif-data.php:47
478
- msgid "Title"
479
- msgstr "タイトル"
480
 
481
- #: ../classes/column/media/file-name.php:19
482
- msgid "File name"
483
- msgstr "ファイル名"
484
 
485
- #: ../classes/column/media/file-size.php:19
486
- msgid "File size"
487
- msgstr "ファイルサイズ"
488
 
489
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
490
- msgid "Full path"
491
- msgstr "フルパス"
492
 
493
- #: ../classes/column/media/full-path.php:83
494
- msgid "Path scope"
495
- msgstr ""
496
 
497
- #: ../classes/column/media/full-path.php:84
498
- msgid "Part of the file path to display"
499
- msgstr ""
500
 
501
- #: ../classes/column/media/full-path.php:97
502
- msgid "Relative to domain"
 
 
 
 
503
  msgstr ""
 
 
504
 
505
- #: ../classes/column/media/full-path.php:102
506
- msgid "Relative to main uploads folder "
507
  msgstr ""
508
 
509
- #: ../classes/column/media/height.php:19
510
- msgid "Height"
511
- msgstr "高さ"
512
 
513
- #: ../classes/column/media/mime-type.php:19
514
- msgid "Mime type"
515
- msgstr "Mimeタイプ"
 
 
516
 
517
- #: ../classes/column/post/attachment-count.php:19
518
- msgid "No. of Attachments"
519
- msgstr "アタッチメント(ファイル等)ID"
520
 
521
- #: ../classes/column/post/attachment.php:19
522
- msgid "Attachments"
523
  msgstr ""
524
 
525
- #: ../classes/column/post/author-name.php:20
526
- msgid "Display Author As"
527
- msgstr "投稿者名"
528
 
529
- #: ../classes/column/post/before-moretag.php:19
530
- msgid "Before More Tag"
531
- msgstr "タグの前に"
532
 
533
- #: ../classes/column/post/comment-count.php:20
534
- msgid "Comment count"
535
- msgstr "コメント数"
536
 
537
- #: ../classes/column/post/comment-count.php:34
538
- msgid "Total"
539
- msgstr "トータル"
540
 
541
- #: ../classes/column/post/comment-count.php:36
542
- msgid "Pending"
543
- msgstr "ペンディング"
544
 
545
- #: ../classes/column/post/comment-count.php:37
546
- msgid "Spam"
547
- msgstr "スパム"
548
 
549
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
550
- msgid "Trash"
551
- msgstr "ゴミ箱"
552
 
553
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
554
- msgid "Comment status"
555
- msgstr "コメントステータス"
556
 
557
- #: ../classes/column/post/comment-count.php:99
558
- msgid "Select which comment status you like to display."
559
- msgstr "表示させたいコメントステータスを選択します。"
560
 
561
- #: ../classes/column/post/date-published.php:17
562
- msgid "Date Published"
563
- msgstr ""
564
 
565
- #: ../classes/column/post/depth.php:19
566
- msgid "Depth"
567
  msgstr ""
568
 
569
- #: ../classes/column/post/estimated-reading-time.php:19
570
- msgid "Estimated Reading Time"
571
- msgstr ""
572
 
573
- #: ../classes/column/post/estimated-reading-time.php:63
574
- msgid "second"
575
- msgid_plural "seconds"
576
- msgstr[0] ""
577
 
578
- #: ../classes/column/post/estimated-reading-time.php:66
579
- msgid "minute"
580
- msgid_plural "minutes"
581
- msgstr[0] ""
582
 
583
- #: ../classes/column/post/estimated-reading-time.php:103
584
- msgid "Words per minute"
585
  msgstr ""
586
 
587
- #: ../classes/column/post/estimated-reading-time.php:104
588
- msgid "Estimated reading time in words per minute"
589
  msgstr ""
590
 
591
- #: ../classes/column/post/featured-image.php:19
592
- msgid "Featured Image"
593
- msgstr "注目画像"
594
-
595
- #: ../classes/column/post/formats.php:19
596
- msgid "Post Format"
597
- msgstr "ポストフォーマット"
598
-
599
- #: ../classes/column/post/last-modified-author.php:20
600
- msgid "Last Modified Author"
601
  msgstr ""
602
 
603
- #: ../classes/column/post/modified.php:19
604
- msgid "Last modified"
605
- msgstr "最終更新"
606
 
607
- #: ../classes/column/post/order.php:19
608
- msgid "Page Order"
609
- msgstr "ページオーダー"
610
 
611
- #: ../classes/column/post/page-template.php:19
612
- msgid "Page Template"
613
- msgstr "ページテンプレート"
614
 
615
- #: ../classes/column/post/parent.php:19
616
- msgid "Parent"
617
- msgstr "パーマメント"
618
 
619
- #: ../classes/column/post/path.php:19
620
- msgid "Path"
621
  msgstr ""
622
 
623
- #: ../classes/column/post/permalink.php:19
624
- msgid "Permalink"
625
  msgstr ""
626
 
627
- #: ../classes/column/post/permalink.php:68
628
- msgid "Link to post"
629
  msgstr ""
630
 
631
- #: ../classes/column/post/permalink.php:68
632
- msgid "This will make the permalink clickable."
633
  msgstr ""
634
 
635
- #: ../classes/column/post/ping-status.php:19
636
- msgid "Ping status"
637
- msgstr "Pingステータス"
638
 
639
- #: ../classes/column/post/roles.php:19
640
- msgid "Roles"
641
- msgstr "権限"
642
 
643
- #: ../classes/column/post/shortcodes.php:19
644
- msgid "Shortcodes"
645
  msgstr ""
646
 
647
- #: ../classes/column/post/slug.php:19
648
- msgid "Slug"
649
- msgstr "スラッグ"
650
 
651
- #: ../classes/column/post/status.php:19
652
- msgid "Status"
653
- msgstr "ステータス"
654
 
655
- #: ../classes/column/post/status.php:29
656
- msgid "Published"
657
- msgstr "公開"
 
 
658
 
659
- #: ../classes/column/post/status.php:30
660
- msgid "Draft"
661
- msgstr "下書き"
662
 
663
- #: ../classes/column/post/status.php:31
664
- msgid "Scheduled"
665
- msgstr "予定の"
666
-
667
- #: ../classes/column/post/status.php:32
668
- msgid "Private"
669
- msgstr "プライベート"
670
-
671
- #: ../classes/column/post/status.php:33
672
- msgid "Pending Review"
673
- msgstr "レビュー待ち"
674
 
675
- #: ../classes/column/post/status.php:34
676
- msgid "Auto Draft"
677
  msgstr ""
678
 
679
- #: ../classes/column/post/sticky.php:19
680
- msgid "Sticky"
681
- msgstr "先頭に固定表示"
682
-
683
- #: ../classes/column/post/title-raw.php:19
684
- msgid "Title without actions"
685
  msgstr ""
686
 
687
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
688
- msgid "Taxonomy"
689
- msgstr "タクソノミー"
690
-
691
- #: ../classes/column/used-by-menu.php:20
692
- msgid "Used by Menu"
693
  msgstr ""
694
 
695
- #: ../classes/column/used-by-menu.php:133
696
- msgid "Link to menu"
697
  msgstr ""
698
 
699
- #: ../classes/column/used-by-menu.php:133
700
- msgid "This will make the title link to the menu."
701
  msgstr ""
702
 
703
- #: ../classes/column/user/comment-count.php:19
704
- msgid "Comment Count"
705
- msgstr "コメント数"
706
-
707
- #: ../classes/column/user/display-name.php:19
708
- msgid "Display name"
709
  msgstr ""
710
 
711
- #: ../classes/column/user/first-name.php:19
712
- msgid "First name"
713
- msgstr ""
714
-
715
- #: ../classes/column/user/last-name.php:19
716
- msgid "Last name"
717
- msgstr "姓"
718
-
719
- #: ../classes/column/user/post-count.php:19
720
- msgid "Post Count"
721
- msgstr "コメント"
722
 
723
- #: ../classes/column/user/post-count.php:89
724
- msgid "Post Type"
725
- msgstr "投稿タイプ"
726
 
727
- #: ../classes/column/user/registered.php:19
728
- msgid "Registered"
729
- msgstr "登録された"
730
 
731
- #: ../classes/column/user/rich-editing.php:19
732
- msgid "Visual Editor"
733
  msgstr ""
734
 
735
- #: ../classes/column/user/url.php:19
736
- msgid "Url"
737
- msgstr "URL"
738
-
739
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
740
- msgid "Admin Columns"
741
- msgstr "Admin Columns"
742
-
743
- #: ../classes/review_notice.php:58
744
- msgid "Admin Columns Pro"
745
  msgstr ""
746
 
747
- #: ../classes/review_notice.php:65
748
- #, php-format
749
- msgid ""
750
- "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 "
751
- "at wordpress.org? If you're not happy with %s, please %s."
752
- msgstr ""
753
 
754
- #: ../classes/review_notice.php:68
755
- msgid "click here"
756
  msgstr ""
757
 
758
- #: ../classes/review_notice.php:72
759
- msgid "Leave a review!"
760
- msgstr ""
761
 
762
- #: ../classes/review_notice.php:73
763
- msgid "Permanently hide notice"
764
- msgstr ""
765
 
766
- #: ../classes/review_notice.php:80
767
- #, php-format
768
- msgid ""
769
- "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 "
770
- "visit our %s."
771
- msgstr ""
772
 
773
- #: ../classes/review_notice.php:82
774
- msgid "documentation page"
775
- msgstr ""
776
 
777
- #: ../classes/review_notice.php:86
778
- #, php-format
779
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
780
- msgstr ""
781
 
782
- #: ../classes/review_notice.php:87
783
- msgid "our forums"
784
- msgstr ""
785
 
786
- #: ../classes/review_notice.php:91
787
- #, php-format
788
- msgid "You can also find help on the %s, and %s."
789
- msgstr ""
790
 
791
- #: ../classes/review_notice.php:92
792
- msgid "Admin Columns forums on WordPress.org"
793
- msgstr ""
794
 
795
- #: ../classes/review_notice.php:93
796
- msgid "find answers to some frequently asked questions"
797
- msgstr ""
798
 
799
- #: ../classes/settings.php:112
800
- msgid "Add-on successfully activated."
801
- msgstr ""
802
 
803
- #: ../classes/settings.php:115
804
- msgid "Add-on successfully deactivated."
805
- msgstr ""
806
 
807
- #: ../classes/settings.php:170
808
- msgid "Admin Columns Settings"
809
- msgstr "Admin Columns 設定"
810
 
811
- #: ../classes/settings.php:220
812
- #, php-format
813
- msgid "%s column is already present and can not be duplicated."
814
- msgstr "%s 列はすでに存在します。複製することができません "
815
 
816
- #: ../classes/settings.php:274
817
- msgid "Default settings succesfully restored."
818
- msgstr "初期設定を復元しました。"
819
 
820
- #: ../classes/settings.php:291
821
- msgid "Overview"
822
- msgstr "概要"
823
 
824
- #: ../classes/settings.php:294
825
  msgid ""
826
- "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change "
827
- "the column's label and reorder them."
828
  msgstr ""
829
- "このプラグインは管理画面に表示される列の追加・削除や並び変えを可能にします。\n"
830
- "投稿・メディアページ・コメント・リンク・ユーザー・カスタム投稿(post type)に対応し\n"
831
- "PRO版ではソート・フィルタリングも可能になります。"
832
 
833
- #: ../classes/settings.php:297
834
- msgid "Basics"
835
- msgstr "基本"
836
-
837
- #: ../classes/settings.php:299
838
- msgid "Change order"
839
- msgstr "並びを変更"
840
 
841
- #: ../classes/settings.php:300
842
- msgid "By dragging the columns you can change the order which they will appear in."
843
- msgstr "列幅をドラッグして表示される場所を変更することが可能です。"
844
 
845
- #: ../classes/settings.php:301
846
- msgid "Change label"
847
- msgstr "ラベルの変更"
848
 
849
- #: ../classes/settings.php:302
850
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
851
  msgstr ""
852
- "列の表示オプションを表示します。\n"
853
- "見出しや列のラベルを変更できます。"
854
 
855
- #: ../classes/settings.php:303
856
- msgid "Change column width"
857
- msgstr "列幅を変更"
858
 
859
- #: ../classes/settings.php:304
860
- 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."
861
- msgstr "三角形をクリックすると、列のオプションが表示されます。ドラッグ可能なスライダーを使用することで、パーセンテージで列の幅を設定することができます。"
862
 
863
- #: ../classes/settings.php:310
864
- msgid "'Custom Field' column"
865
- msgstr "カスタムフィールド幅"
866
 
867
- #: ../classes/settings.php:311
868
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
869
- msgstr "カスタムフィールドには設定可能な10種類のタイプあります"
870
 
871
- #: ../classes/settings.php:313
872
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
873
- msgstr "値:文字列または配列になります。配列は、区切ります。"
874
 
875
- #: ../classes/settings.php:314
876
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
877
- msgstr "値:画像URLやファイルIDを含んでいる必要があります。(複数の場合は\"、”で区切ってください)"
878
 
879
- #: ../classes/settings.php:315
880
- msgid "Value: This will show the first 20 words of the Post content."
881
- msgstr "値:投稿内容の最初の20文字が表示されます。"
882
 
883
- #: ../classes/settings.php:316
884
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
885
- msgstr "値:配列でなければいけません。(配列をフラット化します)"
886
 
887
- #: ../classes/settings.php:317
888
- 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."
889
- msgstr "値:整数だけ<br/>サポートします。ソートアドオンが有効な場合(カスタムフィールド)記事を並び変えることができます。"
890
 
891
- #: ../classes/settings.php:318
892
- #, php-format
893
- msgid ""
894
- "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 "
895
- "settings</a> page."
896
- msgstr "値:<a href='%s'>Codex</a>の説明であるようにunixタイムスタンプや日付形式を指定できます。設定>一般<a href='%s'>日付のフォーマット</a>設定を利用できます。"
897
 
898
- #: ../classes/settings.php:319
899
- msgid "Post Titles"
900
- msgstr "投稿タイトル"
901
 
902
- #: ../classes/settings.php:319
903
- msgid "Value: can be one or more Post ID's (seperated by ',')."
904
- msgstr "値:複数の場合は、ポストIDを(、)で区切ってください。"
905
 
906
- #: ../classes/settings.php:320
907
- msgid "Usernames"
908
- msgstr "ユーザー名"
909
 
910
- #: ../classes/settings.php:320
911
- msgid "Value: can be one or more User ID's (seperated by ',')."
912
- msgstr "値;複数のユーザーの場合は(、)で区切ってください。"
913
 
914
- #: ../classes/settings.php:321
915
- msgid "Checkmark"
916
- msgstr "チェックマーク"
917
 
918
- #: ../classes/settings.php:321
919
- msgid "Value: should be a 1 (one) or 0 (zero)."
920
- msgstr "値:1(one)または0(zero)"
921
 
922
- #: ../classes/settings.php:322
923
- msgid "Value: hex value color, such as #808080."
924
- msgstr "値:HEXカラーコード #808080など"
925
 
926
- #: ../classes/settings.php:323
927
- 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."
928
- msgstr "値:文字列または配列。meta_keyの場合は回数を表示します"
929
 
930
- #: ../classes/settings.php:412
931
- msgid "Welcome to Admin Columns"
932
- msgstr "ようこそ Admin Columns"
933
 
934
- #: ../classes/settings.php:415
935
- msgid "Thank you for updating to the latest version!"
936
- msgstr "最新のバージョンに更新して頂きありがとうございます。"
937
 
938
- #: ../classes/settings.php:416
939
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
940
  msgstr ""
941
- "Admin Columns は洗練された管理画面を提供します。\n"
942
- "私たちは、あなたやあなたのユーザーが喜ぶことを願っています。"
943
 
944
- #: ../classes/settings.php:421
945
- msgid "What’s New"
946
- msgstr "最新"
947
 
948
- #: ../classes/settings.php:422
949
- msgid "Changelog"
950
- msgstr "変更履歴"
951
 
952
- #: ../classes/settings.php:427
953
- msgid "Important"
954
- msgstr "インポート"
955
 
956
- #: ../classes/settings.php:429
957
- msgid "Database Changes"
958
- msgstr "データベースの変更"
959
 
960
- #: ../classes/settings.php:430
961
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
962
- msgstr "データベースには、バージョン1と2で変更されました。しかし、我々は、何の問題もなく戻ってバージョン1Xにロールバックすることができことを確認しています。"
963
 
964
- #: ../classes/settings.php:433
965
- msgid "Make sure you backup your database and then click"
966
- msgstr "クリックしてデータバースのバックアップを作る"
967
 
968
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
969
- msgid "Upgrade Database"
970
- msgstr "データベースをアップデート"
971
 
972
- #: ../classes/settings.php:436
973
- msgid "Potential Issues"
974
- msgstr "潜在的な問題"
975
 
976
- #: ../classes/settings.php:437
977
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
978
- msgstr "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full "
979
 
980
- #: ../classes/settings.php:437
981
- msgid "Migrating from v1 to v2"
982
- msgstr "Ver1からVer2への移行"
983
 
984
- #: ../classes/settings.php:437
985
- msgid "guide to view the full list of changes."
986
- msgstr "変更点の詳細案内"
987
 
988
- #: ../classes/settings.php:437
989
- #, php-format
990
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
991
- msgstr "バグを発見した場合は<a href=\"%s\">バグレポート</a>で報告してください。次回リリースで修正致します。 "
992
 
993
- #: ../classes/settings.php:440
994
- msgid "Important!"
995
- msgstr "大切な事"
996
 
997
- #: ../classes/settings.php:440
998
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
999
- msgstr "プラグイン管理の列を更新した場合、最新のものにロールバックしてください。"
1000
 
1001
- #: ../classes/settings.php:440
1002
- msgid "version 1"
1003
- msgstr "version 1 "
1004
 
1005
- #: ../classes/settings.php:440
1006
- msgid "of this plugin."
1007
- msgstr "このプラグイン"
1008
 
1009
- #: ../classes/settings.php:446
1010
- msgid "Changelog for"
1011
- msgstr "変更履歴の"
1012
 
1013
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1014
- msgid "Learn more"
1015
- msgstr "詳細はこちら"
1016
 
1017
- #: ../classes/settings.php:471
1018
- msgid "Start using Admin Columns"
1019
- msgstr "Admin Columnsをはじめましょう"
1020
 
1021
- #: ../classes/settings.php:490
1022
- msgid "General Settings"
1023
- msgstr "一般設定"
1024
 
1025
- #: ../classes/settings.php:491
1026
- msgid "Customize your Admin Columns settings."
1027
- msgstr ""
1028
- "管理画面の列表示を<br/>\n"
1029
- "カスタマイズします。"
1030
 
1031
- #: ../classes/settings.php:502
1032
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1033
- msgstr ""
1034
 
1035
- #: ../classes/settings.php:509 ../classes/settings.php:673
1036
- msgid "Save"
1037
- msgstr "保存"
1038
 
1039
- #: ../classes/settings.php:549
1040
- msgid "Restore Settings"
1041
- msgstr "設定の復元"
1042
 
1043
- #: ../classes/settings.php:550
1044
- msgid "This will delete all column settings and restore the default settings."
1045
- msgstr ""
1046
- "追加された全ての列を削除し、<br/>\n"
1047
- "デフォルト設定に戻します。"
1048
 
1049
- #: ../classes/settings.php:556
1050
- msgid "Restore default settings"
1051
- msgstr "デフォルト設定に戻します。"
1052
 
1053
- #: ../classes/settings.php:556
1054
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1055
- msgstr "注意! 保存された、すべての列表示が削除されます。元に戻すことはできません。 \\'OK\\' で削除します \\'Cancel\\'で中止します。 "
1056
 
1057
- #: ../classes/settings.php:572
1058
- msgid "Posttypes"
1059
- msgstr ""
1060
 
1061
- #: ../classes/settings.php:573
1062
- msgid "Others"
1063
  msgstr ""
1064
 
1065
- #: ../classes/settings.php:574
1066
- msgid "Taxonomies"
1067
  msgstr ""
1068
 
1069
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1070
- msgid "Settings"
1071
- msgstr "設定"
1072
-
1073
- #: ../classes/settings.php:591
1074
- msgid "Add-ons"
1075
  msgstr ""
1076
 
1077
- #: ../classes/settings.php:659
1078
- #, php-format
1079
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1080
  msgstr ""
1081
 
1082
- #: ../classes/settings.php:669
1083
- msgid "Store settings"
1084
- msgstr "設定を保存"
1085
 
1086
- #: ../classes/settings.php:673
1087
- msgid "Update"
1088
- msgstr "アップデート"
1089
 
1090
- #: ../classes/settings.php:677
1091
- #, php-format
1092
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1093
- msgstr "注意!  あなたが設定した %s 列は削除されWP初期値に戻ります。削除すると元に戻すことはできません. \\'OK\\' で削除 \\'Cancel\\' でキャンセル "
1094
 
1095
- #: ../classes/settings.php:678
1096
- msgid "Restore"
1097
- msgstr "初期状態に戻す"
1098
 
1099
- #: ../classes/settings.php:678
1100
- msgid "columns"
1101
- msgstr "-列"
1102
 
1103
- #: ../classes/settings.php:697
1104
- msgid "Get Admin Columns Pro"
1105
  msgstr ""
1106
 
1107
- #: ../classes/settings.php:701
1108
- msgid "Add Sorting"
1109
- msgstr "ソートを追加"
1110
 
1111
- #: ../classes/settings.php:702
1112
- msgid "Add Filtering"
1113
- msgstr "フィルターを追加"
1114
 
1115
- #: ../classes/settings.php:703
1116
- msgid "Add Import/Export"
1117
- msgstr "設定のインポート・エキスポートを追加"
1118
 
1119
- #: ../classes/settings.php:704
1120
- msgid "Add Direct Editing"
1121
- msgstr ""
1122
 
1123
- #: ../classes/settings.php:707
1124
- #, php-format
1125
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1126
- msgstr ""
1127
 
1128
- #: ../classes/settings.php:738
1129
- msgid "Are you happy with Admin Columns?"
1130
- msgstr ""
1131
 
1132
- #: ../classes/settings.php:746
1133
- msgid "What's wrong? Need help? Let us know!"
1134
- msgstr ""
1135
 
1136
- #: ../classes/settings.php:747
1137
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1138
- msgstr ""
1139
 
1140
- #: ../classes/settings.php:755
1141
- msgid "Docs"
1142
- msgstr ""
1143
 
1144
- #: ../classes/settings.php:760
1145
- msgid "Forums"
1146
  msgstr ""
1147
 
1148
- #: ../classes/settings.php:769
1149
- msgid "Woohoo! We're glad to hear that!"
1150
  msgstr ""
1151
 
1152
- #: ../classes/settings.php:770
1153
- 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!"
1154
- msgstr ""
 
1155
 
1156
- #: ../classes/settings.php:774
1157
- msgid "Rate"
1158
- msgstr ""
 
1159
 
1160
- #: ../classes/settings.php:785
1161
- msgid "Tweet"
1162
  msgstr ""
1163
 
1164
- #: ../classes/settings.php:795
1165
- msgid "Buy Pro"
1166
  msgstr ""
1167
 
1168
- #: ../classes/settings.php:807
1169
- msgid "Support"
1170
- msgstr "サポート"
1171
 
1172
- #: ../classes/settings.php:810
1173
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1174
- msgstr "画面右上の<strong>Help</strong>を確認してください。"
1175
 
1176
- #: ../classes/settings.php:813
1177
- #, php-format
1178
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1179
  msgstr ""
1180
- "ドキュメント・バグレポート・機能の提案などは<br/>\n"
1181
- " <a href='%s'> Admin Columns website</a>を訪れてください。"
1182
 
1183
- #: ../classes/settings.php:842
1184
- msgid "Drag and drop to reorder"
1185
- msgstr "ドロップ&ドラッグで表示順序を変更できます"
1186
-
1187
- #: ../classes/settings.php:845
1188
- msgid "Add Column"
1189
- msgstr "列の追加"
1190
 
1191
- #: ../classes/settings.php:926
1192
- msgid "Active"
1193
  msgstr ""
1194
 
1195
- #: ../classes/settings.php:927
1196
- msgid "Deactivate"
1197
- msgstr ""
1198
 
1199
- #: ../classes/settings.php:934
1200
- msgid "Installed"
1201
- msgstr ""
1202
 
1203
- #: ../classes/settings.php:935
1204
- msgid "Activate"
1205
  msgstr ""
1206
 
1207
- #: ../classes/settings.php:949
1208
- msgid "Download & Install"
1209
  msgstr ""
1210
 
1211
- #: ../classes/settings.php:954
1212
- msgid "Get this add-on"
1213
  msgstr ""
1214
 
1215
- #: ../classes/storage_model.php:237
1216
- msgid "settings succesfully restored."
1217
- msgstr "設定を復元しました。"
1218
-
1219
- #: ../classes/storage_model.php:253
1220
- msgid "No columns settings available."
1221
- msgstr "設定された列はありません"
1222
-
1223
- #: ../classes/storage_model.php:274
1224
- #, php-format
1225
- msgid "You are trying to store the same settings for %s."
1226
- msgstr "%sはすでに設定済みです "
1227
-
1228
- #: ../classes/storage_model.php:278
1229
- #, php-format
1230
- msgid "Settings for %s updated successfully."
1231
  msgstr ""
1232
 
1233
- #: ../classes/storage_model.php:809
1234
- msgid "View"
1235
- msgstr "表示"
1236
 
1237
- #: ../classes/storage_model/comment.php:13
1238
- msgid "Comments"
1239
- msgstr "コメント"
1240
 
1241
- #: ../classes/storage_model/comment.php:14
1242
- msgid "Comment"
1243
  msgstr ""
1244
 
1245
- #: ../classes/storage_model/link.php:13
1246
- msgid "Links"
1247
- msgstr "リンク"
1248
-
1249
- #: ../classes/storage_model/link.php:14
1250
- msgid "Link"
1251
- msgstr ""
1252
 
1253
- #: ../classes/storage_model/media.php:14
1254
- msgid "Media"
1255
- msgstr ""
1256
 
1257
- #: ../classes/storage_model/user.php:13
1258
- msgid "Users"
1259
- msgstr "ユーザー"
1260
 
1261
- #: ../classes/upgrade.php:62
1262
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
1263
  msgstr ""
1264
 
1265
- #: ../classes/upgrade.php:95
1266
- msgid "Upgrade"
1267
- msgstr "アップグレード"
1268
-
1269
- #: ../classes/upgrade.php:136
1270
- msgid "requires a database upgrade"
1271
- msgstr "データベースの更新(アップグレード)が必要です。"
1272
 
1273
- #: ../classes/upgrade.php:139
1274
- msgid "why?"
1275
- msgstr "なぜ?"
1276
 
1277
- #: ../classes/upgrade.php:140
1278
- msgid "Please"
1279
- msgstr "どうぞ"
1280
 
1281
- #: ../classes/upgrade.php:141
1282
- msgid "backup your database"
1283
- msgstr "データベースのバックアップ"
1284
 
1285
- #: ../classes/upgrade.php:142
1286
- msgid "then click"
1287
- msgstr "クリックする"
1288
 
1289
- #: ../classes/upgrade.php:351
1290
- msgid "Migrating Column Settings"
1291
- msgstr "移行列の設定"
1292
 
1293
- #: ../classes/upgrade.php:387
1294
- msgid "No Upgrade Required"
1295
- msgstr "アップグレード不可"
1296
 
1297
- #: ../classes/upgrade.php:388
1298
- msgid "Return to welcome screen."
1299
- msgstr "「ようこそ」の画面へ戻ります"
1300
 
1301
- #: ../classes/upgrade.php:406
1302
- msgid "Upgrade Complete!"
1303
- msgstr "更新完了"
1304
 
1305
- #: ../classes/upgrade.php:406
1306
- msgid "Return to settings."
1307
- msgstr "設定へ戻る"
1308
 
1309
- #: ../classes/upgrade.php:407
1310
- msgid "Error"
1311
- msgstr "エラー"
1312
 
1313
- #: ../classes/upgrade.php:408
1314
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1315
- msgstr "申し訳ありません。アップグレードプロセス中にエラーが発生しました。サポートフォーラムへ報告してください。"
1316
 
1317
- #: ../codepress-admin-columns.php:444
1318
- msgid "Edit columns"
1319
- msgstr "列の編集"
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # keisys <ken@keisys.com>, 2014
5
  # keisys <ken@keisys.com>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
10
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Japanese (Japan) (http://www.transifex.com/codepress/admin-columns/language/ja_JP/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ja_JP\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
+ "POT-Creation-Date: \n"
23
+ "X-Generator: Poedit 1.8.5\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
26
+
27
+ #: ../codepress-admin-columns.php:451
28
+ msgid "Edit columns"
29
+ msgstr "列の編集"
 
 
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr ""
50
 
51
+ #: ../classes/column.php:624
52
  msgid "Thumbnail"
53
  msgstr "サムネイル"
54
 
55
+ #: ../classes/column.php:625
56
  msgid "Medium"
57
  msgstr "メディア"
58
 
59
+ #: ../classes/column.php:626
60
  msgid "Large"
61
  msgstr "大"
62
 
63
+ #: ../classes/column.php:627
64
  msgid "Full"
65
  msgstr "フルサイズ"
66
 
67
+ #: ../classes/column.php:1059
68
+ msgid "Exact match"
69
+ msgstr ""
70
+
71
+ #: ../classes/column.php:1060
72
+ msgid "Lesser than"
73
+ msgstr ""
74
+
75
+ #: ../classes/column.php:1061
76
+ msgid "Greater than"
77
+ msgstr ""
78
+
79
+ #: ../classes/column.php:1062
80
+ msgid "Between"
81
+ msgstr ""
82
+
83
+ #: ../classes/column.php:1089
84
  msgid "Date Format"
85
  msgstr "データフォーマット"
86
 
87
+ #: ../classes/column.php:1090
88
  msgid "This will determine how the date will be displayed."
89
  msgstr "日付の表示方法を設定する。"
90
 
91
+ #: ../classes/column.php:1096
92
  msgid "Example:"
93
  msgstr "例:"
94
 
95
+ #: ../classes/column.php:1098
96
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
97
+ msgstr ""
 
98
 
99
+ #: ../classes/column.php:1099
100
  msgid "Documentation on date and time formatting."
101
  msgstr "日付と時刻のフォーマット"
102
 
103
+ #: ../classes/column.php:1113
104
  msgid "Excerpt length"
105
  msgstr "抜粋の長さ"
106
 
107
+ #: ../classes/column.php:1114
108
  msgid "Number of words"
109
  msgstr "文字数"
110
 
111
+ #: ../classes/column.php:1132
112
  msgid "Preview size"
113
  msgstr "プレビューサイズ"
114
 
115
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
116
  msgid "Custom"
117
  msgstr "カスタム"
118
 
119
+ #: ../classes/column.php1152, ../classes/column.php:1328
120
  msgid "width"
121
  msgstr "幅"
122
 
123
+ #: ../classes/column.php:1155
124
  msgid "height"
125
  msgstr "高さ"
126
 
127
+ #: ../classes/column.php:1167
128
  msgid "Before"
129
  msgstr "表示の前"
130
 
131
+ #: ../classes/column.php:1167
132
  msgid "This text will appear before the custom field value."
133
  msgstr "このテキストはカスタムフィールドの値の前に表示されます。(HTMLタグ含む)"
134
 
135
+ #: ../classes/column.php:1168
136
  msgid "After"
137
  msgstr "表示の後"
138
 
139
+ #: ../classes/column.php:1168
140
  msgid "This text will appear after the custom field value."
141
  msgstr "このテキストはカスタムフィールドの値の後に表示されます。(HTMLタグ含む)"
142
 
143
+ #: ../classes/column.php:1177
144
  msgid "Display Name"
145
  msgstr "表示名"
146
 
147
+ #: ../classes/column.php1178, ../classes/settings.php:733
148
  msgid "First Name"
149
  msgstr "姓"
150
 
151
+ #: ../classes/column.php:1179
152
  msgid "Last Name"
153
  msgstr "名"
154
 
155
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
156
  msgid "Nickname"
157
  msgstr "ニックネーム"
158
 
159
+ #: ../classes/column.php:1181
160
  msgid "User Login"
161
  msgstr "ユーザーログイン名"
162
 
163
+ #: ../classes/column.php:1182
164
  msgid "User Email"
165
  msgstr "ユーザーメール"
166
 
167
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
168
  msgid "User ID"
169
  msgstr "ユーザーID"
170
 
171
+ #: ../classes/column.php:1184
172
  msgid "First and Last Name"
173
  msgstr "姓名"
174
 
175
+ #: ../classes/column.php:1187
176
  msgid "Display format"
177
  msgstr ""
178
 
179
+ #: ../classes/column.php:1187
180
  msgid "This is the format of the author name."
181
  msgstr "投稿者の表示方法"
182
 
183
+ #: ../classes/column.php:1350
184
  msgid "Edit"
185
  msgstr "編集"
186
 
187
+ #: ../classes/column.php1352, ../classes/column.php:1444
188
  msgid "Clone"
189
  msgstr ""
190
 
191
+ #: ../classes/column.php:1354
192
  msgid "Remove"
193
  msgstr "削除"
194
 
195
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
196
  msgid "Type"
197
  msgstr "タイプ"
198
 
199
+ #: ../classes/column.php:1372
200
  msgid "Choose a column type."
201
  msgstr "列に表示するタイプを設定します。"
202
 
203
+ #: ../classes/column.php:1372
204
  msgid "Name"
205
  msgstr ""
206
 
207
+ #: ../classes/column.php:1382
208
  msgid "Label"
209
  msgstr "ラベル"
210
 
211
+ #: ../classes/column.php:1382
212
  msgid "This is the name which will appear as the column header."
213
  msgstr "列に表示される名前"
214
 
215
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
216
  msgid "Width"
217
  msgstr "表示幅"
218
 
219
+ #: ../classes/column.php:1391
220
  msgid "default"
221
  msgstr "初期値"
222
 
223
+ #: ../classes/column.php:1392
224
  msgid "auto"
225
  msgstr ""
226
 
227
+ #: ../classes/column.php:1466
228
+ msgid "Property To Display"
229
  msgstr ""
230
 
231
+ #: ../classes/column.php:1472
232
+ msgid "Post property to display for related post(s)."
233
  msgstr ""
234
 
235
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
236
+ msgid "Link To"
 
237
  msgstr ""
238
 
239
+ #: ../classes/column.php:1489
240
+ msgid "Edit Post Author"
 
241
  msgstr ""
242
 
243
+ #: ../classes/column.php:1490
244
+ msgid "View Public Post Author Page"
245
  msgstr ""
246
 
247
+ #: ../classes/column.php:1492
248
+ msgid "Page the posts should link to."
249
+ msgstr ""
250
 
251
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
252
+ msgid "Admin Columns"
253
+ msgstr "Admin Columns"
254
+
255
+ #: ../classes/review_notice.php:58
256
+ msgid "Admin Columns Pro"
257
  msgstr ""
258
 
259
+ #: ../classes/review_notice.php:68
260
+ msgid "click here"
261
  msgstr ""
262
 
263
+ #: ../classes/review_notice.php:72
264
+ msgid "Leave a review!"
265
  msgstr ""
266
 
267
+ #: ../classes/review_notice.php:73
268
+ msgid "Permanently hide notice"
269
  msgstr ""
270
 
271
+ #: ../classes/review_notice.php:80
272
+ msgid ""
273
+ "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 "
274
+ "visit our %s."
275
+ msgstr ""
276
 
277
+ #: ../classes/review_notice.php:82
278
+ msgid "documentation page"
279
+ msgstr ""
280
 
281
+ #: ../classes/review_notice.php:86
282
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
283
+ msgstr ""
284
 
285
+ #: ../classes/review_notice.php:87
286
+ msgid "our forums"
287
+ msgstr ""
288
 
289
+ #: ../classes/review_notice.php:91
290
+ msgid "You can also find help on the %s, and %s."
291
+ msgstr ""
292
 
293
+ #: ../classes/review_notice.php:92
294
+ msgid "Admin Columns forums on WordPress.org"
295
+ msgstr ""
296
 
297
+ #: ../classes/review_notice.php:93
298
+ msgid "find answers to some frequently asked questions"
299
  msgstr ""
300
 
301
+ #: ../classes/settings.php:113
302
+ msgid "Add-on successfully activated."
303
+ msgstr ""
304
 
305
+ #: ../classes/settings.php:116
306
+ msgid "Add-on successfully deactivated."
307
+ msgstr ""
308
 
309
+ #: ../classes/settings.php:170
310
+ msgid "Admin Columns Settings"
311
+ msgstr "Admin Columns 設定"
312
+
313
+ #: ../classes/settings.php:228
314
+ msgid "%s column is already present and can not be duplicated."
315
+ msgstr "%s 列はすでに存在します。複製することができません "
316
 
317
+ #: ../classes/settings.php:284
318
+ msgid "Default settings succesfully restored."
319
+ msgstr "初期設定を復元しました。"
 
320
 
321
+ #: ../classes/settings.php:301
322
+ msgid "Overview"
323
+ msgstr "概要"
324
 
325
+ #: ../classes/settings.php:304
326
+ msgid ""
327
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change "
328
+ "the column's label and reorder them."
329
  msgstr ""
330
+ "このプラグインは管理画面に表示される列の追加・削除や並び変えを可能にします。\n"
331
+ "投稿・メディアページ・コメント・リンク・ユーザー・カスタム投稿(post type)に対応し\n"
332
+ "PRO版ではソート・フィルタリングも可能になります。"
333
 
334
+ #: ../classes/settings.php:307
335
+ msgid "Basics"
336
+ msgstr "基本"
337
 
338
+ #: ../classes/settings.php:309
339
+ msgid "Change order"
340
+ msgstr "並びを変更"
341
+
342
+ #: ../classes/settings.php:310
343
+ msgid "By dragging the columns you can change the order which they will appear in."
344
+ msgstr "列幅をドラッグして表示される場所を変更することが可能です。"
345
+
346
+ #: ../classes/settings.php:311
347
+ msgid "Change label"
348
+ msgstr "ラベルの変更"
349
+
350
+ #: ../classes/settings.php:312
351
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
352
  msgstr ""
353
+ "列の表示オプションを表示します。\n"
354
+ "見出しや列のラベルを変更できます。"
355
 
356
+ #: ../classes/settings.php:313
357
+ msgid "Change column width"
358
+ msgstr "列幅を変更"
359
+
360
+ #: ../classes/settings.php:314
361
+ 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."
362
+ msgstr "三角形をクリックすると、列のオプションが表示されます。ドラッグ可能なスライダーを使用することで、パーセンテージで列の幅を設定することができます。"
363
 
364
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
365
  msgid "Custom Field"
366
  msgstr "カスタムフィールド"
367
 
368
+ #: ../classes/settings.php:320
369
+ msgid "'Custom Field' column"
370
+ msgstr "カスタムフィールド幅"
371
+
372
+ #: ../classes/settings.php:321
373
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
374
+ msgstr "カスタムフィールドには設定可能な10種類のタイプあります"
375
+
376
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
377
  msgid "Default"
378
  msgstr "デフォルト"
379
 
380
+ #: ../classes/settings.php:323
381
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
382
+ msgstr "値:文字列または配列になります。配列は、区切ります。"
383
 
384
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
385
+ msgid "Image"
386
+ msgstr "画像"
387
 
388
+ #: ../classes/settings.php:324
389
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
390
+ msgstr "値:画像URLやファイルIDを含んでいる必要があります。(複数の場合は\"、”で区切ってください)"
391
 
392
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
393
  msgid "Excerpt"
394
  msgstr "エキスポート"
395
 
396
+ #: ../classes/settings.php:325
397
+ msgid "Value: This will show the first 20 words of the Post content."
398
+ msgstr "値:投稿内容の最初の20文字が表示されます。"
 
 
 
 
399
 
400
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
401
  msgid "Multiple Values"
402
  msgstr "複数の値"
403
 
404
+ #: ../classes/settings.php:326
405
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
406
+ msgstr "値:配列でなければいけません。(配列をフラット化します)"
407
+
408
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
409
  msgid "Numeric"
410
  msgstr "数値"
411
 
412
+ #: ../classes/settings.php:327
413
+ 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."
414
+ msgstr "値:整数だけ<br/>サポートします。ソートアドオンが有効な場合(カスタムフィールド)記事を並び変えることができます。"
415
 
416
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
417
+ msgid "Date"
418
+ msgstr "日付"
419
 
420
+ #: ../classes/settings.php:328
421
+ msgid ""
422
+ "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 "
423
+ "settings</a> page."
424
+ msgstr "値:<a href='%s'>Codex</a>の説明であるようにunixタイムスタンプや日付形式を指定できます。設定>一般<a href='%s'>日付のフォーマット</a>設定を利用できます。"
425
 
426
+ #: ../classes/settings.php:329
427
+ msgid "Post Titles"
428
+ msgstr "投稿タイトル"
429
 
430
+ #: ../classes/settings.php:329
431
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
432
+ msgstr "値:複数の場合は、ポストIDを(、)で区切ってください。"
433
 
434
+ #: ../classes/settings.php:330
435
+ msgid "Usernames"
436
+ msgstr "ユーザー名"
 
437
 
438
+ #: ../classes/settings.php:330
439
+ msgid "Value: can be one or more User ID's (seperated by ',')."
440
+ msgstr "値;複数のユーザーの場合は(、)で区切ってください。"
441
 
442
+ #: ../classes/settings.php:331
443
+ msgid "Checkmark"
444
+ msgstr "チェックマーク"
445
 
446
+ #: ../classes/settings.php:331
447
+ msgid "Value: should be a 1 (one) or 0 (zero)."
448
+ msgstr "値:1(one)または0(zero)"
449
 
450
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
451
+ msgid "Color"
452
+ msgstr ""
453
 
454
+ #: ../classes/settings.php:332
455
+ msgid "Value: hex value color, such as #808080."
456
+ msgstr "値:HEXカラーコード #808080など"
457
 
458
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
459
+ msgid "Counter"
460
+ msgstr "カウンター"
461
 
462
+ #: ../classes/settings.php:333
463
+ 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."
464
+ msgstr "値:文字列または配列。meta_keyの場合は回数を表示します"
465
 
466
+ #: ../classes/settings.php:422
467
+ msgid "Welcome to Admin Columns"
468
+ msgstr "ようこそ Admin Columns"
469
 
470
+ #: ../classes/settings.php:425
471
+ msgid "Thank you for updating to the latest version!"
472
+ msgstr "最新のバージョンに更新して頂きありがとうございます。"
473
 
474
+ #: ../classes/settings.php:426
475
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
476
  msgstr ""
477
+ "Admin Columns は洗練された管理画面を提供します。\n"
478
+ "私たちは、あなたやあなたのユーザーが喜ぶことを願っています。"
479
 
480
+ #: ../classes/settings.php:431
481
+ msgid "What’s New"
482
+ msgstr "最新"
483
 
484
+ #: ../classes/settings.php:432
485
+ msgid "Changelog"
486
+ msgstr "変更履歴"
487
 
488
+ #: ../classes/settings.php:437
489
+ msgid "Important"
490
+ msgstr "インポート"
491
 
492
+ #: ../classes/settings.php:439
493
+ msgid "Database Changes"
494
+ msgstr "データベースの変更"
495
 
496
+ #: ../classes/settings.php:440
497
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
498
+ msgstr "データベースには、バージョン1と2で変更されました。しかし、我々は、何の問題もなく戻ってバージョン1Xにロールバックすることができことを確認しています。"
499
 
500
+ #: ../classes/settings.php:443
501
+ msgid "Make sure you backup your database and then click"
502
+ msgstr "クリックしてデータバースのバックアップを作る"
503
 
504
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
505
+ msgid "Upgrade Database"
506
+ msgstr "データベースをアップデート"
507
 
508
+ #: ../classes/settings.php:446
509
+ msgid "Potential Issues"
510
+ msgstr "潜在的な問題"
511
 
512
+ #: ../classes/settings.php:447
513
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
514
+ msgstr "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full "
515
 
516
+ #: ../classes/settings.php:447
517
+ msgid "Migrating from v1 to v2"
518
+ msgstr "Ver1からVer2への移行"
519
 
520
+ #: ../classes/settings.php:447
521
+ msgid "guide to view the full list of changes."
522
+ msgstr "変更点の詳細案内"
523
 
524
+ #: ../classes/settings.php:447
525
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
526
+ msgstr ""
527
 
528
+ #: ../classes/settings.php:450
529
+ msgid "Important!"
530
+ msgstr "大切な事"
531
 
532
+ #: ../classes/settings.php:450
533
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
534
+ msgstr "プラグイン管理の列を更新した場合、最新のものにロールバックしてください。"
535
 
536
+ #: ../classes/settings.php:450
537
+ msgid "version 1"
538
+ msgstr "version 1 "
539
 
540
+ #: ../classes/settings.php:450
541
+ msgid "of this plugin."
542
+ msgstr "このプラグイン"
543
 
544
+ #: ../classes/settings.php:456
545
+ msgid "Changelog for"
546
+ msgstr "変更履歴の"
547
 
548
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
549
+ msgid "Learn more"
550
+ msgstr "詳細はこちら"
551
 
552
+ #: ../classes/settings.php:481
553
+ msgid "Start using Admin Columns"
554
+ msgstr "Admin Columnsをはじめましょう"
555
 
556
+ #: ../classes/settings.php:500
557
+ msgid "General Settings"
558
+ msgstr "一般設定"
559
+
560
+ #: ../classes/settings.php:501
561
+ msgid "Customize your Admin Columns settings."
562
  msgstr ""
563
+ "管理画面の列表示を<br/>\n"
564
+ "カスタマイズします。"
565
 
566
+ #: ../classes/settings.php:512
567
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
568
  msgstr ""
569
 
570
+ #: ../classes/settings.php:559
571
+ msgid "Restore Settings"
572
+ msgstr "設定の復元"
573
 
574
+ #: ../classes/settings.php:560
575
+ msgid "This will delete all column settings and restore the default settings."
576
+ msgstr ""
577
+ "追加された全ての列を削除し、<br/>\n"
578
+ "デフォルト設定に戻します。"
579
 
580
+ #: ../classes/settings.php:566
581
+ msgid "Restore default settings"
582
+ msgstr "デフォルト設定に戻します。"
583
 
584
+ #: ../classes/settings.php:566
585
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
586
  msgstr ""
587
 
588
+ #: ../classes/settings.php:582
589
+ msgid "Posttypes"
590
+ msgstr ""
591
 
592
+ #: ../classes/settings.php:583
593
+ msgid "Others"
594
+ msgstr ""
595
 
596
+ #: ../classes/settings.php:584
597
+ msgid "Taxonomies"
598
+ msgstr ""
599
 
600
+ #: ../classes/settings.php:600
601
+ msgid "Settings"
602
+ msgstr "設定"
603
 
604
+ #: ../classes/settings.php:601
605
+ msgid "Add-ons"
606
+ msgstr ""
607
 
608
+ #: ../classes/settings.php:669
609
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
610
+ msgstr ""
611
 
612
+ #: ../classes/settings.php:679
613
+ msgid "Store settings"
614
+ msgstr "設定を保存"
615
 
616
+ #: ../classes/settings.php:687
617
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
618
+ msgstr ""
619
 
620
+ #: ../classes/settings.php:688
621
+ msgid "Restore"
622
+ msgstr "初期状態に戻す"
623
 
624
+ #: ../classes/settings.php:688
625
+ msgid "columns"
626
+ msgstr "-列"
627
 
628
+ #: ../classes/settings.php:707
629
+ msgid "Get Admin Columns Pro"
630
  msgstr ""
631
 
632
+ #: ../classes/settings.php:711
633
+ msgid "Add Sorting"
634
+ msgstr "ソートを追加"
635
 
636
+ #: ../classes/settings.php:712
637
+ msgid "Add Filtering"
638
+ msgstr "フィルターを追加"
 
639
 
640
+ #: ../classes/settings.php:713
641
+ msgid "Add Import/Export"
642
+ msgstr "設定のインポート・エキスポートを追加"
 
643
 
644
+ #: ../classes/settings.php:714
645
+ msgid "Add Direct Editing"
646
  msgstr ""
647
 
648
+ #: ../classes/settings.php:717
649
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
650
  msgstr ""
651
 
652
+ #: ../classes/settings.php:730
653
+ msgid "Subscribe to receive news &amp; updates below."
 
 
 
 
 
 
 
 
654
  msgstr ""
655
 
656
+ #: ../classes/settings.php:737
657
+ msgid "Your Email"
658
+ msgstr ""
659
 
660
+ #: ../classes/settings.php:748
661
+ msgid "Are you happy with Admin Columns?"
662
+ msgstr ""
663
 
664
+ #: ../classes/settings.php:756
665
+ msgid "What's wrong? Need help? Let us know!"
666
+ msgstr ""
667
 
668
+ #: ../classes/settings.php:757
669
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
670
+ msgstr ""
671
 
672
+ #: ../classes/settings.php:765
673
+ msgid "Docs"
674
  msgstr ""
675
 
676
+ #: ../classes/settings.php:770
677
+ msgid "Forums"
678
  msgstr ""
679
 
680
+ #: ../classes/settings.php:779
681
+ msgid "Woohoo! We're glad to hear that!"
682
  msgstr ""
683
 
684
+ #: ../classes/settings.php:780
685
+ 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!"
686
  msgstr ""
687
 
688
+ #: ../classes/settings.php:784
689
+ msgid "Rate"
690
+ msgstr ""
691
 
692
+ #: ../classes/settings.php:795
693
+ msgid "Tweet"
694
+ msgstr ""
695
 
696
+ #: ../classes/settings.php:805
697
+ msgid "Buy Pro"
698
  msgstr ""
699
 
700
+ #: ../classes/settings.php:817
701
+ msgid "Support"
702
+ msgstr "サポート"
703
 
704
+ #: ../classes/settings.php:820
705
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
706
+ msgstr "画面右上の<strong>Help</strong>を確認してください。"
707
 
708
+ #: ../classes/settings.php:823
709
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
710
+ msgstr ""
711
+ "ドキュメント・バグレポート・機能の提案などは<br/>\n"
712
+ " <a href='%s'> Admin Columns website</a>を訪れてください。"
713
 
714
+ #: ../classes/settings.php:852
715
+ msgid "Drag and drop to reorder"
716
+ msgstr "ドロップ&ドラッグで表示順序を変更できます"
717
 
718
+ #: ../classes/settings.php:855
719
+ msgid "Add Column"
720
+ msgstr "列の追加"
 
 
 
 
 
 
 
 
721
 
722
+ #: ../classes/settings.php:936
723
+ msgid "Active"
724
  msgstr ""
725
 
726
+ #: ../classes/settings.php:937
727
+ msgid "Deactivate"
 
 
 
 
728
  msgstr ""
729
 
730
+ #: ../classes/settings.php:944
731
+ msgid "Installed"
 
 
 
 
732
  msgstr ""
733
 
734
+ #: ../classes/settings.php:945
735
+ msgid "Activate"
736
  msgstr ""
737
 
738
+ #: ../classes/settings.php:959
739
+ msgid "Download & Install"
740
  msgstr ""
741
 
742
+ #: ../classes/settings.php:964
743
+ msgid "Get this add-on"
 
 
 
 
744
  msgstr ""
745
 
746
+ #: ../classes/storage_model.php:262
747
+ msgid "settings succesfully restored."
748
+ msgstr "設定を復元しました。"
 
 
 
 
 
 
 
 
749
 
750
+ #: ../classes/storage_model.php:278
751
+ msgid "No columns settings available."
752
+ msgstr "設定された列はありません"
753
 
754
+ #: ../classes/storage_model.php:299
755
+ msgid "You are trying to store the same settings for %s."
756
+ msgstr "%sはすでに設定済みです "
757
 
758
+ #: ../classes/storage_model.php:303
759
+ msgid "Settings for %s updated successfully."
760
  msgstr ""
761
 
762
+ #: ../classes/storage_model.php:643
763
+ msgid "Columns by Plugins"
 
 
 
 
 
 
 
 
764
  msgstr ""
765
 
766
+ #: ../classes/storage_model.php:862
767
+ msgid "View"
768
+ msgstr "表示"
 
 
 
769
 
770
+ #: ../classes/upgrade.php:62
771
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
772
  msgstr ""
773
 
774
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
775
+ msgid "Upgrade"
776
+ msgstr "アップグレード"
777
 
778
+ #: ../classes/upgrade.php:136
779
+ msgid "requires a database upgrade"
780
+ msgstr "データベースの更新(アップグレード)が必要です。"
781
 
782
+ #: ../classes/upgrade.php:139
783
+ msgid "why?"
784
+ msgstr "なぜ?"
 
 
 
785
 
786
+ #: ../classes/upgrade.php:140
787
+ msgid "Please"
788
+ msgstr "どうぞ"
789
 
790
+ #: ../classes/upgrade.php:141
791
+ msgid "backup your database"
792
+ msgstr "データベースのバックアップ"
 
793
 
794
+ #: ../classes/upgrade.php:142
795
+ msgid "then click"
796
+ msgstr "クリックする"
797
 
798
+ #: ../classes/upgrade.php:351
799
+ msgid "Migrating Column Settings"
800
+ msgstr "移行列の設定"
 
801
 
802
+ #: ../classes/upgrade.php:387
803
+ msgid "No Upgrade Required"
804
+ msgstr "アップグレード不可"
805
 
806
+ #: ../classes/upgrade.php:388
807
+ msgid "Return to welcome screen."
808
+ msgstr "「ようこそ」の画面へ戻ります"
809
 
810
+ #: ../classes/upgrade.php:406
811
+ msgid "Upgrade Complete!"
812
+ msgstr "更新完了"
813
 
814
+ #: ../classes/upgrade.php:406
815
+ msgid "Return to settings."
816
+ msgstr "設定へ戻る"
817
 
818
+ #: ../classes/upgrade.php:407
819
+ msgid "Error"
820
+ msgstr "エラー"
821
 
822
+ #: ../classes/upgrade.php:408
823
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
824
+ msgstr "申し訳ありません。アップグレードプロセス中にエラーが発生しました。サポートフォーラムへ報告してください。"
 
825
 
826
+ #: ../classes/column/acf-placeholder.php:19
827
+ msgid "ACF Field"
828
+ msgstr ""
829
 
830
+ #: ../classes/column/acf-placeholder.php:35
831
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
832
+ msgstr ""
833
 
834
+ #: ../classes/column/acf-placeholder.php:38
835
  msgid ""
836
+ "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
837
  msgstr ""
 
 
 
838
 
839
+ #: ../classes/column/acf-placeholder.php:44
840
+ msgid "Find out more"
841
+ msgstr ""
 
 
 
 
842
 
843
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
844
+ msgid "Actions"
845
+ msgstr "アクション"
846
 
847
+ #: ../classes/column/actions.php:96
848
+ msgid "Use icons?"
849
+ msgstr ""
850
 
851
+ #: ../classes/column/actions.php:96
852
+ msgid "Use icons instead of text for displaying the actions."
853
  msgstr ""
 
 
854
 
855
+ #: ../classes/column/custom-field.php:96
856
+ msgid "Checkmark (true/false)"
857
+ msgstr "チェックマーク(true/false)"
858
 
859
+ #: ../classes/column/custom-field.php:102
860
+ msgid "Media Library"
861
+ msgstr "メディアライブラリー"
862
 
863
+ #: ../classes/column/custom-field.php:105
864
+ msgid "Post Title (Post ID's)"
865
+ msgstr "タイトル(Post ID's)"
866
 
867
+ #: ../classes/column/custom-field.php:106
868
+ msgid "Username (User ID's)"
869
+ msgstr "ユーザー名(User ID's)"
870
 
871
+ #: ../classes/column/custom-field.php:107
872
+ msgid "Term Name (Term ID's)"
873
+ msgstr ""
874
 
875
+ #: ../classes/column/custom-field.php:391
876
+ msgid "Select your custom field."
877
+ msgstr "カスタムフィールドを選択"
878
 
879
+ #: ../classes/column/custom-field.php:401
880
+ msgid "No custom fields available."
881
+ msgstr "カスタムフィールドがありません"
882
 
883
+ #: ../classes/column/custom-field.php:401
884
+ msgid "Please create a %s item first."
885
+ msgstr ""
886
 
887
+ #: ../classes/column/custom-field.php:408
888
+ msgid "Field Type"
889
+ msgstr "フィールドタイプ"
890
 
891
+ #: ../classes/column/custom-field.php:408
892
+ msgid "This will determine how the value will be displayed."
893
+ msgstr "表示される方法を設定します"
 
 
 
894
 
895
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
896
+ msgid "Taxonomy"
897
+ msgstr "タクソノミー"
898
 
899
+ #: ../classes/column/used-by-menu.php:20
900
+ msgid "Used by Menu"
901
+ msgstr ""
902
 
903
+ #: ../classes/column/used-by-menu.php:133
904
+ msgid "Link to menu"
905
+ msgstr ""
906
 
907
+ #: ../classes/column/used-by-menu.php:133
908
+ msgid "This will make the title link to the menu."
909
+ msgstr ""
910
 
911
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
912
+ msgid "ID"
913
+ msgstr "ID"
914
 
915
+ #: ../classes/column/comment/agent.php:19
916
+ msgid "Agent"
917
+ msgstr "エージェント"
918
 
919
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
920
+ msgid "Approved"
921
+ msgstr "承認された"
922
 
923
+ #: ../classes/column/comment/author-avatar.php:19
924
+ msgid "Avatar"
925
+ msgstr "アバター"
926
 
927
+ #: ../classes/column/comment/author-email.php:19
928
+ msgid "Author email"
929
+ msgstr "投稿者メール"
930
 
931
+ #: ../classes/column/comment/author-ip.php:19
932
+ msgid "Author IP"
933
+ msgstr "投稿者IP"
934
 
935
+ #: ../classes/column/comment/author-name.php:12
936
+ msgid "Author name"
937
  msgstr ""
 
 
938
 
939
+ #: ../classes/column/comment/author-url.php:19
940
+ msgid "Author url"
941
+ msgstr "投稿者URL"
942
 
943
+ #: ../classes/column/comment/author.php:19
944
+ msgid "Author"
945
+ msgstr "投稿者"
946
 
947
+ #: ../classes/column/comment/date-gmt.php:19
948
+ msgid "Date GMT"
949
+ msgstr "日時(GMT)"
950
 
951
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
952
+ msgid "Content"
953
+ msgstr ""
954
 
955
+ #: ../classes/column/comment/post.php:19
956
+ msgid "Post"
957
+ msgstr ""
958
 
959
+ #: ../classes/column/comment/reply-to.php:19
960
+ msgid "In Reply To"
961
+ msgstr "返信先"
962
 
963
+ #: ../classes/column/comment/user.php:11
964
+ msgid "User"
965
+ msgstr ""
966
 
967
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
968
+ msgid "Word count"
969
+ msgstr "文字数"
970
 
971
+ #: ../classes/column/media/alternate-text.php:19
972
+ msgid "Alt"
973
+ msgstr "代替テキスト"
974
 
975
+ #: ../classes/column/media/attached-to.php:19
976
+ msgid "Attached to post"
977
+ msgstr ""
978
 
979
+ #: ../classes/column/media/available-sizes.php:20
980
+ msgid "Available Sizes"
981
+ msgstr "利用できるサイズ"
982
 
983
+ #: ../classes/column/media/available-sizes.php:40
984
+ msgid "full size"
985
+ msgstr "フルサイズ"
 
986
 
987
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
988
+ msgid "Caption"
989
+ msgstr "キャプション"
990
 
991
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
992
+ msgid "Description"
993
+ msgstr "説明"
994
 
995
+ #: ../classes/column/media/dimensions.php:19
996
+ msgid "Dimensions"
997
+ msgstr "大きさ"
998
 
999
+ #: ../classes/column/media/exif-data.php:19
1000
+ msgid "EXIF data"
1001
+ msgstr "EXIFデータ"
1002
 
1003
+ #: ../classes/column/media/exif-data.php:38
1004
+ msgid "Aperture"
1005
+ msgstr "絞り(Aperture)"
1006
 
1007
+ #: ../classes/column/media/exif-data.php:39
1008
+ msgid "Credit"
1009
+ msgstr "クレジット"
1010
 
1011
+ #: ../classes/column/media/exif-data.php:40
1012
+ msgid "Camera"
1013
+ msgstr "カメラ"
1014
 
1015
+ #: ../classes/column/media/exif-data.php:42
1016
+ msgid "Timestamp"
1017
+ msgstr "タイムスタンプ"
1018
 
1019
+ #: ../classes/column/media/exif-data.php:43
1020
+ msgid "Copyright EXIF"
1021
+ msgstr "EXIF著作権 "
 
 
1022
 
1023
+ #: ../classes/column/media/exif-data.php:44
1024
+ msgid "Focal Length"
1025
+ msgstr "焦点距離(Focal Length)"
1026
 
1027
+ #: ../classes/column/media/exif-data.php:45
1028
+ msgid "ISO"
1029
+ msgstr "感度(ISO)"
1030
 
1031
+ #: ../classes/column/media/exif-data.php:46
1032
+ msgid "Shutter Speed"
1033
+ msgstr "シャッタースピード"
1034
 
1035
+ #: ../classes/column/media/exif-data.php:47
1036
+ msgid "Title"
1037
+ msgstr "タイトル"
 
 
1038
 
1039
+ #: ../classes/column/media/file-name.php:19
1040
+ msgid "File name"
1041
+ msgstr "ファイル名"
1042
 
1043
+ #: ../classes/column/media/file-size.php:19
1044
+ msgid "File size"
1045
+ msgstr "ファイルサイズ"
1046
 
1047
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1048
+ msgid "Full path"
1049
+ msgstr "フルパス"
1050
 
1051
+ #: ../classes/column/media/full-path.php:83
1052
+ msgid "Path scope"
1053
  msgstr ""
1054
 
1055
+ #: ../classes/column/media/full-path.php:84
1056
+ msgid "Part of the file path to display"
1057
  msgstr ""
1058
 
1059
+ #: ../classes/column/media/full-path.php:97
1060
+ msgid "Relative to domain"
 
 
 
 
1061
  msgstr ""
1062
 
1063
+ #: ../classes/column/media/full-path.php:102
1064
+ msgid "Relative to main uploads folder "
 
1065
  msgstr ""
1066
 
1067
+ #: ../classes/column/media/height.php:19
1068
+ msgid "Height"
1069
+ msgstr "高さ"
1070
 
1071
+ #: ../classes/column/media/mime-type.php:19
1072
+ msgid "Mime type"
1073
+ msgstr "Mimeタイプ"
1074
 
1075
+ #: ../classes/column/post/attachment-count.php:19
1076
+ msgid "No. of Attachments"
1077
+ msgstr "アタッチメント(ファイル等)ID"
 
1078
 
1079
+ #: ../classes/column/post/attachment.php:19
1080
+ msgid "Attachments"
1081
+ msgstr ""
1082
 
1083
+ #: ../classes/column/post/author-name.php:20
1084
+ msgid "Display Author As"
1085
+ msgstr "投稿者名"
1086
 
1087
+ #: ../classes/column/post/author-name.php:100
1088
+ msgid "View Public Author Page"
1089
  msgstr ""
1090
 
1091
+ #: ../classes/column/post/author-name.php:102
1092
+ msgid "Page the author name should link to."
1093
+ msgstr ""
1094
 
1095
+ #: ../classes/column/post/before-moretag.php:19
1096
+ msgid "Before More Tag"
1097
+ msgstr "タグの前に"
1098
 
1099
+ #: ../classes/column/post/comment-count.php:20
1100
+ msgid "Comment count"
1101
+ msgstr "コメント数"
1102
 
1103
+ #: ../classes/column/post/comment-count.php:34
1104
+ msgid "Total"
1105
+ msgstr "トータル"
1106
 
1107
+ #: ../classes/column/post/comment-count.php:36
1108
+ msgid "Pending"
1109
+ msgstr "ペンディング"
 
1110
 
1111
+ #: ../classes/column/post/comment-count.php:37
1112
+ msgid "Spam"
1113
+ msgstr "スパム"
1114
 
1115
+ #: ../classes/column/post/comment-count.php:38
1116
+ msgid "Trash"
1117
+ msgstr "ゴミ箱"
1118
 
1119
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1120
+ msgid "Comment status"
1121
+ msgstr "コメントステータス"
1122
 
1123
+ #: ../classes/column/post/comment-count.php:99
1124
+ msgid "Select which comment status you like to display."
1125
+ msgstr "表示させたいコメントステータスを選択します。"
1126
 
1127
+ #: ../classes/column/post/depth.php:19
1128
+ msgid "Depth"
1129
  msgstr ""
1130
 
1131
+ #: ../classes/column/post/estimated-reading-time.php:19
1132
+ msgid "Estimated Reading Time"
1133
  msgstr ""
1134
 
1135
+ #: ../classes/column/post/estimated-reading-time.php:66
1136
+ msgid "second"
1137
+ msgid_plural "seconds"
1138
+ msgstr[0] ""
1139
 
1140
+ #: ../classes/column/post/estimated-reading-time.php:69
1141
+ msgid "minute"
1142
+ msgid_plural "minutes"
1143
+ msgstr[0] ""
1144
 
1145
+ #: ../classes/column/post/estimated-reading-time.php:107
1146
+ msgid "Words per minute"
1147
  msgstr ""
1148
 
1149
+ #: ../classes/column/post/estimated-reading-time.php:108
1150
+ msgid "Estimated reading time in words per minute"
1151
  msgstr ""
1152
 
1153
+ #: ../classes/column/post/featured-image.php:19
1154
+ msgid "Featured Image"
1155
+ msgstr "注目画像"
1156
 
1157
+ #: ../classes/column/post/formats.php:19
1158
+ msgid "Post Format"
1159
+ msgstr "ポストフォーマット"
1160
 
1161
+ #: ../classes/column/post/last-modified-author.php:20
1162
+ msgid "Last Modified Author"
 
1163
  msgstr ""
 
 
1164
 
1165
+ #: ../classes/column/post/modified.php:19
1166
+ msgid "Last modified"
1167
+ msgstr "最終更新"
 
 
 
 
1168
 
1169
+ #: ../classes/column/post/order.php:19
1170
+ msgid "Order"
1171
  msgstr ""
1172
 
1173
+ #: ../classes/column/post/page-template.php:19
1174
+ msgid "Page Template"
1175
+ msgstr "ページテンプレート"
1176
 
1177
+ #: ../classes/column/post/parent.php:19
1178
+ msgid "Parent"
1179
+ msgstr "パーマメント"
1180
 
1181
+ #: ../classes/column/post/path.php:19
1182
+ msgid "Path"
1183
  msgstr ""
1184
 
1185
+ #: ../classes/column/post/permalink.php:19
1186
+ msgid "Permalink"
1187
  msgstr ""
1188
 
1189
+ #: ../classes/column/post/permalink.php:68
1190
+ msgid "Link to post"
1191
  msgstr ""
1192
 
1193
+ #: ../classes/column/post/permalink.php:68
1194
+ msgid "This will make the permalink clickable."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1195
  msgstr ""
1196
 
1197
+ #: ../classes/column/post/ping-status.php:19
1198
+ msgid "Ping status"
1199
+ msgstr "Pingステータス"
1200
 
1201
+ #: ../classes/column/post/roles.php:19
1202
+ msgid "Roles"
1203
+ msgstr "権限"
1204
 
1205
+ #: ../classes/column/post/shortcodes.php:19
1206
+ msgid "Shortcodes"
1207
  msgstr ""
1208
 
1209
+ #: ../classes/column/post/slug.php:19
1210
+ msgid "Slug"
1211
+ msgstr "スラッグ"
 
 
 
 
1212
 
1213
+ #: ../classes/column/post/status.php:21
1214
+ msgid "Status"
1215
+ msgstr "ステータス"
1216
 
1217
+ #: ../classes/column/post/sticky.php:19
1218
+ msgid "Sticky"
1219
+ msgstr "先頭に固定表示"
1220
 
1221
+ #: ../classes/column/post/title-raw.php:19
1222
+ msgid "Title without actions"
1223
  msgstr ""
1224
 
1225
+ #: ../classes/column/link/length.php:19
1226
+ msgid "Length"
1227
+ msgstr "長さ"
 
 
 
 
1228
 
1229
+ #: ../classes/column/link/notes.php:19
1230
+ msgid "Notes"
1231
+ msgstr "注釈"
1232
 
1233
+ #: ../classes/column/link/owner.php:19
1234
+ msgid "Owner"
1235
+ msgstr "オーナー"
1236
 
1237
+ #: ../classes/column/link/rss.php:19
1238
+ msgid "Rss"
1239
+ msgstr "Rss"
1240
 
1241
+ #: ../classes/column/link/target.php:19
1242
+ msgid "Target"
1243
+ msgstr "ターゲット"
1244
 
1245
+ #: ../classes/column/user/display-name.php:19
1246
+ msgid "Display name"
1247
+ msgstr ""
1248
 
1249
+ #: ../classes/column/user/first-name.php:19
1250
+ msgid "First name"
1251
+ msgstr ""
1252
 
1253
+ #: ../classes/column/user/last-name.php:19
1254
+ msgid "Last name"
1255
+ msgstr ""
1256
 
1257
+ #: ../classes/column/user/post-count.php:19
1258
+ msgid "Post Count"
1259
+ msgstr "コメント"
1260
 
1261
+ #: ../classes/column/user/post-count.php:89
1262
+ msgid "Post Type"
1263
+ msgstr "投稿タイプ"
1264
 
1265
+ #: ../classes/column/user/registered.php:19
1266
+ msgid "Registered"
1267
+ msgstr "登録された"
1268
 
1269
+ #: ../classes/column/user/rich-editing.php:19
1270
+ msgid "Visual Editor"
1271
+ msgstr ""
1272
 
1273
+ #: ../classes/column/user/url.php:19
1274
+ msgid "Url"
1275
+ msgstr "URL"
languages/codepress-admin-columns-nl_NL.mo ADDED
Binary file
languages/{cpac-nl_NL.po → codepress-admin-columns-nl_NL.po} RENAMED
@@ -1,32 +1,31 @@
1
- #
 
2
  # Translators:
3
  # Axel Vanderhaeghen <axel@eco13.eu>, 2014
4
  # Tobias Schutter <info@codepress.nl>, 2013-2015
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
10
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/admin-columns/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: nl_NL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.8.1\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
- "X-Poedit-SearchPathExcluded-0: ../src\n"
25
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
@@ -48,1251 +47,1210 @@ msgstr "WooCommerce"
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr "Verbeter de producten, orders en coupons overzichten met de nieuwe kolommen en inline editing."
50
 
51
- #: ../classes/column.php:597
52
  msgid "Thumbnail"
53
  msgstr "Thumbnail"
54
 
55
- #: ../classes/column.php:598
56
  msgid "Medium"
57
  msgstr "Gemiddeld"
58
 
59
- #: ../classes/column.php:599
60
  msgid "Large"
61
  msgstr "Groot"
62
 
63
- #: ../classes/column.php:600
64
  msgid "Full"
65
  msgstr "Volledig"
66
 
67
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "Date Format"
69
  msgstr "Datumnotatie"
70
 
71
- #: ../classes/column.php:1042
72
  msgid "This will determine how the date will be displayed."
73
  msgstr "Dit bepaald hoe de datum wordt weergegeven."
74
 
75
- #: ../classes/column.php:1048
76
  msgid "Example:"
77
  msgstr "Voorbeeld:"
78
 
79
- #: ../classes/column.php:1050
80
- #, php-format
81
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
82
- msgstr "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard datumformaat </a>."
83
 
84
- #: ../classes/column.php:1051
85
  msgid "Documentation on date and time formatting."
86
  msgstr "Documentatie over datum en tijd opmaak."
87
 
88
- #: ../classes/column.php:1065
89
  msgid "Excerpt length"
90
  msgstr "Samenvatting lengte"
91
 
92
- #: ../classes/column.php:1066
93
  msgid "Number of words"
94
  msgstr "Aantal woorden"
95
 
96
- #: ../classes/column.php:1084
97
  msgid "Preview size"
98
  msgstr "Voorbeeldformaat"
99
 
100
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
101
  msgid "Custom"
102
  msgstr "Aangepast"
103
 
104
- #: ../classes/column.php:1104 ../classes/column.php:1251
105
  msgid "width"
106
  msgstr "breedte"
107
 
108
- #: ../classes/column.php:1107
109
  msgid "height"
110
  msgstr "hoogte"
111
 
112
- #: ../classes/column.php:1119
113
  msgid "Before"
114
  msgstr "Voor"
115
 
116
- #: ../classes/column.php:1119
117
  msgid "This text will appear before the custom field value."
118
  msgstr "Deze tekst wordt getoond voor de custom field waarde."
119
 
120
- #: ../classes/column.php:1120
121
  msgid "After"
122
  msgstr "Na"
123
 
124
- #: ../classes/column.php:1120
125
  msgid "This text will appear after the custom field value."
126
  msgstr "Deze tekst wordt getoond na de custom field waarde."
127
 
128
- #: ../classes/column.php:1129
129
  msgid "Display Name"
130
  msgstr "Schermnaam"
131
 
132
- #: ../classes/column.php:1130
133
  msgid "First Name"
134
  msgstr "Voornaam"
135
 
136
- #: ../classes/column.php:1131
137
  msgid "Last Name"
138
  msgstr "Achternaam"
139
 
140
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
141
  msgid "Nickname"
142
  msgstr "Nickname"
143
 
144
- #: ../classes/column.php:1133
145
  msgid "User Login"
146
  msgstr "Gebruikers login"
147
 
148
- #: ../classes/column.php:1134
149
  msgid "User Email"
150
  msgstr "Gebruiker Email"
151
 
152
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
153
  msgid "User ID"
154
  msgstr "Gebruiker ID"
155
 
156
- #: ../classes/column.php:1136
157
  msgid "First and Last Name"
158
  msgstr "Voor- en achternaam"
159
 
160
- #: ../classes/column.php:1139
161
  msgid "Display format"
162
  msgstr "Weergave formaat"
163
 
164
- #: ../classes/column.php:1139
165
  msgid "This is the format of the author name."
166
  msgstr "Dit is het formaat van de auteursnaam"
167
 
168
- #: ../classes/column.php:1273
169
  msgid "Edit"
170
  msgstr "Bewerken"
171
 
172
- #: ../classes/column.php:1275 ../classes/column.php:1367
173
  msgid "Clone"
174
  msgstr "Kloon"
175
 
176
- #: ../classes/column.php:1277 ../classes/column.php:1369
177
  msgid "Remove"
178
  msgstr "Verwijderen"
179
 
180
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
181
  msgid "Type"
182
  msgstr "Type"
183
 
184
- #: ../classes/column.php:1295
185
  msgid "Choose a column type."
186
  msgstr "Kies een kolom type."
187
 
188
- #: ../classes/column.php:1295
189
  msgid "Name"
190
  msgstr "Naam"
191
 
192
- #: ../classes/column.php:1305
193
  msgid "Label"
194
  msgstr "Label"
195
 
196
- #: ../classes/column.php:1305
197
  msgid "This is the name which will appear as the column header."
198
  msgstr "Deze naam zal verschijnen als kolom kop."
199
 
200
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
201
  msgid "Width"
202
  msgstr "Breedte"
203
 
204
- #: ../classes/column.php:1314
205
  msgid "default"
206
  msgstr "standaard"
207
 
208
- #: ../classes/column.php:1315
209
  msgid "auto"
210
  msgstr "auto"
211
 
212
- #: ../classes/column/acf-placeholder.php:19
213
- msgid "ACF Field"
214
- msgstr "ACF Veld"
215
 
216
- #: ../classes/column/acf-placeholder.php:32
217
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
218
- msgstr "Deze feature is alleen beschikbaar in Admin Columns Pro - Business of Developer."
219
 
220
- #: ../classes/column/acf-placeholder.php:35
221
- #, php-format
222
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
223
- msgstr "Heb je een developer licence, download & installeer dan je ACF add-on via de <a href='%s'>add-ons tab</a>."
224
 
225
- #: ../classes/column/acf-placeholder.php:38
226
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
227
- msgstr "Admin Columns Pro - Developer biedt volledige integratie van Geavanceerde Aangepaste Velden. Je kunt ze vlot weergeven en aanpassen in je berichtenoverzicht."
228
 
229
- #: ../classes/column/acf-placeholder.php:44
230
- msgid "Find out more"
231
- msgstr "Meer weten"
232
 
233
- #: ../classes/column/actions.php:29
234
- msgid "Actions"
235
- msgstr "Acties"
236
 
237
- #: ../classes/column/actions.php:96
238
- msgid "Use icons?"
239
- msgstr "Gebruik iconen?"
240
 
241
- #: ../classes/column/actions.php:96
242
- msgid "Use icons instead of text for displaying the actions."
243
- msgstr "Gebruik iconen in plaats van tekst om actions te tonen."
244
 
245
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
246
- msgid "Yes"
247
- msgstr "Ja"
248
 
249
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
250
- msgid "No"
251
- msgstr "Nee"
252
 
253
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
254
- msgid "ID"
255
- msgstr "ID"
256
 
257
- #: ../classes/column/comment/agent.php:19
258
- msgid "Agent"
259
- msgstr "Agent"
260
 
261
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
262
- msgid "Approved"
263
- msgstr "Goedgekeurd"
264
 
265
- #: ../classes/column/comment/author-avatar.php:19
266
- msgid "Avatar"
267
- msgstr "Avatar"
268
 
269
- #: ../classes/column/comment/author-email.php:19
270
- msgid "Author email"
271
- msgstr "Auteurs email"
272
 
273
- #: ../classes/column/comment/author-ip.php:19
274
- msgid "Author IP"
275
- msgstr "Auteur IP"
276
 
277
- #: ../classes/column/comment/author-name.php:12
278
- msgid "Author name"
279
- msgstr ""
280
 
281
- #: ../classes/column/comment/author-url.php:19
282
- msgid "Author url"
283
- msgstr "Auteurs url"
284
 
285
- #: ../classes/column/comment/author.php:19
286
- msgid "Author"
287
- msgstr "Auteur"
288
 
289
- #: ../classes/column/comment/date-gmt.php:19
290
- msgid "Date GMT"
291
- msgstr "Datum GMT"
292
 
293
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
294
- #, php-format
295
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
296
- msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
297
 
298
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
299
- msgid "Date"
300
- msgstr "Datum"
301
 
302
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
303
- msgid "Content"
304
- msgstr "Content"
305
 
306
- #: ../classes/column/comment/reply-to.php:19
307
- msgid "In Reply To"
308
- msgstr "Antwoord op"
309
 
310
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
311
- msgid "User"
312
- msgstr "Gebruiker"
313
 
314
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
315
- msgid "Word count"
316
- msgstr "Aantal woorden"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
319
  msgid "Custom Field"
320
  msgstr "Custom veld"
321
 
322
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
323
  msgid "Default"
324
  msgstr "Standaard"
325
 
326
- #: ../classes/column/custom-field.php:95
327
- msgid "Checkmark (true/false)"
328
- msgstr "Vinkje (true/false)"
329
 
330
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
331
- msgid "Color"
332
- msgstr "Kleur"
333
 
334
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
335
- msgid "Counter"
336
- msgstr "Teller"
337
 
338
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
339
  msgid "Excerpt"
340
  msgstr "Samenvatting"
341
 
342
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
343
- msgid "Image"
344
- msgstr "Afbeelding"
345
-
346
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
347
- msgid "Media Library"
348
- msgstr "Mediabibliotheek"
349
 
350
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
351
  msgid "Multiple Values"
352
  msgstr "Meerdere waarden"
353
 
354
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
355
  msgid "Numeric"
356
  msgstr "Numerieke"
357
 
358
- #: ../classes/column/custom-field.php:104
359
- msgid "Post Title (Post ID's)"
360
- msgstr "Post Titel (Post ID's)"
361
 
362
- #: ../classes/column/custom-field.php:105
363
- msgid "Username (User ID's)"
364
- msgstr "Gebruikersnaam ( Gebruiker ID's )"
365
 
366
- #: ../classes/column/custom-field.php:106
367
- msgid "Term Name (Term ID's)"
368
- msgstr "Term naam (Term ID's)"
369
 
370
- #: ../classes/column/custom-field.php:390
371
- msgid "Select your custom field."
372
- msgstr "Selecteer uw custom field."
373
 
374
- #: ../classes/column/custom-field.php:400
375
- msgid "No custom fields available."
376
- msgstr "Geen custom fields beschikbaar."
377
 
378
- #: ../classes/column/custom-field.php:400
379
- #, php-format
380
- msgid "Please create a %s item first."
381
- msgstr "Maak eerste een %s item aan."
382
 
383
- #: ../classes/column/custom-field.php:407
384
- msgid "Field Type"
385
- msgstr "Veld type"
386
 
387
- #: ../classes/column/custom-field.php:407
388
- msgid "This will determine how the value will be displayed."
389
- msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
390
 
391
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
392
- msgid "Description"
393
- msgstr "Beschrijving"
394
 
395
- #: ../classes/column/link/length.php:19
396
- msgid "Length"
397
- msgstr "Lengte"
398
 
399
- #: ../classes/column/link/notes.php:19
400
- msgid "Notes"
401
- msgstr "Beschrijving"
402
 
403
- #: ../classes/column/link/owner.php:19
404
- msgid "Owner"
405
- msgstr "Eigenaar"
406
 
407
- #: ../classes/column/link/rss.php:19
408
- msgid "Rss"
409
- msgstr "Rss"
410
 
411
- #: ../classes/column/link/target.php:19
412
- msgid "Target"
413
- msgstr "Doel"
414
 
415
- #: ../classes/column/media/alternate-text.php:19
416
- msgid "Alt"
417
- msgstr "Alt"
418
 
419
- #: ../classes/column/media/attached-to.php:19
420
- msgid "Attached to post"
421
- msgstr "Voeg toe aan post"
422
 
423
- #: ../classes/column/media/available-sizes.php:20
424
- msgid "Available Sizes"
425
- msgstr "Beschikbare Afmetingen"
426
 
427
- #: ../classes/column/media/available-sizes.php:40
428
- msgid "full size"
429
- msgstr "Volledige grootte"
430
 
431
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
432
- msgid "Caption"
433
- msgstr "Onderschrift"
434
 
435
- #: ../classes/column/media/dimensions.php:19
436
- msgid "Dimensions"
437
- msgstr "Afmetingen"
438
 
439
- #: ../classes/column/media/exif-data.php:19
440
- msgid "EXIF data"
441
- msgstr "EXIF data"
442
-
443
- #: ../classes/column/media/exif-data.php:38
444
- msgid "Aperture"
445
- msgstr "Aperture"
446
 
447
- #: ../classes/column/media/exif-data.php:39
448
- msgid "Credit"
449
- msgstr "Credit"
450
 
451
- #: ../classes/column/media/exif-data.php:40
452
- msgid "Camera"
453
- msgstr "Camera"
454
 
455
- #: ../classes/column/media/exif-data.php:42
456
- msgid "Timestamp"
457
- msgstr "Timestamp"
458
 
459
- #: ../classes/column/media/exif-data.php:43
460
- msgid "Copyright EXIF"
461
- msgstr "Copyright EXIF"
462
 
463
- #: ../classes/column/media/exif-data.php:44
464
- msgid "Focal Length"
465
- msgstr "Brandpuntsafstand"
466
 
467
- #: ../classes/column/media/exif-data.php:45
468
- msgid "ISO"
469
- msgstr "ISO"
470
 
471
- #: ../classes/column/media/exif-data.php:46
472
- msgid "Shutter Speed"
473
- msgstr "Sluitertijd"
474
 
475
- #: ../classes/column/media/exif-data.php:47
476
- msgid "Title"
477
- msgstr "Titel"
478
 
479
- #: ../classes/column/media/file-name.php:19
480
- msgid "File name"
481
- msgstr "Bestandsnaam"
482
 
483
- #: ../classes/column/media/file-size.php:19
484
- msgid "File size"
485
- msgstr "Bestandsgrootte"
486
 
487
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
488
- msgid "Full path"
489
- msgstr "Volledige pad"
490
 
491
- #: ../classes/column/media/full-path.php:83
492
- msgid "Path scope"
493
- msgstr "Path scope"
494
 
495
- #: ../classes/column/media/full-path.php:84
496
- msgid "Part of the file path to display"
497
- msgstr "Deel van bestands locatie voor weergave"
498
 
499
- #: ../classes/column/media/full-path.php:97
500
- msgid "Relative to domain"
501
- msgstr "Relatief aan het domein"
502
 
503
- #: ../classes/column/media/full-path.php:102
504
- msgid "Relative to main uploads folder "
505
- msgstr "Relatief aan de uploads directory"
506
 
507
- #: ../classes/column/media/height.php:19
508
- msgid "Height"
509
- msgstr "Hoogte"
510
 
511
- #: ../classes/column/media/mime-type.php:19
512
- msgid "Mime type"
513
- msgstr "Mimi type"
514
 
515
- #: ../classes/column/post/attachment-count.php:19
516
- msgid "No. of Attachments"
517
- msgstr "Aantal attachments"
518
 
519
- #: ../classes/column/post/attachment.php:19
520
- msgid "Attachments"
521
- msgstr "Attachments"
522
 
523
- #: ../classes/column/post/author-name.php:20
524
- msgid "Display Author As"
525
- msgstr "Toon auteur als"
526
 
527
- #: ../classes/column/post/before-moretag.php:19
528
- msgid "Before More Tag"
529
- msgstr "Voor de meer-tag"
530
 
531
- #: ../classes/column/post/comment-count.php:20
532
- msgid "Comment count"
533
- msgstr "Aantal reacties"
534
 
535
- #: ../classes/column/post/comment-count.php:34
536
- msgid "Total"
537
- msgstr "Totaal"
538
 
539
- #: ../classes/column/post/comment-count.php:36
540
- msgid "Pending"
541
- msgstr "Pending"
542
 
543
- #: ../classes/column/post/comment-count.php:37
544
- msgid "Spam"
545
- msgstr "Spam"
546
 
547
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
548
- msgid "Trash"
549
- msgstr "Prullenbak"
550
 
551
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
552
- msgid "Comment status"
553
- msgstr "Comment status"
554
 
555
- #: ../classes/column/post/comment-count.php:99
556
- msgid "Select which comment status you like to display."
557
- msgstr "Selecteer welke reactie status die je wil weergeven."
558
 
559
- #: ../classes/column/post/date-published.php:17
560
- msgid "Date Published"
561
- msgstr "Gepubliceerde datum"
562
 
563
- #: ../classes/column/post/depth.php:19
564
- msgid "Depth"
565
- msgstr "Diepte"
566
 
567
- #: ../classes/column/post/estimated-reading-time.php:19
568
- msgid "Estimated Reading Time"
569
- msgstr "Gemiddelde leestijd"
570
 
571
- #: ../classes/column/post/estimated-reading-time.php:63
572
- msgid "second"
573
- msgid_plural "seconds"
574
- msgstr[0] "seconde"
575
- msgstr[1] "seconden"
576
 
577
- #: ../classes/column/post/estimated-reading-time.php:66
578
- msgid "minute"
579
- msgid_plural "minutes"
580
- msgstr[0] "minuut"
581
- msgstr[1] "minuten"
582
 
583
- #: ../classes/column/post/estimated-reading-time.php:103
584
- msgid "Words per minute"
585
- msgstr "Woorden per minuut"
586
 
587
- #: ../classes/column/post/estimated-reading-time.php:104
588
- msgid "Estimated reading time in words per minute"
589
- msgstr "Gemiddelde leestijd in woorden per minuut"
590
 
591
- #: ../classes/column/post/featured-image.php:19
592
- msgid "Featured Image"
593
- msgstr "Uitgelichte afbeelding"
594
 
595
- #: ../classes/column/post/formats.php:19
596
- msgid "Post Format"
597
- msgstr "Post formaat"
598
 
599
- #: ../classes/column/post/last-modified-author.php:20
600
- msgid "Last Modified Author"
601
- msgstr "Laatst Gewijzigd Auteur"
602
 
603
- #: ../classes/column/post/modified.php:19
604
- msgid "Last modified"
605
- msgstr "Laatst gewijzigd"
606
 
607
- #: ../classes/column/post/order.php:19
608
- msgid "Page Order"
609
- msgstr "Pagina Volgorde"
610
 
611
- #: ../classes/column/post/page-template.php:19
612
- msgid "Page Template"
613
- msgstr "Pagina Template"
614
 
615
- #: ../classes/column/post/parent.php:19
616
- msgid "Parent"
617
- msgstr "Bovenliggende "
618
 
619
- #: ../classes/column/post/path.php:19
620
- msgid "Path"
621
- msgstr "Pad"
622
 
623
- #: ../classes/column/post/permalink.php:19
624
- msgid "Permalink"
625
- msgstr "Permalink"
626
 
627
- #: ../classes/column/post/permalink.php:68
628
- msgid "Link to post"
629
- msgstr "Link naar bericht"
630
 
631
- #: ../classes/column/post/permalink.php:68
632
- msgid "This will make the permalink clickable."
633
- msgstr "Dit maakt de permalink klikbaar."
634
 
635
- #: ../classes/column/post/ping-status.php:19
636
- msgid "Ping status"
637
- msgstr "Ping status"
638
 
639
- #: ../classes/column/post/roles.php:19
640
- msgid "Roles"
641
- msgstr "Rollen"
642
 
643
- #: ../classes/column/post/shortcodes.php:19
644
- msgid "Shortcodes"
645
- msgstr "Shortcodes"
646
 
647
- #: ../classes/column/post/slug.php:19
648
- msgid "Slug"
649
- msgstr "Slug"
650
 
651
- #: ../classes/column/post/status.php:19
652
- msgid "Status"
653
- msgstr "Status"
654
 
655
- #: ../classes/column/post/status.php:29
656
- msgid "Published"
657
- msgstr "Gepubliceerd"
658
 
659
- #: ../classes/column/post/status.php:30
660
- msgid "Draft"
661
- msgstr "Concept"
662
 
663
- #: ../classes/column/post/status.php:31
664
- msgid "Scheduled"
665
- msgstr "Gepland"
666
 
667
- #: ../classes/column/post/status.php:32
668
- msgid "Private"
669
- msgstr "Priv&#233;"
670
-
671
- #: ../classes/column/post/status.php:33
672
- msgid "Pending Review"
673
- msgstr "Wachtend op review"
674
-
675
- #: ../classes/column/post/status.php:34
676
- msgid "Auto Draft"
677
- msgstr "Auto Draft"
678
-
679
- #: ../classes/column/post/sticky.php:19
680
- msgid "Sticky"
681
- msgstr "Sticky"
682
-
683
- #: ../classes/column/post/title-raw.php:19
684
- msgid "Title without actions"
685
- msgstr "Titel zonder acties"
686
-
687
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
688
- msgid "Taxonomy"
689
- msgstr "Taxonomy"
690
-
691
- #: ../classes/column/used-by-menu.php:20
692
- msgid "Used by Menu"
693
- msgstr "Ingebruik door menu"
694
-
695
- #: ../classes/column/used-by-menu.php:133
696
- msgid "Link to menu"
697
- msgstr "Link naar menu"
698
-
699
- #: ../classes/column/used-by-menu.php:133
700
- msgid "This will make the title link to the menu."
701
- msgstr "Dit linkt de titel naar het menu"
702
-
703
- #: ../classes/column/user/comment-count.php:19
704
- msgid "Comment Count"
705
- msgstr "Aantal reacties"
706
-
707
- #: ../classes/column/user/display-name.php:19
708
- msgid "Display name"
709
- msgstr "Weergave naam"
710
-
711
- #: ../classes/column/user/first-name.php:19
712
- msgid "First name"
713
- msgstr "Voornaam"
714
-
715
- #: ../classes/column/user/last-name.php:19
716
- msgid "Last name"
717
- msgstr "Achternaam"
718
-
719
- #: ../classes/column/user/post-count.php:19
720
- msgid "Post Count"
721
- msgstr "Aantal posts"
722
-
723
- #: ../classes/column/user/post-count.php:89
724
- msgid "Post Type"
725
- msgstr "Post Type"
726
-
727
- #: ../classes/column/user/registered.php:19
728
- msgid "Registered"
729
- msgstr "Registratie"
730
-
731
- #: ../classes/column/user/rich-editing.php:19
732
- msgid "Visual Editor"
733
- msgstr "Visuele editor"
734
-
735
- #: ../classes/column/user/url.php:19
736
- msgid "Url"
737
- msgstr "Url"
738
 
739
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
740
- msgid "Admin Columns"
741
- msgstr "Admin Columns"
742
 
743
- #: ../classes/review_notice.php:58
744
- msgid "Admin Columns Pro"
745
- msgstr ""
746
 
747
- #: ../classes/review_notice.php:65
748
- #, php-format
749
- 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."
750
- msgstr ""
751
 
752
- #: ../classes/review_notice.php:68
753
- msgid "click here"
754
- msgstr ""
755
 
756
- #: ../classes/review_notice.php:72
757
- msgid "Leave a review!"
758
- msgstr ""
759
 
760
- #: ../classes/review_notice.php:73
761
- msgid "Permanently hide notice"
762
- msgstr ""
763
 
764
- #: ../classes/review_notice.php:80
765
- #, php-format
766
- 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."
767
- msgstr ""
768
 
769
- #: ../classes/review_notice.php:82
770
- msgid "documentation page"
771
- msgstr ""
772
 
773
- #: ../classes/review_notice.php:86
774
- #, php-format
775
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
776
- msgstr ""
777
 
778
- #: ../classes/review_notice.php:87
779
- msgid "our forums"
780
- msgstr ""
781
 
782
- #: ../classes/review_notice.php:91
783
- #, php-format
784
- msgid "You can also find help on the %s, and %s."
785
- msgstr ""
786
 
787
- #: ../classes/review_notice.php:92
788
- msgid "Admin Columns forums on WordPress.org"
789
- msgstr ""
790
 
791
- #: ../classes/review_notice.php:93
792
- msgid "find answers to some frequently asked questions"
793
- msgstr ""
794
 
795
- #: ../classes/settings.php:112
796
- msgid "Add-on successfully activated."
797
- msgstr "Add-on werd succesvol geactiveerd."
798
 
799
- #: ../classes/settings.php:115
800
- msgid "Add-on successfully deactivated."
801
- msgstr "Add-on werd succesvol gedesactiveerd."
802
 
803
- #: ../classes/settings.php:170
804
- msgid "Admin Columns Settings"
805
- msgstr "Admin Columns Instellingen"
806
 
807
- #: ../classes/settings.php:220
808
- #, php-format
809
- msgid "%s column is already present and can not be duplicated."
810
- msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
811
 
812
- #: ../classes/settings.php:274
813
- msgid "Default settings succesfully restored."
814
- msgstr "Standaard instellingen succesvol hersteld."
815
 
816
- #: ../classes/settings.php:291
817
- msgid "Overview"
818
- msgstr "Overzicht"
819
 
820
- #: ../classes/settings.php:294
821
- 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."
822
- msgstr "Met deze plugin kun je bijkomende kolommen toevoegen en verwijderen van uit de administratieschermen van van berichten(types), pagina's, mediabibliotheken, reacties, links and gebruikers. Wijzig en herschik de kolomlabels."
823
 
824
- #: ../classes/settings.php:297
825
- msgid "Basics"
826
- msgstr "Basisinfo"
827
 
828
- #: ../classes/settings.php:299
829
- msgid "Change order"
830
- msgstr "Verander volgorde"
831
 
832
- #: ../classes/settings.php:300
833
- msgid "By dragging the columns you can change the order which they will appear in."
834
- msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
835
 
836
- #: ../classes/settings.php:301
837
- msgid "Change label"
838
- msgstr "Wijzig label"
839
 
840
- #: ../classes/settings.php:302
841
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
842
- msgstr "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de kolom label aanpassen."
843
 
844
- #: ../classes/settings.php:303
845
- msgid "Change column width"
846
- msgstr "Verander kolom breedte"
847
 
848
- #: ../classes/settings.php:304
849
- 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."
850
- msgstr "Klik je op de driehoek, dan krijg je de kolomopties te zien. En met de versleepbare slider kun je de breedte van kolommen bepalen, uitgedrukt in percentages."
851
 
852
- #: ../classes/settings.php:310
853
- msgid "'Custom Field' column"
854
- msgstr "'Custom veld' kolom"
855
 
856
- #: ../classes/settings.php:311
857
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
858
- msgstr "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. Er zijn 10 typen welke je kan gebruiken."
859
 
860
- #: ../classes/settings.php:313
861
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
862
- msgstr "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de waarden gescheiden door een ',' komma."
863
 
864
- #: ../classes/settings.php:314
865
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
866
- msgstr "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' komma )."
867
 
868
- #: ../classes/settings.php:315
869
- msgid "Value: This will show the first 20 words of the Post content."
870
- msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
871
 
872
- #: ../classes/settings.php:316
873
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
874
- msgstr "Waarde: moet een reeks zijn. Dit zal elke (multi-dimensionale) reeks afvlakken."
875
 
876
- #: ../classes/settings.php:317
877
- 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."
878
- msgstr "Waarde: Enkel reeksen.<br/>Als je de 'sorteer-addon' hebt, zal die gebruikt worden voor het sorteren, zodat u uw berichten kunt sorteren volgens de numerieke waarden (van aangepaste velden)."
879
 
880
- #: ../classes/settings.php:318
881
- #, php-format
882
- 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."
883
- msgstr "Waarde: Kan een unix tijdstempel zijn, of een datumnotatie, zoals beschreven in de <a href='%s'>Codex</a>. Je kunt de uitgestuurde datumnotatie wijzigen in de pagina met <a href='%s'>algemene instellingen</a>."
884
 
885
- #: ../classes/settings.php:319
886
- msgid "Post Titles"
887
- msgstr "Post titels"
888
 
889
- #: ../classes/settings.php:319
890
- msgid "Value: can be one or more Post ID's (seperated by ',')."
891
- msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
892
 
893
- #: ../classes/settings.php:320
894
- msgid "Usernames"
895
- msgstr "Gebruikersnamen"
896
 
897
- #: ../classes/settings.php:320
898
- msgid "Value: can be one or more User ID's (seperated by ',')."
899
- msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
900
 
901
- #: ../classes/settings.php:321
902
- msgid "Checkmark"
903
- msgstr "Checkmark"
904
 
905
- #: ../classes/settings.php:321
906
- msgid "Value: should be a 1 (one) or 0 (zero)."
907
- msgstr "Waarde: moet 1 of 0 zijn."
908
 
909
- #: ../classes/settings.php:322
910
- msgid "Value: hex value color, such as #808080."
911
- msgstr "Waarde: hex waarde kleur, vb: #808080"
912
 
913
- #: ../classes/settings.php:323
914
- 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."
915
- msgstr "Waarde: Kan een string of een array zijn. Dit zal een teller weergeven met het aantal keren dat een metatoets door het item werd gebruikt."
916
 
917
- #: ../classes/settings.php:412
918
- msgid "Welcome to Admin Columns"
919
- msgstr "Welkom bij Admin Columns"
920
 
921
- #: ../classes/settings.php:415
922
- msgid "Thank you for updating to the latest version!"
923
- msgstr "Bedankt voor het updaten naar de laatste versie!"
924
 
925
- #: ../classes/settings.php:416
926
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
927
- msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
928
 
929
- #: ../classes/settings.php:421
930
- msgid "What’s New"
931
- msgstr "What is nieuw"
932
 
933
- #: ../classes/settings.php:422
934
- msgid "Changelog"
935
- msgstr "Changelog"
936
 
937
- #: ../classes/settings.php:427
938
- msgid "Important"
939
- msgstr "Belangrijk"
940
 
941
- #: ../classes/settings.php:429
942
- msgid "Database Changes"
943
- msgstr "Database Aanpassingen"
944
 
945
- #: ../classes/settings.php:430
946
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
947
- msgstr "De database werd gewijzigd tussen versies 1 en 2. Maar we hebben ervoor gezorgd dat je nog zonder probleem naar versie 1x kunt terugschakelen."
948
 
949
- #: ../classes/settings.php:433
950
- msgid "Make sure you backup your database and then click"
951
- msgstr "Backup je database and klik dan"
952
 
953
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
954
- msgid "Upgrade Database"
955
- msgstr "Werk Database bij"
956
 
957
- #: ../classes/settings.php:436
958
- msgid "Potential Issues"
959
- msgstr "Potentiele problemen"
960
 
961
- #: ../classes/settings.php:437
962
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
963
- msgstr "Omwille van de omvangrijke herstructurering van de code, van verwante Addons en en van acties/fliters, i het mogelijk dat je website niet langer correct functioneert. Het is belangrijk dat je de volledige documentatie doorneemt"
964
 
965
- #: ../classes/settings.php:437
966
- msgid "Migrating from v1 to v2"
967
- msgstr "Migratie van v1 naar v2"
968
 
969
- #: ../classes/settings.php:437
970
- msgid "guide to view the full list of changes."
971
- msgstr "overzicht van alle aanpassingen."
972
 
973
- #: ../classes/settings.php:437
974
- #, php-format
975
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
976
- msgstr "Mocht je een bug vinden, <a href=\"%s\">rapporteer deze aan ons</a> zodat we die kunnen herstellen in een volgende versie."
977
 
978
- #: ../classes/settings.php:440
979
- msgid "Important!"
980
- msgstr "Belangrijk!"
981
 
982
- #: ../classes/settings.php:440
983
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
984
- msgstr "Als je de Admin Columns plugin hebt geupdate zonder voorafgaande kennis van zo'n wijzigingen, gelieve dan terug te schakelen naar de laatste"
985
 
986
- #: ../classes/settings.php:440
987
- msgid "version 1"
988
- msgstr "versie 1"
989
 
990
- #: ../classes/settings.php:440
991
- msgid "of this plugin."
992
- msgstr "van deze plugin."
993
 
994
- #: ../classes/settings.php:446
995
- msgid "Changelog for"
996
- msgstr "Changelog voor"
997
 
998
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
999
- msgid "Learn more"
1000
- msgstr "Leer meer"
1001
 
1002
- #: ../classes/settings.php:471
1003
- msgid "Start using Admin Columns"
1004
- msgstr "Start met Admin Columns"
1005
 
1006
- #: ../classes/settings.php:490
1007
- msgid "General Settings"
1008
- msgstr "Algemene Instellingen"
1009
 
1010
- #: ../classes/settings.php:491
1011
- msgid "Customize your Admin Columns settings."
1012
- msgstr "Pas uw Admin Column instellingen aan."
1013
 
1014
- #: ../classes/settings.php:502
1015
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1016
- msgstr "Toon \"Bewerk Kolom\" knop op de het admin scherm. Standaard is <code>aan</code>."
1017
 
1018
- #: ../classes/settings.php:509 ../classes/settings.php:673
1019
- msgid "Save"
1020
- msgstr "Opslaan"
1021
 
1022
- #: ../classes/settings.php:549
1023
- msgid "Restore Settings"
1024
- msgstr "Herstel Instellingen"
1025
 
1026
- #: ../classes/settings.php:550
1027
- msgid "This will delete all column settings and restore the default settings."
1028
- msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
1029
 
1030
- #: ../classes/settings.php:556
1031
- msgid "Restore default settings"
1032
- msgstr "Herstel standaard instellingen"
1033
 
1034
- #: ../classes/settings.php:556
1035
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1036
- msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
1037
 
1038
- #: ../classes/settings.php:572
1039
- msgid "Posttypes"
1040
- msgstr "Berichttentypes"
1041
 
1042
- #: ../classes/settings.php:573
1043
- msgid "Others"
1044
- msgstr "Overige"
1045
 
1046
- #: ../classes/settings.php:574
1047
- msgid "Taxonomies"
1048
- msgstr "Taxonomieën"
1049
 
1050
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1051
- msgid "Settings"
1052
- msgstr "Instellingen"
1053
 
1054
- #: ../classes/settings.php:591
1055
- msgid "Add-ons"
1056
- msgstr "Add-ons"
1057
 
1058
- #: ../classes/settings.php:659
1059
- #, php-format
1060
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1061
- msgstr "De kolommen voor %s worden opgezet via PHP. Daardoor kunnen ze niet bewerkt worden in het adminpaneel."
1062
 
1063
- #: ../classes/settings.php:669
1064
- msgid "Store settings"
1065
- msgstr "Opslaan"
1066
 
1067
- #: ../classes/settings.php:673
1068
- msgid "Update"
1069
- msgstr "Bijwerken"
1070
 
1071
- #: ../classes/settings.php:677
1072
- #, php-format
1073
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1074
- msgstr "Opgelet! De data uit de %s-kolom wordt gewist. Dit kan niet ongedaan gemaakt worden. Klik \\'OK\\' om te wissen, klik \\'Cancel\\' om te annuleren"
1075
 
1076
- #: ../classes/settings.php:678
1077
- msgid "Restore"
1078
- msgstr "Herstellen"
1079
 
1080
- #: ../classes/settings.php:678
1081
- msgid "columns"
1082
- msgstr "kolommen"
1083
 
1084
- #: ../classes/settings.php:697
1085
- msgid "Get Admin Columns Pro"
1086
- msgstr "Bestel Admin Columns Pro"
1087
 
1088
- #: ../classes/settings.php:701
1089
- msgid "Add Sorting"
1090
- msgstr "Voeg sorting toe"
1091
 
1092
- #: ../classes/settings.php:702
1093
- msgid "Add Filtering"
1094
- msgstr "Voeg filtering toe"
1095
 
1096
- #: ../classes/settings.php:703
1097
- msgid "Add Import/Export"
1098
- msgstr "Voeg import/export toe"
1099
 
1100
- #: ../classes/settings.php:704
1101
- msgid "Add Direct Editing"
1102
- msgstr "Toevoegen Direct Bewerken"
1103
 
1104
- #: ../classes/settings.php:707
1105
- #, php-format
1106
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1107
- msgstr "Bekijk <a href=\"%s\">Admin Columns Pro</a> voor meer details!"
1108
 
1109
- #: ../classes/settings.php:738
1110
- msgid "Are you happy with Admin Columns?"
1111
- msgstr "Ben je blij met Admin Columns?"
1112
 
1113
- #: ../classes/settings.php:746
1114
- msgid "What's wrong? Need help? Let us know!"
1115
- msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
1116
 
1117
- #: ../classes/settings.php:747
1118
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1119
- msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
1120
 
1121
- #: ../classes/settings.php:755
1122
- msgid "Docs"
1123
- msgstr "Documenten"
1124
 
1125
- #: ../classes/settings.php:760
1126
- msgid "Forums"
1127
- msgstr "Forums"
1128
 
1129
- #: ../classes/settings.php:769
1130
- msgid "Woohoo! We're glad to hear that!"
1131
- msgstr "Woohoo! We zijn blij dat te horen!"
1132
 
1133
- #: ../classes/settings.php:770
1134
- 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!"
1135
- msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
1136
 
1137
- #: ../classes/settings.php:774
1138
- msgid "Rate"
1139
- msgstr "Beoordeel"
1140
 
1141
- #: ../classes/settings.php:785
1142
- msgid "Tweet"
1143
- msgstr "Tweet"
1144
 
1145
- #: ../classes/settings.php:795
1146
- msgid "Buy Pro"
1147
- msgstr "Koop Pro"
1148
 
1149
- #: ../classes/settings.php:807
1150
- msgid "Support"
1151
- msgstr "Hulp nodig?"
1152
 
1153
- #: ../classes/settings.php:810
1154
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1155
- msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
1156
 
1157
- #: ../classes/settings.php:813
1158
- #, php-format
1159
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1160
- msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
 
1161
 
1162
- #: ../classes/settings.php:842
1163
- msgid "Drag and drop to reorder"
1164
- msgstr "Sleep om te herordenen"
 
 
1165
 
1166
- #: ../classes/settings.php:845
1167
- msgid "Add Column"
1168
- msgstr "Voeg Kolom toe"
1169
 
1170
- #: ../classes/settings.php:926
1171
- msgid "Active"
1172
- msgstr "Activeer"
1173
 
1174
- #: ../classes/settings.php:927
1175
- msgid "Deactivate"
1176
- msgstr "Deactiveer"
1177
 
1178
- #: ../classes/settings.php:934
1179
- msgid "Installed"
1180
- msgstr "Geinstalleerd"
1181
 
1182
- #: ../classes/settings.php:935
1183
- msgid "Activate"
1184
- msgstr "Activeer"
1185
 
1186
- #: ../classes/settings.php:949
1187
- msgid "Download & Install"
1188
- msgstr "Download & Installeer"
1189
 
1190
- #: ../classes/settings.php:954
1191
- msgid "Get this add-on"
1192
- msgstr "Ga naar deze add-on"
1193
 
1194
- #: ../classes/storage_model.php:237
1195
- msgid "settings succesfully restored."
1196
- msgstr "instellingen succesvol hersteld."
1197
 
1198
- #: ../classes/storage_model.php:253
1199
- msgid "No columns settings available."
1200
- msgstr "Geen kolom instellingen beschikbaar."
1201
 
1202
- #: ../classes/storage_model.php:274
1203
- #, php-format
1204
- msgid "You are trying to store the same settings for %s."
1205
- msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
1206
 
1207
- #: ../classes/storage_model.php:278
1208
- #, php-format
1209
- msgid "Settings for %s updated successfully."
1210
- msgstr "Instellingen voor %s succesvol bijgewerkt."
1211
 
1212
- #: ../classes/storage_model.php:809
1213
- msgid "View"
1214
- msgstr "Bekijk"
1215
 
1216
- #: ../classes/storage_model/comment.php:13
1217
- msgid "Comments"
1218
- msgstr "Reacties"
1219
 
1220
- #: ../classes/storage_model/comment.php:14
1221
- msgid "Comment"
1222
- msgstr "Reactie"
1223
 
1224
- #: ../classes/storage_model/link.php:13
1225
- msgid "Links"
1226
- msgstr "Links"
1227
 
1228
- #: ../classes/storage_model/link.php:14
1229
- msgid "Link"
1230
- msgstr "Link"
1231
 
1232
- #: ../classes/storage_model/media.php:14
1233
- msgid "Media"
1234
- msgstr "Media"
1235
 
1236
- #: ../classes/storage_model/user.php:13
1237
- msgid "Users"
1238
- msgstr "Gebruikers"
1239
 
1240
- #: ../classes/upgrade.php:62
1241
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
1242
- msgstr "The pro add-on wordt niet langer ondersteund. Login op je account en download Admin Columns Pro"
1243
 
1244
- #: ../classes/upgrade.php:95
1245
- msgid "Upgrade"
1246
- msgstr "Upgrade"
1247
 
1248
- #: ../classes/upgrade.php:136
1249
- msgid "requires a database upgrade"
1250
- msgstr "verreist een database upgrade"
1251
 
1252
- #: ../classes/upgrade.php:139
1253
- msgid "why?"
1254
- msgstr "waarom?"
1255
 
1256
- #: ../classes/upgrade.php:140
1257
- msgid "Please"
1258
- msgstr "Alstublieft"
1259
 
1260
- #: ../classes/upgrade.php:141
1261
- msgid "backup your database"
1262
- msgstr "backup van uw database"
1263
 
1264
- #: ../classes/upgrade.php:142
1265
- msgid "then click"
1266
- msgstr "daarna klik"
1267
 
1268
- #: ../classes/upgrade.php:351
1269
- msgid "Migrating Column Settings"
1270
- msgstr "Migreer Kolom Instellingen"
1271
 
1272
- #: ../classes/upgrade.php:387
1273
- msgid "No Upgrade Required"
1274
- msgstr "Geen upgrade verreist"
1275
 
1276
- #: ../classes/upgrade.php:388
1277
- msgid "Return to welcome screen."
1278
- msgstr "Ga terug naar het welkomst scherm."
1279
 
1280
- #: ../classes/upgrade.php:406
1281
- msgid "Upgrade Complete!"
1282
- msgstr "Upgrade voltooid!"
1283
 
1284
- #: ../classes/upgrade.php:406
1285
- msgid "Return to settings."
1286
- msgstr "Herstel standaard instellingen"
1287
 
1288
- #: ../classes/upgrade.php:407
1289
- msgid "Error"
1290
- msgstr "Fout"
1291
 
1292
- #: ../classes/upgrade.php:408
1293
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1294
- msgstr "Excuseert. Er liep iets fout tijdens bij het upgraden. Gelieve dit te melden in het support forum."
1295
 
1296
- #: ../codepress-admin-columns.php:444
1297
- msgid "Edit columns"
1298
- msgstr "Wijzig kolommen"
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Axel Vanderhaeghen <axel@eco13.eu>, 2014
5
  # Tobias Schutter <info@codepress.nl>, 2013-2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
10
+ "PO-Revision-Date: 2015-10-12 15:25+0200\n"
 
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/codepress/admin-columns/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: nl_NL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
+ "POT-Creation-Date: \n"
22
+ "X-Generator: Poedit 1.8.5\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
25
+
26
+ #: ../codepress-admin-columns.php:451
27
+ msgid "Edit columns"
28
+ msgstr "Wijzig kolommen"
 
 
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
47
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
48
  msgstr "Verbeter de producten, orders en coupons overzichten met de nieuwe kolommen en inline editing."
49
 
50
+ #: ../classes/column.php:624
51
  msgid "Thumbnail"
52
  msgstr "Thumbnail"
53
 
54
+ #: ../classes/column.php:625
55
  msgid "Medium"
56
  msgstr "Gemiddeld"
57
 
58
+ #: ../classes/column.php:626
59
  msgid "Large"
60
  msgstr "Groot"
61
 
62
+ #: ../classes/column.php:627
63
  msgid "Full"
64
  msgstr "Volledig"
65
 
66
+ #: ../classes/column.php:1059
67
+ msgid "Exact match"
68
+ msgstr "Gelijk aan"
69
+
70
+ #: ../classes/column.php:1060
71
+ msgid "Lesser than"
72
+ msgstr "Kleiner dan"
73
+
74
+ #: ../classes/column.php:1061
75
+ msgid "Greater than"
76
+ msgstr "Groter dan"
77
+
78
+ #: ../classes/column.php:1062
79
+ msgid "Between"
80
+ msgstr "Tussen"
81
+
82
+ #: ../classes/column.php:1089
83
  msgid "Date Format"
84
  msgstr "Datumnotatie"
85
 
86
+ #: ../classes/column.php:1090
87
  msgid "This will determine how the date will be displayed."
88
  msgstr "Dit bepaald hoe de datum wordt weergegeven."
89
 
90
+ #: ../classes/column.php:1096
91
  msgid "Example:"
92
  msgstr "Voorbeeld:"
93
 
94
+ #: ../classes/column.php:1098
95
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
96
+ msgstr "Laat leeg voor WordPress datumformaat, verander je <a href='%s'\">standaard datumformaat </a>."
 
97
 
98
+ #: ../classes/column.php:1099
99
  msgid "Documentation on date and time formatting."
100
  msgstr "Documentatie over datum en tijd opmaak."
101
 
102
+ #: ../classes/column.php:1113
103
  msgid "Excerpt length"
104
  msgstr "Samenvatting lengte"
105
 
106
+ #: ../classes/column.php:1114
107
  msgid "Number of words"
108
  msgstr "Aantal woorden"
109
 
110
+ #: ../classes/column.php:1132
111
  msgid "Preview size"
112
  msgstr "Voorbeeldformaat"
113
 
114
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
115
  msgid "Custom"
116
  msgstr "Aangepast"
117
 
118
+ #: ../classes/column.php1152, ../classes/column.php:1328
119
  msgid "width"
120
  msgstr "breedte"
121
 
122
+ #: ../classes/column.php:1155
123
  msgid "height"
124
  msgstr "hoogte"
125
 
126
+ #: ../classes/column.php:1167
127
  msgid "Before"
128
  msgstr "Voor"
129
 
130
+ #: ../classes/column.php:1167
131
  msgid "This text will appear before the custom field value."
132
  msgstr "Deze tekst wordt getoond voor de custom field waarde."
133
 
134
+ #: ../classes/column.php:1168
135
  msgid "After"
136
  msgstr "Na"
137
 
138
+ #: ../classes/column.php:1168
139
  msgid "This text will appear after the custom field value."
140
  msgstr "Deze tekst wordt getoond na de custom field waarde."
141
 
142
+ #: ../classes/column.php:1177
143
  msgid "Display Name"
144
  msgstr "Schermnaam"
145
 
146
+ #: ../classes/column.php1178, ../classes/settings.php:733
147
  msgid "First Name"
148
  msgstr "Voornaam"
149
 
150
+ #: ../classes/column.php:1179
151
  msgid "Last Name"
152
  msgstr "Achternaam"
153
 
154
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
155
  msgid "Nickname"
156
  msgstr "Nickname"
157
 
158
+ #: ../classes/column.php:1181
159
  msgid "User Login"
160
  msgstr "Gebruikers login"
161
 
162
+ #: ../classes/column.php:1182
163
  msgid "User Email"
164
  msgstr "Gebruiker Email"
165
 
166
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
167
  msgid "User ID"
168
  msgstr "Gebruiker ID"
169
 
170
+ #: ../classes/column.php:1184
171
  msgid "First and Last Name"
172
  msgstr "Voor- en achternaam"
173
 
174
+ #: ../classes/column.php:1187
175
  msgid "Display format"
176
  msgstr "Weergave formaat"
177
 
178
+ #: ../classes/column.php:1187
179
  msgid "This is the format of the author name."
180
  msgstr "Dit is het formaat van de auteursnaam"
181
 
182
+ #: ../classes/column.php:1350
183
  msgid "Edit"
184
  msgstr "Bewerken"
185
 
186
+ #: ../classes/column.php1352, ../classes/column.php:1444
187
  msgid "Clone"
188
  msgstr "Kloon"
189
 
190
+ #: ../classes/column.php:1354
191
  msgid "Remove"
192
  msgstr "Verwijderen"
193
 
194
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
195
  msgid "Type"
196
  msgstr "Type"
197
 
198
+ #: ../classes/column.php:1372
199
  msgid "Choose a column type."
200
  msgstr "Kies een kolom type."
201
 
202
+ #: ../classes/column.php:1372
203
  msgid "Name"
204
  msgstr "Naam"
205
 
206
+ #: ../classes/column.php:1382
207
  msgid "Label"
208
  msgstr "Label"
209
 
210
+ #: ../classes/column.php:1382
211
  msgid "This is the name which will appear as the column header."
212
  msgstr "Deze naam zal verschijnen als kolom kop."
213
 
214
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
215
  msgid "Width"
216
  msgstr "Breedte"
217
 
218
+ #: ../classes/column.php:1391
219
  msgid "default"
220
  msgstr "standaard"
221
 
222
+ #: ../classes/column.php:1392
223
  msgid "auto"
224
  msgstr "auto"
225
 
226
+ #: ../classes/column.php:1466
227
+ msgid "Property To Display"
228
+ msgstr "Veld om te tonen"
229
 
230
+ #: ../classes/column.php:1472
231
+ msgid "Post property to display for related post(s)."
232
+ msgstr "Bericht veld om te tonen voor gerelateerde bericht(en)."
233
 
234
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
235
+ msgid "Link To"
236
+ msgstr "Link aan"
 
237
 
238
+ #: ../classes/column.php:1489
239
+ msgid "Edit Post Author"
240
+ msgstr "Wijzig Bericht Auteur"
241
 
242
+ #: ../classes/column.php:1490
243
+ msgid "View Public Post Author Page"
244
+ msgstr "Bekijk Publieke Bericht Auteur pagina"
245
 
246
+ #: ../classes/column.php:1492
247
+ msgid "Page the posts should link to."
248
+ msgstr "Pagina waar het bericht aan moet linken."
249
 
250
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
251
+ msgid "Admin Columns"
252
+ msgstr "Admin Columns"
253
 
254
+ #: ../classes/review_notice.php:58
255
+ msgid "Admin Columns Pro"
256
+ msgstr "Admin Columns Pro"
257
 
258
+ #: ../classes/review_notice.php:68
259
+ msgid "click here"
260
+ msgstr "klik hier"
261
 
262
+ #: ../classes/review_notice.php:72
263
+ msgid "Leave a review!"
264
+ msgstr "Laat een review achter!"
265
 
266
+ #: ../classes/review_notice.php:73
267
+ msgid "Permanently hide notice"
268
+ msgstr "Verberg deze notice permanent"
269
 
270
+ #: ../classes/review_notice.php:80
271
+ 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."
272
+ msgstr "Dat is vervelend om te horen; misschien kunnen we helpen! Als je problemen hebt met de basis instellingen %s of als je hulp wilt met geavanceerdere features, bezoek dan onze %s."
273
 
274
+ #: ../classes/review_notice.php:82
275
+ msgid "documentation page"
276
+ msgstr "documentatie pagina"
277
 
278
+ #: ../classes/review_notice.php:86
279
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
280
+ msgstr "Als Admin Columns Pro gebruiker kun je ook gebruik maken van je AdminColumns.com account voor direct ondersteuning op %s!"
281
 
282
+ #: ../classes/review_notice.php:87
283
+ msgid "our forums"
284
+ msgstr "onze forums"
285
 
286
+ #: ../classes/review_notice.php:91
287
+ msgid "You can also find help on the %s, and %s."
288
+ msgstr "Je kunt ook hulp vinden op de %, en %s."
289
 
290
+ #: ../classes/review_notice.php:92
291
+ msgid "Admin Columns forums on WordPress.org"
292
+ msgstr "Admin Columns forums op WordPress.org"
293
 
294
+ #: ../classes/review_notice.php:93
295
+ msgid "find answers to some frequently asked questions"
296
+ msgstr "vind antwoorden op veel gestelde vragen"
297
 
298
+ #: ../classes/settings.php:113
299
+ msgid "Add-on successfully activated."
300
+ msgstr "Add-on werd succesvol geactiveerd."
301
 
302
+ #: ../classes/settings.php:116
303
+ msgid "Add-on successfully deactivated."
304
+ msgstr "Add-on werd succesvol gedesactiveerd."
305
 
306
+ #: ../classes/settings.php:170
307
+ msgid "Admin Columns Settings"
308
+ msgstr "Admin Columns Instellingen"
 
309
 
310
+ #: ../classes/settings.php:228
311
+ msgid "%s column is already present and can not be duplicated."
312
+ msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
313
 
314
+ #: ../classes/settings.php:284
315
+ msgid "Default settings succesfully restored."
316
+ msgstr "Standaard instellingen succesvol hersteld."
317
 
318
+ #: ../classes/settings.php:301
319
+ msgid "Overview"
320
+ msgstr "Overzicht"
321
 
322
+ #: ../classes/settings.php:304
323
+ 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."
324
+ msgstr "Met deze plugin kun je bijkomende kolommen toevoegen en verwijderen van uit de administratieschermen van van berichten(types), pagina's, mediabibliotheken, reacties, links and gebruikers. Wijzig en herschik de kolomlabels."
325
 
326
+ #: ../classes/settings.php:307
327
+ msgid "Basics"
328
+ msgstr "Basisinfo"
329
+
330
+ #: ../classes/settings.php:309
331
+ msgid "Change order"
332
+ msgstr "Verander volgorde"
333
+
334
+ #: ../classes/settings.php:310
335
+ msgid "By dragging the columns you can change the order which they will appear in."
336
+ msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
337
+
338
+ #: ../classes/settings.php:311
339
+ msgid "Change label"
340
+ msgstr "Wijzig label"
341
+
342
+ #: ../classes/settings.php:312
343
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
344
+ msgstr "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de kolom label aanpassen."
345
+
346
+ #: ../classes/settings.php:313
347
+ msgid "Change column width"
348
+ msgstr "Verander kolom breedte"
349
+
350
+ #: ../classes/settings.php:314
351
+ 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."
352
+ msgstr "Klik je op de driehoek, dan krijg je de kolomopties te zien. En met de versleepbare slider kun je de breedte van kolommen bepalen, uitgedrukt in percentages."
353
 
354
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
355
  msgid "Custom Field"
356
  msgstr "Custom veld"
357
 
358
+ #: ../classes/settings.php:320
359
+ msgid "'Custom Field' column"
360
+ msgstr "'Custom veld' kolom"
361
+
362
+ #: ../classes/settings.php:321
363
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
364
+ msgstr "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. Er zijn 10 typen welke je kan gebruiken."
365
+
366
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
367
  msgid "Default"
368
  msgstr "Standaard"
369
 
370
+ #: ../classes/settings.php:323
371
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
372
+ msgstr "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de waarden gescheiden door een ',' komma."
373
 
374
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
375
+ msgid "Image"
376
+ msgstr "Afbeelding"
377
 
378
+ #: ../classes/settings.php:324
379
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
380
+ msgstr "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' komma )."
381
 
382
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
383
  msgid "Excerpt"
384
  msgstr "Samenvatting"
385
 
386
+ #: ../classes/settings.php:325
387
+ msgid "Value: This will show the first 20 words of the Post content."
388
+ msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
 
 
 
 
389
 
390
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
391
  msgid "Multiple Values"
392
  msgstr "Meerdere waarden"
393
 
394
+ #: ../classes/settings.php:326
395
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
396
+ msgstr "Waarde: moet een reeks zijn. Dit zal elke (multi-dimensionale) reeks afvlakken."
397
+
398
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
399
  msgid "Numeric"
400
  msgstr "Numerieke"
401
 
402
+ #: ../classes/settings.php:327
403
+ 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."
404
+ msgstr "Waarde: Enkel reeksen.<br/>Als je de 'sorteer-addon' hebt, zal die gebruikt worden voor het sorteren, zodat u uw berichten kunt sorteren volgens de numerieke waarden (van aangepaste velden)."
405
 
406
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
407
+ msgid "Date"
408
+ msgstr "Datum"
409
 
410
+ #: ../classes/settings.php:328
411
+ 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."
412
+ msgstr "Waarde: Kan een unix tijdstempel zijn, of een datumnotatie, zoals beschreven in de <a href='%s'>Codex</a>. Je kunt de uitgestuurde datumnotatie wijzigen in de pagina met <a href='%s'>algemene instellingen</a>."
413
 
414
+ #: ../classes/settings.php:329
415
+ msgid "Post Titles"
416
+ msgstr "Post titels"
417
 
418
+ #: ../classes/settings.php:329
419
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
420
+ msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
421
 
422
+ #: ../classes/settings.php:330
423
+ msgid "Usernames"
424
+ msgstr "Gebruikersnamen"
 
425
 
426
+ #: ../classes/settings.php:330
427
+ msgid "Value: can be one or more User ID's (seperated by ',')."
428
+ msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
429
 
430
+ #: ../classes/settings.php:331
431
+ msgid "Checkmark"
432
+ msgstr "Checkmark"
433
 
434
+ #: ../classes/settings.php:331
435
+ msgid "Value: should be a 1 (one) or 0 (zero)."
436
+ msgstr "Waarde: moet 1 of 0 zijn."
437
 
438
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
439
+ msgid "Color"
440
+ msgstr "Kleur"
441
 
442
+ #: ../classes/settings.php:332
443
+ msgid "Value: hex value color, such as #808080."
444
+ msgstr "Waarde: hex waarde kleur, vb: #808080"
445
 
446
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
447
+ msgid "Counter"
448
+ msgstr "Teller"
449
 
450
+ #: ../classes/settings.php:333
451
+ 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."
452
+ msgstr "Waarde: Kan een string of een array zijn. Dit zal een teller weergeven met het aantal keren dat een metatoets door het item werd gebruikt."
453
 
454
+ #: ../classes/settings.php:422
455
+ msgid "Welcome to Admin Columns"
456
+ msgstr "Welkom bij Admin Columns"
457
 
458
+ #: ../classes/settings.php:425
459
+ msgid "Thank you for updating to the latest version!"
460
+ msgstr "Bedankt voor het updaten naar de laatste versie!"
461
 
462
+ #: ../classes/settings.php:426
463
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
464
+ msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
465
 
466
+ #: ../classes/settings.php:431
467
+ msgid "What’s New"
468
+ msgstr "What is nieuw"
469
 
470
+ #: ../classes/settings.php:432
471
+ msgid "Changelog"
472
+ msgstr "Changelog"
473
 
474
+ #: ../classes/settings.php:437
475
+ msgid "Important"
476
+ msgstr "Belangrijk"
477
 
478
+ #: ../classes/settings.php:439
479
+ msgid "Database Changes"
480
+ msgstr "Database Aanpassingen"
481
 
482
+ #: ../classes/settings.php:440
483
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
484
+ msgstr "De database werd gewijzigd tussen versies 1 en 2. Maar we hebben ervoor gezorgd dat je nog zonder probleem naar versie 1x kunt terugschakelen."
 
 
 
 
485
 
486
+ #: ../classes/settings.php:443
487
+ msgid "Make sure you backup your database and then click"
488
+ msgstr "Backup je database and klik dan"
489
 
490
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
491
+ msgid "Upgrade Database"
492
+ msgstr "Werk Database bij"
493
 
494
+ #: ../classes/settings.php:446
495
+ msgid "Potential Issues"
496
+ msgstr "Potentiele problemen"
497
 
498
+ #: ../classes/settings.php:447
499
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
500
+ msgstr "Omwille van de omvangrijke herstructurering van de code, van verwante Addons en en van acties/fliters, i het mogelijk dat je website niet langer correct functioneert. Het is belangrijk dat je de volledige documentatie doorneemt"
501
 
502
+ #: ../classes/settings.php:447
503
+ msgid "Migrating from v1 to v2"
504
+ msgstr "Migratie van v1 naar v2"
505
 
506
+ #: ../classes/settings.php:447
507
+ msgid "guide to view the full list of changes."
508
+ msgstr "overzicht van alle aanpassingen."
509
 
510
+ #: ../classes/settings.php:447
511
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
512
+ msgstr "Mocht je een bug vinden, <a href='%s'>rapporteer deze aan ons</a> zodat we die kunnen herstellen in een volgende versie."
513
 
514
+ #: ../classes/settings.php:450
515
+ msgid "Important!"
516
+ msgstr "Belangrijk!"
517
 
518
+ #: ../classes/settings.php:450
519
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
520
+ msgstr "Als je de Admin Columns plugin hebt geupdate zonder voorafgaande kennis van zo'n wijzigingen, gelieve dan terug te schakelen naar de laatste"
521
 
522
+ #: ../classes/settings.php:450
523
+ msgid "version 1"
524
+ msgstr "versie 1"
525
 
526
+ #: ../classes/settings.php:450
527
+ msgid "of this plugin."
528
+ msgstr "van deze plugin."
529
 
530
+ #: ../classes/settings.php:456
531
+ msgid "Changelog for"
532
+ msgstr "Changelog voor"
533
 
534
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
535
+ msgid "Learn more"
536
+ msgstr "Leer meer"
537
 
538
+ #: ../classes/settings.php:481
539
+ msgid "Start using Admin Columns"
540
+ msgstr "Start met Admin Columns"
541
 
542
+ #: ../classes/settings.php:500
543
+ msgid "General Settings"
544
+ msgstr "Algemene Instellingen"
545
 
546
+ #: ../classes/settings.php:501
547
+ msgid "Customize your Admin Columns settings."
548
+ msgstr "Pas uw Admin Column instellingen aan."
549
 
550
+ #: ../classes/settings.php:512
551
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
552
+ msgstr "Toon \"Bewerk Kolom\" knop op de het admin scherm. Standaard is <code>aan</code>."
553
 
554
+ #: ../classes/settings.php:559
555
+ msgid "Restore Settings"
556
+ msgstr "Herstel Instellingen"
557
 
558
+ #: ../classes/settings.php:560
559
+ msgid "This will delete all column settings and restore the default settings."
560
+ msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
561
 
562
+ #: ../classes/settings.php:566
563
+ msgid "Restore default settings"
564
+ msgstr "Herstel standaard instellingen"
565
 
566
+ #: ../classes/settings.php:566
567
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
568
+ msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. 'OK' om te verwijderen, 'Annuleren' om te stoppen"
569
 
570
+ #: ../classes/settings.php:582
571
+ msgid "Posttypes"
572
+ msgstr "Berichttentypes"
573
 
574
+ #: ../classes/settings.php:583
575
+ msgid "Others"
576
+ msgstr "Overige"
577
 
578
+ #: ../classes/settings.php:584
579
+ msgid "Taxonomies"
580
+ msgstr "Taxonomieën"
581
 
582
+ #: ../classes/settings.php:600
583
+ msgid "Settings"
584
+ msgstr "Instellingen"
585
 
586
+ #: ../classes/settings.php:601
587
+ msgid "Add-ons"
588
+ msgstr "Add-ons"
589
 
590
+ #: ../classes/settings.php:669
591
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
592
+ msgstr "De kolommen voor %s worden opgezet via PHP. Daardoor kunnen ze niet bewerkt worden in het adminpaneel."
593
 
594
+ #: ../classes/settings.php:679
595
+ msgid "Store settings"
596
+ msgstr "Opslaan"
597
 
598
+ #: ../classes/settings.php:687
599
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
600
+ msgstr "Opgelet! De data uit de %s-kolom wordt gewist. Dit kan niet ongedaan gemaakt worden. Klik 'OK' om te wissen, klik 'Cancel' om te annuleren"
601
 
602
+ #: ../classes/settings.php:688
603
+ msgid "Restore"
604
+ msgstr "Herstellen"
605
 
606
+ #: ../classes/settings.php:688
607
+ msgid "columns"
608
+ msgstr "kolommen"
609
 
610
+ #: ../classes/settings.php:707
611
+ msgid "Get Admin Columns Pro"
612
+ msgstr "Bestel Admin Columns Pro"
 
 
613
 
614
+ #: ../classes/settings.php:711
615
+ msgid "Add Sorting"
616
+ msgstr "Voeg sorting toe"
 
 
617
 
618
+ #: ../classes/settings.php:712
619
+ msgid "Add Filtering"
620
+ msgstr "Voeg filtering toe"
621
 
622
+ #: ../classes/settings.php:713
623
+ msgid "Add Import/Export"
624
+ msgstr "Voeg import/export toe"
625
 
626
+ #: ../classes/settings.php:714
627
+ msgid "Add Direct Editing"
628
+ msgstr "Toevoegen Direct Bewerken"
629
 
630
+ #: ../classes/settings.php:717
631
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
632
+ msgstr "Bekijk <a href='%s'>Admin Columns Pro</a> voor meer details!"
633
 
634
+ #: ../classes/settings.php:730
635
+ msgid "Subscribe to receive news &amp; updates below."
636
+ msgstr "Meld je hieronder aan voor nieuws &amp; updates."
637
 
638
+ #: ../classes/settings.php:737
639
+ msgid "Your Email"
640
+ msgstr "Uw Email"
641
 
642
+ #: ../classes/settings.php:748
643
+ msgid "Are you happy with Admin Columns?"
644
+ msgstr "Ben je blij met Admin Columns?"
645
 
646
+ #: ../classes/settings.php:756
647
+ msgid "What's wrong? Need help? Let us know!"
648
+ msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
649
 
650
+ #: ../classes/settings.php:757
651
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
652
+ msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
653
 
654
+ #: ../classes/settings.php:765
655
+ msgid "Docs"
656
+ msgstr "Documenten"
657
 
658
+ #: ../classes/settings.php:770
659
+ msgid "Forums"
660
+ msgstr "Forums"
661
 
662
+ #: ../classes/settings.php:779
663
+ msgid "Woohoo! We're glad to hear that!"
664
+ msgstr "Woohoo! We zijn blij dat te horen!"
665
 
666
+ #: ../classes/settings.php:780
667
+ 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!"
668
+ msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
669
 
670
+ #: ../classes/settings.php:784
671
+ msgid "Rate"
672
+ msgstr "Beoordeel"
673
 
674
+ #: ../classes/settings.php:795
675
+ msgid "Tweet"
676
+ msgstr "Tweet"
677
 
678
+ #: ../classes/settings.php:805
679
+ msgid "Buy Pro"
680
+ msgstr "Koop Pro"
681
 
682
+ #: ../classes/settings.php:817
683
+ msgid "Support"
684
+ msgstr "Hulp nodig?"
685
 
686
+ #: ../classes/settings.php:820
687
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
688
+ msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
689
 
690
+ #: ../classes/settings.php:823
691
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
692
+ msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
693
 
694
+ #: ../classes/settings.php:852
695
+ msgid "Drag and drop to reorder"
696
+ msgstr "Sleep om te herordenen"
697
 
698
+ #: ../classes/settings.php:855
699
+ msgid "Add Column"
700
+ msgstr "Voeg Kolom toe"
701
 
702
+ #: ../classes/settings.php:936
703
+ msgid "Active"
704
+ msgstr "Activeer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
705
 
706
+ #: ../classes/settings.php:937
707
+ msgid "Deactivate"
708
+ msgstr "Deactiveer"
709
 
710
+ #: ../classes/settings.php:944
711
+ msgid "Installed"
712
+ msgstr "Geinstalleerd"
713
 
714
+ #: ../classes/settings.php:945
715
+ msgid "Activate"
716
+ msgstr "Activeer"
 
717
 
718
+ #: ../classes/settings.php:959
719
+ msgid "Download & Install"
720
+ msgstr "Download & Installeer"
721
 
722
+ #: ../classes/settings.php:964
723
+ msgid "Get this add-on"
724
+ msgstr "Ga naar deze add-on"
725
 
726
+ #: ../classes/storage_model.php:262
727
+ msgid "settings succesfully restored."
728
+ msgstr "instellingen succesvol hersteld."
729
 
730
+ #: ../classes/storage_model.php:278
731
+ msgid "No columns settings available."
732
+ msgstr "Geen kolom instellingen beschikbaar."
 
733
 
734
+ #: ../classes/storage_model.php:299
735
+ msgid "You are trying to store the same settings for %s."
736
+ msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
737
 
738
+ #: ../classes/storage_model.php:303
739
+ msgid "Settings for %s updated successfully."
740
+ msgstr "Instellingen voor %s succesvol bijgewerkt."
 
741
 
742
+ #: ../classes/storage_model.php:643
743
+ msgid "Columns by Plugins"
744
+ msgstr "Kolommen door Plugins"
745
 
746
+ #: ../classes/storage_model.php:862
747
+ msgid "View"
748
+ msgstr "Bekijk"
 
749
 
750
+ #: ../classes/upgrade.php:62
751
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
752
+ msgstr "The pro add-on wordt niet langer ondersteund. Login op je account en download Admin Columns Pro"
753
 
754
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
755
+ msgid "Upgrade"
756
+ msgstr "Upgrade"
757
 
758
+ #: ../classes/upgrade.php:136
759
+ msgid "requires a database upgrade"
760
+ msgstr "verreist een database upgrade"
761
 
762
+ #: ../classes/upgrade.php:139
763
+ msgid "why?"
764
+ msgstr "waarom?"
765
 
766
+ #: ../classes/upgrade.php:140
767
+ msgid "Please"
768
+ msgstr "Alstublieft"
769
 
770
+ #: ../classes/upgrade.php:141
771
+ msgid "backup your database"
772
+ msgstr "backup van uw database"
 
773
 
774
+ #: ../classes/upgrade.php:142
775
+ msgid "then click"
776
+ msgstr "daarna klik"
777
 
778
+ #: ../classes/upgrade.php:351
779
+ msgid "Migrating Column Settings"
780
+ msgstr "Migreer Kolom Instellingen"
781
 
782
+ #: ../classes/upgrade.php:387
783
+ msgid "No Upgrade Required"
784
+ msgstr "Geen upgrade verreist"
785
 
786
+ #: ../classes/upgrade.php:388
787
+ msgid "Return to welcome screen."
788
+ msgstr "Ga terug naar het welkomst scherm."
789
 
790
+ #: ../classes/upgrade.php:406
791
+ msgid "Upgrade Complete!"
792
+ msgstr "Upgrade voltooid!"
793
 
794
+ #: ../classes/upgrade.php:406
795
+ msgid "Return to settings."
796
+ msgstr "Herstel standaard instellingen"
797
 
798
+ #: ../classes/upgrade.php:407
799
+ msgid "Error"
800
+ msgstr "Fout"
801
 
802
+ #: ../classes/upgrade.php:408
803
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
804
+ msgstr "Excuseert. Er liep iets fout tijdens bij het upgraden. Gelieve dit te melden in het support forum."
805
 
806
+ #: ../classes/column/acf-placeholder.php:19
807
+ msgid "ACF Field"
808
+ msgstr "ACF Veld"
809
 
810
+ #: ../classes/column/acf-placeholder.php:35
811
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
812
+ msgstr "Heb je een developer licence, download & installeer dan je ACF add-on via de <a href='%s'>add-ons tab</a>."
813
 
814
+ #: ../classes/column/acf-placeholder.php:38
815
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
816
+ msgstr "Admin Columns Pro - Developer biedt volledige integratie van Geavanceerde Aangepaste Velden. Je kunt ze vlot weergeven en aanpassen in je berichtenoverzicht."
817
 
818
+ #: ../classes/column/acf-placeholder.php:44
819
+ msgid "Find out more"
820
+ msgstr "Meer weten"
821
 
822
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
823
+ msgid "Actions"
824
+ msgstr "Acties"
825
 
826
+ #: ../classes/column/actions.php:96
827
+ msgid "Use icons?"
828
+ msgstr "Gebruik iconen?"
829
 
830
+ #: ../classes/column/actions.php:96
831
+ msgid "Use icons instead of text for displaying the actions."
832
+ msgstr "Gebruik iconen in plaats van tekst om actions te tonen."
833
 
834
+ #: ../classes/column/custom-field.php:96
835
+ msgid "Checkmark (true/false)"
836
+ msgstr "Vinkje (true/false)"
837
 
838
+ #: ../classes/column/custom-field.php:102
839
+ msgid "Media Library"
840
+ msgstr "Mediabibliotheek"
841
 
842
+ #: ../classes/column/custom-field.php:105
843
+ msgid "Post Title (Post ID's)"
844
+ msgstr "Post Titel (Post ID's)"
 
845
 
846
+ #: ../classes/column/custom-field.php:106
847
+ msgid "Username (User ID's)"
848
+ msgstr "Gebruikersnaam ( Gebruiker ID's )"
849
 
850
+ #: ../classes/column/custom-field.php:107
851
+ msgid "Term Name (Term ID's)"
852
+ msgstr "Term naam (Term ID's)"
853
 
854
+ #: ../classes/column/custom-field.php:391
855
+ msgid "Select your custom field."
856
+ msgstr "Selecteer uw custom field."
857
 
858
+ #: ../classes/column/custom-field.php:401
859
+ msgid "No custom fields available."
860
+ msgstr "Geen custom fields beschikbaar."
861
 
862
+ #: ../classes/column/custom-field.php:401
863
+ msgid "Please create a %s item first."
864
+ msgstr "Maak eerste een %s item aan."
865
 
866
+ #: ../classes/column/custom-field.php:408
867
+ msgid "Field Type"
868
+ msgstr "Veld type"
869
 
870
+ #: ../classes/column/custom-field.php:408
871
+ msgid "This will determine how the value will be displayed."
872
+ msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
873
 
874
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
875
+ msgid "Taxonomy"
876
+ msgstr "Taxonomy"
877
 
878
+ #: ../classes/column/used-by-menu.php:20
879
+ msgid "Used by Menu"
880
+ msgstr "Ingebruik door menu"
881
 
882
+ #: ../classes/column/used-by-menu.php:133
883
+ msgid "Link to menu"
884
+ msgstr "Link naar menu"
885
 
886
+ #: ../classes/column/used-by-menu.php:133
887
+ msgid "This will make the title link to the menu."
888
+ msgstr "Dit linkt de titel naar het menu"
889
 
890
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
891
+ msgid "ID"
892
+ msgstr "ID"
893
 
894
+ #: ../classes/column/comment/agent.php:19
895
+ msgid "Agent"
896
+ msgstr "Agent"
897
 
898
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
899
+ msgid "Approved"
900
+ msgstr "Goedgekeurd"
901
 
902
+ #: ../classes/column/comment/author-avatar.php:19
903
+ msgid "Avatar"
904
+ msgstr "Avatar"
905
 
906
+ #: ../classes/column/comment/author-email.php:19
907
+ msgid "Author email"
908
+ msgstr "Auteurs email"
909
 
910
+ #: ../classes/column/comment/author-ip.php:19
911
+ msgid "Author IP"
912
+ msgstr "Auteur IP"
913
 
914
+ #: ../classes/column/comment/author-name.php:12
915
+ msgid "Author name"
916
+ msgstr "Auteur naam"
917
 
918
+ #: ../classes/column/comment/author-url.php:19
919
+ msgid "Author url"
920
+ msgstr "Auteurs url"
921
 
922
+ #: ../classes/column/comment/author.php:19
923
+ msgid "Author"
924
+ msgstr "Auteur"
925
 
926
+ #: ../classes/column/comment/date-gmt.php:19
927
+ msgid "Date GMT"
928
+ msgstr "Datum GMT"
929
 
930
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
931
+ msgid "Content"
932
+ msgstr "Content"
933
 
934
+ #: ../classes/column/comment/post.php:19
935
+ msgid "Post"
936
+ msgstr "Bericht"
 
937
 
938
+ #: ../classes/column/comment/reply-to.php:19
939
+ msgid "In Reply To"
940
+ msgstr "Antwoord op"
941
 
942
+ #: ../classes/column/comment/user.php:11
943
+ msgid "User"
944
+ msgstr "Gebruiker"
945
 
946
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
947
+ msgid "Word count"
948
+ msgstr "Aantal woorden"
949
 
950
+ #: ../classes/column/media/alternate-text.php:19
951
+ msgid "Alt"
952
+ msgstr "Alt"
953
 
954
+ #: ../classes/column/media/attached-to.php:19
955
+ msgid "Attached to post"
956
+ msgstr "Voeg toe aan post"
957
 
958
+ #: ../classes/column/media/available-sizes.php:20
959
+ msgid "Available Sizes"
960
+ msgstr "Beschikbare Afmetingen"
961
 
962
+ #: ../classes/column/media/available-sizes.php:40
963
+ msgid "full size"
964
+ msgstr "Volledige grootte"
965
 
966
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
967
+ msgid "Caption"
968
+ msgstr "Onderschrift"
969
 
970
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
971
+ msgid "Description"
972
+ msgstr "Beschrijving"
973
 
974
+ #: ../classes/column/media/dimensions.php:19
975
+ msgid "Dimensions"
976
+ msgstr "Afmetingen"
977
 
978
+ #: ../classes/column/media/exif-data.php:19
979
+ msgid "EXIF data"
980
+ msgstr "EXIF data"
981
 
982
+ #: ../classes/column/media/exif-data.php:38
983
+ msgid "Aperture"
984
+ msgstr "Aperture"
985
 
986
+ #: ../classes/column/media/exif-data.php:39
987
+ msgid "Credit"
988
+ msgstr "Credit"
989
 
990
+ #: ../classes/column/media/exif-data.php:40
991
+ msgid "Camera"
992
+ msgstr "Camera"
993
 
994
+ #: ../classes/column/media/exif-data.php:42
995
+ msgid "Timestamp"
996
+ msgstr "Timestamp"
997
 
998
+ #: ../classes/column/media/exif-data.php:43
999
+ msgid "Copyright EXIF"
1000
+ msgstr "Copyright EXIF"
1001
 
1002
+ #: ../classes/column/media/exif-data.php:44
1003
+ msgid "Focal Length"
1004
+ msgstr "Brandpuntsafstand"
1005
 
1006
+ #: ../classes/column/media/exif-data.php:45
1007
+ msgid "ISO"
1008
+ msgstr "ISO"
1009
 
1010
+ #: ../classes/column/media/exif-data.php:46
1011
+ msgid "Shutter Speed"
1012
+ msgstr "Sluitertijd"
1013
 
1014
+ #: ../classes/column/media/exif-data.php:47
1015
+ msgid "Title"
1016
+ msgstr "Titel"
1017
 
1018
+ #: ../classes/column/media/file-name.php:19
1019
+ msgid "File name"
1020
+ msgstr "Bestandsnaam"
 
1021
 
1022
+ #: ../classes/column/media/file-size.php:19
1023
+ msgid "File size"
1024
+ msgstr "Bestandsgrootte"
1025
 
1026
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1027
+ msgid "Full path"
1028
+ msgstr "Volledige pad"
1029
 
1030
+ #: ../classes/column/media/full-path.php:83
1031
+ msgid "Path scope"
1032
+ msgstr "Path scope"
 
1033
 
1034
+ #: ../classes/column/media/full-path.php:84
1035
+ msgid "Part of the file path to display"
1036
+ msgstr "Deel van bestands locatie voor weergave"
1037
 
1038
+ #: ../classes/column/media/full-path.php:97
1039
+ msgid "Relative to domain"
1040
+ msgstr "Relatief aan het domein"
1041
 
1042
+ #: ../classes/column/media/full-path.php:102
1043
+ msgid "Relative to main uploads folder "
1044
+ msgstr "Relatief aan de uploads directory"
1045
 
1046
+ #: ../classes/column/media/height.php:19
1047
+ msgid "Height"
1048
+ msgstr "Hoogte"
1049
 
1050
+ #: ../classes/column/media/mime-type.php:19
1051
+ msgid "Mime type"
1052
+ msgstr "Mimi type"
1053
 
1054
+ #: ../classes/column/post/attachment-count.php:19
1055
+ msgid "No. of Attachments"
1056
+ msgstr "Aantal attachments"
1057
 
1058
+ #: ../classes/column/post/attachment.php:19
1059
+ msgid "Attachments"
1060
+ msgstr "Attachments"
1061
 
1062
+ #: ../classes/column/post/author-name.php:20
1063
+ msgid "Display Author As"
1064
+ msgstr "Toon auteur als"
 
1065
 
1066
+ #: ../classes/column/post/author-name.php:100
1067
+ msgid "View Public Author Page"
1068
+ msgstr "Bekijk Publieke Auteur Pagina"
1069
 
1070
+ #: ../classes/column/post/author-name.php:102
1071
+ msgid "Page the author name should link to."
1072
+ msgstr "Pagina waar de auteurnaam naar toe linkt."
1073
 
1074
+ #: ../classes/column/post/before-moretag.php:19
1075
+ msgid "Before More Tag"
1076
+ msgstr "Voor de meer-tag"
1077
 
1078
+ #: ../classes/column/post/comment-count.php:20
1079
+ msgid "Comment count"
1080
+ msgstr "Aantal reacties"
1081
 
1082
+ #: ../classes/column/post/comment-count.php:34
1083
+ msgid "Total"
1084
+ msgstr "Totaal"
1085
 
1086
+ #: ../classes/column/post/comment-count.php:36
1087
+ msgid "Pending"
1088
+ msgstr "Pending"
1089
 
1090
+ #: ../classes/column/post/comment-count.php:37
1091
+ msgid "Spam"
1092
+ msgstr "Spam"
1093
 
1094
+ #: ../classes/column/post/comment-count.php:38
1095
+ msgid "Trash"
1096
+ msgstr "Prullenbak"
1097
 
1098
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1099
+ msgid "Comment status"
1100
+ msgstr "Comment status"
1101
 
1102
+ #: ../classes/column/post/comment-count.php:99
1103
+ msgid "Select which comment status you like to display."
1104
+ msgstr "Selecteer welke reactie status die je wil weergeven."
1105
 
1106
+ #: ../classes/column/post/depth.php:19
1107
+ msgid "Depth"
1108
+ msgstr "Diepte"
1109
 
1110
+ #: ../classes/column/post/estimated-reading-time.php:19
1111
+ msgid "Estimated Reading Time"
1112
+ msgstr "Gemiddelde leestijd"
1113
 
1114
+ #: ../classes/column/post/estimated-reading-time.php:66
1115
+ msgid "second"
1116
+ msgid_plural "seconds"
1117
+ msgstr[0] "seconde"
1118
+ msgstr[1] "seconden"
1119
 
1120
+ #: ../classes/column/post/estimated-reading-time.php:69
1121
+ msgid "minute"
1122
+ msgid_plural "minutes"
1123
+ msgstr[0] "minuut"
1124
+ msgstr[1] "minuten"
1125
 
1126
+ #: ../classes/column/post/estimated-reading-time.php:107
1127
+ msgid "Words per minute"
1128
+ msgstr "Woorden per minuut"
1129
 
1130
+ #: ../classes/column/post/estimated-reading-time.php:108
1131
+ msgid "Estimated reading time in words per minute"
1132
+ msgstr "Gemiddelde leestijd in woorden per minuut"
1133
 
1134
+ #: ../classes/column/post/featured-image.php:19
1135
+ msgid "Featured Image"
1136
+ msgstr "Uitgelichte afbeelding"
1137
 
1138
+ #: ../classes/column/post/formats.php:19
1139
+ msgid "Post Format"
1140
+ msgstr "Post formaat"
1141
 
1142
+ #: ../classes/column/post/last-modified-author.php:20
1143
+ msgid "Last Modified Author"
1144
+ msgstr "Laatst Gewijzigd Auteur"
1145
 
1146
+ #: ../classes/column/post/modified.php:19
1147
+ msgid "Last modified"
1148
+ msgstr "Laatst gewijzigd"
1149
 
1150
+ #: ../classes/column/post/order.php:19
1151
+ msgid "Order"
1152
+ msgstr "Volgorde"
1153
 
1154
+ #: ../classes/column/post/page-template.php:19
1155
+ msgid "Page Template"
1156
+ msgstr "Pagina Template"
1157
 
1158
+ #: ../classes/column/post/parent.php:19
1159
+ msgid "Parent"
1160
+ msgstr "Bovenliggende "
1161
 
1162
+ #: ../classes/column/post/path.php:19
1163
+ msgid "Path"
1164
+ msgstr "Pad"
 
1165
 
1166
+ #: ../classes/column/post/permalink.php:19
1167
+ msgid "Permalink"
1168
+ msgstr "Permalink"
 
1169
 
1170
+ #: ../classes/column/post/permalink.php:68
1171
+ msgid "Link to post"
1172
+ msgstr "Link naar bericht"
1173
 
1174
+ #: ../classes/column/post/permalink.php:68
1175
+ msgid "This will make the permalink clickable."
1176
+ msgstr "Dit maakt de permalink klikbaar."
1177
 
1178
+ #: ../classes/column/post/ping-status.php:19
1179
+ msgid "Ping status"
1180
+ msgstr "Ping status"
1181
 
1182
+ #: ../classes/column/post/roles.php:19
1183
+ msgid "Roles"
1184
+ msgstr "Rollen"
1185
 
1186
+ #: ../classes/column/post/shortcodes.php:19
1187
+ msgid "Shortcodes"
1188
+ msgstr "Shortcodes"
1189
 
1190
+ #: ../classes/column/post/slug.php:19
1191
+ msgid "Slug"
1192
+ msgstr "Slug"
1193
 
1194
+ #: ../classes/column/post/status.php:21
1195
+ msgid "Status"
1196
+ msgstr "Status"
1197
 
1198
+ #: ../classes/column/post/sticky.php:19
1199
+ msgid "Sticky"
1200
+ msgstr "Sticky"
1201
 
1202
+ #: ../classes/column/post/title-raw.php:19
1203
+ msgid "Title without actions"
1204
+ msgstr "Titel zonder acties"
1205
 
1206
+ #: ../classes/column/link/length.php:19
1207
+ msgid "Length"
1208
+ msgstr "Lengte"
1209
 
1210
+ #: ../classes/column/link/notes.php:19
1211
+ msgid "Notes"
1212
+ msgstr "Beschrijving"
1213
 
1214
+ #: ../classes/column/link/owner.php:19
1215
+ msgid "Owner"
1216
+ msgstr "Eigenaar"
1217
 
1218
+ #: ../classes/column/link/rss.php:19
1219
+ msgid "Rss"
1220
+ msgstr "Rss"
1221
 
1222
+ #: ../classes/column/link/target.php:19
1223
+ msgid "Target"
1224
+ msgstr "Doel"
1225
 
1226
+ #: ../classes/column/user/display-name.php:19
1227
+ msgid "Display name"
1228
+ msgstr "Weergave naam"
1229
 
1230
+ #: ../classes/column/user/first-name.php:19
1231
+ msgid "First name"
1232
+ msgstr "Voornaam"
1233
 
1234
+ #: ../classes/column/user/last-name.php:19
1235
+ msgid "Last name"
1236
+ msgstr "Achternaam"
1237
 
1238
+ #: ../classes/column/user/post-count.php:19
1239
+ msgid "Post Count"
1240
+ msgstr "Aantal posts"
1241
 
1242
+ #: ../classes/column/user/post-count.php:89
1243
+ msgid "Post Type"
1244
+ msgstr "Post Type"
1245
 
1246
+ #: ../classes/column/user/registered.php:19
1247
+ msgid "Registered"
1248
+ msgstr "Registratie"
1249
 
1250
+ #: ../classes/column/user/rich-editing.php:19
1251
+ msgid "Visual Editor"
1252
+ msgstr "Visuele editor"
1253
 
1254
+ #: ../classes/column/user/url.php:19
1255
+ msgid "Url"
1256
+ msgstr "Url"
languages/codepress-admin-columns-pl_PL.mo ADDED
Binary file
languages/{cpac-pl_PL.po → codepress-admin-columns-pl_PL.po} RENAMED
@@ -1,31 +1,28 @@
1
- #
 
2
  # Translators:
3
  # Tobias Schutter <info@codepress.nl>, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
- "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
9
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
10
- "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-columns/language/pl_PL/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: pl_PL\n"
16
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
- "X-Generator: Poedit 1.8.1\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
20
- "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPath-1: ..\n"
23
- "X-Poedit-SearchPathExcluded-0: ../src\n"
24
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
25
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
@@ -36,7 +33,9 @@ msgid "Advanced Custom Fields"
36
  msgstr ""
37
 
38
  #: ../classes/addons.php:136
39
- msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
 
 
40
  msgstr ""
41
 
42
  #: ../classes/addons.php:141
@@ -44,1260 +43,1296 @@ msgid "WooCommerce"
44
  msgstr ""
45
 
46
  #: ../classes/addons.php:142
47
- msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
 
 
48
  msgstr ""
49
 
50
- #: ../classes/column.php:597
51
  msgid "Thumbnail"
52
  msgstr "Miniatura"
53
 
54
- #: ../classes/column.php:598
55
  msgid "Medium"
56
  msgstr "Średni"
57
 
58
- #: ../classes/column.php:599
59
  msgid "Large"
60
  msgstr "Duży"
61
 
62
- #: ../classes/column.php:600
63
  msgid "Full"
64
  msgstr "Pełny"
65
 
66
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "Date Format"
68
  msgstr "Format daty"
69
 
70
- #: ../classes/column.php:1042
71
  msgid "This will determine how the date will be displayed."
72
  msgstr "Określi to sposób wyświetlania daty."
73
 
74
- #: ../classes/column.php:1048
75
  msgid "Example:"
76
  msgstr "Przykład:"
77
 
78
- #: ../classes/column.php:1050
79
- #, php-format
80
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
81
- msgstr "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s\">domyślny format daty</a>."
 
82
 
83
- #: ../classes/column.php:1051
84
  msgid "Documentation on date and time formatting."
85
  msgstr "Dokumentacja dotycząca formatowania daty i godziny."
86
 
87
- #: ../classes/column.php:1065
88
  msgid "Excerpt length"
89
  msgstr "Długość wypisu"
90
 
91
- #: ../classes/column.php:1066
92
  msgid "Number of words"
93
  msgstr "Liczba słów"
94
 
95
- #: ../classes/column.php:1084
96
  msgid "Preview size"
97
  msgstr "Wielkość podglądu"
98
 
99
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
100
  msgid "Custom"
101
  msgstr "Włąsne"
102
 
103
- #: ../classes/column.php:1104 ../classes/column.php:1251
104
  msgid "width"
105
  msgstr "szerokość"
106
 
107
- #: ../classes/column.php:1107
108
  msgid "height"
109
  msgstr "wysokość"
110
 
111
- #: ../classes/column.php:1119
112
  msgid "Before"
113
  msgstr "Przed"
114
 
115
- #: ../classes/column.php:1119
116
  msgid "This text will appear before the custom field value."
117
  msgstr "Ten tekst pojawi się przed wartością własnego pola."
118
 
119
- #: ../classes/column.php:1120
120
  msgid "After"
121
  msgstr "Po"
122
 
123
- #: ../classes/column.php:1120
124
  msgid "This text will appear after the custom field value."
125
  msgstr "Ten tekst pojawi się po wartości własnego pola."
126
 
127
- #: ../classes/column.php:1129
128
  msgid "Display Name"
129
  msgstr "Pseudonim"
130
 
131
- #: ../classes/column.php:1130
132
  msgid "First Name"
133
  msgstr "Imię"
134
 
135
- #: ../classes/column.php:1131
136
  msgid "Last Name"
137
  msgstr "Nazwisko"
138
 
139
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
140
  msgid "Nickname"
141
  msgstr "Pseudonim"
142
 
143
- #: ../classes/column.php:1133
144
  msgid "User Login"
145
  msgstr "Login użytkownika"
146
 
147
- #: ../classes/column.php:1134
148
  msgid "User Email"
149
  msgstr "Email użytkownika"
150
 
151
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
152
  msgid "User ID"
153
  msgstr "ID użytkownika"
154
 
155
- #: ../classes/column.php:1136
156
  msgid "First and Last Name"
157
  msgstr "Imię i nazwisko"
158
 
159
- #: ../classes/column.php:1139
160
  msgid "Display format"
161
  msgstr ""
162
 
163
- #: ../classes/column.php:1139
164
  msgid "This is the format of the author name."
165
  msgstr "To jest format autora"
166
 
167
- #: ../classes/column.php:1273
168
  msgid "Edit"
169
  msgstr "Edytuj"
170
 
171
- #: ../classes/column.php:1275 ../classes/column.php:1367
172
  msgid "Clone"
173
  msgstr ""
174
 
175
- #: ../classes/column.php:1277 ../classes/column.php:1369
176
  msgid "Remove"
177
  msgstr "Usuń"
178
 
179
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
 
 
180
  msgid "Type"
181
  msgstr "Typ"
182
 
183
- #: ../classes/column.php:1295
184
  msgid "Choose a column type."
185
  msgstr "Wybierz typ kolumny."
186
 
187
- #: ../classes/column.php:1295
188
  msgid "Name"
189
  msgstr ""
190
 
191
- #: ../classes/column.php:1305
192
  msgid "Label"
193
  msgstr "Etykieta"
194
 
195
- #: ../classes/column.php:1305
196
  msgid "This is the name which will appear as the column header."
197
  msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
198
 
199
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
200
  msgid "Width"
201
  msgstr "Szerokość"
202
 
203
- #: ../classes/column.php:1314
204
  msgid "default"
205
  msgstr "domyśłny"
206
 
207
- #: ../classes/column.php:1315
208
  msgid "auto"
209
  msgstr ""
210
 
211
- #: ../classes/column/acf-placeholder.php:19
212
- msgid "ACF Field"
213
  msgstr ""
214
 
215
- #: ../classes/column/acf-placeholder.php:32
216
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
217
  msgstr ""
218
 
219
- #: ../classes/column/acf-placeholder.php:35
220
- #, php-format
221
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
222
  msgstr ""
223
 
224
- #: ../classes/column/acf-placeholder.php:38
225
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
226
  msgstr ""
227
 
228
- #: ../classes/column/acf-placeholder.php:44
229
- msgid "Find out more"
230
  msgstr ""
231
 
232
- #: ../classes/column/actions.php:29
233
- msgid "Actions"
234
- msgstr "Działania"
235
 
236
- #: ../classes/column/actions.php:96
237
- msgid "Use icons?"
 
 
 
 
 
238
  msgstr ""
239
 
240
- #: ../classes/column/actions.php:96
241
- msgid "Use icons instead of text for displaying the actions."
242
  msgstr ""
243
 
244
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
245
- msgid "Yes"
246
  msgstr ""
247
 
248
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
249
- msgid "No"
250
  msgstr ""
251
 
252
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
253
- msgid "ID"
254
- msgstr "ID"
 
 
 
255
 
256
- #: ../classes/column/comment/agent.php:19
257
- msgid "Agent"
258
- msgstr "Przeglądarka"
259
 
260
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
261
- msgid "Approved"
262
- msgstr "Zatwierdzony"
 
 
263
 
264
- #: ../classes/column/comment/author-avatar.php:19
265
- msgid "Avatar"
266
- msgstr "Avatar"
267
 
268
- #: ../classes/column/comment/author-email.php:19
269
- msgid "Author email"
270
- msgstr "Email Autora"
271
 
272
- #: ../classes/column/comment/author-ip.php:19
273
- msgid "Author IP"
274
- msgstr "IP Autora"
275
 
276
- #: ../classes/column/comment/author-name.php:12
277
- msgid "Author name"
278
  msgstr ""
279
 
280
- #: ../classes/column/comment/author-url.php:19
281
- msgid "Author url"
282
- msgstr "URL Autora"
283
 
284
- #: ../classes/column/comment/author.php:19
285
- msgid "Author"
286
- msgstr "Autor"
287
 
288
- #: ../classes/column/comment/date-gmt.php:19
289
- msgid "Date GMT"
290
- msgstr "Data GMT"
 
 
 
 
291
 
292
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
293
- #, php-format
294
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
295
- msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
296
 
297
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
298
- msgid "Date"
299
- msgstr "Data"
300
 
301
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
302
- msgid "Content"
303
- msgstr ""
 
 
 
304
 
305
- #: ../classes/column/comment/reply-to.php:19
306
- msgid "In Reply To"
307
- msgstr "W odpowiedzi na"
308
 
309
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
310
- msgid "User"
311
- msgstr ""
312
 
313
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
314
- msgid "Word count"
315
- msgstr "Liczba słów"
 
 
 
 
 
316
 
317
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  msgid "Custom Field"
319
  msgstr "Własne pole"
320
 
321
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
 
 
 
322
  msgid "Default"
323
  msgstr "Domyślny"
324
 
325
- #: ../classes/column/custom-field.php:95
326
- msgid "Checkmark (true/false)"
327
- msgstr "Znak (prawda/fałsz)"
 
 
328
 
329
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
330
- msgid "Color"
331
- msgstr "Kolor"
 
332
 
333
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
334
- msgid "Counter"
335
- msgstr ""
 
 
336
 
337
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
338
  msgid "Excerpt"
339
  msgstr "Wypis"
340
 
341
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
342
- msgid "Image"
343
- msgstr "Obrazek"
344
-
345
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
346
- msgid "Media Library"
347
- msgstr "Biblioteka mediów"
348
 
349
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
350
  msgid "Multiple Values"
351
  msgstr "Wielokrotne wartości"
352
 
353
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
 
 
354
  msgid "Numeric"
355
  msgstr "Numeryczny"
356
 
357
- #: ../classes/column/custom-field.php:104
358
- msgid "Post Title (Post ID's)"
359
- msgstr "Tytył wpisu (ID wpisu)"
 
 
360
 
361
- #: ../classes/column/custom-field.php:105
362
- msgid "Username (User ID's)"
363
- msgstr "Użytkownik (ID użytkownika)"
 
364
 
365
- #: ../classes/column/custom-field.php:106
366
- msgid "Term Name (Term ID's)"
367
- msgstr ""
 
 
 
368
 
369
- #: ../classes/column/custom-field.php:390
370
- msgid "Select your custom field."
371
- msgstr "Wybierz własne pole."
372
 
373
- #: ../classes/column/custom-field.php:400
374
- msgid "No custom fields available."
375
- msgstr "Brak dostępnych własnych pól."
376
 
377
- #: ../classes/column/custom-field.php:400
378
- #, php-format
379
- msgid "Please create a %s item first."
380
- msgstr ""
381
 
382
- #: ../classes/column/custom-field.php:407
383
- msgid "Field Type"
384
- msgstr "Rodzaj pola"
385
 
386
- #: ../classes/column/custom-field.php:407
387
- msgid "This will determine how the value will be displayed."
388
- msgstr "Określi to sposób wyświetlania wartości."
389
 
390
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
391
- msgid "Description"
392
- msgstr "Opis"
393
 
394
- #: ../classes/column/link/length.php:19
395
- msgid "Length"
396
- msgstr "Długość"
397
 
398
- #: ../classes/column/link/notes.php:19
399
- msgid "Notes"
400
- msgstr "Notatki"
401
 
402
- #: ../classes/column/link/owner.php:19
403
- msgid "Owner"
404
- msgstr "Właściciel"
405
 
406
- #: ../classes/column/link/rss.php:19
407
- msgid "Rss"
408
- msgstr "Rss"
 
 
409
 
410
- #: ../classes/column/link/target.php:19
411
- msgid "Target"
412
- msgstr "Cel"
413
 
414
- #: ../classes/column/media/alternate-text.php:19
415
- msgid "Alt"
416
- msgstr "Tekst alternatywny"
417
 
418
- #: ../classes/column/media/attached-to.php:19
419
- msgid "Attached to post"
420
- msgstr ""
 
 
421
 
422
- #: ../classes/column/media/available-sizes.php:20
423
- msgid "Available Sizes"
424
- msgstr "Dostępne rozmiary"
425
 
426
- #: ../classes/column/media/available-sizes.php:40
427
- msgid "full size"
428
- msgstr "pełny rozmiar"
429
 
430
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
431
- msgid "Caption"
432
- msgstr "Tytuł"
433
 
434
- #: ../classes/column/media/dimensions.php:19
435
- msgid "Dimensions"
436
- msgstr "Wymiary"
437
 
438
- #: ../classes/column/media/exif-data.php:19
439
- msgid "EXIF data"
440
- msgstr "Dane EXIF"
 
 
441
 
442
- #: ../classes/column/media/exif-data.php:38
443
- msgid "Aperture"
444
- msgstr "Przysłona"
445
 
446
- #: ../classes/column/media/exif-data.php:39
447
- msgid "Credit"
448
- msgstr "Autor"
449
 
450
- #: ../classes/column/media/exif-data.php:40
451
- msgid "Camera"
452
- msgstr "Aparat"
453
 
454
- #: ../classes/column/media/exif-data.php:42
455
- msgid "Timestamp"
456
- msgstr "Data"
 
 
 
457
 
458
- #: ../classes/column/media/exif-data.php:43
459
- msgid "Copyright EXIF"
460
- msgstr "Prawa autorskie EXIF"
461
 
462
- #: ../classes/column/media/exif-data.php:44
463
- msgid "Focal Length"
464
- msgstr "Ogniskowa"
465
 
466
- #: ../classes/column/media/exif-data.php:45
467
- msgid "ISO"
468
- msgstr "ISO"
 
 
469
 
470
- #: ../classes/column/media/exif-data.php:46
471
- msgid "Shutter Speed"
472
- msgstr "Szybkość migawki"
473
 
474
- #: ../classes/column/media/exif-data.php:47
475
- msgid "Title"
476
- msgstr "Tytuł"
 
 
477
 
478
- #: ../classes/column/media/file-name.php:19
479
- msgid "File name"
480
- msgstr "Nazwa pliku"
481
 
482
- #: ../classes/column/media/file-size.php:19
483
- msgid "File size"
484
- msgstr "Wielkość pliku"
485
 
486
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
487
- msgid "Full path"
488
- msgstr "Pełna ścieżka"
489
 
490
- #: ../classes/column/media/full-path.php:83
491
- msgid "Path scope"
492
- msgstr ""
493
 
494
- #: ../classes/column/media/full-path.php:84
495
- msgid "Part of the file path to display"
496
- msgstr ""
497
 
498
- #: ../classes/column/media/full-path.php:97
499
- msgid "Relative to domain"
500
- msgstr ""
501
 
502
- #: ../classes/column/media/full-path.php:102
503
- msgid "Relative to main uploads folder "
 
 
 
 
504
  msgstr ""
505
 
506
- #: ../classes/column/media/height.php:19
507
- msgid "Height"
508
- msgstr "Wysokość"
509
 
510
- #: ../classes/column/media/mime-type.php:19
511
- msgid "Mime type"
512
- msgstr "Typ pliku"
513
 
514
- #: ../classes/column/post/attachment-count.php:19
515
- msgid "No. of Attachments"
516
- msgstr "Liczba załączników"
517
 
518
- #: ../classes/column/post/attachment.php:19
519
- msgid "Attachments"
 
 
520
  msgstr ""
521
 
522
- #: ../classes/column/post/author-name.php:20
523
- msgid "Display Author As"
524
- msgstr "Wyświetla autora jako"
525
 
526
- #: ../classes/column/post/before-moretag.php:19
527
- msgid "Before More Tag"
528
- msgstr "Przed tagiem Czytaj dalej"
529
 
530
- #: ../classes/column/post/comment-count.php:20
531
- msgid "Comment count"
532
- msgstr "Liczba komentarzy"
533
 
534
- #: ../classes/column/post/comment-count.php:34
535
- msgid "Total"
536
- msgstr "Ogółem"
537
 
538
- #: ../classes/column/post/comment-count.php:36
539
- msgid "Pending"
540
- msgstr "Oczekujący"
541
 
542
- #: ../classes/column/post/comment-count.php:37
543
- msgid "Spam"
544
- msgstr "Spam"
 
 
545
 
546
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
547
- msgid "Trash"
548
- msgstr "Kosz"
549
 
550
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
551
- msgid "Comment status"
552
- msgstr "Status komentarza"
 
 
553
 
554
- #: ../classes/column/post/comment-count.php:99
555
- msgid "Select which comment status you like to display."
556
- msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
557
 
558
- #: ../classes/column/post/date-published.php:17
559
- msgid "Date Published"
560
- msgstr ""
561
 
562
- #: ../classes/column/post/depth.php:19
563
- msgid "Depth"
564
  msgstr ""
565
 
566
- #: ../classes/column/post/estimated-reading-time.php:19
567
- msgid "Estimated Reading Time"
568
- msgstr ""
569
 
570
- #: ../classes/column/post/estimated-reading-time.php:63
571
- msgid "second"
572
- msgid_plural "seconds"
573
- msgstr[0] ""
574
- msgstr[1] ""
575
- msgstr[2] ""
576
 
577
- #: ../classes/column/post/estimated-reading-time.php:66
578
- msgid "minute"
579
- msgid_plural "minutes"
580
- msgstr[0] ""
581
- msgstr[1] ""
582
- msgstr[2] ""
583
 
584
- #: ../classes/column/post/estimated-reading-time.php:103
585
- msgid "Words per minute"
586
  msgstr ""
587
 
588
- #: ../classes/column/post/estimated-reading-time.php:104
589
- msgid "Estimated reading time in words per minute"
590
  msgstr ""
591
 
592
- #: ../classes/column/post/featured-image.php:19
593
- msgid "Featured Image"
594
- msgstr "Ikona wpisu"
595
-
596
- #: ../classes/column/post/formats.php:19
597
- msgid "Post Format"
598
- msgstr "Format wpisu"
599
-
600
- #: ../classes/column/post/last-modified-author.php:20
601
- msgid "Last Modified Author"
602
  msgstr ""
603
 
604
- #: ../classes/column/post/modified.php:19
605
- msgid "Last modified"
606
- msgstr "Ostatnia modyfikacja"
607
 
608
- #: ../classes/column/post/order.php:19
609
- msgid "Page Order"
610
- msgstr "Kolejność stron"
611
 
612
- #: ../classes/column/post/page-template.php:19
613
- msgid "Page Template"
614
- msgstr "Szablon strony"
615
 
616
- #: ../classes/column/post/parent.php:19
617
- msgid "Parent"
618
- msgstr "Rodzic"
 
 
619
 
620
- #: ../classes/column/post/path.php:19
621
- msgid "Path"
622
  msgstr ""
623
 
624
- #: ../classes/column/post/permalink.php:19
625
- msgid "Permalink"
626
  msgstr ""
627
 
628
- #: ../classes/column/post/permalink.php:68
629
- msgid "Link to post"
630
  msgstr ""
631
 
632
- #: ../classes/column/post/permalink.php:68
633
- msgid "This will make the permalink clickable."
 
 
634
  msgstr ""
635
 
636
- #: ../classes/column/post/ping-status.php:19
637
- msgid "Ping status"
638
- msgstr "Status ping"
639
 
640
- #: ../classes/column/post/roles.php:19
641
- msgid "Roles"
642
- msgstr "Role"
643
 
644
- #: ../classes/column/post/shortcodes.php:19
645
- msgid "Shortcodes"
646
  msgstr ""
647
 
648
- #: ../classes/column/post/slug.php:19
649
- msgid "Slug"
650
- msgstr "Bezpośredni odnośnik"
651
 
652
- #: ../classes/column/post/status.php:19
653
- msgid "Status"
654
- msgstr "Status"
655
 
656
- #: ../classes/column/post/status.php:29
657
- msgid "Published"
658
- msgstr "Opublikowany"
 
 
659
 
660
- #: ../classes/column/post/status.php:30
661
- msgid "Draft"
662
- msgstr "Szkic"
663
 
664
- #: ../classes/column/post/status.php:31
665
- msgid "Scheduled"
666
- msgstr "Zaplanowany"
667
-
668
- #: ../classes/column/post/status.php:32
669
- msgid "Private"
670
- msgstr "Prywatny"
671
-
672
- #: ../classes/column/post/status.php:33
673
- msgid "Pending Review"
674
- msgstr "Oczekujący na przegląd"
675
-
676
- #: ../classes/column/post/status.php:34
677
- msgid "Auto Draft"
678
- msgstr ""
679
-
680
- #: ../classes/column/post/sticky.php:19
681
- msgid "Sticky"
682
- msgstr "Przyklejone"
683
 
684
- #: ../classes/column/post/title-raw.php:19
685
- msgid "Title without actions"
686
  msgstr ""
687
 
688
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
689
- msgid "Taxonomy"
690
- msgstr "Taksonomia"
691
-
692
- #: ../classes/column/used-by-menu.php:20
693
- msgid "Used by Menu"
694
  msgstr ""
695
 
696
- #: ../classes/column/used-by-menu.php:133
697
- msgid "Link to menu"
698
  msgstr ""
699
 
700
- #: ../classes/column/used-by-menu.php:133
701
- msgid "This will make the title link to the menu."
702
  msgstr ""
703
 
704
- #: ../classes/column/user/comment-count.php:19
705
- msgid "Comment Count"
706
- msgstr "Liczba komentarzy"
707
-
708
- #: ../classes/column/user/display-name.php:19
709
- msgid "Display name"
710
  msgstr ""
711
 
712
- #: ../classes/column/user/first-name.php:19
713
- msgid "First name"
714
- msgstr "Imię"
715
-
716
- #: ../classes/column/user/last-name.php:19
717
- msgid "Last name"
718
- msgstr "Nazwisko"
719
-
720
- #: ../classes/column/user/post-count.php:19
721
- msgid "Post Count"
722
- msgstr "Liczba wpisów"
723
-
724
- #: ../classes/column/user/post-count.php:89
725
- msgid "Post Type"
726
- msgstr "Typ wpisu"
727
-
728
- #: ../classes/column/user/registered.php:19
729
- msgid "Registered"
730
- msgstr "Zarejestrowany"
731
-
732
- #: ../classes/column/user/rich-editing.php:19
733
- msgid "Visual Editor"
734
  msgstr ""
735
 
736
- #: ../classes/column/user/url.php:19
737
- msgid "Url"
738
- msgstr "Adres URL"
739
-
740
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
741
- msgid "Admin Columns"
742
- msgstr "Edytor kolumn"
743
 
744
- #: ../classes/review_notice.php:58
745
- msgid "Admin Columns Pro"
746
- msgstr ""
747
 
748
- #: ../classes/review_notice.php:65
749
- #, php-format
750
- msgid ""
751
- "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 "
752
- "you're not happy with %s, please %s."
753
- msgstr ""
754
 
755
- #: ../classes/review_notice.php:68
756
- msgid "click here"
757
  msgstr ""
758
 
759
- #: ../classes/review_notice.php:72
760
- msgid "Leave a review!"
761
  msgstr ""
762
 
763
- #: ../classes/review_notice.php:73
764
- msgid "Permanently hide notice"
765
- msgstr ""
766
 
767
- #: ../classes/review_notice.php:80
768
- #, php-format
769
- 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."
 
770
  msgstr ""
771
 
772
- #: ../classes/review_notice.php:82
773
- msgid "documentation page"
774
- msgstr ""
775
 
776
- #: ../classes/review_notice.php:86
777
- #, php-format
778
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
779
- msgstr ""
780
 
781
- #: ../classes/review_notice.php:87
782
- msgid "our forums"
783
- msgstr ""
784
 
785
- #: ../classes/review_notice.php:91
786
- #, php-format
787
- msgid "You can also find help on the %s, and %s."
788
- msgstr ""
789
 
790
- #: ../classes/review_notice.php:92
791
- msgid "Admin Columns forums on WordPress.org"
792
- msgstr ""
793
 
794
- #: ../classes/review_notice.php:93
795
- msgid "find answers to some frequently asked questions"
796
- msgstr ""
797
 
798
- #: ../classes/settings.php:112
799
- msgid "Add-on successfully activated."
800
- msgstr ""
801
 
802
- #: ../classes/settings.php:115
803
- msgid "Add-on successfully deactivated."
804
- msgstr ""
805
 
806
- #: ../classes/settings.php:170
807
- msgid "Admin Columns Settings"
808
- msgstr "Ustawienia edytora kolumn"
809
 
810
- #: ../classes/settings.php:220
811
- #, php-format
812
- msgid "%s column is already present and can not be duplicated."
813
- msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
814
 
815
- #: ../classes/settings.php:274
816
- msgid "Default settings succesfully restored."
817
- msgstr "Domyślne ustawienia zostały przywrócone."
818
 
819
- #: ../classes/settings.php:291
820
- msgid "Overview"
821
- msgstr "Przegląd"
822
 
823
- #: ../classes/settings.php:294
824
  msgid ""
825
- "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 "
826
- "reorder them."
827
- msgstr "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić nazwy kolumn i ich kolejność."
828
-
829
- #: ../classes/settings.php:297
830
- msgid "Basics"
831
- msgstr "Podstawy"
832
-
833
- #: ../classes/settings.php:299
834
- msgid "Change order"
835
- msgstr "Zmień kolejność"
836
-
837
- #: ../classes/settings.php:300
838
- msgid "By dragging the columns you can change the order which they will appear in."
839
- msgstr "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
840
-
841
- #: ../classes/settings.php:301
842
- msgid "Change label"
843
- msgstr "Zmień etykietę"
844
-
845
- #: ../classes/settings.php:302
846
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
847
- msgstr "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z nich."
848
-
849
- #: ../classes/settings.php:303
850
- msgid "Change column width"
851
- msgstr "Zmień szerokość kolumn"
852
-
853
- #: ../classes/settings.php:304
854
- 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."
855
- msgstr "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w slajderze możesz ustawić w procentach szerokość kolumn."
856
-
857
- #: ../classes/settings.php:310
858
- msgid "'Custom Field' column"
859
- msgstr "Kolumna 'Własne pole'"
860
-
861
- #: ../classes/settings.php:311
862
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
863
- msgstr "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz wybrać 1 z 10 typów."
864
-
865
- #: ../classes/settings.php:313
866
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
867
- msgstr "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a warości oddzielone przecinkami."
868
-
869
- #: ../classes/settings.php:314
870
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
871
- msgstr "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone przecinkami)."
872
 
873
- #: ../classes/settings.php:315
874
- msgid "Value: This will show the first 20 words of the Post content."
875
- msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
876
 
877
- #: ../classes/settings.php:316
878
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
879
- msgstr "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
 
 
880
 
881
- #: ../classes/settings.php:317
882
- 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."
883
- msgstr "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych pól)."
 
 
 
884
 
885
- #: ../classes/settings.php:318
886
- #, php-format
887
- 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."
888
- msgstr "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a href='%s'>Ustawień głównych</a>."
889
 
890
- #: ../classes/settings.php:319
891
- msgid "Post Titles"
892
- msgstr "Tytyły wpisu"
893
 
894
- #: ../classes/settings.php:319
895
- msgid "Value: can be one or more Post ID's (seperated by ',')."
896
- msgstr "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
897
 
898
- #: ../classes/settings.php:320
899
- msgid "Usernames"
900
- msgstr "Nazwy użytkowników"
901
 
902
- #: ../classes/settings.php:320
903
- msgid "Value: can be one or more User ID's (seperated by ',')."
904
- msgstr "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone przecinkami)."
905
 
906
- #: ../classes/settings.php:321
907
- msgid "Checkmark"
908
- msgstr "Znak tak/nie"
909
 
910
- #: ../classes/settings.php:321
911
- msgid "Value: should be a 1 (one) or 0 (zero)."
912
- msgstr "Wartość: Powinno to być 1 lub 0."
913
 
914
- #: ../classes/settings.php:322
915
- msgid "Value: hex value color, such as #808080."
916
- msgstr "Wartość: Kolor w HEX, np. #808080."
917
 
918
- #: ../classes/settings.php:323
919
- 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."
920
  msgstr ""
921
 
922
- #: ../classes/settings.php:412
923
- msgid "Welcome to Admin Columns"
924
- msgstr "Witaj w Edytorze kolumn"
925
-
926
- #: ../classes/settings.php:415
927
- msgid "Thank you for updating to the latest version!"
928
- msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
929
-
930
- #: ../classes/settings.php:416
931
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
932
- msgstr "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy nadzięję że Ci się spodoba."
933
 
934
- #: ../classes/settings.php:421
935
- msgid "What’s New"
936
- msgstr "Co nowego"
937
 
938
- #: ../classes/settings.php:422
939
- msgid "Changelog"
940
- msgstr "Dziennik zmian"
941
 
942
- #: ../classes/settings.php:427
943
- msgid "Important"
944
- msgstr "Ważne"
945
 
946
- #: ../classes/settings.php:429
947
- msgid "Database Changes"
948
- msgstr "Zmiany w bazie danych"
949
 
950
- #: ../classes/settings.php:430
951
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
952
- msgstr "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do wersji 1 bez żadnych problemów."
953
 
954
- #: ../classes/settings.php:433
955
- msgid "Make sure you backup your database and then click"
956
- msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
957
 
958
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
959
- msgid "Upgrade Database"
960
- msgstr "Aktualizuj bazę danych"
961
 
962
- #: ../classes/settings.php:436
963
- msgid "Potential Issues"
964
- msgstr "Potencjalne problemy"
965
 
966
- #: ../classes/settings.php:437
967
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
968
- msgstr "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać pełną"
 
969
 
970
- #: ../classes/settings.php:437
971
- msgid "Migrating from v1 to v2"
972
- msgstr "Migracja z wersji 1 do 2"
973
 
974
- #: ../classes/settings.php:437
975
- msgid "guide to view the full list of changes."
976
- msgstr "dokumentację i zapoznać się z listą zmian."
 
977
 
978
- #: ../classes/settings.php:437
979
- #, php-format
980
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
981
- msgstr "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w kolejnej wersji."
982
 
983
- #: ../classes/settings.php:440
984
- msgid "Important!"
985
- msgstr "Ważne!"
986
 
987
- #: ../classes/settings.php:440
988
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
989
- msgstr "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz powrócić do poprzedniej"
990
 
991
- #: ../classes/settings.php:440
992
- msgid "version 1"
993
- msgstr "wersja 1"
994
 
995
- #: ../classes/settings.php:440
996
- msgid "of this plugin."
997
- msgstr "tej wtyczki."
998
 
999
- #: ../classes/settings.php:446
1000
- msgid "Changelog for"
1001
- msgstr "Dziennik zmian dla"
1002
 
1003
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1004
- msgid "Learn more"
1005
- msgstr "Dowiedz się więcej"
1006
 
1007
- #: ../classes/settings.php:471
1008
- msgid "Start using Admin Columns"
1009
- msgstr "Zacznij korzystać z Edytora kolumn"
 
1010
 
1011
- #: ../classes/settings.php:490
1012
- msgid "General Settings"
1013
- msgstr "Ustawienia ogólne"
1014
 
1015
- #: ../classes/settings.php:491
1016
- msgid "Customize your Admin Columns settings."
1017
- msgstr "Zmodyfikuj ustawienia Edytora kolumn."
1018
 
1019
- #: ../classes/settings.php:502
1020
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1021
  msgstr ""
1022
 
1023
- #: ../classes/settings.php:509 ../classes/settings.php:673
1024
- msgid "Save"
1025
- msgstr "Zapisz"
 
1026
 
1027
- #: ../classes/settings.php:549
1028
- msgid "Restore Settings"
1029
- msgstr "Przywróć ustawienia"
1030
 
1031
- #: ../classes/settings.php:550
1032
- msgid "This will delete all column settings and restore the default settings."
1033
- msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
1034
 
1035
- #: ../classes/settings.php:556
1036
- msgid "Restore default settings"
1037
- msgstr "Przywróć ustawienia domyślne"
1038
 
1039
- #: ../classes/settings.php:556
1040
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1041
- msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
1042
 
1043
- #: ../classes/settings.php:572
1044
- msgid "Posttypes"
1045
- msgstr ""
 
1046
 
1047
- #: ../classes/settings.php:573
1048
- msgid "Others"
1049
- msgstr ""
 
 
1050
 
1051
- #: ../classes/settings.php:574
1052
- msgid "Taxonomies"
1053
- msgstr ""
1054
 
1055
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1056
- msgid "Settings"
1057
- msgstr "Ustawienia"
1058
 
1059
- #: ../classes/settings.php:591
1060
- msgid "Add-ons"
1061
- msgstr ""
1062
 
1063
- #: ../classes/settings.php:659
1064
- #, php-format
1065
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1066
- msgstr ""
1067
 
1068
- #: ../classes/settings.php:669
1069
- msgid "Store settings"
1070
- msgstr "Zapisz ustawienia"
1071
 
1072
- #: ../classes/settings.php:673
1073
- msgid "Update"
1074
- msgstr "Aktualizuj"
1075
 
1076
- #: ../classes/settings.php:677
1077
- #, php-format
1078
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1079
- msgstr "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
1080
 
1081
- #: ../classes/settings.php:678
1082
- msgid "Restore"
1083
- msgstr "Przywróć"
1084
 
1085
- #: ../classes/settings.php:678
1086
- msgid "columns"
1087
- msgstr "kolumny"
1088
 
1089
- #: ../classes/settings.php:697
1090
- msgid "Get Admin Columns Pro"
1091
- msgstr ""
1092
 
1093
- #: ../classes/settings.php:701
1094
- msgid "Add Sorting"
1095
- msgstr "Dodaj sortowanie"
1096
 
1097
- #: ../classes/settings.php:702
1098
- msgid "Add Filtering"
1099
- msgstr "Dodaj filtrowanie"
1100
 
1101
- #: ../classes/settings.php:703
1102
- msgid "Add Import/Export"
1103
- msgstr "Dodaj Import/Export"
1104
 
1105
- #: ../classes/settings.php:704
1106
- msgid "Add Direct Editing"
1107
- msgstr ""
 
1108
 
1109
- #: ../classes/settings.php:707
1110
- #, php-format
1111
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1112
  msgstr ""
1113
 
1114
- #: ../classes/settings.php:738
1115
- msgid "Are you happy with Admin Columns?"
1116
  msgstr ""
1117
 
1118
- #: ../classes/settings.php:746
1119
- msgid "What's wrong? Need help? Let us know!"
1120
  msgstr ""
1121
 
1122
- #: ../classes/settings.php:747
1123
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1124
  msgstr ""
1125
 
1126
- #: ../classes/settings.php:755
1127
- msgid "Docs"
1128
- msgstr ""
1129
 
1130
- #: ../classes/settings.php:760
1131
- msgid "Forums"
1132
- msgstr ""
1133
 
1134
- #: ../classes/settings.php:769
1135
- msgid "Woohoo! We're glad to hear that!"
1136
- msgstr ""
1137
 
1138
- #: ../classes/settings.php:770
1139
- 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!"
1140
  msgstr ""
1141
 
1142
- #: ../classes/settings.php:774
1143
- msgid "Rate"
1144
- msgstr ""
1145
 
1146
- #: ../classes/settings.php:785
1147
- msgid "Tweet"
1148
  msgstr ""
1149
 
1150
- #: ../classes/settings.php:795
1151
- msgid "Buy Pro"
1152
  msgstr ""
1153
 
1154
- #: ../classes/settings.php:807
1155
- msgid "Support"
1156
- msgstr "Pomocy"
1157
 
1158
- #: ../classes/settings.php:810
1159
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1160
- msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
1161
 
1162
- #: ../classes/settings.php:813
1163
- #, php-format
1164
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1165
- 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>"
1166
 
1167
- #: ../classes/settings.php:842
1168
- msgid "Drag and drop to reorder"
1169
- msgstr "Przeciągnij i opuść aby zmienić kolejność"
1170
 
1171
- #: ../classes/settings.php:845
1172
- msgid "Add Column"
1173
- msgstr "Dodaj kolumnę"
1174
 
1175
- #: ../classes/settings.php:926
1176
- msgid "Active"
1177
- msgstr ""
1178
 
1179
- #: ../classes/settings.php:927
1180
- msgid "Deactivate"
1181
- msgstr ""
 
1182
 
1183
- #: ../classes/settings.php:934
1184
- msgid "Installed"
 
 
 
 
1185
  msgstr ""
1186
 
1187
- #: ../classes/settings.php:935
1188
- msgid "Activate"
1189
  msgstr ""
1190
 
1191
- #: ../classes/settings.php:949
1192
- msgid "Download & Install"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1193
  msgstr ""
1194
 
1195
- #: ../classes/settings.php:954
1196
- msgid "Get this add-on"
1197
  msgstr ""
1198
 
1199
- #: ../classes/storage_model.php:237
1200
- msgid "settings succesfully restored."
1201
- msgstr "ustawienia zostały przywrócone."
1202
 
1203
- #: ../classes/storage_model.php:253
1204
- msgid "No columns settings available."
1205
- msgstr "Brak dostępnych ustawień kolumn."
1206
 
1207
- #: ../classes/storage_model.php:274
1208
- #, php-format
1209
- msgid "You are trying to store the same settings for %s."
1210
- msgstr "Próbujesz przywrócić te same ustawienia dla %s."
1211
 
1212
- #: ../classes/storage_model.php:278
1213
- #, php-format
1214
- msgid "Settings for %s updated successfully."
 
 
 
1215
  msgstr ""
1216
 
1217
- #: ../classes/storage_model.php:809
1218
- msgid "View"
1219
- msgstr "Zobacz"
1220
 
1221
- #: ../classes/storage_model/comment.php:13
1222
- msgid "Comments"
1223
- msgstr "Komentarze"
1224
 
1225
- #: ../classes/storage_model/comment.php:14
1226
- msgid "Comment"
1227
  msgstr ""
1228
 
1229
- #: ../classes/storage_model/link.php:13
1230
- msgid "Links"
1231
- msgstr "Linki"
1232
 
1233
- #: ../classes/storage_model/link.php:14
1234
- msgid "Link"
1235
  msgstr ""
1236
 
1237
- #: ../classes/storage_model/media.php:14
1238
- msgid "Media"
1239
  msgstr ""
1240
 
1241
- #: ../classes/storage_model/user.php:13
1242
- msgid "Users"
1243
- msgstr "Użytkownicy"
1244
 
1245
- #: ../classes/upgrade.php:62
1246
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1247
  msgstr ""
1248
 
1249
- #: ../classes/upgrade.php:95
1250
- msgid "Upgrade"
1251
- msgstr "Aktualizuj"
1252
 
1253
- #: ../classes/upgrade.php:136
1254
- msgid "requires a database upgrade"
1255
- msgstr "wymaga aktualizacji bazy danych"
1256
 
1257
- #: ../classes/upgrade.php:139
1258
- msgid "why?"
1259
- msgstr "dlaczego?"
1260
 
1261
- #: ../classes/upgrade.php:140
1262
- msgid "Please"
1263
- msgstr "Proszę"
1264
 
1265
- #: ../classes/upgrade.php:141
1266
- msgid "backup your database"
1267
- msgstr "zrobić kopię zapasową bazy danych"
1268
 
1269
- #: ../classes/upgrade.php:142
1270
- msgid "then click"
1271
- msgstr "a następnie kliknąć"
1272
 
1273
- #: ../classes/upgrade.php:351
1274
- msgid "Migrating Column Settings"
1275
- msgstr "Migracja ustawień kolumn"
1276
 
1277
- #: ../classes/upgrade.php:387
1278
- msgid "No Upgrade Required"
1279
- msgstr "Aktualizacja nie jest wymagana"
1280
 
1281
- #: ../classes/upgrade.php:388
1282
- msgid "Return to welcome screen."
1283
- msgstr "Powróć do ekranu powitalnego"
1284
 
1285
- #: ../classes/upgrade.php:406
1286
- msgid "Upgrade Complete!"
1287
- msgstr "Aktualizacja zakończona"
1288
 
1289
- #: ../classes/upgrade.php:406
1290
- msgid "Return to settings."
1291
- msgstr "Przywróć do ustawień"
1292
 
1293
- #: ../classes/upgrade.php:407
1294
- msgid "Error"
1295
- msgstr "Błąd"
1296
 
1297
- #: ../classes/upgrade.php:408
1298
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1299
- msgstr "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym na forum pomocy."
1300
 
1301
- #: ../codepress-admin-columns.php:444
1302
- msgid "Edit columns"
1303
- msgstr "Edytuj kolumny"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Tobias Schutter <info@codepress.nl>, 2013
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
9
+ "PO-Revision-Date: 2015-10-12 13:09+0000\n"
10
+ "Last-Translator: Tobias Schutter <info@codepress.nl>\n"
11
+ "Language-Team: Polish (Poland) (http://www.transifex.com/codepress/admin-columns/language/pl_PL/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: pl_PL\n"
16
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+ "X-Poedit-SourceCharset: UTF-8\n"
22
+
23
+ #: ../codepress-admin-columns.php:451
24
+ msgid "Edit columns"
25
+ msgstr "Edytuj kolumny"
 
26
 
27
  #: ../classes/addons.php:110
28
  msgid "Plugins"
33
  msgstr ""
34
 
35
  #: ../classes/addons.php:136
36
+ msgid ""
37
+ "Display and edit Advanced Custom Fields fields in the posts overview in "
38
+ "seconds!"
39
  msgstr ""
40
 
41
  #: ../classes/addons.php:141
43
  msgstr ""
44
 
45
  #: ../classes/addons.php:142
46
+ msgid ""
47
+ "Enhance the products, orders and coupons overviews with new columns and "
48
+ "inline editing."
49
  msgstr ""
50
 
51
+ #: ../classes/column.php:624
52
  msgid "Thumbnail"
53
  msgstr "Miniatura"
54
 
55
+ #: ../classes/column.php:625
56
  msgid "Medium"
57
  msgstr "Średni"
58
 
59
+ #: ../classes/column.php:626
60
  msgid "Large"
61
  msgstr "Duży"
62
 
63
+ #: ../classes/column.php:627
64
  msgid "Full"
65
  msgstr "Pełny"
66
 
67
+ #: ../classes/column.php:1059
68
+ msgid "Exact match"
69
+ msgstr ""
70
+
71
+ #: ../classes/column.php:1060
72
+ msgid "Lesser than"
73
+ msgstr ""
74
+
75
+ #: ../classes/column.php:1061
76
+ msgid "Greater than"
77
+ msgstr ""
78
+
79
+ #: ../classes/column.php:1062
80
+ msgid "Between"
81
+ msgstr ""
82
+
83
+ #: ../classes/column.php:1089
84
  msgid "Date Format"
85
  msgstr "Format daty"
86
 
87
+ #: ../classes/column.php:1090
88
  msgid "This will determine how the date will be displayed."
89
  msgstr "Określi to sposób wyświetlania daty."
90
 
91
+ #: ../classes/column.php:1096
92
  msgid "Example:"
93
  msgstr "Przykład:"
94
 
95
+ #: ../classes/column.php:1098
96
+ msgid ""
97
+ "Leave empty for WordPress date format, change your <a href='%s'>default date"
98
+ " format here</a>."
99
+ msgstr ""
100
 
101
+ #: ../classes/column.php:1099
102
  msgid "Documentation on date and time formatting."
103
  msgstr "Dokumentacja dotycząca formatowania daty i godziny."
104
 
105
+ #: ../classes/column.php:1113
106
  msgid "Excerpt length"
107
  msgstr "Długość wypisu"
108
 
109
+ #: ../classes/column.php:1114
110
  msgid "Number of words"
111
  msgstr "Liczba słów"
112
 
113
+ #: ../classes/column.php:1132
114
  msgid "Preview size"
115
  msgstr "Wielkość podglądu"
116
 
117
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
118
  msgid "Custom"
119
  msgstr "Włąsne"
120
 
121
+ #: ../classes/column.php1152, ../classes/column.php:1328
122
  msgid "width"
123
  msgstr "szerokość"
124
 
125
+ #: ../classes/column.php:1155
126
  msgid "height"
127
  msgstr "wysokość"
128
 
129
+ #: ../classes/column.php:1167
130
  msgid "Before"
131
  msgstr "Przed"
132
 
133
+ #: ../classes/column.php:1167
134
  msgid "This text will appear before the custom field value."
135
  msgstr "Ten tekst pojawi się przed wartością własnego pola."
136
 
137
+ #: ../classes/column.php:1168
138
  msgid "After"
139
  msgstr "Po"
140
 
141
+ #: ../classes/column.php:1168
142
  msgid "This text will appear after the custom field value."
143
  msgstr "Ten tekst pojawi się po wartości własnego pola."
144
 
145
+ #: ../classes/column.php:1177
146
  msgid "Display Name"
147
  msgstr "Pseudonim"
148
 
149
+ #: ../classes/column.php1178, ../classes/settings.php:733
150
  msgid "First Name"
151
  msgstr "Imię"
152
 
153
+ #: ../classes/column.php:1179
154
  msgid "Last Name"
155
  msgstr "Nazwisko"
156
 
157
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
158
  msgid "Nickname"
159
  msgstr "Pseudonim"
160
 
161
+ #: ../classes/column.php:1181
162
  msgid "User Login"
163
  msgstr "Login użytkownika"
164
 
165
+ #: ../classes/column.php:1182
166
  msgid "User Email"
167
  msgstr "Email użytkownika"
168
 
169
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
170
  msgid "User ID"
171
  msgstr "ID użytkownika"
172
 
173
+ #: ../classes/column.php:1184
174
  msgid "First and Last Name"
175
  msgstr "Imię i nazwisko"
176
 
177
+ #: ../classes/column.php:1187
178
  msgid "Display format"
179
  msgstr ""
180
 
181
+ #: ../classes/column.php:1187
182
  msgid "This is the format of the author name."
183
  msgstr "To jest format autora"
184
 
185
+ #: ../classes/column.php:1350
186
  msgid "Edit"
187
  msgstr "Edytuj"
188
 
189
+ #: ../classes/column.php1352, ../classes/column.php:1444
190
  msgid "Clone"
191
  msgstr ""
192
 
193
+ #: ../classes/column.php:1354
194
  msgid "Remove"
195
  msgstr "Usuń"
196
 
197
+ #: ../classes/column.php1372, ../classes/column.php1372,
198
+ #: ../classes/column/custom-field.php408,
199
+ #: ../classes/column/comment/type.php:13
200
  msgid "Type"
201
  msgstr "Typ"
202
 
203
+ #: ../classes/column.php:1372
204
  msgid "Choose a column type."
205
  msgstr "Wybierz typ kolumny."
206
 
207
+ #: ../classes/column.php:1372
208
  msgid "Name"
209
  msgstr ""
210
 
211
+ #: ../classes/column.php:1382
212
  msgid "Label"
213
  msgstr "Etykieta"
214
 
215
+ #: ../classes/column.php:1382
216
  msgid "This is the name which will appear as the column header."
217
  msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
218
 
219
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
220
  msgid "Width"
221
  msgstr "Szerokość"
222
 
223
+ #: ../classes/column.php:1391
224
  msgid "default"
225
  msgstr "domyśłny"
226
 
227
+ #: ../classes/column.php:1392
228
  msgid "auto"
229
  msgstr ""
230
 
231
+ #: ../classes/column.php:1466
232
+ msgid "Property To Display"
233
  msgstr ""
234
 
235
+ #: ../classes/column.php:1472
236
+ msgid "Post property to display for related post(s)."
237
  msgstr ""
238
 
239
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
240
+ msgid "Link To"
 
241
  msgstr ""
242
 
243
+ #: ../classes/column.php:1489
244
+ msgid "Edit Post Author"
245
  msgstr ""
246
 
247
+ #: ../classes/column.php:1490
248
+ msgid "View Public Post Author Page"
249
  msgstr ""
250
 
251
+ #: ../classes/column.php:1492
252
+ msgid "Page the posts should link to."
253
+ msgstr ""
254
 
255
+ #: ../classes/review_notice.php55, ../classes/settings.php170,
256
+ #: ../classes/settings.php599, ../classes/upgrade.php:135
257
+ msgid "Admin Columns"
258
+ msgstr "Edytor kolumn"
259
+
260
+ #: ../classes/review_notice.php:58
261
+ msgid "Admin Columns Pro"
262
  msgstr ""
263
 
264
+ #: ../classes/review_notice.php:68
265
+ msgid "click here"
266
  msgstr ""
267
 
268
+ #: ../classes/review_notice.php:72
269
+ msgid "Leave a review!"
270
  msgstr ""
271
 
272
+ #: ../classes/review_notice.php:73
273
+ msgid "Permanently hide notice"
274
  msgstr ""
275
 
276
+ #: ../classes/review_notice.php:80
277
+ msgid ""
278
+ "We're sorry to hear that; maybe we can help! If you're having problems "
279
+ "properly setting up %s or if you would like help with some more advanced "
280
+ "features, please visit our %s."
281
+ msgstr ""
282
 
283
+ #: ../classes/review_notice.php:82
284
+ msgid "documentation page"
285
+ msgstr ""
286
 
287
+ #: ../classes/review_notice.php:86
288
+ msgid ""
289
+ "As an Admin Columns Pro user, you can also use your AdminColumns.com account"
290
+ " to access product support through %s!"
291
+ msgstr ""
292
 
293
+ #: ../classes/review_notice.php:87
294
+ msgid "our forums"
295
+ msgstr ""
296
 
297
+ #: ../classes/review_notice.php:91
298
+ msgid "You can also find help on the %s, and %s."
299
+ msgstr ""
300
 
301
+ #: ../classes/review_notice.php:92
302
+ msgid "Admin Columns forums on WordPress.org"
303
+ msgstr ""
304
 
305
+ #: ../classes/review_notice.php:93
306
+ msgid "find answers to some frequently asked questions"
307
  msgstr ""
308
 
309
+ #: ../classes/settings.php:113
310
+ msgid "Add-on successfully activated."
311
+ msgstr ""
312
 
313
+ #: ../classes/settings.php:116
314
+ msgid "Add-on successfully deactivated."
315
+ msgstr ""
316
 
317
+ #: ../classes/settings.php:170
318
+ msgid "Admin Columns Settings"
319
+ msgstr "Ustawienia edytora kolumn"
320
+
321
+ #: ../classes/settings.php:228
322
+ msgid "%s column is already present and can not be duplicated."
323
+ msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
324
 
325
+ #: ../classes/settings.php:284
326
+ msgid "Default settings succesfully restored."
327
+ msgstr "Domyślne ustawienia zostały przywrócone."
 
328
 
329
+ #: ../classes/settings.php:301
330
+ msgid "Overview"
331
+ msgstr "Przegląd"
332
 
333
+ #: ../classes/settings.php:304
334
+ msgid ""
335
+ "This plugin is for adding and removing additional columns to the "
336
+ "administration screens for post(types), pages, media library, comments, "
337
+ "links and users. Change the column's label and reorder them."
338
+ msgstr "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić nazwy kolumn i ich kolejność."
339
 
340
+ #: ../classes/settings.php:307
341
+ msgid "Basics"
342
+ msgstr "Podstawy"
343
 
344
+ #: ../classes/settings.php:309
345
+ msgid "Change order"
346
+ msgstr "Zmień kolejność"
347
 
348
+ #: ../classes/settings.php:310
349
+ msgid ""
350
+ "By dragging the columns you can change the order which they will appear in."
351
+ msgstr "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
352
+
353
+ #: ../classes/settings.php:311
354
+ msgid "Change label"
355
+ msgstr "Zmień etykietę"
356
 
357
+ #: ../classes/settings.php:312
358
+ msgid ""
359
+ "By clicking on the triangle you will see the column options. Here you can "
360
+ "change each label of the columns heading."
361
+ msgstr "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z nich."
362
+
363
+ #: ../classes/settings.php:313
364
+ msgid "Change column width"
365
+ msgstr "Zmień szerokość kolumn"
366
+
367
+ #: ../classes/settings.php:314
368
+ msgid ""
369
+ "By clicking on the triangle you will see the column options. By using the "
370
+ "draggable slider you can set the width of the columns in percentages."
371
+ msgstr "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w slajderze możesz ustawić w procentach szerokość kolumn."
372
+
373
+ #: ../classes/settings.php318, ../classes/storage_model.php641,
374
+ #: ../classes/column/custom-field.php23,
375
+ #: ../classes/column/custom-field.php:391
376
  msgid "Custom Field"
377
  msgstr "Własne pole"
378
 
379
+ #: ../classes/settings.php:320
380
+ msgid "'Custom Field' column"
381
+ msgstr "Kolumna 'Własne pole'"
382
+
383
+ #: ../classes/settings.php:321
384
+ msgid ""
385
+ "The custom field colum uses the custom fields from posts and users. There "
386
+ "are 10 types which you can set."
387
+ msgstr "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz wybrać 1 z 10 typów."
388
+
389
+ #: ../classes/settings.php323, ../classes/storage_model.php640,
390
+ #: ../classes/column/custom-field.php:95
391
  msgid "Default"
392
  msgstr "Domyślny"
393
 
394
+ #: ../classes/settings.php:323
395
+ msgid ""
396
+ "Value: Can be either a string or array. Arrays will be flattened and values "
397
+ "are seperated by a ',' comma."
398
+ msgstr "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a warości oddzielone przecinkami."
399
 
400
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101,
401
+ #: ../classes/column/link/image.php:19
402
+ msgid "Image"
403
+ msgstr "Obrazek"
404
 
405
+ #: ../classes/settings.php:324
406
+ msgid ""
407
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
408
+ "comma )."
409
+ msgstr "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone przecinkami)."
410
 
411
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
412
  msgid "Excerpt"
413
  msgstr "Wypis"
414
 
415
+ #: ../classes/settings.php:325
416
+ msgid "Value: This will show the first 20 words of the Post content."
417
+ msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
 
 
 
 
418
 
419
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
420
  msgid "Multiple Values"
421
  msgstr "Wielokrotne wartości"
422
 
423
+ #: ../classes/settings.php:326
424
+ msgid ""
425
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
426
+ "array."
427
+ msgstr "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
428
+
429
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
430
  msgid "Numeric"
431
  msgstr "Numeryczny"
432
 
433
+ #: ../classes/settings.php:327
434
+ msgid ""
435
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
436
+ "for sorting, so you can sort your posts on numeric (custom field) values."
437
+ msgstr "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych pól)."
438
 
439
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99,
440
+ #: ../classes/column/comment/date.php:19
441
+ msgid "Date"
442
+ msgstr "Data"
443
 
444
+ #: ../classes/settings.php:328
445
+ msgid ""
446
+ "Value: Can be unix time stamp or a date format as described in the <a "
447
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
448
+ "href='%s'>general settings</a> page."
449
+ msgstr "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a href='%s'>Ustawień głównych</a>."
450
 
451
+ #: ../classes/settings.php:329
452
+ msgid "Post Titles"
453
+ msgstr "Tytyły wpisu"
454
 
455
+ #: ../classes/settings.php:329
456
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
457
+ msgstr "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
458
 
459
+ #: ../classes/settings.php:330
460
+ msgid "Usernames"
461
+ msgstr "Nazwy użytkowników"
 
462
 
463
+ #: ../classes/settings.php:330
464
+ msgid "Value: can be one or more User ID's (seperated by ',')."
465
+ msgstr "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone przecinkami)."
466
 
467
+ #: ../classes/settings.php:331
468
+ msgid "Checkmark"
469
+ msgstr "Znak tak/nie"
470
 
471
+ #: ../classes/settings.php:331
472
+ msgid "Value: should be a 1 (one) or 0 (zero)."
473
+ msgstr "Wartość: Powinno to być 1 lub 0."
474
 
475
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
476
+ msgid "Color"
477
+ msgstr "Kolor"
478
 
479
+ #: ../classes/settings.php:332
480
+ msgid "Value: hex value color, such as #808080."
481
+ msgstr "Wartość: Kolor w HEX, np. #808080."
482
 
483
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
484
+ msgid "Counter"
485
+ msgstr ""
486
 
487
+ #: ../classes/settings.php:333
488
+ msgid ""
489
+ "Value: Can be either a string or array. This will display a count of the "
490
+ "number of times the meta key is used by the item."
491
+ msgstr ""
492
 
493
+ #: ../classes/settings.php:422
494
+ msgid "Welcome to Admin Columns"
495
+ msgstr "Witaj w Edytorze kolumn"
496
 
497
+ #: ../classes/settings.php:425
498
+ msgid "Thank you for updating to the latest version!"
499
+ msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
500
 
501
+ #: ../classes/settings.php:426
502
+ msgid ""
503
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
504
+ "like it."
505
+ msgstr "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy nadzięję że Ci się spodoba."
506
 
507
+ #: ../classes/settings.php:431
508
+ msgid "What’s New"
509
+ msgstr "Co nowego"
510
 
511
+ #: ../classes/settings.php:432
512
+ msgid "Changelog"
513
+ msgstr "Dziennik zmian"
514
 
515
+ #: ../classes/settings.php:437
516
+ msgid "Important"
517
+ msgstr "Ważne"
518
 
519
+ #: ../classes/settings.php:439
520
+ msgid "Database Changes"
521
+ msgstr "Zmiany w bazie danych"
522
 
523
+ #: ../classes/settings.php:440
524
+ msgid ""
525
+ "The database has been changed between versions 1 and 2. But we made sure you"
526
+ " can still roll back to version 1x without any issues."
527
+ msgstr "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do wersji 1 bez żadnych problemów."
528
 
529
+ #: ../classes/settings.php:443
530
+ msgid "Make sure you backup your database and then click"
531
+ msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
532
 
533
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
534
+ msgid "Upgrade Database"
535
+ msgstr "Aktualizuj bazę danych"
536
 
537
+ #: ../classes/settings.php:446
538
+ msgid "Potential Issues"
539
+ msgstr "Potencjalne problemy"
540
 
541
+ #: ../classes/settings.php:447
542
+ msgid ""
543
+ "Do to the sizable refactoring the code, surounding Addons and "
544
+ "action/filters, your website may not operate correctly. It is important that"
545
+ " you read the full"
546
+ msgstr "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać pełną"
547
 
548
+ #: ../classes/settings.php:447
549
+ msgid "Migrating from v1 to v2"
550
+ msgstr "Migracja z wersji 1 do 2"
551
 
552
+ #: ../classes/settings.php:447
553
+ msgid "guide to view the full list of changes."
554
+ msgstr "dokumentację i zapoznać się z listą zmian."
555
 
556
+ #: ../classes/settings.php:447
557
+ msgid ""
558
+ "When you have found a bug please <a href='%s'>report them to us</a> so we "
559
+ "can fix it in the next release."
560
+ msgstr ""
561
 
562
+ #: ../classes/settings.php:450
563
+ msgid "Important!"
564
+ msgstr "Ważne!"
565
 
566
+ #: ../classes/settings.php:450
567
+ msgid ""
568
+ "If you updated the Admin Columns plugin without prior knowledge of such "
569
+ "changes, Please roll back to the latest"
570
+ msgstr "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz powrócić do poprzedniej"
571
 
572
+ #: ../classes/settings.php:450
573
+ msgid "version 1"
574
+ msgstr "wersja 1"
575
 
576
+ #: ../classes/settings.php:450
577
+ msgid "of this plugin."
578
+ msgstr "tej wtyczki."
579
 
580
+ #: ../classes/settings.php:456
581
+ msgid "Changelog for"
582
+ msgstr "Dziennik zmian dla"
583
 
584
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
585
+ msgid "Learn more"
586
+ msgstr "Dowiedz się więcej"
587
 
588
+ #: ../classes/settings.php:481
589
+ msgid "Start using Admin Columns"
590
+ msgstr "Zacznij korzystać z Edytora kolumn"
591
 
592
+ #: ../classes/settings.php:500
593
+ msgid "General Settings"
594
+ msgstr "Ustawienia ogólne"
595
 
596
+ #: ../classes/settings.php:501
597
+ msgid "Customize your Admin Columns settings."
598
+ msgstr "Zmodyfikuj ustawienia Edytora kolumn."
599
+
600
+ #: ../classes/settings.php:512
601
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
602
  msgstr ""
603
 
604
+ #: ../classes/settings.php:559
605
+ msgid "Restore Settings"
606
+ msgstr "Przywróć ustawienia"
607
 
608
+ #: ../classes/settings.php:560
609
+ msgid "This will delete all column settings and restore the default settings."
610
+ msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
611
 
612
+ #: ../classes/settings.php:566
613
+ msgid "Restore default settings"
614
+ msgstr "Przywróć ustawienia domyślne"
615
 
616
+ #: ../classes/settings.php:566
617
+ msgid ""
618
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
619
+ "undone. 'OK' to delete, 'Cancel' to stop"
620
  msgstr ""
621
 
622
+ #: ../classes/settings.php:582
623
+ msgid "Posttypes"
624
+ msgstr ""
625
 
626
+ #: ../classes/settings.php:583
627
+ msgid "Others"
628
+ msgstr ""
629
 
630
+ #: ../classes/settings.php:584
631
+ msgid "Taxonomies"
632
+ msgstr ""
633
 
634
+ #: ../classes/settings.php:600
635
+ msgid "Settings"
636
+ msgstr "Ustawienia"
637
 
638
+ #: ../classes/settings.php:601
639
+ msgid "Add-ons"
640
+ msgstr ""
641
 
642
+ #: ../classes/settings.php:669
643
+ msgid ""
644
+ "The columns for %s are set up via PHP and can therefore not be edited in the"
645
+ " admin panel."
646
+ msgstr ""
647
 
648
+ #: ../classes/settings.php:679
649
+ msgid "Store settings"
650
+ msgstr "Zapisz ustawienia"
651
 
652
+ #: ../classes/settings.php:687
653
+ msgid ""
654
+ "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to"
655
+ " delete, 'Cancel' to stop"
656
+ msgstr ""
657
 
658
+ #: ../classes/settings.php:688
659
+ msgid "Restore"
660
+ msgstr "Przywróć"
661
 
662
+ #: ../classes/settings.php:688
663
+ msgid "columns"
664
+ msgstr "kolumny"
665
 
666
+ #: ../classes/settings.php:707
667
+ msgid "Get Admin Columns Pro"
668
  msgstr ""
669
 
670
+ #: ../classes/settings.php:711
671
+ msgid "Add Sorting"
672
+ msgstr "Dodaj sortowanie"
673
 
674
+ #: ../classes/settings.php:712
675
+ msgid "Add Filtering"
676
+ msgstr "Dodaj filtrowanie"
 
 
 
677
 
678
+ #: ../classes/settings.php:713
679
+ msgid "Add Import/Export"
680
+ msgstr "Dodaj Import/Export"
 
 
 
681
 
682
+ #: ../classes/settings.php:714
683
+ msgid "Add Direct Editing"
684
  msgstr ""
685
 
686
+ #: ../classes/settings.php:717
687
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
688
  msgstr ""
689
 
690
+ #: ../classes/settings.php:730
691
+ msgid "Subscribe to receive news &amp; updates below."
 
 
 
 
 
 
 
 
692
  msgstr ""
693
 
694
+ #: ../classes/settings.php:737
695
+ msgid "Your Email"
696
+ msgstr ""
697
 
698
+ #: ../classes/settings.php:748
699
+ msgid "Are you happy with Admin Columns?"
700
+ msgstr ""
701
 
702
+ #: ../classes/settings.php:756
703
+ msgid "What's wrong? Need help? Let us know!"
704
+ msgstr ""
705
 
706
+ #: ../classes/settings.php:757
707
+ msgid ""
708
+ "Check out our extensive documentation, or you can open a support topic on "
709
+ "WordPress.org!"
710
+ msgstr ""
711
 
712
+ #: ../classes/settings.php:765
713
+ msgid "Docs"
714
  msgstr ""
715
 
716
+ #: ../classes/settings.php:770
717
+ msgid "Forums"
718
  msgstr ""
719
 
720
+ #: ../classes/settings.php:779
721
+ msgid "Woohoo! We're glad to hear that!"
722
  msgstr ""
723
 
724
+ #: ../classes/settings.php:780
725
+ msgid ""
726
+ "We would really love it if you could show your appreciation by giving us a "
727
+ "rating on WordPress.org or tweet about Admin Columns!"
728
  msgstr ""
729
 
730
+ #: ../classes/settings.php:784
731
+ msgid "Rate"
732
+ msgstr ""
733
 
734
+ #: ../classes/settings.php:795
735
+ msgid "Tweet"
736
+ msgstr ""
737
 
738
+ #: ../classes/settings.php:805
739
+ msgid "Buy Pro"
740
  msgstr ""
741
 
742
+ #: ../classes/settings.php:817
743
+ msgid "Support"
744
+ msgstr "Pomocy"
745
 
746
+ #: ../classes/settings.php:820
747
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
748
+ msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
749
 
750
+ #: ../classes/settings.php:823
751
+ msgid ""
752
+ "For full documentation, bug reports, feature suggestions and other tips <a "
753
+ "href='%s'>visit the Admin Columns website</a>"
754
+ 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>"
755
 
756
+ #: ../classes/settings.php:852
757
+ msgid "Drag and drop to reorder"
758
+ msgstr "Przeciągnij i opuść aby zmienić kolejność"
759
 
760
+ #: ../classes/settings.php:855
761
+ msgid "Add Column"
762
+ msgstr "Dodaj kolumnę"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
763
 
764
+ #: ../classes/settings.php:936
765
+ msgid "Active"
766
  msgstr ""
767
 
768
+ #: ../classes/settings.php:937
769
+ msgid "Deactivate"
 
 
 
 
770
  msgstr ""
771
 
772
+ #: ../classes/settings.php:944
773
+ msgid "Installed"
774
  msgstr ""
775
 
776
+ #: ../classes/settings.php:945
777
+ msgid "Activate"
778
  msgstr ""
779
 
780
+ #: ../classes/settings.php:959
781
+ msgid "Download & Install"
 
 
 
 
782
  msgstr ""
783
 
784
+ #: ../classes/settings.php:964
785
+ msgid "Get this add-on"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
786
  msgstr ""
787
 
788
+ #: ../classes/storage_model.php:262
789
+ msgid "settings succesfully restored."
790
+ msgstr "ustawienia zostały przywrócone."
 
 
 
 
791
 
792
+ #: ../classes/storage_model.php:278
793
+ msgid "No columns settings available."
794
+ msgstr "Brak dostępnych ustawień kolumn."
795
 
796
+ #: ../classes/storage_model.php:299
797
+ msgid "You are trying to store the same settings for %s."
798
+ msgstr "Próbujesz przywrócić te same ustawienia dla %s."
 
 
 
799
 
800
+ #: ../classes/storage_model.php:303
801
+ msgid "Settings for %s updated successfully."
802
  msgstr ""
803
 
804
+ #: ../classes/storage_model.php:643
805
+ msgid "Columns by Plugins"
806
  msgstr ""
807
 
808
+ #: ../classes/storage_model.php:862
809
+ msgid "View"
810
+ msgstr "Zobacz"
811
 
812
+ #: ../classes/upgrade.php:62
813
+ msgid ""
814
+ "The pro add-on is no longer supported. Please login to your account and "
815
+ "download Admin Columns Pro"
816
  msgstr ""
817
 
818
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
819
+ msgid "Upgrade"
820
+ msgstr "Aktualizuj"
821
 
822
+ #: ../classes/upgrade.php:136
823
+ msgid "requires a database upgrade"
824
+ msgstr "wymaga aktualizacji bazy danych"
 
825
 
826
+ #: ../classes/upgrade.php:139
827
+ msgid "why?"
828
+ msgstr "dlaczego?"
829
 
830
+ #: ../classes/upgrade.php:140
831
+ msgid "Please"
832
+ msgstr "Proszę"
 
833
 
834
+ #: ../classes/upgrade.php:141
835
+ msgid "backup your database"
836
+ msgstr "zrobić kopię zapasową bazy danych"
837
 
838
+ #: ../classes/upgrade.php:142
839
+ msgid "then click"
840
+ msgstr "a następnie kliknąć"
841
 
842
+ #: ../classes/upgrade.php:351
843
+ msgid "Migrating Column Settings"
844
+ msgstr "Migracja ustawień kolumn"
845
 
846
+ #: ../classes/upgrade.php:387
847
+ msgid "No Upgrade Required"
848
+ msgstr "Aktualizacja nie jest wymagana"
849
 
850
+ #: ../classes/upgrade.php:388
851
+ msgid "Return to welcome screen."
852
+ msgstr "Powróć do ekranu powitalnego"
853
 
854
+ #: ../classes/upgrade.php:406
855
+ msgid "Upgrade Complete!"
856
+ msgstr "Aktualizacja zakończona"
 
857
 
858
+ #: ../classes/upgrade.php:406
859
+ msgid "Return to settings."
860
+ msgstr "Przywróć do ustawień"
861
 
862
+ #: ../classes/upgrade.php:407
863
+ msgid "Error"
864
+ msgstr "Błąd"
865
 
866
+ #: ../classes/upgrade.php:408
867
  msgid ""
868
+ "Sorry. Something went wrong during the upgrade process. Please report this "
869
+ "on the support forum."
870
+ msgstr "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym na forum pomocy."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
871
 
872
+ #: ../classes/column/acf-placeholder.php:19
873
+ msgid "ACF Field"
874
+ msgstr ""
875
 
876
+ #: ../classes/column/acf-placeholder.php:35
877
+ msgid ""
878
+ "If you have a developer licence please download & install your ACF add-on "
879
+ "from the <a href='%s'>add-ons tab</a>."
880
+ msgstr ""
881
 
882
+ #: ../classes/column/acf-placeholder.php:38
883
+ msgid ""
884
+ "Admin Columns Pro - Developer offers full Advanced Custom Fields "
885
+ "integeration, allowing you to easily display and edit ACF fields from within"
886
+ " your posts overview."
887
+ msgstr ""
888
 
889
+ #: ../classes/column/acf-placeholder.php:44
890
+ msgid "Find out more"
891
+ msgstr ""
 
892
 
893
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
894
+ msgid "Actions"
895
+ msgstr "Działania"
896
 
897
+ #: ../classes/column/actions.php:96
898
+ msgid "Use icons?"
899
+ msgstr ""
900
 
901
+ #: ../classes/column/actions.php:96
902
+ msgid "Use icons instead of text for displaying the actions."
903
+ msgstr ""
904
 
905
+ #: ../classes/column/custom-field.php:96
906
+ msgid "Checkmark (true/false)"
907
+ msgstr "Znak (prawda/fałsz)"
908
 
909
+ #: ../classes/column/custom-field.php:102
910
+ msgid "Media Library"
911
+ msgstr "Biblioteka mediów"
912
 
913
+ #: ../classes/column/custom-field.php:105
914
+ msgid "Post Title (Post ID's)"
915
+ msgstr "Tytył wpisu (ID wpisu)"
916
 
917
+ #: ../classes/column/custom-field.php:106
918
+ msgid "Username (User ID's)"
919
+ msgstr "Użytkownik (ID użytkownika)"
920
 
921
+ #: ../classes/column/custom-field.php:107
922
+ msgid "Term Name (Term ID's)"
923
  msgstr ""
924
 
925
+ #: ../classes/column/custom-field.php:391
926
+ msgid "Select your custom field."
927
+ msgstr "Wybierz własne pole."
 
 
 
 
 
 
 
 
928
 
929
+ #: ../classes/column/custom-field.php:401
930
+ msgid "No custom fields available."
931
+ msgstr "Brak dostępnych własnych pól."
932
 
933
+ #: ../classes/column/custom-field.php:401
934
+ msgid "Please create a %s item first."
935
+ msgstr ""
936
 
937
+ #: ../classes/column/custom-field.php:408
938
+ msgid "Field Type"
939
+ msgstr "Rodzaj pola"
940
 
941
+ #: ../classes/column/custom-field.php:408
942
+ msgid "This will determine how the value will be displayed."
943
+ msgstr "Określi to sposób wyświetlania wartości."
944
 
945
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
946
+ msgid "Taxonomy"
947
+ msgstr "Taksonomia"
948
 
949
+ #: ../classes/column/used-by-menu.php:20
950
+ msgid "Used by Menu"
951
+ msgstr ""
952
 
953
+ #: ../classes/column/used-by-menu.php:133
954
+ msgid "Link to menu"
955
+ msgstr ""
956
 
957
+ #: ../classes/column/used-by-menu.php:133
958
+ msgid "This will make the title link to the menu."
959
+ msgstr ""
960
 
961
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19,
962
+ #: ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
963
+ msgid "ID"
964
+ msgstr "ID"
965
 
966
+ #: ../classes/column/comment/agent.php:19
967
+ msgid "Agent"
968
+ msgstr "Przeglądarka"
969
 
970
+ #: ../classes/column/comment/approved.php19,
971
+ #: ../classes/column/post/comment-count.php:35
972
+ msgid "Approved"
973
+ msgstr "Zatwierdzony"
974
 
975
+ #: ../classes/column/comment/author-avatar.php:19
976
+ msgid "Avatar"
977
+ msgstr "Avatar"
 
978
 
979
+ #: ../classes/column/comment/author-email.php:19
980
+ msgid "Author email"
981
+ msgstr "Email Autora"
982
 
983
+ #: ../classes/column/comment/author-ip.php:19
984
+ msgid "Author IP"
985
+ msgstr "IP Autora"
986
 
987
+ #: ../classes/column/comment/author-name.php:12
988
+ msgid "Author name"
989
+ msgstr ""
990
 
991
+ #: ../classes/column/comment/author-url.php:19
992
+ msgid "Author url"
993
+ msgstr "URL Autora"
994
 
995
+ #: ../classes/column/comment/author.php:19
996
+ msgid "Author"
997
+ msgstr "Autor"
998
 
999
+ #: ../classes/column/comment/date-gmt.php:19
1000
+ msgid "Date GMT"
1001
+ msgstr "Data GMT"
1002
 
1003
+ #: ../classes/column/comment/excerpt.php19,
1004
+ #: ../classes/column/post/content.php:19
1005
+ msgid "Content"
1006
+ msgstr ""
1007
 
1008
+ #: ../classes/column/comment/post.php:19
1009
+ msgid "Post"
1010
+ msgstr ""
1011
 
1012
+ #: ../classes/column/comment/reply-to.php:19
1013
+ msgid "In Reply To"
1014
+ msgstr "W odpowiedzi na"
1015
 
1016
+ #: ../classes/column/comment/user.php:11
1017
+ msgid "User"
1018
  msgstr ""
1019
 
1020
+ #: ../classes/column/comment/word-count.php19,
1021
+ #: ../classes/column/post/word-count.php:19
1022
+ msgid "Word count"
1023
+ msgstr "Liczba słów"
1024
 
1025
+ #: ../classes/column/media/alternate-text.php:19
1026
+ msgid "Alt"
1027
+ msgstr "Tekst alternatywny"
1028
 
1029
+ #: ../classes/column/media/attached-to.php:19
1030
+ msgid "Attached to post"
1031
+ msgstr ""
1032
 
1033
+ #: ../classes/column/media/available-sizes.php:20
1034
+ msgid "Available Sizes"
1035
+ msgstr "Dostępne rozmiary"
1036
 
1037
+ #: ../classes/column/media/available-sizes.php:40
1038
+ msgid "full size"
1039
+ msgstr "pełny rozmiar"
1040
 
1041
+ #: ../classes/column/media/caption.php19,
1042
+ #: ../classes/column/media/exif-data.php:41
1043
+ msgid "Caption"
1044
+ msgstr "Tytuł"
1045
 
1046
+ #: ../classes/column/media/description.php19,
1047
+ #: ../classes/column/link/description.php19,
1048
+ #: ../classes/column/user/description.php:19
1049
+ msgid "Description"
1050
+ msgstr "Opis"
1051
 
1052
+ #: ../classes/column/media/dimensions.php:19
1053
+ msgid "Dimensions"
1054
+ msgstr "Wymiary"
1055
 
1056
+ #: ../classes/column/media/exif-data.php:19
1057
+ msgid "EXIF data"
1058
+ msgstr "Dane EXIF"
1059
 
1060
+ #: ../classes/column/media/exif-data.php:38
1061
+ msgid "Aperture"
1062
+ msgstr "Przysłona"
1063
 
1064
+ #: ../classes/column/media/exif-data.php:39
1065
+ msgid "Credit"
1066
+ msgstr "Autor"
 
1067
 
1068
+ #: ../classes/column/media/exif-data.php:40
1069
+ msgid "Camera"
1070
+ msgstr "Aparat"
1071
 
1072
+ #: ../classes/column/media/exif-data.php:42
1073
+ msgid "Timestamp"
1074
+ msgstr "Data"
1075
 
1076
+ #: ../classes/column/media/exif-data.php:43
1077
+ msgid "Copyright EXIF"
1078
+ msgstr "Prawa autorskie EXIF"
 
1079
 
1080
+ #: ../classes/column/media/exif-data.php:44
1081
+ msgid "Focal Length"
1082
+ msgstr "Ogniskowa"
1083
 
1084
+ #: ../classes/column/media/exif-data.php:45
1085
+ msgid "ISO"
1086
+ msgstr "ISO"
1087
 
1088
+ #: ../classes/column/media/exif-data.php:46
1089
+ msgid "Shutter Speed"
1090
+ msgstr "Szybkość migawki"
1091
 
1092
+ #: ../classes/column/media/exif-data.php:47
1093
+ msgid "Title"
1094
+ msgstr "Tytuł"
1095
 
1096
+ #: ../classes/column/media/file-name.php:19
1097
+ msgid "File name"
1098
+ msgstr "Nazwa pliku"
1099
 
1100
+ #: ../classes/column/media/file-size.php:19
1101
+ msgid "File size"
1102
+ msgstr "Wielkość pliku"
1103
 
1104
+ #: ../classes/column/media/full-path.php19,
1105
+ #: ../classes/column/media/full-path.php:92
1106
+ msgid "Full path"
1107
+ msgstr "Pełna ścieżka"
1108
 
1109
+ #: ../classes/column/media/full-path.php:83
1110
+ msgid "Path scope"
 
1111
  msgstr ""
1112
 
1113
+ #: ../classes/column/media/full-path.php:84
1114
+ msgid "Part of the file path to display"
1115
  msgstr ""
1116
 
1117
+ #: ../classes/column/media/full-path.php:97
1118
+ msgid "Relative to domain"
1119
  msgstr ""
1120
 
1121
+ #: ../classes/column/media/full-path.php:102
1122
+ msgid "Relative to main uploads folder "
1123
  msgstr ""
1124
 
1125
+ #: ../classes/column/media/height.php:19
1126
+ msgid "Height"
1127
+ msgstr "Wysokość"
1128
 
1129
+ #: ../classes/column/media/mime-type.php:19
1130
+ msgid "Mime type"
1131
+ msgstr "Typ pliku"
1132
 
1133
+ #: ../classes/column/post/attachment-count.php:19
1134
+ msgid "No. of Attachments"
1135
+ msgstr "Liczba załączników"
1136
 
1137
+ #: ../classes/column/post/attachment.php:19
1138
+ msgid "Attachments"
1139
  msgstr ""
1140
 
1141
+ #: ../classes/column/post/author-name.php:20
1142
+ msgid "Display Author As"
1143
+ msgstr "Wyświetla autora jako"
1144
 
1145
+ #: ../classes/column/post/author-name.php:100
1146
+ msgid "View Public Author Page"
1147
  msgstr ""
1148
 
1149
+ #: ../classes/column/post/author-name.php:102
1150
+ msgid "Page the author name should link to."
1151
  msgstr ""
1152
 
1153
+ #: ../classes/column/post/before-moretag.php:19
1154
+ msgid "Before More Tag"
1155
+ msgstr "Przed tagiem Czytaj dalej"
1156
 
1157
+ #: ../classes/column/post/comment-count.php:20
1158
+ msgid "Comment count"
1159
+ msgstr "Liczba komentarzy"
1160
 
1161
+ #: ../classes/column/post/comment-count.php:34
1162
+ msgid "Total"
1163
+ msgstr "Ogółem"
 
1164
 
1165
+ #: ../classes/column/post/comment-count.php:36
1166
+ msgid "Pending"
1167
+ msgstr "Oczekujący"
1168
 
1169
+ #: ../classes/column/post/comment-count.php:37
1170
+ msgid "Spam"
1171
+ msgstr "Spam"
1172
 
1173
+ #: ../classes/column/post/comment-count.php:38
1174
+ msgid "Trash"
1175
+ msgstr "Kosz"
1176
 
1177
+ #: ../classes/column/post/comment-count.php99,
1178
+ #: ../classes/column/post/comment-status.php:20
1179
+ msgid "Comment status"
1180
+ msgstr "Status komentarza"
1181
 
1182
+ #: ../classes/column/post/comment-count.php:99
1183
+ msgid "Select which comment status you like to display."
1184
+ msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
1185
+
1186
+ #: ../classes/column/post/depth.php:19
1187
+ msgid "Depth"
1188
  msgstr ""
1189
 
1190
+ #: ../classes/column/post/estimated-reading-time.php:19
1191
+ msgid "Estimated Reading Time"
1192
  msgstr ""
1193
 
1194
+ #: ../classes/column/post/estimated-reading-time.php:66
1195
+ msgid "second"
1196
+ msgid_plural "seconds"
1197
+ msgstr[0] ""
1198
+ msgstr[1] ""
1199
+ msgstr[2] ""
1200
+
1201
+ #: ../classes/column/post/estimated-reading-time.php:69
1202
+ msgid "minute"
1203
+ msgid_plural "minutes"
1204
+ msgstr[0] ""
1205
+ msgstr[1] ""
1206
+ msgstr[2] ""
1207
+
1208
+ #: ../classes/column/post/estimated-reading-time.php:107
1209
+ msgid "Words per minute"
1210
  msgstr ""
1211
 
1212
+ #: ../classes/column/post/estimated-reading-time.php:108
1213
+ msgid "Estimated reading time in words per minute"
1214
  msgstr ""
1215
 
1216
+ #: ../classes/column/post/featured-image.php:19
1217
+ msgid "Featured Image"
1218
+ msgstr "Ikona wpisu"
1219
 
1220
+ #: ../classes/column/post/formats.php:19
1221
+ msgid "Post Format"
1222
+ msgstr "Format wpisu"
1223
 
1224
+ #: ../classes/column/post/last-modified-author.php:20
1225
+ msgid "Last Modified Author"
1226
+ msgstr ""
 
1227
 
1228
+ #: ../classes/column/post/modified.php:19
1229
+ msgid "Last modified"
1230
+ msgstr "Ostatnia modyfikacja"
1231
+
1232
+ #: ../classes/column/post/order.php:19
1233
+ msgid "Order"
1234
  msgstr ""
1235
 
1236
+ #: ../classes/column/post/page-template.php:19
1237
+ msgid "Page Template"
1238
+ msgstr "Szablon strony"
1239
 
1240
+ #: ../classes/column/post/parent.php:19
1241
+ msgid "Parent"
1242
+ msgstr "Rodzic"
1243
 
1244
+ #: ../classes/column/post/path.php:19
1245
+ msgid "Path"
1246
  msgstr ""
1247
 
1248
+ #: ../classes/column/post/permalink.php:19
1249
+ msgid "Permalink"
1250
+ msgstr ""
1251
 
1252
+ #: ../classes/column/post/permalink.php:68
1253
+ msgid "Link to post"
1254
  msgstr ""
1255
 
1256
+ #: ../classes/column/post/permalink.php:68
1257
+ msgid "This will make the permalink clickable."
1258
  msgstr ""
1259
 
1260
+ #: ../classes/column/post/ping-status.php:19
1261
+ msgid "Ping status"
1262
+ msgstr "Status ping"
1263
 
1264
+ #: ../classes/column/post/roles.php:19
1265
+ msgid "Roles"
1266
+ msgstr "Role"
1267
+
1268
+ #: ../classes/column/post/shortcodes.php:19
1269
+ msgid "Shortcodes"
1270
  msgstr ""
1271
 
1272
+ #: ../classes/column/post/slug.php:19
1273
+ msgid "Slug"
1274
+ msgstr "Bezpośredni odnośnik"
1275
 
1276
+ #: ../classes/column/post/status.php:21
1277
+ msgid "Status"
1278
+ msgstr "Status"
1279
 
1280
+ #: ../classes/column/post/sticky.php:19
1281
+ msgid "Sticky"
1282
+ msgstr "Przyklejone"
1283
 
1284
+ #: ../classes/column/post/title-raw.php:19
1285
+ msgid "Title without actions"
1286
+ msgstr ""
1287
 
1288
+ #: ../classes/column/link/length.php:19
1289
+ msgid "Length"
1290
+ msgstr "Długość"
1291
 
1292
+ #: ../classes/column/link/notes.php:19
1293
+ msgid "Notes"
1294
+ msgstr "Notatki"
1295
 
1296
+ #: ../classes/column/link/owner.php:19
1297
+ msgid "Owner"
1298
+ msgstr "Właściciel"
1299
 
1300
+ #: ../classes/column/link/rss.php:19
1301
+ msgid "Rss"
1302
+ msgstr "Rss"
1303
 
1304
+ #: ../classes/column/link/target.php:19
1305
+ msgid "Target"
1306
+ msgstr "Cel"
1307
 
1308
+ #: ../classes/column/user/display-name.php:19
1309
+ msgid "Display name"
1310
+ msgstr ""
1311
 
1312
+ #: ../classes/column/user/first-name.php:19
1313
+ msgid "First name"
1314
+ msgstr "Imię"
1315
 
1316
+ #: ../classes/column/user/last-name.php:19
1317
+ msgid "Last name"
1318
+ msgstr "Nazwisko"
1319
 
1320
+ #: ../classes/column/user/post-count.php:19
1321
+ msgid "Post Count"
1322
+ msgstr "Liczba wpisów"
1323
 
1324
+ #: ../classes/column/user/post-count.php:89
1325
+ msgid "Post Type"
1326
+ msgstr "Typ wpisu"
1327
+
1328
+ #: ../classes/column/user/registered.php:19
1329
+ msgid "Registered"
1330
+ msgstr "Zarejestrowany"
1331
+
1332
+ #: ../classes/column/user/rich-editing.php:19
1333
+ msgid "Visual Editor"
1334
+ msgstr ""
1335
+
1336
+ #: ../classes/column/user/url.php:19
1337
+ msgid "Url"
1338
+ msgstr "Adres URL"
languages/codepress-admin-columns-pt_BR.mo ADDED
Binary file
languages/{cpac-pt_BR.po → codepress-admin-columns-pt_BR.po} RENAMED
@@ -1,4 +1,5 @@
1
- #
 
2
  # Translators:
3
  # Adriano Estevam <aestevam@gmail.com>, 2013
4
  # André Mácola Machado <andremacola@gmail.com>, 2014
@@ -6,28 +7,26 @@
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
11
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
12
  "Last-Translator: Codepress <info@codepress.nl>\n"
13
- "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/admin-columns/language/pt_BR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: pt_BR\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "X-Generator: Poedit 1.8.1\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
23
  "X-Poedit-SearchPath-0: .\n"
24
- "X-Poedit-SearchPath-1: ..\n"
25
- "X-Poedit-SearchPathExcluded-0: ../src\n"
26
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
30
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
31
 
32
  #: ../classes/addons.php:110
33
  msgid "Plugins"
@@ -49,1253 +48,1210 @@ msgstr "WooCommerce"
49
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
50
  msgstr "Melhorar a visão geral dos produtos, encomendas e cupons com novas colunas e edição imediata."
51
 
52
- #: ../classes/column.php:597
53
  msgid "Thumbnail"
54
  msgstr "Miniatura"
55
 
56
- #: ../classes/column.php:598
57
  msgid "Medium"
58
  msgstr "Médio"
59
 
60
- #: ../classes/column.php:599
61
  msgid "Large"
62
  msgstr "Grande"
63
 
64
- #: ../classes/column.php:600
65
  msgid "Full"
66
  msgstr "Original"
67
 
68
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  msgid "Date Format"
70
  msgstr "Formato de Data"
71
 
72
- #: ../classes/column.php:1042
73
  msgid "This will determine how the date will be displayed."
74
  msgstr "Determina como a data será mostrada"
75
 
76
- #: ../classes/column.php:1048
77
  msgid "Example:"
78
  msgstr "Exemplo"
79
 
80
- #: ../classes/column.php:1050
81
- #, php-format
82
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
83
- msgstr "Deixe em branco para o formato padrão do Wordpress, mude o <a href=\"%s\">formato padrão data aqui</a>."
84
 
85
- #: ../classes/column.php:1051
86
  msgid "Documentation on date and time formatting."
87
  msgstr "Documentação para formatos de data e hora"
88
 
89
- #: ../classes/column.php:1065
90
  msgid "Excerpt length"
91
  msgstr "Tamanho do Resumo"
92
 
93
- #: ../classes/column.php:1066
94
  msgid "Number of words"
95
  msgstr "Número de Palavras"
96
 
97
- #: ../classes/column.php:1084
98
  msgid "Preview size"
99
  msgstr "Tamanho do preview"
100
 
101
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
102
  msgid "Custom"
103
  msgstr "Personalizado"
104
 
105
- #: ../classes/column.php:1104 ../classes/column.php:1251
106
  msgid "width"
107
  msgstr "largura"
108
 
109
- #: ../classes/column.php:1107
110
  msgid "height"
111
  msgstr "altura"
112
 
113
- #: ../classes/column.php:1119
114
  msgid "Before"
115
  msgstr "Antes"
116
 
117
- #: ../classes/column.php:1119
118
  msgid "This text will appear before the custom field value."
119
  msgstr "Este texto aparecerá antes do valor do campo personalizado."
120
 
121
- #: ../classes/column.php:1120
122
  msgid "After"
123
  msgstr "Depois"
124
 
125
- #: ../classes/column.php:1120
126
  msgid "This text will appear after the custom field value."
127
  msgstr "Este texto aparecerá depois do valor do campo personalizado."
128
 
129
- #: ../classes/column.php:1129
130
  msgid "Display Name"
131
  msgstr "Exibir Nome"
132
 
133
- #: ../classes/column.php:1130
134
  msgid "First Name"
135
  msgstr "Primeiro Nome"
136
 
137
- #: ../classes/column.php:1131
138
  msgid "Last Name"
139
  msgstr "Sobrenome"
140
 
141
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
142
  msgid "Nickname"
143
  msgstr "Apelido"
144
 
145
- #: ../classes/column.php:1133
146
  msgid "User Login"
147
  msgstr "Nome de Usuário"
148
 
149
- #: ../classes/column.php:1134
150
  msgid "User Email"
151
  msgstr "Email do Usuário"
152
 
153
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
154
  msgid "User ID"
155
  msgstr "ID do Usuário"
156
 
157
- #: ../classes/column.php:1136
158
  msgid "First and Last Name"
159
  msgstr "Nome e Sobrenome"
160
 
161
- #: ../classes/column.php:1139
162
  msgid "Display format"
163
  msgstr "Formato de exibição"
164
 
165
- #: ../classes/column.php:1139
166
  msgid "This is the format of the author name."
167
  msgstr "Este é o formato do nome do autor."
168
 
169
- #: ../classes/column.php:1273
170
  msgid "Edit"
171
  msgstr "Editar"
172
 
173
- #: ../classes/column.php:1275 ../classes/column.php:1367
174
  msgid "Clone"
175
  msgstr "Clone"
176
 
177
- #: ../classes/column.php:1277 ../classes/column.php:1369
178
  msgid "Remove"
179
  msgstr "Remover"
180
 
181
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
182
  msgid "Type"
183
  msgstr "Tipo"
184
 
185
- #: ../classes/column.php:1295
186
  msgid "Choose a column type."
187
  msgstr "Escolha um tipo."
188
 
189
- #: ../classes/column.php:1295
190
  msgid "Name"
191
  msgstr "Nome"
192
 
193
- #: ../classes/column.php:1305
194
  msgid "Label"
195
  msgstr "Titulo"
196
 
197
- #: ../classes/column.php:1305
198
  msgid "This is the name which will appear as the column header."
199
  msgstr "Nome que aparecerá no cabeçalho da coluna."
200
 
201
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
202
  msgid "Width"
203
  msgstr "Width"
204
 
205
- #: ../classes/column.php:1314
206
  msgid "default"
207
  msgstr "padrão"
208
 
209
- #: ../classes/column.php:1315
210
  msgid "auto"
211
  msgstr "auto"
212
 
213
- #: ../classes/column/acf-placeholder.php:19
214
- msgid "ACF Field"
215
- msgstr "Campo do ACF"
216
 
217
- #: ../classes/column/acf-placeholder.php:32
218
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
219
- msgstr "Esta funcionalidade só está disponível no Admin de Colunas Pro - Business ou Developer."
220
 
221
- #: ../classes/column/acf-placeholder.php:35
222
- #, php-format
223
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
224
- msgstr "Se você tem uma licença de desenvolvedor, por favor faça o download e instale o add-on do ACF a partir da <a href='%s'>aba de add-ons</a>."
225
 
226
- #: ../classes/column/acf-placeholder.php:38
227
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
228
- msgstr "Admin de Colunas Pro - Desenvolvedor oferece uma integração completa com o Advanced Custom Fields, permitindo você facilmente exibir e editar campos do ACF direto da tela principal de posts."
229
 
230
- #: ../classes/column/acf-placeholder.php:44
231
- msgid "Find out more"
232
- msgstr "Saiba mais."
233
 
234
- #: ../classes/column/actions.php:29
235
- msgid "Actions"
236
- msgstr "Ações"
237
 
238
- #: ../classes/column/actions.php:96
239
- msgid "Use icons?"
240
- msgstr "Usar ícones?"
241
 
242
- #: ../classes/column/actions.php:96
243
- msgid "Use icons instead of text for displaying the actions."
244
- msgstr "Usar ícones no lugar de textos para mostrar as ações"
245
 
246
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
247
- msgid "Yes"
248
- msgstr "Sim"
249
 
250
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
251
- msgid "No"
252
- msgstr "Não"
253
 
254
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
255
- msgid "ID"
256
- msgstr "ID"
257
 
258
- #: ../classes/column/comment/agent.php:19
259
- msgid "Agent"
260
- msgstr "Agente"
261
 
262
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
263
- msgid "Approved"
264
- msgstr "Aprovado"
265
 
266
- #: ../classes/column/comment/author-avatar.php:19
267
- msgid "Avatar"
268
- msgstr "Avatar"
269
 
270
- #: ../classes/column/comment/author-email.php:19
271
- msgid "Author email"
272
- msgstr "Email do autor"
273
 
274
- #: ../classes/column/comment/author-ip.php:19
275
- msgid "Author IP"
276
- msgstr "IP do autor"
277
 
278
- #: ../classes/column/comment/author-name.php:12
279
- msgid "Author name"
280
- msgstr "Nome do autor"
281
 
282
- #: ../classes/column/comment/author-url.php:19
283
- msgid "Author url"
284
- msgstr "Url do autor"
285
 
286
- #: ../classes/column/comment/author.php:19
287
- msgid "Author"
288
- msgstr "Autor"
289
 
290
- #: ../classes/column/comment/date-gmt.php:19
291
- msgid "Date GMT"
292
- msgstr "Data GMT"
293
 
294
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
295
- #, php-format
296
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
297
- msgstr "Enviado em <a href=\"%1$s\">%2$s às %3$s</a>"
298
 
299
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
300
- msgid "Date"
301
- msgstr "Data"
302
 
303
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
304
- msgid "Content"
305
- msgstr "Conteúdo"
306
 
307
- #: ../classes/column/comment/reply-to.php:19
308
- msgid "In Reply To"
309
- msgstr "Em resposta à"
310
 
311
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
312
- msgid "User"
313
- msgstr "Usuário"
314
 
315
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
316
- msgid "Word count"
317
- msgstr "Contador de palavras"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
 
319
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
 
 
 
 
320
  msgid "Custom Field"
321
  msgstr "Campo personalizado"
322
 
323
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
324
  msgid "Default"
325
  msgstr "Padrão"
326
 
327
- #: ../classes/column/custom-field.php:95
328
- msgid "Checkmark (true/false)"
329
- msgstr "Checkmark (true/false)"
330
 
331
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
332
- msgid "Color"
333
- msgstr "Cor"
334
 
335
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
336
- msgid "Counter"
337
- msgstr "Contador"
338
 
339
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
340
  msgid "Excerpt"
341
  msgstr "Resumo"
342
 
343
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
344
- msgid "Image"
345
- msgstr "Imagem"
346
-
347
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
348
- msgid "Media Library"
349
- msgstr "Biblioteca de mídia"
350
 
351
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
352
  msgid "Multiple Values"
353
  msgstr "Vários valores"
354
 
355
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
356
  msgid "Numeric"
357
  msgstr "Numerico"
358
 
359
- #: ../classes/column/custom-field.php:104
360
- msgid "Post Title (Post ID's)"
361
- msgstr "Título do Post (Post ID's)"
362
 
363
- #: ../classes/column/custom-field.php:105
364
- msgid "Username (User ID's)"
365
- msgstr "Usuário (User ID's)"
366
 
367
- #: ../classes/column/custom-field.php:106
368
- msgid "Term Name (Term ID's)"
369
- msgstr "Nome do Termo (Termo ID's)"
370
 
371
- #: ../classes/column/custom-field.php:390
372
- msgid "Select your custom field."
373
- msgstr "Selecione seu campo personalizado"
374
 
375
- #: ../classes/column/custom-field.php:400
376
- msgid "No custom fields available."
377
- msgstr "Nenhum campo personalizado disponível"
378
 
379
- #: ../classes/column/custom-field.php:400
380
- #, php-format
381
- msgid "Please create a %s item first."
382
- msgstr "Por favor, crie um ítem %s primeiro"
383
 
384
- #: ../classes/column/custom-field.php:407
385
- msgid "Field Type"
386
- msgstr "Tipo de campo"
387
 
388
- #: ../classes/column/custom-field.php:407
389
- msgid "This will determine how the value will be displayed."
390
- msgstr "Isso determinará como o valor será exibido."
391
 
392
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
393
- msgid "Description"
394
- msgstr "Descrição"
395
 
396
- #: ../classes/column/link/length.php:19
397
- msgid "Length"
398
- msgstr "Quantidade"
399
 
400
- #: ../classes/column/link/notes.php:19
401
- msgid "Notes"
402
- msgstr "Notas"
403
 
404
- #: ../classes/column/link/owner.php:19
405
- msgid "Owner"
406
- msgstr "Proprietário"
407
 
408
- #: ../classes/column/link/rss.php:19
409
- msgid "Rss"
410
- msgstr "Rss"
411
 
412
- #: ../classes/column/link/target.php:19
413
- msgid "Target"
414
- msgstr "Alvo"
415
 
416
- #: ../classes/column/media/alternate-text.php:19
417
- msgid "Alt"
418
- msgstr "Alt"
419
 
420
- #: ../classes/column/media/attached-to.php:19
421
- msgid "Attached to post"
422
- msgstr "Anexar ao post"
423
 
424
- #: ../classes/column/media/available-sizes.php:20
425
- msgid "Available Sizes"
426
- msgstr "Tamanhos disponíveis"
427
 
428
- #: ../classes/column/media/available-sizes.php:40
429
- msgid "full size"
430
- msgstr "Tamanho completo"
431
 
432
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
433
- msgid "Caption"
434
- msgstr "Subtítulo"
435
 
436
- #: ../classes/column/media/dimensions.php:19
437
- msgid "Dimensions"
438
- msgstr "Dimensões"
439
 
440
- #: ../classes/column/media/exif-data.php:19
441
- msgid "EXIF data"
442
- msgstr "Dados EXIF"
443
 
444
- #: ../classes/column/media/exif-data.php:38
445
- msgid "Aperture"
446
- msgstr "Abertura"
447
 
448
- #: ../classes/column/media/exif-data.php:39
449
- msgid "Credit"
450
- msgstr "Crédito"
451
 
452
- #: ../classes/column/media/exif-data.php:40
453
- msgid "Camera"
454
- msgstr "Câmera"
455
 
456
- #: ../classes/column/media/exif-data.php:42
457
- msgid "Timestamp"
458
- msgstr "Timestamp"
459
 
460
- #: ../classes/column/media/exif-data.php:43
461
- msgid "Copyright EXIF"
462
- msgstr "EXIF Copyright"
463
 
464
- #: ../classes/column/media/exif-data.php:44
465
- msgid "Focal Length"
466
- msgstr "Distância Focal"
467
 
468
- #: ../classes/column/media/exif-data.php:45
469
- msgid "ISO"
470
- msgstr "ISO"
471
 
472
- #: ../classes/column/media/exif-data.php:46
473
- msgid "Shutter Speed"
474
- msgstr "Velocidade do obturador"
475
 
476
- #: ../classes/column/media/exif-data.php:47
477
- msgid "Title"
478
- msgstr "Título"
479
 
480
- #: ../classes/column/media/file-name.php:19
481
- msgid "File name"
482
- msgstr "Nome do arquivo"
483
 
484
- #: ../classes/column/media/file-size.php:19
485
- msgid "File size"
486
- msgstr "Tamanho do arquivo"
487
 
488
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
489
- msgid "Full path"
490
- msgstr "Caminho completo"
491
 
492
- #: ../classes/column/media/full-path.php:83
493
- msgid "Path scope"
494
- msgstr "Extensão do caminho"
495
 
496
- #: ../classes/column/media/full-path.php:84
497
- msgid "Part of the file path to display"
498
- msgstr "Parte do caminho do arquivo para exibir"
499
 
500
- #: ../classes/column/media/full-path.php:97
501
- msgid "Relative to domain"
502
- msgstr "Relativo ao domínio"
503
 
504
- #: ../classes/column/media/full-path.php:102
505
- msgid "Relative to main uploads folder "
506
- msgstr "Relativo à pasta principal de upload"
507
 
508
- #: ../classes/column/media/height.php:19
509
- msgid "Height"
510
- msgstr "Altura"
511
 
512
- #: ../classes/column/media/mime-type.php:19
513
- msgid "Mime type"
514
- msgstr "Mime type"
515
 
516
- #: ../classes/column/post/attachment-count.php:19
517
- msgid "No. of Attachments"
518
- msgstr "No. de Anexos"
519
 
520
- #: ../classes/column/post/attachment.php:19
521
- msgid "Attachments"
522
- msgstr "Anexos"
523
 
524
- #: ../classes/column/post/author-name.php:20
525
- msgid "Display Author As"
526
- msgstr "Exibir Autor Como"
527
 
528
- #: ../classes/column/post/before-moretag.php:19
529
- msgid "Before More Tag"
530
- msgstr "Antes de Mais Tag"
531
 
532
- #: ../classes/column/post/comment-count.php:20
533
- msgid "Comment count"
534
- msgstr "Contagem de Comentário"
535
 
536
- #: ../classes/column/post/comment-count.php:34
537
- msgid "Total"
538
- msgstr "Total"
539
 
540
- #: ../classes/column/post/comment-count.php:36
541
- msgid "Pending"
542
- msgstr "Pendente"
543
 
544
- #: ../classes/column/post/comment-count.php:37
545
- msgid "Spam"
546
- msgstr "Spam"
547
 
548
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
549
- msgid "Trash"
550
- msgstr "Lixeira"
551
 
552
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
553
- msgid "Comment status"
554
- msgstr "Status do Comentário"
555
 
556
- #: ../classes/column/post/comment-count.php:99
557
- msgid "Select which comment status you like to display."
558
- msgstr "Selecione qual status de comentário para exibição."
559
 
560
- #: ../classes/column/post/date-published.php:17
561
- msgid "Date Published"
562
- msgstr "Data de Publicação"
563
 
564
- #: ../classes/column/post/depth.php:19
565
- msgid "Depth"
566
- msgstr "Profundidade"
567
 
568
- #: ../classes/column/post/estimated-reading-time.php:19
569
- msgid "Estimated Reading Time"
570
- msgstr "Tempo Estimado de Leitura"
571
 
572
- #: ../classes/column/post/estimated-reading-time.php:63
573
- msgid "second"
574
- msgid_plural "seconds"
575
- msgstr[0] "segundo"
576
- msgstr[1] "segundos"
577
 
578
- #: ../classes/column/post/estimated-reading-time.php:66
579
- msgid "minute"
580
- msgid_plural "minutes"
581
- msgstr[0] "minuto"
582
- msgstr[1] "minutos"
583
 
584
- #: ../classes/column/post/estimated-reading-time.php:103
585
- msgid "Words per minute"
586
- msgstr "Palavras por minuto"
587
 
588
- #: ../classes/column/post/estimated-reading-time.php:104
589
- msgid "Estimated reading time in words per minute"
590
- msgstr "Tempo estimado de leitura em palavras por minuto"
591
 
592
- #: ../classes/column/post/featured-image.php:19
593
- msgid "Featured Image"
594
- msgstr "Imagem Destacada"
595
 
596
- #: ../classes/column/post/formats.php:19
597
- msgid "Post Format"
598
- msgstr "Formato do Post"
599
 
600
- #: ../classes/column/post/last-modified-author.php:20
601
- msgid "Last Modified Author"
602
- msgstr "Último Autor Modificado"
603
 
604
- #: ../classes/column/post/modified.php:19
605
- msgid "Last modified"
606
- msgstr "Última modificação"
607
 
608
- #: ../classes/column/post/order.php:19
609
- msgid "Page Order"
610
- msgstr "Ordem da Página"
611
 
612
- #: ../classes/column/post/page-template.php:19
613
- msgid "Page Template"
614
- msgstr "Template da Página"
615
 
616
- #: ../classes/column/post/parent.php:19
617
- msgid "Parent"
618
- msgstr "Pai"
619
 
620
- #: ../classes/column/post/path.php:19
621
- msgid "Path"
622
- msgstr "Caminho"
623
 
624
- #: ../classes/column/post/permalink.php:19
625
- msgid "Permalink"
626
- msgstr "Permalink"
627
 
628
- #: ../classes/column/post/permalink.php:68
629
- msgid "Link to post"
630
- msgstr "Link para o post"
631
 
632
- #: ../classes/column/post/permalink.php:68
633
- msgid "This will make the permalink clickable."
634
- msgstr "Isso fará com que o permalink seja clicável."
635
 
636
- #: ../classes/column/post/ping-status.php:19
637
- msgid "Ping status"
638
- msgstr "Ping status"
639
 
640
- #: ../classes/column/post/roles.php:19
641
- msgid "Roles"
642
- msgstr "Regras"
643
 
644
- #: ../classes/column/post/shortcodes.php:19
645
- msgid "Shortcodes"
646
- msgstr "Shortcodes"
647
 
648
- #: ../classes/column/post/slug.php:19
649
- msgid "Slug"
650
- msgstr "Slug"
651
 
652
- #: ../classes/column/post/status.php:19
653
- msgid "Status"
654
- msgstr "Status"
655
 
656
- #: ../classes/column/post/status.php:29
657
- msgid "Published"
658
- msgstr "Publicado"
659
 
660
- #: ../classes/column/post/status.php:30
661
- msgid "Draft"
662
- msgstr "Rascunho"
663
 
664
- #: ../classes/column/post/status.php:31
665
- msgid "Scheduled"
666
- msgstr "Agendado"
667
 
668
- #: ../classes/column/post/status.php:32
669
- msgid "Private"
670
- msgstr "Privado"
671
 
672
- #: ../classes/column/post/status.php:33
673
- msgid "Pending Review"
674
- msgstr "Aguardando Revisão"
675
 
676
- #: ../classes/column/post/status.php:34
677
- msgid "Auto Draft"
678
- msgstr "Rascunho Automático"
679
 
680
- #: ../classes/column/post/sticky.php:19
681
- msgid "Sticky"
682
- msgstr "Sticky"
683
 
684
- #: ../classes/column/post/title-raw.php:19
685
- msgid "Title without actions"
686
- msgstr "Título sem ações"
687
 
688
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
689
- msgid "Taxonomy"
690
- msgstr "Taxonomia"
691
 
692
- #: ../classes/column/used-by-menu.php:20
693
- msgid "Used by Menu"
694
- msgstr "Usado pelo Menu"
695
 
696
- #: ../classes/column/used-by-menu.php:133
697
- msgid "Link to menu"
698
- msgstr "Link para o menu"
699
 
700
- #: ../classes/column/used-by-menu.php:133
701
- msgid "This will make the title link to the menu."
702
- msgstr "Isso fará o link do título para o menu."
703
 
704
- #: ../classes/column/user/comment-count.php:19
705
- msgid "Comment Count"
706
- msgstr "Contagem de Comentário"
707
 
708
- #: ../classes/column/user/display-name.php:19
709
- msgid "Display name"
710
- msgstr "Nome de exibição"
711
 
712
- #: ../classes/column/user/first-name.php:19
713
- msgid "First name"
714
- msgstr "Primeiro nome"
715
 
716
- #: ../classes/column/user/last-name.php:19
717
- msgid "Last name"
718
- msgstr "Sobrenome"
719
 
720
- #: ../classes/column/user/post-count.php:19
721
- msgid "Post Count"
722
- msgstr "Contador de Post"
723
 
724
- #: ../classes/column/user/post-count.php:89
725
- msgid "Post Type"
726
- msgstr "Tipo de Post"
727
 
728
- #: ../classes/column/user/registered.php:19
729
- msgid "Registered"
730
- msgstr "Registrado"
731
 
732
- #: ../classes/column/user/rich-editing.php:19
733
- msgid "Visual Editor"
734
- msgstr "Editor Visual"
735
 
736
- #: ../classes/column/user/url.php:19
737
- msgid "Url"
738
- msgstr "Url"
739
 
740
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
741
- msgid "Admin Columns"
742
- msgstr "Admin de Colunas"
743
 
744
- #: ../classes/review_notice.php:58
745
- msgid "Admin Columns Pro"
746
- msgstr "Admin de Colunas Pro"
747
 
748
- #: ../classes/review_notice.php:65
749
- #, php-format
750
- msgid ""
751
- "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 "
752
- "%s, please %s."
753
- msgstr ""
754
 
755
- #: ../classes/review_notice.php:68
756
- msgid "click here"
757
- msgstr "clique aqui"
758
 
759
- #: ../classes/review_notice.php:72
760
- msgid "Leave a review!"
761
- msgstr "Deixe uma review!"
762
 
763
- #: ../classes/review_notice.php:73
764
- msgid "Permanently hide notice"
765
- msgstr "Ocultar permanentemente o aviso"
766
 
767
- #: ../classes/review_notice.php:80
768
- #, php-format
769
- 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."
770
- msgstr ""
771
 
772
- #: ../classes/review_notice.php:82
773
- msgid "documentation page"
774
- msgstr "página de documentação"
775
 
776
- #: ../classes/review_notice.php:86
777
- #, php-format
778
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
779
- msgstr ""
780
 
781
- #: ../classes/review_notice.php:87
782
- msgid "our forums"
783
- msgstr "nossos forums"
784
 
785
- #: ../classes/review_notice.php:91
786
- #, php-format
787
- msgid "You can also find help on the %s, and %s."
788
- msgstr ""
789
 
790
- #: ../classes/review_notice.php:92
791
- msgid "Admin Columns forums on WordPress.org"
792
- msgstr ""
793
 
794
- #: ../classes/review_notice.php:93
795
- msgid "find answers to some frequently asked questions"
796
- msgstr ""
797
 
798
- #: ../classes/settings.php:112
799
- msgid "Add-on successfully activated."
800
- msgstr "Add-on ativado com sucesso."
801
 
802
- #: ../classes/settings.php:115
803
- msgid "Add-on successfully deactivated."
804
- msgstr "Add-on desativado com sucesso"
805
 
806
- #: ../classes/settings.php:170
807
- msgid "Admin Columns Settings"
808
- msgstr "Configurações do Admin de Colunas"
809
 
810
- #: ../classes/settings.php:220
811
- #, php-format
812
- msgid "%s column is already present and can not be duplicated."
813
- msgstr "%s coluna já está inclusa e não pode ser duplicada."
814
 
815
- #: ../classes/settings.php:274
816
- msgid "Default settings succesfully restored."
817
- msgstr "Configurações padrão restauradas com sucesso."
818
 
819
- #: ../classes/settings.php:291
820
- msgid "Overview"
821
- msgstr "Overview"
822
 
823
- #: ../classes/settings.php:294
824
- 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."
825
- msgstr "Este plugin serve para adicionar e remover colunas extras nas telas de administração de posts(tipos), páginas, biblioteca de mídia, comentários, links e usuários. Alterar rótulo da coluna e reordená-los."
826
 
827
- #: ../classes/settings.php:297
828
- msgid "Basics"
829
- msgstr "Básicas"
830
 
831
- #: ../classes/settings.php:299
832
- msgid "Change order"
833
- msgstr "Alterar ordem"
834
 
835
- #: ../classes/settings.php:300
836
- msgid "By dragging the columns you can change the order which they will appear in."
837
- msgstr "Arrastando as colunas você pode alterar a ordem em que elas aparecem."
838
 
839
- #: ../classes/settings.php:301
840
- msgid "Change label"
841
- msgstr "Alterar label"
842
 
843
- #: ../classes/settings.php:302
844
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
845
- msgstr "Clicando no triângulo você verá as opções da coluna. Você pode alterar cada rótulo do cabeçalho das colunas."
846
 
847
- #: ../classes/settings.php:303
848
- msgid "Change column width"
849
- msgstr "Alterar tamanho da coluna"
850
 
851
- #: ../classes/settings.php:304
852
- 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."
853
- msgstr "Clicando no triângulo você verá as opções da coluna. Usando o campo de slider você pode setar a largura da coluna em porcentagem."
854
 
855
- #: ../classes/settings.php:310
856
- msgid "'Custom Field' column"
857
- msgstr "Coluna 'Campo Personalizado'"
858
 
859
- #: ../classes/settings.php:311
860
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
861
- msgstr "A coluna de campo personalizado usa os campos personalizados dos posts e usuários. Existem 10 tipos que você pode setar."
862
 
863
- #: ../classes/settings.php:313
864
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
865
- msgstr "Valor: Pode ser uma string ou array. Arrays serão 'flattened' e seus valores separados por ',' vírgula."
866
-
867
- #: ../classes/settings.php:314
868
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
869
- msgstr "Valor: deverá conter uma URL da imagem ou IDs dos Anexos ( separados por uma ',' vírgula )."
870
-
871
- #: ../classes/settings.php:315
872
- msgid "Value: This will show the first 20 words of the Post content."
873
- msgstr "Valor: Mostrará as primeiras 20 palavras do conteúdo do Post."
874
-
875
- #: ../classes/settings.php:316
876
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
877
- msgstr "Valor: Deverá ser um array. Irá 'flatten' qualquer array ( multidimensional )."
878
-
879
- #: ../classes/settings.php:317
880
- 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."
881
- msgstr "Valor: Apenas números inteiros.<br/>Se você tem o 'addon de ordenação' isso vai ser usado para classificação, de modo que você possa ordenar seus posts em valores numéricos (campo personalizado)."
882
-
883
- #: ../classes/settings.php:318
884
- #, php-format
885
- 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."
886
- msgstr "Valor: Pode ser unix timestamp ou um formato de data como relatado no <a href='%s'>Codex</a>. Você pode mudar o formato de saída da data na página de <a href='%s'>configurações</a>."
887
-
888
- #: ../classes/settings.php:319
889
- msgid "Post Titles"
890
- msgstr "Títulos do Post"
891
-
892
- #: ../classes/settings.php:319
893
- msgid "Value: can be one or more Post ID's (seperated by ',')."
894
- msgstr "Valor: pode ser um ou mais Post ID's (separado por ',')."
895
-
896
- #: ../classes/settings.php:320
897
- msgid "Usernames"
898
- msgstr "Usuários"
899
-
900
- #: ../classes/settings.php:320
901
- msgid "Value: can be one or more User ID's (seperated by ',')."
902
- msgstr "Valor: pode ser um ou mais ID's dos Usuários (separado por ',')."
903
-
904
- #: ../classes/settings.php:321
905
- msgid "Checkmark"
906
- msgstr "Checkmark"
907
-
908
- #: ../classes/settings.php:321
909
- msgid "Value: should be a 1 (one) or 0 (zero)."
910
- msgstr "Valor: deverá ser 1 (um) u 0 (zero)."
911
-
912
- #: ../classes/settings.php:322
913
- msgid "Value: hex value color, such as #808080."
914
- msgstr "Valor: Valor hexadecimal, ex: #808080."
915
-
916
- #: ../classes/settings.php:323
917
- 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."
918
- msgstr "Valor: Pode ser uma string ou array. Exibirá uma contagem do número de vezes que a 'meta_key' é usada pelo item."
919
-
920
- #: ../classes/settings.php:412
921
- msgid "Welcome to Admin Columns"
922
- msgstr "Bem vindo ao Admin de Colunas"
923
-
924
- #: ../classes/settings.php:415
925
- msgid "Thank you for updating to the latest version!"
926
- msgstr "Obrigado por atualizar para a última versão!"
927
-
928
- #: ../classes/settings.php:416
929
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
930
- msgstr "Admin de Colunas está mais polido e divertido do que nunca. Esperamos que você goste."
931
-
932
- #: ../classes/settings.php:421
933
- msgid "What’s New"
934
- msgstr "O que há de novo"
935
-
936
- #: ../classes/settings.php:422
937
- msgid "Changelog"
938
- msgstr "Log de Mudanças"
939
 
940
- #: ../classes/settings.php:427
941
- msgid "Important"
942
- msgstr "Importante"
943
 
944
- #: ../classes/settings.php:429
945
- msgid "Database Changes"
946
- msgstr "Alterações no banco de dados"
947
 
948
- #: ../classes/settings.php:430
949
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
950
- msgstr "O banco de dados foi alterado entre as versões 1 e 2, mas nós temos certeza que você pode voltar para a versão 1x sem nenhum problema."
951
 
952
- #: ../classes/settings.php:433
953
- msgid "Make sure you backup your database and then click"
954
- msgstr "Verifique se você realizou o backup do banco de dados antes de continuar"
955
 
956
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
957
- msgid "Upgrade Database"
958
- msgstr "Atualização do Banco de Dados"
959
 
960
- #: ../classes/settings.php:436
961
- msgid "Potential Issues"
962
- msgstr "Potenciais Problemas"
963
 
964
- #: ../classes/settings.php:437
965
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
966
- msgstr "Faça o refatoramento do seu código em torno dos Complementos e ação/filtros, seu website poderá não funcionar corretamente. É importante que você leia por completo"
967
 
968
- #: ../classes/settings.php:437
969
- msgid "Migrating from v1 to v2"
970
- msgstr "Migrando da v1 para v2"
971
 
972
- #: ../classes/settings.php:437
973
- msgid "guide to view the full list of changes."
974
- msgstr "Guia para visualização de todas as alterações."
975
 
976
- #: ../classes/settings.php:437
977
- #, php-format
978
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
979
- msgstr "Ao encontrar um bug, por favor <a href=\"%s\">reporte para nós</a> para arrumarmos na próxima versão."
980
 
981
- #: ../classes/settings.php:440
982
- msgid "Important!"
983
- msgstr "Importante!"
984
 
985
- #: ../classes/settings.php:440
986
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
987
- msgstr "Se você atualizou o plugin Admin de Colunas sem o devido conhecimento das mudanças, por favor volte a última versão"
988
 
989
- #: ../classes/settings.php:440
990
- msgid "version 1"
991
- msgstr "versão 1"
992
 
993
- #: ../classes/settings.php:440
994
- msgid "of this plugin."
995
- msgstr "deste plugin."
996
 
997
- #: ../classes/settings.php:446
998
- msgid "Changelog for"
999
- msgstr "Log de alterações para"
1000
 
1001
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1002
- msgid "Learn more"
1003
- msgstr "Saiba mais"
1004
 
1005
- #: ../classes/settings.php:471
1006
- msgid "Start using Admin Columns"
1007
- msgstr "Comece a usar o Admin de Colunas"
1008
 
1009
- #: ../classes/settings.php:490
1010
- msgid "General Settings"
1011
- msgstr "Configurações"
1012
 
1013
- #: ../classes/settings.php:491
1014
- msgid "Customize your Admin Columns settings."
1015
- msgstr "Customize as configurações do seu Admin de Colunas."
1016
 
1017
- #: ../classes/settings.php:502
1018
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1019
- msgstr "Mostrar botão \"Editar Colunas\" nas telas de administração. Padrão é: <code>ativado</code>"
1020
 
1021
- #: ../classes/settings.php:509 ../classes/settings.php:673
1022
- msgid "Save"
1023
- msgstr "Salvar"
1024
 
1025
- #: ../classes/settings.php:549
1026
- msgid "Restore Settings"
1027
- msgstr "Restaurar Configurações"
1028
 
1029
- #: ../classes/settings.php:550
1030
- msgid "This will delete all column settings and restore the default settings."
1031
- msgstr "Apagará todas as configurações de colunas e restaurar a configuração padrão."
1032
 
1033
- #: ../classes/settings.php:556
1034
- msgid "Restore default settings"
1035
- msgstr "Restaurar configuração padrão"
1036
 
1037
- #: ../classes/settings.php:556
1038
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1039
- msgstr "Atenção! Todos os dados salvos do administrador de colunas serão excluídos. Isto não poderá ser desfeito. \\'OK\\' para excluir, \\'Cancelar\\' para interromper"
1040
 
1041
- #: ../classes/settings.php:572
1042
- msgid "Posttypes"
1043
- msgstr "Tipos de Post"
1044
 
1045
- #: ../classes/settings.php:573
1046
- msgid "Others"
1047
- msgstr "Outros"
1048
 
1049
- #: ../classes/settings.php:574
1050
- msgid "Taxonomies"
1051
- msgstr "Taxonomias"
1052
 
1053
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1054
- msgid "Settings"
1055
- msgstr "Configurações"
1056
 
1057
- #: ../classes/settings.php:591
1058
- msgid "Add-ons"
1059
- msgstr "Complementos"
1060
 
1061
- #: ../classes/settings.php:659
1062
- #, php-format
1063
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1064
- msgstr "As colunas para %s são setadas via PHP e portanto não podem ser editadas pelo painel de administração"
1065
 
1066
- #: ../classes/settings.php:669
1067
- msgid "Store settings"
1068
- msgstr "Configurações armazenadas"
1069
 
1070
- #: ../classes/settings.php:673
1071
- msgid "Update"
1072
- msgstr "Atualização"
1073
 
1074
- #: ../classes/settings.php:677
1075
- #, php-format
1076
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1077
- msgstr "Atenção! Dados das colunas %s serão excluídos. Isto não poderá ser desfeito. \\'OK\\' para excluir, \\'Cancelar\\' para interromper"
1078
 
1079
- #: ../classes/settings.php:678
1080
- msgid "Restore"
1081
- msgstr "Restaurar"
1082
 
1083
- #: ../classes/settings.php:678
1084
- msgid "columns"
1085
- msgstr "colunas"
1086
 
1087
- #: ../classes/settings.php:697
1088
- msgid "Get Admin Columns Pro"
1089
- msgstr "Obter Admin de Colunas Pro"
1090
 
1091
- #: ../classes/settings.php:701
1092
- msgid "Add Sorting"
1093
- msgstr "Adicionar Classificação"
1094
 
1095
- #: ../classes/settings.php:702
1096
- msgid "Add Filtering"
1097
- msgstr "Adicionar Filtragem"
1098
 
1099
- #: ../classes/settings.php:703
1100
- msgid "Add Import/Export"
1101
- msgstr "Adicionar Importar/Exportar"
1102
 
1103
- #: ../classes/settings.php:704
1104
- msgid "Add Direct Editing"
1105
- msgstr "Adicionar Edição Direta"
1106
 
1107
- #: ../classes/settings.php:707
1108
- #, php-format
1109
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1110
- msgstr "Confira <a href=\"%s\">Admin de Colunas Pro</a> para mais detalhes!"
1111
 
1112
- #: ../classes/settings.php:738
1113
- msgid "Are you happy with Admin Columns?"
1114
- msgstr "Você está feliz com o Administrador de Colunas?"
1115
 
1116
- #: ../classes/settings.php:746
1117
- msgid "What's wrong? Need help? Let us know!"
1118
- msgstr "Algum problema? Precisa de ajuda? Deixe-nos saber!"
1119
 
1120
- #: ../classes/settings.php:747
1121
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1122
- msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
1123
 
1124
- #: ../classes/settings.php:755
1125
- msgid "Docs"
1126
- msgstr "Docs"
1127
 
1128
- #: ../classes/settings.php:760
1129
- msgid "Forums"
1130
- msgstr "Forums"
1131
 
1132
- #: ../classes/settings.php:769
1133
- msgid "Woohoo! We're glad to hear that!"
1134
- msgstr "Woohoo! Estamos felizes em saber disto!"
1135
 
1136
- #: ../classes/settings.php:770
1137
- 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!"
1138
- 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!"
1139
 
1140
- #: ../classes/settings.php:774
1141
- msgid "Rate"
1142
- msgstr "Avaliar"
1143
 
1144
- #: ../classes/settings.php:785
1145
- msgid "Tweet"
1146
- msgstr "Twittar"
1147
 
1148
- #: ../classes/settings.php:795
1149
- msgid "Buy Pro"
1150
- msgstr "Comprar versão PRO"
1151
 
1152
- #: ../classes/settings.php:807
1153
- msgid "Support"
1154
- msgstr "Suporte"
1155
 
1156
- #: ../classes/settings.php:810
1157
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1158
- msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
1159
 
1160
- #: ../classes/settings.php:813
1161
- #, php-format
1162
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1163
- 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>"
 
1164
 
1165
- #: ../classes/settings.php:842
1166
- msgid "Drag and drop to reorder"
1167
- msgstr "Arrastar e solte para reordenar"
 
 
1168
 
1169
- #: ../classes/settings.php:845
1170
- msgid "Add Column"
1171
- msgstr "Adicionar Coluna"
1172
 
1173
- #: ../classes/settings.php:926
1174
- msgid "Active"
1175
- msgstr "Ativar"
1176
 
1177
- #: ../classes/settings.php:927
1178
- msgid "Deactivate"
1179
- msgstr "Desativar"
1180
 
1181
- #: ../classes/settings.php:934
1182
- msgid "Installed"
1183
- msgstr "Instalado"
1184
 
1185
- #: ../classes/settings.php:935
1186
- msgid "Activate"
1187
- msgstr "Ativado"
1188
 
1189
- #: ../classes/settings.php:949
1190
- msgid "Download & Install"
1191
- msgstr "Baixar & Instalar"
1192
 
1193
- #: ../classes/settings.php:954
1194
- msgid "Get this add-on"
1195
- msgstr "Obter este complemento"
1196
 
1197
- #: ../classes/storage_model.php:237
1198
- msgid "settings succesfully restored."
1199
- msgstr "Configurações foram restauradas com sucesso."
1200
 
1201
- #: ../classes/storage_model.php:253
1202
- msgid "No columns settings available."
1203
- msgstr "Nenhuma configuração de colunas disponível."
1204
 
1205
- #: ../classes/storage_model.php:274
1206
- #, php-format
1207
- msgid "You are trying to store the same settings for %s."
1208
- msgstr "Você está tentando armazenar a mesma configuração para %s."
1209
 
1210
- #: ../classes/storage_model.php:278
1211
- #, php-format
1212
- msgid "Settings for %s updated successfully."
1213
- msgstr "Ajustes para %s atualizados com sucesso."
1214
 
1215
- #: ../classes/storage_model.php:809
1216
- msgid "View"
1217
- msgstr "Visualizar"
1218
 
1219
- #: ../classes/storage_model/comment.php:13
1220
- msgid "Comments"
1221
- msgstr "Comentários"
1222
 
1223
- #: ../classes/storage_model/comment.php:14
1224
- msgid "Comment"
1225
- msgstr "Comentário"
1226
 
1227
- #: ../classes/storage_model/link.php:13
1228
- msgid "Links"
1229
- msgstr "Links"
1230
 
1231
- #: ../classes/storage_model/link.php:14
1232
- msgid "Link"
1233
- msgstr "Link"
1234
 
1235
- #: ../classes/storage_model/media.php:14
1236
- msgid "Media"
1237
- msgstr "Mídia"
1238
 
1239
- #: ../classes/storage_model/user.php:13
1240
- msgid "Users"
1241
- msgstr "Usuários"
1242
 
1243
- #: ../classes/upgrade.php:62
1244
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
1245
- msgstr ""
1246
 
1247
- #: ../classes/upgrade.php:95
1248
- msgid "Upgrade"
1249
- msgstr "Atualização"
1250
 
1251
- #: ../classes/upgrade.php:136
1252
- msgid "requires a database upgrade"
1253
- msgstr "exige um upgrade no banco de dados"
1254
 
1255
- #: ../classes/upgrade.php:139
1256
- msgid "why?"
1257
- msgstr "Por que?"
1258
 
1259
- #: ../classes/upgrade.php:140
1260
- msgid "Please"
1261
- msgstr "Por favor"
1262
 
1263
- #: ../classes/upgrade.php:141
1264
- msgid "backup your database"
1265
- msgstr "Faça o backup do seu banco de dados"
1266
 
1267
- #: ../classes/upgrade.php:142
1268
- msgid "then click"
1269
- msgstr "e clique"
1270
 
1271
- #: ../classes/upgrade.php:351
1272
- msgid "Migrating Column Settings"
1273
- msgstr "Migrando as Configurações de Coluna"
1274
 
1275
- #: ../classes/upgrade.php:387
1276
- msgid "No Upgrade Required"
1277
- msgstr "Não é necessária a atualização"
1278
 
1279
- #: ../classes/upgrade.php:388
1280
- msgid "Return to welcome screen."
1281
- msgstr "Retornar para a tela de bem-vindo."
1282
 
1283
- #: ../classes/upgrade.php:406
1284
- msgid "Upgrade Complete!"
1285
- msgstr "Atualização Completa!"
1286
 
1287
- #: ../classes/upgrade.php:406
1288
- msgid "Return to settings."
1289
- msgstr "Retornar para configuração"
1290
 
1291
- #: ../classes/upgrade.php:407
1292
- msgid "Error"
1293
- msgstr "Erro"
1294
 
1295
- #: ../classes/upgrade.php:408
1296
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1297
- msgstr "Desculpe. Alguma coisa aconteceu durante o processo de atualização. Por favor reporte no fórum de suporte."
1298
 
1299
- #: ../codepress-admin-columns.php:444
1300
- msgid "Edit columns"
1301
- msgstr "Editar Colunas"
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Adriano Estevam <aestevam@gmail.com>, 2013
5
  # André Mácola Machado <andremacola@gmail.com>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Admin Columns\n"
10
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
11
+ "PO-Revision-Date: 2015-10-12 15:25+0200\n"
 
12
  "Last-Translator: Codepress <info@codepress.nl>\n"
13
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/codepress/admin-columns/language/pt_BR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: pt_BR\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
+ "POT-Creation-Date: \n"
23
+ "X-Generator: Poedit 1.8.5\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
26
+
27
+ #: ../codepress-admin-columns.php:451
28
+ msgid "Edit columns"
29
+ msgstr "Editar Colunas"
 
 
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr "Melhorar a visão geral dos produtos, encomendas e cupons com novas colunas e edição imediata."
50
 
51
+ #: ../classes/column.php:624
52
  msgid "Thumbnail"
53
  msgstr "Miniatura"
54
 
55
+ #: ../classes/column.php:625
56
  msgid "Medium"
57
  msgstr "Médio"
58
 
59
+ #: ../classes/column.php:626
60
  msgid "Large"
61
  msgstr "Grande"
62
 
63
+ #: ../classes/column.php:627
64
  msgid "Full"
65
  msgstr "Original"
66
 
67
+ #: ../classes/column.php:1059
68
+ msgid "Exact match"
69
+ msgstr ""
70
+
71
+ #: ../classes/column.php:1060
72
+ msgid "Lesser than"
73
+ msgstr ""
74
+
75
+ #: ../classes/column.php:1061
76
+ msgid "Greater than"
77
+ msgstr ""
78
+
79
+ #: ../classes/column.php:1062
80
+ msgid "Between"
81
+ msgstr ""
82
+
83
+ #: ../classes/column.php:1089
84
  msgid "Date Format"
85
  msgstr "Formato de Data"
86
 
87
+ #: ../classes/column.php:1090
88
  msgid "This will determine how the date will be displayed."
89
  msgstr "Determina como a data será mostrada"
90
 
91
+ #: ../classes/column.php:1096
92
  msgid "Example:"
93
  msgstr "Exemplo"
94
 
95
+ #: ../classes/column.php:1098
96
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
97
+ msgstr ""
 
98
 
99
+ #: ../classes/column.php:1099
100
  msgid "Documentation on date and time formatting."
101
  msgstr "Documentação para formatos de data e hora"
102
 
103
+ #: ../classes/column.php:1113
104
  msgid "Excerpt length"
105
  msgstr "Tamanho do Resumo"
106
 
107
+ #: ../classes/column.php:1114
108
  msgid "Number of words"
109
  msgstr "Número de Palavras"
110
 
111
+ #: ../classes/column.php:1132
112
  msgid "Preview size"
113
  msgstr "Tamanho do preview"
114
 
115
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
116
  msgid "Custom"
117
  msgstr "Personalizado"
118
 
119
+ #: ../classes/column.php1152, ../classes/column.php:1328
120
  msgid "width"
121
  msgstr "largura"
122
 
123
+ #: ../classes/column.php:1155
124
  msgid "height"
125
  msgstr "altura"
126
 
127
+ #: ../classes/column.php:1167
128
  msgid "Before"
129
  msgstr "Antes"
130
 
131
+ #: ../classes/column.php:1167
132
  msgid "This text will appear before the custom field value."
133
  msgstr "Este texto aparecerá antes do valor do campo personalizado."
134
 
135
+ #: ../classes/column.php:1168
136
  msgid "After"
137
  msgstr "Depois"
138
 
139
+ #: ../classes/column.php:1168
140
  msgid "This text will appear after the custom field value."
141
  msgstr "Este texto aparecerá depois do valor do campo personalizado."
142
 
143
+ #: ../classes/column.php:1177
144
  msgid "Display Name"
145
  msgstr "Exibir Nome"
146
 
147
+ #: ../classes/column.php1178, ../classes/settings.php:733
148
  msgid "First Name"
149
  msgstr "Primeiro Nome"
150
 
151
+ #: ../classes/column.php:1179
152
  msgid "Last Name"
153
  msgstr "Sobrenome"
154
 
155
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
156
  msgid "Nickname"
157
  msgstr "Apelido"
158
 
159
+ #: ../classes/column.php:1181
160
  msgid "User Login"
161
  msgstr "Nome de Usuário"
162
 
163
+ #: ../classes/column.php:1182
164
  msgid "User Email"
165
  msgstr "Email do Usuário"
166
 
167
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
168
  msgid "User ID"
169
  msgstr "ID do Usuário"
170
 
171
+ #: ../classes/column.php:1184
172
  msgid "First and Last Name"
173
  msgstr "Nome e Sobrenome"
174
 
175
+ #: ../classes/column.php:1187
176
  msgid "Display format"
177
  msgstr "Formato de exibição"
178
 
179
+ #: ../classes/column.php:1187
180
  msgid "This is the format of the author name."
181
  msgstr "Este é o formato do nome do autor."
182
 
183
+ #: ../classes/column.php:1350
184
  msgid "Edit"
185
  msgstr "Editar"
186
 
187
+ #: ../classes/column.php1352, ../classes/column.php:1444
188
  msgid "Clone"
189
  msgstr "Clone"
190
 
191
+ #: ../classes/column.php:1354
192
  msgid "Remove"
193
  msgstr "Remover"
194
 
195
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
196
  msgid "Type"
197
  msgstr "Tipo"
198
 
199
+ #: ../classes/column.php:1372
200
  msgid "Choose a column type."
201
  msgstr "Escolha um tipo."
202
 
203
+ #: ../classes/column.php:1372
204
  msgid "Name"
205
  msgstr "Nome"
206
 
207
+ #: ../classes/column.php:1382
208
  msgid "Label"
209
  msgstr "Titulo"
210
 
211
+ #: ../classes/column.php:1382
212
  msgid "This is the name which will appear as the column header."
213
  msgstr "Nome que aparecerá no cabeçalho da coluna."
214
 
215
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
216
  msgid "Width"
217
  msgstr "Width"
218
 
219
+ #: ../classes/column.php:1391
220
  msgid "default"
221
  msgstr "padrão"
222
 
223
+ #: ../classes/column.php:1392
224
  msgid "auto"
225
  msgstr "auto"
226
 
227
+ #: ../classes/column.php:1466
228
+ msgid "Property To Display"
229
+ msgstr ""
230
 
231
+ #: ../classes/column.php:1472
232
+ msgid "Post property to display for related post(s)."
233
+ msgstr ""
234
 
235
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
236
+ msgid "Link To"
237
+ msgstr ""
 
238
 
239
+ #: ../classes/column.php:1489
240
+ msgid "Edit Post Author"
241
+ msgstr ""
242
 
243
+ #: ../classes/column.php:1490
244
+ msgid "View Public Post Author Page"
245
+ msgstr ""
246
 
247
+ #: ../classes/column.php:1492
248
+ msgid "Page the posts should link to."
249
+ msgstr ""
250
 
251
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
252
+ msgid "Admin Columns"
253
+ msgstr "Admin de Colunas"
254
 
255
+ #: ../classes/review_notice.php:58
256
+ msgid "Admin Columns Pro"
257
+ msgstr "Admin de Colunas Pro"
258
 
259
+ #: ../classes/review_notice.php:68
260
+ msgid "click here"
261
+ msgstr "clique aqui"
262
 
263
+ #: ../classes/review_notice.php:72
264
+ msgid "Leave a review!"
265
+ msgstr "Deixe uma review!"
266
 
267
+ #: ../classes/review_notice.php:73
268
+ msgid "Permanently hide notice"
269
+ msgstr "Ocultar permanentemente o aviso"
270
 
271
+ #: ../classes/review_notice.php:80
272
+ 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."
273
+ msgstr "Sentimos muito em ouvir isso; talvez nós podemos ajudar! Se você estiver tendo problemas em configurar o %s ou se estiver interessado em ajudar com funcionalidades mais avançadas, por favor visite nosso %s."
274
 
275
+ #: ../classes/review_notice.php:82
276
+ msgid "documentation page"
277
+ msgstr "página de documentação"
278
 
279
+ #: ../classes/review_notice.php:86
280
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
281
+ msgstr "Como um usuário do Administrador de Colunas Pro, você pode usar sua conta no site AdminColumns.com para ter acesso ao suporte pelo %s!"
282
 
283
+ #: ../classes/review_notice.php:87
284
+ msgid "our forums"
285
+ msgstr "nossos forums"
286
 
287
+ #: ../classes/review_notice.php:91
288
+ msgid "You can also find help on the %s, and %s."
289
+ msgstr "Você também pode encontrar ajuda no %s, e %s."
290
 
291
+ #: ../classes/review_notice.php:92
292
+ msgid "Admin Columns forums on WordPress.org"
293
+ msgstr "Fórum do Administrador de Colunas no WordPress.org"
294
 
295
+ #: ../classes/review_notice.php:93
296
+ msgid "find answers to some frequently asked questions"
297
+ msgstr "encontre respostas para algumas perguntas frequentes"
298
 
299
+ #: ../classes/settings.php:113
300
+ msgid "Add-on successfully activated."
301
+ msgstr "Add-on ativado com sucesso."
302
 
303
+ #: ../classes/settings.php:116
304
+ msgid "Add-on successfully deactivated."
305
+ msgstr "Add-on desativado com sucesso"
306
 
307
+ #: ../classes/settings.php:170
308
+ msgid "Admin Columns Settings"
309
+ msgstr "Configurações do Admin de Colunas"
 
310
 
311
+ #: ../classes/settings.php:228
312
+ msgid "%s column is already present and can not be duplicated."
313
+ msgstr "%s coluna já está inclusa e não pode ser duplicada."
314
 
315
+ #: ../classes/settings.php:284
316
+ msgid "Default settings succesfully restored."
317
+ msgstr "Configurações padrão restauradas com sucesso."
318
 
319
+ #: ../classes/settings.php:301
320
+ msgid "Overview"
321
+ msgstr "Overview"
322
 
323
+ #: ../classes/settings.php:304
324
+ 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."
325
+ msgstr "Este plugin serve para adicionar e remover colunas extras nas telas de administração de posts(tipos), páginas, biblioteca de mídia, comentários, links e usuários. Alterar rótulo da coluna e reordená-los."
326
 
327
+ #: ../classes/settings.php:307
328
+ msgid "Basics"
329
+ msgstr "Básicas"
330
+
331
+ #: ../classes/settings.php:309
332
+ msgid "Change order"
333
+ msgstr "Alterar ordem"
334
+
335
+ #: ../classes/settings.php:310
336
+ msgid "By dragging the columns you can change the order which they will appear in."
337
+ msgstr "Arrastando as colunas você pode alterar a ordem em que elas aparecem."
338
+
339
+ #: ../classes/settings.php:311
340
+ msgid "Change label"
341
+ msgstr "Alterar label"
342
+
343
+ #: ../classes/settings.php:312
344
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
345
+ msgstr "Clicando no triângulo você verá as opções da coluna. Você pode alterar cada rótulo do cabeçalho das colunas."
346
+
347
+ #: ../classes/settings.php:313
348
+ msgid "Change column width"
349
+ msgstr "Alterar tamanho da coluna"
350
 
351
+ #: ../classes/settings.php:314
352
+ 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."
353
+ msgstr "Clicando no triângulo você verá as opções da coluna. Usando o campo de slider você pode setar a largura da coluna em porcentagem."
354
+
355
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
356
  msgid "Custom Field"
357
  msgstr "Campo personalizado"
358
 
359
+ #: ../classes/settings.php:320
360
+ msgid "'Custom Field' column"
361
+ msgstr "Coluna 'Campo Personalizado'"
362
+
363
+ #: ../classes/settings.php:321
364
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
365
+ msgstr "A coluna de campo personalizado usa os campos personalizados dos posts e usuários. Existem 10 tipos que você pode setar."
366
+
367
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
368
  msgid "Default"
369
  msgstr "Padrão"
370
 
371
+ #: ../classes/settings.php:323
372
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
373
+ msgstr "Valor: Pode ser uma string ou array. Arrays serão 'flattened' e seus valores separados por ',' vírgula."
374
 
375
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
376
+ msgid "Image"
377
+ msgstr "Imagem"
378
 
379
+ #: ../classes/settings.php:324
380
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
381
+ msgstr "Valor: deverá conter uma URL da imagem ou IDs dos Anexos ( separados por uma ',' vírgula )."
382
 
383
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
384
  msgid "Excerpt"
385
  msgstr "Resumo"
386
 
387
+ #: ../classes/settings.php:325
388
+ msgid "Value: This will show the first 20 words of the Post content."
389
+ msgstr "Valor: Mostrará as primeiras 20 palavras do conteúdo do Post."
 
 
 
 
390
 
391
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
392
  msgid "Multiple Values"
393
  msgstr "Vários valores"
394
 
395
+ #: ../classes/settings.php:326
396
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
397
+ msgstr "Valor: Deverá ser um array. Irá 'flatten' qualquer array ( multidimensional )."
398
+
399
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
400
  msgid "Numeric"
401
  msgstr "Numerico"
402
 
403
+ #: ../classes/settings.php:327
404
+ 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."
405
+ msgstr "Valor: Apenas números inteiros.<br/>Se você tem o 'addon de ordenação' isso vai ser usado para classificação, de modo que você possa ordenar seus posts em valores numéricos (campo personalizado)."
406
 
407
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
408
+ msgid "Date"
409
+ msgstr "Data"
410
 
411
+ #: ../classes/settings.php:328
412
+ 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."
413
+ msgstr "Valor: Pode ser unix timestamp ou um formato de data como relatado no <a href='%s'>Codex</a>. Você pode mudar o formato de saída da data na página de <a href='%s'>configurações</a>."
414
 
415
+ #: ../classes/settings.php:329
416
+ msgid "Post Titles"
417
+ msgstr "Títulos do Post"
418
 
419
+ #: ../classes/settings.php:329
420
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
421
+ msgstr "Valor: pode ser um ou mais Post ID's (separado por ',')."
422
 
423
+ #: ../classes/settings.php:330
424
+ msgid "Usernames"
425
+ msgstr "Usuários"
 
426
 
427
+ #: ../classes/settings.php:330
428
+ msgid "Value: can be one or more User ID's (seperated by ',')."
429
+ msgstr "Valor: pode ser um ou mais ID's dos Usuários (separado por ',')."
430
 
431
+ #: ../classes/settings.php:331
432
+ msgid "Checkmark"
433
+ msgstr "Checkmark"
434
 
435
+ #: ../classes/settings.php:331
436
+ msgid "Value: should be a 1 (one) or 0 (zero)."
437
+ msgstr "Valor: deverá ser 1 (um) u 0 (zero)."
438
 
439
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
440
+ msgid "Color"
441
+ msgstr "Cor"
442
 
443
+ #: ../classes/settings.php:332
444
+ msgid "Value: hex value color, such as #808080."
445
+ msgstr "Valor: Valor hexadecimal, ex: #808080."
446
 
447
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
448
+ msgid "Counter"
449
+ msgstr "Contador"
450
 
451
+ #: ../classes/settings.php:333
452
+ 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."
453
+ msgstr "Valor: Pode ser uma string ou array. Exibirá uma contagem do número de vezes que a 'meta_key' é usada pelo item."
454
 
455
+ #: ../classes/settings.php:422
456
+ msgid "Welcome to Admin Columns"
457
+ msgstr "Bem vindo ao Admin de Colunas"
458
 
459
+ #: ../classes/settings.php:425
460
+ msgid "Thank you for updating to the latest version!"
461
+ msgstr "Obrigado por atualizar para a última versão!"
462
 
463
+ #: ../classes/settings.php:426
464
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
465
+ msgstr "Admin de Colunas está mais polido e divertido do que nunca. Esperamos que você goste."
466
 
467
+ #: ../classes/settings.php:431
468
+ msgid "What’s New"
469
+ msgstr "O que há de novo"
470
 
471
+ #: ../classes/settings.php:432
472
+ msgid "Changelog"
473
+ msgstr "Log de Mudanças"
474
 
475
+ #: ../classes/settings.php:437
476
+ msgid "Important"
477
+ msgstr "Importante"
478
 
479
+ #: ../classes/settings.php:439
480
+ msgid "Database Changes"
481
+ msgstr "Alterações no banco de dados"
482
 
483
+ #: ../classes/settings.php:440
484
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
485
+ msgstr "O banco de dados foi alterado entre as versões 1 e 2, mas nós temos certeza que você pode voltar para a versão 1x sem nenhum problema."
486
 
487
+ #: ../classes/settings.php:443
488
+ msgid "Make sure you backup your database and then click"
489
+ msgstr "Verifique se você realizou o backup do banco de dados antes de continuar"
490
 
491
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
492
+ msgid "Upgrade Database"
493
+ msgstr "Atualização do Banco de Dados"
494
 
495
+ #: ../classes/settings.php:446
496
+ msgid "Potential Issues"
497
+ msgstr "Potenciais Problemas"
498
 
499
+ #: ../classes/settings.php:447
500
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
501
+ msgstr "Faça o refatoramento do seu código em torno dos Complementos e ação/filtros, seu website poderá não funcionar corretamente. É importante que você leia por completo"
502
 
503
+ #: ../classes/settings.php:447
504
+ msgid "Migrating from v1 to v2"
505
+ msgstr "Migrando da v1 para v2"
506
 
507
+ #: ../classes/settings.php:447
508
+ msgid "guide to view the full list of changes."
509
+ msgstr "Guia para visualização de todas as alterações."
510
 
511
+ #: ../classes/settings.php:447
512
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
513
+ msgstr ""
514
 
515
+ #: ../classes/settings.php:450
516
+ msgid "Important!"
517
+ msgstr "Importante!"
518
 
519
+ #: ../classes/settings.php:450
520
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
521
+ msgstr "Se você atualizou o plugin Admin de Colunas sem o devido conhecimento das mudanças, por favor volte a última versão"
522
 
523
+ #: ../classes/settings.php:450
524
+ msgid "version 1"
525
+ msgstr "versão 1"
526
 
527
+ #: ../classes/settings.php:450
528
+ msgid "of this plugin."
529
+ msgstr "deste plugin."
530
 
531
+ #: ../classes/settings.php:456
532
+ msgid "Changelog for"
533
+ msgstr "Log de alterações para"
534
 
535
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
536
+ msgid "Learn more"
537
+ msgstr "Saiba mais"
538
 
539
+ #: ../classes/settings.php:481
540
+ msgid "Start using Admin Columns"
541
+ msgstr "Comece a usar o Admin de Colunas"
542
 
543
+ #: ../classes/settings.php:500
544
+ msgid "General Settings"
545
+ msgstr "Configurações"
546
 
547
+ #: ../classes/settings.php:501
548
+ msgid "Customize your Admin Columns settings."
549
+ msgstr "Customize as configurações do seu Admin de Colunas."
550
 
551
+ #: ../classes/settings.php:512
552
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
553
+ msgstr "Mostrar botão \"Editar Colunas\" nas telas de administração. Padrão é: <code>ativado</code>"
554
 
555
+ #: ../classes/settings.php:559
556
+ msgid "Restore Settings"
557
+ msgstr "Restaurar Configurações"
558
 
559
+ #: ../classes/settings.php:560
560
+ msgid "This will delete all column settings and restore the default settings."
561
+ msgstr "Apagará todas as configurações de colunas e restaurar a configuração padrão."
562
 
563
+ #: ../classes/settings.php:566
564
+ msgid "Restore default settings"
565
+ msgstr "Restaurar configuração padrão"
566
 
567
+ #: ../classes/settings.php:566
568
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
569
+ msgstr ""
570
 
571
+ #: ../classes/settings.php:582
572
+ msgid "Posttypes"
573
+ msgstr "Tipos de Post"
574
 
575
+ #: ../classes/settings.php:583
576
+ msgid "Others"
577
+ msgstr "Outros"
578
 
579
+ #: ../classes/settings.php:584
580
+ msgid "Taxonomies"
581
+ msgstr "Taxonomias"
582
 
583
+ #: ../classes/settings.php:600
584
+ msgid "Settings"
585
+ msgstr "Configurações"
586
 
587
+ #: ../classes/settings.php:601
588
+ msgid "Add-ons"
589
+ msgstr "Complementos"
590
 
591
+ #: ../classes/settings.php:669
592
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
593
+ msgstr "As colunas para %s são setadas via PHP e portanto não podem ser editadas pelo painel de administração"
594
 
595
+ #: ../classes/settings.php:679
596
+ msgid "Store settings"
597
+ msgstr "Configurações armazenadas"
598
 
599
+ #: ../classes/settings.php:687
600
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
601
+ msgstr ""
602
 
603
+ #: ../classes/settings.php:688
604
+ msgid "Restore"
605
+ msgstr "Restaurar"
606
 
607
+ #: ../classes/settings.php:688
608
+ msgid "columns"
609
+ msgstr "colunas"
610
 
611
+ #: ../classes/settings.php:707
612
+ msgid "Get Admin Columns Pro"
613
+ msgstr "Obter Admin de Colunas Pro"
614
 
615
+ #: ../classes/settings.php:711
616
+ msgid "Add Sorting"
617
+ msgstr "Adicionar Classificação"
 
 
618
 
619
+ #: ../classes/settings.php:712
620
+ msgid "Add Filtering"
621
+ msgstr "Adicionar Filtragem"
 
 
622
 
623
+ #: ../classes/settings.php:713
624
+ msgid "Add Import/Export"
625
+ msgstr "Adicionar Importar/Exportar"
626
 
627
+ #: ../classes/settings.php:714
628
+ msgid "Add Direct Editing"
629
+ msgstr "Adicionar Edição Direta"
630
 
631
+ #: ../classes/settings.php:717
632
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
633
+ msgstr ""
634
 
635
+ #: ../classes/settings.php:730
636
+ msgid "Subscribe to receive news &amp; updates below."
637
+ msgstr ""
638
 
639
+ #: ../classes/settings.php:737
640
+ msgid "Your Email"
641
+ msgstr ""
642
 
643
+ #: ../classes/settings.php:748
644
+ msgid "Are you happy with Admin Columns?"
645
+ msgstr "Você está feliz com o Administrador de Colunas?"
646
 
647
+ #: ../classes/settings.php:756
648
+ msgid "What's wrong? Need help? Let us know!"
649
+ msgstr "Algum problema? Precisa de ajuda? Deixe-nos saber!"
650
 
651
+ #: ../classes/settings.php:757
652
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
653
+ msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
654
 
655
+ #: ../classes/settings.php:765
656
+ msgid "Docs"
657
+ msgstr "Docs"
658
 
659
+ #: ../classes/settings.php:770
660
+ msgid "Forums"
661
+ msgstr "Forums"
662
 
663
+ #: ../classes/settings.php:779
664
+ msgid "Woohoo! We're glad to hear that!"
665
+ msgstr "Woohoo! Estamos felizes em saber disto!"
666
 
667
+ #: ../classes/settings.php:780
668
+ 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!"
669
+ 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!"
670
 
671
+ #: ../classes/settings.php:784
672
+ msgid "Rate"
673
+ msgstr "Avaliar"
674
 
675
+ #: ../classes/settings.php:795
676
+ msgid "Tweet"
677
+ msgstr "Twittar"
678
 
679
+ #: ../classes/settings.php:805
680
+ msgid "Buy Pro"
681
+ msgstr "Comprar versão PRO"
682
 
683
+ #: ../classes/settings.php:817
684
+ msgid "Support"
685
+ msgstr "Suporte"
686
 
687
+ #: ../classes/settings.php:820
688
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
689
+ msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
690
 
691
+ #: ../classes/settings.php:823
692
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
693
+ 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>"
694
 
695
+ #: ../classes/settings.php:852
696
+ msgid "Drag and drop to reorder"
697
+ msgstr "Arrastar e solte para reordenar"
698
 
699
+ #: ../classes/settings.php:855
700
+ msgid "Add Column"
701
+ msgstr "Adicionar Coluna"
702
 
703
+ #: ../classes/settings.php:936
704
+ msgid "Active"
705
+ msgstr "Ativar"
706
 
707
+ #: ../classes/settings.php:937
708
+ msgid "Deactivate"
709
+ msgstr "Desativar"
710
 
711
+ #: ../classes/settings.php:944
712
+ msgid "Installed"
713
+ msgstr "Instalado"
714
 
715
+ #: ../classes/settings.php:945
716
+ msgid "Activate"
717
+ msgstr "Ativado"
718
 
719
+ #: ../classes/settings.php:959
720
+ msgid "Download & Install"
721
+ msgstr "Baixar & Instalar"
722
 
723
+ #: ../classes/settings.php:964
724
+ msgid "Get this add-on"
725
+ msgstr "Obter este complemento"
726
 
727
+ #: ../classes/storage_model.php:262
728
+ msgid "settings succesfully restored."
729
+ msgstr "Configurações foram restauradas com sucesso."
730
 
731
+ #: ../classes/storage_model.php:278
732
+ msgid "No columns settings available."
733
+ msgstr "Nenhuma configuração de colunas disponível."
734
 
735
+ #: ../classes/storage_model.php:299
736
+ msgid "You are trying to store the same settings for %s."
737
+ msgstr "Você está tentando armazenar a mesma configuração para %s."
738
 
739
+ #: ../classes/storage_model.php:303
740
+ msgid "Settings for %s updated successfully."
741
+ msgstr "Ajustes para %s atualizados com sucesso."
742
 
743
+ #: ../classes/storage_model.php:643
744
+ msgid "Columns by Plugins"
745
+ msgstr "Colunas por Plugins"
746
 
747
+ #: ../classes/storage_model.php:862
748
+ msgid "View"
749
+ msgstr "Visualizar"
750
 
751
+ #: ../classes/upgrade.php:62
752
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
753
+ 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"
754
 
755
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
756
+ msgid "Upgrade"
757
+ msgstr "Atualização"
758
 
759
+ #: ../classes/upgrade.php:136
760
+ msgid "requires a database upgrade"
761
+ msgstr "exige um upgrade no banco de dados"
762
 
763
+ #: ../classes/upgrade.php:139
764
+ msgid "why?"
765
+ msgstr "Por que?"
766
 
767
+ #: ../classes/upgrade.php:140
768
+ msgid "Please"
769
+ msgstr "Por favor"
770
 
771
+ #: ../classes/upgrade.php:141
772
+ msgid "backup your database"
773
+ msgstr "Faça o backup do seu banco de dados"
774
 
775
+ #: ../classes/upgrade.php:142
776
+ msgid "then click"
777
+ msgstr "e clique"
778
 
779
+ #: ../classes/upgrade.php:351
780
+ msgid "Migrating Column Settings"
781
+ msgstr "Migrando as Configurações de Coluna"
782
 
783
+ #: ../classes/upgrade.php:387
784
+ msgid "No Upgrade Required"
785
+ msgstr "Não é necessária a atualização"
786
 
787
+ #: ../classes/upgrade.php:388
788
+ msgid "Return to welcome screen."
789
+ msgstr "Retornar para a tela de bem-vindo."
 
 
 
790
 
791
+ #: ../classes/upgrade.php:406
792
+ msgid "Upgrade Complete!"
793
+ msgstr "Atualização Completa!"
794
 
795
+ #: ../classes/upgrade.php:406
796
+ msgid "Return to settings."
797
+ msgstr "Retornar para configuração"
798
 
799
+ #: ../classes/upgrade.php:407
800
+ msgid "Error"
801
+ msgstr "Erro"
802
 
803
+ #: ../classes/upgrade.php:408
804
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
805
+ msgstr "Desculpe. Alguma coisa aconteceu durante o processo de atualização. Por favor reporte no fórum de suporte."
 
806
 
807
+ #: ../classes/column/acf-placeholder.php:19
808
+ msgid "ACF Field"
809
+ msgstr "Campo do ACF"
810
 
811
+ #: ../classes/column/acf-placeholder.php:35
812
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
813
+ msgstr "Se você tem uma licença de desenvolvedor, por favor faça o download e instale o add-on do ACF a partir da <a href='%s'>aba de add-ons</a>."
 
814
 
815
+ #: ../classes/column/acf-placeholder.php:38
816
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
817
+ msgstr "Admin de Colunas Pro - Desenvolvedor oferece uma integração completa com o Advanced Custom Fields, permitindo você facilmente exibir e editar campos do ACF direto da tela principal de posts."
818
 
819
+ #: ../classes/column/acf-placeholder.php:44
820
+ msgid "Find out more"
821
+ msgstr "Saiba mais."
 
822
 
823
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
824
+ msgid "Actions"
825
+ msgstr "Ações"
826
 
827
+ #: ../classes/column/actions.php:96
828
+ msgid "Use icons?"
829
+ msgstr "Usar ícones?"
830
 
831
+ #: ../classes/column/actions.php:96
832
+ msgid "Use icons instead of text for displaying the actions."
833
+ msgstr "Usar ícones no lugar de textos para mostrar as ações"
834
 
835
+ #: ../classes/column/custom-field.php:96
836
+ msgid "Checkmark (true/false)"
837
+ msgstr "Checkmark (true/false)"
838
 
839
+ #: ../classes/column/custom-field.php:102
840
+ msgid "Media Library"
841
+ msgstr "Biblioteca de mídia"
842
 
843
+ #: ../classes/column/custom-field.php:105
844
+ msgid "Post Title (Post ID's)"
845
+ msgstr "Título do Post (Post ID's)"
 
846
 
847
+ #: ../classes/column/custom-field.php:106
848
+ msgid "Username (User ID's)"
849
+ msgstr "Usuário (User ID's)"
850
 
851
+ #: ../classes/column/custom-field.php:107
852
+ msgid "Term Name (Term ID's)"
853
+ msgstr "Nome do Termo (Termo ID's)"
854
 
855
+ #: ../classes/column/custom-field.php:391
856
+ msgid "Select your custom field."
857
+ msgstr "Selecione seu campo personalizado"
858
 
859
+ #: ../classes/column/custom-field.php:401
860
+ msgid "No custom fields available."
861
+ msgstr "Nenhum campo personalizado disponível"
862
 
863
+ #: ../classes/column/custom-field.php:401
864
+ msgid "Please create a %s item first."
865
+ msgstr "Por favor, crie um ítem %s primeiro"
866
 
867
+ #: ../classes/column/custom-field.php:408
868
+ msgid "Field Type"
869
+ msgstr "Tipo de campo"
870
 
871
+ #: ../classes/column/custom-field.php:408
872
+ msgid "This will determine how the value will be displayed."
873
+ msgstr "Isso determinará como o valor será exibido."
874
 
875
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
876
+ msgid "Taxonomy"
877
+ msgstr "Taxonomia"
878
 
879
+ #: ../classes/column/used-by-menu.php:20
880
+ msgid "Used by Menu"
881
+ msgstr "Usado pelo Menu"
882
 
883
+ #: ../classes/column/used-by-menu.php:133
884
+ msgid "Link to menu"
885
+ msgstr "Link para o menu"
886
 
887
+ #: ../classes/column/used-by-menu.php:133
888
+ msgid "This will make the title link to the menu."
889
+ msgstr "Isso fará o link do título para o menu."
890
 
891
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
892
+ msgid "ID"
893
+ msgstr "ID"
894
 
895
+ #: ../classes/column/comment/agent.php:19
896
+ msgid "Agent"
897
+ msgstr "Agente"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
898
 
899
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
900
+ msgid "Approved"
901
+ msgstr "Aprovado"
902
 
903
+ #: ../classes/column/comment/author-avatar.php:19
904
+ msgid "Avatar"
905
+ msgstr "Avatar"
906
 
907
+ #: ../classes/column/comment/author-email.php:19
908
+ msgid "Author email"
909
+ msgstr "Email do autor"
910
 
911
+ #: ../classes/column/comment/author-ip.php:19
912
+ msgid "Author IP"
913
+ msgstr "IP do autor"
914
 
915
+ #: ../classes/column/comment/author-name.php:12
916
+ msgid "Author name"
917
+ msgstr "Nome do autor"
918
 
919
+ #: ../classes/column/comment/author-url.php:19
920
+ msgid "Author url"
921
+ msgstr "Url do autor"
922
 
923
+ #: ../classes/column/comment/author.php:19
924
+ msgid "Author"
925
+ msgstr "Autor"
926
 
927
+ #: ../classes/column/comment/date-gmt.php:19
928
+ msgid "Date GMT"
929
+ msgstr "Data GMT"
930
 
931
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
932
+ msgid "Content"
933
+ msgstr "Conteúdo"
934
 
935
+ #: ../classes/column/comment/post.php:19
936
+ msgid "Post"
937
+ msgstr ""
 
938
 
939
+ #: ../classes/column/comment/reply-to.php:19
940
+ msgid "In Reply To"
941
+ msgstr "Em resposta à"
942
 
943
+ #: ../classes/column/comment/user.php:11
944
+ msgid "User"
945
+ msgstr "Usuário"
946
 
947
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
948
+ msgid "Word count"
949
+ msgstr "Contador de palavras"
950
 
951
+ #: ../classes/column/media/alternate-text.php:19
952
+ msgid "Alt"
953
+ msgstr "Alt"
954
 
955
+ #: ../classes/column/media/attached-to.php:19
956
+ msgid "Attached to post"
957
+ msgstr "Anexar ao post"
958
 
959
+ #: ../classes/column/media/available-sizes.php:20
960
+ msgid "Available Sizes"
961
+ msgstr "Tamanhos disponíveis"
962
 
963
+ #: ../classes/column/media/available-sizes.php:40
964
+ msgid "full size"
965
+ msgstr "Tamanho completo"
966
 
967
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
968
+ msgid "Caption"
969
+ msgstr "Subtítulo"
970
 
971
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
972
+ msgid "Description"
973
+ msgstr "Descrição"
974
 
975
+ #: ../classes/column/media/dimensions.php:19
976
+ msgid "Dimensions"
977
+ msgstr "Dimensões"
978
 
979
+ #: ../classes/column/media/exif-data.php:19
980
+ msgid "EXIF data"
981
+ msgstr "Dados EXIF"
982
 
983
+ #: ../classes/column/media/exif-data.php:38
984
+ msgid "Aperture"
985
+ msgstr "Abertura"
986
 
987
+ #: ../classes/column/media/exif-data.php:39
988
+ msgid "Credit"
989
+ msgstr "Crédito"
990
 
991
+ #: ../classes/column/media/exif-data.php:40
992
+ msgid "Camera"
993
+ msgstr "Câmera"
994
 
995
+ #: ../classes/column/media/exif-data.php:42
996
+ msgid "Timestamp"
997
+ msgstr "Timestamp"
998
 
999
+ #: ../classes/column/media/exif-data.php:43
1000
+ msgid "Copyright EXIF"
1001
+ msgstr "EXIF Copyright"
1002
 
1003
+ #: ../classes/column/media/exif-data.php:44
1004
+ msgid "Focal Length"
1005
+ msgstr "Distância Focal"
1006
 
1007
+ #: ../classes/column/media/exif-data.php:45
1008
+ msgid "ISO"
1009
+ msgstr "ISO"
1010
 
1011
+ #: ../classes/column/media/exif-data.php:46
1012
+ msgid "Shutter Speed"
1013
+ msgstr "Velocidade do obturador"
1014
 
1015
+ #: ../classes/column/media/exif-data.php:47
1016
+ msgid "Title"
1017
+ msgstr "Título"
1018
 
1019
+ #: ../classes/column/media/file-name.php:19
1020
+ msgid "File name"
1021
+ msgstr "Nome do arquivo"
 
1022
 
1023
+ #: ../classes/column/media/file-size.php:19
1024
+ msgid "File size"
1025
+ msgstr "Tamanho do arquivo"
1026
 
1027
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1028
+ msgid "Full path"
1029
+ msgstr "Caminho completo"
1030
 
1031
+ #: ../classes/column/media/full-path.php:83
1032
+ msgid "Path scope"
1033
+ msgstr "Extensão do caminho"
 
1034
 
1035
+ #: ../classes/column/media/full-path.php:84
1036
+ msgid "Part of the file path to display"
1037
+ msgstr "Parte do caminho do arquivo para exibir"
1038
 
1039
+ #: ../classes/column/media/full-path.php:97
1040
+ msgid "Relative to domain"
1041
+ msgstr "Relativo ao domínio"
1042
 
1043
+ #: ../classes/column/media/full-path.php:102
1044
+ msgid "Relative to main uploads folder "
1045
+ msgstr "Relativo à pasta principal de upload"
1046
 
1047
+ #: ../classes/column/media/height.php:19
1048
+ msgid "Height"
1049
+ msgstr "Altura"
1050
 
1051
+ #: ../classes/column/media/mime-type.php:19
1052
+ msgid "Mime type"
1053
+ msgstr "Mime type"
1054
 
1055
+ #: ../classes/column/post/attachment-count.php:19
1056
+ msgid "No. of Attachments"
1057
+ msgstr "No. de Anexos"
1058
 
1059
+ #: ../classes/column/post/attachment.php:19
1060
+ msgid "Attachments"
1061
+ msgstr "Anexos"
1062
 
1063
+ #: ../classes/column/post/author-name.php:20
1064
+ msgid "Display Author As"
1065
+ msgstr "Exibir Autor Como"
 
1066
 
1067
+ #: ../classes/column/post/author-name.php:100
1068
+ msgid "View Public Author Page"
1069
+ msgstr ""
1070
 
1071
+ #: ../classes/column/post/author-name.php:102
1072
+ msgid "Page the author name should link to."
1073
+ msgstr ""
1074
 
1075
+ #: ../classes/column/post/before-moretag.php:19
1076
+ msgid "Before More Tag"
1077
+ msgstr "Antes de Mais Tag"
1078
 
1079
+ #: ../classes/column/post/comment-count.php:20
1080
+ msgid "Comment count"
1081
+ msgstr "Contagem de Comentário"
1082
 
1083
+ #: ../classes/column/post/comment-count.php:34
1084
+ msgid "Total"
1085
+ msgstr "Total"
1086
 
1087
+ #: ../classes/column/post/comment-count.php:36
1088
+ msgid "Pending"
1089
+ msgstr "Pendente"
1090
 
1091
+ #: ../classes/column/post/comment-count.php:37
1092
+ msgid "Spam"
1093
+ msgstr "Spam"
1094
 
1095
+ #: ../classes/column/post/comment-count.php:38
1096
+ msgid "Trash"
1097
+ msgstr "Lixeira"
1098
 
1099
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1100
+ msgid "Comment status"
1101
+ msgstr "Status do Comentário"
1102
 
1103
+ #: ../classes/column/post/comment-count.php:99
1104
+ msgid "Select which comment status you like to display."
1105
+ msgstr "Selecione qual status de comentário para exibição."
1106
 
1107
+ #: ../classes/column/post/depth.php:19
1108
+ msgid "Depth"
1109
+ msgstr "Profundidade"
1110
 
1111
+ #: ../classes/column/post/estimated-reading-time.php:19
1112
+ msgid "Estimated Reading Time"
1113
+ msgstr "Tempo Estimado de Leitura"
1114
 
1115
+ #: ../classes/column/post/estimated-reading-time.php:66
1116
+ msgid "second"
1117
+ msgid_plural "seconds"
1118
+ msgstr[0] "segundo"
1119
+ msgstr[1] "segundos"
1120
 
1121
+ #: ../classes/column/post/estimated-reading-time.php:69
1122
+ msgid "minute"
1123
+ msgid_plural "minutes"
1124
+ msgstr[0] "minuto"
1125
+ msgstr[1] "minutos"
1126
 
1127
+ #: ../classes/column/post/estimated-reading-time.php:107
1128
+ msgid "Words per minute"
1129
+ msgstr "Palavras por minuto"
1130
 
1131
+ #: ../classes/column/post/estimated-reading-time.php:108
1132
+ msgid "Estimated reading time in words per minute"
1133
+ msgstr "Tempo estimado de leitura em palavras por minuto"
1134
 
1135
+ #: ../classes/column/post/featured-image.php:19
1136
+ msgid "Featured Image"
1137
+ msgstr "Imagem Destacada"
1138
 
1139
+ #: ../classes/column/post/formats.php:19
1140
+ msgid "Post Format"
1141
+ msgstr "Formato do Post"
1142
 
1143
+ #: ../classes/column/post/last-modified-author.php:20
1144
+ msgid "Last Modified Author"
1145
+ msgstr "Último Autor Modificado"
1146
 
1147
+ #: ../classes/column/post/modified.php:19
1148
+ msgid "Last modified"
1149
+ msgstr "Última modificação"
1150
 
1151
+ #: ../classes/column/post/order.php:19
1152
+ msgid "Order"
1153
+ msgstr "Ordem"
1154
 
1155
+ #: ../classes/column/post/page-template.php:19
1156
+ msgid "Page Template"
1157
+ msgstr "Template da Página"
1158
 
1159
+ #: ../classes/column/post/parent.php:19
1160
+ msgid "Parent"
1161
+ msgstr "Pai"
1162
 
1163
+ #: ../classes/column/post/path.php:19
1164
+ msgid "Path"
1165
+ msgstr "Caminho"
 
1166
 
1167
+ #: ../classes/column/post/permalink.php:19
1168
+ msgid "Permalink"
1169
+ msgstr "Permalink"
 
1170
 
1171
+ #: ../classes/column/post/permalink.php:68
1172
+ msgid "Link to post"
1173
+ msgstr "Link para o post"
1174
 
1175
+ #: ../classes/column/post/permalink.php:68
1176
+ msgid "This will make the permalink clickable."
1177
+ msgstr "Isso fará com que o permalink seja clicável."
1178
 
1179
+ #: ../classes/column/post/ping-status.php:19
1180
+ msgid "Ping status"
1181
+ msgstr "Ping status"
1182
 
1183
+ #: ../classes/column/post/roles.php:19
1184
+ msgid "Roles"
1185
+ msgstr "Regras"
1186
 
1187
+ #: ../classes/column/post/shortcodes.php:19
1188
+ msgid "Shortcodes"
1189
+ msgstr "Shortcodes"
1190
 
1191
+ #: ../classes/column/post/slug.php:19
1192
+ msgid "Slug"
1193
+ msgstr "Slug"
1194
 
1195
+ #: ../classes/column/post/status.php:21
1196
+ msgid "Status"
1197
+ msgstr "Status"
1198
 
1199
+ #: ../classes/column/post/sticky.php:19
1200
+ msgid "Sticky"
1201
+ msgstr "Sticky"
1202
 
1203
+ #: ../classes/column/post/title-raw.php:19
1204
+ msgid "Title without actions"
1205
+ msgstr "Título sem ações"
1206
 
1207
+ #: ../classes/column/link/length.php:19
1208
+ msgid "Length"
1209
+ msgstr "Quantidade"
1210
 
1211
+ #: ../classes/column/link/notes.php:19
1212
+ msgid "Notes"
1213
+ msgstr "Notas"
1214
 
1215
+ #: ../classes/column/link/owner.php:19
1216
+ msgid "Owner"
1217
+ msgstr "Proprietário"
1218
 
1219
+ #: ../classes/column/link/rss.php:19
1220
+ msgid "Rss"
1221
+ msgstr "Rss"
1222
 
1223
+ #: ../classes/column/link/target.php:19
1224
+ msgid "Target"
1225
+ msgstr "Alvo"
1226
 
1227
+ #: ../classes/column/user/display-name.php:19
1228
+ msgid "Display name"
1229
+ msgstr "Nome de exibição"
1230
 
1231
+ #: ../classes/column/user/first-name.php:19
1232
+ msgid "First name"
1233
+ msgstr "Primeiro nome"
1234
 
1235
+ #: ../classes/column/user/last-name.php:19
1236
+ msgid "Last name"
1237
+ msgstr "Sobrenome"
1238
 
1239
+ #: ../classes/column/user/post-count.php:19
1240
+ msgid "Post Count"
1241
+ msgstr "Contador de Post"
1242
 
1243
+ #: ../classes/column/user/post-count.php:89
1244
+ msgid "Post Type"
1245
+ msgstr "Tipo de Post"
1246
 
1247
+ #: ../classes/column/user/registered.php:19
1248
+ msgid "Registered"
1249
+ msgstr "Registrado"
1250
 
1251
+ #: ../classes/column/user/rich-editing.php:19
1252
+ msgid "Visual Editor"
1253
+ msgstr "Editor Visual"
1254
 
1255
+ #: ../classes/column/user/url.php:19
1256
+ msgid "Url"
1257
+ msgstr "Url"
languages/codepress-admin-columns-ru_RU.mo ADDED
Binary file
languages/{cpac-ru_RU.po → codepress-admin-columns-ru_RU.po} RENAMED
@@ -1,30 +1,29 @@
1
- #
 
2
  # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
8
- "PO-Revision-Date: 2015-06-26 13:25+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
- "Language-Team: Russian (http://www.transifex.com/projects/p/admin-columns/language/ru/)\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Language: ru\n"
15
  "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
16
- "X-Generator: Poedit 1.8.1\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SearchPathExcluded-0: ../src\n"
23
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
24
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
25
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
28
 
29
  #: ../classes/addons.php:110
30
  msgid "Plugins"
@@ -46,1255 +45,1214 @@ msgstr ""
46
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
47
  msgstr ""
48
 
49
- #: ../classes/column.php:597
50
  msgid "Thumbnail"
51
  msgstr "Миниатюра"
52
 
53
- #: ../classes/column.php:598
54
  msgid "Medium"
55
  msgstr "Средний"
56
 
57
- #: ../classes/column.php:599
58
  msgid "Large"
59
  msgstr "Большой"
60
 
61
- #: ../classes/column.php:600
62
  msgid "Full"
63
  msgstr "Полный"
64
 
65
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  msgid "Date Format"
67
  msgstr "Формат даты"
68
 
69
- #: ../classes/column.php:1042
70
  msgid "This will determine how the date will be displayed."
71
  msgstr "Это определяет отображение даты."
72
 
73
- #: ../classes/column.php:1048
74
  msgid "Example:"
75
  msgstr "Пример:"
76
 
77
- #: ../classes/column.php:1050
78
- #, php-format
79
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
80
- msgstr "Оставьте пустым для формата даты WordPress, измените <a href=\"%s\">default date format here</a>."
81
 
82
- #: ../classes/column.php:1051
83
  msgid "Documentation on date and time formatting."
84
  msgstr "Документация по форматированию даты и времени."
85
 
86
- #: ../classes/column.php:1065
87
  msgid "Excerpt length"
88
  msgstr "Длина отрывка"
89
 
90
- #: ../classes/column.php:1066
91
  msgid "Number of words"
92
  msgstr "Количество слов"
93
 
94
- #: ../classes/column.php:1084
95
  msgid "Preview size"
96
  msgstr "Размер просмотра"
97
 
98
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
99
  msgid "Custom"
100
  msgstr "Пользовательский"
101
 
102
- #: ../classes/column.php:1104 ../classes/column.php:1251
103
  msgid "width"
104
  msgstr "ширина"
105
 
106
- #: ../classes/column.php:1107
107
  msgid "height"
108
  msgstr "высота"
109
 
110
- #: ../classes/column.php:1119
111
  msgid "Before"
112
  msgstr "Перед"
113
 
114
- #: ../classes/column.php:1119
115
  msgid "This text will appear before the custom field value."
116
  msgstr "Этот текст появится перед значением настраиваемого поля."
117
 
118
- #: ../classes/column.php:1120
119
  msgid "After"
120
  msgstr "После"
121
 
122
- #: ../classes/column.php:1120
123
  msgid "This text will appear after the custom field value."
124
  msgstr "Этот текст появится перед значением настраиваемого поля."
125
 
126
- #: ../classes/column.php:1129
127
  msgid "Display Name"
128
  msgstr "Отображаемое имя"
129
 
130
- #: ../classes/column.php:1130
131
  msgid "First Name"
132
  msgstr "Имя"
133
 
134
- #: ../classes/column.php:1131
135
  msgid "Last Name"
136
  msgstr "Фамилия"
137
 
138
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
139
  msgid "Nickname"
140
  msgstr "Ник"
141
 
142
- #: ../classes/column.php:1133
143
  msgid "User Login"
144
  msgstr "Логин пользователя"
145
 
146
- #: ../classes/column.php:1134
147
  msgid "User Email"
148
  msgstr "Email пользователя"
149
 
150
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
151
  msgid "User ID"
152
  msgstr "ID пользователя"
153
 
154
- #: ../classes/column.php:1136
155
  msgid "First and Last Name"
156
  msgstr "Имя и Фамилия"
157
 
158
- #: ../classes/column.php:1139
159
  msgid "Display format"
160
  msgstr ""
161
 
162
- #: ../classes/column.php:1139
163
  msgid "This is the format of the author name."
164
  msgstr "Формат имени автора."
165
 
166
- #: ../classes/column.php:1273
167
  msgid "Edit"
168
  msgstr "Редактировать"
169
 
170
- #: ../classes/column.php:1275 ../classes/column.php:1367
171
  msgid "Clone"
172
  msgstr ""
173
 
174
- #: ../classes/column.php:1277 ../classes/column.php:1369
175
  msgid "Remove"
176
  msgstr "Удалить"
177
 
178
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
179
  msgid "Type"
180
  msgstr "Тип"
181
 
182
- #: ../classes/column.php:1295
183
  msgid "Choose a column type."
184
  msgstr "Выбрать тип колонки"
185
 
186
- #: ../classes/column.php:1295
187
  msgid "Name"
188
  msgstr ""
189
 
190
- #: ../classes/column.php:1305
191
  msgid "Label"
192
  msgstr "Метка"
193
 
194
- #: ../classes/column.php:1305
195
  msgid "This is the name which will appear as the column header."
196
  msgstr "Это имя, которое будет отображаться в качестве заголовка столбца."
197
 
198
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
199
  msgid "Width"
200
  msgstr "Ширина"
201
 
202
- #: ../classes/column.php:1314
203
  msgid "default"
204
  msgstr "по умолчанию"
205
 
206
- #: ../classes/column.php:1315
207
  msgid "auto"
208
  msgstr ""
209
 
210
- #: ../classes/column/acf-placeholder.php:19
211
- msgid "ACF Field"
212
- msgstr "Поле ACF"
213
 
214
- #: ../classes/column/acf-placeholder.php:32
215
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
216
  msgstr ""
217
 
218
- #: ../classes/column/acf-placeholder.php:35
219
- #, php-format
220
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
221
- msgstr "Если Вы имеете лицензию разработчика, пожалуйста, загрузите и утановите Ваш ACF add-on по ссылке <a href='%s'>add-ons tab</a>."
222
 
223
- #: ../classes/column/acf-placeholder.php:38
224
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
225
- msgstr "Admin Columns Pro - Разработчик предлагает полную интеграцию Advanced Custom Fields, что позволяет легко просматривать и редактировать ACF поля из вашего обзора сообщений."
226
 
227
- #: ../classes/column/acf-placeholder.php:44
228
- msgid "Find out more"
229
- msgstr "Узнайте больше"
230
 
231
- #: ../classes/column/actions.php:29
232
- msgid "Actions"
233
- msgstr "действия"
234
 
235
- #: ../classes/column/actions.php:96
236
- msgid "Use icons?"
 
 
 
 
237
  msgstr ""
238
 
239
- #: ../classes/column/actions.php:96
240
- msgid "Use icons instead of text for displaying the actions."
241
  msgstr ""
242
 
243
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
244
- msgid "Yes"
245
  msgstr ""
246
 
247
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
248
- msgid "No"
249
  msgstr ""
250
 
251
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
252
- msgid "ID"
253
- msgstr "ID"
254
 
255
- #: ../classes/column/comment/agent.php:19
256
- msgid "Agent"
257
- msgstr "Агент"
258
 
259
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
260
- msgid "Approved"
261
- msgstr "Утверждено"
262
 
263
- #: ../classes/column/comment/author-avatar.php:19
264
- msgid "Avatar"
265
- msgstr "Аватар"
266
 
267
- #: ../classes/column/comment/author-email.php:19
268
- msgid "Author email"
269
- msgstr "Email автора"
270
 
271
- #: ../classes/column/comment/author-ip.php:19
272
- msgid "Author IP"
273
- msgstr "IP автора"
274
 
275
- #: ../classes/column/comment/author-name.php:12
276
- msgid "Author name"
277
  msgstr ""
278
 
279
- #: ../classes/column/comment/author-url.php:19
280
- msgid "Author url"
281
- msgstr "URL автора"
282
 
283
- #: ../classes/column/comment/author.php:19
284
- msgid "Author"
285
- msgstr "Автор"
286
 
287
- #: ../classes/column/comment/date-gmt.php:19
288
- msgid "Date GMT"
289
- msgstr "Дата GMT"
290
 
291
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
292
- #, php-format
293
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
294
- msgstr "Подтверждено на <a href=\"%1$s\">%2$s at %3$s</a>"
295
 
296
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
297
- msgid "Date"
298
- msgstr "Дата"
299
 
300
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
301
- msgid "Content"
302
- msgstr ""
303
 
304
- #: ../classes/column/comment/reply-to.php:19
305
- msgid "In Reply To"
306
- msgstr "В ответ на"
307
 
308
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
309
- msgid "User"
310
- msgstr ""
311
 
312
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
313
- msgid "Word count"
314
- msgstr "Счетчик слов"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
 
316
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
317
  msgid "Custom Field"
318
  msgstr "Пользовательское поле"
319
 
320
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
321
  msgid "Default"
322
  msgstr "По умолчанию"
323
 
324
- #: ../classes/column/custom-field.php:95
325
- msgid "Checkmark (true/false)"
326
- msgstr "Галочка (true/false)"
327
 
328
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
329
- msgid "Color"
330
- msgstr "Цвет"
331
 
332
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
333
- msgid "Counter"
334
- msgstr "Счетчик"
335
 
336
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
337
  msgid "Excerpt"
338
  msgstr "Отрывок"
339
 
340
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
341
- msgid "Image"
342
- msgstr "Изображение"
343
-
344
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
345
- msgid "Media Library"
346
- msgstr "Медиа библиотека"
347
 
348
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
349
  msgid "Multiple Values"
350
  msgstr "Несколько значений"
351
 
352
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
353
  msgid "Numeric"
354
  msgstr "Числовой"
355
 
356
- #: ../classes/column/custom-field.php:104
357
- msgid "Post Title (Post ID's)"
358
- msgstr "Заголовок поста (Post ID's)"
359
 
360
- #: ../classes/column/custom-field.php:105
361
- msgid "Username (User ID's)"
362
- msgstr "Имя пользователя (User ID's)"
363
 
364
- #: ../classes/column/custom-field.php:106
365
- msgid "Term Name (Term ID's)"
366
- msgstr ""
367
 
368
- #: ../classes/column/custom-field.php:390
369
- msgid "Select your custom field."
370
- msgstr "Выберитрать пользовательское поле."
371
 
372
- #: ../classes/column/custom-field.php:400
373
- msgid "No custom fields available."
374
- msgstr "Нет доступных пользовательских полей."
375
 
376
- #: ../classes/column/custom-field.php:400
377
- #, php-format
378
- msgid "Please create a %s item first."
379
- msgstr ""
380
 
381
- #: ../classes/column/custom-field.php:407
382
- msgid "Field Type"
383
- msgstr "Тип поля"
384
 
385
- #: ../classes/column/custom-field.php:407
386
- msgid "This will determine how the value will be displayed."
387
- msgstr "От этого будет зависеть, как будет отображаться значение."
388
 
389
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
390
- msgid "Description"
391
- msgstr "Описание"
392
 
393
- #: ../classes/column/link/length.php:19
394
- msgid "Length"
395
- msgstr "Длина"
396
 
397
- #: ../classes/column/link/notes.php:19
398
- msgid "Notes"
399
- msgstr "Примечания"
400
 
401
- #: ../classes/column/link/owner.php:19
402
- msgid "Owner"
403
- msgstr "Владелец"
404
 
405
- #: ../classes/column/link/rss.php:19
406
- msgid "Rss"
407
- msgstr "RSS"
408
 
409
- #: ../classes/column/link/target.php:19
410
- msgid "Target"
411
- msgstr "Цель"
412
 
413
- #: ../classes/column/media/alternate-text.php:19
414
- msgid "Alt"
415
- msgstr "Вариант"
416
 
417
- #: ../classes/column/media/attached-to.php:19
418
- msgid "Attached to post"
419
- msgstr ""
420
 
421
- #: ../classes/column/media/available-sizes.php:20
422
- msgid "Available Sizes"
423
- msgstr "Доступные размеры"
424
 
425
- #: ../classes/column/media/available-sizes.php:40
426
- msgid "full size"
427
- msgstr "полный размер"
428
 
429
- #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
430
- msgid "Caption"
431
- msgstr "Подпись"
432
 
433
- #: ../classes/column/media/dimensions.php:19
434
- msgid "Dimensions"
435
- msgstr "Размеры"
436
 
437
- #: ../classes/column/media/exif-data.php:19
438
- msgid "EXIF data"
439
- msgstr "EXIF данные"
440
 
441
- #: ../classes/column/media/exif-data.php:38
442
- msgid "Aperture"
443
- msgstr "Апертура"
444
 
445
- #: ../classes/column/media/exif-data.php:39
446
- msgid "Credit"
447
- msgstr "Кредит"
448
 
449
- #: ../classes/column/media/exif-data.php:40
450
- msgid "Camera"
451
- msgstr "Камера"
452
 
453
- #: ../classes/column/media/exif-data.php:42
454
- msgid "Timestamp"
455
- msgstr "Временной штамп"
456
 
457
- #: ../classes/column/media/exif-data.php:43
458
- msgid "Copyright EXIF"
459
- msgstr "Copyright EXIF"
460
 
461
- #: ../classes/column/media/exif-data.php:44
462
- msgid "Focal Length"
463
- msgstr "Фокусное расстояние"
464
 
465
- #: ../classes/column/media/exif-data.php:45
466
- msgid "ISO"
467
- msgstr "ISO"
468
 
469
- #: ../classes/column/media/exif-data.php:46
470
- msgid "Shutter Speed"
471
- msgstr "Скорость затвора"
472
 
473
- #: ../classes/column/media/exif-data.php:47
474
- msgid "Title"
475
- msgstr "Заголовок"
476
 
477
- #: ../classes/column/media/file-name.php:19
478
- msgid "File name"
479
- msgstr "Имя файла"
480
 
481
- #: ../classes/column/media/file-size.php:19
482
- msgid "File size"
483
- msgstr "Размер файла"
484
 
485
- #: ../classes/column/media/full-path.php:19 ../classes/column/media/full-path.php:92
486
- msgid "Full path"
487
- msgstr "Полный путь"
488
 
489
- #: ../classes/column/media/full-path.php:83
490
- msgid "Path scope"
491
- msgstr ""
492
 
493
- #: ../classes/column/media/full-path.php:84
494
- msgid "Part of the file path to display"
495
- msgstr ""
496
 
497
- #: ../classes/column/media/full-path.php:97
498
- msgid "Relative to domain"
499
- msgstr ""
500
 
501
- #: ../classes/column/media/full-path.php:102
502
- msgid "Relative to main uploads folder "
 
 
 
 
503
  msgstr ""
504
 
505
- #: ../classes/column/media/height.php:19
506
- msgid "Height"
507
- msgstr "Высота"
508
 
509
- #: ../classes/column/media/mime-type.php:19
510
- msgid "Mime type"
511
- msgstr "MIME тип"
512
 
513
- #: ../classes/column/post/attachment-count.php:19
514
- msgid "No. of Attachments"
515
- msgstr "Кол-во приложений"
516
 
517
- #: ../classes/column/post/attachment.php:19
518
- msgid "Attachments"
519
  msgstr ""
520
 
521
- #: ../classes/column/post/author-name.php:20
522
- msgid "Display Author As"
523
- msgstr "Показать автора как"
524
 
525
- #: ../classes/column/post/before-moretag.php:19
526
- msgid "Before More Tag"
527
- msgstr "Перед тэгом \"Подробнее\""
528
 
529
- #: ../classes/column/post/comment-count.php:20
530
- msgid "Comment count"
531
- msgstr "Счетчик комментариев"
532
 
533
- #: ../classes/column/post/comment-count.php:34
534
- msgid "Total"
535
- msgstr "Всего"
536
 
537
- #: ../classes/column/post/comment-count.php:36
538
- msgid "Pending"
539
- msgstr "В ожидании"
540
 
541
- #: ../classes/column/post/comment-count.php:37
542
- msgid "Spam"
543
- msgstr "Спам"
544
 
545
- #: ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
546
- msgid "Trash"
547
- msgstr "Корзина"
548
 
549
- #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
550
- msgid "Comment status"
551
- msgstr "Статус комментария"
552
 
553
- #: ../classes/column/post/comment-count.php:99
554
- msgid "Select which comment status you like to display."
555
- msgstr "Выберите статус комментария для отображения."
556
 
557
- #: ../classes/column/post/date-published.php:17
558
- msgid "Date Published"
559
- msgstr ""
560
 
561
- #: ../classes/column/post/depth.php:19
562
- msgid "Depth"
563
- msgstr ""
564
 
565
- #: ../classes/column/post/estimated-reading-time.php:19
566
- msgid "Estimated Reading Time"
567
- msgstr ""
568
 
569
- #: ../classes/column/post/estimated-reading-time.php:63
570
- msgid "second"
571
- msgid_plural "seconds"
572
- msgstr[0] ""
573
- msgstr[1] ""
574
- msgstr[2] ""
575
- msgstr[3] ""
576
 
577
- #: ../classes/column/post/estimated-reading-time.php:66
578
- msgid "minute"
579
- msgid_plural "minutes"
580
- msgstr[0] ""
581
- msgstr[1] ""
582
- msgstr[2] ""
583
- msgstr[3] ""
584
 
585
- #: ../classes/column/post/estimated-reading-time.php:103
586
- msgid "Words per minute"
 
 
 
 
587
  msgstr ""
588
 
589
- #: ../classes/column/post/estimated-reading-time.php:104
590
- msgid "Estimated reading time in words per minute"
591
  msgstr ""
592
 
593
- #: ../classes/column/post/featured-image.php:19
594
- msgid "Featured Image"
595
- msgstr "Рекомендуемые изображения"
596
 
597
- #: ../classes/column/post/formats.php:19
598
- msgid "Post Format"
599
- msgstr "Формат сообщения"
600
 
601
- #: ../classes/column/post/last-modified-author.php:20
602
- msgid "Last Modified Author"
603
  msgstr ""
604
 
605
- #: ../classes/column/post/modified.php:19
606
- msgid "Last modified"
607
- msgstr "Изменен"
608
 
609
- #: ../classes/column/post/order.php:19
610
- msgid "Page Order"
611
- msgstr "Порядок страницы"
612
 
613
- #: ../classes/column/post/page-template.php:19
614
- msgid "Page Template"
615
- msgstr "Шаблон страницы"
616
 
617
- #: ../classes/column/post/parent.php:19
618
- msgid "Parent"
619
- msgstr "Родитель"
620
 
621
- #: ../classes/column/post/path.php:19
622
- msgid "Path"
623
  msgstr ""
624
 
625
- #: ../classes/column/post/permalink.php:19
626
- msgid "Permalink"
627
- msgstr "Постоянная ссылка"
628
 
629
- #: ../classes/column/post/permalink.php:68
630
- msgid "Link to post"
631
  msgstr ""
632
 
633
- #: ../classes/column/post/permalink.php:68
634
- msgid "This will make the permalink clickable."
635
  msgstr ""
636
 
637
- #: ../classes/column/post/ping-status.php:19
638
- msgid "Ping status"
639
- msgstr "Ping статус"
640
 
641
- #: ../classes/column/post/roles.php:19
642
- msgid "Roles"
643
- msgstr "Роли"
644
 
645
- #: ../classes/column/post/shortcodes.php:19
646
- msgid "Shortcodes"
647
- msgstr ""
648
 
649
- #: ../classes/column/post/slug.php:19
650
- msgid "Slug"
651
- msgstr "Ссылка"
652
-
653
- #: ../classes/column/post/status.php:19
654
- msgid "Status"
655
- msgstr "Статус"
656
 
657
- #: ../classes/column/post/status.php:29
658
- msgid "Published"
659
- msgstr "Опубликовано"
660
 
661
- #: ../classes/column/post/status.php:30
662
- msgid "Draft"
663
- msgstr "Черновик"
664
 
665
- #: ../classes/column/post/status.php:31
666
- msgid "Scheduled"
667
- msgstr "Запланировано"
668
 
669
- #: ../classes/column/post/status.php:32
670
- msgid "Private"
671
- msgstr "Приватно"
672
 
673
- #: ../classes/column/post/status.php:33
674
- msgid "Pending Review"
675
- msgstr "Ожидается отзыв"
676
 
677
- #: ../classes/column/post/status.php:34
678
- msgid "Auto Draft"
679
- msgstr "Авто черновик"
680
 
681
- #: ../classes/column/post/sticky.php:19
682
- msgid "Sticky"
683
- msgstr "Липучка"
684
 
685
- #: ../classes/column/post/title-raw.php:19
686
- msgid "Title without actions"
687
- msgstr ""
688
 
689
- #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:87
690
- msgid "Taxonomy"
691
- msgstr "Таксономия"
692
 
693
- #: ../classes/column/used-by-menu.php:20
694
- msgid "Used by Menu"
695
- msgstr ""
696
 
697
- #: ../classes/column/used-by-menu.php:133
698
- msgid "Link to menu"
699
  msgstr ""
700
 
701
- #: ../classes/column/used-by-menu.php:133
702
- msgid "This will make the title link to the menu."
703
  msgstr ""
704
 
705
- #: ../classes/column/user/comment-count.php:19
706
- msgid "Comment Count"
707
- msgstr "Счетчик комментариев"
708
 
709
- #: ../classes/column/user/display-name.php:19
710
- msgid "Display name"
711
  msgstr ""
712
 
713
- #: ../classes/column/user/first-name.php:19
714
- msgid "First name"
715
- msgstr "Имя"
716
 
717
- #: ../classes/column/user/last-name.php:19
718
- msgid "Last name"
719
- msgstr "Фамилия"
720
 
721
- #: ../classes/column/user/post-count.php:19
722
- msgid "Post Count"
723
- msgstr "Счетчик сообщений"
724
 
725
- #: ../classes/column/user/post-count.php:89
726
- msgid "Post Type"
727
- msgstr "Тип сообщения"
728
 
729
- #: ../classes/column/user/registered.php:19
730
- msgid "Registered"
731
- msgstr "Зарегестрировано"
732
 
733
- #: ../classes/column/user/rich-editing.php:19
734
- msgid "Visual Editor"
735
- msgstr ""
736
 
737
- #: ../classes/column/user/url.php:19
738
- msgid "Url"
739
- msgstr "URL"
740
 
741
- #: ../classes/review_notice.php:55 ../classes/settings.php:170 ../classes/settings.php:589 ../classes/upgrade.php:135
742
- msgid "Admin Columns"
743
- msgstr "Admin Columns"
744
 
745
- #: ../classes/review_notice.php:58
746
- msgid "Admin Columns Pro"
747
- msgstr ""
748
 
749
- #: ../classes/review_notice.php:65
750
- #, php-format
751
- 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."
752
- msgstr ""
753
 
754
- #: ../classes/review_notice.php:68
755
- msgid "click here"
756
- msgstr ""
757
 
758
- #: ../classes/review_notice.php:72
759
- msgid "Leave a review!"
760
- msgstr ""
761
 
762
- #: ../classes/review_notice.php:73
763
- msgid "Permanently hide notice"
764
- msgstr ""
765
 
766
- #: ../classes/review_notice.php:80
767
- #, php-format
768
- 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."
769
- msgstr ""
770
 
771
- #: ../classes/review_notice.php:82
772
- msgid "documentation page"
773
- msgstr ""
774
 
775
- #: ../classes/review_notice.php:86
776
- #, php-format
777
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
778
- msgstr ""
779
 
780
- #: ../classes/review_notice.php:87
781
- msgid "our forums"
782
- msgstr ""
783
 
784
- #: ../classes/review_notice.php:91
785
- #, php-format
786
- msgid "You can also find help on the %s, and %s."
787
- msgstr ""
788
 
789
- #: ../classes/review_notice.php:92
790
- msgid "Admin Columns forums on WordPress.org"
791
  msgstr ""
792
 
793
- #: ../classes/review_notice.php:93
794
- msgid "find answers to some frequently asked questions"
795
  msgstr ""
796
 
797
- #: ../classes/settings.php:112
798
- msgid "Add-on successfully activated."
799
- msgstr "Дополнение успешно активировано."
800
-
801
- #: ../classes/settings.php:115
802
- msgid "Add-on successfully deactivated."
803
- msgstr "Дополнение успешно деактивировано."
804
-
805
- #: ../classes/settings.php:170
806
- msgid "Admin Columns Settings"
807
- msgstr "Настройки Admin Columns"
808
-
809
- #: ../classes/settings.php:220
810
- #, php-format
811
- msgid "%s column is already present and can not be duplicated."
812
- msgstr "%s колонка уже существует и не может быть продублирована."
813
-
814
- #: ../classes/settings.php:274
815
- msgid "Default settings succesfully restored."
816
- msgstr "Настройки по умолчанию успешно восстановлены."
817
-
818
- #: ../classes/settings.php:291
819
- msgid "Overview"
820
- msgstr "Обзор"
821
-
822
- #: ../classes/settings.php:294
823
- 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."
824
- msgstr "Этот плагин предназначен для добавления и удаления дополнительных столбцов на экраны администрирования для записей, страниц, библиотеки, комментариев, ссылок и пользователей. Изменяйте метки столбцов и изменяйте их порядок."
825
-
826
- #: ../classes/settings.php:297
827
- msgid "Basics"
828
- msgstr "Основы"
829
-
830
- #: ../classes/settings.php:299
831
- msgid "Change order"
832
- msgstr "Изменить порядок"
833
-
834
- #: ../classes/settings.php:300
835
- msgid "By dragging the columns you can change the order which they will appear in."
836
- msgstr "Перетаскивая столбцы, Вы можете изменить порядок их расположения."
837
-
838
- #: ../classes/settings.php:301
839
- msgid "Change label"
840
- msgstr "Изменить метку"
841
-
842
- #: ../classes/settings.php:302
843
- msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
844
- msgstr "Нажав на треугольник, вы увидите настройки колонки. Здесь вы можете изменить метки заголовков колонок."
845
-
846
- #: ../classes/settings.php:303
847
- msgid "Change column width"
848
- msgstr "Изменить ширину столбца"
849
-
850
- #: ../classes/settings.php:304
851
- 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."
852
- msgstr "Нажав на треугольник вы увидите настройки колонки. С помощью перетаскивания ползунка можно установить ширину столбцов в процентах."
853
-
854
- #: ../classes/settings.php:310
855
- msgid "'Custom Field' column"
856
- msgstr "Столбец 'Custom Field'"
857
-
858
- #: ../classes/settings.php:311
859
- msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
860
- msgstr "Столбец пользовательского поля использует поля постов и пользователей. Существует 10 типов, которые вы можете установить."
861
-
862
- #: ../classes/settings.php:313
863
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
864
- msgstr "Значение: Может быть строкой или массивом. Массив будет сведен и значения будут разделяться ',' запятой."
865
-
866
- #: ../classes/settings.php:314
867
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
868
- msgstr "Значение: должно содержать URL изображения или Attachment IDs, (разделенные ',' запятой)."
869
-
870
- #: ../classes/settings.php:315
871
- msgid "Value: This will show the first 20 words of the Post content."
872
- msgstr "Значение: Это покажет первые 20 слов содержания поста."
873
-
874
- #: ../classes/settings.php:316
875
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
876
- msgstr "Значение: должно быть массивом. Будут сведены любые многомерные масиивы."
877
-
878
- #: ../classes/settings.php:317
879
- 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."
880
- msgstr "Значение:. Целые только <br/> Если у вас есть 'сортировочный аддон', то будут использоваться для сортировки, так что вы можете сортировать свои сообщения по числовым значениям пользовательских полей."
881
-
882
- #: ../classes/settings.php:318
883
- #, php-format
884
- 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."
885
- msgstr "Value: Может быть Unix-штамп времени или формат даты, как описано в <a href='%s'>Кодексе</a>. Вы можете изменить выходной формат даты на странице <a href='%s'>общих настроек</a>."
886
-
887
- #: ../classes/settings.php:319
888
- msgid "Post Titles"
889
- msgstr "Заголовки постов"
890
-
891
- #: ../classes/settings.php:319
892
- msgid "Value: can be one or more Post ID's (seperated by ',')."
893
- msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
894
-
895
- #: ../classes/settings.php:320
896
- msgid "Usernames"
897
- msgstr "Имена пользователей"
898
-
899
- #: ../classes/settings.php:320
900
- msgid "Value: can be one or more User ID's (seperated by ',')."
901
- msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
902
-
903
- #: ../classes/settings.php:321
904
- msgid "Checkmark"
905
- msgstr "Галочка"
906
-
907
- #: ../classes/settings.php:321
908
- msgid "Value: should be a 1 (one) or 0 (zero)."
909
- msgstr "Значение: должно быть 1 или 0."
910
 
911
- #: ../classes/settings.php:322
912
- msgid "Value: hex value color, such as #808080."
913
- msgstr "Значение: значение цвета в HEX-формате, например #808080."
914
 
915
- #: ../classes/settings.php:323
916
- 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."
917
- msgstr "Значение: Может быть строкой или массивом. Это покажет какое количества раз мета ключ использовался объектом."
918
 
919
- #: ../classes/settings.php:412
920
- msgid "Welcome to Admin Columns"
921
- msgstr "Добро пожаловать в Admin Columns"
922
 
923
- #: ../classes/settings.php:415
924
- msgid "Thank you for updating to the latest version!"
925
- msgstr "Спасибо за обновление до последней версии!"
926
 
927
- #: ../classes/settings.php:416
928
- msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
929
- msgstr "Admin Columns сейчас более изысканный и приятный, чем когда-либо прежде. Мы надеемся, вам понравится."
930
 
931
- #: ../classes/settings.php:421
932
- msgid "What’s New"
933
- msgstr "Что нового"
934
 
935
- #: ../classes/settings.php:422
936
- msgid "Changelog"
937
- msgstr "История изменений"
938
 
939
- #: ../classes/settings.php:427
940
- msgid "Important"
941
- msgstr "Важно"
942
 
943
- #: ../classes/settings.php:429
944
- msgid "Database Changes"
945
- msgstr "Изменения базы данных"
946
 
947
- #: ../classes/settings.php:430
948
- msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
949
- msgstr "База данных была изменена между версиями 1 и 2. Но мы убедились, что вы все еще можете вернуться к версии 1х без каких-либо проблем."
950
 
951
- #: ../classes/settings.php:433
952
- msgid "Make sure you backup your database and then click"
953
- msgstr "Убедитесь, что вы сделали резервную копию базы данных, а затем нажмите"
954
 
955
- #: ../classes/settings.php:433 ../classes/upgrade.php:143
956
- msgid "Upgrade Database"
957
- msgstr "Обновить базу данных"
958
 
959
- #: ../classes/settings.php:436
960
- msgid "Potential Issues"
961
- msgstr "Потенциальные проблемы"
962
 
963
- #: ../classes/settings.php:437
964
- msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
965
- msgstr "Сделав значительную реорганизацию кода плагинов и фильтров, ваш сайт может работать неправильно. Важно, чтобы вы прочитали полное"
966
 
967
- #: ../classes/settings.php:437
968
- msgid "Migrating from v1 to v2"
969
- msgstr "Переход от v1 до v2"
970
 
971
- #: ../classes/settings.php:437
972
- msgid "guide to view the full list of changes."
973
- msgstr "руководство, чтобы увидеть полный список изменений."
974
 
975
- #: ../classes/settings.php:437
976
- #, php-format
977
- msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
978
- msgstr "Если вы обнаружите ошибки, пожалуйста, <a href=\"%s\">сообщите о них нам</a>, чтобы мы исправили их в следующем выпуске."
979
 
980
- #: ../classes/settings.php:440
981
- msgid "Important!"
982
- msgstr "Важно!"
983
 
984
- #: ../classes/settings.php:440
985
- msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
986
- msgstr "Если вы обновили плагин Admin Columns без предварительного знания о таких изменениях, пожалуйста сделайте откат к последней"
987
 
988
- #: ../classes/settings.php:440
989
- msgid "version 1"
990
- msgstr "версии 1"
991
 
992
- #: ../classes/settings.php:440
993
- msgid "of this plugin."
994
- msgstr "этого плагина."
995
 
996
- #: ../classes/settings.php:446
997
- msgid "Changelog for"
998
- msgstr "История изменений для"
999
 
1000
- #: ../classes/settings.php:461 ../classes/upgrade.php:63
1001
- msgid "Learn more"
1002
- msgstr "Изучить больше"
1003
 
1004
- #: ../classes/settings.php:471
1005
- msgid "Start using Admin Columns"
1006
- msgstr "начать, используя Admin Columns"
1007
 
1008
- #: ../classes/settings.php:490
1009
- msgid "General Settings"
1010
- msgstr "Общие настройки"
1011
 
1012
- #: ../classes/settings.php:491
1013
- msgid "Customize your Admin Columns settings."
1014
- msgstr "Настроить параметры Admin Columns."
1015
 
1016
- #: ../classes/settings.php:502
1017
- msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1018
  msgstr ""
1019
 
1020
- #: ../classes/settings.php:509 ../classes/settings.php:673
1021
- msgid "Save"
1022
- msgstr "Сохранить"
1023
-
1024
- #: ../classes/settings.php:549
1025
- msgid "Restore Settings"
1026
- msgstr "Восстановить настройки"
1027
 
1028
- #: ../classes/settings.php:550
1029
- msgid "This will delete all column settings and restore the default settings."
1030
- msgstr "Это удалит все настройки столбцов и восстановит настройки по умолчанию."
1031
 
1032
- #: ../classes/settings.php:556
1033
- msgid "Restore default settings"
1034
- msgstr "Восстановить настройки по умолчанию"
1035
 
1036
- #: ../classes/settings.php:556
1037
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1038
- msgstr "Предупреждение! Все сохраненные данные колонки администратора будут удалены. Это не может быть отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
1039
 
1040
- #: ../classes/settings.php:572
1041
- msgid "Posttypes"
1042
- msgstr "Типы постов"
1043
 
1044
- #: ../classes/settings.php:573
1045
- msgid "Others"
1046
- msgstr "Другое"
1047
 
1048
- #: ../classes/settings.php:574
1049
- msgid "Taxonomies"
1050
- msgstr "Таксономии"
1051
 
1052
- #: ../classes/settings.php:590 ../codepress-admin-columns.php:377
1053
- msgid "Settings"
1054
- msgstr "Настройки"
1055
 
1056
- #: ../classes/settings.php:591
1057
- msgid "Add-ons"
1058
- msgstr "Дополнения"
1059
 
1060
- #: ../classes/settings.php:659
1061
- #, php-format
1062
- msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
1063
- msgstr ""
1064
 
1065
- #: ../classes/settings.php:669
1066
- msgid "Store settings"
1067
- msgstr "Настройки памяти"
1068
 
1069
- #: ../classes/settings.php:673
1070
- msgid "Update"
1071
- msgstr "Обновить"
1072
 
1073
- #: ../classes/settings.php:677
1074
- #, php-format
1075
- msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1076
- msgstr "Предупреждение! Столбцы данных в %s будут удалены. Это не может быть отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
1077
 
1078
- #: ../classes/settings.php:678
1079
- msgid "Restore"
1080
- msgstr "Восстановить"
1081
 
1082
- #: ../classes/settings.php:678
1083
- msgid "columns"
1084
- msgstr "столбцы"
1085
 
1086
- #: ../classes/settings.php:697
1087
- msgid "Get Admin Columns Pro"
1088
- msgstr "Получить Admin Columns Pro"
1089
 
1090
- #: ../classes/settings.php:701
1091
- msgid "Add Sorting"
1092
- msgstr "Добавить сортировку"
1093
 
1094
- #: ../classes/settings.php:702
1095
- msgid "Add Filtering"
1096
- msgstr "Добавить фильтрацию"
1097
 
1098
- #: ../classes/settings.php:703
1099
- msgid "Add Import/Export"
1100
- msgstr "Добавить Импорт/Экспорт"
1101
 
1102
- #: ../classes/settings.php:704
1103
- msgid "Add Direct Editing"
1104
- msgstr "Добавить Прямое редактирование"
1105
 
1106
- #: ../classes/settings.php:707
1107
- #, php-format
1108
- msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1109
- msgstr "Проверьте <a href=\"%s\">Admin Columns Pro</a> для получения подробной информации!"
1110
 
1111
- #: ../classes/settings.php:738
1112
- msgid "Are you happy with Admin Columns?"
1113
  msgstr ""
1114
 
1115
- #: ../classes/settings.php:746
1116
- msgid "What's wrong? Need help? Let us know!"
1117
  msgstr ""
1118
 
1119
- #: ../classes/settings.php:747
1120
- msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1121
  msgstr ""
1122
 
1123
- #: ../classes/settings.php:755
1124
- msgid "Docs"
1125
  msgstr ""
1126
 
1127
- #: ../classes/settings.php:760
1128
- msgid "Forums"
1129
- msgstr ""
1130
 
1131
- #: ../classes/settings.php:769
1132
- msgid "Woohoo! We're glad to hear that!"
1133
- msgstr ""
1134
 
1135
- #: ../classes/settings.php:770
1136
- 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!"
1137
- msgstr ""
1138
 
1139
- #: ../classes/settings.php:774
1140
- msgid "Rate"
1141
  msgstr ""
1142
 
1143
- #: ../classes/settings.php:785
1144
- msgid "Tweet"
 
 
 
 
1145
  msgstr ""
1146
 
1147
- #: ../classes/settings.php:795
1148
- msgid "Buy Pro"
1149
  msgstr ""
1150
 
1151
- #: ../classes/settings.php:807
1152
- msgid "Support"
1153
- msgstr "Поддержка"
1154
 
1155
- #: ../classes/settings.php:810
1156
- msgid "Check the <strong>Help</strong> section in the top-right screen."
1157
- msgstr "Проверьте раздел <strong>Помощь</strong> в правом верхнем углу."
1158
 
1159
- #: ../classes/settings.php:813
1160
- #, php-format
1161
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1162
- msgstr "Для получения полной документации, отчетов об ошибках, особых предложений и других материалов <a href='%s'>посетите сайт Admin Columns</a>"
1163
 
1164
- #: ../classes/settings.php:842
1165
- msgid "Drag and drop to reorder"
1166
- msgstr "Перетащите, чтобы изменить порядок"
1167
 
1168
- #: ../classes/settings.php:845
1169
- msgid "Add Column"
1170
- msgstr "Добавить столбец"
1171
 
1172
- #: ../classes/settings.php:926
1173
- msgid "Active"
1174
- msgstr "Активно"
1175
 
1176
- #: ../classes/settings.php:927
1177
- msgid "Deactivate"
1178
- msgstr "Деактивировать"
1179
 
1180
- #: ../classes/settings.php:934
1181
- msgid "Installed"
1182
- msgstr "Установлено"
1183
 
1184
- #: ../classes/settings.php:935
1185
- msgid "Activate"
1186
- msgstr "Активировать"
1187
 
1188
- #: ../classes/settings.php:949
1189
- msgid "Download & Install"
1190
- msgstr "Загрузить и установить"
1191
 
1192
- #: ../classes/settings.php:954
1193
- msgid "Get this add-on"
1194
- msgstr "Получить это дополнение"
 
 
 
 
1195
 
1196
- #: ../classes/storage_model.php:237
1197
- msgid "settings succesfully restored."
1198
- msgstr "настройки успешно восстановлены."
 
 
 
 
1199
 
1200
- #: ../classes/storage_model.php:253
1201
- msgid "No columns settings available."
1202
- msgstr "Нет доступных настроек столбцов."
1203
 
1204
- #: ../classes/storage_model.php:274
1205
- #, php-format
1206
- msgid "You are trying to store the same settings for %s."
1207
- msgstr "Вы пытаетесь сохранить те же настройки для %s."
1208
 
1209
- #: ../classes/storage_model.php:278
1210
- #, php-format
1211
- msgid "Settings for %s updated successfully."
 
 
 
 
 
 
 
1212
  msgstr ""
1213
 
1214
- #: ../classes/storage_model.php:809
1215
- msgid "View"
1216
- msgstr "Смотреть"
 
 
 
 
1217
 
1218
- #: ../classes/storage_model/comment.php:13
1219
- msgid "Comments"
1220
- msgstr "Комментарии"
 
 
 
 
1221
 
1222
- #: ../classes/storage_model/comment.php:14
1223
- msgid "Comment"
1224
  msgstr ""
1225
 
1226
- #: ../classes/storage_model/link.php:13
1227
- msgid "Links"
1228
- msgstr "Ссылки"
1229
 
1230
- #: ../classes/storage_model/link.php:14
1231
- msgid "Link"
1232
  msgstr ""
1233
 
1234
- #: ../classes/storage_model/media.php:14
1235
- msgid "Media"
1236
  msgstr ""
1237
 
1238
- #: ../classes/storage_model/user.php:13
1239
- msgid "Users"
1240
- msgstr "Пользователи"
1241
 
1242
- #: ../classes/upgrade.php:62
1243
- msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
 
 
 
 
1244
  msgstr ""
1245
 
1246
- #: ../classes/upgrade.php:95
1247
- msgid "Upgrade"
1248
- msgstr "Обновить"
1249
 
1250
- #: ../classes/upgrade.php:136
1251
- msgid "requires a database upgrade"
1252
- msgstr "требуется обновление базы данных"
1253
 
1254
- #: ../classes/upgrade.php:139
1255
- msgid "why?"
1256
- msgstr "почему?"
1257
 
1258
- #: ../classes/upgrade.php:140
1259
- msgid "Please"
1260
- msgstr "Пожалуйста"
1261
 
1262
- #: ../classes/upgrade.php:141
1263
- msgid "backup your database"
1264
- msgstr "создайте резервную копию базы данных"
1265
 
1266
- #: ../classes/upgrade.php:142
1267
- msgid "then click"
1268
- msgstr "затем нажмите"
1269
 
1270
- #: ../classes/upgrade.php:351
1271
- msgid "Migrating Column Settings"
1272
- msgstr "Перенос настроек столбцов"
1273
 
1274
- #: ../classes/upgrade.php:387
1275
- msgid "No Upgrade Required"
1276
- msgstr "Обновление не требуется"
1277
 
1278
- #: ../classes/upgrade.php:388
1279
- msgid "Return to welcome screen."
1280
- msgstr "Вернуться на начальный экран."
1281
 
1282
- #: ../classes/upgrade.php:406
1283
- msgid "Upgrade Complete!"
1284
- msgstr "Обновление завершено!"
1285
 
1286
- #: ../classes/upgrade.php:406
1287
- msgid "Return to settings."
1288
- msgstr "Возврат к настройкам."
1289
 
1290
- #: ../classes/upgrade.php:407
1291
- msgid "Error"
1292
- msgstr "Ошибка"
1293
 
1294
- #: ../classes/upgrade.php:408
1295
- msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1296
- msgstr "Извините. Что-то пошло не так во время процесса обновления. Пожалуйста, сообщите об этом на форуме поддержки."
1297
 
1298
- #: ../codepress-admin-columns.php:444
1299
- msgid "Edit columns"
1300
- msgstr "Редактировать столбцы"
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
8
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Russian (http://www.transifex.com/codepress/admin-columns/language/ru/)\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Language: ru\n"
15
  "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
+ "POT-Creation-Date: \n"
20
+ "X-Generator: Poedit 1.8.5\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: ../codepress-admin-columns.php:451
25
+ msgid "Edit columns"
26
+ msgstr "Редактировать столбцы"
 
 
27
 
28
  #: ../classes/addons.php:110
29
  msgid "Plugins"
45
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
46
  msgstr ""
47
 
48
+ #: ../classes/column.php:624
49
  msgid "Thumbnail"
50
  msgstr "Миниатюра"
51
 
52
+ #: ../classes/column.php:625
53
  msgid "Medium"
54
  msgstr "Средний"
55
 
56
+ #: ../classes/column.php:626
57
  msgid "Large"
58
  msgstr "Большой"
59
 
60
+ #: ../classes/column.php:627
61
  msgid "Full"
62
  msgstr "Полный"
63
 
64
+ #: ../classes/column.php:1059
65
+ msgid "Exact match"
66
+ msgstr ""
67
+
68
+ #: ../classes/column.php:1060
69
+ msgid "Lesser than"
70
+ msgstr ""
71
+
72
+ #: ../classes/column.php:1061
73
+ msgid "Greater than"
74
+ msgstr ""
75
+
76
+ #: ../classes/column.php:1062
77
+ msgid "Between"
78
+ msgstr ""
79
+
80
+ #: ../classes/column.php:1089
81
  msgid "Date Format"
82
  msgstr "Формат даты"
83
 
84
+ #: ../classes/column.php:1090
85
  msgid "This will determine how the date will be displayed."
86
  msgstr "Это определяет отображение даты."
87
 
88
+ #: ../classes/column.php:1096
89
  msgid "Example:"
90
  msgstr "Пример:"
91
 
92
+ #: ../classes/column.php:1098
93
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
94
+ msgstr ""
 
95
 
96
+ #: ../classes/column.php:1099
97
  msgid "Documentation on date and time formatting."
98
  msgstr "Документация по форматированию даты и времени."
99
 
100
+ #: ../classes/column.php:1113
101
  msgid "Excerpt length"
102
  msgstr "Длина отрывка"
103
 
104
+ #: ../classes/column.php:1114
105
  msgid "Number of words"
106
  msgstr "Количество слов"
107
 
108
+ #: ../classes/column.php:1132
109
  msgid "Preview size"
110
  msgstr "Размер просмотра"
111
 
112
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
113
  msgid "Custom"
114
  msgstr "Пользовательский"
115
 
116
+ #: ../classes/column.php1152, ../classes/column.php:1328
117
  msgid "width"
118
  msgstr "ширина"
119
 
120
+ #: ../classes/column.php:1155
121
  msgid "height"
122
  msgstr "высота"
123
 
124
+ #: ../classes/column.php:1167
125
  msgid "Before"
126
  msgstr "Перед"
127
 
128
+ #: ../classes/column.php:1167
129
  msgid "This text will appear before the custom field value."
130
  msgstr "Этот текст появится перед значением настраиваемого поля."
131
 
132
+ #: ../classes/column.php:1168
133
  msgid "After"
134
  msgstr "После"
135
 
136
+ #: ../classes/column.php:1168
137
  msgid "This text will appear after the custom field value."
138
  msgstr "Этот текст появится перед значением настраиваемого поля."
139
 
140
+ #: ../classes/column.php:1177
141
  msgid "Display Name"
142
  msgstr "Отображаемое имя"
143
 
144
+ #: ../classes/column.php1178, ../classes/settings.php:733
145
  msgid "First Name"
146
  msgstr "Имя"
147
 
148
+ #: ../classes/column.php:1179
149
  msgid "Last Name"
150
  msgstr "Фамилия"
151
 
152
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
153
  msgid "Nickname"
154
  msgstr "Ник"
155
 
156
+ #: ../classes/column.php:1181
157
  msgid "User Login"
158
  msgstr "Логин пользователя"
159
 
160
+ #: ../classes/column.php:1182
161
  msgid "User Email"
162
  msgstr "Email пользователя"
163
 
164
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
165
  msgid "User ID"
166
  msgstr "ID пользователя"
167
 
168
+ #: ../classes/column.php:1184
169
  msgid "First and Last Name"
170
  msgstr "Имя и Фамилия"
171
 
172
+ #: ../classes/column.php:1187
173
  msgid "Display format"
174
  msgstr ""
175
 
176
+ #: ../classes/column.php:1187
177
  msgid "This is the format of the author name."
178
  msgstr "Формат имени автора."
179
 
180
+ #: ../classes/column.php:1350
181
  msgid "Edit"
182
  msgstr "Редактировать"
183
 
184
+ #: ../classes/column.php1352, ../classes/column.php:1444
185
  msgid "Clone"
186
  msgstr ""
187
 
188
+ #: ../classes/column.php:1354
189
  msgid "Remove"
190
  msgstr "Удалить"
191
 
192
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
193
  msgid "Type"
194
  msgstr "Тип"
195
 
196
+ #: ../classes/column.php:1372
197
  msgid "Choose a column type."
198
  msgstr "Выбрать тип колонки"
199
 
200
+ #: ../classes/column.php:1372
201
  msgid "Name"
202
  msgstr ""
203
 
204
+ #: ../classes/column.php:1382
205
  msgid "Label"
206
  msgstr "Метка"
207
 
208
+ #: ../classes/column.php:1382
209
  msgid "This is the name which will appear as the column header."
210
  msgstr "Это имя, которое будет отображаться в качестве заголовка столбца."
211
 
212
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
213
  msgid "Width"
214
  msgstr "Ширина"
215
 
216
+ #: ../classes/column.php:1391
217
  msgid "default"
218
  msgstr "по умолчанию"
219
 
220
+ #: ../classes/column.php:1392
221
  msgid "auto"
222
  msgstr ""
223
 
224
+ #: ../classes/column.php:1466
225
+ msgid "Property To Display"
226
+ msgstr ""
227
 
228
+ #: ../classes/column.php:1472
229
+ msgid "Post property to display for related post(s)."
230
  msgstr ""
231
 
232
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
233
+ msgid "Link To"
234
+ msgstr ""
 
235
 
236
+ #: ../classes/column.php:1489
237
+ msgid "Edit Post Author"
238
+ msgstr ""
239
 
240
+ #: ../classes/column.php:1490
241
+ msgid "View Public Post Author Page"
242
+ msgstr ""
243
 
244
+ #: ../classes/column.php:1492
245
+ msgid "Page the posts should link to."
246
+ msgstr ""
247
 
248
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
249
+ msgid "Admin Columns"
250
+ msgstr "Admin Columns"
251
+
252
+ #: ../classes/review_notice.php:58
253
+ msgid "Admin Columns Pro"
254
  msgstr ""
255
 
256
+ #: ../classes/review_notice.php:68
257
+ msgid "click here"
258
  msgstr ""
259
 
260
+ #: ../classes/review_notice.php:72
261
+ msgid "Leave a review!"
262
  msgstr ""
263
 
264
+ #: ../classes/review_notice.php:73
265
+ msgid "Permanently hide notice"
266
  msgstr ""
267
 
268
+ #: ../classes/review_notice.php:80
269
+ 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."
270
+ msgstr ""
271
 
272
+ #: ../classes/review_notice.php:82
273
+ msgid "documentation page"
274
+ msgstr ""
275
 
276
+ #: ../classes/review_notice.php:86
277
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
278
+ msgstr ""
279
 
280
+ #: ../classes/review_notice.php:87
281
+ msgid "our forums"
282
+ msgstr ""
283
 
284
+ #: ../classes/review_notice.php:91
285
+ msgid "You can also find help on the %s, and %s."
286
+ msgstr ""
287
 
288
+ #: ../classes/review_notice.php:92
289
+ msgid "Admin Columns forums on WordPress.org"
290
+ msgstr ""
291
 
292
+ #: ../classes/review_notice.php:93
293
+ msgid "find answers to some frequently asked questions"
294
  msgstr ""
295
 
296
+ #: ../classes/settings.php:113
297
+ msgid "Add-on successfully activated."
298
+ msgstr "Дополнение успешно активировано."
299
 
300
+ #: ../classes/settings.php:116
301
+ msgid "Add-on successfully deactivated."
302
+ msgstr "Дополнение успешно деактивировано."
303
 
304
+ #: ../classes/settings.php:170
305
+ msgid "Admin Columns Settings"
306
+ msgstr "Настройки Admin Columns"
307
 
308
+ #: ../classes/settings.php:228
309
+ msgid "%s column is already present and can not be duplicated."
310
+ msgstr "%s колонка уже существует и не может быть продублирована."
 
311
 
312
+ #: ../classes/settings.php:284
313
+ msgid "Default settings succesfully restored."
314
+ msgstr "Настройки по умолчанию успешно восстановлены."
315
 
316
+ #: ../classes/settings.php:301
317
+ msgid "Overview"
318
+ msgstr "Обзор"
319
 
320
+ #: ../classes/settings.php:304
321
+ 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."
322
+ msgstr "Этот плагин предназначен для добавления и удаления дополнительных столбцов на экраны администрирования для записей, страниц, библиотеки, комментариев, ссылок и пользователей. Изменяйте метки столбцов и изменяйте их порядок."
323
 
324
+ #: ../classes/settings.php:307
325
+ msgid "Basics"
326
+ msgstr "Основы"
327
 
328
+ #: ../classes/settings.php:309
329
+ msgid "Change order"
330
+ msgstr "Изменить порядок"
331
+
332
+ #: ../classes/settings.php:310
333
+ msgid "By dragging the columns you can change the order which they will appear in."
334
+ msgstr "Перетаскивая столбцы, Вы можете изменить порядок их расположения."
335
+
336
+ #: ../classes/settings.php:311
337
+ msgid "Change label"
338
+ msgstr "Изменить метку"
339
+
340
+ #: ../classes/settings.php:312
341
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
342
+ msgstr "Нажав на треугольник, вы увидите настройки колонки. Здесь вы можете изменить метки заголовков колонок."
343
+
344
+ #: ../classes/settings.php:313
345
+ msgid "Change column width"
346
+ msgstr "Изменить ширину столбца"
347
+
348
+ #: ../classes/settings.php:314
349
+ 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."
350
+ msgstr "Нажав на треугольник вы увидите настройки колонки. С помощью перетаскивания ползунка можно установить ширину столбцов в процентах."
351
 
352
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
353
  msgid "Custom Field"
354
  msgstr "Пользовательское поле"
355
 
356
+ #: ../classes/settings.php:320
357
+ msgid "'Custom Field' column"
358
+ msgstr "Столбец 'Custom Field'"
359
+
360
+ #: ../classes/settings.php:321
361
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
362
+ msgstr "Столбец пользовательского поля использует поля постов и пользователей. Существует 10 типов, которые вы можете установить."
363
+
364
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
365
  msgid "Default"
366
  msgstr "По умолчанию"
367
 
368
+ #: ../classes/settings.php:323
369
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
370
+ msgstr "Значение: Может быть строкой или массивом. Массив будет сведен и значения будут разделяться ',' запятой."
371
 
372
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
373
+ msgid "Image"
374
+ msgstr "Изображение"
375
 
376
+ #: ../classes/settings.php:324
377
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
378
+ msgstr "Значение: должно содержать URL изображения или Attachment IDs, (разделенные ',' запятой)."
379
 
380
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
381
  msgid "Excerpt"
382
  msgstr "Отрывок"
383
 
384
+ #: ../classes/settings.php:325
385
+ msgid "Value: This will show the first 20 words of the Post content."
386
+ msgstr "Значение: Это покажет первые 20 слов содержания поста."
 
 
 
 
387
 
388
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
389
  msgid "Multiple Values"
390
  msgstr "Несколько значений"
391
 
392
+ #: ../classes/settings.php:326
393
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
394
+ msgstr "Значение: должно быть массивом. Будут сведены любые многомерные масиивы."
395
+
396
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
397
  msgid "Numeric"
398
  msgstr "Числовой"
399
 
400
+ #: ../classes/settings.php:327
401
+ 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."
402
+ msgstr "Значение:. Целые только <br/> Если у вас есть 'сортировочный аддон', то будут использоваться для сортировки, так что вы можете сортировать свои сообщения по числовым значениям пользовательских полей."
403
 
404
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
405
+ msgid "Date"
406
+ msgstr "Дата"
407
 
408
+ #: ../classes/settings.php:328
409
+ 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."
410
+ msgstr "Value: Может быть Unix-штамп времени или формат даты, как описано в <a href='%s'>Кодексе</a>. Вы можете изменить выходной формат даты на странице <a href='%s'>общих настроек</a>."
411
 
412
+ #: ../classes/settings.php:329
413
+ msgid "Post Titles"
414
+ msgstr "Заголовки постов"
415
 
416
+ #: ../classes/settings.php:329
417
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
418
+ msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
419
 
420
+ #: ../classes/settings.php:330
421
+ msgid "Usernames"
422
+ msgstr "Имена пользователей"
 
423
 
424
+ #: ../classes/settings.php:330
425
+ msgid "Value: can be one or more User ID's (seperated by ',')."
426
+ msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
427
 
428
+ #: ../classes/settings.php:331
429
+ msgid "Checkmark"
430
+ msgstr "Галочка"
431
 
432
+ #: ../classes/settings.php:331
433
+ msgid "Value: should be a 1 (one) or 0 (zero)."
434
+ msgstr "Значение: должно быть 1 или 0."
435
 
436
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
437
+ msgid "Color"
438
+ msgstr "Цвет"
439
 
440
+ #: ../classes/settings.php:332
441
+ msgid "Value: hex value color, such as #808080."
442
+ msgstr "Значение: значение цвета в HEX-формате, например #808080."
443
 
444
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
445
+ msgid "Counter"
446
+ msgstr "Счетчик"
447
 
448
+ #: ../classes/settings.php:333
449
+ 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."
450
+ msgstr "Значение: Может быть строкой или массивом. Это покажет какое количества раз мета ключ использовался объектом."
451
 
452
+ #: ../classes/settings.php:422
453
+ msgid "Welcome to Admin Columns"
454
+ msgstr "Добро пожаловать в Admin Columns"
455
 
456
+ #: ../classes/settings.php:425
457
+ msgid "Thank you for updating to the latest version!"
458
+ msgstr "Спасибо за обновление до последней версии!"
459
 
460
+ #: ../classes/settings.php:426
461
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
462
+ msgstr "Admin Columns сейчас более изысканный и приятный, чем когда-либо прежде. Мы надеемся, вам понравится."
463
 
464
+ #: ../classes/settings.php:431
465
+ msgid "What’s New"
466
+ msgstr "Что нового"
467
 
468
+ #: ../classes/settings.php:432
469
+ msgid "Changelog"
470
+ msgstr "История изменений"
471
 
472
+ #: ../classes/settings.php:437
473
+ msgid "Important"
474
+ msgstr "Важно"
475
 
476
+ #: ../classes/settings.php:439
477
+ msgid "Database Changes"
478
+ msgstr "Изменения базы данных"
479
 
480
+ #: ../classes/settings.php:440
481
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
482
+ msgstr "База данных была изменена между версиями 1 и 2. Но мы убедились, что вы все еще можете вернуться к версии 1х без каких-либо проблем."
483
 
484
+ #: ../classes/settings.php:443
485
+ msgid "Make sure you backup your database and then click"
486
+ msgstr "Убедитесь, что вы сделали резервную копию базы данных, а затем нажмите"
487
 
488
+ #: ../classes/settings.php443, ../classes/upgrade.php:143
489
+ msgid "Upgrade Database"
490
+ msgstr "Обновить базу данных"
491
 
492
+ #: ../classes/settings.php:446
493
+ msgid "Potential Issues"
494
+ msgstr "Потенциальные проблемы"
495
 
496
+ #: ../classes/settings.php:447
497
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
498
+ msgstr "Сделав значительную реорганизацию кода плагинов и фильтров, ваш сайт может работать неправильно. Важно, чтобы вы прочитали полное"
499
 
500
+ #: ../classes/settings.php:447
501
+ msgid "Migrating from v1 to v2"
502
+ msgstr "Переход от v1 до v2"
503
 
504
+ #: ../classes/settings.php:447
505
+ msgid "guide to view the full list of changes."
506
+ msgstr "руководство, чтобы увидеть полный список изменений."
507
 
508
+ #: ../classes/settings.php:447
509
+ msgid "When you have found a bug please <a href='%s'>report them to us</a> so we can fix it in the next release."
510
+ msgstr ""
511
 
512
+ #: ../classes/settings.php:450
513
+ msgid "Important!"
514
+ msgstr "Важно!"
515
 
516
+ #: ../classes/settings.php:450
517
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
518
+ msgstr "Если вы обновили плагин Admin Columns без предварительного знания о таких изменениях, пожалуйста сделайте откат к последней"
519
 
520
+ #: ../classes/settings.php:450
521
+ msgid "version 1"
522
+ msgstr "версии 1"
523
 
524
+ #: ../classes/settings.php:450
525
+ msgid "of this plugin."
526
+ msgstr "этого плагина."
527
 
528
+ #: ../classes/settings.php:456
529
+ msgid "Changelog for"
530
+ msgstr "История изменений для"
531
 
532
+ #: ../classes/settings.php471, ../classes/upgrade.php:63
533
+ msgid "Learn more"
534
+ msgstr "Изучить больше"
535
 
536
+ #: ../classes/settings.php:481
537
+ msgid "Start using Admin Columns"
538
+ msgstr "начать, используя Admin Columns"
539
 
540
+ #: ../classes/settings.php:500
541
+ msgid "General Settings"
542
+ msgstr "Общие настройки"
543
 
544
+ #: ../classes/settings.php:501
545
+ msgid "Customize your Admin Columns settings."
546
+ msgstr "Настроить параметры Admin Columns."
547
+
548
+ #: ../classes/settings.php:512
549
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
550
  msgstr ""
551
 
552
+ #: ../classes/settings.php:559
553
+ msgid "Restore Settings"
554
+ msgstr "Восстановить настройки"
555
 
556
+ #: ../classes/settings.php:560
557
+ msgid "This will delete all column settings and restore the default settings."
558
+ msgstr "Это удалит все настройки столбцов и восстановит настройки по умолчанию."
559
 
560
+ #: ../classes/settings.php:566
561
+ msgid "Restore default settings"
562
+ msgstr "Восстановить настройки по умолчанию"
563
 
564
+ #: ../classes/settings.php:566
565
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
566
  msgstr ""
567
 
568
+ #: ../classes/settings.php:582
569
+ msgid "Posttypes"
570
+ msgstr "Типы постов"
571
 
572
+ #: ../classes/settings.php:583
573
+ msgid "Others"
574
+ msgstr "Другое"
575
 
576
+ #: ../classes/settings.php:584
577
+ msgid "Taxonomies"
578
+ msgstr "Таксономии"
579
 
580
+ #: ../classes/settings.php:600
581
+ msgid "Settings"
582
+ msgstr "Настройки"
583
 
584
+ #: ../classes/settings.php:601
585
+ msgid "Add-ons"
586
+ msgstr "Дополнения"
587
 
588
+ #: ../classes/settings.php:669
589
+ msgid "The columns for %s are set up via PHP and can therefore not be edited in the admin panel."
590
+ msgstr ""
591
 
592
+ #: ../classes/settings.php:679
593
+ msgid "Store settings"
594
+ msgstr "Настройки памяти"
595
 
596
+ #: ../classes/settings.php:687
597
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
598
+ msgstr ""
599
 
600
+ #: ../classes/settings.php:688
601
+ msgid "Restore"
602
+ msgstr "Восстановить"
603
 
604
+ #: ../classes/settings.php:688
605
+ msgid "columns"
606
+ msgstr "столбцы"
607
 
608
+ #: ../classes/settings.php:707
609
+ msgid "Get Admin Columns Pro"
610
+ msgstr "Получить Admin Columns Pro"
611
 
612
+ #: ../classes/settings.php:711
613
+ msgid "Add Sorting"
614
+ msgstr "Добавить сортировку"
615
 
616
+ #: ../classes/settings.php:712
617
+ msgid "Add Filtering"
618
+ msgstr "Добавить фильтрацию"
 
 
 
 
619
 
620
+ #: ../classes/settings.php:713
621
+ msgid "Add Import/Export"
622
+ msgstr "Добавить Импорт/Экспорт"
 
 
 
 
623
 
624
+ #: ../classes/settings.php:714
625
+ msgid "Add Direct Editing"
626
+ msgstr "Добавить Прямое редактирование"
627
+
628
+ #: ../classes/settings.php:717
629
+ msgid "Check out <a href='%s'>Admin Columns Pro</a> for more details!"
630
  msgstr ""
631
 
632
+ #: ../classes/settings.php:730
633
+ msgid "Subscribe to receive news &amp; updates below."
634
  msgstr ""
635
 
636
+ #: ../classes/settings.php:737
637
+ msgid "Your Email"
638
+ msgstr ""
639
 
640
+ #: ../classes/settings.php:748
641
+ msgid "Are you happy with Admin Columns?"
642
+ msgstr ""
643
 
644
+ #: ../classes/settings.php:756
645
+ msgid "What's wrong? Need help? Let us know!"
646
  msgstr ""
647
 
648
+ #: ../classes/settings.php:757
649
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
650
+ msgstr ""
651
 
652
+ #: ../classes/settings.php:765
653
+ msgid "Docs"
654
+ msgstr ""
655
 
656
+ #: ../classes/settings.php:770
657
+ msgid "Forums"
658
+ msgstr ""
659
 
660
+ #: ../classes/settings.php:779
661
+ msgid "Woohoo! We're glad to hear that!"
662
+ msgstr ""
663
 
664
+ #: ../classes/settings.php:780
665
+ 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!"
666
  msgstr ""
667
 
668
+ #: ../classes/settings.php:784
669
+ msgid "Rate"
670
+ msgstr ""
671
 
672
+ #: ../classes/settings.php:795
673
+ msgid "Tweet"
674
  msgstr ""
675
 
676
+ #: ../classes/settings.php:805
677
+ msgid "Buy Pro"
678
  msgstr ""
679
 
680
+ #: ../classes/settings.php:817
681
+ msgid "Support"
682
+ msgstr "Поддержка"
683
 
684
+ #: ../classes/settings.php:820
685
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
686
+ msgstr "Проверьте раздел <strong>Помощь</strong> в правом верхнем углу."
687
 
688
+ #: ../classes/settings.php:823
689
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
690
+ msgstr "Для получения полной документации, отчетов об ошибках, особых предложений и других материалов <a href='%s'>посетите сайт Admin Columns</a>"
691
 
692
+ #: ../classes/settings.php:852
693
+ msgid "Drag and drop to reorder"
694
+ msgstr "Перетащите, чтобы изменить порядок"
 
 
 
 
695
 
696
+ #: ../classes/settings.php:855
697
+ msgid "Add Column"
698
+ msgstr "Добавить столбец"
699
 
700
+ #: ../classes/settings.php:936
701
+ msgid "Active"
702
+ msgstr "Активно"
703
 
704
+ #: ../classes/settings.php:937
705
+ msgid "Deactivate"
706
+ msgstr "Деактивировать"
707
 
708
+ #: ../classes/settings.php:944
709
+ msgid "Installed"
710
+ msgstr "Установлено"
711
 
712
+ #: ../classes/settings.php:945
713
+ msgid "Activate"
714
+ msgstr "Активировать"
715
 
716
+ #: ../classes/settings.php:959
717
+ msgid "Download & Install"
718
+ msgstr "Загрузить и установить"
719
 
720
+ #: ../classes/settings.php:964
721
+ msgid "Get this add-on"
722
+ msgstr "Получить это дополнение"
723
 
724
+ #: ../classes/storage_model.php:262
725
+ msgid "settings succesfully restored."
726
+ msgstr "настройки успешно восстановлены."
727
 
728
+ #: ../classes/storage_model.php:278
729
+ msgid "No columns settings available."
730
+ msgstr "Нет доступных настроек столбцов."
731
 
732
+ #: ../classes/storage_model.php:299
733
+ msgid "You are trying to store the same settings for %s."
734
+ msgstr "Вы пытаетесь сохранить те же настройки для %s."
735
 
736
+ #: ../classes/storage_model.php:303
737
+ msgid "Settings for %s updated successfully."
738
  msgstr ""
739
 
740
+ #: ../classes/storage_model.php:643
741
+ msgid "Columns by Plugins"
742
  msgstr ""
743
 
744
+ #: ../classes/storage_model.php:862
745
+ msgid "View"
746
+ msgstr "Смотреть"
747
 
748
+ #: ../classes/upgrade.php:62
749
+ msgid "The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro"
750
  msgstr ""
751
 
752
+ #: ../classes/upgrade.php95, ../classes/upgrade.php:95
753
+ msgid "Upgrade"
754
+ msgstr "Обновить"
755
 
756
+ #: ../classes/upgrade.php:136
757
+ msgid "requires a database upgrade"
758
+ msgstr "требуется обновление базы данных"
759
 
760
+ #: ../classes/upgrade.php:139
761
+ msgid "why?"
762
+ msgstr "почему?"
763
 
764
+ #: ../classes/upgrade.php:140
765
+ msgid "Please"
766
+ msgstr "Пожалуйста"
767
 
768
+ #: ../classes/upgrade.php:141
769
+ msgid "backup your database"
770
+ msgstr "создайте резервную копию базы данных"
771
 
772
+ #: ../classes/upgrade.php:142
773
+ msgid "then click"
774
+ msgstr "затем нажмите"
775
 
776
+ #: ../classes/upgrade.php:351
777
+ msgid "Migrating Column Settings"
778
+ msgstr "Перенос настроек столбцов"
779
 
780
+ #: ../classes/upgrade.php:387
781
+ msgid "No Upgrade Required"
782
+ msgstr "Обновление не требуется"
783
 
784
+ #: ../classes/upgrade.php:388
785
+ msgid "Return to welcome screen."
786
+ msgstr "Вернуться на начальный экран."
787
 
788
+ #: ../classes/upgrade.php:406
789
+ msgid "Upgrade Complete!"
790
+ msgstr "Обновление завершено!"
 
791
 
792
+ #: ../classes/upgrade.php:406
793
+ msgid "Return to settings."
794
+ msgstr "Возврат к настройкам."
795
 
796
+ #: ../classes/upgrade.php:407
797
+ msgid "Error"
798
+ msgstr "Ошибка"
799
 
800
+ #: ../classes/upgrade.php:408
801
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
802
+ msgstr "Извините. Что-то пошло не так во время процесса обновления. Пожалуйста, сообщите об этом на форуме поддержки."
803
 
804
+ #: ../classes/column/acf-placeholder.php:19
805
+ msgid "ACF Field"
806
+ msgstr "Поле ACF"
 
807
 
808
+ #: ../classes/column/acf-placeholder.php:35
809
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
810
+ msgstr "Если Вы имеете лицензию разработчика, пожалуйста, загрузите и утановите Ваш ACF add-on по ссылке <a href='%s'>add-ons tab</a>."
811
 
812
+ #: ../classes/column/acf-placeholder.php:38
813
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
814
+ msgstr "Admin Columns Pro - Разработчик предлагает полную интеграцию Advanced Custom Fields, что позволяет легко просматривать и редактировать ACF поля из вашего обзора сообщений."
 
815
 
816
+ #: ../classes/column/acf-placeholder.php:44
817
+ msgid "Find out more"
818
+ msgstr "Узнайте больше"
819
 
820
+ #: ../classes/column/actions.php29, ../classes/column/link/actions.php:19
821
+ msgid "Actions"
822
+ msgstr "действия"
 
823
 
824
+ #: ../classes/column/actions.php:96
825
+ msgid "Use icons?"
826
  msgstr ""
827
 
828
+ #: ../classes/column/actions.php:96
829
+ msgid "Use icons instead of text for displaying the actions."
830
  msgstr ""
831
 
832
+ #: ../classes/column/custom-field.php:96
833
+ msgid "Checkmark (true/false)"
834
+ msgstr "Галочка (true/false)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
835
 
836
+ #: ../classes/column/custom-field.php:102
837
+ msgid "Media Library"
838
+ msgstr "Медиа библиотека"
839
 
840
+ #: ../classes/column/custom-field.php:105
841
+ msgid "Post Title (Post ID's)"
842
+ msgstr "Заголовок поста (Post ID's)"
843
 
844
+ #: ../classes/column/custom-field.php:106
845
+ msgid "Username (User ID's)"
846
+ msgstr "Имя пользователя (User ID's)"
847
 
848
+ #: ../classes/column/custom-field.php:107
849
+ msgid "Term Name (Term ID's)"
850
+ msgstr ""
851
 
852
+ #: ../classes/column/custom-field.php:391
853
+ msgid "Select your custom field."
854
+ msgstr "Выберитрать пользовательское поле."
855
 
856
+ #: ../classes/column/custom-field.php:401
857
+ msgid "No custom fields available."
858
+ msgstr "Нет доступных пользовательских полей."
859
 
860
+ #: ../classes/column/custom-field.php:401
861
+ msgid "Please create a %s item first."
862
+ msgstr ""
863
 
864
+ #: ../classes/column/custom-field.php:408
865
+ msgid "Field Type"
866
+ msgstr "Тип поля"
867
 
868
+ #: ../classes/column/custom-field.php:408
869
+ msgid "This will determine how the value will be displayed."
870
+ msgstr "От этого будет зависеть, как будет отображаться значение."
871
 
872
+ #: ../classes/column/taxonomy.php20, ../classes/column/taxonomy.php:83
873
+ msgid "Taxonomy"
874
+ msgstr "Таксономия"
875
 
876
+ #: ../classes/column/used-by-menu.php:20
877
+ msgid "Used by Menu"
878
+ msgstr ""
879
 
880
+ #: ../classes/column/used-by-menu.php:133
881
+ msgid "Link to menu"
882
+ msgstr ""
883
 
884
+ #: ../classes/column/used-by-menu.php:133
885
+ msgid "This will make the title link to the menu."
886
+ msgstr ""
887
 
888
+ #: ../classes/column/comment/ID.php19, ../classes/column/media/ID.php19, ../classes/column/post/ID.php19, ../classes/column/link/ID.php:19
889
+ msgid "ID"
890
+ msgstr "ID"
891
 
892
+ #: ../classes/column/comment/agent.php:19
893
+ msgid "Agent"
894
+ msgstr "Агент"
895
 
896
+ #: ../classes/column/comment/approved.php19, ../classes/column/post/comment-count.php:35
897
+ msgid "Approved"
898
+ msgstr "Утверждено"
899
 
900
+ #: ../classes/column/comment/author-avatar.php:19
901
+ msgid "Avatar"
902
+ msgstr "Аватар"
 
903
 
904
+ #: ../classes/column/comment/author-email.php:19
905
+ msgid "Author email"
906
+ msgstr "Email автора"
907
 
908
+ #: ../classes/column/comment/author-ip.php:19
909
+ msgid "Author IP"
910
+ msgstr "IP автора"
911
 
912
+ #: ../classes/column/comment/author-name.php:12
913
+ msgid "Author name"
914
+ msgstr ""
915
 
916
+ #: ../classes/column/comment/author-url.php:19
917
+ msgid "Author url"
918
+ msgstr "URL автора"
919
 
920
+ #: ../classes/column/comment/author.php:19
921
+ msgid "Author"
922
+ msgstr "Автор"
923
 
924
+ #: ../classes/column/comment/date-gmt.php:19
925
+ msgid "Date GMT"
926
+ msgstr "Дата GMT"
927
 
928
+ #: ../classes/column/comment/excerpt.php19, ../classes/column/post/content.php:19
929
+ msgid "Content"
930
+ msgstr ""
931
 
932
+ #: ../classes/column/comment/post.php:19
933
+ msgid "Post"
934
+ msgstr ""
935
 
936
+ #: ../classes/column/comment/reply-to.php:19
937
+ msgid "In Reply To"
938
+ msgstr "В ответ на"
939
 
940
+ #: ../classes/column/comment/user.php:11
941
+ msgid "User"
942
  msgstr ""
943
 
944
+ #: ../classes/column/comment/word-count.php19, ../classes/column/post/word-count.php:19
945
+ msgid "Word count"
946
+ msgstr "Счетчик слов"
 
 
 
 
947
 
948
+ #: ../classes/column/media/alternate-text.php:19
949
+ msgid "Alt"
950
+ msgstr "Вариант"
951
 
952
+ #: ../classes/column/media/attached-to.php:19
953
+ msgid "Attached to post"
954
+ msgstr ""
955
 
956
+ #: ../classes/column/media/available-sizes.php:20
957
+ msgid "Available Sizes"
958
+ msgstr "Доступные размеры"
959
 
960
+ #: ../classes/column/media/available-sizes.php:40
961
+ msgid "full size"
962
+ msgstr "полный размер"
963
 
964
+ #: ../classes/column/media/caption.php19, ../classes/column/media/exif-data.php:41
965
+ msgid "Caption"
966
+ msgstr "Подпись"
967
 
968
+ #: ../classes/column/media/description.php19, ../classes/column/link/description.php19, ../classes/column/user/description.php:19
969
+ msgid "Description"
970
+ msgstr "Описание"
971
 
972
+ #: ../classes/column/media/dimensions.php:19
973
+ msgid "Dimensions"
974
+ msgstr "Размеры"
975
 
976
+ #: ../classes/column/media/exif-data.php:19
977
+ msgid "EXIF data"
978
+ msgstr "EXIF данные"
979
 
980
+ #: ../classes/column/media/exif-data.php:38
981
+ msgid "Aperture"
982
+ msgstr "Апертура"
 
983
 
984
+ #: ../classes/column/media/exif-data.php:39
985
+ msgid "Credit"
986
+ msgstr "Кредит"
987
 
988
+ #: ../classes/column/media/exif-data.php:40
989
+ msgid "Camera"
990
+ msgstr "Камера"
991
 
992
+ #: ../classes/column/media/exif-data.php:42
993
+ msgid "Timestamp"
994
+ msgstr "Временной штамп"
 
995
 
996
+ #: ../classes/column/media/exif-data.php:43
997
+ msgid "Copyright EXIF"
998
+ msgstr "Copyright EXIF"
999
 
1000
+ #: ../classes/column/media/exif-data.php:44
1001
+ msgid "Focal Length"
1002
+ msgstr "Фокусное расстояние"
1003
 
1004
+ #: ../classes/column/media/exif-data.php:45
1005
+ msgid "ISO"
1006
+ msgstr "ISO"
1007
 
1008
+ #: ../classes/column/media/exif-data.php:46
1009
+ msgid "Shutter Speed"
1010
+ msgstr "Скорость затвора"
1011
 
1012
+ #: ../classes/column/media/exif-data.php:47
1013
+ msgid "Title"
1014
+ msgstr "Заголовок"
1015
 
1016
+ #: ../classes/column/media/file-name.php:19
1017
+ msgid "File name"
1018
+ msgstr "Имя файла"
1019
 
1020
+ #: ../classes/column/media/file-size.php:19
1021
+ msgid "File size"
1022
+ msgstr "Размер файла"
1023
 
1024
+ #: ../classes/column/media/full-path.php19, ../classes/column/media/full-path.php:92
1025
+ msgid "Full path"
1026
+ msgstr "Полный путь"
 
1027
 
1028
+ #: ../classes/column/media/full-path.php:83
1029
+ msgid "Path scope"
1030
  msgstr ""
1031
 
1032
+ #: ../classes/column/media/full-path.php:84
1033
+ msgid "Part of the file path to display"
1034
  msgstr ""
1035
 
1036
+ #: ../classes/column/media/full-path.php:97
1037
+ msgid "Relative to domain"
1038
  msgstr ""
1039
 
1040
+ #: ../classes/column/media/full-path.php:102
1041
+ msgid "Relative to main uploads folder "
1042
  msgstr ""
1043
 
1044
+ #: ../classes/column/media/height.php:19
1045
+ msgid "Height"
1046
+ msgstr "Высота"
1047
 
1048
+ #: ../classes/column/media/mime-type.php:19
1049
+ msgid "Mime type"
1050
+ msgstr "MIME тип"
1051
 
1052
+ #: ../classes/column/post/attachment-count.php:19
1053
+ msgid "No. of Attachments"
1054
+ msgstr "Кол-во приложений"
1055
 
1056
+ #: ../classes/column/post/attachment.php:19
1057
+ msgid "Attachments"
1058
  msgstr ""
1059
 
1060
+ #: ../classes/column/post/author-name.php:20
1061
+ msgid "Display Author As"
1062
+ msgstr "Показать автора как"
1063
+
1064
+ #: ../classes/column/post/author-name.php:100
1065
+ msgid "View Public Author Page"
1066
  msgstr ""
1067
 
1068
+ #: ../classes/column/post/author-name.php:102
1069
+ msgid "Page the author name should link to."
1070
  msgstr ""
1071
 
1072
+ #: ../classes/column/post/before-moretag.php:19
1073
+ msgid "Before More Tag"
1074
+ msgstr "Перед тэгом \"Подробнее\""
1075
 
1076
+ #: ../classes/column/post/comment-count.php:20
1077
+ msgid "Comment count"
1078
+ msgstr "Счетчик комментариев"
1079
 
1080
+ #: ../classes/column/post/comment-count.php:34
1081
+ msgid "Total"
1082
+ msgstr "Всего"
 
1083
 
1084
+ #: ../classes/column/post/comment-count.php:36
1085
+ msgid "Pending"
1086
+ msgstr "В ожидании"
1087
 
1088
+ #: ../classes/column/post/comment-count.php:37
1089
+ msgid "Spam"
1090
+ msgstr "Спам"
1091
 
1092
+ #: ../classes/column/post/comment-count.php:38
1093
+ msgid "Trash"
1094
+ msgstr "Корзина"
1095
 
1096
+ #: ../classes/column/post/comment-count.php99, ../classes/column/post/comment-status.php:20
1097
+ msgid "Comment status"
1098
+ msgstr "Статус комментария"
1099
 
1100
+ #: ../classes/column/post/comment-count.php:99
1101
+ msgid "Select which comment status you like to display."
1102
+ msgstr "Выберите статус комментария для отображения."
1103
 
1104
+ #: ../classes/column/post/depth.php:19
1105
+ msgid "Depth"
1106
+ msgstr ""
1107
 
1108
+ #: ../classes/column/post/estimated-reading-time.php:19
1109
+ msgid "Estimated Reading Time"
1110
+ msgstr ""
1111
 
1112
+ #: ../classes/column/post/estimated-reading-time.php:66
1113
+ msgid "second"
1114
+ msgid_plural "seconds"
1115
+ msgstr[0] ""
1116
+ msgstr[1] ""
1117
+ msgstr[2] ""
1118
+ msgstr[3] ""
1119
 
1120
+ #: ../classes/column/post/estimated-reading-time.php:69
1121
+ msgid "minute"
1122
+ msgid_plural "minutes"
1123
+ msgstr[0] ""
1124
+ msgstr[1] ""
1125
+ msgstr[2] ""
1126
+ msgstr[3] ""
1127
 
1128
+ #: ../classes/column/post/estimated-reading-time.php:107
1129
+ msgid "Words per minute"
1130
+ msgstr ""
1131
 
1132
+ #: ../classes/column/post/estimated-reading-time.php:108
1133
+ msgid "Estimated reading time in words per minute"
1134
+ msgstr ""
 
1135
 
1136
+ #: ../classes/column/post/featured-image.php:19
1137
+ msgid "Featured Image"
1138
+ msgstr "Рекомендуемые изображения"
1139
+
1140
+ #: ../classes/column/post/formats.php:19
1141
+ msgid "Post Format"
1142
+ msgstr "Формат сообщения"
1143
+
1144
+ #: ../classes/column/post/last-modified-author.php:20
1145
+ msgid "Last Modified Author"
1146
  msgstr ""
1147
 
1148
+ #: ../classes/column/post/modified.php:19
1149
+ msgid "Last modified"
1150
+ msgstr "Изменен"
1151
+
1152
+ #: ../classes/column/post/order.php:19
1153
+ msgid "Order"
1154
+ msgstr ""
1155
 
1156
+ #: ../classes/column/post/page-template.php:19
1157
+ msgid "Page Template"
1158
+ msgstr "Шаблон страницы"
1159
+
1160
+ #: ../classes/column/post/parent.php:19
1161
+ msgid "Parent"
1162
+ msgstr "Родитель"
1163
 
1164
+ #: ../classes/column/post/path.php:19
1165
+ msgid "Path"
1166
  msgstr ""
1167
 
1168
+ #: ../classes/column/post/permalink.php:19
1169
+ msgid "Permalink"
1170
+ msgstr "Постоянная ссылка"
1171
 
1172
+ #: ../classes/column/post/permalink.php:68
1173
+ msgid "Link to post"
1174
  msgstr ""
1175
 
1176
+ #: ../classes/column/post/permalink.php:68
1177
+ msgid "This will make the permalink clickable."
1178
  msgstr ""
1179
 
1180
+ #: ../classes/column/post/ping-status.php:19
1181
+ msgid "Ping status"
1182
+ msgstr "Ping статус"
1183
 
1184
+ #: ../classes/column/post/roles.php:19
1185
+ msgid "Roles"
1186
+ msgstr "Роли"
1187
+
1188
+ #: ../classes/column/post/shortcodes.php:19
1189
+ msgid "Shortcodes"
1190
  msgstr ""
1191
 
1192
+ #: ../classes/column/post/slug.php:19
1193
+ msgid "Slug"
1194
+ msgstr "Ссылка"
1195
 
1196
+ #: ../classes/column/post/status.php:21
1197
+ msgid "Status"
1198
+ msgstr "Статус"
1199
 
1200
+ #: ../classes/column/post/sticky.php:19
1201
+ msgid "Sticky"
1202
+ msgstr "Липучка"
1203
 
1204
+ #: ../classes/column/post/title-raw.php:19
1205
+ msgid "Title without actions"
1206
+ msgstr ""
1207
 
1208
+ #: ../classes/column/link/length.php:19
1209
+ msgid "Length"
1210
+ msgstr "Длина"
1211
 
1212
+ #: ../classes/column/link/notes.php:19
1213
+ msgid "Notes"
1214
+ msgstr "Примечания"
1215
 
1216
+ #: ../classes/column/link/owner.php:19
1217
+ msgid "Owner"
1218
+ msgstr "Владелец"
1219
 
1220
+ #: ../classes/column/link/rss.php:19
1221
+ msgid "Rss"
1222
+ msgstr "RSS"
1223
 
1224
+ #: ../classes/column/link/target.php:19
1225
+ msgid "Target"
1226
+ msgstr "Цель"
1227
 
1228
+ #: ../classes/column/user/display-name.php:19
1229
+ msgid "Display name"
1230
+ msgstr ""
1231
 
1232
+ #: ../classes/column/user/first-name.php:19
1233
+ msgid "First name"
1234
+ msgstr "Имя"
1235
 
1236
+ #: ../classes/column/user/last-name.php:19
1237
+ msgid "Last name"
1238
+ msgstr "Фамилия"
1239
 
1240
+ #: ../classes/column/user/post-count.php:19
1241
+ msgid "Post Count"
1242
+ msgstr "Счетчик сообщений"
1243
 
1244
+ #: ../classes/column/user/post-count.php:89
1245
+ msgid "Post Type"
1246
+ msgstr "Тип сообщения"
1247
+
1248
+ #: ../classes/column/user/registered.php:19
1249
+ msgid "Registered"
1250
+ msgstr "Зарегестрировано"
1251
+
1252
+ #: ../classes/column/user/rich-editing.php:19
1253
+ msgid "Visual Editor"
1254
+ msgstr ""
1255
+
1256
+ #: ../classes/column/user/url.php:19
1257
+ msgid "Url"
1258
+ msgstr "URL"
languages/codepress-admin-columns-sv_SE.mo ADDED
Binary file
languages/{cpac-sv_SE.po → codepress-admin-columns-sv_SE.po} RENAMED
@@ -1,32 +1,31 @@
1
- #
 
2
  # Translators:
3
  # Fredrik Andersson <fidde.andersson@telia.com>, 2013-2015
4
  # Tobias Schutter <info@codepress.nl>, 2013
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-04-29 13:58+0100\n"
10
- "PO-Revision-Date: 2015-06-26 13:26+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-columns/language/sv_SE/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: sv_SE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.8.1\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
- "X-Poedit-SearchPathExcluded-0: ../src\n"
25
- "X-Poedit-SearchPathExcluded-1: ../classes/column/post/actions.php\n"
26
- "X-Poedit-SearchPathExcluded-2: ../classes/column/media/actions.php\n"
27
- "X-Poedit-SearchPathExcluded-3: ../classes/column/user/actions.php\n"
28
- "X-Poedit-SearchPathExcluded-4: ../classes/column/comment/actions.php\n"
29
- "X-Poedit-SearchPathExcluded-5: ../classes/column/link/actions.php\n"
30
 
31
  #: ../classes/addons.php:110
32
  msgid "Plugins"
@@ -48,1253 +47,1210 @@ msgstr "WooCommerce"
48
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
49
  msgstr "Förbättra de produkter, ordrar och kupongers översikter med nya kolumner och snabbredigering."
50
 
51
- #: ../classes/column.php:597
52
  msgid "Thumbnail"
53
  msgstr "Miniatyrer"
54
 
55
- #: ../classes/column.php:598
56
  msgid "Medium"
57
  msgstr "Mellan"
58
 
59
- #: ../classes/column.php:599
60
  msgid "Large"
61
  msgstr "Stor"
62
 
63
- #: ../classes/column.php:600
64
  msgid "Full"
65
  msgstr "Hel"
66
 
67
- #: ../classes/column.php:1041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "Date Format"
69
  msgstr "Datumformat"
70
 
71
- #: ../classes/column.php:1042
72
  msgid "This will determine how the date will be displayed."
73
  msgstr "Detta kommer att avgöra hur datumet ska visas."
74
 
75
- #: ../classes/column.php:1048
76
  msgid "Example:"
77
  msgstr "Exempel:"
78
 
79
- #: ../classes/column.php:1050
80
- #, php-format
81
- msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
82
- msgstr "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard datumformat här</a>."
83
 
84
- #: ../classes/column.php:1051
85
  msgid "Documentation on date and time formatting."
86
  msgstr "Dokumentation om datum och tid formatering."
87
 
88
- #: ../classes/column.php:1065
89
  msgid "Excerpt length"
90
  msgstr "Utdragens längd"
91
 
92
- #: ../classes/column.php:1066
93
  msgid "Number of words"
94
  msgstr "Antal ord"
95
 
96
- #: ../classes/column.php:1084
97
  msgid "Preview size"
98
  msgstr "Förhandsgranska storlek"
99
 
100
- #: ../classes/column.php:1101 ../classes/storage_model.php:595
101
  msgid "Custom"
102
  msgstr "Anpassad"
103
 
104
- #: ../classes/column.php:1104 ../classes/column.php:1251
105
  msgid "width"
106
  msgstr "bredd"
107
 
108
- #: ../classes/column.php:1107
109
  msgid "height"
110
  msgstr "höjd"
111
 
112
- #: ../classes/column.php:1119
113
  msgid "Before"
114
  msgstr "Innan"
115
 
116
- #: ../classes/column.php:1119
117
  msgid "This text will appear before the custom field value."
118
  msgstr "Denna text kommer att visas innan det anpassade fältet värde."
119
 
120
- #: ../classes/column.php:1120
121
  msgid "After"
122
  msgstr "Efter"
123
 
124
- #: ../classes/column.php:1120
125
  msgid "This text will appear after the custom field value."
126
  msgstr "Denna text kommer att visas efter det anpassade fältet värde."
127
 
128
- #: ../classes/column.php:1129
129
  msgid "Display Name"
130
  msgstr "Visa namn"
131
 
132
- #: ../classes/column.php:1130
133
  msgid "First Name"
134
  msgstr "Förnamn"
135
 
136
- #: ../classes/column.php:1131
137
  msgid "Last Name"
138
  msgstr "Efternamn"
139
 
140
- #: ../classes/column.php:1132 ../classes/column/user/nickname.php:19
141
  msgid "Nickname"
142
  msgstr "Smeknamn"
143
 
144
- #: ../classes/column.php:1133
145
  msgid "User Login"
146
  msgstr "Användare Loggin"
147
 
148
- #: ../classes/column.php:1134
149
  msgid "User Email"
150
  msgstr "Användare Email"
151
 
152
- #: ../classes/column.php:1135 ../classes/column/user/ID.php:19
153
  msgid "User ID"
154
  msgstr "Användar-ID"
155
 
156
- #: ../classes/column.php:1136
157
  msgid "First and Last Name"
158
  msgstr "Förnamn och efternamn"
159
 
160
- #: ../classes/column.php:1139
161
  msgid "Display format"
162
  msgstr "Visa format"
163
 
164
- #: ../classes/column.php:1139
165
  msgid "This is the format of the author name."
166
  msgstr "Detta är formatet på författarens namn."
167
 
168
- #: ../classes/column.php:1273
169
  msgid "Edit"
170
  msgstr "Redigera"
171
 
172
- #: ../classes/column.php:1275 ../classes/column.php:1367
173
  msgid "Clone"
174
  msgstr "Klona"
175
 
176
- #: ../classes/column.php:1277 ../classes/column.php:1369
177
  msgid "Remove"
178
  msgstr "Ta bort"
179
 
180
- #: ../classes/column.php:1295 ../classes/column/comment/type.php:13 ../classes/column/custom-field.php:407
181
  msgid "Type"
182
  msgstr "Typ"
183
 
184
- #: ../classes/column.php:1295
185
  msgid "Choose a column type."
186
  msgstr "Välj en kolumntyp."
187
 
188
- #: ../classes/column.php:1295
189
  msgid "Name"
190
  msgstr "Namn"
191
 
192
- #: ../classes/column.php:1305
193
  msgid "Label"
194
  msgstr "Etikett"
195
 
196
- #: ../classes/column.php:1305
197
  msgid "This is the name which will appear as the column header."
198
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
199
 
200
- #: ../classes/column.php:1312 ../classes/column/media/width.php:19
201
  msgid "Width"
202
  msgstr "Bredd"
203
 
204
- #: ../classes/column.php:1314
205
  msgid "default"
206
  msgstr "standard"
207
 
208
- #: ../classes/column.php:1315
209
  msgid "auto"
210
  msgstr "auto"
211
 
212
- #: ../classes/column/acf-placeholder.php:19
213
- msgid "ACF Field"
214
- msgstr "ACF Fält"
215
 
216
- #: ../classes/column/acf-placeholder.php:32
217
- msgid "This feature is only available in Admin Columns Pro - Business or Developer."
218
- msgstr "Den här funktionen är endast tillgänglig i Admin Columns Pro - Företag eller utvecklare."
219
 
220
- #: ../classes/column/acf-placeholder.php:35
221
- #, php-format
222
- msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
223
- msgstr "Om du har en utvecklarlicens vänligen ladda ner & installera ditt ACF tillägg från <a href='%s'>fliken tillägg</a>."
224
 
225
- #: ../classes/column/acf-placeholder.php:38
226
- msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
227
- msgstr "Admins Columns Pro - Utvecklare erbjuder full integration med Advanced Custom Fields, vilket gör att du enkelt kan visa och redigera ACF fält i överblick för dina inlägg."
228
 
229
- #: ../classes/column/acf-placeholder.php:44
230
- msgid "Find out more"
231
- msgstr "Läs mer"
232
 
233
- #: ../classes/column/actions.php:29
234
- msgid "Actions"
235
- msgstr "Åtgärder"
236
 
237
- #: ../classes/column/actions.php:96
238
- msgid "Use icons?"
239
- msgstr "Använda ikoner?"
240
 
241
- #: ../classes/column/actions.php:96
242
- msgid "Use icons instead of text for displaying the actions."
243
- msgstr "Använda ikoner istället för text för att visa åtgärder."
244
 
245
- #: ../classes/column/actions.php:100 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
246
- msgid "Yes"
247
- msgstr "Ja"
248
 
249
- #: ../classes/column/actions.php:104 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
250
- msgid "No"
251
- msgstr "Nej"
252
 
253
- #: ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
254
- msgid "ID"
255
- msgstr "ID"
256
 
257
- #: ../classes/column/comment/agent.php:19
258
- msgid "Agent"
259
- msgstr "Agent"
260
 
261
- #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
262
- msgid "Approved"
263
- msgstr "Godkänd"
264
 
265
- #: ../classes/column/comment/author-avatar.php:19
266
- msgid "Avatar"
267
- msgstr "Avatar"
268
 
269
- #: ../classes/column/comment/author-email.php:19
270
- msgid "Author email"
271
- msgstr "Författare mail"
272
 
273
- #: ../classes/column/comment/author-ip.php:19
274
- msgid "Author IP"
275
- msgstr "Författare IP"
276
 
277
- #: ../classes/column/comment/author-name.php:12
278
- msgid "Author name"
279
- msgstr "Författarnamn"
280
 
281
- #: ../classes/column/comment/author-url.php:19
282
- msgid "Author url"
283
- msgstr "Författare url"
284
 
285
- #: ../classes/column/comment/author.php:19
286
- msgid "Author"
287
- msgstr "Författare"
288
 
289
- #: ../classes/column/comment/date-gmt.php:19
290
- msgid "Date GMT"
291
- msgstr "Datum GMT"
292
 
293
- #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
294
- #, php-format
295
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
296
- msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
297
 
298
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:318
299
- msgid "Date"
300
- msgstr "Datum"
301
 
302
- #: ../classes/column/comment/excerpt.php:19 ../classes/column/post/content.php:19
303
- msgid "Content"
304
- msgstr "Innehåll"
305
 
306
- #: ../classes/column/comment/reply-to.php:19
307
- msgid "In Reply To"
308
- msgstr "Som svar på"
309
 
310
- #: ../classes/column/comment/user.php:11 ../classes/storage_model/user.php:14
311
- msgid "User"
312
- msgstr "Användare"
313
 
314
- #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
315
- msgid "Word count"
316
- msgstr "Antal ord"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
- #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:390 ../classes/settings.php:308
319
  msgid "Custom Field"
320
  msgstr "Anpassat fält"
321
 
322
- #: ../classes/column/custom-field.php:94 ../classes/settings.php:313 ../classes/storage_model.php:596
 
 
 
 
 
 
 
 
323
  msgid "Default"
324
  msgstr "Standard"
325
 
326
- #: ../classes/column/custom-field.php:95
327
- msgid "Checkmark (true/false)"
328
- msgstr "Checkmark (sant/falskt)"
329
 
330
- #: ../classes/column/custom-field.php:96 ../classes/settings.php:322
331
- msgid "Color"
332
- msgstr "Färg"
333
 
334
- #: ../classes/column/custom-field.php:97 ../classes/settings.php:323
335
- msgid "Counter"
336
- msgstr "Räknare"
337
 
338
- #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:315
339
  msgid "Excerpt"
340
  msgstr "Utdrag"
341
 
342
- #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:314
343
- msgid "Image"
344
- msgstr "Bild"
345
-
346
- #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
347
- msgid "Media Library"
348
- msgstr "Mediabibliotek"
349
 
350
- #: ../classes/column/custom-field.php:102 ../classes/settings.php:316
351
  msgid "Multiple Values"
352
  msgstr "Flera värden"
353
 
354
- #: ../classes/column/custom-field.php:103 ../classes/settings.php:317
 
 
 
 
355
  msgid "Numeric"
356
  msgstr "Numerisk"
357
 
358
- #: ../classes/column/custom-field.php:104
359
- msgid "Post Title (Post ID's)"
360
- msgstr "Titel"
361
 
362
- #: ../classes/column/custom-field.php:105
363
- msgid "Username (User ID's)"
364
- msgstr "Användarnamn (Användar-ID)"
365
 
366
- #: ../classes/column/custom-field.php:106
367
- msgid "Term Name (Term ID's)"
368
- msgstr "Tern Namn (Term ID's)"
369
 
370
- #: ../classes/column/custom-field.php:390
371
- msgid "Select your custom field."
372
- msgstr "Välj ditt anpassade fält."
373
 
374
- #: ../classes/column/custom-field.php:400
375
- msgid "No custom fields available."
376
- msgstr "Inget anpassat fält är tillgängligt."
377
 
378
- #: ../classes/column/custom-field.php:400
379
- #, php-format
380
- msgid "Please create a %s item first."
381
- msgstr "Vänligen skapa ett %s inlägg först."
382
 
383
- #: ../classes/column/custom-field.php:407
384
- msgid "Field Type"
385
- msgstr "Fälttyp"
386
 
387
- #: ../classes/column/custom-field.php:407
388
- msgid "This will determine how the value will be displayed."
389
- msgstr "Detta avgör hur värdet kommer att visas."
390
 
391
- #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
392
- msgid "Description"
393
- msgstr "Beskrivning"
394
 
395
- #: ../classes/column/link/length.php:19
396
- msgid "Length"
397
- msgstr "Längd"
398
 
399
- #: ../classes/column/link/notes.php:19
400
- msgid "Notes"
401
- msgstr "Anteckningar"
402
 
403
- #: ../classes/column/link/owner.php:19
404
- msgid "Owner"
405
- msgstr "Ägare"
406
 
407
- #: ../classes/column/link/rss.php:19
408
- msgid "Rss"
409
- msgstr "RSS"
1
+ # Copyright (C) 2015 Codepress Admin Columns
2
+ # This file is distributed under the same license as the Codepress Admin Columns package.
3
  # Translators:
4
  # Fredrik Andersson <fidde.andersson@telia.com>, 2013-2015
5
  # Tobias Schutter <info@codepress.nl>, 2013
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
+ "Report-Msgid-Bugs-To: https://www.admincolumns.com\n"
10
+ "PO-Revision-Date: 2015-10-12 15:26+0200\n"
 
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/codepress/admin-columns/language/sv_SE/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: sv_SE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
+ "POT-Creation-Date: \n"
22
+ "X-Generator: Poedit 1.8.5\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
25
+
26
+ #: ../codepress-admin-columns.php:451
27
+ msgid "Edit columns"
28
+ msgstr "Redigera kolumner"
 
 
29
 
30
  #: ../classes/addons.php:110
31
  msgid "Plugins"
47
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
48
  msgstr "Förbättra de produkter, ordrar och kupongers översikter med nya kolumner och snabbredigering."
49
 
50
+ #: ../classes/column.php:624
51
  msgid "Thumbnail"
52
  msgstr "Miniatyrer"
53
 
54
+ #: ../classes/column.php:625
55
  msgid "Medium"
56
  msgstr "Mellan"
57
 
58
+ #: ../classes/column.php:626
59
  msgid "Large"
60
  msgstr "Stor"
61
 
62
+ #: ../classes/column.php:627
63
  msgid "Full"
64
  msgstr "Hel"
65
 
66
+ #: ../classes/column.php:1059
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: ../classes/column.php:1060
71
+ msgid "Lesser than"
72
+ msgstr ""
73
+
74
+ #: ../classes/column.php:1061
75
+ msgid "Greater than"
76
+ msgstr ""
77
+
78
+ #: ../classes/column.php:1062
79
+ msgid "Between"
80
+ msgstr ""
81
+
82
+ #: ../classes/column.php:1089
83
  msgid "Date Format"
84
  msgstr "Datumformat"
85
 
86
+ #: ../classes/column.php:1090
87
  msgid "This will determine how the date will be displayed."
88
  msgstr "Detta kommer att avgöra hur datumet ska visas."
89
 
90
+ #: ../classes/column.php:1096
91
  msgid "Example:"
92
  msgstr "Exempel:"
93
 
94
+ #: ../classes/column.php:1098
95
+ msgid "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>."
96
+ msgstr ""
 
97
 
98
+ #: ../classes/column.php:1099
99
  msgid "Documentation on date and time formatting."
100
  msgstr "Dokumentation om datum och tid formatering."
101
 
102
+ #: ../classes/column.php:1113
103
  msgid "Excerpt length"
104
  msgstr "Utdragens längd"
105
 
106
+ #: ../classes/column.php:1114
107
  msgid "Number of words"
108
  msgstr "Antal ord"
109
 
110
+ #: ../classes/column.php:1132
111
  msgid "Preview size"
112
  msgstr "Förhandsgranska storlek"
113
 
114
+ #: ../classes/column.php1149, ../classes/storage_model.php:642
115
  msgid "Custom"
116
  msgstr "Anpassad"
117
 
118
+ #: ../classes/column.php1152, ../classes/column.php:1328
119
  msgid "width"
120
  msgstr "bredd"
121
 
122
+ #: ../classes/column.php:1155
123
  msgid "height"
124
  msgstr "höjd"
125
 
126
+ #: ../classes/column.php:1167
127
  msgid "Before"
128
  msgstr "Innan"
129
 
130
+ #: ../classes/column.php:1167
131
  msgid "This text will appear before the custom field value."
132
  msgstr "Denna text kommer att visas innan det anpassade fältet värde."
133
 
134
+ #: ../classes/column.php:1168
135
  msgid "After"
136
  msgstr "Efter"
137
 
138
+ #: ../classes/column.php:1168
139
  msgid "This text will appear after the custom field value."
140
  msgstr "Denna text kommer att visas efter det anpassade fältet värde."
141
 
142
+ #: ../classes/column.php:1177
143
  msgid "Display Name"
144
  msgstr "Visa namn"
145
 
146
+ #: ../classes/column.php1178, ../classes/settings.php:733
147
  msgid "First Name"
148
  msgstr "Förnamn"
149
 
150
+ #: ../classes/column.php:1179
151
  msgid "Last Name"
152
  msgstr "Efternamn"
153
 
154
+ #: ../classes/column.php1180, ../classes/column/user/nickname.php:19
155
  msgid "Nickname"
156
  msgstr "Smeknamn"
157
 
158
+ #: ../classes/column.php:1181
159
  msgid "User Login"
160
  msgstr "Användare Loggin"
161
 
162
+ #: ../classes/column.php:1182
163
  msgid "User Email"
164
  msgstr "Användare Email"
165
 
166
+ #: ../classes/column.php1183, ../classes/column/user/ID.php:19
167
  msgid "User ID"
168
  msgstr "Användar-ID"
169
 
170
+ #: ../classes/column.php:1184
171
  msgid "First and Last Name"
172
  msgstr "Förnamn och efternamn"
173
 
174
+ #: ../classes/column.php:1187
175
  msgid "Display format"
176
  msgstr "Visa format"
177
 
178
+ #: ../classes/column.php:1187
179
  msgid "This is the format of the author name."
180
  msgstr "Detta är formatet på författarens namn."
181
 
182
+ #: ../classes/column.php:1350
183
  msgid "Edit"
184
  msgstr "Redigera"
185
 
186
+ #: ../classes/column.php1352, ../classes/column.php:1444
187
  msgid "Clone"
188
  msgstr "Klona"
189
 
190
+ #: ../classes/column.php:1354
191
  msgid "Remove"
192
  msgstr "Ta bort"
193
 
194
+ #: ../classes/column.php1372, ../classes/column/custom-field.php408, ../classes/column/comment/type.php:13
195
  msgid "Type"
196
  msgstr "Typ"
197
 
198
+ #: ../classes/column.php:1372
199
  msgid "Choose a column type."
200
  msgstr "Välj en kolumntyp."
201
 
202
+ #: ../classes/column.php:1372
203
  msgid "Name"
204
  msgstr "Namn"
205
 
206
+ #: ../classes/column.php:1382
207
  msgid "Label"
208
  msgstr "Etikett"
209
 
210
+ #: ../classes/column.php:1382
211
  msgid "This is the name which will appear as the column header."
212
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
213
 
214
+ #: ../classes/column.php1389, ../classes/column/media/width.php:19
215
  msgid "Width"
216
  msgstr "Bredd"
217
 
218
+ #: ../classes/column.php:1391
219
  msgid "default"
220
  msgstr "standard"
221
 
222
+ #: ../classes/column.php:1392
223
  msgid "auto"
224
  msgstr "auto"
225
 
226
+ #: ../classes/column.php:1466
227
+ msgid "Property To Display"
228
+ msgstr ""
229
 
230
+ #: ../classes/column.php:1472
231
+ msgid "Post property to display for related post(s)."
232
+ msgstr ""
233
 
234
+ #: ../classes/column.php1484, ../classes/column/post/author-name.php:95
235
+ msgid "Link To"
236
+ msgstr ""
 
237
 
238
+ #: ../classes/column.php:1489
239
+ msgid "Edit Post Author"
240
+ msgstr ""
241
 
242
+ #: ../classes/column.php:1490
243
+ msgid "View Public Post Author Page"
244
+ msgstr ""
245
 
246
+ #: ../classes/column.php:1492
247
+ msgid "Page the posts should link to."
248
+ msgstr ""
249
 
250
+ #: ../classes/review_notice.php55, ../classes/settings.php170, ../classes/settings.php599, ../classes/upgrade.php:135
251
+ msgid "Admin Columns"
252
+ msgstr "Admin Columns"
253
 
254
+ #: ../classes/review_notice.php:58
255
+ msgid "Admin Columns Pro"
256
+ msgstr "Admin Columns Pro"
257
 
258
+ #: ../classes/review_notice.php:68
259
+ msgid "click here"
260
+ msgstr "klicka här"
261
 
262
+ #: ../classes/review_notice.php:72
263
+ msgid "Leave a review!"
264
+ msgstr "Lämna en recension!"
265
 
266
+ #: ../classes/review_notice.php:73
267
+ msgid "Permanently hide notice"
268
+ msgstr "Permanent gömma notis"
269
 
270
+ #: ../classes/review_notice.php:80
271
+ 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."
272
+ msgstr "Vi är ledsna att göra det, kanske vi kan hjälpa! Om du har problem att korrekt sätta upp %s eller om du vill ha hjälp med fler avancerade funktioner, vänligen besök vår %s."
273
 
274
+ #: ../classes/review_notice.php:82
275
+ msgid "documentation page"
276
+ msgstr "dokumentation sida"
277
 
278
+ #: ../classes/review_notice.php:86
279
+ msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
280
+ msgstr "Som en Admin Columns Pro användare, du kan också använda ditt AdminColumns.com konto för att få tillgång till produkt support genom %s!"
281
 
282
+ #: ../classes/review_notice.php:87
283
+ msgid "our forums"
284
+ msgstr "vårt forum"
285
 
286
+ #: ../classes/review_notice.php:91
287
+ msgid "You can also find help on the %s, and %s."
288
+ msgstr "Du kan också hitta hjälp på %s, och %s."
289
 
290
+ #: ../classes/review_notice.php:92
291
+ msgid "Admin Columns forums on WordPress.org"
292
+ msgstr "Admin Columns forum på WordPress.org"
293
 
294
+ #: ../classes/review_notice.php:93
295
+ msgid "find answers to some frequently asked questions"
296
+ msgstr "hitta svar på vanliga frågor"
297
 
298
+ #: ../classes/settings.php:113
299
+ msgid "Add-on successfully activated."
300
+ msgstr "Tillägget aktiverat."
301
 
302
+ #: ../classes/settings.php:116
303
+ msgid "Add-on successfully deactivated."
304
+ msgstr "Tillägget inaktiverat."
305
 
306
+ #: ../classes/settings.php:170
307
+ msgid "Admin Columns Settings"
308
+ msgstr "Admin Columns Inställningar"
 
309
 
310
+ #: ../classes/settings.php:228
311
+ msgid "%s column is already present and can not be duplicated."
312
+ msgstr "%s kolumn finns redan och kan inte dupliceras."
313
 
314
+ #: ../classes/settings.php:284
315
+ msgid "Default settings succesfully restored."
316
+ msgstr "Standardinställningar återställdes framgångsrikt."
317
 
318
+ #: ../classes/settings.php:301
319
+ msgid "Overview"
320
+ msgstr "Översikt"
321
 
322
+ #: ../classes/settings.php:304
323
+ 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."
324
+ msgstr "Denna plugin är för att lägga till och ta bort ytterligare kolumner till administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, länkar och användare. Ändra kolumens etikett och ändra ordningen."
325
 
326
+ #: ../classes/settings.php:307
327
+ msgid "Basics"
328
+ msgstr "Grundläggande"
329
+
330
+ #: ../classes/settings.php:309
331
+ msgid "Change order"
332
+ msgstr "Ändra ordning"
333
+
334
+ #: ../classes/settings.php:310
335
+ msgid "By dragging the columns you can change the order which they will appear in."
336
+ msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
337
+
338
+ #: ../classes/settings.php:311
339
+ msgid "Change label"
340
+ msgstr "Ändra etikett"
341
+
342
+ #: ../classes/settings.php:312
343
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
344
+ msgstr "Genom att klicka på triangeln kommer du att se kolumnalternativ. Här kan du ändra varje etikett av kolumnernas rubrik."
345
+
346
+ #: ../classes/settings.php:313
347
+ msgid "Change column width"
348
+ msgstr "Ändra kolumnens bredd"
349
+
350
+ #: ../classes/settings.php:314
351
+ 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."
352
+ msgstr "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
353
 
354
+ #: ../classes/settings.php318, ../classes/storage_model.php641, ../classes/column/custom-field.php23, ../classes/column/custom-field.php:391
355
  msgid "Custom Field"
356
  msgstr "Anpassat fält"
357
 
358
+ #: ../classes/settings.php:320
359
+ msgid "'Custom Field' column"
360
+ msgstr "'Anpassat fält' kolumn "
361
+
362
+ #: ../classes/settings.php:321
363
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
364
+ msgstr "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och användare. Det fins 10 typer som du kan ange."
365
+
366
+ #: ../classes/settings.php323, ../classes/storage_model.php640, ../classes/column/custom-field.php:95
367
  msgid "Default"
368
  msgstr "Standard"
369
 
370
+ #: ../classes/settings.php:323
371
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
372
+ msgstr "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och värden åtskilda av en ',' kommatecken."
373
 
374
+ #: ../classes/settings.php324, ../classes/column/custom-field.php101, ../classes/column/link/image.php:19
375
+ msgid "Image"
376
+ msgstr "Bild"
377
 
378
+ #: ../classes/settings.php:324
379
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
380
+ msgstr "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' kommatecken )."
381
 
382
+ #: ../classes/settings.php325, ../classes/column/post/excerpt.php:19
383
  msgid "Excerpt"
384
  msgstr "Utdrag"
385
 
386
+ #: ../classes/settings.php:325
387
+ msgid "Value: This will show the first 20 words of the Post content."
388
+ msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
 
 
 
 
389
 
390
+ #: ../classes/settings.php326, ../classes/column/custom-field.php:103
391
  msgid "Multiple Values"
392
  msgstr "Flera värden"
393
 
394
+ #: ../classes/settings.php:326
395
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
396
+ msgstr "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
397
+
398
+ #: ../classes/settings.php327, ../classes/column/custom-field.php:104
399
  msgid "Numeric"
400
  msgstr "Numerisk"
401
 
402
+ #: ../classes/settings.php:327
403
+ 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."
404
+ msgstr "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta att användas för sortering, så att du kan sortera dina inlägg på numeriska (anpassade fält) värden."
405
 
406
+ #: ../classes/settings.php328, ../classes/column/custom-field.php99, ../classes/column/comment/date.php:19
407
+ msgid "Date"
408
+ msgstr "Datum"
409
 
410
+ #: ../classes/settings.php:328
411
+ 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."
412
+ msgstr "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a href='%s'>Codex</a>. Du kan ändra hur datumformatet ska visas på <a href='%s'>generella inställningar</a> sidan."
413
 
414
+ #: ../classes/settings.php:329
415
+ msgid "Post Titles"
416
+ msgstr "Titel inlägg"
417
 
418
+ #: ../classes/settings.php:329
419
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
420
+ msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
421
 
422
+ #: ../classes/settings.php:330
423
+ msgid "Usernames"
424
+ msgstr "Användarnamn"
 
425
 
426
+ #: ../classes/settings.php:330
427
+ msgid "Value: can be one or more User ID's (seperated by ',')."
428
+ msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
429
 
430
+ #: ../classes/settings.php:331
431
+ msgid "Checkmark"
432
+ msgstr "Checkmark"
433
 
434
+ #: ../classes/settings.php:331
435
+ msgid "Value: should be a 1 (one) or 0 (zero)."
436
+ msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
437
 
438
+ #: ../classes/settings.php332, ../classes/column/custom-field.php:97
439
+ msgid "Color"
440
+ msgstr "Färg"
441
 
442
+ #: ../classes/settings.php:332
443
+ msgid "Value: hex value color, such as #808080."
444
+ msgstr "Värde: hex värde färg, som #808080."
445
 
446
+ #: ../classes/settings.php333, ../classes/column/custom-field.php:98
447
+ msgid "Counter"
448
+ msgstr "Räknare"
449
 
450
+ #: ../classes/settings.php:333
451
+ msgid "Value: Can be either a stri