Admin Columns - Version 3.2.3

Version Description

Release Date: June 26th, 2018

  • [Fixed] ThidParty classes are now using correct camelcasing
Download this release

Release Info

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

Code changes from version 3.1.10 to 3.2.3

Files changed (332) hide show
  1. api.php +8 -76
  2. assets/css/admin-general.css +1 -1
  3. assets/css/admin-page-columns.css +1 -1
  4. assets/css/notice.css +1 -0
  5. assets/css/table.css +1 -1
  6. assets/images/arrow.png +0 -0
  7. assets/images/border.png +0 -0
  8. assets/images/drag.png +0 -0
  9. assets/images/drag.svg +0 -39
  10. assets/images/drag_2x.png +0 -0
  11. assets/images/loading.gif +0 -0
  12. assets/images/mascot.png +0 -0
  13. assets/images/order_arrow-rtl.png +0 -0
  14. assets/images/order_arrow.png +0 -0
  15. assets/images/square.png +0 -0
  16. assets/images/symbols.svg +186 -0
  17. assets/js/message-addon.js +1 -0
  18. assets/js/message-dismiss.js +1 -0
  19. assets/js/message-dismissible.js +1 -0
  20. assets/js/message-review.js +1 -0
  21. assets/js/message.js +5 -2
  22. assets/js/notice-dismiss.js +1 -0
  23. assets/js/notice-dismissible.js +1 -0
  24. bootstrap.php +21 -0
  25. classes/API.php +8 -10
  26. classes/Addon.php +26 -7
  27. classes/Admin.php +20 -20
  28. classes/Admin/Addon.php +17 -19
  29. classes/Admin/Addon/ACF.php +9 -10
  30. classes/Admin/Addon/BuddyPress.php +7 -7
  31. classes/Admin/Addon/EventsCalendar.php +10 -12
  32. classes/Admin/Addon/NinjaForms.php +10 -12
  33. classes/Admin/Addon/Pods.php +9 -11
  34. classes/Admin/Addon/Types.php +9 -11
  35. classes/Admin/Addon/WooCommerce.php +8 -7
  36. classes/Admin/Addons.php +14 -20
  37. classes/Admin/Help.php +3 -5
  38. classes/Admin/Help/Basics.php +5 -5
  39. classes/Admin/Help/CustomField.php +67 -59
  40. classes/Admin/Help/Introduction.php +5 -5
  41. classes/Admin/Page.php +5 -5
  42. classes/Admin/Page/Addons.php +80 -135
  43. classes/Admin/Page/Columns.php +63 -65
  44. classes/Admin/Page/Help.php +11 -10
  45. classes/Admin/Page/Settings.php +19 -15
  46. classes/Admin/Pages.php +14 -16
  47. classes/Admin/Promo.php +3 -5
  48. classes/Admin/Promo/BlackFriday.php +10 -7
  49. classes/AdminColumns.php +368 -0
  50. classes/Ajax/Handler.php +165 -0
  51. classes/Ajax/NullHandler.php +11 -0
  52. classes/Autoloader.php +80 -71
  53. classes/Autoloader/Underscore.php +138 -0
  54. classes/Capabilities.php +44 -0
  55. classes/Check/AddonAvailable.php +89 -0
  56. classes/Check/Review.php +177 -0
  57. classes/Collection.php +6 -10
  58. classes/Column.php +24 -24
  59. classes/Column/Actions.php +7 -6
  60. classes/Column/AjaxValue.php +3 -5
  61. classes/Column/Comment/Agent.php +5 -5
  62. classes/Column/Comment/Approved.php +5 -5
  63. classes/Column/Comment/Author.php +5 -5
  64. classes/Column/Comment/AuthorAvatar.php +5 -5
  65. classes/Column/Comment/AuthorEmail.php +5 -5
  66. classes/Column/Comment/AuthorIP.php +5 -5
  67. classes/Column/Comment/AuthorName.php +5 -5
  68. classes/Column/Comment/AuthorUrl.php +6 -6
  69. classes/Column/Comment/Comment.php +5 -5
  70. classes/Column/Comment/Date.php +5 -5
  71. classes/Column/Comment/DateGmt.php +5 -5
  72. classes/Column/Comment/Excerpt.php +7 -6
  73. classes/Column/Comment/ID.php +5 -5
  74. classes/Column/Comment/Post.php +7 -6
  75. classes/Column/Comment/ReplyTo.php +5 -5
  76. classes/Column/Comment/Response.php +5 -5
  77. classes/Column/Comment/Status.php +5 -5
  78. classes/Column/Comment/Type.php +5 -5
  79. classes/Column/Comment/User.php +7 -6
  80. classes/Column/Comment/WordCount.php +5 -5
  81. classes/Column/CustomField.php +13 -11
  82. classes/Column/Link/Actions.php +0 -45
  83. classes/Column/Link/Description.php +0 -23
  84. classes/Column/Link/ID.php +0 -21
  85. classes/Column/Link/Image.php +0 -27
  86. classes/Column/Link/Length.php +0 -23
  87. classes/Column/Link/Notes.php +0 -27
  88. classes/Column/Link/Owner.php +0 -32
  89. classes/Column/Link/Rss.php +0 -23
  90. classes/Column/Link/Target.php +0 -23
  91. classes/Column/Media/AlternateText.php +5 -5
  92. classes/Column/Media/Author.php +5 -5
  93. classes/Column/Media/AuthorName.php +5 -5
  94. classes/Column/Media/AvailableSizes.php +7 -6
  95. classes/Column/Media/Caption.php +5 -5
  96. classes/Column/Media/Comments.php +5 -5
  97. classes/Column/Media/Date.php +5 -5
  98. classes/Column/Media/Description.php +5 -5
  99. classes/Column/Media/Dimensions.php +6 -6
  100. classes/Column/Media/ExifData.php +7 -6
  101. classes/Column/Media/FileName.php +5 -5
  102. classes/Column/Media/FileSize.php +5 -5
  103. classes/Column/Media/FullPath.php +7 -6
  104. classes/Column/Media/Height.php +5 -5
  105. classes/Column/Media/ID.php +5 -5
  106. classes/Column/Media/{Parent.php → MediaParent.php} +5 -5
  107. classes/Column/Media/Menu.php +5 -5
  108. classes/Column/Media/Meta.php +5 -5
  109. classes/Column/Media/MetaValue.php +3 -5
  110. classes/Column/Media/MimeType.php +5 -5
  111. classes/Column/Media/Taxonomy.php +5 -5
  112. classes/Column/Media/Title.php +5 -5
  113. classes/Column/Media/Width.php +5 -5
  114. classes/Column/Menu.php +7 -7
  115. classes/Column/Meta.php +6 -6
  116. classes/Column/Placeholder.php +9 -8
  117. classes/Column/Post/Attachment.php +7 -6
  118. classes/Column/Post/Author.php +5 -5
  119. classes/Column/Post/AuthorName.php +9 -7
  120. classes/Column/Post/BeforeMoreTag.php +7 -6
  121. classes/Column/Post/Categories.php +5 -5
  122. classes/Column/Post/CommentCount.php +7 -6
  123. classes/Column/Post/CommentStatus.php +5 -5
  124. classes/Column/Post/Comments.php +5 -5
  125. classes/Column/Post/Content.php +8 -7
  126. classes/Column/Post/Date.php +5 -5
  127. classes/Column/Post/DatePublished.php +7 -6
  128. classes/Column/Post/Depth.php +5 -5
  129. classes/Column/Post/EstimatedReadingTime.php +7 -6
  130. classes/Column/Post/Excerpt.php +8 -7
  131. classes/Column/Post/FeaturedImage.php +7 -6
  132. classes/Column/Post/Formats.php +7 -6
  133. classes/Column/Post/ID.php +7 -6
  134. classes/Column/Post/LastModifiedAuthor.php +7 -6
  135. classes/Column/Post/Menu.php +5 -5
  136. classes/Column/Post/Modified.php +7 -6
  137. classes/Column/Post/Order.php +5 -5
  138. classes/Column/Post/PageTemplate.php +5 -5
  139. classes/Column/Post/Path.php +5 -5
  140. classes/Column/Post/Permalink.php +5 -5
  141. classes/Column/Post/PingStatus.php +5 -5
  142. classes/Column/Post/{Parent.php → PostParent.php} +5 -5
  143. classes/Column/Post/Shortcodes.php +5 -5
  144. classes/Column/Post/Shortlink.php +5 -5
  145. classes/Column/Post/Slug.php +5 -5
  146. classes/Column/Post/Status.php +7 -6
  147. classes/Column/Post/Sticky.php +5 -5
  148. classes/Column/Post/Tags.php +5 -5
  149. classes/Column/Post/Taxonomy.php +5 -5
  150. classes/Column/Post/Title.php +5 -5
  151. classes/Column/Post/TitleRaw.php +7 -6
  152. classes/Column/Post/WordCount.php +5 -5
  153. classes/Column/{RelationInterface.php → Relation.php} +6 -6
  154. classes/Column/Taxonomy.php +7 -6
  155. classes/Column/User/CommentCount.php +5 -5
  156. classes/Column/User/Description.php +8 -7
  157. classes/Column/User/DisplayName.php +5 -5
  158. classes/Column/User/Email.php +5 -5
  159. classes/Column/User/FirstName.php +5 -5
  160. classes/Column/User/ID.php +5 -5
  161. classes/Column/User/LastName.php +5 -5
  162. classes/Column/User/Name.php +5 -5
  163. classes/Column/User/Nickname.php +5 -5
  164. classes/Column/User/PostCount.php +7 -6
  165. classes/Column/User/Posts.php +5 -5
  166. classes/Column/User/Registered.php +7 -6
  167. classes/Column/User/RichEditing.php +5 -5
  168. classes/Column/User/Role.php +5 -5
  169. classes/Column/User/ShowToolbar.php +5 -5
  170. classes/Column/User/Url.php +5 -5
  171. classes/Column/User/Username.php +5 -5
  172. classes/Column/WooCommercePlaceholder.php +5 -5
  173. classes/Dependencies.php +224 -0
  174. classes/Expirable.php +14 -0
  175. classes/Form/Element.php +3 -5
  176. classes/Form/Element/Checkbox.php +6 -6
  177. classes/Form/Element/Input.php +5 -5
  178. classes/Form/Element/Radio.php +3 -5
  179. classes/Form/Element/Select.php +5 -5
  180. classes/Groups.php +3 -5
  181. classes/Helper.php +33 -21
  182. classes/Helper/{Array.php → Arrays.php} +3 -5
  183. classes/Helper/Date.php +4 -6
  184. classes/Helper/File.php +3 -5
  185. classes/Helper/Html.php +6 -8
  186. classes/Helper/Icon.php +3 -5
  187. classes/Helper/Image.php +6 -8
  188. classes/Helper/Media.php +3 -5
  189. classes/Helper/Network.php +5 -7
  190. classes/Helper/Post.php +5 -7
  191. classes/Helper/{String.php → Strings.php} +5 -7
  192. classes/Helper/Taxonomy.php +6 -8
  193. classes/Helper/User.php +7 -6
  194. classes/ListScreen.php +118 -40
  195. classes/ListScreen/Comment.php +19 -20
  196. classes/ListScreen/Media.php +13 -13
  197. classes/ListScreen/Post.php +12 -12
  198. classes/ListScreen/User.php +18 -18
  199. classes/ListScreenFactory.php +27 -0
  200. classes/ListScreenGroups.php +24 -0
  201. classes/ListScreenPost.php +6 -8
  202. classes/ListScreenWP.php +9 -11
  203. classes/Message.php +121 -0
  204. classes/Message/Notice.php +47 -0
  205. classes/Message/Notice/Dismissible.php +44 -0
  206. classes/Message/Plugin.php +112 -0
  207. classes/Meta/Query.php +6 -8
  208. classes/Meta/QueryColumn.php +8 -8
  209. classes/Notice/Plugin.php +0 -182
  210. classes/Notice/Review.php +0 -150
  211. classes/Plugin.php +64 -18
  212. classes/Plugin/Update.php +4 -11
  213. classes/Plugin/Update/V3005.php +5 -5
  214. classes/Plugin/Update/V3007.php +5 -5
  215. classes/Plugin/Update/V3201.php +106 -0
  216. classes/Plugin/Updater.php +23 -15
  217. classes/PluginInformation.php +3 -5
  218. classes/Preferences.php +3 -5
  219. classes/Preferences/Site.php +5 -5
  220. classes/Preferences/User.php +5 -5
  221. classes/Registrable.php +9 -0
  222. classes/Relation.php +4 -6
  223. classes/Relation/Post.php +9 -6
  224. classes/Relation/Taxonomy.php +6 -6
  225. classes/Screen.php +114 -0
  226. classes/Settings/Column.php +32 -21
  227. classes/Settings/Column/ActionIcons.php +7 -6
  228. classes/Settings/Column/AttachmentDisplay.php +9 -8
  229. classes/Settings/Column/BeforeAfter.php +15 -10
  230. classes/Settings/Column/BeforeAfter/Aperture.php +5 -5
  231. classes/Settings/Column/BeforeAfter/FocalLength.php +5 -5
  232. classes/Settings/Column/BeforeAfter/ISO.php +5 -5
  233. classes/Settings/Column/BeforeAfter/ShutterSpeed.php +5 -5
  234. classes/Settings/Column/CharacterLimit.php +8 -7
  235. classes/Settings/Column/Comment.php +10 -9
  236. classes/Settings/Column/CommentCount.php +9 -8
  237. classes/Settings/Column/CustomField.php +9 -8
  238. classes/Settings/Column/CustomFieldType.php +21 -18
  239. classes/Settings/Column/Date.php +5 -5
  240. classes/Settings/Column/DateTimeFormat.php +8 -7
  241. classes/Settings/Column/ExifData.php +13 -12
  242. classes/Settings/Column/Image.php +10 -9
  243. classes/Settings/Column/Images.php +8 -7
  244. classes/Settings/Column/Label.php +7 -6
  245. classes/Settings/Column/LinkLabel.php +9 -8
  246. classes/Settings/Column/LinkToMenu.php +6 -6
  247. classes/Settings/Column/Message.php +7 -6
  248. classes/Settings/Column/Meta.php +9 -7
  249. classes/Settings/Column/MissingImageSize.php +7 -6
  250. classes/Settings/Column/NumberOfItems.php +7 -6
  251. classes/Settings/Column/Password.php +8 -7
  252. classes/Settings/Column/PathScope.php +9 -8
  253. classes/Settings/Column/Post.php +10 -9
  254. classes/Settings/Column/PostFormatIcon.php +8 -7
  255. classes/Settings/Column/PostLink.php +10 -8
  256. classes/Settings/Column/PostType.php +9 -7
  257. classes/Settings/Column/Pro.php +7 -6
  258. classes/Settings/Column/Pro/Editing.php +5 -5
  259. classes/Settings/Column/Pro/Export.php +5 -5
  260. classes/Settings/Column/Pro/Filtering.php +5 -5
  261. classes/Settings/Column/Pro/Sorting.php +5 -5
  262. classes/Settings/Column/Separator.php +10 -8
  263. classes/Settings/Column/StatusIcon.php +8 -7
  264. classes/Settings/Column/StringLimit.php +9 -8
  265. classes/Settings/Column/Taxonomy.php +8 -7
  266. classes/Settings/Column/Term.php +8 -9
  267. classes/Settings/Column/Time.php +6 -6
  268. classes/Settings/Column/Toggle.php +7 -6
  269. classes/Settings/Column/Type.php +36 -12
  270. classes/Settings/Column/User.php +10 -9
  271. classes/Settings/Column/UserLink.php +8 -7
  272. classes/Settings/Column/Width.php +10 -9
  273. classes/Settings/Column/WordLimit.php +8 -7
  274. classes/Settings/Column/WordsPerMinute.php +8 -7
  275. classes/Settings/Form/Element/Select.php +5 -5
  276. classes/Settings/FormatCollection.php +17 -0
  277. classes/Settings/FormatCollectionInterface.php +0 -17
  278. classes/Settings/{FormatValueInterface.php → FormatValue.php} +3 -5
  279. classes/Settings/Header.php +14 -0
  280. classes/Settings/HeaderInterface.php +0 -14
  281. classes/Storage/KeyValuePair.php +13 -0
  282. classes/Storage/Option.php +40 -0
  283. classes/Storage/SiteOption.php +30 -0
  284. classes/Storage/Timestamp.php +68 -0
  285. classes/Storage/UserMeta.php +58 -0
  286. classes/{TableScreen.php → Table/Screen.php} +74 -101
  287. classes/ThirdParty/ACF.php +3 -5
  288. classes/ThirdParty/NinjaForms.php +3 -5
  289. classes/ThirdParty/WPML.php +8 -8
  290. classes/ThirdParty/WPMLColumn.php +3 -5
  291. classes/ThirdParty/WooCommerce.php +3 -5
  292. classes/Transient.php +56 -0
  293. classes/View.php +14 -7
  294. classes/ViewInterface.php +0 -23
  295. codepress-admin-columns.php +13 -571
  296. languages/codepress-admin-columns-ar_AR.mo +0 -0
  297. languages/codepress-admin-columns-ar_AR.po +198 -135
  298. languages/codepress-admin-columns-bt_BR.mo +0 -0
  299. languages/codepress-admin-columns-bt_BR.po +198 -135
  300. languages/codepress-admin-columns-da_DK.mo +0 -0
  301. languages/codepress-admin-columns-da_DK.po +198 -135
  302. languages/codepress-admin-columns-de_DE.mo +0 -0
  303. languages/codepress-admin-columns-de_DE.po +215 -152
  304. languages/codepress-admin-columns-en_NZ.mo +0 -0
  305. languages/codepress-admin-columns-en_NZ.po +198 -135
  306. languages/codepress-admin-columns-es_ES.mo +0 -0
  307. languages/codepress-admin-columns-es_ES.po +198 -135
  308. languages/codepress-admin-columns-fa_IR.mo +0 -0
  309. languages/codepress-admin-columns-fa_IR.po +198 -135
  310. languages/codepress-admin-columns-fr_FR.mo +0 -0
  311. languages/codepress-admin-columns-fr_FR.po +209 -146
  312. languages/codepress-admin-columns-he_IL.mo +0 -0
  313. languages/codepress-admin-columns-he_IL.po +198 -135
  314. languages/codepress-admin-columns-hu_HU.mo +0 -0
  315. languages/codepress-admin-columns-hu_HU.po +198 -135
  316. languages/codepress-admin-columns-it_IT.mo +0 -0
  317. languages/codepress-admin-columns-it_IT.po +198 -135
  318. languages/codepress-admin-columns-ja_JA.mo +0 -0
  319. languages/codepress-admin-columns-ja_JA.po +198 -135
  320. languages/codepress-admin-columns-nl_NL.mo +0 -0
  321. languages/codepress-admin-columns-nl_NL.po +235 -172
  322. languages/codepress-admin-columns-pl_PL.mo +0 -0
  323. languages/codepress-admin-columns-pl_PL.po +198 -135
  324. languages/codepress-admin-columns-ro_RO.mo +0 -0
  325. languages/codepress-admin-columns-ro_RO.po +199 -136
  326. languages/codepress-admin-columns-ru_RU.mo +0 -0
  327. languages/codepress-admin-columns-ru_RU.po +198 -135
  328. languages/codepress-admin-columns-sv_SE.mo +0 -0
  329. languages/codepress-admin-columns-sv_SE.po +282 -219
  330. languages/codepress-admin-columns-zh_CN.mo +0 -0
  331. languages/codepress-admin-columns-zh_CN.po +198 -135
  332. languages/codepress-admin-columns.pot +423 -433
api.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
 
 
 
 
5
  }
6
 
7
  /**
@@ -76,15 +80,7 @@ function ac_get_twitter_handle() {
76
  * @since 3.0
77
  */
78
  function ac_helper() {
79
- return AC()->helper();
80
- }
81
-
82
- /**
83
- * @since 3.0
84
- * @return bool True when a minimum version of Admin Columns Pro plugin is activated.
85
- */
86
- function ac_is_version_gte( $version ) {
87
- return version_compare( AC()->get_version(), $version, '>=' );
88
  }
89
 
90
  /**
@@ -104,68 +100,4 @@ function ac_is_version_gte( $version ) {
104
  */
105
  function ac_register_columns( $list_screen_keys, $column_data ) {
106
  AC()->api()->load_columndata( $list_screen_keys, $column_data );
107
- }
108
-
109
- /**
110
- * Deprecated functions
111
- */
112
-
113
- /**
114
- * Is doing ajax
115
- *
116
- * @since 2.3.4
117
- */
118
- function cac_is_doing_ajax() {
119
- _deprecated_function( __FUNCTION__, '3.0' );
120
-
121
- return AC()->table_screen()->get_list_screen_when_doing_quick_edit() || ( AC()->is_doing_ajax() && isset( $_REQUEST['list_screen'] ) );
122
- }
123
-
124
- /**
125
- * Is WordPress doing ajax
126
- *
127
- * @since 2.5
128
- */
129
- function cac_wp_is_doing_ajax() {
130
- _deprecated_function( __FUNCTION__, '3.0' );
131
-
132
- return AC()->table_screen()->get_list_screen_when_doing_quick_edit();
133
- }
134
-
135
- /**
136
- * Whether the current screen is the Admin Columns settings screen
137
- *
138
- * @since 2.4.8
139
- *
140
- * @param string $slug Specifies a page screen (optional)
141
- *
142
- * @return bool True if the current screen is the settings screen, false otherwise
143
- */
144
- function cac_is_setting_screen( $slug = '' ) {
145
- _deprecated_function( __FUNCTION__, '3.0', 'AC()->admin()->is_current_page( $slug )' );
146
-
147
- return AC()->admin()->is_current_page( $slug );
148
- }
149
-
150
- /**
151
- * Returns true if the installed version of WooCommerce is version X or greater
152
- *
153
- * @since 2.3.4
154
- * @deprecated 3.0
155
- * @return boolean true if the installed version of WooCommerce is version X or greater
156
- */
157
- function cpac_is_wc_version_gte( $version = '1.0' ) {
158
- _deprecated_function( __FUNCTION__, '3.0' );
159
-
160
- return false;
161
- }
162
-
163
- /**
164
- * @deprecated 3.0
165
- * @return bool True when Admin Columns Pro plugin is activated.
166
- */
167
- function cpac_is_pro_active() {
168
- _deprecated_function( __FUNCTION__, '3.0', 'ac_is_pro_active' );
169
-
170
- return ac_is_pro_active();
171
- }
1
  <?php
2
 
3
+ /**
4
+ * @since 3.0
5
+ * @return AC\AdminColumns
6
+ */
7
+ function AC() {
8
+ return AC\AdminColumns::instance();
9
  }
10
 
11
  /**
80
  * @since 3.0
81
  */
82
  function ac_helper() {
83
+ return new AC\Helper();
 
 
 
 
 
 
 
 
84
  }
85
 
86
  /**
100
  */
101
  function ac_register_columns( $list_screen_keys, $column_data ) {
102
  AC()->api()->load_columndata( $list_screen_keys, $column_data );
103
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/admin-general.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2");font-style:normal;font-weight:400}.cpacicon,[class^="cpacicon-"],[class*=" cpacicon-"]{display:inline-block;transform:translate(0, 0);text-rendering:auto;font:normal normal 400 14px/1 cpac_icons;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.cpacicon-draft::before{content:""}.cpacicon-move::before{content:""}#cpac a:focus,#cpac a:active{outline:none}.wrap .nav-tab-wrapper{margin-bottom:24px}.wrap .notice{margin-top:16px;margin-bottom:16px}.ac-badge{display:inline-block;background:#d54e21;border-radius:10px;font-size:9px;line-height:17px;padding:0 6px;margin:-1px 0 0 4px;vertical-align:middle;color:#fff;font-weight:600}a.external:after{content:"\f504";display:inline-block;margin-left:4px;font-size:17px;color:#797979;line-height:1;font-family:dashicons, serif;text-decoration:none;font-weight:normal;font-style:normal;vertical-align:top;text-align:center}.button.loading{padding-right:25px;position:relative}.cpac_message.error.warning{border-left:4px solid #ffba00}.menu{position:relative;padding:0;margin-top:16px;margin-bottom:16px}.menu select{display:inline-block;margin:0}.menu .spinner{display:none;float:none;visibility:visible;margin:0 0 0 14px}.menu .view-link,.menu .view-link:active{display:inline-block;margin:0 0 0 12px;top:2px}table.ac-form-table{max-width:1100px;margin-top:20px}table.ac-form-table>tbody>tr>td,table.ac-form-table>tbody>tr>th{vertical-align:top}table.ac-form-table.settings tr th{font-weight:normal}table.ac-form-table.settings tr th h2{margin:0}table.ac-form-table.settings tr td{padding-top:58px}.wp-pointer-content{overflow:hidden}.wp-pointer-content ol{margin-left:1.5em;padding:0 15px}.wp-pointer-right{margin-right:15px}.wp-pointer.noclick .wp-pointer-buttons{display:none}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 .button.loading{padding-left:25px;padding-right:0}body.rtl .button.loading span{left:6px;right:auto}body.rtl .ac-left{float:right}body.rtl .ac-left .ac-columns .ac-column .column-meta img{margin-left:3px;margin-right:0}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_label .inner>a.remove-button{margin-right:12px;margin-left:0}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_label .inner .meta{float:left}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_label span.vers{float:right}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_type{text-align:left;padding-left:0;padding-right:auto}body.rtl .ac-left .ac-columns .ac-column .column-meta span.vers .comment-grey-bubble{float:left}body.rtl .ac-left .ac-columns .ac-column .column-form table tr.column_image_size td.input label input{margin-left:3px;margin-right:0}body.rtl .ac-left .ac-columns .ac-column .column-form table tr td.label p.description{right:0;left:auto}body.rtl .ac-left .ac-columns .ac-column .column-form table tr td.label a.more-info{float:left}body.rtl .ac-left .ac-columns .ac-column .column-form div.description{float:right}body.rtl .ac-left .ac-columns .ac-column .column-form div.input-width-range{float:right}body.rtl .ac-left .ac-columns .ac-column .column-form a.help{float:left}body.rtl .ac-left .column-footer .order-message{float:right;padding-right:22px;padding-left:0;background:transparent url("../images/order_arrow-rtl.png") no-repeat right top}body.rtl .ac-left .column-footer .button-container{float:left}body.rtl .ac-left .column-footer .submit{display:none}body.rtl .ac-right{float:left;margin-left:-300px;margin-right:0}body.rtl .cpac-placeholder{padding:5px 0 7px 4px}body.rtl .cpac_export .ms-container .ms-selection{float:left}
1
+ @font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2");font-style:normal;font-weight:400}.cpacicon,[class^="cpacicon-"],[class*=" cpacicon-"]{display:inline-block;transform:translate(0, 0);text-rendering:auto;font:normal normal 400 14px/1 cpac_icons;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.cpacicon-draft::before{content:""}.cpacicon-move::before{content:""}#cpac a:focus,#cpac a:active{outline:none}.wrap .nav-tab-wrapper{margin-bottom:24px}.wrap .notice{margin-top:16px;margin-bottom:16px}.ac-badge{display:inline-block;background:#d54e21;border-radius:10px;font-size:9px;line-height:17px;padding:0 6px;margin:-1px 0 0 4px;vertical-align:middle;color:#fff;font-weight:600}a.external:after{content:"\f504";display:inline-block;margin-left:4px;font-size:17px;color:#797979;line-height:1;font-family:dashicons, serif;text-decoration:none;font-weight:normal;font-style:normal;vertical-align:top;text-align:center}.button.loading{padding-right:25px;position:relative}.cpac_message.error.warning{border-left:4px solid #ffba00}.menu{position:relative;padding:0;margin-top:16px;margin-bottom:16px}.menu select{display:inline-block;margin:0}.menu .spinner{display:none;float:none;visibility:visible;margin:0 0 0 14px}.menu .view-link,.menu .view-link:active{display:inline-block;margin:0 0 0 12px;top:2px}table.ac-form-table{max-width:1100px;margin-top:20px}table.ac-form-table>tbody>tr>td,table.ac-form-table>tbody>tr>th{vertical-align:top}table.ac-form-table.settings tr th{font-weight:normal}table.ac-form-table.settings tr th h2{margin:0}table.ac-form-table.settings tr td{padding-top:58px}.wp-pointer-content{overflow:hidden}.wp-pointer-content ol{margin-left:1.5em;padding:0 15px}.wp-pointer-right{margin-right:15px}.wp-pointer.noclick .wp-pointer-buttons{display:none}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 .button.loading{padding-left:25px;padding-right:0}body.rtl .button.loading span{left:6px;right:auto}body.rtl .ac-left{float:right}body.rtl .ac-left .ac-columns .ac-column .column-meta img{margin-left:3px;margin-right:0}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_label .inner>a.remove-button{margin-right:12px;margin-left:0}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_label .inner .meta{float:left}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_label span.vers{float:right}body.rtl .ac-left .ac-columns .ac-column .column-meta .column_type{text-align:left;padding-left:0;padding-right:auto}body.rtl .ac-left .ac-columns .ac-column .column-meta span.vers .comment-grey-bubble{float:left}body.rtl .ac-left .ac-columns .ac-column .column-form table tr.column_image_size td.input label input{margin-left:3px;margin-right:0}body.rtl .ac-left .ac-columns .ac-column .column-form table tr td.label p.description{right:0;left:auto}body.rtl .ac-left .ac-columns .ac-column .column-form table tr td.label a.more-info{float:left}body.rtl .ac-left .ac-columns .ac-column .column-form div.description{float:right}body.rtl .ac-left .ac-columns .ac-column .column-form div.input-width-range{float:right}body.rtl .ac-left .ac-columns .ac-column .column-form a.help{float:left}body.rtl .ac-left .column-footer .order-message{float:right;padding-right:22px;padding-left:0;margin-right:8px}body.rtl .ac-left .column-footer .order-message .order-message__icon{left:inherit;right:0;transform:scaleX(-1)}body.rtl .ac-left .column-footer .button-container{float:left}body.rtl .ac-left .column-footer .submit{display:none}body.rtl .ac-right{float:left;margin-left:-300px;margin-right:0}body.rtl .cpac-placeholder{padding:5px 0 7px 4px}body.rtl .cpac_export .ms-container .ms-selection{float:left}
assets/css/admin-page-columns.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2");font-style:normal;font-weight:400}.cpacicon,[class^="cpacicon-"],[class*=" cpacicon-"]{display:inline-block;transform:translate(0, 0);text-rendering:auto;font:normal normal 400 14px/1 cpac_icons;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.cpacicon-draft::before{content:""}.cpacicon-move::before{content:""}.ui-sortable-helper{-webkit-box-shadow:1px 3px 6px 0 rgba(1,1,1,0.4);box-shadow:1px 3px 6px 0 rgba(1,1,1,0.4)}.ui-sortable-helper .column-meta{border-width:1px}.ac-column .comment-grey-bubble{height:16px;width:16px}.ac-column .comment-grey-bubble:before{content:'\f101';font:normal 20px/.5 'dashicons';speak:none;display:inline-block;padding:0;top:5px;left:0;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important}.rtl .ac-column .comment-grey-bubble:before{right:0;left:auto}.ac-admin{margin-right:300px;max-width:740px}.ac-admin #add-new-column-template{display:none}.ac-admin .ac-left{float:left;width:100%}.ac-admin .ac-left .column-footer a.add_column{padding-left:16px;padding-right:16px;text-align:center}.ac-admin .ac-left .column-footer a.submit.save,.ac-admin .ac-left .column-footer a.submit.update{padding-left:20px;padding-right:20px;text-align:center}.ac-admin .ac-left .column-footer .submit.save{display:inline-block}.ac-admin .ac-left .column-footer .submit.update{display:none}.ac-admin .ac-right{float:right;margin-right:-300px;width:280px}.ac-admin .ac-right .ac-right-inside.fixed{width:280px}.ac-admin .column-footer .spinner{display:none}.ac-admin.saving .ac-right-inside .spinner{visibility:visible}.ac-admin.saving .column-footer .spinner{margin:4px 0 0;background-position:center center;float:none;display:inline-block;visibility:visible}.ac-admin.stored .ac-right .sidebox.form-actions .submit.save{display:none}.ac-admin.stored .ac-right .sidebox.form-actions .submit.update{display:block}.ac-admin.stored .ac-right .sidebox.form-actions .form-reset{display:block}.ac-admin.stored .column-footer .submit.save{display:none}.ac-admin.stored .column-footer .submit.update{display:inline-block}.ac-left .ac-notice{background:#fff;border-left:4px solid #ffba00;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);margin-bottom:15px;padding:1px 12px}.ac-left .ajax-message{display:none}.ac-left .ac-message{margin-top:0 !important}.ac-left .ac-boxes .ac-columns form{box-shadow:0 1px 3px rgba(0,0,0,0.1);margin:0}.ac-left .ac-boxes.disabled{opacity:0.7}.ac-left .ac-boxes.disabled a.remove-button,.ac-left .ac-boxes.disabled a.clone-button,.ac-left .ac-boxes.disabled .column_action{display:none !important}.ac-left .ac-boxes.disabled .column-meta td.column_sort{display:none}.ac-left .ac-boxes.disabled .column-meta td.column_label{padding-left:10px}.ac-left .ac-boxes.disabled .meta span{cursor:default !important;opacity:0.45}.ac-left .ac-boxes.disabled .meta span:before{color:#808080 !important}.ac-left .ac-boxes.disabled .meta span.on{opacity:1}.ac-left .ac-boxes.disabled .column-footer{display:none}.ac-column a{cursor:pointer}.ac-column a:focus,.ac-column a:active{box-shadow:none}.ac-column.loading .ac-column-body>.spinner{position:absolute;left:50%;top:50%;z-index:200;margin-left:-10px;margin-top:-10px;display:block}.ac-column.loading .ac-column-body:before{content:'';position:absolute;width:100%;height:100%;background:#FFF;z-index:100;opacity:0.5}.ac-column.opened{margin-bottom:-1px}.ac-column.opened .ac-column-header{background-color:#eaeaea;border-color:#ccc}.ac-column.opened .ac-column-header:hover .column_label .inner>a.close-button{display:inline-block}.ac-column.opened .ac-column-header .column_edit:after{content:"\f142"}.ac-column.opened .ac-column-header table td{border-color:#f8f8f8;color:#333;text-shadow:0 1px 0 #FFFFFF}.ac-column.opened .ac-column-header table td a{color:#333;text-shadow:0 1px 0 #FFFFFF}.ac-column.opened .ac-column-header table td.column_sort span{color:#9b9b9b}.ac-column.opened .ac-column-header table td.column_label .meta span{color:#8d8d8d;text-shadow:none}.ac-column.opened .ac-column-header table td.column_label a.edit-button{display:none}.ac-column.opened .ac-column-header table td.column_type{color:#5C5C5C}.ac-column.opened .ac-column-header table td.column_edit:after{color:#9b9b9b}.ac-column.opened .ac-column-body{border:1px solid #ccc;border-top:1px solid #d4d4d4}.ac-column-setting{width:100%;clear:both;border-spacing:0;margin:0;border-top:1px solid #e8e8e8}.ac-column-setting:first-child{border-top:0}.ac-column-setting tr.hide{display:none}.ac-column-setting tr td{vertical-align:top;border:none;padding:0;background:#fff}.ac-column-setting td.col-label{position:relative;line-height:24px;overflow:visible;background:#f5f5f5;border-right:1px solid #dedede;width:34%;padding:10px;padding-left:12px}.ac-column-setting td.col-label span.label{font-weight:bold;display:block;color:#333333;font-style:normal}.ac-column-setting td.col-label div.tooltip{font-size:12px;font-style:normal;line-height:16px;margin:0 !important;display:none;position:absolute;max-width:200px;z-index:99;top:40px;left:0;font-weight:normal;color:#fff;background-color:#333;box-shadow:0 1px 3px rgba(0,0,0,0.2);padding:.618em 1em;border-radius:3px}.ac-column-setting td.col-label div.tooltip em{margin-top:3px;display:block;color:#999}.ac-column-setting td.col-input div.msg{margin-top:5px;display:none;color:#333;padding:6px 10px;background-color:#ffebe8;border:1px solid #fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.ac-column-setting td.col-input div.msg p{margin:0.5em 0 1em 0}.ac-column-setting td.col-input div.msg a.button{margin-bottom:1em}.ac-column-setting td.col-input .help-msg{margin:10px 0 0;color:#666;font-size:13px}.ac-column-setting .ac-column-setting td.col_label{background-color:#fcfcfc}.ac-column-setting .ac-column-setting td.col_label .label{font-size:12px;color:#595959}.ac-column-setting span.ac-setting-error{display:block;margin:0;background-color:#ffebe8;padding:7px 10px}.ac-column-setting-actions .col-settings p{padding-left:10px}.ac-column-setting-actions .col-settings a{text-decoration:none}.ac-column-setting-actions .col-settings a.close-button,.ac-column-setting-actions .col-settings a.clone-button{margin-right:10px}.ac-column-setting-actions .col-settings a.remove-button{color:#a00;text-decoration:none;text-shadow:none;margin-right:5px}.ac-column-setting-actions .col-settings a.remove-button:hover{color:#f00}.ac-setting-input{padding:10px;line-height:24px}.ac-setting-input input,.ac-setting-input select{width:99.95%}.ac-setting-input input[type=checkbox],.ac-setting-input input[type=radio]{width:auto;margin-right:4px}.ac-setting-input .checkbox-labels>label,.ac-setting-input .radio-labels>label{padding-right:10px;vertical-align:top}.ac-setting-input .checkbox-labels.vertical input[type=radio],.ac-setting-input .radio-labels.vertical input[type=radio]{margin-right:6px}.ac-setting-input .checkbox-labels.vertical>label,.ac-setting-input .radio-labels.vertical>label{display:block;margin-bottom:5px}.ac-setting-input-date .ac-setting-input-date__custom{display:inline-block;width:71px;margin-right:5px}.ac-setting-input-date .ac-setting-input-date__value{display:inline-block;width:165px}.ac-setting-input-date .ac-setting-input-date__example{margin-left:8px}.ac-setting-input-date .ac-setting-input-date__example .spinner{float:none;vertical-align:top}.ac-setting-input-date code{display:inline-block;min-width:60px;padding-top:0;padding-bottom:0;text-align:center}.ac-setting-input-width{position:relative}.ac-setting-input-width div.description{font-size:12px;width:68px;position:absolute;display:table}.ac-setting-input-width div.description input{margin:0;text-align:right;vertical-align:middle;display:table-cell}.ac-setting-input-width div.description input::-webkit-input-placeholder{font-size:13px}.ac-setting-input-width div.description input:-moz-placeholder{font-size:13px}.ac-setting-input-width div.description input::-moz-placeholder{font-size:13px}.ac-setting-input-width div.description input:-ms-input-placeholder{font-size:13px}.ac-setting-input-width div.description span{background:#efefef;display:table-cell;width:26px;line-height:23px;text-align:center;vertical-align:middle;border:1px solid #dedede;border-left:none;color:#505050}.ac-setting-input-width div.width-slider{margin-left:82px;margin-right:88px;position:relative;top:8px}.ac-setting-input-width div.width-slider .ui-slider-handle{cursor:ew-resize}.ac-setting-input-width div.unit-select{position:absolute;top:11px;right:6px;width:82px;text-align:right}.ac-setting-input-width div.unit-select .radio-labels{padding:0}.ac-setting-input-width div.unit-select .radio-labels label{padding:0;margin-right:6px}.ac-setting-input-width div.unit-select .radio-labels label input{margin-right:2px}.ac-column-setting--pro .col-label .dashicons{color:#A99D9F;transform:scale(0.9, 0.9);margin-top:2px;display:inline-block;margin-right:3px;cursor:pointer}.ac-column-setting--pro .radio-labels{display:inline-block}.ac-column-setting--pro .radio-labels input{background-color:#F0F0F0}.ac-column-setting--pro .radio-labels input:checked:before{background-color:#808080}.ac-column-setting--pro .ac-setting-input{background:#f5f5f5}.ac-column-setting--pro .acp-button{background:#e9426e;color:#fff;border:none;border-radius:3px;padding:3px 10px;letter-spacing:2px;cursor:pointer;font-size:13px;vertical-align:middle;margin-top:-1px;margin-left:5px}.ac-column-header{border-style:solid;border-color:#dfdfdf;border-width:1px 1px 0;background:#fcfcfc}.ac-column-header:nth-child(2n) .column-meta{background:#f9f9f9}.ac-column-header img{margin-right:3px}.ac-column-header table{border:none;background:transparent;border-radius:0}.ac-column-header table tr td{vertical-align:top;height:18px;padding:12px 8px;border-width:1px 0 0;border-style:solid;border-color:transparent}.ac-column-header table tr td.column_sort{position:relative;cursor:move;padding:9px 16px}.ac-column-header table tr td.column_sort span.cpacicon-move{position:absolute;top:12px;left:12px;font-size:22px;display:inline-block;color:#bdbdbd}.ac-column-header table tr td.column_label{width:70%;font-weight:bold;vertical-align:middle;position:relative;padding:15px 0}.ac-column-header table tr td.column_label .inner{position:relative;overflow:hidden;height:18px}.ac-column-header table tr td.column_label .inner .toggle img{max-height:20px}.ac-column-header table tr td.column_label .inner>a{color:#5a5a5a;padding:0 4px}.ac-column-header table tr td.column_label .inner>a:hover{color:#333333}.ac-column-header table tr td.column_label .inner>a.edit-button,.ac-column-header table tr td.column_label .inner>a.close-button,.ac-column-header table tr td.column_label .inner>a.remove-button,.ac-column-header table tr td.column_label .inner>a.clone-button{display:none;color:#0074a2;text-decoration:none;text-shadow:none;font-weight:normal;margin-left:5px;font-size:12px}.ac-column-header table tr td.column_label .inner>a.edit-button:hover,.ac-column-header table tr td.column_label .inner>a.close-button:hover,.ac-column-header table tr td.column_label .inner>a.remove-button:hover,.ac-column-header table tr td.column_label .inner>a.clone-button:hover{color:#2ea2cc}.ac-column-header table tr td.column_label .inner>a.remove-button{color:#a00}.ac-column-header table tr td.column_label .inner>a.remove-button:hover{color:#f00}.ac-column-header table tr td.column_label .inner .meta{display:inline-block;float:right;font-weight:normal;color:#b2b2b2;font-size:12px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting{cursor:pointer;margin-left:4px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-heading-setting--width{margin-right:3px;cursor:auto;color:#737373}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator{margin-left:3px;font-size:24px;line-height:17px;width:22px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator.ac-column-indicator--filter{font-size:20px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator.on,.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator.on span{color:#21759B}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.disabled{cursor:default}.ac-column-header table tr td.column_type{width:auto;min-width:120px;text-align:right;color:#999999;padding-right:0}.ac-column-header table tr td.column_type .inner{display:inline-block;height:18px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:120px;vertical-align:middle}.ac-column-header table tr td.column_type .inner a{margin-top:2px;color:#999999}.ac-column-header table tr td.column_edit{width:38px;min-width:38px;text-align:center;cursor:pointer}.ac-column-header table tr td.column_edit:after{right:0;content:"\f140";font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 5px 0 0;bottom:0;position:relative;vertical-align:bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important;color:#b4b9be}.ac-column-header table tr:hover td.column_sort span{color:#9b9b9b}.ac-column-header:hover .column_label .inner>a.remove-button,.ac-column-header:hover .column_label .inner>a.edit-button,.ac-column-header:hover .column_label .inner>a.clone-button{display:inline-block}.ac-column-header span.vers{padding-top:2px}.ac-column-body{display:none;border-width:1px 1px 0;border-style:solid;border-color:#dfdfdf;position:relative}.column-footer{background:#EAF2FA;border:1px solid #c7d7e2;min-height:26px;padding:8px;overflow:hidden}.column-footer .order-message{background:transparent url("../images/order_arrow.png") no-repeat 0 0;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 #FFFFFF;display:inline-block}.column-footer .button-container{float:right;display:inline-block;min-height:29px}.column-footer .button-container a{display:inline-block;margin-left:5px;vertical-align:top}.column-footer .button-container a.clear-columns{color:#BC0B0B;text-decoration:none;margin-right:8px;margin-top:5px}.column-footer .button-container a.clear-columns:hover{color:red}.ac-right .sidebox{background:none repeat scroll 0 0 #FFFFFF;border:1px solid #dedede;border-radius:0 0 0 0;box-shadow:0 1px 3px rgba(0,0,0,0.1);position:relative;margin-bottom:14px}.ac-right .sidebox h3{padding:10px;margin:0;position:relative}.ac-right .sidebox h3.title{font-family:Georgia, "Times New Roman", "Bitstream Charter", Times, serif;font-size:15px;font-weight:normal;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}.ac-right .sidebox h3 span.left{position:relative;background:#fff;z-index:2;padding-right:8px;float:none}.ac-right .sidebox h3 span.contenttype{display:block;line-height:20px;font-size:12px;text-transform:uppercase;color:#808080;margin-top:4px}.ac-right .sidebox h3 span.contenttype.right{position:absolute;display:inline-block;z-index:1;right:10px;text-align:right;margin-top:0}.ac-right .sidebox .inside{padding:10px}.ac-right .sidebox .inside p{margin-top:0}.ac-right .sidebox.form-actions .form-reset{display:none;border-bottom:1px solid #F5F5F5;padding:8px}.ac-right .sidebox.form-actions .reset-column-type{text-decoration:none;color:#BC0B0B;line-height:25px;display:inline-block;background:none;border:none;padding:0;font-size:13px;cursor:pointer;margin:0}.ac-right .sidebox.form-actions .reset-column-type:hover{color:red}.ac-right .sidebox.form-actions .form-update{padding:8px;overflow:hidden}.ac-right .sidebox.form-actions .submit{display:none;width:100%;height:28px;line-height:28px;text-align:center}.ac-right .sidebox.form-actions .submit.save{display:block}.ac-right .sidebox#direct-feedback #feedback-support,.ac-right .sidebox#direct-feedback #feedback-rate{display:none}.ac-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:bold;color:#222;display:inline-block;text-decoration:none}.ac-right .sidebox#direct-feedback .inside>a:hover{background:#FAFAFA}.ac-right .sidebox#direct-feedback .inside form textarea{width:100%;height:120px}.ac-right .sidebox#direct-feedback .inside form input[type="submit"]{display:inline-block;float:right;border-radius:4px;border:1px solid #CCC;height:32px;text-align:center;line-height:32px;font-weight:bold;font-size:12px;padding:0 32px;color:#CCC;background:none;text-decoration:none;cursor:pointer}.ac-right .sidebox#direct-feedback .inside form input[type="submit"]:hover{background:#FAFAFA}.ac-right .sidebox#direct-feedback .inside form p.description{float:left;font-size:10px}.ac-right .sidebox#direct-feedback .inside ul{margin:0}.ac-right .sidebox#direct-feedback .inside ul.share li{margin:0;display:block;float:left;margin-left:9px;width:30%}.ac-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}.ac-right .sidebox#direct-feedback .inside ul.share li a:hover{background:#FAFAFA}.ac-right .sidebox#direct-feedback .inside ul.share li:first-child{margin-left:0}.ac-right .sidebox#direct-feedback #feedback-support .inside ul.share li{width:48%}#ac-pro-version{background:none}#ac-pro-version .padding-box{padding:20px 10px 10px;background:#3d4350;color:#fff}#ac-pro-version .nopadding{margin:0;padding:0}#ac-pro-version h2{color:#fff}#ac-pro-version h3{font-size:34px;line-height:40px}#ac-pro-version h3 a{text-decoration:none;color:#fff}#ac-pro-version h3 a span{color:#e9426e}#ac-pro-version sup{text-decoration:line-through;font-size:13px;color:#ccc}#ac-pro-version .ac-pro-prices{color:#ffcac0;text-decoration:none}#ac-pro-version .ac-pro-prices:hover{text-decoration:underline}#ac-pro-version .ac-pro-prices:hover sup{text-decoration:none}#ac-pro-version .acp-button{background:#e9426e;border:none;color:#fff;text-decoration:none;text-align:center;display:block;padding:6px 20px;border-radius:3px;cursor:pointer}#ac-pro-version .more{color:#FFEE85;text-decoration:none}#ac-pro-version .more:hover{text-decoration:underline}#ac-pro-version p.center{text-align:center}#ac-pro-version p.nomargin{margin-bottom:0}#ac-pro-version ul.features a:hover{text-decoration:underline}#ac-pro-version ul li{padding-bottom:3px}#ac-pro-version ul li a{color:#fff;text-decoration:none;padding-left:25px;position:relative;display:block}#ac-pro-version ul li a:before{content:'\2713';font-weight:bold;font-size:16px;position:absolute;left:0;top:0}#ac-pro-version ul li.acp-integration{padding:0;min-height:23px;line-height:23px}#ac-pro-version ul li.acp-integration img{height:23px;display:inline-block;vertical-align:middle;margin-right:3px}#ac-pro-version ul li.acp-integration img.ac-addon-pods{margin-top:-4px}#ac-pro-version ul li.acp-integration img.ac-addon-types{height:18px}#ac-pro-version ul li.acp-integration img.cac-addon-acf{margin-top:-4px;height:15px}#ac-pro-version ul li.acp-integration a:before{content:'+'}#ac-pro-version .padding-box.ac-pro-deal{color:#3d4350;padding-bottom:20px;text-align:center;background:#ffef8f}#ac-pro-version .padding-box.ac-pro-deal h3{font-size:20px;line-height:26px;padding-top:0;padding-bottom:0;margin-bottom:18px}#ac-pro-version .padding-box.ac-pro-deal a.acp-button{font-size:16px}#ac-pro-version .padding-box.ac-pro-newsletter{background:#fff;color:#3d4350}#ac-pro-version .padding-box.ac-pro-newsletter h3{font-size:20px;padding-bottom:0}#ac-pro-version .padding-box.ac-pro-newsletter input{width:100%;margin-bottom:8px}#ac-pro-version .padding-box.ac-pro-newsletter .acp-button{margin-top:12px;margin-bottom:0;padding:7px 20px}#ac-pro-version .acp-button{background:#e9426e;border:none;color:#fff;text-decoration:none;text-align:center;display:block;padding:6px 20px;border-radius:3px}@media only screen and (max-width: 900px){.ac-admin{margin-right:0}.ac-admin .menu{float:none}.ac-admin .ac-left{float:none}.ac-admin .ac-right{float:none;margin-top:0;margin-right:0;width:100%}}.ac-modal{position:fixed;overflow:auto;height:100%;width:100%;z-index:100000;top:0;background:rgba(0,0,0,0.5);display:none}.ac-modal.-active{display:block}.ac-modal__dialog{border:1px solid #C8C8C8;background:#fff;position:fixed;top:200px;left:50%;transform:translateX(-50%);width:650px;max-width:90%}.ac-modal__dialog__header{background:#f5f5f5;font-size:18px;color:#807F7F;padding:17px 25px}.ac-modal__dialog__close{display:inline-block;padding:0;margin:0;border:none;background:none;position:absolute;right:0;top:0;width:52px;height:52px;text-align:center;color:#989797;cursor:pointer}.ac-modal__dialog__close:hover{background:#e1e1e1}.ac-modal__dialog__content{padding:25px}.ac-modal__dialog__content__lead{font-weight:bold;font-size:15px;margin-top:5px;margin-bottom:25px;color:#6D6D6D}.ac-modal__dialog__list li{position:relative;padding-left:25px;font-weight:400;font-size:16px;letter-spacing:0.5px;margin-bottom:10px}.ac-modal__dialog__list li:before{content:'\f147';font-family:Dashicons;position:absolute;left:0;top:0;color:#3D4350}.ac-modal__dialog__list li:nth-child(2n){color:#e9426e}.ac-modal__dialog__footer{padding:20px 24px;border-top:1px solid #DBDBDB;color:#979696;font-size:16px}.ac-modal__dialog__footer .button{margin-left:0;padding-left:15px;padding-right:15px}.ac-modal__dialog__footer span{display:inline-block;margin-top:4px;margin-left:10px;font-size:14px}.ac-modal__dialog__mascot{position:absolute;right:20px;bottom:20px;width:150px;z-index:4}@media only screen and (max-width: 720px){.ac-modal__dialog__mascot{display:none}.ac-modal__dialog__footer__content{display:block}.ac-modal__dialog__footer .button{margin-left:0;margin-top:10px}}
1
+ @font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2");font-style:normal;font-weight:400}.cpacicon,[class^="cpacicon-"],[class*=" cpacicon-"]{display:inline-block;transform:translate(0, 0);text-rendering:auto;font:normal normal 400 14px/1 cpac_icons;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.cpacicon-draft::before{content:""}.cpacicon-move::before{content:""}.ui-sortable-helper{-webkit-box-shadow:1px 3px 6px 0 rgba(1,1,1,0.4);box-shadow:1px 3px 6px 0 rgba(1,1,1,0.4)}.ui-sortable-helper .column-meta{border-width:1px}.ac-column .comment-grey-bubble{height:16px;width:16px}.ac-column .comment-grey-bubble:before{content:'\f101';font:normal 20px/.5 'dashicons';speak:none;display:inline-block;padding:0;top:5px;left:0;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important}.rtl .ac-column .comment-grey-bubble:before{right:0;left:auto}.ac-admin{margin-right:300px;max-width:740px}.ac-admin #add-new-column-template{display:none}.ac-admin .ac-left{float:left;width:100%}.ac-admin .ac-left .column-footer a.add_column{padding-left:16px;padding-right:16px;text-align:center}.ac-admin .ac-left .column-footer a.submit.save,.ac-admin .ac-left .column-footer a.submit.update{padding-left:20px;padding-right:20px;text-align:center}.ac-admin .ac-left .column-footer .submit.save{display:inline-block}.ac-admin .ac-left .column-footer .submit.update{display:none}.ac-admin .ac-right{float:right;margin-right:-300px;width:280px}.ac-admin .ac-right .ac-right-inside.fixed{width:280px}.ac-admin .column-footer .spinner{display:none}.ac-admin.saving .ac-right-inside .spinner{visibility:visible}.ac-admin.saving .column-footer .spinner{margin:4px 0 0;background-position:center center;float:none;display:inline-block;visibility:visible}.ac-admin.stored .ac-right .sidebox.form-actions .submit.save{display:none}.ac-admin.stored .ac-right .sidebox.form-actions .submit.update{display:block}.ac-admin.stored .ac-right .sidebox.form-actions .form-reset{display:block}.ac-admin.stored .column-footer .submit.save{display:none}.ac-admin.stored .column-footer .submit.update{display:inline-block}.ac-left .ac-notice{background:#fff;border-left:4px solid #ffba00;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);margin-bottom:15px;padding:1px 12px}.ac-left .ajax-message{display:none}.ac-left .ac-message{margin-top:0 !important}.ac-left .ac-boxes .ac-columns form{box-shadow:0 1px 3px rgba(0,0,0,0.1);margin:0}.ac-left .ac-boxes.disabled{opacity:0.7}.ac-left .ac-boxes.disabled a.remove-button,.ac-left .ac-boxes.disabled a.clone-button,.ac-left .ac-boxes.disabled .column_action{display:none !important}.ac-left .ac-boxes.disabled .column-meta td.column_sort{display:none}.ac-left .ac-boxes.disabled .column-meta td.column_label{padding-left:10px}.ac-left .ac-boxes.disabled .meta span{cursor:default !important;opacity:0.45}.ac-left .ac-boxes.disabled .meta span:before{color:#808080 !important}.ac-left .ac-boxes.disabled .meta span.on{opacity:1}.ac-left .ac-boxes.disabled .column-footer{display:none}.ac-column a{cursor:pointer}.ac-column a:focus,.ac-column a:active{box-shadow:none}.ac-column.loading .ac-column-body>.spinner{position:absolute;left:50%;top:50%;z-index:200;margin-left:-10px;margin-top:-10px;display:block}.ac-column.loading .ac-column-body:before{content:'';position:absolute;width:100%;height:100%;background:#FFF;z-index:100;opacity:0.5}.ac-column.opened{margin-bottom:-1px}.ac-column.opened .ac-column-header{background-color:#eaeaea;border-color:#ccc}.ac-column.opened .ac-column-header:hover .column_label .inner>a.close-button{display:inline-block}.ac-column.opened .ac-column-header .column_edit:after{content:"\f142"}.ac-column.opened .ac-column-header table td{border-color:#f8f8f8;color:#333;text-shadow:0 1px 0 #FFFFFF}.ac-column.opened .ac-column-header table td a{color:#333;text-shadow:0 1px 0 #FFFFFF}.ac-column.opened .ac-column-header table td.column_sort span{color:#9b9b9b}.ac-column.opened .ac-column-header table td.column_label .meta span{color:#8d8d8d;text-shadow:none}.ac-column.opened .ac-column-header table td.column_label a.edit-button{display:none}.ac-column.opened .ac-column-header table td.column_type{color:#5C5C5C}.ac-column.opened .ac-column-header table td.column_edit:after{color:#9b9b9b}.ac-column.opened .ac-column-body{border:1px solid #ccc;border-top:1px solid #d4d4d4}.ac-column-setting{width:100%;clear:both;border-spacing:0;margin:0;border-top:1px solid #e8e8e8}.ac-column-setting:first-child{border-top:0}.ac-column-setting tr.hide{display:none}.ac-column-setting tr td{vertical-align:top;border:none;padding:0;background:#fff}.ac-column-setting td.col-label{position:relative;line-height:24px;overflow:visible;background:#f5f5f5;border-right:1px solid #dedede;width:34%;padding:10px;padding-left:12px}.ac-column-setting td.col-label span.label{font-weight:bold;display:block;color:#333333;font-style:normal}.ac-column-setting td.col-label div.tooltip{font-size:12px;font-style:normal;line-height:16px;margin:0 !important;display:none;position:absolute;max-width:200px;z-index:99;top:40px;left:0;font-weight:normal;color:#fff;background-color:#333;box-shadow:0 1px 3px rgba(0,0,0,0.2);padding:.618em 1em;border-radius:3px}.ac-column-setting td.col-label div.tooltip em{margin-top:3px;display:block;color:#999}.ac-column-setting td.col-input div.msg{margin-top:5px;display:none;color:#333;padding:6px 10px;background-color:#ffebe8;border:1px solid #fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.ac-column-setting td.col-input div.msg p{margin:0.5em 0 1em 0}.ac-column-setting td.col-input div.msg a.button{margin-bottom:1em}.ac-column-setting td.col-input .help-msg{margin:10px 0 0;color:#666;font-size:13px}.ac-column-setting .ac-column-setting td.col_label{background-color:#fcfcfc}.ac-column-setting .ac-column-setting td.col_label .label{font-size:12px;color:#595959}.ac-column-setting span.ac-setting-error{display:block;margin:0;background-color:#ffebe8;padding:7px 10px}.ac-column-setting-actions .col-settings p{padding-left:10px}.ac-column-setting-actions .col-settings a{text-decoration:none}.ac-column-setting-actions .col-settings a.close-button,.ac-column-setting-actions .col-settings a.clone-button{margin-right:10px}.ac-column-setting-actions .col-settings a.remove-button{color:#a00;text-decoration:none;text-shadow:none;margin-right:5px}.ac-column-setting-actions .col-settings a.remove-button:hover{color:#f00}.ac-setting-input{padding:10px;line-height:24px}.ac-setting-input input,.ac-setting-input select{width:99.95%}.ac-setting-input input[type=checkbox],.ac-setting-input input[type=radio]{width:auto;margin-right:4px}.ac-setting-input .checkbox-labels>label,.ac-setting-input .radio-labels>label{padding-right:10px;vertical-align:top}.ac-setting-input .checkbox-labels.vertical input[type=radio],.ac-setting-input .radio-labels.vertical input[type=radio]{margin-right:6px}.ac-setting-input .checkbox-labels.vertical>label,.ac-setting-input .radio-labels.vertical>label{display:block;margin-bottom:5px}.ac-setting-input-date .ac-setting-input-date__custom{display:inline-block;width:71px;margin-right:5px}.ac-setting-input-date .ac-setting-input-date__value{display:inline-block;width:165px}.ac-setting-input-date .ac-setting-input-date__example{margin-left:8px}.ac-setting-input-date .ac-setting-input-date__example .spinner{float:none;vertical-align:top}.ac-setting-input-date code{display:inline-block;min-width:60px;padding-top:0;padding-bottom:0;text-align:center}.ac-setting-input-width{position:relative}.ac-setting-input-width div.description{font-size:12px;width:68px;position:absolute;display:table}.ac-setting-input-width div.description input{margin:0;text-align:right;vertical-align:middle;display:table-cell}.ac-setting-input-width div.description input::-webkit-input-placeholder{font-size:13px}.ac-setting-input-width div.description input:-moz-placeholder{font-size:13px}.ac-setting-input-width div.description input::-moz-placeholder{font-size:13px}.ac-setting-input-width div.description input:-ms-input-placeholder{font-size:13px}.ac-setting-input-width div.description span{background:#efefef;display:table-cell;width:26px;line-height:23px;text-align:center;vertical-align:middle;border:1px solid #dedede;border-left:none;color:#505050}.ac-setting-input-width div.width-slider{margin-left:82px;margin-right:88px;position:relative;top:8px}.ac-setting-input-width div.width-slider .ui-slider-handle{cursor:ew-resize}.ac-setting-input-width div.unit-select{position:absolute;top:11px;right:6px;width:82px;text-align:right}.ac-setting-input-width div.unit-select .radio-labels{padding:0}.ac-setting-input-width div.unit-select .radio-labels label{padding:0;margin-right:6px}.ac-setting-input-width div.unit-select .radio-labels label input{margin-right:2px}.ac-column-setting--pro .col-label .dashicons{color:#A99D9F;transform:scale(0.9, 0.9);margin-top:2px;display:inline-block;margin-right:3px;cursor:pointer}.ac-column-setting--pro .radio-labels{display:inline-block}.ac-column-setting--pro .radio-labels input{background-color:#F0F0F0}.ac-column-setting--pro .radio-labels input:checked:before{background-color:#808080}.ac-column-setting--pro .ac-setting-input{background:#f5f5f5}.ac-column-setting--pro .acp-button{background:#e9426e;color:#fff;border:none;border-radius:3px;padding:3px 10px;letter-spacing:2px;cursor:pointer;font-size:13px;vertical-align:middle;margin-top:-1px;margin-left:5px}.ac-column-header{border-style:solid;border-color:#dfdfdf;border-width:1px 1px 0;background:#fcfcfc}.ac-column-header:nth-child(2n) .column-meta{background:#f9f9f9}.ac-column-header img{margin-right:3px}.ac-column-header table{border:none;background:transparent;border-radius:0}.ac-column-header table tr td{vertical-align:top;height:18px;padding:12px 8px;border-width:1px 0 0;border-style:solid;border-color:transparent}.ac-column-header table tr td.column_sort{position:relative;cursor:move;padding:9px 16px}.ac-column-header table tr td.column_sort span.cpacicon-move{position:absolute;top:12px;left:12px;font-size:22px;display:inline-block;color:#bdbdbd}.ac-column-header table tr td.column_label{width:70%;font-weight:bold;vertical-align:middle;position:relative;padding:15px 0}.ac-column-header table tr td.column_label .inner{position:relative;overflow:hidden;height:18px}.ac-column-header table tr td.column_label .inner .toggle img{max-height:20px}.ac-column-header table tr td.column_label .inner>a{color:#5a5a5a;padding:0 4px}.ac-column-header table tr td.column_label .inner>a:hover{color:#333333}.ac-column-header table tr td.column_label .inner>a.edit-button,.ac-column-header table tr td.column_label .inner>a.close-button,.ac-column-header table tr td.column_label .inner>a.remove-button,.ac-column-header table tr td.column_label .inner>a.clone-button{display:none;color:#0074a2;text-decoration:none;text-shadow:none;font-weight:normal;margin-left:5px;font-size:12px}.ac-column-header table tr td.column_label .inner>a.edit-button:hover,.ac-column-header table tr td.column_label .inner>a.close-button:hover,.ac-column-header table tr td.column_label .inner>a.remove-button:hover,.ac-column-header table tr td.column_label .inner>a.clone-button:hover{color:#2ea2cc}.ac-column-header table tr td.column_label .inner>a.remove-button{color:#a00}.ac-column-header table tr td.column_label .inner>a.remove-button:hover{color:#f00}.ac-column-header table tr td.column_label .inner .meta{display:inline-block;float:right;font-weight:normal;color:#b2b2b2;font-size:12px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting{cursor:pointer;margin-left:4px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-heading-setting--width{margin-right:3px;cursor:auto;color:#737373}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator{margin-left:3px;font-size:24px;line-height:17px;width:22px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator.ac-column-indicator--filter{font-size:20px}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator.on,.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.ac-column-indicator.on span{color:#21759B}.ac-column-header table tr td.column_label .inner .meta .ac-column-heading-setting.disabled{cursor:default}.ac-column-header table tr td.column_type{width:auto;min-width:120px;text-align:right;color:#999999;padding-right:0}.ac-column-header table tr td.column_type .inner{display:inline-block;height:18px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:120px;vertical-align:middle}.ac-column-header table tr td.column_type .inner a{margin-top:2px;color:#999999}.ac-column-header table tr td.column_edit{width:38px;min-width:38px;text-align:center;cursor:pointer}.ac-column-header table tr td.column_edit:after{right:0;content:"\f140";font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 5px 0 0;bottom:0;position:relative;vertical-align:bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important;color:#b4b9be}.ac-column-header table tr:hover td.column_sort span{color:#9b9b9b}.ac-column-header:hover .column_label .inner>a.remove-button,.ac-column-header:hover .column_label .inner>a.edit-button,.ac-column-header:hover .column_label .inner>a.clone-button{display:inline-block}.ac-column-header span.vers{padding-top:2px}.ac-column-body{display:none;border-width:1px 1px 0;border-style:solid;border-color:#dfdfdf;position:relative}.column-footer{background:#EAF2FA;border:1px solid #c7d7e2;min-height:26px;padding:8px;overflow:hidden}.column-footer .order-message{color:#7A9BBE;float:left;font-family:Comic Sans MS, sans-serif;font-size:11px;height:13px;position:relative;line-height:1em;margin-left:4px;padding:7px 0 0 22px;text-shadow:0 1px 0 #FFFFFF;display:inline-block}.column-footer .order-message__icon{display:inline-block;position:absolute;left:0;top:0}.column-footer .button-container{float:right;display:inline-block;min-height:29px}.column-footer .button-container a{display:inline-block;margin-left:5px;vertical-align:top}.column-footer .button-container a.clear-columns{color:#BC0B0B;text-decoration:none;margin-right:8px;margin-top:5px}.column-footer .button-container a.clear-columns:hover{color:red}.ac-right .sidebox{background:none repeat scroll 0 0 #FFFFFF;border:1px solid #dedede;border-radius:0 0 0 0;box-shadow:0 1px 3px rgba(0,0,0,0.1);position:relative;margin-bottom:14px}.ac-right .sidebox h3{padding:10px;margin:0;position:relative}.ac-right .sidebox h3.title{font-family:Georgia, "Times New Roman", "Bitstream Charter", Times, serif;font-size:15px;font-weight:normal;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}.ac-right .sidebox h3 span.left{position:relative;background:#fff;z-index:2;padding-right:8px;float:none}.ac-right .sidebox h3 span.contenttype{display:block;line-height:20px;font-size:12px;text-transform:uppercase;color:#808080;margin-top:4px}.ac-right .sidebox h3 span.contenttype.right{position:absolute;display:inline-block;z-index:1;right:10px;text-align:right;margin-top:0}.ac-right .sidebox .inside{padding:10px}.ac-right .sidebox .inside p{margin-top:0}.ac-right .sidebox.form-actions .form-reset{display:none;border-bottom:1px solid #F5F5F5;padding:8px}.ac-right .sidebox.form-actions .reset-column-type{text-decoration:none;color:#BC0B0B;line-height:25px;display:inline-block;background:none;border:none;padding:0;font-size:13px;cursor:pointer;margin:0}.ac-right .sidebox.form-actions .reset-column-type:hover{color:red}.ac-right .sidebox.form-actions .form-update{padding:8px;overflow:hidden}.ac-right .sidebox.form-actions .submit{display:none;width:100%;height:28px;line-height:28px;text-align:center}.ac-right .sidebox.form-actions .submit.save{display:block}.ac-right .sidebox#direct-feedback #feedback-support,.ac-right .sidebox#direct-feedback #feedback-rate{display:none}.ac-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:bold;color:#222;display:inline-block;text-decoration:none}.ac-right .sidebox#direct-feedback .inside>a:hover{background:#FAFAFA}.ac-right .sidebox#direct-feedback .inside form textarea{width:100%;height:120px}.ac-right .sidebox#direct-feedback .inside form input[type="submit"]{display:inline-block;float:right;border-radius:4px;border:1px solid #CCC;height:32px;text-align:center;line-height:32px;font-weight:bold;font-size:12px;padding:0 32px;color:#CCC;background:none;text-decoration:none;cursor:pointer}.ac-right .sidebox#direct-feedback .inside form input[type="submit"]:hover{background:#FAFAFA}.ac-right .sidebox#direct-feedback .inside form p.description{float:left;font-size:10px}.ac-right .sidebox#direct-feedback .inside ul{margin:0}.ac-right .sidebox#direct-feedback .inside ul.share li{margin:0;display:block;float:left;margin-left:9px;width:30%}.ac-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}.ac-right .sidebox#direct-feedback .inside ul.share li a:hover{background:#FAFAFA}.ac-right .sidebox#direct-feedback .inside ul.share li:first-child{margin-left:0}.ac-right .sidebox#direct-feedback #feedback-support .inside ul.share li{width:48%}#ac-pro-version{background:none}#ac-pro-version .padding-box{padding:20px 10px 10px;background:#3d4350;color:#fff}#ac-pro-version .nopadding{margin:0;padding:0}#ac-pro-version h2{color:#fff}#ac-pro-version h3{font-size:34px;line-height:40px}#ac-pro-version h3 a{text-decoration:none;color:#fff}#ac-pro-version h3 a span{color:#e9426e}#ac-pro-version sup{text-decoration:line-through;font-size:13px;color:#ccc}#ac-pro-version .ac-pro-prices{color:#ffcac0;text-decoration:none}#ac-pro-version .ac-pro-prices:hover{text-decoration:underline}#ac-pro-version .ac-pro-prices:hover sup{text-decoration:none}#ac-pro-version .acp-button{background:#e9426e;border:none;color:#fff;text-decoration:none;text-align:center;display:block;padding:6px 20px;border-radius:3px;cursor:pointer}#ac-pro-version .more{color:#FFEE85;text-decoration:none}#ac-pro-version .more:hover{text-decoration:underline}#ac-pro-version p.center{text-align:center}#ac-pro-version p.nomargin{margin-bottom:0}#ac-pro-version ul.features a:hover{text-decoration:underline}#ac-pro-version ul li{padding-bottom:3px}#ac-pro-version ul li a{color:#fff;text-decoration:none;padding-left:25px;position:relative;display:block}#ac-pro-version ul li a:before{content:'\2713';font-weight:bold;font-size:16px;position:absolute;left:0;top:0}#ac-pro-version ul li.acp-integration{padding:0;min-height:23px;line-height:23px}#ac-pro-version ul li.acp-integration img{height:23px;display:inline-block;vertical-align:middle;margin-right:3px}#ac-pro-version ul li.acp-integration img.ac-addon-pods{margin-top:-4px}#ac-pro-version ul li.acp-integration img.ac-addon-types{height:18px}#ac-pro-version ul li.acp-integration img.cac-addon-acf{margin-top:-4px;height:15px}#ac-pro-version ul li.acp-integration a:before{content:'+'}#ac-pro-version .padding-box.ac-pro-deal{color:#3d4350;padding-bottom:20px;text-align:center;background:#ffef8f}#ac-pro-version .padding-box.ac-pro-deal h3{font-size:20px;line-height:26px;padding-top:0;padding-bottom:0;margin-bottom:18px}#ac-pro-version .padding-box.ac-pro-deal a.acp-button{font-size:16px}#ac-pro-version .padding-box.ac-pro-newsletter{background:#fff;color:#3d4350}#ac-pro-version .padding-box.ac-pro-newsletter h3{font-size:20px;padding-bottom:0}#ac-pro-version .padding-box.ac-pro-newsletter input{width:100%;margin-bottom:8px}#ac-pro-version .padding-box.ac-pro-newsletter .acp-button{margin-top:12px;margin-bottom:0;padding:7px 20px}#ac-pro-version .acp-button{background:#e9426e;border:none;color:#fff;text-decoration:none;text-align:center;display:block;padding:6px 20px;border-radius:3px}@media only screen and (max-width: 900px){.ac-admin{margin-right:0}.ac-admin .menu{float:none}.ac-admin .ac-left{float:none}.ac-admin .ac-right{float:none;margin-top:0;margin-right:0;width:100%}}.ac-modal{position:fixed;overflow:auto;height:100%;width:100%;z-index:100000;top:0;background:rgba(0,0,0,0.5);display:none}.ac-modal.-active{display:block}.ac-modal__dialog{border:1px solid #C8C8C8;background:#fff;position:fixed;top:200px;left:50%;transform:translateX(-50%);width:650px;max-width:90%}.ac-modal__dialog__header{background:#f5f5f5;font-size:18px;color:#807F7F;padding:17px 25px}.ac-modal__dialog__close{display:inline-block;padding:0;margin:0;border:none;background:none;position:absolute;right:0;top:0;width:52px;height:52px;text-align:center;color:#989797;cursor:pointer}.ac-modal__dialog__close:hover{background:#e1e1e1}.ac-modal__dialog__content{padding:25px}.ac-modal__dialog__content__lead{font-weight:bold;font-size:15px;margin-top:5px;margin-bottom:25px;color:#6D6D6D}.ac-modal__dialog__list li{position:relative;padding-left:25px;font-weight:400;font-size:16px;letter-spacing:0.5px;margin-bottom:10px}.ac-modal__dialog__list li:before{content:'\f147';font-family:Dashicons;position:absolute;left:0;top:0;color:#3D4350}.ac-modal__dialog__list li:nth-child(2n){color:#e9426e}.ac-modal__dialog__footer{padding:20px 24px;border-top:1px solid #DBDBDB;color:#979696;font-size:16px}.ac-modal__dialog__footer .button{margin-left:0;padding-left:15px;padding-right:15px}.ac-modal__dialog__footer span{display:inline-block;margin-top:4px;margin-left:10px;font-size:14px}.ac-modal__dialog__mascot{position:absolute;right:20px;bottom:20px;width:150px;height:225px;z-index:4}@media only screen and (max-width: 720px){.ac-modal__dialog__mascot{display:none}.ac-modal__dialog__footer__content{display:block}.ac-modal__dialog__footer .button{margin-left:0;margin-top:10px}}
assets/css/notice.css ADDED
@@ -0,0 +1 @@
 
1
+ .ac-notice{position:relative;min-height:1%;overflow:hidden;padding-right:40px}.ac-notice .notice-dismiss{text-decoration:none}.ac-notice__dismiss{float:right;margin:.5em}.ac-notice.review .ac-notice__dismiss,.ac-notice.review .notice-dismiss{display:none}.ac-notice>div{margin:0.5em 0;padding:2px}
assets/css/table.css CHANGED
@@ -1 +1 @@
1
- .column-status .dashicons{font-size:22px}.column-status .dashicons.large{width:25px;height:28px;font-size:28px}.column-status .dashicons.dashicons-lock{font-size:15px;margin-left:-2px}.ac-image-sizes .ac-missing-size{color:#929292}.ac-comment-bubble .post-com-count{display:inline-block;vertical-align:top}.ac-comment-bubble .post-com-count-no-comments,.ac-comment-bubble .post-com-count-approved{margin-top:5px}.ac-comment-bubble .comment-count-no-comments,.ac-comment-bubble .comment-count-approved{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;padding:0 8px;min-width:24px;height:2em;-webkit-border-radius:5px;border-radius:5px;background-color:#72777c;color:#fff;font-size:11px;line-height:21px;text-align:center}.ac-comment-bubble .post-com-count-no-comments:after,.ac-comment-bubble .post-com-count-approved:after{content:"";display:block;margin-left:8px;width:0;height:0;border-top:5px solid #72777c;border-right:5px solid transparent}.ac-comment-bubble .post-com-count-approved:hover .comment-count-approved,.ac-comment-bubble .post-com-count-approved:focus .comment-count-approved{background:#0073aa}.ac-comment-bubble .post-com-count-approved:hover:after,.ac-comment-bubble .post-com-count-approved:focus:after{border-top-color:#0073aa}.ac-comment-bubble .post-com-count-pending{position:relative;left:-3px;padding:0 5px;min-width:7px;height:17px;border:2px solid #fff;-webkit-border-radius:11px;border-radius:11px;background:#ca4a1f;color:#fff;font-size:9px;line-height:17px;text-align:center}.ac-comment-bubble .post-com-count-no-pending{display:none}.ac-divider{display:inline-block;width:14px;height:12px;background:transparent url(../images/square.png) no-repeat 50% 7px}span.status-closed{color:red}.ac-value-stars{white-space:nowrap;word-wrap:normal;display:block}.ac-value-stars .ac-value-star{font-size:16px;width:auto;margin-right:-3px}.actions #post-query-submit{float:left;vertical-align:middle;margin-bottom:4px}.tablenav.top .ac-button{top:2px;display:inline-block;vertical-align:middle;float:left;margin-bottom:4px}body.edit-tags-php .tablenav.top .ac-button{float:none}span.dashicons.flip:before{transform:scale(-1, 1);display:inline-block}span.dashicons.yellow{color:#ffb900}span.dashicons.orange{color:#d54e21}span.dashicons.red{color:#dc3232}span.dashicons.green{color:#46b450}span.dashicons.light-gray{color:#bbb}span.dashicons.gray{color:#8a8a8a}span.dashicons.blue{color:#0073aa}span.dashicons.light-blue{color:#00a0d2}body.edit-php #delete_all{float:left;margin-right:3px}body.users-php .tablenav .actions a.add-new-h2{float:none;vertical-align:middle !important;top:2px !important}@media screen and (max-width: 782px){.tablenav.top .actions{display:block !important;margin-bottom:4px}.tablenav.top .actions *{display:none}.tablenav.top .actions .ac-button{display:inline-block}}body.upload-php .tablenav.top .ac-button{float:none}.ac-toggle-box-link:focus{outline:none;box-shadow:none}.ac-toggle-box-link .spinner{float:none;margin-top:-2px}.ac-toggle-box-link.loading .spinner{visibility:visible}.ac-toggle-box-contents-ajax{padding:5px 0 0}.ac-toggle-box-contents{display:none;padding:5px 0 0}table.ac-table-items{border-spacing:0}table.ac-table-items tr td{border:0;margin:0;padding:0 0 3px}table.ac-table-items tr td.ac-table-item-qty{color:#999;padding-right:6px;text-align:left}.ac-post-state-format:before{color:#a7a7a7}.ac-image-details .ac-image-info{display:inline-block;border-radius:7px;padding:0 9px;min-height:20px;background-color:#e9e9e9;text-align:left;font-size:11px;font-weight:bold;margin:0 6px 5px 0;white-space:nowrap}.ac-image-details .ac-image-info>span{margin-right:6px}.ac-image-details .ac-image-info>span:last-child{margin-right:0}.ac-image-details .ac-image-info span{vertical-align:middle;line-height:20px}.ac-image-details .ac-image-info span.image-id{font-size:11px;color:#757575}.ac-image-details .ac-image-info span.image-file-size{font-size:12px}.ac-image-details .ac-image-info span.image-extension{text-transform:uppercase;font-size:11px;color:#757575}.ac-image-details .ac-image-info span.suffix{display:inline-block;text-transform:uppercase;font-size:10px;color:#757575;padding-left:3px;margin-top:-2px}.ac-image-details .ac-image-info span.dashicons{margin-top:-2px;color:#757575;font-size:14px;width:16px}.ac-image-details a.ac-image-info:hover{color:#0073aa}.ac-image-details a.ac-image-info:hover span.dashicons{color:#3d4350}.ac-upload-space .ac-upload-space-labels{display:table;width:100%}.ac-upload-space .ac-upload-space-labels .inner{display:table-row}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon{display:table-cell}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon:before{color:#82878c;content:"\f104";display:inline-block;font-family:'dashicons', serif;width:20px;height:20px;font-size:18px;line-height:1;text-decoration:inherit;font-weight:normal;font-style:normal;vertical-align:top;text-align:center;margin-right:4px}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-left{display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-right{width:100%;text-align:right;padding-left:6px;display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-progress{margin-top:6px;height:3px;background:white;border:1px solid #dfdfdf;position:relative}.ac-upload-space .ac-upload-space-progress .ac-upload-space-progress-bar{background-color:#46b450;height:100%;display:block}.ac-upload-space.warning .ac-upload-space-icon:before{color:#ffb900;content:"\f534";margin-top:1px}.ac-upload-space.warning .ac-upload-space-progress-bar{background-color:#ffb900}.ac-upload-space.full .ac-upload-space-icon:before{color:#d54e21;content:"\f153";margin-top:1px}.ac-upload-space.full .ac-upload-space-progress-bar{background-color:#dc3232}#form-site-list .tablenav .actions .ac-button{float:none}.ac-inline-info{display:inline-block;border-radius:3px;min-width:8px;padding:0 6px;min-height:20px;background-color:#e9e9e9;text-align:center;margin-right:7px;font-size:11px;font-weight:bold}.ac-rounded{display:inline-block;border-radius:10px;min-width:8px;padding:0 6px;height:20px;background-color:#e0e0e0;text-align:center;margin-left:7px;margin-right:7px;font-size:12px}.ac-rounded.ac-rounded-first{margin-left:0}.ac-spacing{display:inline-block;margin-right:10px;margin-bottom:4px}.cpac-suffix{margin-left:8px;color:#808080}.ac-small-block{display:inline-block;border-radius:3px;background-color:rgba(224,224,224,0.6);padding:2px 7px;margin:0 5px 5px 0}.ac-more-link-show{cursor:pointer}.ac-show-more-block{display:none}.ac-more-link-hide{cursor:pointer}.ac-image-container{margin-bottom:-6px}.ac-image{display:inline-block;margin-right:2px;margin-bottom:6px;overflow:hidden;max-width:100%;background-color:#ccc;vertical-align:middle}.ac-image img{display:block;margin:0 auto}.ac-image .ac-extension{font-size:12px;line-height:22px;display:block;text-align:center;text-transform:uppercase;font-weight:bold}.ac-image.ac-icon{background-color:transparent}.rtl .column-column-attachment img{padding-left:5px;padding-right:0}.ac-progress-bar{width:100%;display:flex}.ac-progress-bar .ac-label-main{width:65px}.ac-progress-bar .ac-bar-container{flex:auto;background-color:#fff;min-height:22px;line-height:22px;position:relative;border:1px solid #ccc;border-radius:2px}.ac-progress-bar .ac-bar-container .ac-bar{height:100%;background-color:#69c471;border-right:1px solid #fff}.ac-progress-bar .ac-bar-container .ac-label-left,.ac-progress-bar .ac-bar-container .ac-label-right{text-shadow:rgba(255,255,255,0.65) 0 0 5px;color:#555;position:absolute}.ac-progress-bar .ac-bar-container .ac-label-left{left:5px}.ac-progress-bar .ac-bar-container .ac-label-right{right:5px}.ac-progress-bar.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,0.45);border:none}.ac-progress-bar.dark .ac-bar-container{flex:auto;background-color:#a6a6a6;min-height:22px;line-height:22px;position:relative}.ac-progress-bar.dark .ac-bar-container .ac-bar{height:100%;background-color:#46b450;border-right:1px solid #fff}.ac-progress-bar.dark .ac-bar-container .ac-label-left{color:#fff;position:absolute;left:5px}.ac-progress-bar.dark .ac-bar-container .ac-label-right{color:#fff;position:absolute;right:5px}.ac-progress-bar.dark.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,0.68);border:none}div.cpac-color{line-height:26px}div.cpac-color span{display:block;-webkit-border-radius:3px;border-radius:3px;color:#ffffff;float:left;height:16px;line-height:16px;margin-right:12px;overflow:hidden;padding:4px 5px;font-size:10px;font-family:Monaco, Menlo, Consolas, "Courier New", monospace;min-width:47px;text-align:center}.rtl div.cpac-color span{float:right;margin-left:12px;margin-right:0}.button.cpac-button-action{position:relative;text-indent:9999px;margin-right:4px;padding:0 13px;overflow:hidden}.button.cpac-button-action:before{position:absolute;top:0;left:0;width:100%;height:100%;text-indent:0}.cpac_wp_button,.column-actions.cpac_use_icons .row-actions>span a{color:#555;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;border-radius:3px;white-space:nowrap;box-sizing:border-box}.cpac_wp_button:hover,.column-actions.cpac_use_icons .row-actions>span a:hover{background:#fafafa;color:#23282d;border-color:#999}.column-actions .row-actions{left:0;position:relative}.column-actions.cpac_use_icons .row-actions>span{color:transparent;margin-right:-8px}.column-actions.cpac_use_icons .row-actions>span a{display:inline-block;position:relative;min-width:26px;margin-bottom:5px}.column-actions.cpac_use_icons .row-actions>span a:before{text-indent:0;font-family:Dashicons, sans-serif;font-size:16px;position:absolute;padding-left:4px;top:0;left:0;width:100%;height:100%}.column-actions.cpac_use_icons .row-actions>span.edit a,.column-actions.cpac_use_icons .row-actions>span.inline a,.column-actions.cpac_use_icons .row-actions>span.trash a,.column-actions.cpac_use_icons .row-actions>span.view a,.column-actions.cpac_use_icons .row-actions>span.quickedit a,.column-actions.cpac_use_icons .row-actions>span.approve a,.column-actions.cpac_use_icons .row-actions>span.unapprove a,.column-actions.cpac_use_icons .row-actions>span.spam a,.column-actions.cpac_use_icons .row-actions>span.untrash a,.column-actions.cpac_use_icons .row-actions>span.unspam a,.column-actions.cpac_use_icons .row-actions>span.reply a,.column-actions.cpac_use_icons .row-actions>span.delete a,.column-actions.cpac_use_icons .row-actions>span.backend a,.column-actions.cpac_use_icons .row-actions>span.visit a,.column-actions.cpac_use_icons .row-actions>span.deactivate a,.column-actions.cpac_use_icons .row-actions>span.archive a,.column-actions.cpac_use_icons .row-actions>span.unarchive a,.column-actions.cpac_use_icons .row-actions>span.activate a,.column-actions.cpac_use_icons .row-actions>span.download a{text-indent:-3000px}.column-actions.cpac_use_icons .row-actions>span.edit a:before,.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.trash a:before,.column-actions.cpac_use_icons .row-actions>span.view a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before,.column-actions.cpac_use_icons .row-actions>span.approve a:before,.column-actions.cpac_use_icons .row-actions>span.unapprove a:before,.column-actions.cpac_use_icons .row-actions>span.spam a:before,.column-actions.cpac_use_icons .row-actions>span.untrash a:before,.column-actions.cpac_use_icons .row-actions>span.unspam a:before,.column-actions.cpac_use_icons .row-actions>span.reply a:before,.column-actions.cpac_use_icons .row-actions>span.delete a:before,.column-actions.cpac_use_icons .row-actions>span.backend a:before,.column-actions.cpac_use_icons .row-actions>span.visit a:before,.column-actions.cpac_use_icons .row-actions>span.deactivate a:before,.column-actions.cpac_use_icons .row-actions>span.archive a:before,.column-actions.cpac_use_icons .row-actions>span.unarchive a:before,.column-actions.cpac_use_icons .row-actions>span.activate a:before,.column-actions.cpac_use_icons .row-actions>span.download a:before{text-indent:0;font-family:Dashicons, sans-serif}.column-actions.cpac_use_icons .row-actions>span.edit a:before{content:"\f464"}.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before{content:"\f119"}.column-actions.cpac_use_icons .row-actions>span.trash a{border-radius:3px;border:1px solid #ccc}.column-actions.cpac_use_icons .row-actions>span.trash a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.trash a:hover{border-color:#999}.column-actions.cpac_use_icons .row-actions>span.view a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.unapprove a:before{content:"\f158"}.column-actions.cpac_use_icons .row-actions>span.approve a:before{content:"\f147"}.column-actions.cpac_use_icons .row-actions>span.spam a:before{content:"\f117"}.column-actions.cpac_use_icons .row-actions>span.reply a:before{content:"\f473"}.column-actions.cpac_use_icons .row-actions>span.untrash a:before,.column-actions.cpac_use_icons .row-actions>span.unspam a:before{content:"\f171"}.column-actions.cpac_use_icons .row-actions>span.delete a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.backend a:before{content:"\f226"}.column-actions.cpac_use_icons .row-actions>span.visit a:before{content:"\f115"}.column-actions.cpac_use_icons .row-actions>span.deactivate a:before{content:"\f530"}.column-actions.cpac_use_icons .row-actions>span.archive a:before{content:"\f480"}.column-actions.cpac_use_icons .row-actions>span.unarchive a:before{content:"\f322"}.column-actions.cpac_use_icons .row-actions>span.activate a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.download a:before{content:"\f316"}@media screen and (max-width: 782px){.wp-list-table.widefat thead th{display:none}.wp-list-table.widefat thead th.column-primary{display:table-cell}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td{display:none}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td.column-primary{display:block}}.ac-tip{display:inline-block}.qtip.qtip-tipsy{background:rgba(0,0,0,0.75);font-weight:normal;min-width:25px}
1
+ .column-status .dashicons{font-size:22px}.column-status .dashicons.large{width:25px;height:28px;font-size:28px}.column-status .dashicons.dashicons-lock{font-size:15px;margin-left:-2px}.ac-image-sizes .ac-missing-size{color:#929292}.ac-comment-bubble .post-com-count{display:inline-block;vertical-align:top}.ac-comment-bubble .post-com-count-no-comments,.ac-comment-bubble .post-com-count-approved{margin-top:5px}.ac-comment-bubble .comment-count-no-comments,.ac-comment-bubble .comment-count-approved{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;padding:0 8px;min-width:24px;height:2em;-webkit-border-radius:5px;border-radius:5px;background-color:#72777c;color:#fff;font-size:11px;line-height:21px;text-align:center}.ac-comment-bubble .post-com-count-no-comments:after,.ac-comment-bubble .post-com-count-approved:after{content:"";display:block;margin-left:8px;width:0;height:0;border-top:5px solid #72777c;border-right:5px solid transparent}.ac-comment-bubble .post-com-count-approved:hover .comment-count-approved,.ac-comment-bubble .post-com-count-approved:focus .comment-count-approved{background:#0073aa}.ac-comment-bubble .post-com-count-approved:hover:after,.ac-comment-bubble .post-com-count-approved:focus:after{border-top-color:#0073aa}.ac-comment-bubble .post-com-count-pending{position:relative;left:-3px;padding:0 5px;min-width:7px;height:17px;border:2px solid #fff;-webkit-border-radius:11px;border-radius:11px;background:#ca4a1f;color:#fff;font-size:9px;line-height:17px;text-align:center}.ac-comment-bubble .post-com-count-no-pending{display:none}.ac-divider{display:inline-block;width:14px;height:12px;position:relative}.ac-divider:before{content:'';display:block;width:2px;height:2px;background:#000;position:absolute;left:50%;margin-left:-1px;top:60%}span.status-closed{color:red}.ac-value-stars{white-space:nowrap;word-wrap:normal;display:block}.ac-value-stars .ac-value-star{font-size:16px;width:auto;margin-right:-3px}.actions #post-query-submit{float:left;vertical-align:middle;margin-bottom:4px}.tablenav.top .ac-button{top:2px;display:inline-block;vertical-align:middle;float:left;margin-bottom:4px}body.edit-tags-php .tablenav.top .ac-button{float:none}span.dashicons.flip:before{transform:scale(-1, 1);display:inline-block}span.dashicons.yellow{color:#ffb900}span.dashicons.orange{color:#d54e21}span.dashicons.red{color:#dc3232}span.dashicons.green{color:#46b450}span.dashicons.light-gray{color:#bbb}span.dashicons.gray{color:#8a8a8a}span.dashicons.blue{color:#0073aa}span.dashicons.light-blue{color:#00a0d2}body.edit-php #delete_all{float:left;margin-right:3px}body.users-php .tablenav .actions a.add-new-h2{float:none;vertical-align:middle !important;top:2px !important}@media screen and (max-width: 782px){.tablenav.top .actions{display:block !important;margin-bottom:4px}.tablenav.top .actions *{display:none}.tablenav.top .actions .ac-button{display:inline-block}}body.upload-php .tablenav.top .ac-button{float:none}.ac-toggle-box-link:focus{outline:none;box-shadow:none}.ac-toggle-box-link .spinner{float:none;margin-top:-2px}.ac-toggle-box-link.loading .spinner{visibility:visible}.ac-toggle-box-contents-ajax{padding:5px 0 0}.ac-toggle-box-contents{display:none;padding:5px 0 0}table.ac-table-items{border-spacing:0}table.ac-table-items tr td{border:0;margin:0;padding:0 0 3px}table.ac-table-items tr td.ac-table-item-qty{color:#999;padding-right:6px;text-align:left}.ac-post-state-format:before{color:#a7a7a7}.ac-image-details .ac-image-info{display:inline-block;border-radius:7px;padding:0 9px;min-height:20px;background-color:#e9e9e9;text-align:left;font-size:11px;font-weight:bold;margin:0 6px 5px 0;white-space:nowrap}.ac-image-details .ac-image-info>span{margin-right:6px}.ac-image-details .ac-image-info>span:last-child{margin-right:0}.ac-image-details .ac-image-info span{vertical-align:middle;line-height:20px}.ac-image-details .ac-image-info span.image-id{font-size:11px;color:#757575}.ac-image-details .ac-image-info span.image-file-size{font-size:12px}.ac-image-details .ac-image-info span.image-extension{text-transform:uppercase;font-size:11px;color:#757575}.ac-image-details .ac-image-info span.suffix{display:inline-block;text-transform:uppercase;font-size:10px;color:#757575;padding-left:3px;margin-top:-2px}.ac-image-details .ac-image-info span.dashicons{margin-top:-2px;color:#757575;font-size:14px;width:16px}.ac-image-details a.ac-image-info:hover{color:#0073aa}.ac-image-details a.ac-image-info:hover span.dashicons{color:#3d4350}.ac-upload-space .ac-upload-space-labels{display:table;width:100%}.ac-upload-space .ac-upload-space-labels .inner{display:table-row}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon{display:table-cell}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-icon:before{color:#82878c;content:"\f104";display:inline-block;font-family:'dashicons', serif;width:20px;height:20px;font-size:18px;line-height:1;text-decoration:inherit;font-weight:normal;font-style:normal;vertical-align:top;text-align:center;margin-right:4px}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-left{display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-labels .inner .ac-upload-space-right{width:100%;text-align:right;padding-left:6px;display:table-cell;white-space:nowrap}.ac-upload-space .ac-upload-space-progress{margin-top:6px;height:3px;background:white;border:1px solid #dfdfdf;position:relative}.ac-upload-space .ac-upload-space-progress .ac-upload-space-progress-bar{background-color:#46b450;height:100%;display:block}.ac-upload-space.warning .ac-upload-space-icon:before{color:#ffb900;content:"\f534";margin-top:1px}.ac-upload-space.warning .ac-upload-space-progress-bar{background-color:#ffb900}.ac-upload-space.full .ac-upload-space-icon:before{color:#d54e21;content:"\f153";margin-top:1px}.ac-upload-space.full .ac-upload-space-progress-bar{background-color:#dc3232}#form-site-list .tablenav .actions .ac-button{float:none}.ac-inline-info{display:inline-block;border-radius:3px;min-width:8px;padding:0 6px;min-height:20px;background-color:#e9e9e9;text-align:center;margin-right:7px;font-size:11px;font-weight:bold}.ac-rounded{display:inline-block;border-radius:10px;min-width:8px;padding:0 6px;height:20px;background-color:#e0e0e0;text-align:center;margin-left:7px;margin-right:7px;font-size:12px}.ac-rounded.ac-rounded-first{margin-left:0}.ac-spacing{display:inline-block;margin-right:10px;margin-bottom:4px}.cpac-suffix{margin-left:8px;color:#808080}.ac-small-block{display:inline-block;border-radius:3px;background-color:rgba(224,224,224,0.6);padding:2px 7px;margin:0 5px 5px 0}.ac-more-link-show{cursor:pointer}.ac-show-more-block{display:none}.ac-more-link-hide{cursor:pointer}.ac-image-container{margin-bottom:-6px}.ac-image{display:inline-block;margin-right:2px;margin-bottom:6px;overflow:hidden;max-width:100%;background-color:#ccc;vertical-align:middle}.ac-image img{display:block;margin:0 auto}.ac-image .ac-extension{font-size:12px;line-height:22px;display:block;text-align:center;text-transform:uppercase;font-weight:bold}.ac-image.ac-icon{background-color:transparent}.rtl .column-column-attachment img{padding-left:5px;padding-right:0}.ac-progress-bar{width:100%;display:flex}.ac-progress-bar .ac-label-main{width:65px}.ac-progress-bar .ac-bar-container{flex:auto;background-color:#fff;min-height:22px;line-height:22px;position:relative;border:1px solid #ccc;border-radius:2px}.ac-progress-bar .ac-bar-container .ac-bar{height:100%;background-color:#69c471;border-right:1px solid #fff}.ac-progress-bar .ac-bar-container .ac-label-left,.ac-progress-bar .ac-bar-container .ac-label-right{text-shadow:rgba(255,255,255,0.65) 0 0 5px;color:#555;position:absolute}.ac-progress-bar .ac-bar-container .ac-label-left{left:5px}.ac-progress-bar .ac-bar-container .ac-label-right{right:5px}.ac-progress-bar.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,0.45);border:none}.ac-progress-bar.dark .ac-bar-container{flex:auto;background-color:#a6a6a6;min-height:22px;line-height:22px;position:relative}.ac-progress-bar.dark .ac-bar-container .ac-bar{height:100%;background-color:#46b450;border-right:1px solid #fff}.ac-progress-bar.dark .ac-bar-container .ac-label-left{color:#fff;position:absolute;left:5px}.ac-progress-bar.dark .ac-bar-container .ac-label-right{color:#fff;position:absolute;right:5px}.ac-progress-bar.dark.full .ac-bar-container .ac-bar{background-color:rgba(255,0,0,0.68);border:none}div.cpac-color{line-height:26px}div.cpac-color span{display:block;-webkit-border-radius:3px;border-radius:3px;color:#ffffff;float:left;height:16px;line-height:16px;margin-right:12px;overflow:hidden;padding:4px 5px;font-size:10px;font-family:Monaco, Menlo, Consolas, "Courier New", monospace;min-width:47px;text-align:center}.rtl div.cpac-color span{float:right;margin-left:12px;margin-right:0}.button.cpac-button-action{position:relative;text-indent:9999px;margin-right:4px;padding:0 13px;overflow:hidden}.button.cpac-button-action:before{position:absolute;top:0;left:0;width:100%;height:100%;text-indent:0}.cpac_wp_button,.column-actions.cpac_use_icons .row-actions>span a{color:#555;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;border-radius:3px;white-space:nowrap;box-sizing:border-box}.cpac_wp_button:hover,.column-actions.cpac_use_icons .row-actions>span a:hover{background:#fafafa;color:#23282d;border-color:#999}.column-actions .row-actions{left:0;position:relative}.column-actions.cpac_use_icons .row-actions>span{color:transparent;margin-right:-8px}.column-actions.cpac_use_icons .row-actions>span a{display:inline-block;position:relative;min-width:26px;margin-bottom:5px}.column-actions.cpac_use_icons .row-actions>span a:before{text-indent:0;font-family:Dashicons, sans-serif;font-size:16px;position:absolute;padding-left:4px;top:0;left:0;width:100%;height:100%}.column-actions.cpac_use_icons .row-actions>span.edit a,.column-actions.cpac_use_icons .row-actions>span.inline a,.column-actions.cpac_use_icons .row-actions>span.trash a,.column-actions.cpac_use_icons .row-actions>span.view a,.column-actions.cpac_use_icons .row-actions>span.quickedit a,.column-actions.cpac_use_icons .row-actions>span.approve a,.column-actions.cpac_use_icons .row-actions>span.unapprove a,.column-actions.cpac_use_icons .row-actions>span.spam a,.column-actions.cpac_use_icons .row-actions>span.untrash a,.column-actions.cpac_use_icons .row-actions>span.unspam a,.column-actions.cpac_use_icons .row-actions>span.reply a,.column-actions.cpac_use_icons .row-actions>span.delete a,.column-actions.cpac_use_icons .row-actions>span.backend a,.column-actions.cpac_use_icons .row-actions>span.visit a,.column-actions.cpac_use_icons .row-actions>span.deactivate a,.column-actions.cpac_use_icons .row-actions>span.archive a,.column-actions.cpac_use_icons .row-actions>span.unarchive a,.column-actions.cpac_use_icons .row-actions>span.activate a,.column-actions.cpac_use_icons .row-actions>span.download a{text-indent:-3000px}.column-actions.cpac_use_icons .row-actions>span.edit a:before,.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.trash a:before,.column-actions.cpac_use_icons .row-actions>span.view a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before,.column-actions.cpac_use_icons .row-actions>span.approve a:before,.column-actions.cpac_use_icons .row-actions>span.unapprove a:before,.column-actions.cpac_use_icons .row-actions>span.spam a:before,.column-actions.cpac_use_icons .row-actions>span.untrash a:before,.column-actions.cpac_use_icons .row-actions>span.unspam a:before,.column-actions.cpac_use_icons .row-actions>span.reply a:before,.column-actions.cpac_use_icons .row-actions>span.delete a:before,.column-actions.cpac_use_icons .row-actions>span.backend a:before,.column-actions.cpac_use_icons .row-actions>span.visit a:before,.column-actions.cpac_use_icons .row-actions>span.deactivate a:before,.column-actions.cpac_use_icons .row-actions>span.archive a:before,.column-actions.cpac_use_icons .row-actions>span.unarchive a:before,.column-actions.cpac_use_icons .row-actions>span.activate a:before,.column-actions.cpac_use_icons .row-actions>span.download a:before{text-indent:0;font-family:Dashicons, sans-serif}.column-actions.cpac_use_icons .row-actions>span.edit a:before{content:"\f464"}.column-actions.cpac_use_icons .row-actions>span.inline a:before,.column-actions.cpac_use_icons .row-actions>span.quickedit a:before{content:"\f119"}.column-actions.cpac_use_icons .row-actions>span.trash a{border-radius:3px;border:1px solid #ccc}.column-actions.cpac_use_icons .row-actions>span.trash a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.trash a:hover{border-color:#999}.column-actions.cpac_use_icons .row-actions>span.view a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.unapprove a:before{content:"\f158"}.column-actions.cpac_use_icons .row-actions>span.approve a:before{content:"\f147"}.column-actions.cpac_use_icons .row-actions>span.spam a:before{content:"\f117"}.column-actions.cpac_use_icons .row-actions>span.reply a:before{content:"\f473"}.column-actions.cpac_use_icons .row-actions>span.untrash a:before,.column-actions.cpac_use_icons .row-actions>span.unspam a:before{content:"\f171"}.column-actions.cpac_use_icons .row-actions>span.delete a:before{content:"\f182"}.column-actions.cpac_use_icons .row-actions>span.backend a:before{content:"\f226"}.column-actions.cpac_use_icons .row-actions>span.visit a:before{content:"\f115"}.column-actions.cpac_use_icons .row-actions>span.deactivate a:before{content:"\f530"}.column-actions.cpac_use_icons .row-actions>span.archive a:before{content:"\f480"}.column-actions.cpac_use_icons .row-actions>span.unarchive a:before{content:"\f322"}.column-actions.cpac_use_icons .row-actions>span.activate a:before{content:"\f177"}.column-actions.cpac_use_icons .row-actions>span.download a:before{content:"\f316"}@media screen and (max-width: 782px){.wp-list-table.widefat thead th{display:none}.wp-list-table.widefat thead th.column-primary{display:table-cell}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td{display:none}.wp-list-table.widefat tbody tr:not(.inline-edit-row):not(.no-items) td.column-primary{display:block}}.ac-tip{display:inline-block}.qtip.qtip-tipsy{background:rgba(0,0,0,0.75);font-weight:normal;min-width:25px}
assets/images/arrow.png DELETED
Binary file
assets/images/border.png DELETED
Binary file
assets/images/drag.png DELETED
Binary file
assets/images/drag.svg DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="6px" height="26px" viewBox="0 0 6 26" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <!-- Generator: Sketch 3.6.1 (26313) - http://www.bohemiancoding.com/sketch -->
4
- <title>Group 2</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
- <g id="Group-2" fill="#000000">
9
- <g id="Group">
10
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
11
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
12
- </g>
13
- <g id="Group" transform="translate(0.000000, 4.000000)">
14
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
15
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
16
- </g>
17
- <g id="Group" transform="translate(0.000000, 8.000000)">
18
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
19
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
20
- </g>
21
- <g id="Group" transform="translate(0.000000, 12.000000)">
22
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
23
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
24
- </g>
25
- <g id="Group" transform="translate(0.000000, 16.000000)">
26
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
27
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
28
- </g>
29
- <g id="Group" transform="translate(0.000000, 20.000000)">
30
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
31
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
32
- </g>
33
- <g id="Group" transform="translate(0.000000, 24.000000)">
34
- <rect id="Rectangle-1" x="0" y="0" width="2" height="2"></rect>
35
- <rect id="Rectangle-1" x="4" y="0" width="2" height="2"></rect>
36
- </g>
37
- </g>
38
- </g>
39
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/images/drag_2x.png DELETED
Binary file
assets/images/loading.gif DELETED
Binary file
assets/images/mascot.png DELETED
Binary file
assets/images/order_arrow-rtl.png DELETED
Binary file
assets/images/order_arrow.png DELETED
Binary file
assets/images/square.png DELETED
Binary file
assets/images/symbols.svg ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs/><symbol id="arrow-left-top" viewBox="0 0 64 64">
2
+ <!-- Generator: Sketch 50 (54983) - http://www.bohemiancoding.com/sketch -->
3
+ <desc>Created with Sketch.</desc>
4
+
5
+
6
+ <g id="arrow-left-top" transform="translate(32.000000, 32.000000) rotate(-102.000000) translate(-32.000000, -32.000000) " fill="#7A9BBE">
7
+ <path d="M63.386,16.193 L63.388,16.191 C63.39,16.188 63.392,16.185 63.394,16.181 C63.566,15.986 63.692,15.751 63.793,15.503 C63.825,15.427 63.846,15.355 63.869,15.278 C63.927,15.087 63.963,14.889 63.975,14.682 C63.981,14.606 63.993,14.534 63.991,14.456 C63.991,14.416 64.001,14.38 63.999,14.341 C63.985,14.102 63.937,13.871 63.863,13.654 C63.857,13.631 63.841,13.613 63.833,13.59 C63.745,13.351 63.619,13.139 63.47,12.945 C63.449,12.918 63.442,12.882 63.42,12.855 L53.109,0.709 C52.32,-0.221 51.025,-0.239 50.215,0.672 C49.407,1.582 49.392,3.074 50.183,4.006 L55.741,10.555 C47.62,9.479 39.637,11.188 39.26,11.272 C14.614,15.739 -2.827,38.499 0.38,62.008 C0.539,63.172 1.408,64 2.399,64 C2.505,64 2.611,63.991 2.719,63.973 C3.835,63.77 4.597,62.564 4.423,61.277 C1.566,40.337 17.479,19.995 39.96,15.919 C40.063,15.895 48.311,14.125 56.077,15.345 L47.5,20.438 C46.495,21.036 46.102,22.458 46.619,23.615 C47.135,24.774 48.367,25.223 49.375,24.632 L62.895,16.604 C63.078,16.493 63.242,16.354 63.386,16.193 Z" id="Shape" fill="#7A9BBE"/>
8
+ </g>
9
+
10
+ </symbol><symbol id="curve-arrow" viewBox="0 0 504 512">
11
+ <!-- Generator: Sketch 50 (54983) - http://www.bohemiancoding.com/sketch -->
12
+ <desc>Created with Sketch.</desc>
13
+
14
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
15
+ <g id="curve-arrow" transform="translate(-4.000000, 4.000000)" fill="#2196F3" fill-rule="nonzero">
16
+ <path d="M371.552,5.284 C365.536,-0.732 354.912,-0.732 348.928,5.284 L303.68,50.564 C297.44,56.804 297.44,66.948 303.68,73.188 L336.96,106.468 C145.344,129.508 0,290.468 0,487.236 C0,496.068 7.168,503.236 16,503.236 L80,503.236 C88.832,503.236 96,496.068 96,487.236 C96,345.988 196.096,229.22 330.784,204.42 L303.648,231.556 C297.408,237.796 297.408,247.94 303.648,254.18 L348.896,299.46 C351.904,302.468 355.968,304.132 360.224,304.132 C364.48,304.132 368.544,302.436 371.552,299.46 L507.328,163.684 C513.568,157.444 513.568,147.3 507.328,141.06 L371.552,5.284 Z" id="Shape" transform="translate(256.004000, 252.004000) rotate(-90.000000) translate(-256.004000, -252.004000) "/>
17
+ </g>
18
+ </g>
19
+ </symbol><symbol id="woocommerce_logo_white" viewBox="0 0 998 810">
20
+ <g>
21
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#9B5C8F" d="M160.7,331.2h199.1c12.6,0,22.8,10.2,22.8,22.8V430
22
+ c0,12.6-10.2,22.8-22.8,22.8h-71.4l9.8,24l-43.1-24h-94.3c-12.6,0-22.8-10.2-22.8-22.8V354C137.9,341.5,148.1,331.2,160.7,331.2z"/>
23
+ <path fill="#FFFFFF" d="M150.2,351.9c1.4-1.9,3.5-2.9,6.3-3.1c5.1-0.4,8,2,8.7,7.2c3.1,20.9,6.5,38.6,10.1,53.1l21.9-41.7
24
+ c2-3.8,4.5-5.8,7.5-6c4.4-0.3,7.1,2.5,8.2,8.4c2.5,13.3,5.7,24.6,9.5,34.2c2.6-25.4,7-43.7,13.2-55c1.5-2.8,3.7-4.2,6.6-4.4
25
+ c2.3-0.2,4.4,0.5,6.3,2c1.9,1.5,2.9,3.4,3.1,5.7c0.1,1.8-0.2,3.3-1,4.8c-3.9,7.2-7.1,19.3-9.7,36.1c-2.5,16.3-3.4,29-2.8,38.1
26
+ c0.2,2.5-0.2,4.7-1.2,6.6c-1.2,2.2-3,3.4-5.3,3.6c-2.6,0.2-5.3-1-7.9-3.7c-9.3-9.5-16.7-23.7-22.1-42.6
27
+ c-6.5,12.8-11.3,22.4-14.4,28.8c-5.9,11.3-10.9,17.1-15.1,17.4c-2.7,0.2-5-2.1-7-6.9c-5.1-13.1-10.6-38.4-16.5-75.9
28
+ C148.3,356,148.8,353.7,150.2,351.9z"/>
29
+ <path fill="#FFFFFF" d="M365.2,367.6c-3.6-6.3-8.9-10.1-16-11.6c-1.9-0.4-3.7-0.6-5.4-0.6c-9.6,0-17.4,5-23.5,15
30
+ c-5.2,8.5-7.8,17.9-7.8,28.2c0,7.7,1.6,14.3,4.8,19.8c3.6,6.3,8.9,10.1,16,11.6c1.9,0.4,3.7,0.6,5.4,0.6c9.7,0,17.5-5,23.5-15
31
+ c5.2-8.6,7.8-18,7.8-28.3C370,379.5,368.4,373,365.2,367.6L365.2,367.6z M352.6,395.3c-1.4,6.6-3.9,11.5-7.6,14.8
32
+ c-2.9,2.6-5.6,3.7-8.1,3.2c-2.4-0.5-4.4-2.6-5.9-6.5c-1.2-3.1-1.8-6.2-1.8-9.1c0-2.5,0.2-5,0.7-7.3c0.9-4.1,2.6-8.1,5.3-11.9
33
+ c3.3-4.9,6.8-6.9,10.4-6.2c2.4,0.5,4.4,2.6,5.9,6.5c1.2,3.1,1.8,6.2,1.8,9.1C353.3,390.5,353,393,352.6,395.3L352.6,395.3z"/>
34
+ <path fill="#FFFFFF" d="M302.5,367.6c-3.6-6.3-9-10.1-16-11.6c-1.9-0.4-3.7-0.6-5.4-0.6c-9.6,0-17.4,5-23.5,15
35
+ c-5.2,8.5-7.8,17.9-7.8,28.2c0,7.7,1.6,14.3,4.8,19.8c3.6,6.3,8.9,10.1,16,11.6c1.9,0.4,3.7,0.6,5.4,0.6c9.7,0,17.5-5,23.5-15
36
+ c5.2-8.6,7.8-18,7.8-28.3C307.3,379.5,305.7,373,302.5,367.6L302.5,367.6z M289.9,395.3c-1.4,6.6-3.9,11.5-7.6,14.8
37
+ c-2.9,2.6-5.6,3.7-8.1,3.2c-2.4-0.5-4.4-2.6-5.9-6.5c-1.2-3.1-1.8-6.2-1.8-9.1c0-2.5,0.2-5,0.7-7.3c0.9-4.1,2.6-8.1,5.3-11.9
38
+ c3.3-4.9,6.8-6.9,10.4-6.2c2.4,0.5,4.4,2.6,5.9,6.5c1.2,3.1,1.8,6.2,1.8,9.1C290.6,390.5,290.4,393,289.9,395.3L289.9,395.3z"/>
39
+ <g>
40
+ <g>
41
+ <path fill="#FFFFFF" d="M407.9,366.7c-6.7,6.6-10,15-10,25.2c0,10.9,3.3,19.8,9.9,26.5c6.6,6.7,15.2,10.1,25.9,10.1
42
+ c3.1,0,6.6-0.5,10.4-1.6v-16.2c-3.5,1-6.5,1.5-9.1,1.5c-5.3,0-9.5-1.8-12.7-5.3c-3.2-3.6-4.8-8.4-4.8-14.5c0-5.7,1.6-10.4,4.7-14
43
+ c3.2-3.7,7.1-5.5,11.9-5.5c3.1,0,6.4,0.5,10,1.5v-16.2c-3.3-0.9-7-1.3-10.9-1.3C423,356.8,414.6,360.1,407.9,366.7z M477.3,356.8
44
+ c-9.2,0-16.4,3.1-21.6,9.2c-5.2,6.1-7.7,14.7-7.7,25.7c0,11.9,2.6,21,7.7,27.3c5.1,6.3,12.6,9.5,22.4,9.5
45
+ c9.5,0,16.8-3.2,21.9-9.5c5.1-6.3,7.7-15.2,7.7-26.6c0-11.4-2.6-20.2-7.8-26.4C494.6,359.9,487.1,356.8,477.3,356.8z
46
+ M485.2,408.8c-1.8,2.8-4.5,4.2-7.9,4.2c-3.2,0-5.6-1.4-7.3-4.2c-1.7-2.8-2.5-8.4-2.5-16.9c0-13.1,3.3-19.6,10-19.6
47
+ c7,0,10.6,6.6,10.6,19.9C488,400.4,487,406,485.2,408.8z M557.1,358.7l-3.6,15.3c-0.9,3.9-1.8,7.9-2.6,12l-2,10.6
48
+ c-1.9-10.6-4.5-23.2-7.8-37.9h-23.2l-8.7,68.1h17.4l4.7-46.9l11.9,46.9h12.4L567,380l4.9,46.8h18.2l-9.2-68.1H557.1z
49
+ M640.4,358.7l-3.6,15.3c-0.9,3.9-1.8,7.9-2.6,12l-2,10.6c-1.9-10.6-4.5-23.2-7.8-37.9h-23.2l-8.7,68.1h17.4l4.7-46.9l11.9,46.9
50
+ h12.4l11.3-46.8l4.9,46.8h18.2l-9.2-68.1H640.4z M697,399.9h16.3v-14.1H697v-12.5h18.8v-14.5h-37.2v68.1h37.3v-14.5H697V399.9z
51
+ M767.7,389.1c1.9-3.1,2.9-6.3,2.9-9.6c0-6.4-2.5-11.5-7.5-15.2c-5-3.7-11.9-5.6-20.5-5.6h-21.4v68.1h18.4v-31h0.3l14.9,31h19.4
52
+ l-14.7-30.7C763,394.5,765.8,392.2,767.7,389.1z M739.5,388v-16.2c4.4,0.1,7.5,0.8,9.4,2.2c1.9,1.4,2.8,3.6,2.8,6.8
53
+ C751.7,385.5,747.6,387.9,739.5,388z M781.4,366.7c-6.7,6.6-10,15-10,25.2c0,10.9,3.3,19.8,9.9,26.5c6.6,6.7,15.2,10.1,25.9,10.1
54
+ c3.1,0,6.6-0.5,10.4-1.6v-16.2c-3.5,1-6.5,1.5-9.1,1.5c-5.3,0-9.5-1.8-12.7-5.3c-3.2-3.6-4.8-8.4-4.8-14.5c0-5.7,1.6-10.4,4.7-14
55
+ c3.2-3.7,7.1-5.5,11.9-5.5c3.1,0,6.4,0.5,10,1.5v-16.2c-3.3-0.9-7-1.3-10.9-1.3C796.6,356.8,788.1,360.1,781.4,366.7z
56
+ M841.1,412.2v-12.4h16.3v-14.1h-16.3v-12.5H860v-14.5h-37.2v68.1h37.3v-14.5H841.1z"/>
57
+ </g>
58
+ </g>
59
+ </g>
60
+ </symbol><symbol id="zebra-thumbs-up" viewBox="0 0 209 328">
61
+ <!-- Generator: Sketch 50 (54983) - http://www.bohemiancoding.com/sketch -->
62
+ <title>zebra_2</title>
63
+ <desc>Created with Sketch.</desc>
64
+
65
+ <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
66
+ <g id="mascot" fill-rule="nonzero">
67
+ <g id="zebra_2">
68
+ <path d="M108.202,317.552 C72.151,317.552 41.362,319.685 41.362,322.316 C41.362,324.947 72.151,327.08 108.202,327.08 C144.254,327.08 171.915,324.947 171.915,322.316 C171.915,319.685 144.254,317.552 108.202,317.552 Z" id="Shape" fill="#000000" opacity="0.2"/>
69
+ <path d="M21.815,209.73 C21.815,209.73 15.794,216.867 21.728,224.313 C21.728,224.313 54.462,242.692 82.251,226.945 L86.091,192.979 C86.092,192.979 60.876,221.188 21.815,209.73 Z" id="Shape" fill="#FFFFFF"/>
70
+ <path d="M28.766,222.563 C28.06,216.227 25.135,211.917 25.135,211.917 L24.33,212.995 C27.847,221.103 25.479,226.113 25.479,226.113 C45.644,236.009 70.594,232.235 70.594,232.235 L73.972,217.825 C58.939,230.058 28.766,222.563 28.766,222.563 Z" id="Shape" fill="#DDE5F2"/>
71
+ <path d="M40.063,221.326 C38.59,220.675 36.51,226.235 36.554,230.426 L41.5860003,231.892 C41.587,231.892 38.63,227.14 40.063,221.326 Z" id="Shape" fill="#44465D"/>
72
+ <path d="M53.775,233.303 L60.992,233.779 C60.992,233.779 55.594,228.255 55.793,219.994 C53.612,219.554 52.466,227.667 53.775,233.303 Z" id="Shape" fill="#44465D"/>
73
+ <path d="M57.045,234.269 C37.733,234.27 21.471,225.316 21.239,225.186 L21.069,225.09 L20.947,224.937 C14.576,216.942 20.986,209.164 21.052,209.086 L21.472,208.588 L22.097,208.771 C60.112,219.922 85.098,192.591 85.347,192.314 L86.838,193.646 C86.583,193.931 61.041,221.875 22.201,210.882 C21.056,212.53 18.028,217.894 22.388,223.533 C24.959,224.909 55.808,240.779 81.76,226.075 L82.746,227.815 C74.309,232.596 65.391,234.269 57.045,234.269 Z" id="Shape" fill="#27292E"/>
74
+ <path d="M24.33,212.995 C24.008,212.329 22.218,211.315 22.214,210.732 C22.171,202.837 23.583,196.809 23.888,189.667 C20.212,189.523 17.603,193.51 15.82,196.214 C15.298,197.006 12.872,202.727 12.244,202.842 C9.387,203.368 5.889,202.956 5.889,202.956 C5.889,202.956 -4.029,217.699 7.369,229.142 C7.369,229.142 19.687,232.438 25.48,226.114 C26.629,224.86 26.302,220.965 26.176,219.497 C25.982,217.207 25.321,215.06 24.33,212.995 Z" id="Shape" fill="#41435A"/>
75
+ <path d="M22.124,211.015 C21.755,208.998 22.846,206.021 23.012,203.724 C23.26,200.326 23.829,196.893 23.788,193.481 C23.768,191.815 23.026,190.277 21.658,192.18 C18.866,196.07 18.353,202.55 17.829,207.193 C13.6,206.394 11.762,203.547 11.762,203.547 L5.845,204.238 C8.132,210.895 19.936,215.427 19.936,215.427 C21.16,218.045 20.804,224.723 20.804,224.723 C18.113,228.019 8.221,228.499 8.221,228.499 L7.992,228.394 C10.514,230.614 14.391,230.866 17.57,230.433 C21.996,229.832 25.333,227.481 25.673,222.841 C25.909,219.582 25.305,216.434 24.173,213.396 C23.739,212.232 22.324,212.112 22.124,211.015 Z" id="Shape" fill="#373A4F"/>
76
+ <path d="M22.51,211.818 C22.588,211.938 22.649,212.068 22.723,212.19 C22.895,212.215 23.063,212.245 23.237,212.269 L22.51,211.818 Z" id="Shape" fill="#27292E"/>
77
+ <path d="M24.742,225.438 C24.699,225.484 24.649,225.524 24.604,225.569 C24.583,225.635 24.562,225.709 24.542,225.764 L24.742,225.438 Z" id="Shape" fill="#27292E"/>
78
+ <path d="M24.189,210.733 L24.182,210.721 C24.026,210.482 23.767,210.313 23.461,210.281 C23.114,210.245 22.762,210.196 22.41,210.151 C22.346,210.326 22.29,210.505 22.22,210.675 C22.178,210.775 22.064,210.821 21.965,210.78 C21.888,210.747 21.843,210.667 21.845,210.589 C21.851,210.421 21.868,210.253 21.884,210.086 C21.256,210 20.626,209.907 20.001,209.815 C18.847,209.631 17.696,209.426 16.557,209.186 C15.418,208.94 14.294,208.649 13.194,208.303 C12.649,208.119 12.106,207.934 11.581,207.713 C11.06,207.484 10.54,207.252 10.076,206.938 C9.939,206.844 9.747,206.855 9.624,206.976 C9.485,207.114 9.483,207.338 9.621,207.477 C10.516,208.383 11.617,208.997 12.726,209.506 C13.841,210.017 14.994,210.408 16.153,210.755 C17.312,211.105 18.484,211.4 19.663,211.647 C20.677,211.868 21.689,212.038 22.724,212.189 C22.649,212.067 22.588,211.937 22.511,211.817 L23.239,212.268 C23.065,212.244 22.897,212.214 22.725,212.189 C23.924,214.152 24.75,216.331 25.07,218.602 C25.246,219.807 25.288,221.032 25.2,222.248 C25.157,222.855 25.083,223.461 24.972,224.057 C24.917,224.356 24.854,224.651 24.783,224.942 C24.731,225.153 24.668,225.372 24.606,225.567 C24.65,225.522 24.7,225.482 24.744,225.436 L24.545,225.762 C24.565,225.706 24.586,225.633 24.607,225.567 C24.149,226.035 23.651,226.464 23.106,226.838 C22.798,227.03 22.494,227.229 22.166,227.392 C21.849,227.573 21.505,227.71 21.168,227.859 C19.797,228.413 18.31,228.737 16.793,228.886 C15.276,229.043 13.727,229.023 12.186,228.901 C11.415,228.838 10.644,228.745 9.878,228.624 L8.735,228.422 C8.454,228.366 8.168,228.303 7.895,228.238 C7.956,228.304 8.019,228.369 8.079,228.435 L7.63,228.175 C7.713,228.196 7.807,228.217 7.896,228.238 C7.572,227.89 7.238,227.551 6.941,227.182 C6.587,226.744 6.222,226.314 5.917,225.843 C5.58,225.392 5.303,224.905 5.017,224.424 C4.749,223.935 4.491,223.437 4.272,222.924 C3.379,220.878 2.918,218.651 2.901,216.402 C2.863,214.151 3.254,211.886 3.92,209.707 C4.255,208.615 4.662,207.545 5.13,206.5 C5.369,205.98 5.613,205.463 5.884,204.961 C6.055,204.641 6.238,204.318 6.422,204.007 C6.209,203.989 5.997,203.972 5.776,203.949 L6.723,203.513 C6.623,203.665 6.523,203.837 6.422,204.006 C6.76,204.034 7.095,204.058 7.435,204.071 C7.983,204.101 8.533,204.104 9.083,204.106 C9.636,204.092 10.188,204.084 10.747,204.03 C11.302,204.005 11.868,203.899 12.429,203.824 C12.734,203.782 13.011,203.589 13.144,203.288 L13.166,203.238 C13.46,202.572 13.794,201.88 14.131,201.21 C14.471,200.536 14.824,199.869 15.192,199.212 C15.926,197.896 16.714,196.613 17.579,195.403 C18.444,194.198 19.387,193.046 20.452,192.118 C21.208,191.453 22.061,190.919 22.883,190.718 C22.903,190.35 22.917,189.98 22.937,189.613 L23.824,190.644 L23.823,190.644 C23.52,190.607 23.204,190.639 22.883,190.718 C22.809,192.097 22.733,193.478 22.679,194.86 L22.435,200.11 L22.156,205.351 L22.017,207.967 L21.951,209.265 C21.943,209.536 21.916,209.81 21.89,210.086 C22.067,210.109 22.241,210.128 22.417,210.15 C22.662,209.491 22.875,208.812 23.046,208.12 C23.255,207.253 23.425,206.38 23.573,205.507 C23.855,203.757 24.051,202 24.241,200.245 C24.424,198.489 24.563,196.731 24.682,194.972 C24.811,193.213 24.89,191.456 24.935,189.688 L24.937,189.63 C24.949,189.123 24.56,188.691 24.048,188.655 L24.047,188.655 C23.05,188.542 22.081,188.792 21.276,189.173 C20.463,189.558 19.767,190.063 19.14,190.608 C17.887,191.703 16.877,192.955 15.951,194.24 C15.03,195.531 14.208,196.871 13.444,198.238 C13.063,198.922 12.697,199.612 12.344,200.31 C12.075,200.845 11.819,201.38 11.567,201.929 C11.733,201.905 11.899,201.878 12.066,201.858 L11.33,202.444 C11.408,202.268 11.488,202.1 11.567,201.929 C11.245,201.977 10.921,202.023 10.586,202.037 C10.087,202.086 9.576,202.093 9.066,202.106 C8.555,202.104 8.042,202.102 7.529,202.073 C7.019,202.053 6.494,202.01 6.009,201.962 L5.977,201.958 C5.626,201.924 5.268,202.081 5.062,202.397 C4.697,202.958 4.411,203.473 4.116,204.023 C3.825,204.565 3.563,205.12 3.306,205.676 C2.804,206.795 2.368,207.944 2.008,209.118 C1.648,210.292 1.363,211.495 1.17,212.717 C0.972,213.937 0.886,215.18 0.9,216.426 C0.919,218.914 1.433,221.424 2.438,223.723 C2.683,224.298 2.973,224.856 3.274,225.405 C3.591,225.943 3.905,226.485 4.276,226.987 C4.619,227.51 5.019,227.986 5.411,228.469 C5.803,228.953 6.247,229.386 6.663,229.846 C6.771,229.965 6.913,230.055 7.081,230.098 L7.113,230.106 C7.549,230.218 7.937,230.299 8.348,230.383 C8.753,230.461 9.16,230.535 9.567,230.598 C10.38,230.727 11.199,230.827 12.021,230.893 C13.666,231.023 15.328,231.047 16.994,230.874 C18.656,230.71 20.328,230.353 21.925,229.709 C22.32,229.538 22.719,229.374 23.098,229.161 C23.486,228.967 23.854,228.73 24.223,228.498 C24.946,228.004 25.618,227.43 26.221,226.787 L26.229,226.779 C26.311,226.69 26.377,226.583 26.42,226.461 C26.556,226.076 26.639,225.769 26.726,225.425 C26.809,225.09 26.88,224.754 26.943,224.418 C27.066,223.746 27.149,223.068 27.198,222.391 C27.296,221.034 27.249,219.665 27.052,218.317 C26.668,215.617 25.661,213.014 24.189,210.733 Z" id="Shape" fill="#27292E"/>
79
+ <path d="M21.846,210.59 C21.844,210.668 21.889,210.748 21.966,210.781 C22.065,210.822 22.179,210.775 22.221,210.676 C22.292,210.506 22.347,210.326 22.411,210.152 C22.235,210.13 22.061,210.111 21.884,210.088 C21.869,210.254 21.852,210.422 21.846,210.59 Z" id="Shape" fill="#27292E"/>
80
+ <path d="M8.076,228.436 C8.016,228.37 7.953,228.305 7.892,228.239 C7.803,228.218 7.71,228.198 7.626,228.176 L8.076,228.436 Z" id="Shape" fill="#27292E"/>
81
+ <path d="M5.771,203.949 C5.992,203.971 6.205,203.989 6.417,204.007 C6.518,203.838 6.618,203.666 6.718,203.514 L5.771,203.949 Z" id="Shape" fill="#27292E"/>
82
+ <path d="M12.062,201.858 C11.895,201.879 11.729,201.905 11.563,201.929 C11.484,202.1 11.404,202.268 11.326,202.444 L12.062,201.858 Z" id="Shape" fill="#27292E"/>
83
+ <path d="M23.817,190.645 L22.931,189.614 C22.911,189.981 22.896,190.351 22.877,190.719 C23.198,190.64 23.515,190.607 23.817,190.645 Z" id="Shape" fill="#27292E"/>
84
+ <path d="M145.964,81.376 C145.1,65.167 131.484,62.357 131.484,62.357 C111.601,50.902 85.883,59.115 85.883,59.115 C77.454,61.06 76.806,72.082 76.806,72.082 C71.618,92.613 59.516,116.6 59.515,116.603 C59.206,117.215 66.663,126.989 67.446,128.358 C69.495,131.946 71.3,135.679 72.769,139.543 C75.37,146.382 82.36,162.371 86.047,168.736 C91.185,177.606 89.146,178.674 85.35,188.845 C81.771,198.438 77.911,207.587 75.098,217.599 C72.736,226.01 69.809,234.469 69.062,243.184 C68.512,249.595 66.962,262.305 69.919,268.487 C79.429,288.37 107.062,283.231 107.062,283.231 C109.872,293.821 115.275,313.706 115.275,313.706 C112.034,316.298 108.791,322.351 108.791,322.351 C133.645,329.699 144.235,321.486 144.235,321.486 C137.319,295.336 143.587,276.75 143.587,276.75 C146.397,263.566 141.858,252.111 141.858,252.111 C137.536,232.443 137.104,190.086 137.104,190.086 C133.43,163.07 146.83,87.645 146.83,87.645 L145.964,81.376 Z" id="Shape" fill="#FFFFFF"/>
85
+ <path d="M101.847,283.685 C101.847,283.685 90.624,256.527 69.011,267.05 C69.011,267.05 69.936,298.169 76.16,312.087 C76.16,312.087 69.935,315.821 68.692,320.573 C68.692,320.573 88.719,328.38 102.073,319.894 C102.073,319.895 99.244,294.547 101.847,283.685 Z" id="Shape" fill="#FFFFFF"/>
86
+ <path d="M92.129,286.249 C92.129,286.249 91.518,292.501 94.1,316.29 L99.81,314.251 C99.81,314.251 100.079,291.858 101.847,283.685 C101.847,283.685 89.479,283.257 85.4009984,281.626 C85.4,281.626 85.876,285.296 92.129,286.249 Z" id="Shape" fill="#DDE5F2"/>
87
+ <path d="M70.888,6.985 C52.716,20.224 58.168,46.185 58.168,46.185 C65.695,55.271 80.493,62.799 80.493,62.799 C83.608,58.646 93.213,57.347 93.213,57.347 C79.715,39.434 76.081,15.552 76.081,15.552 C75.302,6.726 70.888,6.985 70.888,6.985 Z" id="Shape" fill="#FFFFFF"/>
88
+ <path d="M80.233,6.726 C91.136,25.936 95.291,61.761 95.291,61.761 L102.818,62.54 C108.27,38.397 99.444,2.313 99.444,2.313 C84.906,-1.062 80.233,6.726 80.233,6.726 Z" id="Shape" fill="#4D5268"/>
89
+ <path d="M128.946,30.291 L131.054,14.181 C123.074,6.202 99.444,2.313 99.444,2.313 C107.882,42.089 104.103,62.662 104.103,62.662 C116.901,56.037 124.579,60.253 124.579,60.253 L132.108,62.361 L141.093,43.829 L146.11,25.925 C143.098,20.957 137.528,15.386 137.528,15.386 L128.946,30.291 Z" id="Shape" fill="#52556D"/>
90
+ <polygon id="Shape" fill="#4B5156" points="129.097 29.235 136.926 15.083 130.903 15.986"/>
91
+ <path d="M143.021,69.199 L146.391,83.021 C147.063,93.481 142.676,118.434 142.676,118.434 C138.635,136.313 136.611,176.777 136.611,176.777 C149.98,160.931 158.093,145.077 162.799,130.325 C163.105,129.363 163.394,128.41 163.667,127.456 C175.37,87.368 162.244,56.042 162.244,56.042 C148.416,67.846 143.021,69.199 143.021,69.199 Z" id="Shape" fill="#52556D"/>
92
+ <path d="M162.8,130.324 C163.106,129.362 163.395,128.409 163.668,127.455 L150.861,129.137 L162.8,130.324 Z" id="Shape" fill="#27292E"/>
93
+ <path d="M168.164,98.41 C168.47,96.666 168.759,94.939 169.032,93.209 L156.225,96.258 L168.164,98.41 Z" id="Shape" fill="#27292E"/>
94
+ <path d="M135.045,189.378 C118.597,201.999 127.268,221.124 127.268,221.124 L139.124,232.216 C135.682,238.208 127.268,244.839 127.268,244.839 C123.442,257.845 138.105,256.823 138.105,256.823 C165.9,243.946 168.96,225.077 168.96,225.077 C161.31,200.725 135.045,189.378 135.045,189.378 Z" id="Shape" fill="#FFFFFF"/>
95
+ <path d="M128.083,222.091 L130.395,226.577 C130.395,226.577 133.657,235.005 130.666,242.346 L139.124,232.216 C139.124,232.216 133.249,224.946 128.083,222.091 Z" id="Shape" fill="#DDE5F2"/>
96
+ <path d="M126.994,257.976 C126.994,257.976 129.848,263.956 134.606,266.675 C134.606,266.675 129.441,275.919 131.072,287.202 C131.072,287.202 131.208,310.311 134.47,316.157 L142.355,314.118 C142.355,314.118 140.179,294.134 141.267,288.833 L143.578,277.278 C143.578,277.278 146.026,266.538 144.259,262.189 L126.994,257.976 Z" id="Shape" fill="#DDE5F2"/>
97
+ <path d="M137.103,190.085 C137.103,190.085 135.817,143.559 141.58,124.077 L147.068,88.681 C147.068,88.681 149.651,70.058 131.484,62.358 C131.484,62.358 120.134,52.556 104.104,62.662 C104.104,62.662 114.963,58.774 128.134,65.908 C128.134,65.908 135.268,71.67 135.543,88.682 C135.543,88.682 135.542,112.828 130.329,121.06 C130.329,121.06 120.725,157.828 124.567,190.48 L124.293,193.773 C124.293,193.773 125.392,192.674 128.409,193.224 C128.409,193.224 152.006,209.685 157.22,226.423 C157.22,226.423 146.243,246.729 131.152,254.411 C131.152,254.411 132.798,257.155 136.915,257.704 C136.915,257.704 159.573,251.168 168.961,225.077 C168.96,225.077 162.535,200.39 137.103,190.085 Z" id="Shape" fill="#DDE5F2"/>
98
+ <path d="M77.29,22.199 L76.497,14.859 C76.497,14.859 73.125,-1.805 64.793,13.073 C64.793,13.073 71.34,6.527 72.133,16.644 C72.133,16.644 74.91,43.227 88.399,58.303 L92.368,57.708 L84.234,42.234 L77.29,22.199 Z" id="Shape" fill="#DDE5F2"/>
99
+ <path d="M143.745,69.808 L145.964,81.376 C147.588,84.811 146.324,90.042 146.324,90.042 L142.555,115.632 L137.794,147.967 C136.404,157.29 136.61,176.776 136.61,176.776 L144.934,164.83 L144.934,156.299 C143.744,133.09 151.679,89.447 151.679,89.447 C152.671,78.933 149.497,73.379 149.497,73.379 C160.011,66.634 159.613,58.302 159.613,58.302 L143.745,69.808 Z" id="Shape" fill="#3F4256"/>
100
+ <path d="M76.16,312.087 C72.264,314.032 68.692,320.573 68.692,320.573 C89.312,326.911 102.073,319.894 102.073,319.894 L100.14,311.116 C89.415,316.187 76.16,312.087 76.16,312.087 Z" id="Shape" fill="#44465D"/>
101
+ <path d="M115.743,312.872 C115.743,312.872 109.832,317.787 108.79,322.351 C108.79,322.351 130.795,329.71 144.234,321.486 L142.071,312.677 C142.071,312.677 126.86,318.333 115.743,312.872 Z" id="Shape" fill="#44465D"/>
102
+ <path d="M120.278,125.064 C120.278,125.064 131.354,126.603 140.584,122.91 L142.123,113.065 C142.123,113.065 135.97,121.68 120.278,125.064 Z" id="Shape" fill="#44465D"/>
103
+ <path d="M125.193,141.964 C125.193,141.964 133.122,143.11 139.727,140.36 L140.829,133.029 C140.829,133.03 136.426,139.445 125.193,141.964 Z" id="Shape" fill="#44465D"/>
104
+ <path d="M138.051,214.474 C139.969,216.441 147.989,207.833 151.353,200.443 L144.169,195.055 C144.169,195.055 145.199,205.058 138.051,214.474 Z" id="Shape" fill="#44465D"/>
105
+ <path d="M152.307,219.802 C153.069,221.779 160.179,218.552 164.045,214.615 L160.733,208.565 C160.733,208.565 159.054,215.735 152.307,219.802 Z" id="Shape" fill="#44465D"/>
106
+ <path d="M143.881,240.005 C142.184,241.274 147.217,247.245 152.052,249.9 L156.979,245.075 C156.979,245.074 149.622,245.397 143.881,240.005 Z" id="Shape" fill="#44465D"/>
107
+ <path d="M100.143,294.335 L101.039,287.472 C101.039,287.472 95.974,292.243 87.31,292.931 C87.235,295.048 95.041,296.437 100.143,294.335 Z" id="Shape" fill="#44465D"/>
108
+ <path d="M89.515,303.034 C89.44,305.151 95.683,305.758 100.784,303.657 L100.116,298.356 C100.115,298.356 98.177,302.346 89.515,303.034 Z" id="Shape" fill="#44465D"/>
109
+ <path d="M140.446,295.259 L141.342,288.396 C141.342,288.396 136.278,293.166 127.614,293.854 C127.539,295.971 135.345,297.359 140.446,295.259 Z" id="Shape" fill="#44465D"/>
110
+ <path d="M129.818,304.881 C129.743,306.997 135.987,307.605 141.087,305.503 L140.419,300.204 C140.419,300.204 138.48,304.192 129.818,304.881 Z" id="Shape" fill="#44465D"/>
111
+ <path d="M109.651,60.354 C125.747,56.103 132.108,62.36 132.108,62.36 C139.684,52.219 146.11,25.924 146.11,25.924 L142.146,20.873 C135.161,50.939 109.651,60.354 109.651,60.354 Z" id="Shape" fill="#3F4256"/>
112
+ <path d="M103.417,63.799 C103.377,63.799 103.336,63.797 103.295,63.792 L95.351,62.833 C94.89,62.777 94.527,62.411 94.477,61.948 C94.444,61.645 91.067,31.361 79.924,6.43 C79.739,6.017 79.855,5.532 80.206,5.246 C80.557,4.96 88.927,-1.717 99.199,0.85 C99.539,0.935 99.809,1.191 99.912,1.526 C100,1.811 108.475,29.878 104.665,60.886 C108.549,59.482 118.729,56.383 127.483,58.774 C128.015,58.92 128.33,59.469 128.184,60.003 C128.038,60.536 127.49,60.848 126.955,60.704 C117.934,58.242 106.834,62.183 104.353,63.142 C104.213,63.532 103.838,63.799 103.417,63.799 Z M96.371,60.941 L102.547,61.687 C106.316,33.081 99.322,6.751 98.16,2.661 C90.594,1.031 84.055,4.982 82.077,6.351 C92.089,29.153 95.762,56.022 96.371,60.941 Z" id="Shape" fill="#27292E"/>
113
+ <path d="M136.509,177.698 C136.294,177.698 136.077,177.629 135.895,177.486 C135.459,177.146 135.382,176.518 135.722,176.083 C172.416,129.053 170.839,87.973 163.055,61.792 C155.722,37.133 141.668,20.672 137.969,16.641 L129.869,30.952 C129.632,31.37 129.134,31.563 128.677,31.406 C128.222,31.251 127.942,30.794 128.009,30.318 L130.278,14.437 C122.626,6.816 99.035,2.846 98.794,2.807 C98.249,2.717 97.88,2.202 97.97,1.657 C98.06,1.113 98.57,0.743 99.12,0.833 C100.145,1.002 124.328,5.077 132.07,13.414 C132.276,13.635 132.37,13.937 132.328,14.236 L130.739,25.357 L136.896,14.478 C137.049,14.207 137.321,14.022 137.63,13.98 C137.938,13.937 138.25,14.042 138.471,14.262 C138.649,14.439 156.337,32.266 164.947,61.137 C172.893,87.786 174.548,129.575 137.299,177.314 C137.101,177.566 136.807,177.698 136.509,177.698 Z" id="Shape" fill="#27292E"/>
114
+ <path d="M131.336,17.141 C130.862,17.141 130.441,16.803 130.354,16.32 C130.254,15.777 130.615,15.256 131.159,15.157 L137.588,13.987 C138.132,13.891 138.651,14.248 138.75,14.792 C138.85,15.335 138.489,15.856 137.945,15.955 L131.516,17.125 C131.455,17.135 131.396,17.141 131.336,17.141 Z" id="Shape" fill="#27292E"/>
115
+ <path d="M181.622,236.61 C181.622,236.61 181.316,236.534 180.729,236.45 C180.139,236.365 179.262,236.286 178.092,236.403 C176.943,236.527 175.414,236.883 173.911,238.026 C173.174,238.596 172.488,239.376 171.995,240.284 C171.505,241.19 171.191,242.194 171.016,243.212 C170.679,245.251 170.828,247.337 171.159,249.436 C171.515,251.576 172.023,253.559 172.421,255.684 C172.827,257.788 173.179,259.941 173.264,262.062 C173.353,264.182 173.146,266.259 172.498,268.167 C171.863,270.079 170.784,271.827 169.426,273.384 C169.083,273.784 168.742,274.13 168.397,274.488 L167.783,275.077 C167.637,275.223 167.429,275.388 167.259,275.541 C166.529,276.155 165.729,276.687 164.891,277.136 C163.214,278.038 161.398,278.613 159.633,278.952 C157.864,279.29 156.139,279.401 154.559,279.335 C151.385,279.22 148.836,278.459 147.2,277.759 C146.363,277.411 145.771,277.066 145.408,276.872 C144.943,276.588 144.695,276.436 144.695,276.436 C144.69,276.432 144.67,276.42 144.665,276.416 C144.494,276.314 144.314,276.242 144.133,276.186 L143.111,281.295 C143.677,281.6 144.392,281.974 145.299,282.336 C147.415,283.209 150.572,284.092 154.414,284.182 C156.33,284.237 158.414,284.078 160.579,283.636 C162.739,283.174 164.988,282.413 167.144,281.194 C168.219,280.584 169.267,279.857 170.242,279.001 C170.486,278.774 170.718,278.581 170.971,278.323 L171.573,277.72 C172.011,277.254 172.46,276.771 172.853,276.289 C174.472,274.354 175.854,272.031 176.632,269.486 C177.436,266.945 177.574,264.285 177.4,261.83 C177.224,259.36 176.762,257.05 176.276,254.873 C175.802,252.71 175.204,250.604 174.857,248.795 C174.507,246.949 174.368,245.202 174.568,243.774 C174.77,242.335 175.312,241.34 176.066,240.735 C176.82,240.115 177.785,239.813 178.628,239.604 C179.476,239.395 180.211,239.307 180.713,239.216 C181.22,239.156 181.497,239.104 181.497,239.104 L181.554,239.094 C182.028,239.005 182.43,238.649 182.554,238.151 C182.719,237.47 182.304,236.779 181.622,236.61 Z" id="Shape" fill="#FFFFFF"/>
116
+ <path d="M175.218,256.481 C176.105,259.76 179.295,273.676 165.734,279.704 C152.173,285.732 143.487,279.083 143.487,279.083 L142.777,281.831 C150.931,286.884 162.898,283.958 162.898,283.958 C183.196,276.425 177.256,256.394 177.256,256.394 C175.306,249.48 175.129,243.187 175.129,243.187 C176.104,239.109 180.093,240.173 180.093,240.173 L179.739,239.198 C168.659,239.375 175.218,256.481 175.218,256.481 Z" id="Shape" fill="#DDE5F2"/>
117
+ <path d="M149.152,278.254 L149.116,278.275 C149.157,278.353 150.085,280.232 147.679,283.147 L149.993,285.055 C152.083,282.521 152.421,280.326 152.29,278.831 L149.152,278.254 Z" id="Shape" fill="#44465D"/>
118
+ <path d="M163.06,284.575 L160.14,283.884 C160.935,280.53 159.575,278.988 159.516,278.924 L161.664,276.83 C161.771,276.937 164.26,279.51 163.06,284.575 Z" id="Shape" fill="#44465D"/>
119
+ <path d="M171.098,278.437 C169.994,275.444 168.164,275.053 168.147,275.05 L168.575,272.081 C168.721,272.102 172.162,272.649 173.913,277.399 L171.098,278.437 Z" id="Shape" fill="#44465D"/>
120
+ <path d="M176.802,268.725 C174.323,266.722 172.573,267.316 172.498,267.343 L171.915,264.401 C172.052,264.345 174.749,263.21 178.686,266.391 L176.802,268.725 Z" id="Shape" fill="#44465D"/>
121
+ <path d="M172.42,256.964 L171.029,254.283 C171.132,254.178 172.231,252.117 177.102,253.504 L176.92,256.555 C173.859,255.681 172.477,256.91 172.42,256.964 Z" id="Shape" fill="#44465D"/>
122
+ <path d="M170.877,246.15 L169.807,243.905 C169.907,243.8 171.214,241.496 175.983,242.962 L175.1,245.829 C172.21,244.94 170.929,246.101 170.877,246.15 Z" id="Shape" fill="#44465D"/>
123
+ <path d="M181.983,235.154 C181.946,235.144 181.586,235.057 180.942,234.965 C180.376,234.884 179.822,234.844 179.249,234.844 C178.823,234.844 178.385,234.867 177.943,234.91 C176.048,235.115 174.436,235.743 173.004,236.832 C172.053,237.568 171.252,238.512 170.678,239.568 C170.138,240.568 169.754,241.707 169.538,242.957 C169.218,244.899 169.262,247.029 169.678,249.668 C169.888,250.932 170.148,252.136 170.399,253.3 C170.586,254.166 170.779,255.062 170.947,255.959 C171.304,257.811 171.679,259.982 171.765,262.121 C171.853,264.212 171.621,266.083 171.077,267.684 C170.534,269.321 169.599,270.903 168.296,272.397 C168.017,272.723 167.741,273.007 167.449,273.309 L167.338,273.425 L166.744,273.993 C166.657,274.08 166.57,274.152 166.484,274.225 C166.406,274.291 166.328,274.358 166.255,274.423 C165.663,274.92 164.952,275.398 164.18,275.812 C162.769,276.572 161.143,277.132 159.348,277.478 C158.049,277.726 156.732,277.852 155.435,277.852 C155.159,277.852 154.887,277.846 154.62,277.834 C151.36,277.716 148.941,276.871 147.788,276.378 C147.155,276.114 146.681,275.857 146.335,275.667 L146.155,275.57 L145.532,275.189 L145.519,275.178 L145.429,275.125 C145.173,274.973 144.895,274.851 144.576,274.752 L142.986,274.256 L142.659,275.89 L141.637,280.999 L141.419,282.088 L142.397,282.614 C143.062,282.971 143.806,283.353 144.739,283.726 C146.755,284.558 150.079,285.579 154.376,285.679 C154.623,285.686 154.882,285.69 155.142,285.69 C157.042,285.69 158.972,285.493 160.876,285.103 C163.437,284.555 165.789,283.679 167.88,282.497 C169.099,281.806 170.225,281.008 171.23,280.125 L171.478,279.899 C171.662,279.734 171.845,279.568 172.039,279.371 L172.632,278.777 C173.087,278.295 173.577,277.768 174.012,277.236 C175.88,275.005 177.285,272.471 178.065,269.923 C178.829,267.508 179.109,264.743 178.894,261.722 C178.71,259.14 178.23,256.746 177.738,254.544 C177.528,253.584 177.294,252.638 177.068,251.724 C176.784,250.576 176.516,249.49 176.329,248.511 C175.981,246.676 175.888,245.151 176.052,243.98 C176.147,243.305 176.389,242.396 177.004,241.902 C177.547,241.457 178.31,241.226 178.987,241.058 C179.535,240.923 180.034,240.843 180.473,240.774 C180.64,240.748 180.792,240.723 180.93,240.699 C181.477,240.634 181.775,240.576 181.775,240.576 L181.806,240.57 C182.89,240.367 183.745,239.56 184.006,238.511 C184.374,237.028 183.466,235.521 181.983,235.154 Z M182.55,238.151 C182.426,238.649 182.024,239.005 181.55,239.094 L181.493,239.104 C181.493,239.104 181.216,239.157 180.709,239.216 C180.207,239.307 179.472,239.395 178.624,239.604 C177.781,239.813 176.816,240.115 176.062,240.735 C175.308,241.34 174.766,242.335 174.564,243.774 C174.364,245.203 174.503,246.95 174.853,248.795 C175.2,250.605 175.798,252.71 176.272,254.873 C176.758,257.05 177.22,259.36 177.396,261.83 C177.571,264.285 177.432,266.945 176.628,269.486 C175.85,272.031 174.468,274.354 172.849,276.289 C172.455,276.77 172.007,277.254 171.569,277.72 L170.967,278.323 C170.714,278.581 170.483,278.774 170.238,279.001 C169.263,279.857 168.216,280.584 167.14,281.194 C164.984,282.414 162.735,283.174 160.575,283.636 C158.682,284.023 156.851,284.193 155.14,284.193 C154.894,284.193 154.651,284.189 154.41,284.182 C150.568,284.092 147.411,283.209 145.295,282.336 C144.389,281.974 143.674,281.6 143.107,281.295 L144.129,276.186 C144.311,276.243 144.49,276.315 144.661,276.416 C144.666,276.42 144.686,276.432 144.691,276.436 C144.691,276.436 144.939,276.587 145.404,276.872 C145.767,277.065 146.359,277.411 147.196,277.759 C148.833,278.459 151.382,279.22 154.555,279.335 C154.843,279.347 155.136,279.354 155.433,279.354 C156.765,279.354 158.183,279.229 159.629,278.953 C161.394,278.613 163.21,278.039 164.887,277.137 C165.725,276.688 166.525,276.157 167.255,275.542 C167.426,275.389 167.633,275.224 167.779,275.078 L168.393,274.489 C168.739,274.131 169.08,273.785 169.422,273.385 C170.78,271.828 171.86,270.08 172.494,268.168 C173.141,266.26 173.348,264.183 173.26,262.063 C173.175,259.942 172.823,257.789 172.417,255.685 C172.02,253.56 171.512,251.577 171.155,249.437 C170.825,247.338 170.676,245.252 171.012,243.213 C171.188,242.195 171.501,241.192 171.991,240.285 C172.484,239.377 173.17,238.597 173.907,238.027 C175.41,236.884 176.938,236.528 178.088,236.404 C178.512,236.362 178.897,236.344 179.244,236.344 C179.855,236.344 180.348,236.397 180.724,236.45 C181.311,236.534 181.617,236.61 181.617,236.61 C182.304,236.779 182.719,237.47 182.55,238.151 Z" id="Shape" fill="#27292E"/>
124
+ <g id="Group" transform="translate(179.000000, 229.000000)">
125
+ <path d="M8.532,1.752 C1.996,3.52 0.259,8.514 1.448,11.152 C2.663,14.07 5.529,14.461 10.011,13.292 C14.003,10.702 27.065,11.501 27.065,11.501 C27.065,11.501 15.902,-1.254 8.532,1.752 Z" id="Shape" fill="#44465D"/>
126
+ <path d="M6.011,14.905 C3.302,14.905 1.456,13.772 0.526,11.537 C-0.125,10.093 -0.023,8.161 0.812,6.395 C1.536,4.864 3.459,2.106 8.213,0.802 C9.064,0.464 9.991,0.292 10.972,0.292 C18.499,0.292 27.442,10.411 27.819,10.842 L29.396,12.644 L27.005,12.498 C26.985,12.497 25.1,12.384 22.591,12.384 C16.566,12.384 12.292,13.004 10.556,14.13 L10.42,14.218 L10.264,14.259 C8.598,14.694 7.206,14.905 6.011,14.905 Z M10.972,2.293 C10.23,2.293 9.535,2.423 8.91,2.678 L8.793,2.717 C4.772,3.805 3.199,6.025 2.619,7.25 C2.032,8.493 1.934,9.799 2.36,10.741 C3.313,13.029 5.426,13.429 9.612,12.362 C11.781,11.049 16.145,10.384 22.591,10.384 C23.343,10.384 24.036,10.394 24.643,10.407 C21.795,7.573 15.839,2.293 10.972,2.293 Z" id="Shape" fill="#27292E"/>
127
+ </g>
128
+ <path d="M191.84,232.368 C183.413,232.175 182.313,238.202 182.313,238.202 C181.858,241.703 185.488,240.082 185.488,240.082 C190.674,237.359 200.266,237.294 200.266,237.294 C195.988,235.674 187.757,235.415 187.757,235.415 C188.664,233.794 191.84,232.368 191.84,232.368 Z" id="Shape" fill="#9193A7" opacity="0.3"/>
129
+ <path d="M137.315,191.255 C136.835,191.255 136.411,190.908 136.33,190.419 C133.04,170.684 138.372,136.349 142.266,111.278 C144.223,98.673 145.77,88.717 145.422,85.392 C144.489,76.47 142.553,70.928 142.146,69.835 C141.125,68.912 134.937,63.649 123.334,60.46 C122.801,60.314 122.488,59.763 122.635,59.231 C122.781,58.698 123.338,58.384 123.864,58.532 C137.093,62.168 143.434,68.289 143.698,68.548 C143.795,68.644 143.872,68.758 143.924,68.885 C144.022,69.127 146.339,74.922 147.411,85.185 C147.786,88.768 146.3,98.339 144.242,111.586 C140.37,136.522 135.066,170.672 138.304,190.091 C138.395,190.635 138.027,191.151 137.482,191.241 C137.425,191.251 137.37,191.255 137.315,191.255 Z" id="Shape" fill="#27292E"/>
130
+ <path d="M59.838,116.574 C59.669,116.574 59.496,116.531 59.339,116.44 C58.86,116.164 58.697,115.552 58.973,115.074 C64.529,105.452 65.656,102.118 69,92.223 C70.522,87.716 72.604,81.556 75.795,72.794 C75.791,71.057 76.289,59.831 89.634,56.991 C91.214,56.761 91.623,56.628 91.921,56.531 C92.424,56.367 92.721,56.292 94.481,56.216 C95.037,56.212 95.5,56.62 95.523,57.172 C95.546,57.724 95.119,58.191 94.567,58.214 C93.005,58.282 92.839,58.336 92.538,58.434 C92.171,58.553 91.669,58.717 89.984,58.96 C77.304,61.661 77.769,72.45 77.796,72.908 C77.803,73.044 77.783,73.179 77.737,73.307 C74.518,82.139 72.424,88.338 70.894,92.865 C67.503,102.901 66.36,106.282 60.705,116.076 C60.52,116.395 60.184,116.574 59.838,116.574 Z" id="Shape" fill="#27292E"/>
131
+ <path d="M106.9,282.552 L106.846,282.555 C106.846,282.555 106.494,282.572 105.879,282.603 C105.571,282.618 105.198,282.636 104.77,282.658 C104.341,282.671 103.859,282.723 103.33,282.709 C102.274,282.692 101.039,282.772 99.719,282.691 C99.059,282.666 98.375,282.639 97.681,282.613 C96.99,282.558 96.285,282.502 95.582,282.446 C94.876,282.401 94.177,282.312 93.489,282.216 C92.801,282.116 92.118,282.054 91.467,281.939 C90.815,281.827 90.184,281.718 89.586,281.615 C88.983,281.518 88.442,281.369 87.924,281.269 C87.409,281.152 86.937,281.075 86.516,280.953 C86.093,280.841 85.725,280.743 85.422,280.662 C84.815,280.502 84.468,280.41 84.468,280.41 C84.282,280.361 84.083,280.454 84.007,280.636 C83.924,280.835 84.018,281.064 84.216,281.147 C84.216,281.147 84.547,281.286 85.126,281.528 C85.416,281.649 85.768,281.796 86.171,281.965 C86.575,282.128 87.066,282.264 87.584,282.439 C88.106,282.598 88.674,282.816 89.28,282.95 C89.886,283.098 90.526,283.255 91.187,283.417 C91.848,283.587 92.544,283.68 93.248,283.813 C93.951,283.944 94.667,284.067 95.389,284.146 C96.11,284.236 96.83,284.326 97.539,284.415 C98.252,284.467 98.954,284.519 99.633,284.567 C100.313,284.626 100.971,284.648 101.596,284.652 C102.22,284.664 102.811,284.674 103.357,284.684 C103.902,284.703 104.402,284.653 104.844,284.643 C105.287,284.624 105.674,284.608 105.991,284.595 C106.628,284.568 106.991,284.552 106.991,284.552 L106.998,284.552 C107.55,284.525 107.975,284.056 107.948,283.504 C107.921,282.949 107.451,282.524 106.9,282.552 Z" id="Shape" fill="#27292E"/>
132
+ <path d="M69.083,270.433 C68.6,270.433 68.175,270.082 68.097,269.59 C62.885,236.777 79.967,196.597 87.553,180.844 C87.693,180.555 87.798,180.336 87.866,180.193 C87.89,180.087 87.932,179.982 87.994,179.883 C88.277,179.436 88.899,179.232 89.364,179.488 C90.201,179.952 89.883,180.614 89.354,181.712 C81.849,197.295 64.948,237.022 70.071,269.275 C70.157,269.821 69.785,270.334 69.24,270.42 C69.188,270.429 69.135,270.433 69.083,270.433 Z" id="Shape" fill="#27292E"/>
133
+ <path d="M86.156,324.493 C76.704,324.493 68.532,321.733 68.005,321.552 C67.507,321.38 67.227,320.852 67.366,320.344 C68.194,317.309 73.259,313.152 75.063,311.747 C67.029,286.434 68.075,269.533 68.087,269.364 C68.125,268.813 68.61,268.389 69.152,268.435 C69.703,268.472 70.119,268.95 70.082,269.5 C70.071,269.667 69.042,286.518 77.182,311.807 C77.313,312.214 77.17,312.66 76.828,312.915 C75.17,314.152 71.058,317.551 69.682,319.979 C73.786,321.191 89.347,325.157 100.659,319.463 C100.082,315.846 97.774,299.413 100.601,283.548 C100.698,283.004 101.218,282.637 101.761,282.739 C102.305,282.836 102.667,283.355 102.57,283.899 C99.448,301.417 102.715,319.65 102.748,319.833 C102.826,320.258 102.622,320.685 102.242,320.892 C97.236,323.613 91.492,324.493 86.156,324.493 Z" id="Shape" fill="#27292E"/>
134
+ <path d="M128.083,326.223 C117.5,326.223 107.884,323.221 107.793,323.143 C107.504,322.891 107.384,322.496 107.484,322.125 C108.306,319.11 112.882,314.366 114.424,312.832 C113.747,310.736 113.061,308.66 112.384,306.613 C109.618,298.253 107.006,290.356 105.876,283.674 C105.784,283.129 106.151,282.613 106.695,282.521 C107.245,282.436 107.756,282.796 107.848,283.34 C108.952,289.873 111.54,297.699 114.282,305.986 C115.024,308.229 115.777,310.507 116.517,312.806 C116.633,313.169 116.534,313.567 116.259,313.832 C114.774,315.267 111.075,319.149 109.782,321.726 C114.18,322.906 131.546,326.988 143.048,321.279 C141.982,317.225 137.53,298.465 141.5,281.527 C141.509,281.488 141.521,281.448 141.535,281.411 C141.573,281.307 145.269,270.953 142.16,256.247 C142.046,255.707 142.391,255.176 142.931,255.061 C143.477,254.947 144.002,255.292 144.117,255.832 C147.262,270.706 143.782,281.061 143.433,282.04 C139.124,300.519 145.122,321.304 145.183,321.512 C145.316,321.964 145.116,322.448 144.702,322.673 C139.78,325.349 133.79,326.223 128.083,326.223 Z" id="Shape" fill="#27292E"/>
135
+ <path d="M168.578,225.044 C168.551,225.139 168.513,225.24 168.484,225.336 C168.526,225.437 168.565,225.538 168.607,225.639 L168.578,225.044 Z" id="Shape" fill="#27292E"/>
136
+ <path d="M137.018,256.038 C136.948,256.026 136.868,256.01 136.792,255.996 C136.715,256.022 136.638,256.048 136.562,256.075 L137.018,256.038 Z" id="Shape" fill="#27292E"/>
137
+ <path d="M127.907,245.698 C128.009,245.635 128.097,245.567 128.195,245.503 C128.226,245.41 128.253,245.316 128.285,245.224 L127.907,245.698 Z" id="Shape" fill="#27292E"/>
138
+ <path d="M169.293,221.9 C168.861,220.898 168.42,219.899 167.923,218.927 C167.458,217.938 166.914,216.991 166.396,216.031 C165.844,215.09 165.3,214.141 164.7,213.23 C162.324,209.566 159.551,206.174 156.496,203.069 C155.724,202.301 154.951,201.534 154.14,200.808 C153.339,200.072 152.516,199.359 151.68,198.664 C150.009,197.271 148.28,195.951 146.493,194.713 C144.709,193.473 142.871,192.312 140.983,191.233 C140.043,190.69 139.083,190.176 138.114,189.68 C137.146,189.18 136.131,188.763 134.96,188.696 C134.81,188.688 134.655,188.743 134.542,188.859 C134.337,189.073 134.344,189.413 134.557,189.618 L134.572,189.632 C135.373,190.403 136.283,190.932 137.22,191.412 C138.153,191.904 139.077,192.414 139.986,192.954 C141.807,194.025 143.582,195.18 145.302,196.407 C148.748,198.857 151.955,201.628 154.925,204.62 C157.884,207.625 160.565,210.899 162.857,214.43 C163.439,215.306 163.981,216.208 164.522,217.109 C165.034,218.028 165.572,218.933 166.03,219.88 C166.523,220.81 166.96,221.767 167.389,222.727 C167.793,223.58 168.126,224.463 168.486,225.335 C168.514,225.239 168.552,225.138 168.579,225.043 L168.58,225.043 L168.609,225.638 C168.567,225.537 168.528,225.436 168.486,225.335 C168.255,226.113 167.966,226.935 167.655,227.721 C167.3,228.614 166.913,229.497 166.499,230.368 C165.669,232.108 164.724,233.798 163.687,235.428 C161.611,238.686 159.159,241.709 156.37,244.381 C155.683,245.062 154.951,245.693 154.229,246.334 C153.479,246.942 152.75,247.577 151.965,248.143 C151.202,248.735 150.405,249.282 149.606,249.824 C148.803,250.361 147.978,250.866 147.15,251.362 C146.305,251.833 145.475,252.329 144.603,252.75 C143.748,253.201 142.871,253.609 141.985,253.998 C141.112,254.416 140.197,254.738 139.302,255.107 C138.474,255.426 137.63,255.702 136.793,255.996 C136.868,256.01 136.948,256.026 137.019,256.038 L136.563,256.075 C136.639,256.048 136.716,256.022 136.793,255.996 C136.534,255.947 136.26,255.891 135.994,255.825 C135.646,255.74 135.299,255.647 134.955,255.543 C134.267,255.335 133.592,255.091 132.94,254.806 C131.644,254.234 130.416,253.508 129.472,252.556 C129.24,252.317 129.012,252.073 128.823,251.808 C128.617,251.551 128.453,251.272 128.302,250.989 C128.146,250.707 128.037,250.407 127.924,250.108 C127.843,249.798 127.753,249.492 127.719,249.17 C127.659,248.855 127.666,248.524 127.659,248.199 C127.676,247.869 127.688,247.54 127.754,247.207 C127.831,246.636 128.006,246.068 128.196,245.504 C128.098,245.568 128.009,245.636 127.909,245.699 L127.908,245.699 L128.286,245.224 C128.254,245.317 128.227,245.411 128.196,245.503 C128.937,245.017 129.624,244.512 130.309,243.981 C131.081,243.386 131.829,242.759 132.547,242.098 C133.985,240.782 135.368,239.391 136.601,237.861 C137.845,236.341 138.948,234.691 139.858,232.926 C140.066,232.474 140.296,232.033 140.462,231.562 C140.646,231.1 140.8,230.624 140.934,230.144 C141.187,229.178 141.342,228.183 141.322,227.186 C141.32,227.062 141.249,226.943 141.129,226.886 C140.959,226.805 140.756,226.877 140.675,227.047 L140.666,227.067 C140.459,227.503 140.305,227.939 140.099,228.359 C139.925,228.788 139.703,229.197 139.516,229.613 C139.1,230.433 138.666,231.237 138.203,232.025 C137.281,233.609 136.165,235.084 134.964,236.49 C133.744,237.882 132.457,239.227 131.075,240.478 C130.381,241.099 129.679,241.715 128.968,242.317 C128.257,242.91 127.509,243.501 126.796,244.038 L126.77,244.056 C126.613,244.163 126.487,244.321 126.418,244.514 C126.147,245.283 125.896,246.066 125.778,246.9 C125.701,247.311 125.678,247.737 125.661,248.162 C125.665,248.589 125.664,249.021 125.739,249.449 C125.789,249.88 125.904,250.301 126.021,250.72 C126.168,251.13 126.323,251.538 126.532,251.92 C126.735,252.302 126.961,252.675 127.225,253.01 C127.476,253.358 127.765,253.67 128.059,253.971 C129.252,255.167 130.682,255.993 132.14,256.639 C132.872,256.959 133.62,257.23 134.378,257.459 C134.757,257.574 135.14,257.677 135.525,257.771 C135.917,257.866 136.286,257.946 136.719,258.017 L136.738,258.021 C136.88,258.043 137.03,258.033 137.176,257.981 C138.121,257.645 139.076,257.339 140.013,256.978 C140.941,256.596 141.888,256.261 142.795,255.829 C143.715,255.425 144.625,255.001 145.514,254.532 C146.419,254.094 147.283,253.58 148.16,253.09 C149.022,252.575 149.88,252.049 150.715,251.49 C151.548,250.926 152.377,250.356 153.172,249.74 C153.987,249.151 154.748,248.491 155.527,247.857 C156.28,247.189 157.041,246.532 157.756,245.824 C160.66,243.041 163.213,239.895 165.373,236.505 C166.452,234.808 167.436,233.049 168.303,231.232 C168.736,230.322 169.14,229.399 169.514,228.46 C169.886,227.51 170.222,226.587 170.514,225.548 C170.567,225.359 170.562,225.148 170.485,224.951 C170.085,223.935 169.737,222.897 169.293,221.9 Z" id="Shape" fill="#27292E"/>
139
+ <path d="M138.104,229.471 C137.563,228.922 136.926,228.282 136.238,227.611 C135.518,226.983 134.751,226.313 133.983,225.644 C133.207,224.985 132.455,224.298 131.705,223.708 C130.951,223.122 130.258,222.565 129.644,222.11 C128.427,221.191 127.561,220.658 127.561,220.658 L127.551,220.652 C127.383,220.548 127.16,220.567 127.011,220.71 C126.834,220.88 126.828,221.161 126.998,221.338 C126.998,221.338 127.706,222.075 128.785,223.136 C129.321,223.67 129.97,224.266 130.652,224.916 C131.359,225.54 132.061,226.26 132.789,226.952 C133.513,227.647 134.237,228.342 134.916,228.993 C135.556,229.67 136.152,230.301 136.664,230.843 C137.698,231.913 138.387,232.627 138.387,232.627 L138.464,232.706 L138.467,232.709 C138.851,233.105 139.484,233.113 139.879,232.729 C140.274,232.345 140.283,231.712 139.899,231.317 C139.899,231.316 139.182,230.578 138.104,229.471 Z" id="Shape" fill="#27292E"/>
140
+ <path d="M79.784,63.293 C79.64,63.293 79.494,63.262 79.355,63.196 C63.126,55.488 57.91,47.351 57.696,47.008 C57.645,46.926 57.605,46.836 57.58,46.742 C52.472,28.111 63.591,12.191 64.066,11.522 C67.051,7.13 69.685,5.295 72.113,5.93 C76.685,7.126 77.67,17.11 77.767,18.244 C80.142,32.844 86.988,44.899 91.079,52.102 C92.139,53.969 92.976,55.443 93.516,56.577 C93.753,57.076 93.541,57.672 93.043,57.91 C92.544,58.146 91.947,57.936 91.71,57.437 C91.202,56.369 90.38,54.922 89.34,53.09 C85.183,45.771 78.227,33.52 75.784,18.491 C75.451,14.674 74.034,8.5 71.606,7.866 C70.167,7.484 68.068,9.193 65.708,12.665 C65.585,12.838 54.721,28.426 59.466,46.06 C60.146,47.047 65.583,54.441 80.213,61.39 C80.712,61.627 80.924,62.223 80.687,62.723 C80.516,63.083 80.158,63.293 79.784,63.293 Z" id="Shape" fill="#27292E"/>
141
+ <path d="M148.528,18.876 C145.616,36.44 133.631,59.203 131.098,64.272 L142.395,70.055 C158.486,62.92 169.263,45.519 169.263,45.519 C174.187,28.222 162.714,13.09 162.714,13.09 C152.544,-0.942 148.528,18.876 148.528,18.876 Z" id="Shape" fill="#DDE5F2"/>
142
+ <path d="M153.43,13.986 C153.622,13.095 153.724,12.58 153.724,12.58 C153.724,12.58 151.554,18.453 153.43,13.986 Z" id="Shape" fill="#FFFFFF"/>
143
+ <path d="M149.232,16.229 L147.548,23.386 C146.146,36.717 132.108,62.361 132.108,62.361 C144.551,52.495 151.921,20.983 153.429,13.986 C151.553,18.453 153.723,12.58 153.723,12.58 C153.723,12.58 153.621,13.095 153.429,13.986 C153.519,13.773 153.615,13.544 153.723,13.282 C156.108,7.529 159.897,9.914 159.897,9.914 C153.021,2.898 149.232,16.229 149.232,16.229 Z" id="Shape" fill="#FFFFFF"/>
144
+ <path d="M170.741,28.961 L170.387,27.303 L169.933,25.672 C169.659,24.574 169.232,23.528 168.882,22.456 C168.454,21.414 168.069,20.353 167.574,19.34 C166.632,17.292 165.553,15.314 164.301,13.418 C162.999,11.548 161.619,9.696 159.603,8.251 C158.608,7.548 157.342,6.946 155.898,6.967 C155.182,6.946 154.482,7.168 153.844,7.433 C153.236,7.747 152.668,8.121 152.214,8.567 C150.367,10.347 149.423,12.513 148.61,14.642 C148.215,15.717 147.886,16.804 147.611,17.913 C147.541,18.2 147.479,18.446 147.412,18.8 L147.258,19.597 L146.955,21.191 C146.52,23.312 146.007,25.426 145.401,27.518 C145.122,28.57 144.794,29.61 144.463,30.649 C144.142,31.691 143.807,32.73 143.44,33.759 C142.743,35.829 141.971,37.876 141.186,39.918 C140.393,41.958 139.558,43.982 138.705,46 C137.84,48.013 136.953,50.017 136.04,52.011 C135.119,54.001 134.186,55.986 133.223,57.958 C132.337,59.966 131.028,61.77 130.816,64.127 C130.808,64.218 130.837,64.313 130.901,64.386 C131.027,64.527 131.244,64.539 131.384,64.413 C133.151,62.84 133.844,60.724 134.893,58.779 C135.879,56.805 136.835,54.815 137.781,52.819 C138.718,50.819 139.63,48.807 140.521,46.784 C141.4,44.756 142.26,42.719 143.081,40.663 C143.894,38.605 144.692,36.54 145.419,34.445 C145.801,33.405 146.15,32.352 146.486,31.294 C146.833,30.24 147.175,29.184 147.47,28.111 C148.107,25.982 148.653,23.819 149.12,21.635 L149.444,19.989 L149.603,19.165 L149.768,18.443 C150.023,17.417 150.333,16.395 150.699,15.404 C151.426,13.446 152.367,11.479 153.727,10.198 C155.072,8.845 156.727,8.912 158.334,10.081 C159.915,11.202 161.251,12.922 162.441,14.653 C163.613,16.429 164.648,18.327 165.543,20.277 C166.02,21.24 166.394,22.248 166.811,23.237 C167.147,24.255 167.566,25.248 167.831,26.287 L168.275,27.832 L168.621,29.399 C168.883,30.44 169,31.503 169.155,32.56 C169.334,33.616 169.315,34.687 169.408,35.75 C169.444,36.815 169.368,37.88 169.356,38.946 C169.255,40.005 169.112,41.061 168.995,42.12 L168.331,45.112 C168.357,45.071 168.388,45.029 168.414,44.988 L168.303,45.24 L168.331,45.111 C167.557,46.31 166.708,47.527 165.829,48.692 C164.926,49.909 163.975,51.093 163.01,52.263 C162.532,52.853 162.027,53.418 161.536,53.998 C161.052,54.582 160.522,55.125 160.015,55.69 C159.51,56.257 158.983,56.801 158.448,57.338 C157.913,57.874 157.398,58.433 156.836,58.942 L155.184,60.504 L153.47,62 C152.908,62.51 152.304,62.966 151.709,63.434 C151.105,63.89 150.536,64.395 149.903,64.809 L148.042,66.105 C147.418,66.533 146.755,66.896 146.113,67.295 C145.47,67.693 144.822,68.082 144.139,68.405 C143.465,68.746 142.811,69.119 142.24,69.702 L142.217,69.725 C142.136,69.809 142.092,69.927 142.107,70.051 C142.132,70.271 142.332,70.429 142.551,70.404 C143.357,70.31 144.081,70.006 144.785,69.67 C145.501,69.354 146.18,68.972 146.853,68.58 C147.526,68.187 148.222,67.829 148.875,67.406 L150.829,66.124 C151.494,65.714 152.091,65.213 152.725,64.761 C153.35,64.297 153.985,63.844 154.575,63.337 L156.377,61.853 L158.105,60.286 C158.69,59.772 159.225,59.209 159.783,58.668 C160.34,58.126 160.888,57.576 161.414,57.003 C161.941,56.433 162.492,55.884 162.998,55.294 C163.508,54.709 164.034,54.137 164.532,53.541 C165.529,52.35 166.498,51.136 167.428,49.89 C168.367,48.644 169.25,47.387 170.116,46.044 L170.132,46.02 C170.175,45.952 170.208,45.874 170.228,45.791 L171.012,42.477 C171.158,41.352 171.325,40.227 171.447,39.099 C171.472,37.966 171.557,36.83 171.527,35.698 C171.441,34.569 171.463,33.427 171.285,32.309 C171.127,31.189 171.007,30.061 170.741,28.961 Z" id="Shape" fill="#27292E"/>
145
+ <path d="M168.413,44.993 C168.387,45.034 168.356,45.076 168.33,45.117 L168.302,45.246 L168.413,44.993 Z" id="Shape" fill="#27292E"/>
146
+ <path d="M63.99,43.837 C67.113,51.142 81.865,58.153 81.865,58.153 L85.316,57.155 C73.28,40.301 70.768,14.433 70.768,14.433 C59.149,29.982 63.99,43.837 63.99,43.837 Z" id="Shape" fill="#E86087"/>
147
+ <path d="M138.223,63.195 L140.846,65.124 C140.846,65.124 154.169,55.501 162.154,44.829 C162.154,44.829 169.624,33.321 157.133,16.064 C157.133,16.065 150.159,51.816 138.223,63.195 Z" id="Shape" fill="#E86087"/>
148
+ <g id="Group" transform="translate(123.000000, 243.000000)">
149
+ <path d="M13.868,14.027 C13.868,14.027 1.383,12.669 4.35,1.868 C4.35,1.868 0.32,4.434 1.828,10.889 C1.828,10.889 5.269,22.28 24.424,19.697 C24.424,19.697 25.714,14.746 22.486,10.657 L13.868,14.027 Z" id="Shape" fill="#41435A"/>
150
+ <path d="M19.048,21.078 C4.036,21.078 0.993,11.583 0.871,11.179 C-0.796,4.053 3.624,1.145 3.813,1.025 C4.161,0.803 4.612,0.818 4.944,1.064 C5.277,1.31 5.424,1.735 5.314,2.133 C4.579,4.813 4.816,7.07 6.021,8.842 C8.152,11.976 12.674,12.838 13.746,13.001 L22.121,9.726 C22.528,9.567 22.996,9.692 23.27,10.038 C26.766,14.467 25.449,19.728 25.391,19.95 C25.288,20.343 24.959,20.635 24.557,20.689 C22.638,20.947 20.784,21.078 19.048,21.078 Z M2.906,5.522 C2.475,6.761 2.285,8.449 2.802,10.662 C2.893,10.942 5.59,19.078 19.048,19.078 C20.479,19.078 21.997,18.984 23.572,18.797 C23.748,17.514 23.898,14.542 22.13,11.87 L14.233,14.959 C14.083,15.018 13.921,15.038 13.76,15.022 C13.497,14.994 7.296,14.273 4.368,9.967 C3.478,8.656 2.989,7.171 2.906,5.522 Z" id="Shape" fill="#27292E"/>
151
+ </g>
152
+ <path d="M95.017,3.343 C95.017,3.343 87.499,3.343 83.741,6.76 C83.741,6.76 93.821,27.26 97.068,59.892 C97.068,59.892 95.017,23.674 86.132,7.101 C86.132,7.102 91.087,4.197 95.017,3.343 Z" id="Shape" fill="#9193A7"/>
153
+ <path d="M70.943,14.035 L69.686,13.436 C69.727,13.916 69.777,14.395 69.822,14.874 C69.969,14.756 70.116,14.638 70.263,14.522 C70.486,14.35 70.734,14.17 70.943,14.035 Z" id="Shape" fill="#27292E"/>
154
+ <path d="M85.5,57.018 C84.413,55.424 83.445,53.734 82.499,52.045 C81.566,50.346 80.696,48.612 79.885,46.853 C78.264,43.334 76.813,39.736 75.636,36.048 C74.434,32.368 73.492,28.608 72.761,24.813 C72.595,23.861 72.406,22.913 72.27,21.957 C72.112,21.004 71.971,20.048 71.853,19.089 C71.594,17.174 71.426,15.25 71.283,13.324 L71.283,13.314 C71.271,13.175 71.224,13.038 71.138,12.916 C70.883,12.556 70.385,12.471 70.026,12.726 L70.025,12.726 C69.742,12.95 69.516,13.153 69.278,13.376 C69.043,13.594 68.827,13.831 68.61,14.064 C68.183,14.537 67.787,15.036 67.422,15.555 C66.688,16.589 66.123,17.758 65.833,18.981 C65.812,19.074 65.852,19.174 65.938,19.223 C66.043,19.283 66.178,19.246 66.238,19.14 L66.243,19.132 C66.54,18.608 66.837,18.099 67.194,17.628 C67.54,17.152 67.917,16.702 68.315,16.273 C68.713,15.845 69.136,15.441 69.583,15.066 C69.662,15 69.743,14.939 69.823,14.875 C69.778,14.396 69.728,13.917 69.687,13.437 L70.944,14.036 C70.735,14.171 70.487,14.35 70.264,14.524 C70.117,14.639 69.97,14.758 69.823,14.876 C69.961,16.353 70.115,17.828 70.329,19.295 C70.583,21.243 70.95,23.174 71.341,25.097 C72.16,28.937 73.191,32.731 74.481,36.434 C75.118,38.288 75.814,40.122 76.572,41.929 C77.332,43.735 78.128,45.527 79.019,47.272 C79.903,49.02 80.846,50.737 81.85,52.418 C82.854,54.101 83.925,55.737 85.134,57.293 C85.207,57.388 85.344,57.411 85.445,57.342 C85.55,57.271 85.577,57.128 85.506,57.023 L85.5,57.018 Z" id="Shape" fill="#27292E"/>
155
+ <path d="M156.242,15.89 C156.451,16.025 156.699,16.204 156.922,16.378 C157.031,16.463 157.14,16.552 157.249,16.639 L157.49,15.364 L156.242,15.89 Z" id="Shape" fill="#27292E"/>
156
+ <path d="M160.717,19.056 C160.446,18.484 160.139,17.923 159.765,17.41 C159.4,16.89 159.003,16.391 158.577,15.918 C158.36,15.684 158.144,15.447 157.909,15.23 C157.671,15.007 157.445,14.804 157.162,14.58 L157.161,14.58 C157.069,14.515 156.959,14.467 156.842,14.446 C156.408,14.368 155.994,14.656 155.916,15.089 L155.913,15.106 L154.7,21.839 L153.956,25.176 C153.703,26.287 153.487,27.408 153.203,28.512 L152.328,31.817 C152.044,32.921 151.748,34.022 151.39,35.104 L150.371,38.367 C150.019,39.451 149.605,40.513 149.225,41.586 C148.847,42.661 148.451,43.73 147.997,44.774 C147.551,45.821 147.147,46.889 146.667,47.92 L145.217,51.013 L143.639,54.041 L141.934,56.998 C141.306,57.946 140.737,58.936 140.062,59.851 C139.421,60.793 138.724,61.689 138.026,62.587 C137.3,63.457 136.577,64.346 135.754,65.11 C135.665,65.193 135.654,65.333 135.733,65.427 C135.815,65.524 135.961,65.537 136.057,65.455 C136.954,64.702 137.725,63.845 138.511,62.995 C139.264,62.12 139.99,61.221 140.671,60.29 C141.386,59.381 141.992,58.399 142.658,57.457 L144.478,54.515 L146.151,51.487 L147.672,48.381 C148.176,47.344 148.602,46.273 149.07,45.22 C149.547,44.169 149.966,43.096 150.366,42.016 C150.768,40.937 151.205,39.869 151.578,38.78 L152.663,35.499 C153.043,34.411 153.361,33.304 153.667,32.194 L154.606,28.869 C154.912,27.759 155.149,26.632 155.423,25.514 L156.206,22.15 L157.249,16.64 C157.14,16.554 157.031,16.465 156.922,16.379 C156.699,16.205 156.451,16.025 156.242,15.891 L157.49,15.365 L157.249,16.64 C157.367,16.734 157.487,16.825 157.603,16.922 C158.049,17.297 158.473,17.701 158.872,18.13 C159.268,18.56 159.65,19.006 159.999,19.481 C160.355,19.954 160.644,20.467 160.943,20.989 L160.955,21.01 C161.005,21.096 161.108,21.14 161.207,21.11 C161.323,21.075 161.389,20.954 161.353,20.838 C161.263,20.541 161.207,20.223 161.084,19.933 C160.978,19.633 160.854,19.342 160.717,19.056 Z" id="Shape" fill="#27292E"/>
157
+ <g id="Group" transform="translate(79.000000, 217.000000)" fill="#FE3D6C">
158
+ <path d="M9.457,15.702 C6.788,15.539 4.757,13.061 4.935,10.181 C5.112,7.299 7.429,5.09 10.1,5.253 C11.505,5.339 12.732,6.067 13.551,7.156 C14.053,5.682 14.874,4.38 15.917,3.339 C14.452,1.876 12.525,0.932 10.372,0.8 C5.423,0.495 1.13,4.59 0.802,9.927 C0.475,15.263 4.235,19.853 9.185,20.156 C12.097,20.336 14.781,18.991 16.565,16.767 L16.836,12.365 L14.347,12.213 C13.627,14.354 11.663,15.838 9.457,15.702 Z" id="Shape"/>
159
+ <g transform="translate(13.000000, 1.000000)" id="Shape">
160
+ <path d="M11.043,0.639 C6.095,0.335 1.799,4.429 1.473,9.767 L0.931,18.577 L5.062,18.83 L5.103,18.156 L5.447,12.554 L5.603,10.02 C5.779,7.139 8.097,4.929 10.769,5.093 C12.256,5.184 13.545,5.993 14.366,7.191 L19.074,7.479 C18.031,3.713 14.899,0.876 11.043,0.639 Z"/>
161
+ <path d="M10.128,15.542 C8.942,15.47 7.869,14.948 7.06,14.103 L6.748,19.179 C7.717,19.644 8.766,19.929 9.853,19.996 C13.71,20.231 17.166,17.8 18.661,14.188 L13.953,13.899 C12.993,14.987 11.615,15.634 10.128,15.542 Z"/>
162
+ </g>
163
+ </g>
164
+ <path d="M71.798,319.401 C71.798,319.401 74.225,320.093 75.38,320.093 L80.579,314.201 C80.579,314.201 78.383,313.854 77.921,313.392 C77.921,313.394 72.953,317.206 71.798,319.401 Z" id="Shape" fill="#9193A7" opacity="0.5"/>
165
+ <path d="M111.657,320.671 C111.657,320.671 114.084,321.364 115.239,321.364 L120.438,315.471 C120.438,315.471 118.242,315.125 117.78,314.662 C117.78,314.663 112.813,318.476 111.657,320.671 Z" id="Shape" fill="#9193A7" opacity="0.5"/>
166
+ <path d="M123.703,77.86 C117.445,75.284 110.659,76.842 106.25,82.081 C105.57,82.888 108.573,84.977 109.362,84.038 C112.782,79.975 118.601,77.611 123.694,79.708 C125.993,80.656 125.24,78.494 123.703,77.86 Z" id="Shape" fill="#27292E"/>
167
+ <path d="M76.194,74.705 C75.507,75.214 75.177,78.102 76.152,77.379 C79.96,74.553 85.131,74.19 89.032,76.977 C89.895,77.593 90.855,74.795 90.139,74.284 C85.866,71.229 80.374,71.603 76.194,74.705 Z" id="Shape" fill="#27292E"/>
168
+ <path d="M88.999,97.937 C85.678,95.763 81.82,94.672 77.774,95.843 C76.579,97.519 76.064,99.817 76.551,102.173 C77.405,106.292 80.998,109.042 84.562,108.304 C88.127,107.566 90.333,103.615 89.479,99.495 C89.366,98.949 89.202,98.429 88.999,97.937 Z" id="Shape" fill="#DDE5F2"/>
169
+ <ellipse id="Oval" fill="#27292E" transform="translate(84.095751, 100.758365) rotate(-101.700978) translate(-84.095751, -100.758365) " cx="84.0957508" cy="100.758365" rx="6.49987156" ry="5.41889292"/>
170
+ <path d="M89.734,97.235 C89.514,96.944 89.257,96.611 88.949,96.265 C88.666,95.885 88.252,95.605 87.835,95.265 C87.422,94.908 86.912,94.672 86.391,94.399 C86.133,94.251 85.858,94.139 85.572,94.053 C85.289,93.954 85,93.86 84.706,93.771 C84.118,93.607 83.505,93.527 82.897,93.436 C82.289,93.419 81.674,93.339 81.083,93.399 C80.487,93.425 79.906,93.481 79.356,93.591 C78.249,93.774 77.257,94.105 76.441,94.448 C75.624,94.794 74.979,95.16 74.548,95.453 C74.112,95.738 73.891,95.944 73.891,95.944 C73.891,95.944 74.186,95.936 74.702,95.923 C74.953,95.914 75.258,95.902 75.607,95.889 C75.951,95.867 76.345,95.877 76.758,95.841 C77.598,95.833 78.553,95.779 79.559,95.792 C80.063,95.78 80.576,95.803 81.094,95.82 C81.615,95.816 82.127,95.9 82.648,95.922 C83.157,95.99 83.67,96.05 84.165,96.135 C84.642,96.272 85.158,96.294 85.597,96.468 C86.046,96.618 86.519,96.704 86.91,96.904 C87.307,97.089 87.749,97.187 88.077,97.404 C88.419,97.602 88.759,97.767 89.067,97.919 C89.336,98.111 89.588,98.274 89.798,98.411 C90.219,98.685 90.494,98.837 90.494,98.837 C90.494,98.837 90.399,98.561 90.175,98.087 C90.059,97.853 89.925,97.554 89.734,97.235 Z" id="Shape" fill="#27292E"/>
171
+ <ellipse id="Oval" fill="#FFFFFF" transform="translate(79.565596, 99.228890) rotate(-101.688595) translate(-79.565596, -99.228890) " cx="79.565596" cy="99.2288905" rx="2.00007525" ry="2.20008277"/>
172
+ <path d="M121.619,103.085 C121.354,102.811 120.983,102.617 120.594,102.366 C120.2,102.123 119.775,101.831 119.261,101.666 C118.754,101.493 118.228,101.228 117.634,101.156 C117.048,101.056 116.436,100.911 115.804,100.947 C115.49,100.947 115.17,100.942 114.851,100.954 L113.904,101.089 C113.266,101.17 112.667,101.382 112.074,101.572 C111.493,101.79 110.938,102.049 110.43,102.334 C109.928,102.633 109.451,102.928 109.042,103.267 C108.616,103.58 108.263,103.937 107.938,104.258 C106.648,105.566 106.186,106.727 106.186,106.727 C106.186,106.727 106.452,106.588 106.915,106.345 C107.368,106.103 108.021,105.784 108.775,105.415 C109.544,105.064 110.421,104.679 111.363,104.337 C111.836,104.172 112.326,104.022 112.817,103.876 C113.321,103.774 113.814,103.597 114.327,103.552 L115.087,103.421 C115.342,103.415 115.594,103.39 115.847,103.372 C116.353,103.302 116.848,103.357 117.337,103.354 C117.832,103.323 118.294,103.452 118.756,103.48 C119.221,103.501 119.646,103.617 120.054,103.696 C120.45,103.801 120.86,103.815 121.181,103.936 C121.508,104.043 121.81,104.115 122.06,104.182 C122.56,104.311 122.873,104.366 122.873,104.366 C122.873,104.366 122.686,104.132 122.314,103.754 C122.128,103.567 121.9,103.332 121.619,103.085 Z" id="Shape" fill="#27292E"/>
173
+ <path d="M99.468,125.14 C81.193,135.469 81.536,163.797 81.536,163.797 C81.794,166.986 77.222,169.14 77.222,169.14 C85.515,180.891 99.097,182.89 99.097,182.89 C107.472,182.163 109.006,171.893 109.006,171.893 C111.783,159.795 111.829,150.664 110.601,143.836 C96.342,130.517 100.325,128.257 99.468,125.14 Z" id="Shape" fill="#474B60"/>
174
+ <path d="M84.042,116.388 C84.042,116.388 49.679,116.388 34.767,114.875 L17.477,113.362 C17.477,113.362 5.159,107.527 4.51,123.952 C4.51,123.952 10.561,162.422 30.661,174.092 C30.661,174.092 49.03,179.495 60.053,178.631 C60.053,178.631 97.01,162.422 101.98,141.458 C102.512,140.333 104.682,121.807 84.042,116.388 Z" id="Shape" fill="#52556D"/>
175
+ <path d="M78.669,116.5 C78.669,116.5 62.462,116.498 45.883,115.617 C34.76,115.026 23.471,113.61 16.795,113.139 C16.795,113.139 32.903,121.585 45.226,121.781 C45.226,121.781 64.001,122.368 75.54,119.63 C75.54,119.63 95.099,116.696 94.12,131.561 C94.12,131.561 91.347,152.016 60.053,178.633 C57.815,179.591 118.538,155.355 98.616,123.543 C98.616,123.542 91.187,115.131 78.669,116.5 Z" id="Shape" fill="#474B60"/>
176
+ <path d="M26.862,167.705 C26.469,167.22 26.052,166.703 25.612,166.158 C25.188,165.601 24.663,165.085 24.245,164.437 C23.804,163.811 23.345,163.158 22.87,162.483 C22.401,161.804 21.866,161.141 21.432,160.376 C20.532,158.872 19.5,157.342 18.631,155.637 C18.184,154.794 17.699,153.953 17.263,153.074 C16.85,152.181 16.424,151.283 15.986,150.383 C15.529,149.491 15.169,148.545 14.771,147.612 C14.383,146.674 13.967,145.745 13.637,144.779 C13.281,143.825 12.924,142.87 12.57,141.919 C12.253,140.954 11.936,139.994 11.623,139.04 C11.048,137.117 10.466,135.227 10.007,133.368 C9.543,131.512 9.123,129.708 8.786,127.988 C8.619,127.114 8.477,126.316 8.351,125.465 C8.253,124.667 8.106,123.891 8.102,123.146 C8.039,121.66 8.143,120.28 8.511,119.13 C8.865,117.977 9.434,117.06 10.028,116.418 C10.626,115.777 11.207,115.372 11.629,115.145 C12.05,114.915 12.301,114.842 12.301,114.842 C12.301,114.842 12.043,114.877 11.584,115.047 C11.132,115.221 10.457,115.522 9.759,116.141 C9.059,116.749 8.336,117.666 7.818,118.874 C7.28,120.076 7.001,121.555 6.96,123.152 C6.904,123.956 6.992,124.779 7.032,125.641 C7.085,126.448 7.206,127.353 7.319,128.228 C7.566,130.001 7.872,131.865 8.298,133.77 C8.714,135.676 9.199,137.636 9.778,139.603 C10.088,140.581 10.399,141.566 10.713,142.556 C11.066,143.533 11.418,144.513 11.772,145.494 C12.117,146.478 12.557,147.426 12.963,148.381 C13.381,149.332 13.762,150.295 14.24,151.206 C14.692,152.128 15.151,153.039 15.612,153.933 C16.091,154.818 16.616,155.665 17.104,156.512 C18.039,158.233 19.197,159.741 20.203,161.221 C21.225,162.692 22.381,163.947 23.356,165.161 C24.372,166.347 25.439,167.313 26.323,168.216 C27.187,169.14 28.087,169.795 28.773,170.386 C30.173,171.538 30.985,172.17 30.985,172.17 C30.985,172.17 30.285,171.4 29.039,170.102 C28.424,169.444 27.616,168.711 26.862,167.705 Z" id="Shape" fill="#9193A7"/>
177
+ <path d="M80.614,169.574 C80.614,169.574 85.04,176.985 98.626,179.559 C98.626,179.559 100.274,178.838 99.038,176.985 C99.038,176.985 86.378,175.235 80.614,169.574 Z" id="Shape" fill="#9193A7" opacity="0.5"/>
178
+ <path d="M99.673,143.331 C99.49,142.891 99.396,142.664 99.396,142.664 C99.186,142.154 98.602,141.914 98.092,142.124 C97.582,142.334 97.34,142.918 97.55,143.429 L97.585,143.513 C97.585,143.513 97.659,143.695 97.805,144.046 C97.942,144.399 98.116,144.934 98.22,145.651 C98.449,147.068 98.157,149.316 96.529,151.747 C95.739,152.962 94.654,154.204 93.339,155.429 C92.68,156.041 91.96,156.647 91.184,157.246 C90.787,157.568 90.427,157.786 89.896,158.254 C89.514,158.602 89.125,158.956 88.731,159.316 C87.175,160.783 85.428,162.235 83.593,163.774 C82.652,164.502 81.685,165.247 80.697,166.01 C79.706,166.772 78.607,167.493 77.532,168.262 C75.373,169.741 73.066,171.336 70.704,172.865 C68.325,174.384 65.806,175.863 63.079,176.896 C62.376,177.157 61.756,177.359 61.016,177.542 L60.453,177.673 L60.311,177.706 C60.304,177.708 60.228,177.726 60.277,177.714 L60.217,177.723 L59.979,177.759 C59.649,177.801 59.29,177.822 58.923,177.831 C57.447,177.858 55.888,177.74 54.322,177.59 C51.185,177.277 47.969,176.811 44.711,176.285 C41.453,175.752 38.142,175.156 34.822,174.469 L33.587,174.202 C33.149,174.101 32.795,174.026 32.441,173.902 C31.722,173.658 31.013,173.298 30.329,172.875 C28.958,172.02 27.683,170.922 26.483,169.732 C24.087,167.337 21.974,164.574 20.032,161.691 C18.092,158.801 16.327,155.768 14.717,152.654 C11.515,146.425 8.858,139.875 7.179,133.212 C6.36,129.885 5.779,126.509 5.792,123.208 C5.804,121.563 5.975,119.934 6.435,118.439 C6.887,116.948 7.667,115.605 8.813,114.725 C9.949,113.83 11.417,113.427 12.919,113.368 C13.682,113.339 14.419,113.383 15.194,113.486 C15.991,113.596 16.783,113.705 17.571,113.814 C20.742,114.278 23.854,114.625 26.884,114.965 C32.947,115.607 38.691,116.03 43.995,116.366 C54.606,117.007 63.46,117.218 69.658,117.296 C72.758,117.335 75.193,117.229 76.854,117.158 C78.514,117.062 79.4,116.974 79.4,116.974 C79.584,116.955 79.736,116.807 79.751,116.616 C79.767,116.402 79.606,116.216 79.393,116.2 C79.393,116.2 78.51,116.133 76.855,116.034 C75.199,115.966 72.771,115.832 69.681,115.782 C63.501,115.668 54.669,115.438 44.096,114.759 C38.812,114.406 33.091,113.965 27.063,113.305 C24.052,112.955 20.959,112.6 17.813,112.128 C17.021,112.016 16.224,111.903 15.423,111.79 C14.601,111.678 13.714,111.617 12.849,111.65 C11.115,111.71 9.245,112.184 7.749,113.352 C6.243,114.503 5.283,116.205 4.759,117.918 C4.224,119.647 4.041,121.429 4.021,123.192 C3.997,126.726 4.594,130.215 5.424,133.644 C7.128,140.499 9.806,147.157 13.045,153.515 C14.673,156.691 16.461,159.789 18.439,162.757 C20.422,165.719 22.58,168.572 25.104,171.114 C26.371,172.378 27.732,173.567 29.287,174.548 C30.067,175.034 30.898,175.466 31.806,175.777 C32.263,175.938 32.747,176.044 33.144,176.135 L34.414,176.413 C37.776,177.122 41.1,177.731 44.386,178.281 C47.672,178.821 50.912,179.309 54.128,179.622 C55.739,179.774 57.334,179.899 58.979,179.868 C59.392,179.855 59.81,179.834 60.249,179.777 L60.585,179.725 L60.669,179.712 L60.775,179.689 L60.917,179.656 L61.48,179.524 C62.235,179.34 63.076,179.073 63.794,178.8 C66.758,177.671 69.365,176.124 71.801,174.57 C74.239,172.988 76.478,171.435 78.694,169.914 C79.776,169.14 80.851,168.434 81.873,167.648 C82.894,166.859 83.891,166.089 84.862,165.337 C86.731,163.767 88.511,162.284 90.091,160.791 C90.492,160.424 90.888,160.063 91.276,159.708 C91.525,159.483 92.027,159.137 92.414,158.829 C93.231,158.197 93.999,157.552 94.706,156.894 C96.118,155.577 97.309,154.223 98.207,152.842 C100.064,150.106 100.52,147.216 100.207,145.378 C100.068,144.457 99.844,143.774 99.673,143.331 Z" id="Shape" fill="#27292E"/>
179
+ <path d="M102.474,181.841 L102.463,181.84 C102.463,181.84 102.346,181.829 102.128,181.81 C101.915,181.794 101.605,181.773 101.201,181.726 C100.401,181.656 99.264,181.542 97.916,181.378 C97.242,181.283 96.512,181.21 95.749,181.064 C94.979,180.957 94.189,180.75 93.369,180.56 C92.55,180.367 91.721,180.101 90.883,179.835 C90.074,179.492 89.202,179.257 88.422,178.825 L87.225,178.239 C86.832,178.034 86.473,177.777 86.099,177.552 C85.734,177.313 85.35,177.106 85.009,176.849 C84.676,176.581 84.347,176.318 84.023,176.058 C83.347,175.572 82.802,174.981 82.274,174.433 C82.009,174.161 81.752,173.896 81.503,173.639 C81.288,173.353 81.081,173.076 80.882,172.81 C80.494,172.27 80.091,171.81 79.817,171.344 C79.547,170.874 79.312,170.464 79.119,170.127 C78.729,169.452 78.507,169.067 78.507,169.067 L78.444,168.957 C78.172,168.485 77.57,168.319 77.093,168.587 C76.613,168.856 76.441,169.464 76.71,169.944 C76.71,169.944 76.946,170.367 77.36,171.107 C77.569,171.477 77.822,171.925 78.112,172.44 C78.416,172.948 78.857,173.458 79.286,174.046 C79.507,174.336 79.737,174.639 79.975,174.952 C80.249,175.234 80.533,175.526 80.825,175.826 C81.409,176.428 82.015,177.071 82.758,177.608 C83.115,177.891 83.479,178.18 83.847,178.472 C84.222,178.752 84.64,178.981 85.041,179.242 C85.45,179.488 85.848,179.765 86.275,179.989 L87.58,180.626 C88.435,181.088 89.369,181.355 90.252,181.706 C91.16,181.978 92.057,182.245 92.937,182.435 C93.822,182.602 94.675,182.77 95.496,182.844 C96.31,182.959 97.087,182.999 97.803,183.021 C98.518,183.043 99.176,183.008 99.755,182.971 C100.335,182.915 100.838,182.866 101.251,182.784 C101.661,182.709 101.987,182.638 102.209,182.585 C102.424,182.524 102.538,182.491 102.538,182.491 C102.667,182.454 102.767,182.342 102.779,182.2 C102.793,182.02 102.658,181.857 102.474,181.841 Z" id="Shape" fill="#27292E"/>
180
+ <path d="M20.607,124.063 C15.778,122.26 13.819,123.819 13.113,125.704 C12.409,127.59 13.226,129.088 18.054,130.892 C22.882,132.696 29.122,132.63 29.827,130.745 C30.531,128.858 25.434,125.867 20.607,124.063 Z" id="Shape" fill="#27292E"/>
181
+ <path d="M74.151,128.86 C68.748,129.19 59.068,131.825 59.367,133.894 C59.664,135.963 69.825,136.683 75.232,136.353 C80.632,136.023 82.931,134.191 82.632,132.122 C82.335,130.052 79.555,128.529 74.151,128.86 Z" id="Shape" fill="#27292E"/>
182
+ <path d="M104.343,148.45 C104.226,148.05 104.031,147.486 103.701,146.85 C103.549,146.525 103.366,146.182 103.135,145.842 C102.906,145.502 102.688,145.124 102.398,144.781 C102.116,144.433 101.851,144.049 101.516,143.717 C101.195,143.373 100.87,143.021 100.508,142.708 C99.097,141.411 97.445,140.423 96.138,139.859 C94.832,139.294 93.833,139.231 93.833,139.231 C93.675,139.223 93.515,139.304 93.435,139.452 C93.324,139.658 93.4,139.914 93.605,140.026 C93.605,140.026 94.377,140.455 95.536,141.098 C96.116,141.411 96.778,141.802 97.457,142.264 C97.782,142.514 98.145,142.737 98.471,143.017 C98.812,143.28 99.143,143.564 99.463,143.859 C99.798,144.139 100.097,144.455 100.395,144.764 C100.706,145.061 100.961,145.396 101.231,145.703 C101.509,146.004 101.714,146.343 101.941,146.641 C102.174,146.936 102.357,147.24 102.533,147.516 C102.701,147.797 102.895,148.035 103.024,148.27 C103.153,148.505 103.267,148.71 103.372,148.874 C103.572,149.208 103.701,149.397 103.701,149.397 L103.726,149.435 C103.829,149.585 104.017,149.663 104.204,149.616 C104.443,149.555 104.588,149.313 104.527,149.074 C104.525,149.075 104.468,148.846 104.343,148.45 Z" id="Shape" fill="#27292E"/>
183
+ </g>
184
+ </g>
185
+ </g>
186
+ </symbol></svg>
assets/js/message-addon.js ADDED
@@ -0,0 +1 @@
 
1
+ 'use strict';jQuery(function($){$(document).ready(function(){$('.updated a.hide-install-addons-notice').click(function(e){e.preventDefault();var el=$(this).parents('.ac-message');var el_close=el.find('.hide-notice');el_close.hide();el_close.after('<div class="spinner right"></div>');el.find('.spinner').show();$.post(ajaxurl,{'action':'cpac_hide_install_addons_notice'},function(){el.find('.spinner').remove();el.slideUp()});return false})})});
assets/js/message-dismiss.js ADDED
@@ -0,0 +1 @@
 
1
+ 'use strict';jQuery(function($){$(document).on('click','.ac-notice [data-dismiss], .ac-notice button.notice-dismiss',function(){var $notice=$(this).parents('.ac-notice');var name=$notice.data('name');if(!name){return false}setTimeout(function(){'use strict';$notice.fadeOut().remove()},3000);$.post(ajaxurl,{action:'ac_notice_dismiss',name:name,_ajax_nonce:$notice.data('nonce')},function(){$notice.fadeOut().remove()})})});
assets/js/message-dismissible.js ADDED
@@ -0,0 +1 @@
 
1
+ 'use strict';jQuery(function($){$(document).on('click','.ac-notice [data-dismiss], .ac-notice button.notice-dismiss',function(e){e.preventDefault();var $notice=$(this).parents('.ac-notice');var name=$notice.data('name');if(!name){return false}$notice.fadeOut(500,function(){$notice.remove()});$.post(ajaxurl,{action:'ac_notice_dismiss_'+name,name:name,_ajax_nonce:$notice.data('nonce')})})});
assets/js/message-review.js ADDED
@@ -0,0 +1 @@
 
1
+ 'use strict';jQuery(function($){$(document).on('click','a.hide-review-notice-soft',function(e){e.preventDefault();var $notice=$(this).closest('.ac-notice');$notice.find('.info').slideUp();$notice.find('.help').slideDown();$.post(ajaxurl,$notice.data('dismissible-callback'))});$(document).on('click','a.hide-review-notice',function(e){e.preventDefault();$(this).closest('.ac-notice').find('.notice-dismiss').trigger('click')})});
assets/js/message.js CHANGED
@@ -1,2 +1,5 @@
1
- 'use strict';// CPAC Notices
2
- jQuery(function($){$(document).ready(function(){$('.updated a.hide-install-addons-notice').click(function(e){e.preventDefault();var el=$(this).parents('.ac-message');var el_close=el.find('.hide-notice');el_close.hide();el_close.after('<div class="spinner right"></div>');el.find('.spinner').show();$.post(ajaxurl,{'action':'cpac_hide_install_addons_notice'},function(){el.find('.spinner').remove();el.slideUp()});return false})})});
 
 
 
1
+ <<<<<<< HEAD
2
+ 'use strict';jQuery(function($){$(document).on('click','.ac-notice [data-dismiss], .ac-notice button.notice-dismiss',function(){var $notice=$(this).parents('.ac-notice');var name=$notice.data('name');if(!name){return false}setTimeout(function(){'use strict';$notice.fadeOut().remove()},3000);$.post(ajaxurl,{action:'ac_notice_dismiss',name:name,_ajax_nonce:$notice.data('nonce')},function(){$notice.fadeOut().remove()})})});
3
+ =======
4
+ 'use strict';jQuery(function($){$(document).on('click','.ac-notice [data-dismiss], .ac-notice button.notice-dismiss',function(e){e.preventDefault();var $notice=$(this).parents('.ac-notice');var name=$notice.data('name');if(!name){return false}$notice.fadeOut(500,function(){$notice.remove()});$.post(ajaxurl,{action:'ac_notices',name:name,_ajax_nonce:$notice.data('nonce')})})});
5
+ >>>>>>> origin/1036-refactor-notices
assets/js/notice-dismiss.js ADDED
@@ -0,0 +1 @@
 
1
+ 'use strict';jQuery(function($){$(document).on('click','.ac-notice [data-dismiss]',function(e){e.preventDefault();var $notice=$(this).parents('.ac-notice');var dismissible=$notice.data('dismissible');$notice.fadeOut(500,function(){$notice.remove()});$.post(ajaxurl,dismissible)})});
assets/js/notice-dismissible.js ADDED
@@ -0,0 +1 @@
 
1
+ 'use strict';jQuery(function($){$('.ac-notice').on('click','.ac-notice__dismiss, [data-dismiss], .notice-dismiss',function(e){e.preventDefault();var dismissible_callback=$(this).closest('.ac-notice').data('dismissible-callback');if(dismissible_callback){$.post(ajaxurl,dismissible_callback)}})});
bootstrap.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ require_once __DIR__ . '/api.php';
8
+ require_once __DIR__ . '/classes/Autoloader.php';
9
+
10
+ AC\Autoloader::instance()->register_prefix( 'AC', __DIR__ . '/classes' );
11
+ AC\Autoloader\Underscore::instance()
12
+ ->add_alias( 'AC\ListScreen', 'AC_ListScreen' )
13
+ ->add_alias( 'AC\Settings\FormatValue', 'AC_Settings_FormatValueInterface' )
14
+ ->add_alias( 'AC\Column\Media\MediaParent', 'AC_Column_Media_Parent' )
15
+ ->add_alias( 'AC\Column\Post\PostParent', 'AC_Column_Post_Parent' );
16
+
17
+ /**
18
+ * For loading external resources, e.g. column settings.
19
+ * Can be called from plugins and themes.
20
+ */
21
+ do_action( 'ac/ready', AC() );
classes/API.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_API {
8
 
9
  /**
10
  * @var array [
@@ -17,9 +15,9 @@ class AC_API {
17
  private $columndata;
18
 
19
  /**
20
- * @param AC_ListScreen $list_screen
21
  */
22
- public function set_column_settings( AC_ListScreen $list_screen ) {
23
  $settings = $this->get_column_settings( $list_screen );
24
 
25
  if ( ! $settings ) {
@@ -30,11 +28,11 @@ class AC_API {
30
  }
31
 
32
  /**
33
- * @param AC_ListScreen $list_screen
34
  *
35
  * @return array|false
36
  */
37
- public function get_column_settings( AC_ListScreen $list_screen ) {
38
  $columndata = $this->get_columndata( $list_screen->get_key() );
39
 
40
  if ( ! $columndata ) {
@@ -51,7 +49,7 @@ class AC_API {
51
  }
52
 
53
  /**
54
- * @param AC_ListScreen $list_screen
55
  *
56
  * @return array
57
  */
@@ -175,4 +173,4 @@ class AC_API {
175
  }
176
  }
177
 
178
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ class API {
6
 
7
  /**
8
  * @var array [
15
  private $columndata;
16
 
17
  /**
18
+ * @param ListScreen $list_screen
19
  */
20
+ public function set_column_settings( ListScreen $list_screen ) {
21
  $settings = $this->get_column_settings( $list_screen );
22
 
23
  if ( ! $settings ) {
28
  }
29
 
30
  /**
31
+ * @param ListScreen $list_screen
32
  *
33
  * @return array|false
34
  */
35
+ public function get_column_settings( ListScreen $list_screen ) {
36
  $columndata = $this->get_columndata( $list_screen->get_key() );
37
 
38
  if ( ! $columndata ) {
49
  }
50
 
51
  /**
52
+ * @param ListScreen $list_screen
53
  *
54
  * @return array
55
  */
173
  }
174
  }
175
 
176
+ }
classes/Addon.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Addon {
8
 
9
  /**
10
  * Return the file from this plugin
@@ -23,15 +21,36 @@ abstract class AC_Addon {
23
  /**
24
  * @return string
25
  */
26
- public function get_plugin_dir() {
27
  return plugin_dir_path( $this->get_file() );
28
  }
29
 
30
  /**
31
  * @return string
32
  */
33
- public function get_plugin_url() {
34
  return plugin_dir_url( $this->get_file() );
35
  }
36
 
37
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ abstract class Addon {
6
 
7
  /**
8
  * Return the file from this plugin
21
  /**
22
  * @return string
23
  */
24
+ public function get_dir() {
25
  return plugin_dir_path( $this->get_file() );
26
  }
27
 
28
  /**
29
  * @return string
30
  */
31
+ public function get_url() {
32
  return plugin_dir_url( $this->get_file() );
33
  }
34
 
35
+ /**
36
+ * @return string
37
+ *
38
+ * @deprecated
39
+ */
40
+ public function get_plugin_url() {
41
+ _deprecated_function( __METHOD__, '3.2', 'AC\Addon::get_url()' );
42
+
43
+ return $this->get_url();
44
+ }
45
+
46
+ /**
47
+ * @return string
48
+ *
49
+ * @deprecated
50
+ */
51
+ public function get_plugin_dir() {
52
+ _deprecated_function( __METHOD__, '3.2', 'AC\Addon::get_dir()' );
53
+
54
+ return $this->get_dir();
55
+ }
56
+ }
classes/Admin.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Admin {
11
 
12
  const MENU_SLUG = 'codepress-admin-columns';
13
 
@@ -19,7 +20,7 @@ class AC_Admin {
19
  private $hook_suffix;
20
 
21
  /**
22
- * @var AC_Admin_Pages
23
  */
24
  private $pages;
25
 
@@ -27,13 +28,12 @@ class AC_Admin {
27
  * @since 2.0
28
  */
29
  public function __construct() {
30
- $this->pages = new AC_Admin_Pages();
31
-
32
  $this->pages
33
- ->register_page( new AC_Admin_Page_Columns() )
34
- ->register_page( new AC_Admin_Page_Settings() )
35
- ->register_page( new AC_Admin_Page_Addons() )
36
- ->register_page( new AC_Admin_Page_Help() );
37
  }
38
 
39
  /**
@@ -47,7 +47,7 @@ class AC_Admin {
47
  }
48
 
49
  /**
50
- * @return AC_Admin_Pages|false
51
  */
52
  public function get_pages() {
53
  return $this->pages;
@@ -61,9 +61,9 @@ class AC_Admin {
61
  return;
62
  }
63
 
64
- wp_enqueue_script( 'ac-admin-general', AC()->get_plugin_url() . "assets/js/admin-general.js", array( 'jquery', 'wp-pointer' ), AC()->get_version() );
65
  wp_enqueue_style( 'wp-pointer' );
66
- wp_enqueue_style( 'ac-admin', AC()->get_plugin_url() . "assets/css/admin-general.css", array(), AC()->get_version() );
67
 
68
  do_action( 'ac/admin_scripts', $this );
69
  }
@@ -74,7 +74,7 @@ class AC_Admin {
74
  * @return bool
75
  */
76
  public function get_general_option( $option ) {
77
- /* @var AC_Admin_Page_Settings $settings */
78
  $settings = $this->get_pages()->get_page( 'settings' );
79
 
80
  return $settings->get_option( $option );
@@ -83,7 +83,7 @@ class AC_Admin {
83
  /**
84
  * @param $slug
85
  *
86
- * @return AC_Admin_Page_Columns|AC_Admin_Page_Settings|AC_Admin_Page_Addons|false
87
  */
88
  public function get_page( $slug ) {
89
  return $this->get_pages()->get_page( $slug );
@@ -132,9 +132,9 @@ class AC_Admin {
132
  * Load help tabs
133
  */
134
  public function load_help_tabs() {
135
- new AC_Admin_Help_Introduction();
136
- new AC_Admin_Help_Basics();
137
- new AC_Admin_Help_CustomField();
138
  }
139
 
140
  /**
@@ -164,4 +164,4 @@ class AC_Admin {
164
  $this->pages->display();
165
  }
166
 
167
- }
1
  <?php
2
 
3
+ namespace AC;
4
+
5
+ use AC\Admin\Help;
6
+ use AC\Admin\Page;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Admin {
12
 
13
  const MENU_SLUG = 'codepress-admin-columns';
14
 
20
  private $hook_suffix;
21
 
22
  /**
23
+ * @var Admin\Pages
24
  */
25
  private $pages;
26
 
28
  * @since 2.0
29
  */
30
  public function __construct() {
31
+ $this->pages = new Admin\Pages();
 
32
  $this->pages
33
+ ->register_page( new Page\Columns() )
34
+ ->register_page( new Page\Settings() )
35
+ ->register_page( new Page\Addons() )
36
+ ->register_page( new Page\Help() );
37
  }
38
 
39
  /**
47
  }
48
 
49
  /**
50
+ * @return Admin\Pages|false
51
  */
52
  public function get_pages() {
53
  return $this->pages;
61
  return;
62
  }
63
 
64
+ wp_enqueue_script( 'ac-admin-general', AC()->get_url() . "assets/js/admin-general.js", array( 'jquery', 'wp-pointer' ), AC()->get_version() );
65
  wp_enqueue_style( 'wp-pointer' );
66
+ wp_enqueue_style( 'ac-admin', AC()->get_url() . "assets/css/admin-general.css", array(), AC()->get_version() );
67
 
68
  do_action( 'ac/admin_scripts', $this );
69
  }
74
  * @return bool
75
  */
76
  public function get_general_option( $option ) {
77
+ /* @var Page\Settings $settings */
78
  $settings = $this->get_pages()->get_page( 'settings' );
79
 
80
  return $settings->get_option( $option );
83
  /**
84
  * @param $slug
85
  *
86
+ * @return Admin\Page\Columns|Admin\Page\Settings|Admin\Page\Addons|false
87
  */
88
  public function get_page( $slug ) {
89
  return $this->get_pages()->get_page( $slug );
132
  * Load help tabs
133
  */
134
  public function load_help_tabs() {
135
+ new Help\Introduction();
136
+ new Help\Basics();
137
+ new Help\CustomField();
138
  }
139
 
140
  /**
164
  $this->pages->display();
165
  }
166
 
167
+ }
classes/Admin/Addon.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon {
 
 
8
 
9
  /**
10
  * @var string
@@ -31,14 +31,14 @@ class AC_Admin_Addon {
31
  /**
32
  * Plugin folder name
33
  *
34
- * @var AC_PluginInformation
35
  */
36
  private $addon;
37
 
38
  /**
39
  * Plugin basename. Example: plugin/plugin.php
40
  *
41
- * @var AC_PluginInformation[]
42
  */
43
  private $plugins;
44
 
@@ -57,7 +57,7 @@ class AC_Admin_Addon {
57
  private $plugin_url;
58
 
59
  public function __construct( $addon_dirname ) {
60
- $this->addon = new AC_PluginInformation( $addon_dirname );
61
  }
62
 
63
  /**
@@ -79,7 +79,7 @@ class AC_Admin_Addon {
79
  /**
80
  * Plugin folder name
81
  *
82
- * @return AC_PluginInformation[]
83
  */
84
  public function get_plugins() {
85
  return $this->plugins;
@@ -89,13 +89,13 @@ class AC_Admin_Addon {
89
  * @param string $slug Plugin folder name. Example: 'plugin/init.php' then directory name is 'plugin'.
90
  */
91
  protected function add_plugin( $plugin ) {
92
- $this->plugins[] = new AC_PluginInformation( $plugin );
93
 
94
  return $this;
95
  }
96
 
97
  /**
98
- * @return AC_PluginInformation
99
  */
100
  public function get_plugin() {
101
  return $this->plugins[0];
@@ -241,7 +241,7 @@ class AC_Admin_Addon {
241
  */
242
  public function display_icon() {
243
  if ( $this->get_icon() ) : ?>
244
- <img class="icon <?php echo esc_attr( $this->get_slug() ); ?>" src="<?php echo esc_attr( $this->get_icon() ); ?>" alt="<?php echo esc_attr( $this->get_title() ); ?>">
245
  <?php endif;
246
  }
247
 
@@ -256,10 +256,10 @@ class AC_Admin_Addon {
256
  }
257
 
258
  /**
259
- * @return AC_Column_Placeholder
260
  */
261
  public function get_placeholder_column() {
262
- $column = new AC_Column_Placeholder();
263
  $column->set_addon( $this );
264
 
265
  return $column;
@@ -338,12 +338,10 @@ class AC_Admin_Addon {
338
  }
339
 
340
  /**
341
- * Show notice on admin page only
342
- *
343
- * @return bool
344
  */
345
- public function show_missing_notice_on_current_page() {
346
- return AC()->admin()->is_admin_screen() || AC()->table_screen()->get_current_list_screen();
347
  }
348
 
349
- }
1
  <?php
2
 
3
+ namespace AC\Admin;
 
 
4
 
5
+ use AC;
6
+
7
+ class Addon {
8
 
9
  /**
10
  * @var string
31
  /**
32
  * Plugin folder name
33
  *
34
+ * @var AC\PluginInformation
35
  */
36
  private $addon;
37
 
38
  /**
39
  * Plugin basename. Example: plugin/plugin.php
40
  *
41
+ * @var AC\PluginInformation[]
42
  */
43
  private $plugins;
44
 
57
  private $plugin_url;
58
 
59
  public function __construct( $addon_dirname ) {
60
+ $this->addon = new AC\PluginInformation( $addon_dirname );
61
  }
62
 
63
  /**
79
  /**
80
  * Plugin folder name
81
  *
82
+ * @return AC\PluginInformation[]
83
  */
84
  public function get_plugins() {
85
  return $this->plugins;
89
  * @param string $slug Plugin folder name. Example: 'plugin/init.php' then directory name is 'plugin'.
90
  */
91
  protected function add_plugin( $plugin ) {
92
+ $this->plugins[] = new AC\PluginInformation( $plugin );
93
 
94
  return $this;
95
  }
96
 
97
  /**
98
+ * @return AC\PluginInformation
99
  */
100
  public function get_plugin() {
101
  return $this->plugins[0];
241
  */
242
  public function display_icon() {
243
  if ( $this->get_icon() ) : ?>
244
+ <img class="icon <?php echo esc_attr( $this->get_slug() ); ?>" src="<?php echo esc_attr( $this->get_icon() ); ?>" alt="<?php echo esc_attr( $this->get_title() ); ?>">
245
  <?php endif;
246
  }
247
 
256
  }
257
 
258
  /**
259
+ * @return AC\Column\Placeholder
260
  */
261
  public function get_placeholder_column() {
262
+ $column = new AC\Column\Placeholder();
263
  $column->set_addon( $this );
264
 
265
  return $column;
338
  }
339
 
340
  /**
341
+ * @return bool Should a notice be always shown
 
 
342
  */
343
+ public function is_notice_screen() {
344
+ return true;
345
  }
346
 
347
+ }
classes/Admin/Addon/ACF.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_ACF extends AC_Admin_Addon {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-acf' );
11
 
12
  $this
13
  ->set_title( __( 'Advanced Custom Fields', 'codepress-admin-columns' ) )
14
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/acf.png' )
15
  ->set_icon( $this->get_logo() )
16
  ->set_link( ac_get_site_utm_url( 'advanced-custom-fields-columns', 'addon', 'acf' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
@@ -21,6 +21,7 @@ class AC_Admin_Addon_ACF extends AC_Admin_Addon {
21
 
22
  public function display_promo() {
23
  echo $this->get_title() . ' ';
 
24
  $this->display_icon();
25
  }
26
 
@@ -38,12 +39,10 @@ class AC_Admin_Addon_ACF extends AC_Admin_Addon {
38
  return class_exists( 'acf', false );
39
  }
40
 
41
- public function show_missing_notice_on_current_page() {
42
  global $pagenow;
43
 
44
- $is_acf_page = 'edit.php' === $pagenow && 'acf-field-group' === filter_input( INPUT_GET, 'post_type' );
45
-
46
- return parent::show_missing_notice_on_current_page() || $is_acf_page;
47
  }
48
 
49
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+
7
+ class ACF extends Addon {
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-acf' );
11
 
12
  $this
13
  ->set_title( __( 'Advanced Custom Fields', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_url() . 'assets/images/addons/acf.png' )
15
  ->set_icon( $this->get_logo() )
16
  ->set_link( ac_get_site_utm_url( 'advanced-custom-fields-columns', 'addon', 'acf' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
21
 
22
  public function display_promo() {
23
  echo $this->get_title() . ' ';
24
+
25
  $this->display_icon();
26
  }
27
 
39
  return class_exists( 'acf', false );
40
  }
41
 
42
+ public function is_notice_screen() {
43
  global $pagenow;
44
 
45
+ return 'edit.php' === $pagenow && 'acf-field-group' === filter_input( INPUT_GET, 'post_type' );
 
 
46
  }
47
 
48
+ }
classes/Admin/Addon/BuddyPress.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_BuddyPress extends AC_Admin_Addon {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-buddypress' );
11
 
12
  $this
13
  ->set_title( __( 'BuddyPress', 'codepress-admin-columns' ) )
14
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/buddypress.png' )
15
- ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/buddypress-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'buddypress', 'addon', 'buddypress' ) )
17
  ->set_description( __( 'Display any of your Profile Fields for BuddyPress on your users overview.', 'codepress-admin-columns' ) )
18
  ->add_plugin( 'buddypress' );
@@ -27,4 +27,4 @@ class AC_Admin_Addon_BuddyPress extends AC_Admin_Addon {
27
  return class_exists( 'BuddyPress', false );
28
  }
29
 
30
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+
7
+ class BuddyPress extends Addon {
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-buddypress' );
11
 
12
  $this
13
  ->set_title( __( 'BuddyPress', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_url() . 'assets/images/addons/buddypress.png' )
15
+ ->set_icon( AC()->get_url() . 'assets/images/addons/buddypress-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'buddypress', 'addon', 'buddypress' ) )
17
  ->set_description( __( 'Display any of your Profile Fields for BuddyPress on your users overview.', 'codepress-admin-columns' ) )
18
  ->add_plugin( 'buddypress' );
27
  return class_exists( 'BuddyPress', false );
28
  }
29
 
30
+ }
classes/Admin/Addon/EventsCalendar.php CHANGED
@@ -1,20 +1,20 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_EventsCalendar extends AC_Admin_Addon {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-events-calendar' );
11
 
12
  $this
13
  ->set_title( __( 'The Events Calendar', 'codepress-admin-columns' ) )
14
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/events-calendar.png' )
15
- ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/events-calendar-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'events-calendar', 'addon', 'events-calendar' ) )
17
- ->set_description( "Manage columns for your event, organizer or venue overviews." )
18
  ->add_plugin( 'events-calendar' );
19
  }
20
 
@@ -23,16 +23,14 @@ class AC_Admin_Addon_EventsCalendar extends AC_Admin_Addon {
23
  $this->display_icon();
24
  }
25
 
26
- public function show_missing_notice_on_current_page() {
27
  global $pagenow;
28
 
29
- $is_page = 'edit.php' === $pagenow && in_array( filter_input( INPUT_GET, 'post_type' ), array( 'tribe_events', 'tribe_venue', 'tribe_organizer' ) );
30
-
31
- return parent::show_missing_notice_on_current_page() || $is_page;
32
  }
33
 
34
  public function is_plugin_active() {
35
  return class_exists( 'Tribe__Events__Main' );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+
7
+ class EventsCalendar extends Addon {
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-events-calendar' );
11
 
12
  $this
13
  ->set_title( __( 'The Events Calendar', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_url() . 'assets/images/addons/events-calendar.png' )
15
+ ->set_icon( AC()->get_url() . 'assets/images/addons/events-calendar-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'events-calendar', 'addon', 'events-calendar' ) )
17
+ ->set_description( __( 'Manage columns for your event, organizer or venue overviews.', 'codepress-admin-columns' ) )
18
  ->add_plugin( 'events-calendar' );
19
  }
20
 
23
  $this->display_icon();
24
  }
25
 
26
+ public function is_notice_screen() {
27
  global $pagenow;
28
 
29
+ return 'edit.php' === $pagenow && in_array( filter_input( INPUT_GET, 'post_type' ), array( 'tribe_events', 'tribe_venue', 'tribe_organizer' ) );
 
 
30
  }
31
 
32
  public function is_plugin_active() {
33
  return class_exists( 'Tribe__Events__Main' );
34
  }
35
 
36
+ }
classes/Admin/Addon/NinjaForms.php CHANGED
@@ -1,20 +1,20 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_NinjaForms extends AC_Admin_Addon {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-ninjaforms' );
11
 
12
  $this
13
  ->set_title( __( 'Ninja Forms', 'codepress-admin-columns' ) )
14
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/ninja-forms.png' )
15
- ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/ninja-forms-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'ninja-forms', 'addon', 'ninjaforms' ) )
17
- ->set_description( "Add Ninja Forms columns that can be sorted, filtered and directly edited!" )
18
  ->add_plugin( 'ninjaforms' );
19
  }
20
 
@@ -23,16 +23,14 @@ class AC_Admin_Addon_NinjaForms extends AC_Admin_Addon {
23
  $this->display_icon();
24
  }
25
 
26
- public function show_missing_notice_on_current_page() {
27
  global $pagenow;
28
 
29
- $is_page = 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'bp-activity', 'bp-groups' ) );
30
-
31
- return parent::show_missing_notice_on_current_page() || $is_page;
32
  }
33
 
34
  public function is_plugin_active() {
35
  return class_exists( 'Ninja_Forms' );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+
7
+ class NinjaForms extends Addon {
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-ninjaforms' );
11
 
12
  $this
13
  ->set_title( __( 'Ninja Forms', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_url() . 'assets/images/addons/ninja-forms.png' )
15
+ ->set_icon( AC()->get_url() . 'assets/images/addons/ninja-forms-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'ninja-forms', 'addon', 'ninjaforms' ) )
17
+ ->set_description( __( 'Add Ninja Forms columns that can be sorted, filtered and directly edited!', 'codepress-admin-columns' ) )
18
  ->add_plugin( 'ninjaforms' );
19
  }
20
 
23
  $this->display_icon();
24
  }
25
 
26
+ public function is_notice_screen() {
27
  global $pagenow;
28
 
29
+ return 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'bp-activity', 'bp-groups' ) );
 
 
30
  }
31
 
32
  public function is_plugin_active() {
33
  return class_exists( 'Ninja_Forms' );
34
  }
35
 
36
+ }
classes/Admin/Addon/Pods.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_Pods extends AC_Admin_Addon {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-pods' );
11
 
12
  $this
13
  ->set_title( __( 'Pods', 'codepress-admin-columns' ) )
14
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/pods.png' )
15
- ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/pods-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'pods', 'addon', 'pods' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'pods' );
@@ -23,16 +23,14 @@ class AC_Admin_Addon_Pods extends AC_Admin_Addon {
23
  $this->display_icon();
24
  }
25
 
26
- public function show_missing_notice_on_current_page() {
27
  global $pagenow;
28
 
29
- $is_page = 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'pods-add-new', 'pods-settings' ) );
30
-
31
- return parent::show_missing_notice_on_current_page() || $is_page;
32
  }
33
 
34
  public function is_plugin_active() {
35
  return function_exists( 'pods' );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+
7
+ class Pods extends Addon {
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-pods' );
11
 
12
  $this
13
  ->set_title( __( 'Pods', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_url() . 'assets/images/addons/pods.png' )
15
+ ->set_icon( AC()->get_url() . 'assets/images/addons/pods-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'pods', 'addon', 'pods' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'pods' );
23
  $this->display_icon();
24
  }
25
 
26
+ public function is_notice_screen() {
27
  global $pagenow;
28
 
29
+ return 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'pods-add-new', 'pods-settings' ) );
 
 
30
  }
31
 
32
  public function is_plugin_active() {
33
  return function_exists( 'pods' );
34
  }
35
 
36
+ }
classes/Admin/Addon/Types.php CHANGED
@@ -1,33 +1,31 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_Types extends AC_Admin_Addon {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-types' );
11
 
12
  $this
13
  ->set_title( __( 'Toolset Types', 'codepress-admin-columns' ) )
14
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/toolset-types.png' )
15
- ->set_icon( AC()->get_plugin_url() . 'assets/images/addons/toolset-types-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'toolset-types', 'addon', 'types' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'types' );
19
  }
20
 
21
- public function show_missing_notice_on_current_page() {
22
  global $pagenow;
23
 
24
- $is_page = 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'toolset-dashboard', 'wpcf-cpt', 'wpcf-cf', 'toolset-settings' ) );
25
-
26
- return parent::show_missing_notice_on_current_page() || $is_page;
27
  }
28
 
29
  public function is_plugin_active() {
30
  return class_exists( 'Types_Main', false );
31
  }
32
 
33
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+
7
+ class Types extends Addon {
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-types' );
11
 
12
  $this
13
  ->set_title( __( 'Toolset Types', 'codepress-admin-columns' ) )
14
+ ->set_logo( AC()->get_url() . 'assets/images/addons/toolset-types.png' )
15
+ ->set_icon( AC()->get_url() . 'assets/images/addons/toolset-types-icon.png' )
16
  ->set_link( ac_get_site_utm_url( 'toolset-types', 'addon', 'types' ) )
17
  ->set_description( $this->get_fields_description( $this->get_title() ) )
18
  ->add_plugin( 'types' );
19
  }
20
 
21
+ public function is_notice_screen() {
22
  global $pagenow;
23
 
24
+ return 'admin.php' === $pagenow && in_array( filter_input( INPUT_GET, 'page' ), array( 'toolset-dashboard', 'wpcf-cpt', 'wpcf-cf', 'toolset-settings' ) );
 
 
25
  }
26
 
27
  public function is_plugin_active() {
28
  return class_exists( 'Types_Main', false );
29
  }
30
 
31
+ }
classes/Admin/Addon/WooCommerce.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addon_WooCommerce extends AC_Admin_Addon {
 
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'ac-addon-woocommerce' );
@@ -12,14 +13,14 @@ class AC_Admin_Addon_WooCommerce extends AC_Admin_Addon {
12
  $this
13
  ->set_title( __( 'WooCommerce', 'codepress-admin-columns' ) )
14
  ->set_description( __( 'Enhance the products, orders and coupons overviews with new columns and inline editing.', 'codepress-admin-columns' ) )
15
- ->set_logo( AC()->get_plugin_url() . 'assets/images/addons/woocommerce.png' )
16
  ->set_icon( $this->get_logo() )
17
  ->set_link( ac_get_site_utm_url( 'woocommerce-columns', 'addon', 'woocommerce' ) )
18
  ->add_plugin( 'woocommerce' );
19
  }
20
 
21
  public function get_placeholder_column() {
22
- $column = new AC_Column_WooCommercePlaceholder();
23
  $column->set_addon( $this );
24
 
25
  return $column;
@@ -29,4 +30,4 @@ class AC_Admin_Addon_WooCommerce extends AC_Admin_Addon {
29
  return class_exists( 'WooCommerce', false );
30
  }
31
 
32
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Addon;
 
 
4
 
5
+ use AC\Admin\Addon;
6
+ use AC\Column;
7
+
8
+ class WooCommerce extends Addon {
9
 
10
  public function __construct() {
11
  parent::__construct( 'ac-addon-woocommerce' );
13
  $this
14
  ->set_title( __( 'WooCommerce', 'codepress-admin-columns' ) )
15
  ->set_description( __( 'Enhance the products, orders and coupons overviews with new columns and inline editing.', 'codepress-admin-columns' ) )
16
+ ->set_logo( AC()->get_url() . 'assets/images/addons/woocommerce.png' )
17
  ->set_icon( $this->get_logo() )
18
  ->set_link( ac_get_site_utm_url( 'woocommerce-columns', 'addon', 'woocommerce' ) )
19
  ->add_plugin( 'woocommerce' );
20
  }
21
 
22
  public function get_placeholder_column() {
23
+ $column = new Column\WooCommercePlaceholder();
24
  $column->set_addon( $this );
25
 
26
  return $column;
30
  return class_exists( 'WooCommerce', false );
31
  }
32
 
33
+ }
classes/Admin/Addons.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Addons {
 
 
8
 
9
  /**
10
- * @var AC_Admin_Addon[]
11
  */
12
  private $addons;
13
 
14
  /**
15
- * @return AC_Admin_Addon[]
16
  */
17
  public function get_addons() {
18
  if ( null === $this->addons ) {
@@ -23,7 +23,7 @@ class AC_Admin_Addons {
23
  }
24
 
25
  /**
26
- * @return AC_Admin_Addon[]
27
  */
28
  public function get_active_promo() {
29
  $addons = $this->get_addons();
@@ -40,7 +40,7 @@ class AC_Admin_Addons {
40
  /**
41
  * All addons where 3d party is installed but integration is not installed
42
  *
43
- * @return AC_Admin_Addon[]
44
  */
45
  public function get_missing_addons() {
46
  $missing = array();
@@ -55,7 +55,7 @@ class AC_Admin_Addons {
55
  }
56
 
57
  /**
58
- * @return AC_Admin_Addon[]
59
  */
60
  public function get_active_addons() {
61
  $addons = array();
@@ -76,7 +76,7 @@ class AC_Admin_Addons {
76
  *
77
  * @param string $slug Addon slug
78
  *
79
- * @return AC_Admin_Addon|false Returns addon details if the add-on exists, false otherwise
80
  */
81
  public function get_addon( $slug ) {
82
  foreach ( $this->get_addons() as $addon ) {
@@ -88,22 +88,16 @@ class AC_Admin_Addons {
88
  return false;
89
  }
90
 
91
- /**
92
- * @param AC_Admin_Addon $addon
93
- */
94
- public function register_addon( AC_Admin_Addon $addon ) {
95
- $this->addons[] = $addon;
96
- }
97
-
98
  /**
99
  * Register addon
100
  */
101
  private function set_addons() {
102
- $classes = AC()->autoloader()->get_class_names_from_dir( AC()->get_plugin_dir() . 'classes/Admin/Addon', AC()->get_prefix() );
 
103
 
104
  foreach ( $classes as $class ) {
105
- $this->register_addon( new $class );
106
  }
107
  }
108
 
109
- }
1
  <?php
2
 
3
+ namespace AC\Admin;
 
 
4
 
5
+ use AC;
6
+
7
+ class Addons {
8
 
9
  /**
10
+ * @var Addon[]
11
  */
12
  private $addons;
13
 
14
  /**
15
+ * @return Addon[]
16
  */
17
  public function get_addons() {
18
  if ( null === $this->addons ) {
23
  }
24
 
25
  /**
26
+ * @return Addon[]
27
  */
28
  public function get_active_promo() {
29
  $addons = $this->get_addons();
40
  /**
41
  * All addons where 3d party is installed but integration is not installed
42
  *
43
+ * @return Addon[]
44
  */
45
  public function get_missing_addons() {
46
  $missing = array();
55
  }
56
 
57
  /**
58
+ * @return Addon[]
59
  */
60
  public function get_active_addons() {
61
  $addons = array();
76
  *
77
  * @param string $slug Addon slug
78
  *
79
+ * @return Addon|false Returns addon details if the add-on exists, false otherwise
80
  */
81
  public function get_addon( $slug ) {
82
  foreach ( $this->get_addons() as $addon ) {
88
  return false;
89
  }
90
 
 
 
 
 
 
 
 
91
  /**
92
  * Register addon
93
  */
94
  private function set_addons() {
95
+ $this->addons = array();
96
+ $classes = AC\Autoloader::instance()->get_class_names_from_dir( __NAMESPACE__ . '\Addon' );
97
 
98
  foreach ( $classes as $class ) {
99
+ $this->addons[] = new $class;
100
  }
101
  }
102
 
103
+ }
classes/Admin/Help.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Admin_Help {
8
 
9
  abstract public function get_title();
10
 
@@ -40,4 +38,4 @@ abstract class AC_Admin_Help {
40
  ) );
41
  }
42
 
43
- }
1
  <?php
2
 
3
+ namespace AC\Admin;
 
 
4
 
5
+ abstract class Help {
6
 
7
  abstract public function get_title();
8
 
38
  ) );
39
  }
40
 
41
+ }
classes/Admin/Help/Basics.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Help_Basics extends AC_Admin_Help {
 
 
8
 
9
  public function get_title() {
10
  return __( "Basics", 'codepress-admin-columns' );
@@ -34,4 +34,4 @@ class AC_Admin_Help_Basics extends AC_Admin_Help {
34
  return ob_get_clean();
35
  }
36
 
37
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Help;
 
 
4
 
5
+ use AC\Admin\Help;
6
+
7
+ class Basics extends Help {
8
 
9
  public function get_title() {
10
  return __( "Basics", 'codepress-admin-columns' );
34
  return ob_get_clean();
35
  }
36
 
37
+ }
classes/Admin/Help/CustomField.php CHANGED
@@ -1,76 +1,84 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Help_CustomField extends AC_Admin_Help {
 
 
8
 
9
  public function get_title() {
10
- return __( "Custom Field", 'codepress-admin-columns' );
11
  }
12
 
13
  public function get_content() {
14
  ob_start();
15
  ?>
16
 
17
- <p>
18
- <?php _e( "The custom field column uses the custom fields from posts and users. There are 10 types which you can set.", 'codepress-admin-columns' ); ?>
19
- </p>
20
- <ul>
21
- <li>
22
- <strong><?php _e( "Default", 'codepress-admin-columns' ); ?></strong><br/>
23
- <?php _e( "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma.", 'codepress-admin-columns' ); ?>
24
- </li>
25
- <li>
26
- <strong><?php _e( "Checkmark", 'codepress-admin-columns' ); ?></strong><br/>
27
- <?php _e( "Value: should be a 1 (one) or 0 (zero).", 'codepress-admin-columns' ); ?>
28
- </li>
29
- <li>
30
- <strong><?php _e( "Color", 'codepress-admin-columns' ); ?></strong><br/>
31
- <?php _e( "Value: hex value color, such as #808080.", 'codepress-admin-columns' ); ?>
32
- </li>
33
- <li>
34
- <strong><?php _e( "Counter", 'codepress-admin-columns' ); ?></strong><br/>
35
- <?php _e( "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' ); ?>
36
- </li>
37
- <li>
38
- <strong><?php _e( "Date", 'codepress-admin-columns' ); ?></strong><br/>
39
- <?php printf( __( "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', admin_url( 'options-general.php' ) ); ?>
40
- </li>
41
- <li>
42
- <strong><?php _e( "Excerpt", 'codepress-admin-columns' ); ?></strong><br/>
43
- <?php _e( "Value: This will show the first 20 words of the Post content.", 'codepress-admin-columns' ); ?>
44
- </li>
45
- <li>
46
- <strong><?php _e( "Image", 'codepress-admin-columns' ); ?></strong><br/>
47
- <?php _e( "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma ).", 'codepress-admin-columns' ); ?>
48
- </li>
49
- <li>
50
- <strong><?php _e( "Media Library", 'codepress-admin-columns' ); ?></strong><br/>
51
- <?php _e( "Value: should contain Attachment IDs ( seperated by a ',' comma ).", 'codepress-admin-columns' ); ?>
52
- </li>
53
- <li>
54
- <strong><?php _e( "Multiple Values", 'codepress-admin-columns' ); ?></strong><br/>
55
- <?php _e( "Value: should be an array. This will flatten any ( multi dimensional ) array.", 'codepress-admin-columns' ); ?>
56
- </li>
57
- <li>
58
- <strong><?php _e( "Numeric", 'codepress-admin-columns' ); ?></strong><br/>
59
- <?php _e( "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' ); ?>
60
- </li>
61
- <li>
62
- <strong><?php _e( "Post Titles", 'codepress-admin-columns' ); ?></strong><br/>
63
- <?php _e( "Value: can be one or more Post ID's (seperated by ',').", 'codepress-admin-columns' ); ?>
64
- </li>
65
- <li>
66
- <strong><?php _e( "Usernames", 'codepress-admin-columns' ); ?></strong><br/>
67
- <?php _e( "Value: can be one or more User ID's (seperated by ',').", 'codepress-admin-columns' ); ?>
68
- </li>
69
- </ul>
 
 
 
 
 
 
 
 
70
 
71
  <?php
72
 
73
  return ob_get_clean();
74
  }
75
 
76
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Help;
 
 
4
 
5
+ use AC\Admin\Help;
6
+
7
+ class CustomField extends Help {
8
 
9
  public function get_title() {
10
+ return __( "Custom Fields", 'codepress-admin-columns' );
11
  }
12
 
13
  public function get_content() {
14
  ob_start();
15
  ?>
16
 
17
+ <p>
18
+ <?php _e( "The custom field column uses the custom fields from posts and users. There are 14 types which you can set.", 'codepress-admin-columns' ); ?>
19
+ </p>
20
+ <ul>
21
+ <li>
22
+ <strong><?php _e( "Default", 'codepress-admin-columns' ); ?></strong><br/>
23
+ <?php _e( "Value: Can be either a string or array. Arrays will be flattened and values are seperated by commas.", 'codepress-admin-columns' ); ?>
24
+ </li>
25
+ <li>
26
+ <strong><?php _e( "Color", 'codepress-admin-columns' ); ?></strong><br/>
27
+ <?php _e( "Value: Hex value color, such as #808080.", 'codepress-admin-columns' ); ?>
28
+ </li>
29
+ <li>
30
+ <strong><?php _e( "Counter", 'codepress-admin-columns' ); ?></strong><br/>
31
+ <?php _e( "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' ); ?>
32
+ </li>
33
+ <li>
34
+ <strong><?php _e( "Date", 'codepress-admin-columns' ); ?></strong><br/>
35
+ <?php printf( __( "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', admin_url( 'options-general.php' ) ); ?>
36
+ </li>
37
+ <li>
38
+ <strong><?php _e( "Excerpt", 'codepress-admin-columns' ); ?></strong><br/>
39
+ <?php _e( "Value: This will show the first 20 words of the Post content.", 'codepress-admin-columns' ); ?>
40
+ </li>
41
+ <li>
42
+ <strong><?php _e( "Has Content", 'codepress-admin-columns' ); ?></strong><br/>
43
+ <?php _e( "Value: This will show if the field has content or not.", 'codepress-admin-columns' ); ?>
44
+ </li>
45
+ <li>
46
+ <strong><?php _e( "Image", 'codepress-admin-columns' ); ?></strong><br/>
47
+ <?php _e( "Value: Should contain one or more Image URLs or Attachment IDs, separated by commas.", 'codepress-admin-columns' ); ?>
48
+ </li>
49
+ <li>
50
+ <strong><?php _e( "Media", 'codepress-admin-columns' ); ?></strong><br/>
51
+ <?php _e( "Value: Should contain one or more Attachment IDs, separated by commas.", 'codepress-admin-columns' ); ?>
52
+ </li>
53
+ <li>
54
+ <strong><?php _e( "Multiple Values", 'codepress-admin-columns' ); ?></strong><br/>
55
+ <?php _e( "Value: Should be an array. This will flatten any ( multi dimensional ) array.", 'codepress-admin-columns' ); ?>
56
+ </li>
57
+ <li>
58
+ <strong><?php _e( "Number", 'codepress-admin-columns' ); ?></strong><br/>
59
+ <?php _e( "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' ); ?>
60
+ </li>
61
+ <li>
62
+ <strong><?php _e( "Post", 'codepress-admin-columns' ); ?></strong><br/>
63
+ <?php _e( "Value: Should contain one or more Post IDs, separated by commas.", 'codepress-admin-columns' ); ?>
64
+ </li>
65
+ <li>
66
+ <strong><?php _e( "True / False", 'codepress-admin-columns' ); ?></strong><br/>
67
+ <?php _e( "Value: Should be a 1 (one) or 0 (zero).", 'codepress-admin-columns' ); ?>
68
+ </li>
69
+ <li>
70
+ <strong><?php _e( "URL", 'codepress-admin-columns' ); ?></strong><br/>
71
+ <?php _e( "Value: Should contain a URL.", 'codepress-admin-columns' ); ?>
72
+ </li>
73
+ <li>
74
+ <strong><?php _e( "User", 'codepress-admin-columns' ); ?></strong><br/>
75
+ <?php _e( "Value: Should contain one or more User IDs, separated by commas.", 'codepress-admin-columns' ); ?>
76
+ </li>
77
+ </ul>
78
 
79
  <?php
80
 
81
  return ob_get_clean();
82
  }
83
 
84
+ }
classes/Admin/Help/Introduction.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Help_Introduction extends AC_Admin_Help {
 
 
8
 
9
  public function get_title() {
10
  return __( "Overview", 'codepress-admin-columns' );
@@ -23,4 +23,4 @@ class AC_Admin_Help_Introduction extends AC_Admin_Help {
23
  return ob_get_clean();
24
  }
25
 
26
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Help;
 
 
4
 
5
+ use AC\Admin\Help;
6
+
7
+ class Introduction extends Help {
8
 
9
  public function get_title() {
10
  return __( "Overview", 'codepress-admin-columns' );
23
  return ob_get_clean();
24
  }
25
 
26
+ }
classes/Admin/Page.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Admin_Page {
8
 
9
  /**
10
  * Should this page be displayed when no page is selected
@@ -124,6 +122,8 @@ abstract class AC_Admin_Page {
124
 
125
  /**
126
  * Nonce Field
 
 
127
  */
128
  public function nonce_field( $action ) {
129
  wp_nonce_field( $action, '_ac_nonce', false );
@@ -133,4 +133,4 @@ abstract class AC_Admin_Page {
133
  // Register Hooks
134
  }
135
 
136
- }
1
  <?php
2
 
3
+ namespace AC\Admin;
 
 
4
 
5
+ abstract class Page {
6
 
7
  /**
8
  * Should this page be displayed when no page is selected
122
 
123
  /**
124
  * Nonce Field
125
+ *
126
+ * @param string $action
127
  */
128
  public function nonce_field( $action ) {
129
  wp_nonce_field( $action, '_ac_nonce', false );
133
  // Register Hooks
134
  }
135
 
136
+ }
classes/Admin/Page/Addons.php CHANGED
@@ -1,10 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Page_Addons extends AC_Admin_Page {
 
 
 
 
 
 
8
 
9
  public function __construct() {
10
  $this
@@ -17,24 +21,18 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
17
  */
18
  public function register() {
19
  add_action( 'admin_init', array( $this, 'handle_request' ) );
20
- add_filter( 'wp_redirect', array( $this, 'redirect_after_status_change' ) );
21
  add_action( 'admin_init', array( $this, 'handle_install_request' ) );
22
- add_action( 'admin_init', array( $this, 'show_missing_plugin_notice' ) );
23
- add_action( 'admin_notices', array( $this, 'missing_addon_notices' ) );
24
- add_action( 'wp_ajax_cpac_hide_install_addons_notice', array( $this, 'ajax_hide_install_addons_notice' ) );
25
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
 
26
  }
27
 
28
- public function show_missing_plugin_notice() {
29
  if ( ! $this->is_current_screen() ) {
30
  return;
31
  }
32
 
33
- if ( ! current_user_can( 'manage_admin_columns' ) ) {
34
- return;
35
- }
36
-
37
- if ( ! current_user_can( 'install_plugins' ) ) {
38
  return;
39
  }
40
 
@@ -45,28 +43,23 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
45
  }
46
 
47
  foreach ( $addons as $addon ) {
 
 
 
 
48
 
49
- // is_plugin_installed does not work when plugins are included in a theme, that's why we check is_plugin_active
50
- if ( ! $addon->is_plugin_installed() && ! $addon->is_plugin_active() ) {
51
- AC()->notice( sprintf( __( '%s plugin needs to be installed for the add-on to work.', 'codepress-admin-columns' ), ac_helper()->html->link( $addon->get_plugin_url(), $addon->get_title(), array( 'target' => '_blank' ) ) ), 'notice-warning' );
52
- } else if ( ! $addon->is_plugin_active() ) {
53
- $message = sprintf( __( '%s plugin is installed, but not active.', 'codepress-admin-columns' ), '<strong>' . $addon->get_plugin()->get_plugin_var( 'Name' ) . '</strong>' );
54
-
55
- if ( current_user_can( 'activate_plugins' ) ) {
56
- $message .= ' ' . sprintf( __( 'Click %s to activate the plugin.', 'codepress-admin-columns' ), ac_helper()->html->link( $addon->get_plugin_activation_url(), __( 'here', 'codepress-admin=n-columns' ) ) );
57
- }
58
 
59
- AC()->notice( $message, 'notice-warning' );
 
60
  }
61
- }
62
 
63
- $titles = array();
64
- foreach ( $addons as $addon ) {
65
- $titles[] = '<strong>' . esc_html( $addon->get_title() ) . '</strong>';
66
- }
67
 
68
- if ( ! ac_is_pro_active() ) {
69
- AC()->notice( sprintf( _n( '%s add-on requires %s.', '%s add-ons requires %s.', count( $titles ), 'codepress-admin-columns' ), ac_helper()->string->enumeration_list( $titles, 'and' ), ac_helper()->html->link( ac_get_site_utm_url( false, 'addon' ), __( 'Admin Columns Pro', 'codepress-admin-columns' ), array( 'target' => '_blank' ) ) ), 'notice-warning' );
 
70
  }
71
  }
72
 
@@ -80,126 +73,79 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
80
  return;
81
  }
82
 
 
83
  $basename = filter_input( INPUT_GET, 'plugin' );
84
-
85
- if ( ! $basename ) {
86
- return;
87
- }
88
-
89
  $status = filter_input( INPUT_GET, 'status' );
90
 
91
- if ( ! $status ) {
92
  return;
93
  }
94
 
95
- if ( ! wp_verify_nonce( filter_input( INPUT_GET, '_ac_nonce' ), 'ac-plugin-status-change' ) ) {
96
- return;
97
- }
98
-
99
- $plugin = new AC_PluginInformation( dirname( $basename ) );
100
-
101
- $activate_string = __( '%s plugin successfully activated.', 'codepress-admin-columns' );
102
- $deactivate_string = __( '%s plugin successfully deactivated.', 'codepress-admin-columns' );
103
-
104
- // Is plugin an addon?
105
- foreach ( AC()->addons()->get_addons() as $addon ) {
106
- if ( $addon->get_basename() === $plugin->get_basename() ) {
107
- $activate_string = __( '%s successfully activated.', 'codepress-admin-columns' );
108
- $deactivate_string = __( '%s successfully deactivated.', 'codepress-admin-columns' );
109
- }
110
- }
111
 
112
  switch ( $status ) {
113
  case 'activate' :
114
- if ( $plugin->is_active() ) {
115
- AC()->notice( sprintf( $activate_string, '<strong>' . $plugin->get_name() . '</strong>' ) );
116
- } else {
117
- AC()->notice( sprintf( __( '%s could not be activated.', 'codepress-admin-columns' ), '<strong>' . $plugin->get_name() . '</strong>' ) . ' ' . sprintf( __( 'Please visit the %s page.', 'codepress-admin-columns' ), ac_helper()->html->link( admin_url( 'plugins.php' ), strtolower( __( 'Plugins' ) ) ) ), 'error' );
118
- }
119
  break;
120
  case 'deactivate' :
121
- AC()->notice( sprintf( $deactivate_string, '<strong>' . $plugin->get_name() . '</strong>' ) );
 
122
  break;
123
  }
124
  }
125
 
126
- /**
127
- * Admin scripts
128
- */
129
- public function admin_scripts() {
130
- if ( $this->is_current_screen() ) {
131
- wp_enqueue_style( 'ac-admin-page-addons', AC()->get_plugin_url() . 'assets/css/admin-page-addons.css', array(), AC()->get_version() );
132
- }
133
- }
134
 
135
- /**
136
- * Possibly adds an admin notice when a third party plugin supported by an addon is installed, but the addon isn't
137
- *
138
- * @since 2.4.9
139
- */
140
- public function missing_addon_notices() {
141
- if ( ! current_user_can( 'manage_admin_columns' ) ) {
142
- return;
143
- }
144
 
145
- if ( ! current_user_can( 'install_plugins' ) ) {
146
- return;
147
  }
148
 
149
- if ( $this->is_current_screen() ) {
150
- return;
151
- }
152
 
153
- if ( AC()->suppress_site_wide_notices() ) {
154
- return;
155
- }
156
 
157
- if ( $this->hide_notice() ) {
158
- return;
159
- }
160
 
161
- $plugins = array();
 
162
 
163
- foreach ( AC()->addons()->get_addons() as $addon ) {
164
- if ( $addon->show_missing_notice_on_current_page() && $addon->is_plugin_active() && ! $addon->is_active() ) {
165
- $plugins[] = $addon->get_title();
166
- }
167
- }
168
 
169
- if ( $plugins ) {
170
- foreach ( $plugins as $index => $plugin ) {
171
- $plugins[ $index ] = '<strong>' . $plugin . '</strong>';
172
  }
 
 
173
 
174
- $plugins_list = ac_helper()->string->enumeration_list( $plugins, 'and' );
175
-
176
- ?>
177
- <div class="ac-message updated">
178
- <a href="#" class="hide-notice hide-install-addons-notice"></a>
179
-
180
- <p><?php printf( __( "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!", 'codepress-admin-columns' ), $plugins_list, ac_helper()->html->link( $this->get_link(), __( 'the addons page', 'codepress-admin-columns' ) ) ); ?>
181
- </div>
182
- <?php
183
 
184
- wp_enqueue_script( 'ac-sitewide-notices' );
185
- wp_enqueue_style( 'ac-sitewide-notices' );
186
  }
187
- }
188
 
189
- /**
190
- * @return bool
191
- */
192
- private function hide_notice() {
193
- return (bool) get_user_meta( get_current_user_id(), 'ac_hide_notice_addons', true );
194
  }
195
 
196
  /**
197
- * Ajax callback for hiding the "Missing addons" notice used for notifying users of available integration addons for plugins they have installed
198
- *
199
- * @since 2.4.9
200
  */
201
- public function ajax_hide_install_addons_notice() {
202
- update_user_meta( get_current_user_id(), 'ac_hide_notice_addons', true );
 
 
203
  }
204
 
205
  /**
@@ -212,23 +158,22 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
212
  return;
213
  }
214
 
215
- $addon = AC()->addons()->get_addon( filter_input( INPUT_GET, 'plugin' ) );
 
216
 
217
  if ( ! $addon ) {
218
- AC()->notice( __( 'Addon does not exist.', 'codepress-admin-columns' ), 'error' );
219
-
220
- return;
221
- }
222
-
223
- if ( ! ac_is_pro_active() ) {
224
- AC()->notice( __( 'You need Admin Columns Pro.', 'codepress-admin-columns' ), 'error' );
225
-
226
- return;
227
  }
228
 
229
- // Hook: trigger possible warning message before running WP installer ( api errors etc. )
230
- if ( $error = apply_filters( 'ac/addons/install_request/maybe_error', false, $_GET['plugin'] ) ) {
231
- AC()->notice( $error, 'error' );
 
232
 
233
  return;
234
  }
@@ -341,7 +286,7 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
341
  }
342
  }
343
 
344
- /* @var AC_Admin_Addon[] $sorted */
345
  $sorted = array_merge( $active, $inactive );
346
 
347
  $grouped = array();
@@ -383,7 +328,7 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
383
  <ul>
384
  <?php
385
  foreach ( $group['addons'] as $addon ) :
386
- /* @var AC_Admin_Addon $addon */ ?>
387
  <li class="<?php echo esc_attr( $addon->get_slug() ); ?>">
388
  <div class="addon-header">
389
  <div class="inner">
@@ -411,7 +356,7 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
411
  <?php if ( current_user_can( 'activate_plugins' ) ) : ?>
412
  <a href="<?php echo esc_url( $addon->get_deactivation_url( $addon->get_basename() ) ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
413
  <?php endif;
414
- // Installed
415
  elseif ( current_user_can( 'activate_plugins' ) ) : ?>
416
  <a href="<?php echo esc_url( $addon->get_activation_url( $addon->get_basename() ) ); ?>" class="button button-primary right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
417
  <?php endif;
@@ -433,4 +378,4 @@ class AC_Admin_Page_Addons extends AC_Admin_Page {
433
  <?php endforeach; // grouped_addons
434
  }
435
 
436
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Page;
 
 
4
 
5
+ use AC;
6
+ use AC\Admin\Addon;
7
+ use AC\Admin\Page;
8
+ use AC\Message\Notice;
9
+ use AC\PluginInformation;
10
+
11
+ class Addons extends Page {
12
 
13
  public function __construct() {
14
  $this
21
  */
22
  public function register() {
23
  add_action( 'admin_init', array( $this, 'handle_request' ) );
 
24
  add_action( 'admin_init', array( $this, 'handle_install_request' ) );
25
+ add_action( 'admin_init', array( $this, 'show_action_notices' ) );
 
 
26
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
27
+ add_filter( 'wp_redirect', array( $this, 'redirect_after_status_change' ) );
28
  }
29
 
30
+ public function show_action_notices() {
31
  if ( ! $this->is_current_screen() ) {
32
  return;
33
  }
34
 
35
+ if ( ! current_user_can( AC\Capabilities::MANAGE ) ) {
 
 
 
 
36
  return;
37
  }
38
 
43
  }
44
 
45
  foreach ( $addons as $addon ) {
46
+ if ( ! $addon->is_plugin_active() ) {
47
+ $this->show_addon_action_notice( $addon );
48
+ }
49
+ }
50
 
51
+ if ( ! ac_is_pro_active() ) {
52
+ $titles = array();
 
 
 
 
 
 
 
53
 
54
+ foreach ( $addons as $addon ) {
55
+ $titles[] = '<strong>' . esc_html( $addon->get_title() ) . '</strong>';
56
  }
 
57
 
58
+ $message = sprintf( _n( '%s add-on requires %s.', '%s add-ons requires %s.', count( $titles ), 'codepress-admin-columns' ), ac_helper()->string->enumeration_list( $titles, 'and' ), ac_helper()->html->link( ac_get_site_utm_url( false, 'addon' ), __( 'Admin Columns Pro', 'codepress-admin-columns' ), array( 'target' => '_blank' ) ) );
 
 
 
59
 
60
+ Notice::with_register()
61
+ ->set_message( $message )
62
+ ->set_type( Notice::WARNING );
63
  }
64
  }
65
 
73
  return;
74
  }
75
 
76
+ $nonce = filter_input( INPUT_GET, '_ac_nonce' );
77
  $basename = filter_input( INPUT_GET, 'plugin' );
 
 
 
 
 
78
  $status = filter_input( INPUT_GET, 'status' );
79
 
80
+ if ( ! wp_verify_nonce( $nonce, 'ac-plugin-status-change' ) || ! $basename || ! $status ) {
81
  return;
82
  }
83
 
84
+ $plugin = new PluginInformation( dirname( $basename ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
 
86
  switch ( $status ) {
87
  case 'activate' :
88
+ $this->show_activation_notice( $plugin );
89
+
 
 
 
90
  break;
91
  case 'deactivate' :
92
+ $this->show_deactivation_notice( $plugin );
93
+
94
  break;
95
  }
96
  }
97
 
98
+ protected function show_activation_notice( PluginInformation $plugin ) {
99
+ $notice = Notice::with_register();
 
 
 
 
 
 
100
 
101
+ if ( $plugin->is_active() ) {
102
+ $message = sprintf( __( '%s successfully activated.', 'codepress-admin-columns' ), '<strong>' . $plugin->get_name() . '</strong>' );
103
+ } else {
104
+ $plugins_link = ac_helper()->html->link( admin_url( 'plugins.php' ), strtolower( __( 'Plugins' ) ) );
105
+ $message = sprintf( __( '%s could not be activated.', 'codepress-admin-columns' ), '<strong>' . $plugin->get_name() . '</strong>' ) . ' ' . sprintf( __( 'Please visit the %s page.', 'codepress-admin-columns' ), $plugins_link );
 
 
 
 
106
 
107
+ $notice->set_type( $notice::ERROR );
 
108
  }
109
 
110
+ $notice->set_message( $message );
111
+ }
 
112
 
113
+ protected function show_deactivation_notice( PluginInformation $plugin ) {
114
+ $message = sprintf( __( '%s successfully deactivated.', 'codepress-admin-columns' ), '<strong>' . $plugin->get_name() . '</strong>' );
 
115
 
116
+ Notice::with_register()
117
+ ->set_message( $message );
118
+ }
119
 
120
+ protected function show_addon_action_notice( Addon $addon ) {
121
+ $notice = Notice::with_register();
122
 
123
+ if ( ! $addon->is_plugin_installed() ) {
124
+ $message = sprintf( __( '%s needs to be installed for the add-on to work.', 'codepress-admin-columns' ), $addon->get_title() );
 
 
 
125
 
126
+ if ( current_user_can( 'install_plugins' ) ) {
127
+ $message .= ' ' . sprintf( __( 'Install %s here.', 'codepress-admin-columns' ), ac_helper()->html->link( $addon->get_plugin_url(), $addon->get_title(), array( 'target' => '_blank' ) ) );
 
128
  }
129
+ } else {
130
+ $message = sprintf( __( '%s is installed, but not active.', 'codepress-admin-columns' ), '<strong>' . $addon->get_plugin()->get_plugin_var( 'Name' ) . '</strong>' );
131
 
132
+ if ( current_user_can( 'activate_plugins' ) ) {
133
+ $message .= ' ' . sprintf( __( 'Activate %s here.', 'codepress-admin-columns' ), ac_helper()->html->link( $addon->get_plugin_activation_url(), $addon->get_title() ) );
134
+ }
 
 
 
 
 
 
135
 
136
+ $notice->set_type( $notice::WARNING );
 
137
  }
 
138
 
139
+ $notice->set_message( $message );
 
 
 
 
140
  }
141
 
142
  /**
143
+ * Admin scripts
 
 
144
  */
145
+ public function admin_scripts() {
146
+ if ( $this->is_current_screen() ) {
147
+ wp_enqueue_style( 'ac-admin-page-addons', AC()->get_url() . 'assets/css/admin-page-addons.css', array(), AC()->get_version() );
148
+ }
149
  }
150
 
151
  /**
158
  return;
159
  }
160
 
161
+ $plugin_name = filter_input( INPUT_GET, 'plugin' );
162
+ $addon = AC()->addons()->get_addon( $plugin_name );
163
 
164
  if ( ! $addon ) {
165
+ $error = __( 'Addon does not exist.', 'codepress-admin-columns' );
166
+ } elseif ( ! ac_is_pro_active() ) {
167
+ $error = __( 'You need Admin Columns Pro.', 'codepress-admin-columns' );
168
+ } else {
169
+ // Trigger possible warning message before running WP installer
170
+ $error = apply_filters( 'ac/addons/install_request/maybe_error', false, $addon->get_slug() );
 
 
 
171
  }
172
 
173
+ if ( false !== $error ) {
174
+ Notice::with_register()
175
+ ->set_message( $error )
176
+ ->set_type( Notice::ERROR );
177
 
178
  return;
179
  }
286
  }
287
  }
288
 
289
+ /* @var Addon[] $sorted */
290
  $sorted = array_merge( $active, $inactive );
291
 
292
  $grouped = array();
328
  <ul>
329
  <?php
330
  foreach ( $group['addons'] as $addon ) :
331
+ /* @var Addon $addon */ ?>
332
  <li class="<?php echo esc_attr( $addon->get_slug() ); ?>">
333
  <div class="addon-header">
334
  <div class="inner">
356
  <?php if ( current_user_can( 'activate_plugins' ) ) : ?>
357
  <a href="<?php echo esc_url( $addon->get_deactivation_url( $addon->get_basename() ) ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
358
  <?php endif;
359
+ // Not active
360
  elseif ( current_user_can( 'activate_plugins' ) ) : ?>
361
  <a href="<?php echo esc_url( $addon->get_activation_url( $addon->get_basename() ) ); ?>" class="button button-primary right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
362
  <?php endif;
378
  <?php endforeach; // grouped_addons
379
  }
380
 
381
+ }
classes/Admin/Page/Columns.php CHANGED
@@ -1,10 +1,20 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- class AC_Admin_Page_Columns extends AC_Admin_Page {
 
 
 
 
 
 
 
 
 
 
8
 
9
  /**
10
  * @var array
@@ -12,12 +22,11 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
12
  private $notices;
13
 
14
  /**
15
- * @var AC_ListScreen
16
  */
17
  private $current_list_screen;
18
 
19
  public function __construct() {
20
-
21
  $this->set_slug( 'columns' )
22
  ->set_label( __( 'Admin Columns', 'codepress-admin-columns' ) )
23
  ->set_default( true );
@@ -50,10 +59,10 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
50
  }
51
 
52
  // Width slider
53
- wp_enqueue_style( 'jquery-ui-lightness', AC()->get_plugin_url() . 'assets/ui-theme/jquery-ui-1.8.18.custom.css', array(), AC()->get_version() );
54
  wp_enqueue_script( 'jquery-ui-slider' );
55
 
56
- wp_enqueue_script( 'ac-admin-page-columns', AC()->get_plugin_url() . "assets/js/admin-page-columns.js", array(
57
  'jquery',
58
  'dashboard',
59
  'jquery-ui-slider',
@@ -61,7 +70,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
61
  'wp-pointer',
62
  ), AC()->get_version() );
63
 
64
- wp_enqueue_style( 'ac-admin-page-columns-css', AC()->get_plugin_url() . 'assets/css/admin-page-columns.css', array(), AC()->get_version() );
65
 
66
  wp_localize_script( 'ac-admin-page-columns', 'AC', array(
67
  '_ajax_nonce' => wp_create_nonce( 'ac-settings' ),
@@ -77,38 +86,22 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
77
  do_action( 'ac/settings/scripts' );
78
  }
79
 
80
- private function get_first_list_screen() {
81
- $list_screens = AC()->get_list_screens();
82
-
83
- return reset( $list_screens );
84
- }
85
-
86
  public function set_current_list_screen() {
87
- if ( ! AC()->user_can_manage_admin_columns() || ! $this->is_current_screen() ) {
88
  return;
89
  }
90
 
91
  // User selected
92
- $key = filter_input( INPUT_GET, 'list_screen' );
93
 
94
  // Preference
95
- if ( ! $key ) {
96
- $key = $this->preferences()->get( 'list_screen' );
97
  }
98
 
99
  // First one
100
- if ( ! $key ) {
101
- $list_screens = AC()->get_list_screens();
102
-
103
- reset( $list_screens );
104
-
105
- $key = key( $list_screens );
106
- }
107
-
108
- $list_screen = AC()->get_list_screen( $key );
109
-
110
  if ( ! $list_screen ) {
111
- $list_screen = $this->get_first_list_screen();
112
  }
113
 
114
  // Load table headers
@@ -124,7 +117,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
124
  }
125
 
126
  /**
127
- * @return AC_ListScreen
128
  */
129
  public function get_current_list_screen() {
130
  return $this->current_list_screen;
@@ -134,7 +127,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
134
  * Handle request
135
  */
136
  public function handle_request() {
137
- if ( ! AC()->user_can_manage_admin_columns() || ! $this->is_current_screen() ) {
138
  return;
139
  }
140
 
@@ -143,8 +136,8 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
143
 
144
  case 'restore_by_type' :
145
  if ( $this->verify_nonce( 'restore-type' ) ) {
146
- $list_screen = AC()->get_list_screen( filter_input( INPUT_POST, 'list_screen' ) );
147
- $list_screen->set_layout_id( filter_input( INPUT_POST, 'layout' ) );
148
  $list_screen->delete();
149
 
150
  $this->notice( sprintf( __( 'Settings for %s restored successfully.', 'codepress-admin-columns' ), "<strong>" . esc_html( $this->get_list_screen_message_label( $list_screen ) ) . "</strong>" ), 'updated' );
@@ -158,7 +151,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
158
  /**
159
  * @since 3.0
160
  *
161
- * @param AC_ListScreen $list_screen
162
  *
163
  * @return string $label
164
  */
@@ -170,17 +163,19 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
170
  * @param string $message Message body
171
  * @param string $type Updated or error
172
  */
 
173
  public function notice( $message, $type = 'updated' ) {
174
  $this->notices[] = '<div class="ac-message inline ' . esc_attr( $type ) . '"><p>' . $message . '</p></div>';
175
  }
176
 
177
  /**
178
- * @param AC_Column $column
179
  *
180
  * @return string
181
  */
182
- private function get_column_display( AC_Column $column ) {
183
  ob_start();
 
184
  $this->display_column( $column );
185
 
186
  return ob_get_clean();
@@ -190,23 +185,21 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
190
  * Check is the ajax request is valid and user is allowed to make it
191
  *
192
  * @since 3.0
193
- * @return AC_ListScreen
194
  */
195
  private function ajax_validate_request() {
196
  check_ajax_referer( 'ac-settings' );
197
 
198
- if ( ! AC()->user_can_manage_admin_columns() ) {
199
  wp_die();
200
  }
201
 
202
- $list_screen = AC()->get_list_screen( filter_input( INPUT_POST, 'list_screen' ) );
203
 
204
  if ( ! $list_screen ) {
205
  wp_die();
206
  }
207
 
208
- $list_screen->set_layout_id( filter_input( INPUT_POST, 'layout' ) );
209
-
210
  // Load default headings
211
  if ( ! $list_screen->get_stored_default_headings() ) {
212
  $list_screen->set_original_columns( (array) filter_input( INPUT_POST, 'original_columns', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ) );
@@ -216,7 +209,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
216
  }
217
 
218
  /**
219
- * @param AC_ListScreen $list_screen
220
  *
221
  * @return string
222
  */
@@ -254,7 +247,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
254
  }
255
 
256
  // Placeholder message
257
- if ( $column instanceof AC_Column_Placeholder ) {
258
  wp_send_json_error( array(
259
  'type' => 'message',
260
  'error' => $column->get_message(),
@@ -354,7 +347,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
354
 
355
  $grouped = array();
356
 
357
- foreach ( AC()->list_screen_groups()->get_groups_sorted() as $group ) {
358
  $slug = $group['slug'];
359
 
360
  if ( empty( $list_screens[ $slug ] ) ) {
@@ -376,7 +369,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
376
  }
377
 
378
  private function preferences() {
379
- return new AC_Preferences_Site( 'settings' );
380
  }
381
 
382
  /**
@@ -393,14 +386,14 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
393
  }
394
 
395
  /**
396
- * @return AC_Admin_Promo|false
397
  */
398
  public function get_active_promotion() {
399
- $classes = AC()->autoloader()->get_class_names_from_dir( AC()->get_plugin_dir() . 'classes/Admin/Promo', AC()->get_prefix() );
400
 
401
  foreach ( $classes as $class ) {
402
 
403
- /* @var AC_Admin_Promo $promo */
404
  $promo = new $class;
405
 
406
  if ( $promo->is_active() ) {
@@ -426,11 +419,11 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
426
  }
427
 
428
  /**
429
- * @param AC_ListScreen $list_screen
430
  *
431
  * @return string
432
  */
433
- private function get_read_only_message( AC_ListScreen $list_screen ) {
434
  $message = sprintf( __( 'The columns for %s are set up via PHP and can therefore not be edited.', 'codepress-admin-columns' ), '<strong>' . esc_html( $list_screen->get_label() ) . '</strong>' );
435
 
436
  return apply_filters( 'ac/read_only_message', $message, $list_screen );
@@ -449,7 +442,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
449
  <div class="menu">
450
  <form>
451
  <?php $this->nonce_field( 'select-list-screen' ); ?>
452
- <input type="hidden" name="page" value="<?php echo esc_attr( AC_Admin::MENU_SLUG ); ?>">
453
 
454
  <select name="list_screen" title="<?php esc_attr_e( 'Select type', 'codepress-admin-columns' ); ?>" id="ac_list_screen">
455
  <?php foreach ( $this->get_grouped_list_screens() as $group ) : ?>
@@ -676,7 +669,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
676
  </p>
677
  <?php endif; ?>
678
  <p>
679
- <?php printf( __( "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>", 'codepress-admin-columns' ), ac_get_site_utm_url( 'documentation', 'support' ) ); ?>
680
  </p>
681
  </div>
682
  </div><!--plugin-support-->
@@ -727,6 +720,9 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
727
  <div class="column-footer">
728
  <?php if ( ! $list_screen->is_read_only() ) : ?>
729
  <div class="order-message">
 
 
 
730
  <?php _e( 'Drag and drop to reorder', 'codepress-admin-columns' ); ?>
731
  </div>
732
  <div class="button-container">
@@ -772,12 +768,12 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
772
  }
773
 
774
  /**
775
- * @param AC_ListScreen $list_screen
776
- * @param string $group
777
  *
778
- * @return AC_Column|false
779
  */
780
- private function get_column_template_by_group( AC_ListScreen $list_screen, $group = false ) {
781
  $types = $list_screen->get_column_types();
782
 
783
  if ( ! $group ) {
@@ -806,7 +802,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
806
  /**
807
  * Get first custom group column
808
  */
809
- private function display_column_template( AC_ListScreen $list_screen ) {
810
  $column = $this->get_column_template_by_group( $list_screen, 'custom' );
811
 
812
  if ( ! $column ) {
@@ -819,7 +815,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
819
  /**
820
  * @since 2.0
821
  */
822
- public function display_column( AC_Column $column ) { ?>
823
 
824
  <div class="ac-column ac-<?php echo esc_attr( $column->get_type() ); ?>"
825
  data-type="<?php echo esc_attr( $column->get_type() ); ?>"
@@ -839,7 +835,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
839
  <?php
840
 
841
  foreach ( $column->get_settings() as $setting ) {
842
- if ( $setting instanceof AC_Settings_HeaderInterface ) {
843
  echo $setting->render_header();
844
  }
845
  }
@@ -849,7 +845,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
849
  *
850
  * @since 2.0
851
  *
852
- * @param AC_Column $column_instance Column class instance
853
  */
854
  do_action( 'ac/column/header', $column );
855
 
@@ -914,7 +910,7 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
914
  if ( ! $this->is_current_screen() ) {
915
  return;
916
  }
917
-
918
  ?>
919
  <div class="ac-modal" id="ac-modal-pro">
920
  <div class="ac-modal__dialog -mascot">
@@ -939,11 +935,13 @@ class AC_Admin_Page_Columns extends AC_Admin_Page {
939
  <div class="ac-modal__dialog__footer">
940
  <a class="button button-primary" target="_blank" href="<?php echo esc_url( ac_get_site_utm_url( 'admin-columns-pro', 'upgrade' ) ); ?>"><?php _e( 'Upgrade', 'codepress-admin-columns' ); ?></a>
941
  <span class="ac-modal__dialog__footer__content"><?php echo sprintf( __( 'Only %s for 1 site', 'codepress-admin-columns' ), '$' . $this->get_lowest_pro_price() ); ?></span>
942
- <img src="<?php echo esc_url( AC()->get_plugin_url() ); ?>/assets/images/mascot.png" alt="Admin Columns Mascot" class="ac-modal__dialog__mascot">
 
 
943
  </div>
944
  </div>
945
  </div>
946
 
947
  <?php
948
  }
949
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Page;
4
+
5
+ use AC\Admin;
6
+ use AC\Admin\Page;
7
+ use AC\Admin\Promo;
8
+ use AC\Autoloader;
9
+ use AC\Capabilities;
10
+ use AC\Column;
11
+ use AC\ListScreen;
12
+ use AC\ListScreenFactory;
13
+ use AC\ListScreenGroups;
14
+ use AC\Preferences;
15
+ use AC\Settings;
16
+
17
+ class Columns extends Page {
18
 
19
  /**
20
  * @var array
22
  private $notices;
23
 
24
  /**
25
+ * @var ListScreen
26
  */
27
  private $current_list_screen;
28
 
29
  public function __construct() {
 
30
  $this->set_slug( 'columns' )
31
  ->set_label( __( 'Admin Columns', 'codepress-admin-columns' ) )
32
  ->set_default( true );
59
  }
60
 
61
  // Width slider
62
+ wp_enqueue_style( 'jquery-ui-lightness', AC()->get_url() . 'assets/ui-theme/jquery-ui-1.8.18.custom.css', array(), AC()->get_version() );
63
  wp_enqueue_script( 'jquery-ui-slider' );
64
 
65
+ wp_enqueue_script( 'ac-admin-page-columns', AC()->get_url() . "assets/js/admin-page-columns.js", array(
66
  'jquery',
67
  'dashboard',
68
  'jquery-ui-slider',
70
  'wp-pointer',
71
  ), AC()->get_version() );
72
 
73
+ wp_enqueue_style( 'ac-admin-page-columns-css', AC()->get_url() . 'assets/css/admin-page-columns.css', array(), AC()->get_version() );
74
 
75
  wp_localize_script( 'ac-admin-page-columns', 'AC', array(
76
  '_ajax_nonce' => wp_create_nonce( 'ac-settings' ),
86
  do_action( 'ac/settings/scripts' );
87
  }
88
 
 
 
 
 
 
 
89
  public function set_current_list_screen() {
90
+ if ( ! current_user_can( Capabilities::MANAGE ) || ! $this->is_current_screen() ) {
91
  return;
92
  }
93
 
94
  // User selected
95
+ $list_screen = ListScreenFactory::create( filter_input( INPUT_GET, 'list_screen' ) );
96
 
97
  // Preference
98
+ if ( ! $list_screen ) {
99
+ $list_screen = ListScreenFactory::create( $this->preferences()->get( 'list_screen' ) );
100
  }
101
 
102
  // First one
 
 
 
 
 
 
 
 
 
 
103
  if ( ! $list_screen ) {
104
+ $list_screen = ListScreenFactory::create( key( AC()->get_list_screens() ) );
105
  }
106
 
107
  // Load table headers
117
  }
118
 
119
  /**
120
+ * @return ListScreen
121
  */
122
  public function get_current_list_screen() {
123
  return $this->current_list_screen;
127
  * Handle request
128
  */
129
  public function handle_request() {
130
+ if ( ! current_user_can( Capabilities::MANAGE ) || ! $this->is_current_screen() ) {
131
  return;
132
  }
133
 
136
 
137
  case 'restore_by_type' :
138
  if ( $this->verify_nonce( 'restore-type' ) ) {
139
+
140
+ $list_screen = ListScreenFactory::create( filter_input( INPUT_POST, 'list_screen' ), filter_input( INPUT_POST, 'layout' ) );
141
  $list_screen->delete();
142
 
143
  $this->notice( sprintf( __( 'Settings for %s restored successfully.', 'codepress-admin-columns' ), "<strong>" . esc_html( $this->get_list_screen_message_label( $list_screen ) ) . "</strong>" ), 'updated' );
151
  /**
152
  * @since 3.0
153
  *
154
+ * @param ListScreen $list_screen
155
  *
156
  * @return string $label
157
  */
163
  * @param string $message Message body
164
  * @param string $type Updated or error
165
  */
166
+
167
  public function notice( $message, $type = 'updated' ) {
168
  $this->notices[] = '<div class="ac-message inline ' . esc_attr( $type ) . '"><p>' . $message . '</p></div>';
169
  }
170
 
171
  /**
172
+ * @param Column $column
173
  *
174
  * @return string
175
  */
176
+ private function get_column_display( Column $column ) {
177
  ob_start();
178
+
179
  $this->display_column( $column );
180
 
181
  return ob_get_clean();
185
  * Check is the ajax request is valid and user is allowed to make it
186
  *
187
  * @since 3.0
188
+ * @return ListScreen
189
  */
190
  private function ajax_validate_request() {
191
  check_ajax_referer( 'ac-settings' );
192
 
193
+ if ( ! current_user_can( Capabilities::MANAGE ) ) {
194
  wp_die();
195
  }
196
 
197
+ $list_screen = ListScreenFactory::create( filter_input( INPUT_POST, 'list_screen' ), filter_input( INPUT_POST, 'layout' ) );
198
 
199
  if ( ! $list_screen ) {
200
  wp_die();
201
  }
202
 
 
 
203
  // Load default headings
204
  if ( ! $list_screen->get_stored_default_headings() ) {
205
  $list_screen->set_original_columns( (array) filter_input( INPUT_POST, 'original_columns', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ) );
209
  }
210
 
211
  /**
212
+ * @param ListScreen $list_screen
213
  *
214
  * @return string
215
  */
247
  }
248
 
249
  // Placeholder message
250
+ if ( $column instanceof Column\Placeholder ) {
251
  wp_send_json_error( array(
252
  'type' => 'message',
253
  'error' => $column->get_message(),
347
 
348
  $grouped = array();
349
 
350
+ foreach ( ListScreenGroups::get_groups()->get_groups_sorted() as $group ) {
351
  $slug = $group['slug'];
352
 
353
  if ( empty( $list_screens[ $slug ] ) ) {
369
  }
370
 
371
  private function preferences() {
372
+ return new Preferences\Site( 'settings' );
373
  }
374
 
375
  /**
386
  }
387
 
388
  /**
389
+ * @return Promo|false
390
  */
391
  public function get_active_promotion() {
392
+ $classes = Autoloader::instance()->get_class_names_from_dir( 'AC\Admin\Promo' );
393
 
394
  foreach ( $classes as $class ) {
395
 
396
+ /* @var Promo $promo */
397
  $promo = new $class;
398
 
399
  if ( $promo->is_active() ) {
419
  }
420
 
421
  /**
422
+ * @param ListScreen $list_screen
423
  *
424
  * @return string
425
  */
426
+ private function get_read_only_message( ListScreen $list_screen ) {
427
  $message = sprintf( __( 'The columns for %s are set up via PHP and can therefore not be edited.', 'codepress-admin-columns' ), '<strong>' . esc_html( $list_screen->get_label() ) . '</strong>' );
428
 
429
  return apply_filters( 'ac/read_only_message', $message, $list_screen );
442
  <div class="menu">
443
  <form>
444
  <?php $this->nonce_field( 'select-list-screen' ); ?>
445
+ <input type="hidden" name="page" value="<?php echo esc_attr( Admin::MENU_SLUG ); ?>">
446
 
447
  <select name="list_screen" title="<?php esc_attr_e( 'Select type', 'codepress-admin-columns' ); ?>" id="ac_list_screen">
448
  <?php foreach ( $this->get_grouped_list_screens() as $group ) : ?>
669
  </p>
670
  <?php endif; ?>
671
  <p>
672
+ <?php printf( __( "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>.", 'codepress-admin-columns' ), ac_get_site_utm_url( 'documentation', 'support' ) ); ?>
673
  </p>
674
  </div>
675
  </div><!--plugin-support-->
720
  <div class="column-footer">
721
  <?php if ( ! $list_screen->is_read_only() ) : ?>
722
  <div class="order-message">
723
+ <svg class="order-message__icon" width="18" height="18">
724
+ <use xlink:href="<?php echo esc_url( AC()->get_url() ); ?>/assets/images/symbols.svg#arrow-left-top"/>
725
+ </svg>
726
  <?php _e( 'Drag and drop to reorder', 'codepress-admin-columns' ); ?>
727
  </div>
728
  <div class="button-container">
768
  }
769
 
770
  /**
771
+ * @param ListScreen $list_screen
772
+ * @param string $group
773
  *
774
+ * @return Column|false
775
  */
776
+ private function get_column_template_by_group( ListScreen $list_screen, $group = false ) {
777
  $types = $list_screen->get_column_types();
778
 
779
  if ( ! $group ) {
802
  /**
803
  * Get first custom group column
804
  */
805
+ private function display_column_template( ListScreen $list_screen ) {
806
  $column = $this->get_column_template_by_group( $list_screen, 'custom' );
807
 
808
  if ( ! $column ) {
815
  /**
816
  * @since 2.0
817
  */
818
+ public function display_column( Column $column ) { ?>
819
 
820
  <div class="ac-column ac-<?php echo esc_attr( $column->get_type() ); ?>"
821
  data-type="<?php echo esc_attr( $column->get_type() ); ?>"
835
  <?php
836
 
837
  foreach ( $column->get_settings() as $setting ) {
838
+ if ( $setting instanceof Settings\Header ) {
839
  echo $setting->render_header();
840
  }
841
  }
845
  *
846
  * @since 2.0
847
  *
848
+ * @param Column $column_instance Column class instance
849
  */
850
  do_action( 'ac/column/header', $column );
851
 
910
  if ( ! $this->is_current_screen() ) {
911
  return;
912
  }
913
+
914
  ?>
915
  <div class="ac-modal" id="ac-modal-pro">
916
  <div class="ac-modal__dialog -mascot">
935
  <div class="ac-modal__dialog__footer">
936
  <a class="button button-primary" target="_blank" href="<?php echo esc_url( ac_get_site_utm_url( 'admin-columns-pro', 'upgrade' ) ); ?>"><?php _e( 'Upgrade', 'codepress-admin-columns' ); ?></a>
937
  <span class="ac-modal__dialog__footer__content"><?php echo sprintf( __( 'Only %s for 1 site', 'codepress-admin-columns' ), '$' . $this->get_lowest_pro_price() ); ?></span>
938
+ <svg class="ac-modal__dialog__mascot">
939
+ <use xlink:href="<?php echo esc_url( AC()->get_url() ); ?>/assets/images/symbols.svg#zebra-thumbs-up"/>
940
+ </svg>
941
  </div>
942
  </div>
943
  </div>
944
 
945
  <?php
946
  }
947
+ }
classes/Admin/Page/Help.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Page_Help extends AC_Admin_Page {
 
 
 
8
 
9
  const TRANSIENT_COUNT_KEY = 'ac-deprecated-message-count';
10
 
@@ -51,7 +52,7 @@ class AC_Admin_Page_Help extends AC_Admin_Page {
51
  * Run all hooks once
52
  */
53
  public function init() {
54
- if ( ! AC()->user_can_manage_admin_columns() ) {
55
  return;
56
  }
57
 
@@ -65,7 +66,7 @@ class AC_Admin_Page_Help extends AC_Admin_Page {
65
  * Run all hooks when opening the help tab.
66
  */
67
  public function run_hooks_on_help_tab() {
68
- if ( ! AC()->user_can_manage_admin_columns() || ! $this->is_current_screen() ) {
69
  return;
70
  }
71
 
@@ -77,7 +78,7 @@ class AC_Admin_Page_Help extends AC_Admin_Page {
77
  */
78
  public function admin_scripts() {
79
  if ( $this->is_current_screen() ) {
80
- wp_enqueue_style( 'ac-admin-page-help-css', AC()->get_plugin_url() . 'assets/css/admin-page-help.css', array(), AC()->get_version() );
81
  }
82
  }
83
 
@@ -260,7 +261,7 @@ class AC_Admin_Page_Help extends AC_Admin_Page {
260
  * @return false|string
261
  */
262
  private function get_documention_link( $page ) {
263
- return ac_helper()->html->link( ac_get_site_utm_url( 'documentation', 'documentation' ) . $page, __( 'View documentation', 'codepress-admin-columns' ) . ' &raquo;', array( 'target' => '_blank' ) );
264
  }
265
 
266
  /**
@@ -315,7 +316,7 @@ class AC_Admin_Page_Help extends AC_Admin_Page {
315
  return false;
316
  }
317
 
318
- return sprintf( _n( 'The callback used is %s.', 'The callbacks used are %s', count( $callbacks ), 'codepress-admin-columns' ), '<code>' . implode( '</code>, <code>', $callbacks ) . '</code>' );
319
  }
320
 
321
  /**
@@ -342,4 +343,4 @@ class AC_Admin_Page_Help extends AC_Admin_Page {
342
  }
343
  }
344
 
345
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Page;
 
 
4
 
5
+ use AC;
6
+ use AC\Admin\Page;
7
+
8
+ class Help extends Page {
9
 
10
  const TRANSIENT_COUNT_KEY = 'ac-deprecated-message-count';
11
 
52
  * Run all hooks once
53
  */
54
  public function init() {
55
+ if ( ! current_user_can( AC\Capabilities::MANAGE ) ) {
56
  return;
57
  }
58
 
66
  * Run all hooks when opening the help tab.
67
  */
68
  public function run_hooks_on_help_tab() {
69
+ if ( ! current_user_can( AC\Capabilities::MANAGE ) || ! $this->is_current_screen() ) {
70
  return;
71
  }
72
 
78
  */
79
  public function admin_scripts() {
80
  if ( $this->is_current_screen() ) {
81
+ wp_enqueue_style( 'ac-admin-page-help-css', AC()->get_url() . 'assets/css/admin-page-help.css', array(), AC()->get_version() );
82
  }
83
  }
84
 
261
  * @return false|string
262
  */
263
  private function get_documention_link( $page ) {
264
+ return ac_helper()->html->link( ac_get_site_utm_url( 'documentation/' . $page, 'documentation' ), __( 'View documentation', 'codepress-admin-columns' ) . ' &raquo;', array( 'target' => '_blank' ) );
265
  }
266
 
267
  /**
316
  return false;
317
  }
318
 
319
+ return sprintf( _n( 'The callback used is %s.', 'The callbacks used are %s.', count( $callbacks ), 'codepress-admin-columns' ), '<code>' . implode( '</code>, <code>', $callbacks ) . '</code>' );
320
  }
321
 
322
  /**
343
  }
344
  }
345
 
346
+ }
classes/Admin/Page/Settings.php CHANGED
@@ -1,10 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Page_Settings extends AC_Admin_Page {
 
 
 
 
 
8
 
9
  const SETTINGS_NAME = 'cpac_general_options';
10
 
@@ -32,7 +35,7 @@ class AC_Admin_Page_Settings extends AC_Admin_Page {
32
 
33
  public function admin_scripts() {
34
  if ( $this->is_current_screen() ) {
35
- wp_enqueue_style( 'ac-admin-page-settings', AC()->get_plugin_url() . 'assets/css/admin-page-settings.css', array(), AC()->get_version() );
36
  }
37
  }
38
 
@@ -88,7 +91,7 @@ class AC_Admin_Page_Settings extends AC_Admin_Page {
88
  FROM $wpdb->options
89
  WHERE option_name LIKE %s";
90
 
91
- $wpdb->query( $wpdb->prepare( $sql, AC_ListScreen::OPTIONS_KEY . '%' ) );
92
 
93
  // @since 3.0
94
  do_action( 'ac/restore_all_columns' );
@@ -98,21 +101,22 @@ class AC_Admin_Page_Settings extends AC_Admin_Page {
98
  * @since 1.0
99
  */
100
  public function handle_column_request() {
101
- if ( ! AC()->user_can_manage_admin_columns() || ! $this->is_current_screen() ) {
102
  return;
103
  }
104
 
105
- switch ( filter_input( INPUT_POST, 'ac_action' ) ) :
106
-
107
  case 'restore_all' :
108
  if ( $this->verify_nonce( 'restore-all' ) ) {
109
  $this->delete_all_column_settings();
110
 
111
- AC()->notice( __( 'Default settings succesfully restored.', 'codepress-admin-columns' ), 'updated' );
 
 
112
  }
113
- break;
114
 
115
- endswitch;
 
116
  }
117
 
118
  public function single_checkbox( $args = array() ) {
@@ -201,13 +205,13 @@ class AC_Admin_Page_Settings extends AC_Admin_Page {
201
 
202
  $title = isset( $group['title'] ) ? $group['title'] : '';
203
  $description = isset( $group['description'] ) ? $group['description'] : '';
 
204
 
205
  ?>
206
 
207
- <tr>
208
  <th scope="row">
209
  <h2><?php echo esc_html( $title ); ?></h2>
210
-
211
  <p><?php echo $description; ?></p>
212
  </th>
213
  <td>
@@ -247,4 +251,4 @@ class AC_Admin_Page_Settings extends AC_Admin_Page {
247
  <?php
248
  }
249
 
250
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Page;
 
 
4
 
5
+ use AC\Admin\Page;
6
+ use AC\Capabilities;
7
+ use AC\Message;
8
+ use AC\ListScreen;
9
+
10
+ class Settings extends Page {
11
 
12
  const SETTINGS_NAME = 'cpac_general_options';
13
 
35
 
36
  public function admin_scripts() {
37
  if ( $this->is_current_screen() ) {
38
+ wp_enqueue_style( 'ac-admin-page-settings', AC()->get_url() . 'assets/css/admin-page-settings.css', array(), AC()->get_version() );
39
  }
40
  }
41
 
91
  FROM $wpdb->options
92
  WHERE option_name LIKE %s";
93
 
94
+ $wpdb->query( $wpdb->prepare( $sql, ListScreen::OPTIONS_KEY . '%' ) );
95
 
96
  // @since 3.0
97
  do_action( 'ac/restore_all_columns' );
101
  * @since 1.0
102
  */
103
  public function handle_column_request() {
104
+ if ( ! current_user_can( Capabilities::MANAGE ) || ! $this->is_current_screen() ) {
105
  return;
106
  }
107
 
108
+ switch ( filter_input( INPUT_POST, 'ac_action' ) ) {
 
109
  case 'restore_all' :
110
  if ( $this->verify_nonce( 'restore-all' ) ) {
111
  $this->delete_all_column_settings();
112
 
113
+ $notice = new Message\Notice();
114
+ $notice->set_message( __( 'Default settings successfully restored.', 'codepress-admin-columns' ) )
115
+ ->register();
116
  }
 
117
 
118
+ break;
119
+ }
120
  }
121
 
122
  public function single_checkbox( $args = array() ) {
205
 
206
  $title = isset( $group['title'] ) ? $group['title'] : '';
207
  $description = isset( $group['description'] ) ? $group['description'] : '';
208
+ $attr_id = isset( $group['id'] ) ? $group['id'] : '';
209
 
210
  ?>
211
 
212
+ <tr id="<?php echo esc_attr( $attr_id ); ?>">
213
  <th scope="row">
214
  <h2><?php echo esc_html( $title ); ?></h2>
 
215
  <p><?php echo $description; ?></p>
216
  </th>
217
  <td>
251
  <?php
252
  }
253
 
254
+ }
classes/Admin/Pages.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- final class AC_Admin_Pages {
8
 
9
  /**
10
- * @var AC_Admin_Page[]
11
  */
12
  private $pages;
13
 
@@ -23,11 +21,11 @@ final class AC_Admin_Pages {
23
  }
24
 
25
  /**
26
- * @param AC_Admin_Page $page
27
  *
28
- * @return AC_Admin_Pages
29
  */
30
- public function register_page( AC_Admin_Page $page ) {
31
  $this->pages[ $page->get_slug() ] = $page;
32
 
33
  if ( $page->is_default() ) {
@@ -40,7 +38,7 @@ final class AC_Admin_Pages {
40
  /**
41
  * @param $slug
42
  *
43
- * @return AC_Admin_Page|false
44
  */
45
  public function get_page( $slug ) {
46
  $page = false;
@@ -53,7 +51,7 @@ final class AC_Admin_Pages {
53
  }
54
 
55
  /**
56
- * @return AC_Admin_Page|false
57
  */
58
  public function get_current_page() {
59
  $page = $this->get_page( filter_input( INPUT_GET, 'tab' ) );
@@ -69,14 +67,14 @@ final class AC_Admin_Pages {
69
  * Register page hooks
70
  */
71
  public function register() {
72
- foreach ( $this->pages as $page ) {
73
  $page->register();
74
  }
75
  }
76
 
77
  public function display() { ?>
78
- <div id="cpac" class="wrap">
79
- <h1 class="nav-tab-wrapper cpac-nav-tab-wrapper">
80
  <?php
81
 
82
  $active_page = $this->get_current_page();
@@ -90,7 +88,7 @@ final class AC_Admin_Pages {
90
  }
91
 
92
  ?>
93
- </h1>
94
 
95
  <?php
96
 
@@ -99,9 +97,9 @@ final class AC_Admin_Pages {
99
  $active_page->display();
100
 
101
  ?>
102
- </div>
103
 
104
  <?php
105
  }
106
 
107
- }
1
  <?php
2
 
3
+ namespace AC\Admin;
 
 
4
 
5
+ final class Pages {
6
 
7
  /**
8
+ * @var Page[]
9
  */
10
  private $pages;
11
 
21
  }
22
 
23
  /**
24
+ * @param Page $page
25
  *
26
+ * @return Pages
27
  */
28
+ public function register_page( Page $page ) {
29
  $this->pages[ $page->get_slug() ] = $page;
30
 
31
  if ( $page->is_default() ) {
38
  /**
39
  * @param $slug
40
  *
41
+ * @return Page|false
42
  */
43
  public function get_page( $slug ) {
44
  $page = false;
51
  }
52
 
53
  /**
54
+ * @return Page|false
55
  */
56
  public function get_current_page() {
57
  $page = $this->get_page( filter_input( INPUT_GET, 'tab' ) );
67
  * Register page hooks
68
  */
69
  public function register() {
70
+ foreach ( $this->pages as $page ) {
71
  $page->register();
72
  }
73
  }
74
 
75
  public function display() { ?>
76
+ <div id="cpac" class="wrap">
77
+ <h1 class="nav-tab-wrapper cpac-nav-tab-wrapper">
78
  <?php
79
 
80
  $active_page = $this->get_current_page();
88
  }
89
 
90
  ?>
91
+ </h1>
92
 
93
  <?php
94
 
97
  $active_page->display();
98
 
99
  ?>
100
+ </div>
101
 
102
  <?php
103
  }
104
 
105
+ }
classes/Admin/Promo.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Admin_Promo {
8
 
9
  /**
10
  * @var array
@@ -139,4 +137,4 @@ abstract class AC_Admin_Promo {
139
  <?php
140
  }
141
 
142
- }
1
  <?php
2
 
3
+ namespace AC\Admin;
 
 
4
 
5
+ abstract class Promo {
6
 
7
  /**
8
  * @var array
137
  <?php
138
  }
139
 
140
+ }
classes/Admin/Promo/BlackFriday.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Admin_Promo_BlackFriday extends AC_Admin_Promo {
 
 
8
 
9
  public function __construct() {
10
 
@@ -12,10 +12,13 @@ class AC_Admin_Promo_BlackFriday extends AC_Admin_Promo {
12
  $this->set_discount( 30 );
13
 
14
  // 2016
15
- $this->add_date_range( '2016-11-25','2016-11-29' );
16
 
17
  // 2017
18
- $this->add_date_range( '2017-11-24','2017-11-28' );
 
 
 
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Admin\Promo;
 
 
4
 
5
+ use AC\Admin\Promo;
6
+
7
+ class BlackFriday extends Promo {
8
 
9
  public function __construct() {
10
 
12
  $this->set_discount( 30 );
13
 
14
  // 2016
15
+ $this->add_date_range( '2016-11-25', '2016-11-29' );
16
 
17
  // 2017
18
+ $this->add_date_range( '2017-11-24', '2017-11-28' );
19
+
20
+ // 2018
21
+ $this->add_date_range( '2018-11-23', '2018-11-27' );
22
  }
23
 
24
+ }
classes/AdminColumns.php ADDED
@@ -0,0 +1,368 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ use AC\Check;
6
+ use AC\Table;
7
+ use AC\ThirdParty;
8
+
9
+ class AdminColumns extends Plugin {
10
+
11
+ /**
12
+ * Admin Columns settings class instance
13
+ *
14
+ * @since 2.2
15
+ * @access private
16
+ * @var Admin
17
+ */
18
+ private $admin;
19
+
20
+ /**
21
+ * @var Table\Screen
22
+ */
23
+ private $table_screen;
24
+
25
+ /**
26
+ * @var API
27
+ */
28
+ private $api;
29
+
30
+ /**
31
+ * @var Admin\Addons
32
+ */
33
+ private $addons;
34
+
35
+ /**
36
+ * @var ListScreen[]
37
+ */
38
+ private $list_screens;
39
+
40
+ /**
41
+ * @since 2.5
42
+ */
43
+ private static $instance = null;
44
+
45
+ /**
46
+ * @since 2.5
47
+ */
48
+ public static function instance() {
49
+ if ( null === self::$instance ) {
50
+ self::$instance = new self;
51
+ }
52
+
53
+ return self::$instance;
54
+ }
55
+
56
+ /**
57
+ * @since 1.0
58
+ */
59
+ private function __construct() {
60
+ // Third Party
61
+ new ThirdParty\ACF();
62
+ new ThirdParty\NinjaForms();
63
+ new ThirdParty\WooCommerce();
64
+ new ThirdParty\WPML();
65
+
66
+ // Init
67
+ $this->addons = new Admin\Addons();
68
+ $this->table_screen = new Table\Screen();
69
+ $this->api = new API();
70
+
71
+ $this->admin = new Admin();
72
+ $this->admin->register();
73
+
74
+ $screen = new Screen();
75
+ $screen->register();
76
+
77
+ add_action( 'init', array( $this, 'init_capabilities' ) );
78
+ add_action( 'init', array( $this, 'install' ) );
79
+ add_action( 'init', array( $this, 'notice_checks' ) );
80
+ add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 1, 2 );
81
+ add_action( 'plugins_loaded', array( $this, 'localize' ) );
82
+ }
83
+
84
+ /**
85
+ * Init checks
86
+ */
87
+ public function notice_checks() {
88
+ $checks = array(
89
+ new Check\Review(),
90
+ new Check\AddonAvailable(),
91
+ );
92
+
93
+ foreach ( $checks as $check ) {
94
+ $check->register();
95
+ }
96
+ }
97
+
98
+ /**
99
+ * @return string
100
+ */
101
+ protected function get_file() {
102
+ return AC_FILE;
103
+ }
104
+
105
+ /**
106
+ * @return string
107
+ */
108
+ protected function get_version_key() {
109
+ return 'ac_version';
110
+ }
111
+
112
+ /**
113
+ * @return string
114
+ */
115
+ public function get_version() {
116
+ return '3.2.3';
117
+ }
118
+
119
+ /**
120
+ * Initialize current user and make sure any administrator user can use Admin Columns
121
+ *
122
+ * @since 3.2
123
+ */
124
+ public function init_capabilities() {
125
+ $caps = new Capabilities();
126
+
127
+ if ( ! $caps->is_administrator() || $caps->has_manage() ) {
128
+ return;
129
+ }
130
+
131
+ add_action( 'admin_init', array( $caps, 'add_manage' ) );
132
+ }
133
+
134
+ /**
135
+ * Add a settings link to the Admin Columns entry in the plugin overview screen
136
+ *
137
+ * @since 1.0
138
+ * @see filter:plugin_action_links
139
+ */
140
+ public function add_settings_link( $links, $file ) {
141
+ if ( $file === $this->get_basename() ) {
142
+ array_unshift( $links, ac_helper()->html->link( AC()->admin()->get_link( 'columns' ), __( 'Settings', 'codepress-admin-columns' ) ) );
143
+ }
144
+
145
+ return $links;
146
+ }
147
+
148
+ /**
149
+ * @since 2.5
150
+ */
151
+ public function use_delete_confirmation() {
152
+ return apply_filters( 'ac/delete_confirmation', true );
153
+ }
154
+
155
+ /**
156
+ * @since 3.0
157
+ * @return API
158
+ */
159
+ public function api() {
160
+ return $this->api;
161
+ }
162
+
163
+ /**
164
+ * @since 2.2
165
+ * @return Admin Settings class instance
166
+ */
167
+ public function admin() {
168
+ return $this->admin;
169
+ }
170
+
171
+ /**
172
+ * @since 2.2
173
+ * @return Admin\Addons Add-ons class instance
174
+ */
175
+ public function addons() {
176
+ return $this->addons;
177
+ }
178
+
179
+ /**
180
+ * @return Table\Screen Returns the screen manager for the list table
181
+ */
182
+ public function table_screen() {
183
+ return $this->table_screen;
184
+ }
185
+
186
+ /**
187
+ * @return Admin\Page\Columns
188
+ */
189
+ public function admin_columns_screen() {
190
+ return $this->admin()->get_page( 'columns' );
191
+ }
192
+
193
+ /**
194
+ * @return bool True when doing ajax
195
+ */
196
+ public function is_doing_ajax() {
197
+ return defined( 'DOING_AJAX' ) && DOING_AJAX;
198
+ }
199
+
200
+ /**
201
+ * @return ListScreen[]
202
+ */
203
+ public function get_list_screens() {
204
+ if ( null === $this->list_screens ) {
205
+ $this->register_list_screens();
206
+ }
207
+
208
+ return $this->list_screens;
209
+ }
210
+
211
+ /**
212
+ * @param ListScreen $list_screen
213
+ */
214
+ public function register_list_screen( ListScreen $list_screen ) {
215
+ $this->list_screens[ $list_screen->get_key() ] = $list_screen;
216
+ }
217
+
218
+ /**
219
+ * Register List Screens
220
+ */
221
+ public function register_list_screens() {
222
+ $list_screens = array();
223
+
224
+ // Post types
225
+ foreach ( $this->get_post_types() as $post_type ) {
226
+ $list_screens[] = new ListScreen\Post( $post_type );
227
+ }
228
+
229
+ $list_screens[] = new ListScreen\Media();
230
+ $list_screens[] = new ListScreen\Comment();
231
+
232
+ // Users, not for network users
233
+ if ( ! is_multisite() ) {
234
+ $list_screens[] = new ListScreen\User();
235
+ }
236
+
237
+ foreach ( $list_screens as $list_screen ) {
238
+ $this->register_list_screen( $list_screen );
239
+ }
240
+
241
+ do_action( 'ac/list_screens', $this );
242
+ }
243
+
244
+ /**
245
+ * Get a list of post types for which Admin Columns is active
246
+ *
247
+ * @since 1.0
248
+ *
249
+ * @return array List of post type keys (e.g. post, page)
250
+ */
251
+ public function get_post_types() {
252
+ $post_types = get_post_types( array(
253
+ '_builtin' => false,
254
+ 'show_ui' => true,
255
+ ) );
256
+
257
+ foreach ( array( 'post', 'page' ) as $builtin ) {
258
+ if ( post_type_exists( $builtin ) ) {
259
+ $post_types[ $builtin ] = $builtin;
260
+ }
261
+ }
262
+
263
+ /**
264
+ * Filter the post types for which Admin Columns is active
265
+ *
266
+ * @since 2.0
267
+ *
268
+ * @param array $post_types List of active post type names
269
+ */
270
+ return apply_filters( 'ac/post_types', $post_types );
271
+ }
272
+
273
+ /**
274
+ * Load text-domain
275
+ */
276
+ public function localize() {
277
+ load_plugin_textdomain( 'codepress-admin-columns', false, $this->get_dir() . '/languages/' );
278
+ }
279
+
280
+ /**
281
+ * @deprecated 3.1.5
282
+ * @since 3.0
283
+ */
284
+ public function get_plugin_version( $file ) {
285
+ _deprecated_function( __METHOD__, '3.1.5' );
286
+ }
287
+
288
+ /**
289
+ * Returns the default list screen when no choice is made by the user
290
+ *
291
+ * @deprecated 3.1.5
292
+ * @since 3.0
293
+ */
294
+ public function get_default_list_screen() {
295
+ _deprecated_function( __METHOD__, '3.1.5' );
296
+ }
297
+
298
+ /**
299
+ * @deprecated 3.1.5
300
+ * @since 3.0
301
+ */
302
+ public function minified() {
303
+ _deprecated_function( __METHOD__, '3.1.5' );
304
+ }
305
+
306
+ /**
307
+ * @since 3.0
308
+ * @deprecated 3.2
309
+ *
310
+ * @param string $key
311
+ *
312
+ * @return ListScreen|false
313
+ */
314
+ public function get_list_screen( $key ) {
315
+ _deprecated_function( __METHOD__, '3.2', 'ListScreenFactory::create()' );
316
+
317
+ return ListScreenFactory::create( $key );
318
+ }
319
+
320
+ /**
321
+ * @param string $key
322
+ *
323
+ * @deprecated 3.2
324
+ *
325
+ * @return bool
326
+ */
327
+ public function list_screen_exists( $key ) {
328
+ _deprecated_function( __METHOD__, '3.2' );
329
+
330
+ return ListScreenFactory::create( $key ) ? true : false;
331
+ }
332
+
333
+ /**
334
+ * @deprecated 3.2
335
+ *
336
+ * @return Groups
337
+ */
338
+ public function list_screen_groups() {
339
+ _deprecated_function( __METHOD__, '3.1.5', 'ListScreenGroups::get_groups' );
340
+
341
+ return ListScreenGroups::get_groups();
342
+ }
343
+
344
+ /**
345
+ * @deprecated 3.2
346
+ * @return Groups
347
+ */
348
+ public function column_groups() {
349
+ _deprecated_function( __METHOD__, '3.2' );
350
+
351
+ return new Groups();
352
+ }
353
+
354
+ /**
355
+ * Contains simple helper methods
356
+ *
357
+ * @since 3.0
358
+ * @deprecated 3.2
359
+ *
360
+ * @return Helper
361
+ */
362
+ public function helper() {
363
+ _deprecated_function( __METHOD__, '3.2', 'ac_helper()' );
364
+
365
+ return ac_helper();
366
+ }
367
+
368
+ }
classes/Ajax/Handler.php ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Ajax;
4
+
5
+ class Handler {
6
+
7
+ const NONCE_ACTION = 'ac-ajax';
8
+
9
+ /**
10
+ * @var array
11
+ */
12
+ protected $params;
13
+
14
+ /**
15
+ * @var string|array
16
+ */
17
+ protected $callback;
18
+
19
+ public function __construct() {
20
+ $this->set_nonce();
21
+ }
22
+
23
+ /**
24
+ * @throws \Exception
25
+ */
26
+ public function register() {
27
+ if ( ! $this->get_action() ) {
28
+ throw new \Exception( 'Action parameter is missing.' );
29
+ }
30
+
31
+ if ( ! $this->get_callback() ) {
32
+ throw new \Exception( 'Callback is missing.' );
33
+ }
34
+
35
+ add_action( 'wp_ajax_' . $this->get_action(), $this->get_callback() );
36
+ }
37
+
38
+ /**
39
+ * @return string|null
40
+ */
41
+ public function get_action() {
42
+ return $this->get_param( 'action' );
43
+ }
44
+
45
+ /**
46
+ * @param string $action
47
+ *
48
+ * @return $this
49
+ */
50
+ public function set_action( $action ) {
51
+ $this->params['action'] = $action;
52
+
53
+ return $this;
54
+ }
55
+
56
+ /**
57
+ * @param string|array $callback
58
+ *
59
+ * @return $this
60
+ */
61
+ public function set_callback( $callback ) {
62
+ $this->callback = $callback;
63
+
64
+ return $this;
65
+ }
66
+
67
+ /**
68
+ * @return array|string
69
+ */
70
+ public function get_callback() {
71
+ return $this->callback;
72
+ }
73
+
74
+ /**
75
+ * @param null|string $nonce
76
+ *
77
+ * @return $this
78
+ */
79
+ public function set_nonce( $nonce = null ) {
80
+ if ( null === $nonce ) {
81
+ $nonce = wp_create_nonce( self::NONCE_ACTION );
82
+ }
83
+
84
+ $this->params['_ajax_nonce'] = $nonce;
85
+
86
+ return $this;
87
+ }
88
+
89
+ /**
90
+ * @return $this
91
+ */
92
+ public function unset_nonce() {
93
+ unset( $this->params['_ajax_nonce'] );
94
+
95
+ return $this;
96
+ }
97
+
98
+ /**
99
+ * @param string $action
100
+ */
101
+ public function verify_request( $action = null ) {
102
+ if ( null === $action ) {
103
+ $action = self::NONCE_ACTION;
104
+ }
105
+
106
+ check_ajax_referer( $action );
107
+ }
108
+
109
+ /**
110
+ * @return array
111
+ */
112
+ public function get_params() {
113
+ return $this->params;
114
+ }
115
+
116
+ /**
117
+ * @param $key
118
+ *
119
+ * @return mixed|null
120
+ */
121
+ public function get_param( $key ) {
122
+ if ( ! array_key_exists( $key, $this->params ) ) {
123
+ return null;
124
+ }
125
+
126
+ return $this->params[ $key ];
127
+ }
128
+
129
+ /**
130
+ * @param array $params
131
+ *
132
+ * @return $this
133
+ */
134
+ public function set_params( array $params ) {
135
+ foreach ( $params as $key => $value ) {
136
+ $this->set_param( $key, $value );
137
+ }
138
+
139
+ return $this;
140
+ }
141
+
142
+ /**
143
+ * @param string $key
144
+ * @param mixed $value
145
+ *
146
+ * @return $this
147
+ */
148
+ public function set_param( $key, $value ) {
149
+ switch ( $key ) {
150
+ case 'action':
151
+ $this->set_action( $value );
152
+
153
+ break;
154
+ case 'nonce':
155
+ $this->set_nonce( $value );
156
+
157
+ break;
158
+ default:
159
+ $this->params[ $key ] = $value;
160
+ }
161
+
162
+ return $this;
163
+ }
164
+
165
+ }
classes/Ajax/NullHandler.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Ajax;
4
+
5
+ class NullHandler extends Handler {
6
+
7
+ public function register() {
8
+
9
+ }
10
+
11
+ }
classes/Autoloader.php CHANGED
@@ -1,24 +1,24 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Autoloader {
8
 
9
  /**
10
- * @var AC_Autoloader;
11
  */
12
  protected static $instance;
13
 
14
  /**
15
  * Register prefixes and their path
16
  *
17
- * @var array
18
  */
19
- protected $prefixes = array();
 
 
 
20
 
21
- private function __construct() {
22
  spl_autoload_register( array( $this, 'autoload' ) );
23
  }
24
 
@@ -30,106 +30,115 @@ class AC_Autoloader {
30
  return self::$instance;
31
  }
32
 
33
- public static function string_to_classname( $string ) {
34
- return implode( array_map( 'ucfirst', explode( '_', str_replace( '-', '_', $string ) ) ) );
35
- }
36
-
37
  /**
38
  * Register a prefix that should autoload
39
  *
40
  * @param $prefix string Unique prefix to this set of classes
41
- * @param $path string Path to directory where classes are stored
 
 
42
  */
43
- public function register_prefix( $prefix, $path ) {
44
- $prefix = rtrim( $prefix, '_' ) . '_';
45
- $path = trailingslashit( $path );
46
-
47
- $this->prefixes[ $prefix ] = $path;
48
 
49
  // make sure that more specific prefixes are checked first
50
  krsort( $this->prefixes );
 
 
51
  }
52
 
53
  /**
54
- * @param $class
 
 
 
55
  */
56
- public function autoload( $class ) {
57
- foreach ( $this->prefixes as $prefix => $prefix_path ) {
58
- if ( 0 !== strpos( $class, $prefix ) ) {
59
- continue;
60
  }
 
61
 
62
- $class_path = str_replace( array( $prefix, '_' ), array( '', '/' ), $class );
63
- $file = $prefix_path . $class_path . '.php';
64
-
65
- if ( is_readable( $file ) ) {
66
- require_once $file;
67
 
68
- break;
69
- }
 
 
 
 
 
 
 
70
 
71
- // Git does not detect case-difference in a filename and older versions used same filename but with a different case
72
- $basename = basename( $file );
73
- $file_lc = str_replace( $basename, strtolower( $basename ), $file );
74
 
75
- if ( is_readable( $file_lc ) ) {
76
- require_once $file_lc;
 
 
 
 
 
 
 
77
 
78
- break;
79
- }
80
  }
 
 
 
 
 
81
  }
82
 
83
  /**
84
- * @param string $prefix
85
  *
86
- * @return false|string
87
  */
88
- private function get_path_by_prefix( $prefix ) {
89
- return isset( $this->prefixes[ $prefix ] ) ? $this->prefixes[ $prefix ] : false;
 
 
 
 
 
 
 
 
 
90
  }
91
 
92
  /**
93
- * Get list of all class names from a directory
94
  *
95
  * @param string $dir
96
- * @param string $prefix
97
  *
98
- * @return array Class names
99
  */
100
- public function get_class_names_from_dir( $dir, $prefix ) {
101
- $path = trailingslashit( $dir );
102
- $classes_dir = $this->get_path_by_prefix( $prefix );
103
 
104
- // skip if directory is not auto loaded
105
- if ( false === strpos( $path, $classes_dir ) ) {
106
  return array();
107
  }
108
 
109
- $class_names = array();
110
-
111
- $prefix = $prefix . str_replace( array( $classes_dir, '/' ), array( '', '_' ), untrailingslashit( $path ) ) . '_';
112
-
113
- if ( is_dir( $dir ) ) {
114
- $iterator = new DirectoryIterator( $dir );
115
 
116
- foreach ( $iterator as $leaf ) {
117
- // skip non php files
118
- if ( $leaf->isDot() || $leaf->isDir() || 'php' !== pathinfo( $leaf->getFilename(), PATHINFO_EXTENSION ) ) {
119
- continue;
120
- }
121
-
122
- $class_name = $prefix . str_replace( '.php', '', $leaf->getFilename() );
123
-
124
- $r = new ReflectionClass( $class_name );
125
-
126
- if ( $r->isInstantiable() ) {
127
- $class_names[] = $class_name;
128
- }
129
  }
130
  }
131
 
132
- return $class_names;
133
  }
134
-
135
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ class Autoloader {
6
 
7
  /**
8
+ * @var self;
9
  */
10
  protected static $instance;
11
 
12
  /**
13
  * Register prefixes and their path
14
  *
15
+ * @var string[]
16
  */
17
+ protected $prefixes;
18
+
19
+ protected function __construct() {
20
+ $this->prefixes = array();
21
 
 
22
  spl_autoload_register( array( $this, 'autoload' ) );
23
  }
24
 
30
  return self::$instance;
31
  }
32
 
 
 
 
 
33
  /**
34
  * Register a prefix that should autoload
35
  *
36
  * @param $prefix string Unique prefix to this set of classes
37
+ * @param $dir string Path to directory where classes are stored
38
+ *
39
+ * @return $this
40
  */
41
+ public function register_prefix( $prefix, $dir ) {
42
+ $this->prefixes[ $prefix ] = trailingslashit( $dir );
 
 
 
43
 
44
  // make sure that more specific prefixes are checked first
45
  krsort( $this->prefixes );
46
+
47
+ return $this;
48
  }
49
 
50
  /**
51
+ * @param $haystack
52
+ * @param $needle
53
+ *
54
+ * @return false|string
55
  */
56
+ protected function get_prefix( $class ) {
57
+ foreach ( array_keys( $this->prefixes ) as $prefix ) {
58
+ if ( 0 === strpos( $class, $prefix ) ) {
59
+ return $prefix;
60
  }
61
+ }
62
 
63
+ return false;
64
+ }
 
 
 
65
 
66
+ /**
67
+ * @param $prefix
68
+ *
69
+ * @return false|string
70
+ */
71
+ protected function get_path( $prefix ) {
72
+ if ( ! isset( $this->prefixes[ $prefix ] ) ) {
73
+ return false;
74
+ }
75
 
76
+ return $this->prefixes[ $prefix ];
77
+ }
 
78
 
79
+ /**
80
+ * Get the path from a given namespace that has a registered prefix
81
+ *
82
+ * @param string $namespace
83
+ *
84
+ * @return false|string
85
+ */
86
+ protected function get_path_from_namespace( $namespace ) {
87
+ $prefix = $this->get_prefix( $namespace );
88
 
89
+ if ( ! $prefix ) {
90
+ return false;
91
  }
92
+
93
+ $path = $this->get_path( $prefix ) . substr( $namespace, strlen( $prefix ) );
94
+ $path = str_replace( '\\', '/', $path );
95
+
96
+ return $path;
97
  }
98
 
99
  /**
100
+ * @param string $class
101
  *
102
+ * @return bool
103
  */
104
+ public function autoload( $class ) {
105
+ $path = $this->get_path_from_namespace( $class );
106
+ $file = realpath( $path . '.php' );
107
+
108
+ if ( ! $file ) {
109
+ return false;
110
+ }
111
+
112
+ require_once $file;
113
+
114
+ return true;
115
  }
116
 
117
  /**
118
+ * Get list of all auto-loadable class names from a directory
119
  *
120
  * @param string $dir
 
121
  *
122
+ * @return array
123
  */
124
+ public function get_class_names_from_dir( $namespace ) {
125
+ $path = $this->get_path_from_namespace( $namespace );
126
+ $path = realpath( $path );
127
 
128
+ if ( ! $path ) {
 
129
  return array();
130
  }
131
 
132
+ $iterator = new \FilesystemIterator( $path, \FilesystemIterator::SKIP_DOTS );
133
+ $classes = array();
 
 
 
 
134
 
135
+ /* @var \DirectoryIterator $leaf */
136
+ foreach ( $iterator as $leaf ) {
137
+ if ( 'php' === $leaf->getExtension() ) {
138
+ $classes[] = $namespace . '\\' . pathinfo( $leaf->getBasename(), PATHINFO_FILENAME );
 
 
 
 
 
 
 
 
 
139
  }
140
  }
141
 
142
+ return $classes;
143
  }
144
+ }
 
classes/Autoloader/Underscore.php ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Autoloader;
4
+
5
+ class Underscore {
6
+
7
+ /**
8
+ * @var self;
9
+ */
10
+ protected static $instance;
11
+
12
+ /**
13
+ * Register aliases that point to a namespace
14
+ *
15
+ * @var string[]
16
+ */
17
+ protected $aliases;
18
+
19
+ protected function __construct() {
20
+ $this->aliases = array();
21
+
22
+ spl_autoload_register( array( $this, 'autoload' ), true, true );
23
+ }
24
+
25
+ public static function instance() {
26
+ if ( null === self::$instance ) {
27
+ self::$instance = new self();
28
+ }
29
+
30
+ return self::$instance;
31
+ }
32
+
33
+ /**
34
+ * Add a class alias
35
+ *
36
+ * @param string $class
37
+ * @param string $alias
38
+ *
39
+ * return $this
40
+ */
41
+ public function add_alias( $original, $alias ) {
42
+ if ( strpos( $original, '/' ) ) {
43
+ throw new \Exception( 'Namespaces use \ instead of /.' );
44
+ }
45
+
46
+ if ( ! $this->register_alias( $original, $alias ) ) {
47
+ throw new \Exception( sprintf( 'Failed to register alias for %s', $original ) );
48
+ }
49
+
50
+ $this->aliases[ $alias ] = $original;
51
+
52
+ return $this;
53
+ }
54
+
55
+ /**
56
+ * Check if original exists and if so, create the class alias
57
+ *
58
+ * @param string $original
59
+ * @param string $alias
60
+ *
61
+ * @return bool
62
+ */
63
+ protected function register_alias( $original, $alias ) {
64
+ if ( ! class_exists( $original ) && ! interface_exists( $original ) ) {
65
+ return false;
66
+ }
67
+
68
+ class_alias( $original, $alias );
69
+
70
+ return true;
71
+ }
72
+
73
+ /**
74
+ * @param $alias
75
+ *
76
+ * @return bool
77
+ */
78
+ public function alias_exists( $alias ) {
79
+ return isset( $this->aliases[ $alias ] );
80
+ }
81
+
82
+ /**
83
+ * @param $alias
84
+ *
85
+ * @return false|string
86
+ */
87
+ public function get_original( $alias ) {
88
+ if ( ! $this->alias_exists( $alias ) ) {
89
+ return false;
90
+ }
91
+
92
+ return $this->aliases[ $alias ];
93
+ }
94
+
95
+ /**
96
+ * Check if the prefix is within the domain of Admin Columns
97
+ *
98
+ * @param string $alias
99
+ *
100
+ * @return bool
101
+ */
102
+ protected function is_valid_prefix( $alias ) {
103
+ $prefixes = array( 'AC', 'ACP', 'ACA' );
104
+
105
+ foreach ( $prefixes as $prefix ) {
106
+ if ( 0 === strpos( $alias, $prefix . '_' ) ) {
107
+ return true;
108
+ }
109
+ }
110
+
111
+ return false;
112
+ }
113
+
114
+ public function autoload( $alias ) {
115
+ if ( ! $this->is_valid_prefix( $alias ) ) {
116
+ return false;
117
+ }
118
+
119
+ $original = $this->get_original( $alias );
120
+
121
+ if ( ! $original ) {
122
+ $original = str_replace( '_', '\\', $alias );
123
+
124
+ if ( ! $this->register_alias( $original, $alias ) ) {
125
+ return false;
126
+ }
127
+ }
128
+
129
+ if ( WP_DEBUG ) {
130
+ $error = sprintf( '%s is a <strong>deprecated class</strong> since version %s! Use %s instead.', $alias, 4.3, $original );
131
+
132
+ trigger_error( $error );
133
+ }
134
+
135
+ return true;
136
+ }
137
+
138
+ }
classes/Capabilities.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ class Capabilities {
6
+
7
+ const MANAGE = 'manage_admin_columns';
8
+
9
+ /**
10
+ * @var \WP_User
11
+ */
12
+ protected $user;
13
+
14
+ public function __construct( \WP_User $user = null ) {
15
+ if ( null === $user ) {
16
+ $user = wp_get_current_user();
17
+ }
18
+
19
+ $this->user = $user;
20
+ }
21
+
22
+ /**
23
+ * @return bool
24
+ */
25
+ public function is_administrator() {
26
+ return is_super_admin( $this->user->ID ) || $this->user->has_cap( 'administrator' );
27
+ }
28
+
29
+ /**
30
+ * Check if user can manage Admin Columns
31
+ *
32
+ * @return bool
33
+ */
34
+ public function has_manage() {
35
+ return $this->user->has_cap( self::MANAGE );
36
+ }
37
+
38
+ /**
39
+ * Add the capability to manage admin columns.
40
+ */
41
+ public function add_manage() {
42
+ $this->user->add_cap( self::MANAGE );
43
+ }
44
+ }
classes/Check/AddonAvailable.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Check;
4
+
5
+ use AC\Ajax;
6
+ use AC\Capabilities;
7
+ use AC\Message\Notice;
8
+ use AC\Preferences;
9
+ use AC\Registrable;
10
+ use AC\Screen;
11
+
12
+ class AddonAvailable
13
+ implements Registrable {
14
+
15
+ public function register() {
16
+ add_action( 'ac/screen', array( $this, 'display' ) );
17
+
18
+ $this->get_ajax_handler()->register();
19
+ }
20
+
21
+ /**
22
+ * @return Ajax\Handler
23
+ */
24
+ private function get_ajax_handler() {
25
+ $handler = new Ajax\Handler();
26
+
27
+ $handler->set_action( 'ac_dismiss_notice_addon_available' )
28
+ ->set_callback( array( $this, 'ajax_dismiss_notice' ) );
29
+
30
+ return $handler;
31
+ }
32
+
33
+ /**
34
+ * @return Preferences\User
35
+ */
36
+ protected function get_preferences() {
37
+ return new Preferences\User( 'check-addon-available' );
38
+ }
39
+
40
+ /**
41
+ * Dismiss notice
42
+ */
43
+ public function ajax_dismiss_notice() {
44
+ $this->get_ajax_handler()->verify_request();
45
+ $this->get_preferences()->set( 'dismiss-notice', true );
46
+ }
47
+
48
+ /**
49
+ * @param Screen $screen
50
+ */
51
+ public function display( Screen $screen ) {
52
+ if ( ! current_user_can( Capabilities::MANAGE ) ) {
53
+ return;
54
+ }
55
+
56
+ if ( $this->get_preferences()->get( 'dismiss-notice' ) ) {
57
+ return;
58
+ }
59
+
60
+ $titles = array();
61
+
62
+ foreach ( AC()->addons()->get_addons() as $addon ) {
63
+ if ( ! $addon->is_plugin_active() ) {
64
+ continue;
65
+ }
66
+
67
+ if ( $addon->is_active() ) {
68
+ continue;
69
+ }
70
+
71
+ if ( ! $screen->is_list_screen() && ! $screen->is_admin_screen() && ! $addon->is_notice_screen() ) {
72
+ continue;
73
+ }
74
+
75
+ $titles[] = '<strong>' . $addon->get_title() . '</strong>';
76
+ }
77
+
78
+ if ( ! $titles ) {
79
+ return;
80
+ }
81
+
82
+ $message = sprintf( __( "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!", 'codepress-admin-columns' ), ac_helper()->string->enumeration_list( $titles, 'and' ), ac_helper()->html->link( AC()->admin()->get_link( 'addons' ), __( 'the addons page', 'codepress-admin-columns' ) ) );
83
+
84
+ $notice = new Notice\Dismissible( $this->get_ajax_handler() );
85
+ $notice->set_message( $message )
86
+ ->register();
87
+ }
88
+
89
+ }
classes/Check/Review.php ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Check;
4
+
5
+ use AC\Ajax;
6
+ use AC\Capabilities;
7
+ use AC\Registrable;
8
+ use AC\Screen;
9
+ use AC\Message;
10
+ use AC\Preferences;
11
+
12
+ class Review
13
+ implements Registrable {
14
+
15
+ /**
16
+ * @var int Show message after x days
17
+ */
18
+ protected $show_after = 30;
19
+
20
+ /**
21
+ * @param int $show_after_days
22
+ */
23
+ public function set_show_after( $show_after_days ) {
24
+ $this->show_after = absint( $show_after_days );
25
+ }
26
+
27
+ public function register() {
28
+ add_action( 'ac/screen', array( $this, 'display' ) );
29
+
30
+ $this->get_ajax_handler()->register();
31
+ }
32
+
33
+ /**
34
+ * @param Screen $screen
35
+ */
36
+ public function display( Screen $screen ) {
37
+ if ( ! $screen->has_screen() ) {
38
+ return;
39
+ }
40
+
41
+ if ( ! current_user_can( Capabilities::MANAGE ) ) {
42
+ return;
43
+ }
44
+
45
+ if ( ! $screen->is_admin_screen() && ! $screen->is_list_screen() ) {
46
+ return;
47
+ }
48
+
49
+ if ( $this->get_preferences()->get( 'dismiss-review' ) ) {
50
+ return;
51
+ }
52
+
53
+ if ( ! $this->first_login_compare() ) {
54
+ return;
55
+ }
56
+
57
+ wp_enqueue_script( 'ac-notice-review', AC()->get_url() . 'assets/js/message-review.js', array( 'jquery' ), AC()->get_version() );
58
+
59
+ $notice = new Message\Notice\Dismissible( $this->get_ajax_handler() );
60
+ $notice->set_message( $this->get_message() )
61
+ ->set_id( 'review' )
62
+ ->register();
63
+ }
64
+
65
+ /**
66
+ * @return Ajax\Handler
67
+ */
68
+ protected function get_ajax_handler() {
69
+ $handler = new Ajax\Handler();
70
+ $handler->set_action( 'ac_check_review_dismiss_notice' )
71
+ ->set_callback( array( $this, 'ajax_dismiss_notice' ) );
72
+
73
+ return $handler;
74
+ }
75
+
76
+ /**
77
+ * @return Preferences\User
78
+ */
79
+ protected function get_preferences() {
80
+ return new Preferences\User( 'check-review' );
81
+ }
82
+
83
+ /**
84
+ * Check if the amount of days is larger then the first login
85
+ *
86
+ * @return bool
87
+ */
88
+ protected function first_login_compare() {
89
+ return time() - $this->show_after * DAY_IN_SECONDS > $this->get_first_login();
90
+ }
91
+
92
+ /**
93
+ * Return the Unix timestamp of first login
94
+ *
95
+ * @return integer
96
+ */
97
+ protected function get_first_login() {
98
+ $timestamp = $this->get_preferences()->get( 'first-login-review' );
99
+
100
+ if ( empty( $timestamp ) ) {
101
+ $timestamp = time();
102
+
103
+ $this->get_preferences()->set( 'first-login-review', $timestamp );
104
+ }
105
+
106
+ return $timestamp;
107
+ }
108
+
109
+ /**
110
+ * Ajax dismiss notice
111
+ * @since 3.2
112
+ */
113
+ public function ajax_dismiss_notice() {
114
+ $this->get_ajax_handler()->verify_request();
115
+ $this->get_preferences()->set( 'dismiss-review', true );
116
+ }
117
+
118
+ /**
119
+ * @return string
120
+ */
121
+ protected function get_message() {
122
+ $product = ac_is_pro_active()
123
+ ? __( 'Admin Columns Pro', 'codepress-admin-columns' )
124
+ : __( 'Admin Columns', 'codepress-admin-columns' );
125
+
126
+ ob_start();
127
+
128
+ ?>
129
+
130
+ <div class="info">
131
+ <p>
132
+ <?php printf( __(
133
+ "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' ),
134
+ '<strong>' . $product . '</strong>',
135
+ $product,
136
+ '<a class="hide-review-notice-soft" href="#">' . __( 'click here', 'codepress-admin-columns' ) . '</a>'
137
+ ); ?>
138
+ </p>
139
+ <p class="buttons">
140
+ <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>
141
+ <a class="button button-secondary hide-review-notice" href='#' data-dismiss=""><?php _e( "Permanently hide notice", 'codepress-admin-columns' ); ?></a>
142
+ </p>
143
+ </div>
144
+ <div class="help hidden">
145
+ <a href="#" class="hide-notice hide-review-notice"></a>
146
+ <p>
147
+ <?php
148
+
149
+ printf(
150
+ __( "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' ),
151
+ $product,
152
+ '<a href="' . esc_url( ac_get_site_utm_url( 'documentation', 'review-notice' ) ) . '" target="_blank">' . __( 'documentation page', 'codepress-admin-columns' ) . '</a>'
153
+ );
154
+
155
+ if ( ac_is_pro_active() ) {
156
+ printf(
157
+ __( 'You can also use your admincolumns.com account to access support through %s!', 'codepress-admin-columns' ),
158
+ '<a href="' . esc_url( ac_get_site_utm_url( 'topics', 'review-notice' ) ) . '" target="_blank">' . __( 'our forum', 'codepress-admin-columns' ) . '</a>'
159
+ );
160
+ } else {
161
+ printf(
162
+ __( 'You can also find help on the %s, and %s.', 'codepress-admin-columns' ),
163
+ '<a href="https://wordpress.org/support/plugin/codepress-admin-columns#postform" target="_blank">' . __( 'Admin Columns forum on WordPress.org', 'codepress-admin-columns' ) . '</a>',
164
+ '<a href="https://wordpress.org/plugins/codepress-admin-columns/faq/#plugin-info" target="_blank">' . __( 'find answers to frequently asked questions', 'codepress-admin-columns' ) . '</a>'
165
+ );
166
+ }
167
+
168
+ ?>
169
+ </p>
170
+ </div>
171
+
172
+ <?php
173
+
174
+ return ob_get_clean();
175
+ }
176
+
177
+ }
classes/Collection.php CHANGED
@@ -1,16 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
- * Class AC_Collection
9
- *
10
  * Used to hold values from the same type
11
  */
12
- class AC_Collection
13
- implements Iterator {
14
 
15
  /**
16
  * @var array
@@ -80,10 +76,10 @@ class AC_Collection
80
  /**
81
  * Filter collection items
82
  *
83
- * @return AC_Collection
84
  */
85
  public function filter() {
86
- return new AC_Collection( ac_helper()->array->filter( $this->items ) );
87
  }
88
 
89
  /**
@@ -112,4 +108,4 @@ class AC_Collection
112
  return implode( $glue, $this->items );
113
  }
114
 
115
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
  /**
 
 
6
  * Used to hold values from the same type
7
  */
8
+ class Collection
9
+ implements \Iterator {
10
 
11
  /**
12
  * @var array
76
  /**
77
  * Filter collection items
78
  *
79
+ * @return Collection
80
  */
81
  public function filter() {
82
+ return new Collection( ac_helper()->array->filter( $this->items ) );
83
  }
84
 
85
  /**
108
  return implode( $glue, $this->items );
109
  }
110
 
111
+ }
classes/Column.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column {
11
 
12
  /**
13
  * @var string Unique Name
@@ -35,17 +35,17 @@ class AC_Column {
35
  private $original = false;
36
 
37
  /**
38
- * @var AC_Settings_Column[]
39
  */
40
  private $settings;
41
 
42
  /**
43
- * @var AC_Settings_FormatValueInterface[]|AC_Settings_FormatCollectionInterface[]
44
  */
45
  private $formatters;
46
 
47
  /**
48
- * @var AC_ListScreen
49
  */
50
  protected $list_screen;
51
 
@@ -99,18 +99,18 @@ class AC_Column {
99
  }
100
 
101
  /**
102
- * @return AC_ListScreen
103
  */
104
  public function get_list_screen() {
105
  return $this->list_screen;
106
  }
107
 
108
  /**
109
- * @param AC_ListScreen $list_screen
110
  *
111
  * @return $this
112
  */
113
- public function set_list_screen( AC_ListScreen $list_screen ) {
114
  $this->list_screen = $list_screen;
115
 
116
  return $this;
@@ -216,11 +216,11 @@ class AC_Column {
216
  }
217
 
218
  /**
219
- * @param AC_Settings_Column $setting
220
  *
221
  * @return $this
222
  */
223
- public function add_setting( AC_Settings_Column $setting ) {
224
  $setting->set_values( $this->options );
225
 
226
  $this->settings[ $setting->get_name() ] = $setting;
@@ -244,7 +244,7 @@ class AC_Column {
244
  /**
245
  * @param string $id
246
  *
247
- * @return AC_Settings_Column|AC_Settings_Column_User|AC_Settings_Column_Separator|AC_Settings_Column_Label
248
  */
249
  public function get_setting( $id ) {
250
  return $this->get_settings()->get( $id );
@@ -253,7 +253,7 @@ class AC_Column {
253
  public function get_formatters() {
254
  if ( null === $this->formatters ) {
255
  foreach ( $this->get_settings() as $setting ) {
256
- if ( $setting instanceof AC_Settings_FormatValueInterface || $setting instanceof AC_Settings_FormatCollectionInterface ) {
257
  $this->formatters[] = $setting;
258
  }
259
  }
@@ -263,14 +263,14 @@ class AC_Column {
263
  }
264
 
265
  /**
266
- * @return AC_Collection
267
  */
268
  public function get_settings() {
269
  if ( null === $this->settings ) {
270
  $settings = array(
271
- new AC_Settings_Column_Type( $this ),
272
- new AC_Settings_Column_Label( $this ),
273
- new AC_Settings_Column_Width( $this ),
274
  );
275
 
276
  foreach ( $settings as $setting ) {
@@ -282,7 +282,7 @@ class AC_Column {
282
  do_action( 'ac/column/settings', $this );
283
  }
284
 
285
- return new AC_Collection( $this->settings );
286
  }
287
 
288
  /**
@@ -353,8 +353,8 @@ class AC_Column {
353
  }
354
 
355
  if ( $available > $current ) {
356
- $is_collection = $value instanceof AC_Collection;
357
- $is_value_formatter = $formatters[ $current ] instanceof AC_Settings_FormatValueInterface;
358
 
359
  if ( $is_collection && $is_value_formatter ) {
360
  foreach ( $value as $k => $v ) {
@@ -362,7 +362,7 @@ class AC_Column {
362
  }
363
 
364
  while ( $available > $current ) {
365
- if ( $formatters[ $current ] instanceof AC_Settings_FormatCollectionInterface ) {
366
  return $this->get_formatted_value( $value, $original_value, $current );
367
  }
368
 
@@ -402,7 +402,7 @@ class AC_Column {
402
  public function get_value( $id ) {
403
  $value = $this->get_formatted_value( $this->get_raw_value( $id ), $id );
404
 
405
- if ( $value instanceof AC_Collection ) {
406
  $value = $value->filter()->implode( $this->get_separator() );
407
  }
408
 
@@ -427,4 +427,4 @@ class AC_Column {
427
  return '&ndash;';
428
  }
429
 
430
- }
1
  <?php
2
 
3
+ namespace AC;
4
+
5
+ use AC\Settings;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Column {
11
 
12
  /**
13
  * @var string Unique Name
35
  private $original = false;
36
 
37
  /**
38
+ * @var Settings\Column[]
39
  */
40
  private $settings;
41
 
42
  /**
43
+ * @var Settings\FormatValue[]|Settings\FormatCollection[]
44
  */
45
  private $formatters;
46
 
47
  /**
48
+ * @var ListScreen
49
  */
50
  protected $list_screen;
51
 
99
  }
100
 
101
  /**
102
+ * @return ListScreen
103
  */
104
  public function get_list_screen() {
105
  return $this->list_screen;
106
  }
107
 
108
  /**
109
+ * @param ListScreen $list_screen
110
  *
111
  * @return $this
112
  */
113
+ public function set_list_screen( ListScreen $list_screen ) {
114
  $this->list_screen = $list_screen;
115
 
116
  return $this;
216
  }
217
 
218
  /**
219
+ * @param Settings\Column $setting
220
  *
221
  * @return $this
222
  */
223
+ public function add_setting( Settings\Column $setting ) {
224
  $setting->set_values( $this->options );
225
 
226
  $this->settings[ $setting->get_name() ] = $setting;
244
  /**
245
  * @param string $id
246
  *
247
+ * @return Settings\Column|Settings\Column\User|Settings\Column\Separator|Settings\Column\Label
248
  */
249
  public function get_setting( $id ) {
250
  return $this->get_settings()->get( $id );
253
  public function get_formatters() {
254
  if ( null === $this->formatters ) {
255
  foreach ( $this->get_settings() as $setting ) {
256
+ if ( $setting instanceof Settings\FormatValue || $setting instanceof Settings\FormatCollection ) {
257
  $this->formatters[] = $setting;
258
  }
259
  }
263
  }
264
 
265
  /**
266
+ * @return Collection
267
  */
268
  public function get_settings() {
269
  if ( null === $this->settings ) {
270
  $settings = array(
271
+ new Settings\Column\Type( $this ),
272
+ new Settings\Column\Label( $this ),
273
+ new Settings\Column\Width( $this ),
274
  );
275
 
276
  foreach ( $settings as $setting ) {
282
  do_action( 'ac/column/settings', $this );
283
  }
284
 
285
+ return new Collection( $this->settings );
286
  }
287
 
288
  /**
353
  }
354
 
355
  if ( $available > $current ) {
356
+ $is_collection = $value instanceof Collection;
357
+ $is_value_formatter = $formatters[ $current ] instanceof Settings\FormatValue;
358
 
359
  if ( $is_collection && $is_value_formatter ) {
360
  foreach ( $value as $k => $v ) {
362
  }
363
 
364
  while ( $available > $current ) {
365
+ if ( $formatters[ $current ] instanceof Settings\FormatCollection ) {
366
  return $this->get_formatted_value( $value, $original_value, $current );
367
  }
368
 
402
  public function get_value( $id ) {
403
  $value = $this->get_formatted_value( $this->get_raw_value( $id ), $id );
404
 
405
+ if ( $value instanceof Collection ) {
406
  $value = $value->filter()->implode( $this->get_separator() );
407
  }
408
 
427
  return '&ndash;';
428
  }
429
 
430
+ }
classes/Column/Actions.php CHANGED
@@ -1,15 +1,16 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * Base class for columns containing action links for items.
9
  *
10
  * @since 2.2.6
11
  */
12
- class AC_Column_Actions extends AC_Column {
13
 
14
  /**
15
  * @since 2.2.6
@@ -31,7 +32,7 @@ class AC_Column_Actions extends AC_Column {
31
  }
32
 
33
  public function register_settings() {
34
- $this->add_setting( new AC_Settings_Column_ActionIcons( $this ) );
35
  }
36
 
37
- }
1
  <?php
2
 
3
+ namespace AC\Column;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * Base class for columns containing action links for items.
10
  *
11
  * @since 2.2.6
12
  */
13
+ class Actions extends Column {
14
 
15
  /**
16
  * @since 2.2.6
32
  }
33
 
34
  public function register_settings() {
35
+ $this->add_setting( new Settings\Column\ActionIcons( $this ) );
36
  }
37
 
38
+ }
classes/Column/AjaxValue.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- interface AC_Column_AjaxValue {
8
 
9
  /**
10
  * @param int $id
@@ -13,4 +11,4 @@ interface AC_Column_AjaxValue {
13
  */
14
  public function get_ajax_value( $id );
15
 
16
- }
1
  <?php
2
 
3
+ namespace AC\Column;
 
 
4
 
5
+ interface AjaxValue {
6
 
7
  /**
8
  * @param int $id
11
  */
12
  public function get_ajax_value( $id );
13
 
14
+ }
classes/Column/Comment/Agent.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Agent extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-agent' );
@@ -24,4 +24,4 @@ class AC_Column_Comment_Agent extends AC_Column {
24
  return $comment->comment_agent;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Agent extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-agent' );
24
  return $comment->comment_agent;
25
  }
26
 
27
+ }
classes/Column/Comment/Approved.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Approved extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-approved' );
@@ -24,4 +24,4 @@ class AC_Column_Comment_Approved extends AC_Column {
24
  return $comment->comment_approved;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Approved extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-approved' );
24
  return $comment->comment_approved;
25
  }
26
 
27
+ }
classes/Column/Comment/Author.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Author extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Comment_Author extends AC_Column {
18
  $this->get_setting( 'width' )->set_default( 20 );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Author extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  $this->get_setting( 'width' )->set_default( 20 );
19
  }
20
 
21
+ }
classes/Column/Comment/AuthorAvatar.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_AuthorAvatar extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_avatar' );
@@ -20,4 +20,4 @@ class AC_Column_Comment_AuthorAvatar extends AC_Column {
20
  return get_avatar( $comment, 60 );
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class AuthorAvatar extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_avatar' );
20
  return get_avatar( $comment, 60 );
21
  }
22
 
23
+ }
classes/Column/Comment/AuthorEmail.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_AuthorEmail extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_email' );
@@ -26,4 +26,4 @@ class AC_Column_Comment_AuthorEmail extends AC_Column {
26
  return $comment->comment_author_email;
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class AuthorEmail extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_email' );
26
  return $comment->comment_author_email;
27
  }
28
 
29
+ }
classes/Column/Comment/AuthorIP.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Column_Comment_AuthorIP extends AC_Column {
 
 
8
 
9
  public function __construct() {
10
  $this->set_type( 'column-author_ip' );
@@ -21,4 +21,4 @@ class AC_Column_Comment_AuthorIP extends AC_Column {
21
  return $comment->comment_author_IP;
22
  }
23
 
24
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
 
 
4
 
5
+ use AC\Column;
6
+
7
+ class AuthorIP extends Column {
8
 
9
  public function __construct() {
10
  $this->set_type( 'column-author_ip' );
21
  return $comment->comment_author_IP;
22
  }
23
 
24
+ }
classes/Column/Comment/AuthorName.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.4.2
9
  */
10
- class AC_Column_Comment_AuthorName extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_name' );
@@ -24,4 +24,4 @@ class AC_Column_Comment_AuthorName extends AC_Column {
24
  return $comment->comment_author;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.4.2
9
  */
10
+ class AuthorName extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_name' );
24
  return $comment->comment_author;
25
  }
26
 
27
+ }
classes/Column/Comment/AuthorUrl.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_AuthorUrl extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_url' );
14
- $this->set_label( __( 'Author Url', 'codepress-admin-columns' ) );
15
  }
16
 
17
  public function get_value( $id ) {
@@ -24,4 +24,4 @@ class AC_Column_Comment_AuthorUrl extends AC_Column {
24
  return $comment->comment_author_url;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class AuthorUrl extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-author_url' );
14
+ $this->set_label( __( 'Author URL', 'codepress-admin-columns' ) );
15
  }
16
 
17
  public function get_value( $id ) {
24
  return $comment->comment_author_url;
25
  }
26
 
27
+ }
classes/Column/Comment/Comment.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Comment extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'comment' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Comment extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'comment' );
15
  }
16
 
17
+ }
classes/Column/Comment/Date.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Date extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Comment_Date extends AC_Column {
18
  $this->get_setting( 'width' )->set_default( 14 );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Date extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  $this->get_setting( 'width' )->set_default( 14 );
19
  }
20
 
21
+ }
classes/Column/Comment/DateGmt.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_DateGmt extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-date_gmt' );
@@ -32,4 +32,4 @@ class AC_Column_Comment_DateGmt extends AC_Column {
32
  return $comment->comment_date_gmt;
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class DateGmt extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-date_gmt' );
32
  return $comment->comment_date_gmt;
33
  }
34
 
35
+ }
classes/Column/Comment/Excerpt.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Excerpt extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-excerpt' );
@@ -21,10 +22,10 @@ class AC_Column_Comment_Excerpt extends AC_Column {
21
  }
22
 
23
  public function register_settings() {
24
- $word_limit = new AC_Settings_Column_WordLimit( $this );
25
  $word_limit->set_default( 15 );
26
 
27
  $this->add_setting( $word_limit );
28
  }
29
 
30
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC;
6
+ use AC\Column;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Excerpt extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-excerpt' );
22
  }
23
 
24
  public function register_settings() {
25
+ $word_limit = new AC\Settings\Column\WordLimit( $this );
26
  $word_limit->set_default( 15 );
27
 
28
  $this->add_setting( $word_limit );
29
  }
30
 
31
+ }
classes/Column/Comment/ID.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_ID extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-comment_id' );
@@ -22,4 +22,4 @@ class AC_Column_Comment_ID extends AC_Column {
22
  return $id;
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class ID extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-comment_id' );
22
  return $id;
23
  }
24
 
25
+ }
classes/Column/Comment/Post.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.4.7
9
  */
10
- class AC_Column_Comment_Post extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-post' );
@@ -25,7 +26,7 @@ class AC_Column_Comment_Post extends AC_Column {
25
  }
26
 
27
  public function register_settings() {
28
- $this->add_setting( new AC_Settings_Column_Post( $this ) );
29
  }
30
 
31
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC;
6
+ use AC\Column;
7
 
8
  /**
9
  * @since 2.4.7
10
  */
11
+ class Post extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-post' );
26
  }
27
 
28
  public function register_settings() {
29
+ $this->add_setting( new AC\Settings\Column\Post( $this ) );
30
  }
31
 
32
+ }
classes/Column/Comment/ReplyTo.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_ReplyTo extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-reply_to' );
@@ -32,4 +32,4 @@ class AC_Column_Comment_ReplyTo extends AC_Column {
32
  return $comment->comment_parent;
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class ReplyTo extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-reply_to' );
32
  return $comment->comment_parent;
33
  }
34
 
35
+ }
classes/Column/Comment/Response.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Comment_Response extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'response' );
@@ -35,4 +35,4 @@ class AC_Column_Comment_Response extends AC_Column {
35
 
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Response extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'response' );
35
 
36
  }
37
 
38
+ }
classes/Column/Comment/Status.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_Status extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-status' );
@@ -35,4 +35,4 @@ class AC_Column_Comment_Status extends AC_Column {
35
  return isset( $statuses[ $comment->comment_approved ] ) ? $statuses[ $comment->comment_approved ] : '';
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Status extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-status' );
35
  return isset( $statuses[ $comment->comment_approved ] ) ? $statuses[ $comment->comment_approved ] : '';
36
  }
37
 
38
+ }
classes/Column/Comment/Type.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.4.2
9
  */
10
- class AC_Column_Comment_Type extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-type' );
@@ -24,4 +24,4 @@ class AC_Column_Comment_Type extends AC_Column {
24
  return $comment->comment_type;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.4.2
9
  */
10
+ class Type extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-type' );
24
  return $comment->comment_type;
25
  }
26
 
27
+ }
classes/Column/Comment/User.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.4.2
9
  */
10
- class AC_Column_Comment_User extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user' );
@@ -32,7 +33,7 @@ class AC_Column_Comment_User extends AC_Column {
32
  }
33
 
34
  public function register_settings() {
35
- $this->add_setting( new AC_Settings_Column_User( $this ) );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC;
6
+ use AC\Column;
7
 
8
  /**
9
  * @since 2.4.2
10
  */
11
+ class User extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-user' );
33
  }
34
 
35
  public function register_settings() {
36
+ $this->add_setting( new AC\Settings\Column\User( $this ) );
37
  }
38
 
39
+ }
classes/Column/Comment/WordCount.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Comment_WordCount extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-word_count' );
@@ -20,4 +20,4 @@ class AC_Column_Comment_WordCount extends AC_Column {
20
  return ac_helper()->string->word_count( $comment->comment_content );
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\Column\Comment;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class WordCount extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-word_count' );
20
  return ac_helper()->string->word_count( $comment->comment_content );
21
  }
22
 
23
+ }
classes/Column/CustomField.php CHANGED
@@ -1,8 +1,9 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * Custom field column, displaying the contents of meta fields.
@@ -13,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  *
14
  * @since 1.0
15
  */
16
- class AC_Column_CustomField extends AC_Column_Meta {
17
 
18
  public function __construct() {
19
  $this->set_type( 'column-meta' );
@@ -26,15 +27,16 @@ class AC_Column_CustomField extends AC_Column_Meta {
26
  }
27
 
28
  public function register_settings() {
29
- $this->add_setting( new AC_Settings_Column_CustomField( $this ) );
30
- $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
31
 
32
  if ( ! ac_is_pro_active() ) {
33
- $this->add_setting( new AC_Settings_Column_Pro_Sorting( $this ) );
34
- $this->add_setting( new AC_Settings_Column_Pro_Editing( $this ) );
35
- $this->add_setting( new AC_Settings_Column_Pro_Filtering( $this ) );
36
- $this->add_setting( new AC_Settings_Column_Pro_Export( $this ) );
37
  }
 
38
  }
39
 
40
  /**
@@ -51,4 +53,4 @@ class AC_Column_CustomField extends AC_Column_Meta {
51
  return $this->get_meta_key();
52
  }
53
 
54
- }
1
  <?php
2
 
3
+ namespace AC\Column;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * Custom field column, displaying the contents of meta fields.
14
  *
15
  * @since 1.0
16
  */
17
+ class CustomField extends Column\Meta {
18
 
19
  public function __construct() {
20
  $this->set_type( 'column-meta' );
27
  }
28
 
29
  public function register_settings() {
30
+ $this->add_setting( new Settings\Column\CustomField( $this ) );
31
+ $this->add_setting( new Settings\Column\BeforeAfter( $this ) );
32
 
33
  if ( ! ac_is_pro_active() ) {
34
+ $this->add_setting( new Settings\Column\Pro\Sorting( $this ) );
35
+ $this->add_setting( new Settings\Column\Pro\Editing( $this ) );
36
+ $this->add_setting( new Settings\Column\Pro\Filtering( $this ) );
37
+ $this->add_setting( new Settings\Column\Pro\Export( $this ) );
38
  }
39
+
40
  }
41
 
42
  /**
53
  return $this->get_meta_key();
54
  }
55
 
56
+ }
classes/Column/Link/Actions.php DELETED
@@ -1,45 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Actions extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-actions' );
14
- $this->set_label( __( 'Actions', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return $this->get_column_value_actions( $bookmark );
21
- }
22
-
23
- /**
24
- * Get column value of link actions
25
- *
26
- * This part is copied from the Link List Table class
27
- *
28
- * @since 1.4.2
29
- *
30
- * @param object $link
31
- *
32
- * @return string Actions
33
- */
34
- public function get_column_value_actions( $link ) {
35
- $actions = array();
36
-
37
- $edit_link = get_edit_bookmark_link( $link );
38
-
39
- $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
40
- $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id ) . "' onclick=\"if ( confirm( '" . esc_js( sprintf( __( "You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete.", 'codepress-admin-columns' ), $link->link_name ) ) . "' ) ) { return true;}return false;\">" . __( 'Delete' ) . "</a>";
41
-
42
- return implode( ' | ', $actions );
43
- }
44
-
45
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Description.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Description extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-description' );
14
- $this->set_label( __( 'Description', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return $bookmark->link_description;
21
- }
22
-
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/ID.php DELETED
@@ -1,21 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_ID extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-link_id' );
14
- $this->set_label( __( 'ID', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- return $id;
19
- }
20
-
21
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Image.php DELETED
@@ -1,27 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Image extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-image' );
14
- $this->set_label( __( 'Image', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_raw_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return $bookmark->link_image;
21
- }
22
-
23
- public function register_settings() {
24
- $this->add_setting( new AC_Settings_Column_Image( $this ) );
25
- }
26
-
27
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Length.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Length extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-length' );
14
- $this->set_label( __( 'Length', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return strlen( $bookmark->link_name );
21
- }
22
-
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Notes.php DELETED
@@ -1,27 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Notes extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-notes' );
14
- $this->set_label( __( 'Notes', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_raw_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return $bookmark->link_notes;
21
- }
22
-
23
- public function register_settings() {
24
- $this->add_setting( new AC_Settings_Column_WordLimit( $this ) );
25
- }
26
-
27
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Owner.php DELETED
@@ -1,32 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Owner extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-owner' );
14
- $this->set_label( __( 'Owner', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- $value = $bookmark->link_owner;
21
-
22
- // add user link
23
- $userdata = get_userdata( $bookmark->link_owner );
24
-
25
- if ( ! empty( $userdata->data ) ) {
26
- $value = $userdata->data->user_nicename;
27
- }
28
-
29
- return $value;
30
- }
31
-
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Rss.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Rss extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-rss' );
14
- $this->set_label( __( 'Rss', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return ac_helper()->string->shorten_url( $bookmark->link_rss );
21
- }
22
-
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Link/Target.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- /**
8
- * @since 2.0
9
- */
10
- class AC_Column_Link_Target extends AC_Column {
11
-
12
- public function __construct() {
13
- $this->set_type( 'column-target' );
14
- $this->set_label( __( 'Target', 'codepress-admin-columns' ) );
15
- }
16
-
17
- public function get_value( $id ) {
18
- $bookmark = get_bookmark( $id );
19
-
20
- return $bookmark->link_target;
21
- }
22
-
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Column/Media/AlternateText.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_AlternateText extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-alternate_text' );
@@ -32,4 +32,4 @@ class AC_Column_Media_AlternateText extends AC_Column_Meta {
32
  return $this->get_meta_value( $id, $this->get_meta_key() );
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class AlternateText extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-alternate_text' );
32
  return $this->get_meta_value( $id, $this->get_meta_key() );
33
  }
34
 
35
+ }
classes/Column/Media/Author.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Media_Author extends AC_Column_Post_Author {
11
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Author extends Column\Post\Author {
11
+ }
classes/Column/Media/AuthorName.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Column displaying information about the author of a post, such as the
@@ -10,5 +10,5 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.0
12
  */
13
- class AC_Column_Media_AuthorName extends AC_Column_Post_AuthorName {
14
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * Column displaying information about the author of a post, such as the
10
  *
11
  * @since 2.0
12
  */
13
+ class AuthorName extends Column\Post\AuthorName {
14
+ }
classes/Column/Media/AvailableSizes.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_AvailableSizes extends AC_Column_Media_MetaValue {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -88,7 +89,7 @@ class AC_Column_Media_AvailableSizes extends AC_Column_Media_MetaValue {
88
  }
89
 
90
  public function register_settings() {
91
- $this->add_setting( new AC_Settings_Column_MissingImageSize( $this ) );
92
  }
93
 
94
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class AvailableSizes extends Column\Media\MetaValue {
12
 
13
  public function __construct() {
14
  parent::__construct();
89
  }
90
 
91
  public function register_settings() {
92
+ $this->add_setting( new Settings\Column\MissingImageSize( $this ) );
93
  }
94
 
95
+ }
classes/Column/Media/Caption.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Caption extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-caption' );
@@ -28,4 +28,4 @@ class AC_Column_Media_Caption extends AC_Column {
28
  return ac_helper()->post->get_raw_field( 'post_excerpt', $id );
29
  }
30
 
31
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Caption extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-caption' );
28
  return ac_helper()->post->get_raw_field( 'post_excerpt', $id );
29
  }
30
 
31
+ }
classes/Column/Media/Comments.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Media_Comments extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Media_Comments extends AC_Column {
18
  return post_type_supports( $this->get_post_type(), 'comments' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Comments extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  return post_type_supports( $this->get_post_type(), 'comments' );
19
  }
20
 
21
+ }
classes/Column/Media/Date.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Media_Date extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Media_Date extends AC_Column {
18
  $this->get_setting( 'width' )->set_default( 10 );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Date extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  $this->get_setting( 'width' )->set_default( 10 );
19
  }
20
 
21
+ }
classes/Column/Media/Description.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Description extends AC_Column_Post_Content {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -16,4 +16,4 @@ class AC_Column_Media_Description extends AC_Column_Post_Content {
16
  $this->set_label( __( 'Description', 'codepress-admin-columns' ) );
17
  }
18
 
19
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Description extends Column\Post\Content {
11
 
12
  public function __construct() {
13
  parent::__construct();
16
  $this->set_label( __( 'Description', 'codepress-admin-columns' ) );
17
  }
18
 
19
+ }
classes/Column/Media/Dimensions.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Dimensions extends AC_Column_Media_Meta {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -31,7 +31,7 @@ class AC_Column_Media_Dimensions extends AC_Column_Media_Meta {
31
  }
32
 
33
  public function register_settings() {
34
- $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
35
  }
36
 
37
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Settings;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Dimensions extends Meta {
11
 
12
  public function __construct() {
13
  parent::__construct();
31
  }
32
 
33
  public function register_settings() {
34
+ $this->add_setting( new Settings\Column\BeforeAfter( $this ) );
35
  }
36
 
37
+ }
classes/Column/Media/ExifData.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_ExifData extends AC_Column_Media_MetaValue {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -25,7 +26,7 @@ class AC_Column_Media_ExifData extends AC_Column_Media_MetaValue {
25
  }
26
 
27
  public function register_settings() {
28
- $this->add_setting( new AC_Settings_Column_ExifData( $this ) );
29
  }
30
 
31
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class ExifData extends Column\Media\MetaValue {
12
 
13
  public function __construct() {
14
  parent::__construct();
26
  }
27
 
28
  public function register_settings() {
29
+ $this->add_setting( new Settings\Column\ExifData( $this ) );
30
  }
31
 
32
+ }
classes/Column/Media/FileName.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_FileName extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-file_name' );
@@ -26,4 +26,4 @@ class AC_Column_Media_FileName extends AC_Column_Meta {
26
  return ac_helper()->image->get_file_name( $id );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class FileName extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-file_name' );
26
  return ac_helper()->image->get_file_name( $id );
27
  }
28
 
29
+ }
classes/Column/Media/FileSize.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_FileSize extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-file_size' );
@@ -25,4 +25,4 @@ class AC_Column_Media_FileSize extends AC_Column {
25
  return $value;
26
  }
27
 
28
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class FileSize extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-file_size' );
25
  return $value;
26
  }
27
 
28
+ }
classes/Column/Media/FullPath.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_FullPath extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-full_path' );
@@ -19,7 +20,7 @@ class AC_Column_Media_FullPath extends AC_Column {
19
  }
20
 
21
  public function register_settings() {
22
- $this->add_setting( new AC_Settings_Column_PathScope( $this ) );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class FullPath extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-full_path' );
20
  }
21
 
22
  public function register_settings() {
23
+ $this->add_setting( new Settings\Column\PathScope( $this ) );
24
  }
25
 
26
+ }
classes/Column/Media/Height.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Height extends AC_Column_Media_MetaValue {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -30,4 +30,4 @@ class AC_Column_Media_Height extends AC_Column_Media_MetaValue {
30
  return $value . 'px';
31
  }
32
 
33
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Height extends Column\Media\MetaValue {
11
 
12
  public function __construct() {
13
  parent::__construct();
30
  return $value . 'px';
31
  }
32
 
33
+ }
classes/Column/Media/ID.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_ID extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-mediaid' );
@@ -18,4 +18,4 @@ class AC_Column_Media_ID extends AC_Column {
18
  return $id;
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class ID extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-mediaid' );
18
  return $id;
19
  }
20
 
21
+ }
classes/Column/Media/{Parent.php → MediaParent.php} RENAMED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Media_Parent extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Media_Parent extends AC_Column {
18
  $this->get_setting( 'width' )->set_default( 15 );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class MediaParent extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  $this->get_setting( 'width' )->set_default( 15 );
19
  }
20
 
21
+ }
classes/Column/Media/Menu.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Column_Media_Menu extends AC_Column_Post_Menu {
8
 
9
- }
 
 
1
  <?php
2
 
3
+ namespace AC\Column\Media;
 
 
4
 
5
+ use AC\Column;
6
 
7
+ class Menu extends Column\Post\Menu {
8
+
9
+ }
classes/Column/Media/Meta.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Column_Media_Meta extends AC_Column_Meta {
 
 
8
 
9
  public function __construct() {
10
  $this->set_serialized( true );
@@ -18,4 +18,4 @@ abstract class AC_Column_Media_Meta extends AC_Column_Meta {
18
  return $this->get_meta_value( $id, $this->get_meta_key() );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
 
 
4
 
5
+ use AC\Column;
6
+
7
+ abstract class Meta extends Column\Meta {
8
 
9
  public function __construct() {
10
  $this->set_serialized( true );
18
  return $this->get_meta_value( $id, $this->get_meta_key() );
19
  }
20
 
21
+ }
classes/Column/Media/MetaValue.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 4.0.8
9
  */
10
- abstract class AC_Column_Media_MetaValue extends AC_Column_Media_Meta {
11
 
12
  abstract protected function get_option_name();
13
 
@@ -23,4 +21,4 @@ abstract class AC_Column_Media_MetaValue extends AC_Column_Media_Meta {
23
  return $value[ $option ];
24
  }
25
 
26
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
 
 
4
 
5
  /**
6
  * @since 4.0.8
7
  */
8
+ abstract class MetaValue extends Meta {
9
 
10
  abstract protected function get_option_name();
11
 
21
  return $value[ $option ];
22
  }
23
 
24
+ }
classes/Column/Media/MimeType.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_MimeType extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-mime_type' );
@@ -22,4 +22,4 @@ class AC_Column_Media_MimeType extends AC_Column {
22
  return get_post_field( 'post_mime_type', $id );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class MimeType extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-mime_type' );
22
  return get_post_field( 'post_mime_type', $id );
23
  }
24
 
25
+ }
classes/Column/Media/Taxonomy.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Media_Taxonomy extends AC_Column_Post_Taxonomy {
11
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Taxonomy extends Column\Post\Taxonomy {
11
+ }
classes/Column/Media/Title.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Media_Title extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'title' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Title extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'title' );
15
  }
16
 
17
+ }
classes/Column/Media/Width.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Media_Width extends AC_Column_Media_Height {
11
 
12
  public function __construct() {
13
  parent::__construct();
@@ -20,4 +20,4 @@ class AC_Column_Media_Width extends AC_Column_Media_Height {
20
  return 'width';
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\Column\Media;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Width extends Column\Media\Height {
11
 
12
  public function __construct() {
13
  parent::__construct();
20
  return 'width';
21
  }
22
 
23
+ }
classes/Column/Menu.php CHANGED
@@ -1,8 +1,9 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * Column displaying the menus the item is used in. Supported by all object types that
@@ -10,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.2.5
12
  */
13
- abstract class AC_Column_Menu extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-used_by_menu' );
@@ -18,7 +19,6 @@ abstract class AC_Column_Menu extends AC_Column {
18
  }
19
 
20
  /**
21
- * @see AC_Column::get_raw_value()
22
  * @since 2.2.5
23
  */
24
  public function get_raw_value( $object_id ) {
@@ -85,7 +85,7 @@ abstract class AC_Column_Menu extends AC_Column {
85
  }
86
 
87
  public function register_settings() {
88
- $this->add_setting( new AC_Settings_Column_LinkToMenu( $this ) );
89
  }
90
 
91
- }
1
  <?php
2
 
3
+ namespace AC\Column;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * Column displaying the menus the item is used in. Supported by all object types that
11
  *
12
  * @since 2.2.5
13
  */
14
+ abstract class Menu extends Column {
15
 
16
  public function __construct() {
17
  $this->set_type( 'column-used_by_menu' );
19
  }
20
 
21
  /**
 
22
  * @since 2.2.5
23
  */
24
  public function get_raw_value( $object_id ) {
85
  }
86
 
87
  public function register_settings() {
88
+ $this->add_setting( new Settings\Column\LinkToMenu( $this ) );
89
  }
90
 
91
+ }
classes/Column/Meta.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Column_Meta extends AC_Column {
 
 
8
 
9
  /**
10
  * Return the meta_key of this column
@@ -35,7 +35,7 @@ abstract class AC_Column_Meta extends AC_Column {
35
  }
36
 
37
  /**
38
- * @see AC_Column::get_raw_value()
39
  * @since 2.0.3
40
  */
41
  public function get_raw_value( $id ) {
@@ -71,4 +71,4 @@ abstract class AC_Column_Meta extends AC_Column {
71
  return get_metadata( $this->get_meta_type(), $id, $meta_key, $single );
72
  }
73
 
74
- }
1
  <?php
2
 
3
+ namespace AC\Column;
 
 
4
 
5
+ use AC\Column;
6
+
7
+ abstract class Meta extends Column {
8
 
9
  /**
10
  * Return the meta_key of this column
35
  }
36
 
37
  /**
38
+ * @see Column::get_raw_value()
39
  * @since 2.0.3
40
  */
41
  public function get_raw_value( $id ) {
71
  return get_metadata( $this->get_meta_type(), $id, $meta_key, $single );
72
  }
73
 
74
+ }
classes/Column/Placeholder.php CHANGED
@@ -1,25 +1,26 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * ACF Placeholder column, holding a CTA for Admin Columns Pro.
9
  *
10
  * @since 2.2
11
  */
12
- class AC_Column_Placeholder extends AC_Column {
13
 
14
  /**
15
- * @var AC_Admin_Addon
16
  */
17
  private $addon;
18
 
19
  /**
20
- * @param AC_Admin_Addon $addon
21
  */
22
- public function set_addon( AC_Admin_Addon $addon ) {
23
  $this->addon = $addon;
24
 
25
  $this->set_type( 'placeholder-' . $addon->get_slug() );
@@ -49,4 +50,4 @@ class AC_Column_Placeholder extends AC_Column {
49
  return ob_get_clean();
50
  }
51
 
52
- }
1
  <?php
2
 
3
+ namespace AC\Column;
4
+
5
+ use AC\Admin\Addon;
6
+ use AC\Column;
7
 
8
  /**
9
  * ACF Placeholder column, holding a CTA for Admin Columns Pro.
10
  *
11
  * @since 2.2
12
  */
13
+ class Placeholder extends Column {
14
 
15
  /**
16
+ * @var Addon
17
  */
18
  private $addon;
19
 
20
  /**
21
+ * @param Addon $addon
22
  */
23
+ public function set_addon( Addon $addon ) {
24
  $this->addon = $addon;
25
 
26
  $this->set_type( 'placeholder-' . $addon->get_slug() );
50
  return ob_get_clean();
51
  }
52
 
53
+ }
classes/Column/Post/Attachment.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Attachment extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-attachment' );
@@ -40,7 +41,7 @@ class AC_Column_Post_Attachment extends AC_Column {
40
  }
41
 
42
  public function register_settings() {
43
- $this->add_setting( new AC_Settings_Column_AttachmentDisplay( $this ) );
44
  }
45
 
46
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Attachment extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-attachment' );
41
  }
42
 
43
  public function register_settings() {
44
+ $this->add_setting( new Settings\Column\AttachmentDisplay( $this ) );
45
  }
46
 
47
+ }
classes/Column/Post/Author.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Author extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Post_Author extends AC_Column {
18
  $this->get_setting( 'width' )->set_default( 10 );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Author extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  $this->get_setting( 'width' )->set_default( 10 );
19
  }
20
 
21
+ }
classes/Column/Post/AuthorName.php CHANGED
@@ -1,8 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
 
6
 
7
  /**
8
  * Column displaying information about the author of a post, such as the
@@ -10,7 +12,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.0
12
  */
13
- class AC_Column_Post_AuthorName extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-author_name' );
@@ -21,7 +23,7 @@ class AC_Column_Post_AuthorName extends AC_Column {
21
  $user_id = $this->get_raw_value( $id );
22
  $value = $this->get_formatted_value( $user_id, $user_id );
23
 
24
- if ( $value instanceof AC_Collection ) {
25
  $value = $value->filter()->implode( $this->get_separator() );
26
  }
27
 
@@ -37,7 +39,7 @@ class AC_Column_Post_AuthorName extends AC_Column {
37
  }
38
 
39
  public function register_settings() {
40
- $this->add_setting( new AC_Settings_Column_User( $this ) );
41
  }
42
 
43
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC;
6
+ use AC\Column;
7
+ use AC\Settings;
8
 
9
  /**
10
  * Column displaying information about the author of a post, such as the
12
  *
13
  * @since 2.0
14
  */
15
+ class AuthorName extends Column {
16
 
17
  public function __construct() {
18
  $this->set_type( 'column-author_name' );
23
  $user_id = $this->get_raw_value( $id );
24
  $value = $this->get_formatted_value( $user_id, $user_id );
25
 
26
+ if ( $value instanceof AC\Collection ) {
27
  $value = $value->filter()->implode( $this->get_separator() );
28
  }
29
 
39
  }
40
 
41
  public function register_settings() {
42
+ $this->add_setting( new Settings\Column\User( $this ) );
43
  }
44
 
45
+ }
classes/Column/Post/BeforeMoreTag.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_BeforeMoreTag extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-before_moretag' );
@@ -28,10 +29,10 @@ class AC_Column_Post_BeforeMoreTag extends AC_Column {
28
  }
29
 
30
  public function register_settings() {
31
- $word_limit = new AC_Settings_Column_WordLimit( $this );
32
  $word_limit->set_default( 15 );
33
 
34
  $this->add_setting( $word_limit );
35
  }
36
 
37
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class BeforeMoreTag extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-before_moretag' );
29
  }
30
 
31
  public function register_settings() {
32
+ $word_limit = new Settings\Column\WordLimit( $this );
33
  $word_limit->set_default( 15 );
34
 
35
  $this->add_setting( $word_limit );
36
  }
37
 
38
+ }
classes/Column/Post/Categories.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Categories extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -26,4 +26,4 @@ class AC_Column_Post_Categories extends AC_Column {
26
  return ac_helper()->taxonomy->is_taxonomy_registered( $this->get_post_type(), $this->get_taxonomy() );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Categories extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
26
  return ac_helper()->taxonomy->is_taxonomy_registered( $this->get_post_type(), $this->get_taxonomy() );
27
  }
28
 
29
+ }
classes/Column/Post/CommentCount.php CHANGED
@@ -1,8 +1,9 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * Column displaying the number of comments for an item, displaying either the total
@@ -10,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.0
12
  */
13
- class AC_Column_Post_CommentCount extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-comment_count' );
@@ -26,7 +27,7 @@ class AC_Column_Post_CommentCount extends AC_Column {
26
  }
27
 
28
  public function register_settings() {
29
- $this->add_setting( new AC_Settings_Column_CommentCount( $this ) );
30
  }
31
 
32
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * Column displaying the number of comments for an item, displaying either the total
11
  *
12
  * @since 2.0
13
  */
14
+ class CommentCount extends Column {
15
 
16
  public function __construct() {
17
  $this->set_type( 'column-comment_count' );
27
  }
28
 
29
  public function register_settings() {
30
+ $this->add_setting( new Settings\Column\CommentCount( $this ) );
31
  }
32
 
33
+ }
classes/Column/Post/CommentStatus.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Column displaying whether an item is open for comments, i.e. whether users can
@@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.0
12
  */
13
- class AC_Column_Post_CommentStatus extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-comment_status' );
@@ -31,4 +31,4 @@ class AC_Column_Post_CommentStatus extends AC_Column {
31
  return get_post_field( 'comment_status', $post_id, 'raw' );
32
  }
33
 
34
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * Column displaying whether an item is open for comments, i.e. whether users can
10
  *
11
  * @since 2.0
12
  */
13
+ class CommentStatus extends Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-comment_status' );
31
  return get_post_field( 'comment_status', $post_id, 'raw' );
32
  }
33
 
34
+ }
classes/Column/Post/Comments.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Comments extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Post_Comments extends AC_Column {
18
  return post_type_supports( $this->get_post_type(), 'comments' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Comments extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  return post_type_supports( $this->get_post_type(), 'comments' );
19
  }
20
 
21
+ }
classes/Column/Post/Content.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.4
9
  */
10
- class AC_Column_Post_Content extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-content' );
@@ -19,8 +20,8 @@ class AC_Column_Post_Content extends AC_Column {
19
  }
20
 
21
  public function register_settings() {
22
- $this->add_setting( new AC_Settings_Column_StringLimit( $this ) );
23
- $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
24
  }
25
 
26
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.4
10
  */
11
+ class Content extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-content' );
20
  }
21
 
22
  public function register_settings() {
23
+ $this->add_setting( new Settings\Column\StringLimit( $this ) );
24
+ $this->add_setting( new Settings\Column\BeforeAfter( $this ) );
25
  }
26
 
27
+ }
classes/Column/Post/Date.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Date extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'date' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Date extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'date' );
15
  }
16
 
17
+ }
classes/Column/Post/DatePublished.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.4
9
  */
10
- class AC_Column_Post_DatePublished extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-date_published' );
@@ -45,7 +46,7 @@ class AC_Column_Post_DatePublished extends AC_Column {
45
  }
46
 
47
  public function register_settings() {
48
- $this->add_setting( new AC_Settings_Column_Date( $this ) );
49
  }
50
 
51
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.4
10
  */
11
+ class DatePublished extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-date_published' );
46
  }
47
 
48
  public function register_settings() {
49
+ $this->add_setting( new Settings\Column\Date( $this ) );
50
  }
51
 
52
+ }
classes/Column/Post/Depth.php CHANGED
@@ -1,15 +1,15 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Depth of the current page (number of ancestors + 1)
9
  *
10
  * @since 2.3.4
11
  */
12
- class AC_Column_Post_Depth extends AC_Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-depth' );
@@ -28,4 +28,4 @@ class AC_Column_Post_Depth extends AC_Column {
28
  return is_post_type_hierarchical( $this->get_post_type() );
29
  }
30
 
31
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * Depth of the current page (number of ancestors + 1)
9
  *
10
  * @since 2.3.4
11
  */
12
+ class Depth extends Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-depth' );
28
  return is_post_type_hierarchical( $this->get_post_type() );
29
  }
30
 
31
+ }
classes/Column/Post/EstimatedReadingTime.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.3.3
9
  */
10
- class AC_Column_Post_EstimatedReadingTime extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-estimated_reading_time' );
@@ -29,7 +30,7 @@ class AC_Column_Post_EstimatedReadingTime extends AC_Column {
29
  }
30
 
31
  public function register_settings() {
32
- $this->add_setting( new AC_Settings_Column_WordsPerMinute( $this ) );
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.3.3
10
  */
11
+ class EstimatedReadingTime extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-estimated_reading_time' );
30
  }
31
 
32
  public function register_settings() {
33
+ $this->add_setting( new Settings\Column\WordsPerMinute( $this ) );
34
  }
35
 
36
+ }
classes/Column/Post/Excerpt.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Excerpt extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-excerpt' );
@@ -29,8 +30,8 @@ class AC_Column_Post_Excerpt extends AC_Column {
29
  }
30
 
31
  public function register_settings() {
32
- $this->add_setting( new AC_Settings_Column_WordLimit( $this ) );
33
- $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
34
  }
35
 
36
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Excerpt extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-excerpt' );
30
  }
31
 
32
  public function register_settings() {
33
+ $this->add_setting( new Settings\Column\WordLimit( $this ) );
34
+ $this->add_setting( new Settings\Column\BeforeAfter( $this ) );
35
  }
36
 
37
+ }
classes/Column/Post/FeaturedImage.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_FeaturedImage extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-featured_image' );
@@ -44,11 +45,11 @@ class AC_Column_Post_FeaturedImage extends AC_Column_Meta {
44
  }
45
 
46
  public function register_settings() {
47
- $this->add_setting( new AC_Settings_Column_Image( $this ) );
48
  }
49
 
50
  public function is_valid() {
51
  return post_type_supports( $this->get_post_type(), 'thumbnail' );
52
  }
53
 
54
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class FeaturedImage extends Column\Meta {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-featured_image' );
45
  }
46
 
47
  public function register_settings() {
48
+ $this->add_setting( new Settings\Column\Image( $this ) );
49
  }
50
 
51
  public function is_valid() {
52
  return post_type_supports( $this->get_post_type(), 'thumbnail' );
53
  }
54
 
55
+ }
classes/Column/Post/Formats.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Formats extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-post_formats' );
@@ -27,7 +28,7 @@ class AC_Column_Post_Formats extends AC_Column {
27
  }
28
 
29
  public function register_settings() {
30
- $this->add_setting( new AC_Settings_Column_PostFormatIcon( $this ) );
31
  }
32
 
33
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Formats extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-post_formats' );
28
  }
29
 
30
  public function register_settings() {
31
+ $this->add_setting( new Settings\Column\PostFormatIcon( $this ) );
32
  }
33
 
34
+ }
classes/Column/Post/ID.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_ID extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-postid' );
@@ -19,7 +20,7 @@ class AC_Column_Post_ID extends AC_Column {
19
  }
20
 
21
  public function register_settings() {
22
- $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class ID extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-postid' );
20
  }
21
 
22
  public function register_settings() {
23
+ $this->add_setting( new Settings\Column\BeforeAfter( $this ) );
24
  }
25
 
26
+ }
classes/Column/Post/LastModifiedAuthor.php CHANGED
@@ -1,8 +1,9 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * Column displaying information about the author of a post, such as the
@@ -10,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.0
12
  */
13
- class AC_Column_Post_LastModifiedAuthor extends AC_Column_Meta {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-last_modified_author' );
@@ -32,7 +33,7 @@ class AC_Column_Post_LastModifiedAuthor extends AC_Column_Meta {
32
  }
33
 
34
  public function register_settings() {
35
- $this->add_setting( new AC_Settings_Column_User( $this ) );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * Column displaying information about the author of a post, such as the
11
  *
12
  * @since 2.0
13
  */
14
+ class LastModifiedAuthor extends Column\Meta {
15
 
16
  public function __construct() {
17
  $this->set_type( 'column-last_modified_author' );
33
  }
34
 
35
  public function register_settings() {
36
+ $this->add_setting( new Settings\Column\User( $this ) );
37
  }
38
 
39
+ }
classes/Column/Post/Menu.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Column_Post_Menu extends AC_Column_Menu {
 
 
8
 
9
  /**
10
  * @return string
@@ -20,4 +20,4 @@ class AC_Column_Post_Menu extends AC_Column_Menu {
20
  return 'post_type';
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
 
 
4
 
5
+ use AC\Column;
6
+
7
+ class Menu extends Column\Menu {
8
 
9
  /**
10
  * @return string
20
  return 'post_type';
21
  }
22
 
23
+ }
classes/Column/Post/Modified.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Modified extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-modified' );
@@ -19,10 +20,10 @@ class AC_Column_Post_Modified extends AC_Column {
19
  }
20
 
21
  public function register_settings() {
22
- $date = new AC_Settings_Column_Date( $this );
23
  $date->set_default( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) );
24
 
25
  $this->add_setting( $date );
26
  }
27
 
28
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Modified extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-modified' );
20
  }
21
 
22
  public function register_settings() {
23
+ $date = new Settings\Column\Date( $this );
24
  $date->set_default( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) );
25
 
26
  $this->add_setting( $date );
27
  }
28
 
29
+ }
classes/Column/Post/Order.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Order extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-order' );
@@ -26,4 +26,4 @@ class AC_Column_Post_Order extends AC_Column {
26
  return get_post_field( 'menu_order', $post_id );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Order extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-order' );
26
  return get_post_field( 'menu_order', $post_id );
27
  }
28
 
29
+ }
classes/Column/Post/PageTemplate.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_PageTemplate extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-page_template' );
@@ -39,4 +39,4 @@ class AC_Column_Post_PageTemplate extends AC_Column_Meta {
39
  return get_page_templates();
40
  }
41
 
42
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class PageTemplate extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-page_template' );
39
  return get_page_templates();
40
  }
41
 
42
+ }
classes/Column/Post/Path.php CHANGED
@@ -1,15 +1,15 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Column displaying path (without URL, e.g. "/my-category/sample-post/") to the front-end location of this item.
9
  *
10
  * @since 2.2.3
11
  */
12
- class AC_Column_Post_Path extends AC_Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-path' );
@@ -24,4 +24,4 @@ class AC_Column_Post_Path extends AC_Column {
24
  return str_replace( home_url(), '', get_permalink( $post_id ) );
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * Column displaying path (without URL, e.g. "/my-category/sample-post/") to the front-end location of this item.
9
  *
10
  * @since 2.2.3
11
  */
12
+ class Path extends Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-path' );
24
  return str_replace( home_url(), '', get_permalink( $post_id ) );
25
  }
26
 
27
+ }
classes/Column/Post/Permalink.php CHANGED
@@ -1,15 +1,15 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Column displaying full item permalink (including URL).
9
  *
10
  * @since 2.0
11
  */
12
- class AC_Column_Post_Permalink extends AC_Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-permalink' );
@@ -26,4 +26,4 @@ class AC_Column_Post_Permalink extends AC_Column {
26
  return get_permalink( $id );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * Column displaying full item permalink (including URL).
9
  *
10
  * @since 2.0
11
  */
12
+ class Permalink extends Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-permalink' );
26
  return get_permalink( $id );
27
  }
28
 
29
+ }
classes/Column/Post/PingStatus.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_PingStatus extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-ping_status' );
@@ -28,4 +28,4 @@ class AC_Column_Post_PingStatus extends AC_Column {
28
  return get_post_field( 'ping_status', $post_id, 'raw' );
29
  }
30
 
31
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class PingStatus extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-ping_status' );
28
  return get_post_field( 'ping_status', $post_id, 'raw' );
29
  }
30
 
31
+ }
classes/Column/Post/{Parent.php → PostParent.php} RENAMED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Parent extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-parent' );
@@ -34,4 +34,4 @@ class AC_Column_Post_Parent extends AC_Column {
34
  return is_post_type_hierarchical( $this->get_post_type() );
35
  }
36
 
37
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class PostParent extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-parent' );
34
  return is_post_type_hierarchical( $this->get_post_type() );
35
  }
36
 
37
+ }
classes/Column/Post/Shortcodes.php CHANGED
@@ -1,15 +1,15 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Display used shortcodes
9
  *
10
  * @since 2.3.5
11
  */
12
- class AC_Column_Post_Shortcodes extends AC_Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-shortcode' );
@@ -62,4 +62,4 @@ class AC_Column_Post_Shortcodes extends AC_Column {
62
  return $shortcodes;
63
  }
64
 
65
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * Display used shortcodes
9
  *
10
  * @since 2.3.5
11
  */
12
+ class Shortcodes extends Column {
13
 
14
  public function __construct() {
15
  $this->set_type( 'column-shortcode' );
62
  return $shortcodes;
63
  }
64
 
65
+ }
classes/Column/Post/Shortlink.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Shortlink extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-shortlink' );
@@ -24,4 +24,4 @@ class AC_Column_Post_Shortlink extends AC_Column {
24
  return wp_get_shortlink( $post_id );
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Shortlink extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-shortlink' );
24
  return wp_get_shortlink( $post_id );
25
  }
26
 
27
+ }
classes/Column/Post/Slug.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Slug extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-slug' );
@@ -22,4 +22,4 @@ class AC_Column_Post_Slug extends AC_Column {
22
  return get_post_field( 'post_name', $post_id, 'raw' );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Slug extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-slug' );
22
  return get_post_field( 'post_name', $post_id, 'raw' );
23
  }
24
 
25
+ }
classes/Column/Post/Status.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Column_Post_Status extends AC_Column {
 
 
 
8
 
9
  public function __construct() {
10
  $this->set_type( 'column-status' );
@@ -16,7 +17,7 @@ class AC_Column_Post_Status extends AC_Column {
16
  }
17
 
18
  public function register_settings() {
19
- $this->add_setting( new AC_Settings_Column_StatusIcon( $this ) );
20
  }
21
 
22
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
 
 
4
 
5
+ use AC\Column;
6
+ use AC\Settings;
7
+
8
+ class Status extends Column {
9
 
10
  public function __construct() {
11
  $this->set_type( 'column-status' );
17
  }
18
 
19
  public function register_settings() {
20
+ $this->add_setting( new Settings\Column\StatusIcon( $this ) );
21
  }
22
 
23
+ }
classes/Column/Post/Sticky.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_Sticky extends AC_Column {
11
 
12
  private $stickies = null;
13
 
@@ -37,4 +37,4 @@ class AC_Column_Post_Sticky extends AC_Column {
37
  return in_array( $post_id, (array) $this->stickies );
38
  }
39
 
40
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Sticky extends Column {
11
 
12
  private $stickies = null;
13
 
37
  return in_array( $post_id, (array) $this->stickies );
38
  }
39
 
40
+ }
classes/Column/Post/Tags.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Tags extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -26,4 +26,4 @@ class AC_Column_Post_Tags extends AC_Column {
26
  return ac_helper()->taxonomy->is_taxonomy_registered( $this->get_post_type(), $this->get_taxonomy() );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Tags extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
26
  return ac_helper()->taxonomy->is_taxonomy_registered( $this->get_post_type(), $this->get_taxonomy() );
27
  }
28
 
29
+ }
classes/Column/Post/Taxonomy.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Taxonomy extends AC_Column_Taxonomy {
11
 
12
  /**
13
  * @return bool True when post type has associated taxonomies
@@ -16,4 +16,4 @@ class AC_Column_Post_Taxonomy extends AC_Column_Taxonomy {
16
  return get_object_taxonomies( $this->get_post_type() ) ? true : false;
17
  }
18
 
19
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Taxonomy extends Column\Taxonomy {
11
 
12
  /**
13
  * @return bool True when post type has associated taxonomies
16
  return get_object_taxonomies( $this->get_post_type() ) ? true : false;
17
  }
18
 
19
+ }
classes/Column/Post/Title.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_Post_Title extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
@@ -18,4 +18,4 @@ class AC_Column_Post_Title extends AC_Column {
18
  return post_type_supports( $this->get_post_type(), 'title' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Title extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
18
  return post_type_supports( $this->get_post_type(), 'title' );
19
  }
20
 
21
+ }
classes/Column/Post/TitleRaw.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.2.4
9
  */
10
- class AC_Column_Post_TitleRaw extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-title_raw' );
@@ -19,7 +20,7 @@ class AC_Column_Post_TitleRaw extends AC_Column {
19
  }
20
 
21
  public function register_settings() {
22
- $this->add_setting( new AC_Settings_Column_PostLink( $this ) );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.2.4
10
  */
11
+ class TitleRaw extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-title_raw' );
20
  }
21
 
22
  public function register_settings() {
23
+ $this->add_setting( new Settings\Column\PostLink( $this ) );
24
  }
25
 
26
+ }
classes/Column/Post/WordCount.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_Post_WordCount extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-word_count' );
@@ -22,4 +22,4 @@ class AC_Column_Post_WordCount extends AC_Column {
22
  return post_type_supports( $this->get_post_type(), 'editor' );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\Post;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class WordCount extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-word_count' );
22
  return post_type_supports( $this->get_post_type(), 'editor' );
23
  }
24
 
25
+ }
classes/Column/{RelationInterface.php → Relation.php} RENAMED
@@ -1,16 +1,16 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- interface AC_Column_RelationInterface {
 
 
8
 
9
  /**
10
  * Return information about the relation this column has.
11
  *
12
- * @return AC_Relation
13
  */
14
  public function get_relation_object();
15
 
16
- }
1
  <?php
2
 
3
+ namespace AC\Column;
 
 
4
 
5
+ use AC;
6
+
7
+ interface Relation {
8
 
9
  /**
10
  * Return information about the relation this column has.
11
  *
12
+ * @return AC\Relation
13
  */
14
  public function get_relation_object();
15
 
16
+ }
classes/Column/Taxonomy.php CHANGED
@@ -1,8 +1,9 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * Taxonomy column, displaying terms from a taxonomy for any object type (i.e. posts)
@@ -10,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  *
11
  * @since 2.0
12
  */
13
- class AC_Column_Taxonomy extends AC_Column {
14
 
15
  public function __construct() {
16
  $this->set_type( 'column-taxonomy' );
@@ -47,7 +48,7 @@ class AC_Column_Taxonomy extends AC_Column {
47
  }
48
 
49
  public function register_settings() {
50
- $this->add_setting( new AC_Settings_Column_Taxonomy( $this ) );
51
  }
52
 
53
- }
1
  <?php
2
 
3
+ namespace AC\Column;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * Taxonomy column, displaying terms from a taxonomy for any object type (i.e. posts)
11
  *
12
  * @since 2.0
13
  */
14
+ class Taxonomy extends Column {
15
 
16
  public function __construct() {
17
  $this->set_type( 'column-taxonomy' );
48
  }
49
 
50
  public function register_settings() {
51
+ $this->add_setting( new Settings\Column\Taxonomy( $this ) );
52
  }
53
 
54
+ }
classes/Column/User/CommentCount.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_CommentCount extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_commentcount' );
@@ -22,4 +22,4 @@ class AC_Column_User_CommentCount extends AC_Column {
22
  ) );
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class CommentCount extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_commentcount' );
22
  ) );
23
  }
24
 
25
+ }
classes/Column/User/Description.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_Description extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_description' );
@@ -19,8 +20,8 @@ class AC_Column_User_Description extends AC_Column {
19
  }
20
 
21
  public function register_settings() {
22
- $this->add_setting( new AC_Settings_Column_WordLimit( $this ) );
23
- $this->add_setting( new AC_Settings_Column_BeforeAfter( $this ) );
24
  }
25
 
26
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Description extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-user_description' );
20
  }
21
 
22
  public function register_settings() {
23
+ $this->add_setting( new Settings\Column\WordLimit( $this ) );
24
+ $this->add_setting( new Settings\Column\BeforeAfter( $this ) );
25
  }
26
 
27
+ }
classes/Column/User/DisplayName.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_DisplayName extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-display_name' );
@@ -24,4 +24,4 @@ class AC_Column_User_DisplayName extends AC_Column {
24
  return $userdata->display_name;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class DisplayName extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-display_name' );
24
  return $userdata->display_name;
25
  }
26
 
27
+ }
classes/Column/User/Email.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_User_Email extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'email' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Email extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'email' );
15
  }
16
 
17
+ }
classes/Column/User/FirstName.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_FirstName extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-first_name' );
@@ -32,4 +32,4 @@ class AC_Column_User_FirstName extends AC_Column_Meta {
32
  return get_user_meta( $user_id, $this->get_meta_key(), true );
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class FirstName extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-first_name' );
32
  return get_user_meta( $user_id, $this->get_meta_key(), true );
33
  }
34
 
35
+ }
classes/Column/User/ID.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_ID extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_id' );
@@ -22,4 +22,4 @@ class AC_Column_User_ID extends AC_Column {
22
  return $user_id;
23
  }
24
 
25
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class ID extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_id' );
22
  return $user_id;
23
  }
24
 
25
+ }
classes/Column/User/LastName.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_LastName extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-last_name' );
@@ -32,4 +32,4 @@ class AC_Column_User_LastName extends AC_Column_Meta {
32
  return $this->get_meta_value( $user_id, $this->get_meta_key() );
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class LastName extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-last_name' );
32
  return $this->get_meta_value( $user_id, $this->get_meta_key() );
33
  }
34
 
35
+ }
classes/Column/User/Name.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_User_Name extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'name' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Name extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'name' );
15
  }
16
 
17
+ }
classes/Column/User/Nickname.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_Nickname extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-nickname' );
@@ -26,4 +26,4 @@ class AC_Column_User_Nickname extends AC_Column_Meta {
26
  return $this->get_meta_value( $user_id, $this->get_meta_key() );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Nickname extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-nickname' );
26
  return $this->get_meta_value( $user_id, $this->get_meta_key() );
27
  }
28
 
29
+ }
classes/Column/User/PostCount.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_PostCount extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_postcount' );
@@ -40,7 +41,7 @@ class AC_Column_User_PostCount extends AC_Column {
40
  }
41
 
42
  protected function register_settings() {
43
- $this->add_setting( new AC_Settings_Column_PostType( $this ) );
44
  }
45
 
46
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class PostCount extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-user_postcount' );
41
  }
42
 
43
  protected function register_settings() {
44
+ $this->add_setting( new Settings\Column\PostType( $this ) );
45
  }
46
 
47
+ }
classes/Column/User/Posts.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_User_Posts extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'posts' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Posts extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'posts' );
15
  }
16
 
17
+ }
classes/Column/User/Registered.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_Registered extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_registered' );
@@ -23,7 +24,7 @@ class AC_Column_User_Registered extends AC_Column {
23
  }
24
 
25
  public function register_settings() {
26
- $this->add_setting( new AC_Settings_Column_Date( $this ) );
27
  }
28
 
29
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
+ use AC\Settings;
7
 
8
  /**
9
  * @since 2.0
10
  */
11
+ class Registered extends Column {
12
 
13
  public function __construct() {
14
  $this->set_type( 'column-user_registered' );
24
  }
25
 
26
  public function register_settings() {
27
+ $this->add_setting( new Settings\Column\Date( $this ) );
28
  }
29
 
30
+ }
classes/Column/User/RichEditing.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Column_User_RichEditing extends AC_Column {
 
 
8
 
9
  public function __construct() {
10
  $this->set_type( 'column-rich_editing' );
@@ -25,4 +25,4 @@ class AC_Column_User_RichEditing extends AC_Column {
25
  return $userdata->rich_editing == 'true' ? true : false;
26
  }
27
 
28
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
 
 
4
 
5
+ use AC\Column;
6
+
7
+ class RichEditing extends Column {
8
 
9
  public function __construct() {
10
  $this->set_type( 'column-rich_editing' );
25
  return $userdata->rich_editing == 'true' ? true : false;
26
  }
27
 
28
+ }
classes/Column/User/Role.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_User_Role extends AC_Column_Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'role' );
@@ -32,4 +32,4 @@ class AC_Column_User_Role extends AC_Column_Meta {
32
  $this->get_setting( 'width' )->set_default( 15 );
33
  }
34
 
35
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Role extends Column\Meta {
11
 
12
  public function __construct() {
13
  $this->set_type( 'role' );
32
  $this->get_setting( 'width' )->set_default( 15 );
33
  }
34
 
35
+ }
classes/Column/User/ShowToolbar.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_User_ShowToolbar extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_show_toolbar' );
@@ -28,4 +28,4 @@ class AC_Column_User_ShowToolbar extends AC_Column {
28
  return $userdata->show_admin_bar_front;
29
  }
30
 
31
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class ShowToolbar extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_show_toolbar' );
28
  return $userdata->show_admin_bar_front;
29
  }
30
 
31
+ }
classes/Column/User/Url.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_Column_User_Url extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_url' );
@@ -24,4 +24,4 @@ class AC_Column_User_Url extends AC_Column {
24
  return $userdata->user_url;
25
  }
26
 
27
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Url extends Column {
11
 
12
  public function __construct() {
13
  $this->set_type( 'column-user_url' );
24
  return $userdata->user_url;
25
  }
26
 
27
+ }
classes/Column/User/Username.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.0
9
  */
10
- class AC_Column_User_Username extends AC_Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'username' );
15
  }
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Column\User;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 3.0
9
  */
10
+ class Username extends Column {
11
 
12
  public function __construct() {
13
  $this->set_original( true );
14
  $this->set_type( 'username' );
15
  }
16
 
17
+ }
classes/Column/WooCommercePlaceholder.php CHANGED
@@ -1,16 +1,16 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.4.7
9
  */
10
- class AC_Column_WooCommercePlaceholder extends AC_Column_Placeholder {
11
 
12
  public function is_valid() {
13
  return in_array( $this->get_post_type(), array( 'product', 'shop_order', 'shop_coupon' ) );
14
  }
15
 
16
- }
1
  <?php
2
 
3
+ namespace AC\Column;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * @since 2.4.7
9
  */
10
+ class WooCommercePlaceholder extends Column\Placeholder {
11
 
12
  public function is_valid() {
13
  return in_array( $this->get_post_type(), array( 'product', 'shop_order', 'shop_coupon' ) );
14
  }
15
 
16
+ }
classes/Dependencies.php ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Show a notice when plugin dependencies are not met
5
+ *
6
+ * @version 1.4
7
+ */
8
+ final class AC_Dependencies {
9
+
10
+ /**
11
+ * Missing dependency messages
12
+ *
13
+ * @var string[]
14
+ */
15
+ private $messages;
16
+
17
+ /**
18
+ * Basename of this plugin
19
+ *
20
+ * @var string
21
+ */
22
+ private $basename;
23
+
24
+ /**
25
+ * @var string Minimal required version of Admin Columns Pro
26
+ */
27
+ private $acp_version;
28
+
29
+ /**
30
+ * @param string $basename Plugin basename
31
+ */
32
+ public function __construct( $basename ) {
33
+ $this->messages = array();
34
+ $this->basename = $basename;
35
+
36
+ $this->load_data();
37
+ }
38
+
39
+ /**
40
+ * Register hooks
41
+ */
42
+ private function register() {
43
+ add_action( 'after_plugin_row_' . $this->basename, array( $this, 'display_notice' ), 5 );
44
+ add_action( 'admin_head', array( $this, 'display_notice_css' ) );
45
+ }
46
+
47
+ /**
48
+ * Increments the version if it's higher than the
49
+ *
50
+ * @param string $version
51
+ *
52
+ * @return $this
53
+ */
54
+ public function increment_acp_version( $version ) {
55
+ if ( version_compare( $version, $this->acp_version, '>=' ) ) {
56
+ $this->acp_version = $version;
57
+ }
58
+
59
+ return $this;
60
+ }
61
+
62
+ /**
63
+ * Load dependency parameters set outside this plugin
64
+ */
65
+ private function load_data() {
66
+ $data = get_option( 'ac_dependency_data', array() );
67
+
68
+ foreach ( $data as $k => $v ) {
69
+ if ( 0 !== strpos( $k, dirname( $this->basename ) ) ) {
70
+ continue;
71
+ }
72
+
73
+ if ( isset( $v['acp_version'] ) ) {
74
+ $this->increment_acp_version( $v['acp_version'] );
75
+ }
76
+
77
+ break;
78
+ }
79
+ }
80
+
81
+ /**
82
+ * Add missing dependency
83
+ *
84
+ * @param string $message
85
+ */
86
+ public function add_missing( $message ) {
87
+ // Register on first missing dependency
88
+ if ( ! $this->messages ) {
89
+ $this->register();
90
+ }
91
+
92
+ $this->messages[] = $message;
93
+ }
94
+
95
+ /**
96
+ * @return bool
97
+ */
98
+ public function has_missing() {
99
+ return ! empty( $this->messages );
100
+ }
101
+
102
+ /**
103
+ * Add missing dependency
104
+ *
105
+ * @param string $plugin
106
+ * @param string $url
107
+ * @param string $version
108
+ */
109
+ public function add_missing_plugin( $plugin, $url = null, $version = null ) {
110
+ $plugin = esc_html( $plugin );
111
+
112
+ if ( $url ) {
113
+ $plugin = sprintf( '<a href="%s">%s</a>', esc_url( $url ), $plugin );
114
+ }
115
+
116
+ if ( $version ) {
117
+ $plugin .= ' (' . sprintf( __( 'version %s or later', 'codepress-admin-columns' ), esc_html( $version ) ) . ')';
118
+ }
119
+
120
+ $message = sprintf( __( '%s needs to be installed and activated.', 'codepress-admin-columns' ), $plugin );
121
+
122
+ $this->add_missing( $message );
123
+ }
124
+
125
+ /**
126
+ * Check if Admin Columns Pro is installed and meets the minimum required version
127
+ *
128
+ * @param string $version
129
+ *
130
+ * @return bool
131
+ */
132
+ public function check_acp( $version ) {
133
+ $this->increment_acp_version( $version );
134
+
135
+ if ( function_exists( 'ACP' ) && ACP()->is_version_gte( $version ) ) {
136
+ return true;
137
+ }
138
+
139
+ $this->add_missing_plugin( 'Admin Column Pro', 'https://www.admincolumns.com', $this->acp_version );
140
+
141
+ return false;
142
+ }
143
+
144
+ /**
145
+ * Check current PHP version
146
+ *
147
+ * @param string $version
148
+ *
149
+ * @return bool
150
+ */
151
+ public function check_php_version( $version ) {
152
+ if ( version_compare( PHP_VERSION, $version, '>=' ) ) {
153
+ return true;
154
+ }
155
+
156
+ $documentation_url = 'https://www.admincolumns.com/documentation/getting-started/requirements/';
157
+
158
+ $parts[] = sprintf( __( 'This plugin requires at least PHP %s to function properly.', 'codepress-admin-columns' ), $version );
159
+ $parts[] = sprintf( __( 'Your server currently runs PHP %s.', 'codepress-admin-columns' ), PHP_VERSION );
160
+ $parts[] = sprintf( __( 'Read more about <a href="%s" target="_blank">requirements</a>a> in our documentation.', 'codepress-admin-columns' ), esc_url( $documentation_url ) );
161
+
162
+ $this->add_missing( implode( ' ', $parts ) );
163
+
164
+ return false;
165
+ }
166
+
167
+ /**
168
+ * URL that performs a search in the WordPress repository
169
+ *
170
+ * @param string $keywords
171
+ *
172
+ * @return string
173
+ */
174
+ public function get_search_url( $keywords ) {
175
+ $url = add_query_arg( array(
176
+ 'tab' => 'search',
177
+ 's' => $keywords,
178
+ ), admin_url( 'plugin-install.php' ) );
179
+
180
+ return $url;
181
+ }
182
+
183
+ /**
184
+ * Show a warning when dependencies are not met
185
+ */
186
+ public function display_notice() {
187
+ ?>
188
+
189
+ <tr class="plugin-update-tr active">
190
+ <td colspan="3" class="plugin-update colspanchange">
191
+ <div class="update-message notice inline notice-error notice-alt">
192
+ <p>
193
+ <?php _e( 'This plugin failed to load:', 'codepress-admin-columns' ); ?>
194
+ </p>
195
+
196
+ <ul>
197
+ <?php foreach ( $this->messages as $message ) : ?>
198
+ <li><?php echo $message; ?></li>
199
+ <?php endforeach; ?>
200
+ </ul>
201
+ </div>
202
+ </td>
203
+ </tr>
204
+
205
+ <?php
206
+ }
207
+
208
+ /**
209
+ * Load additional CSS for the warning
210
+ */
211
+ public function display_notice_css() {
212
+ ?>
213
+
214
+ <style>
215
+ .plugins tr[data-plugin='<?php echo $this->basename; ?>'] th,
216
+ .plugins tr[data-plugin='<?php echo $this->basename; ?>'] td {
217
+ box-shadow: none;
218
+ }
219
+ </style>
220
+
221
+ <?php
222
+ }
223
+
224
+ }
classes/Expirable.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ interface Expirable {
6
+
7
+ /**
8
+ * @param mixed $value
9
+ *
10
+ * @return bool
11
+ */
12
+ public function is_expired( $value = null );
13
+
14
+ }
classes/Form/Element.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Form_Element {
8
 
9
  /**
10
  * @var array
@@ -286,4 +284,4 @@ abstract class AC_Form_Element {
286
  return $this->render();
287
  }
288
 
289
- }
1
  <?php
2
 
3
+ namespace AC\Form;
 
 
4
 
5
+ abstract class Element {
6
 
7
  /**
8
  * @var array
284
  return $this->render();
285
  }
286
 
287
+ }
classes/Form/Element/Checkbox.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Form_Element_Checkbox extends AC_Form_Element {
 
 
8
 
9
  /**
10
  * @var bool
@@ -57,7 +57,7 @@ class AC_Form_Element_Checkbox extends AC_Form_Element {
57
  $value = (array) $this->get_value();
58
 
59
  foreach ( $options as $key => $label ) {
60
- $input = new AC_Form_Element_Input( $this->get_name() );
61
 
62
  $input->set_value( $key )
63
  ->set_type( $this->get_type() )
@@ -107,4 +107,4 @@ class AC_Form_Element_Checkbox extends AC_Form_Element {
107
  return $this->vertical;
108
  }
109
 
110
- }
1
  <?php
2
 
3
+ namespace AC\Form\Element;
 
 
4
 
5
+ use AC\Form\Element;
6
+
7
+ class Checkbox extends Element {
8
 
9
  /**
10
  * @var bool
57
  $value = (array) $this->get_value();
58
 
59
  foreach ( $options as $key => $label ) {
60
+ $input = new Input( $this->get_name() );
61
 
62
  $input->set_value( $key )
63
  ->set_type( $this->get_type() )
107
  return $this->vertical;
108
  }
109
 
110
+ }
classes/Form/Element/Input.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Form_Element_Input extends AC_Form_Element {
 
 
8
 
9
  protected function is_valid_type( $type ) {
10
  $valid_types = array(
@@ -54,4 +54,4 @@ class AC_Form_Element_Input extends AC_Form_Element {
54
  return $this;
55
  }
56
 
57
- }
1
  <?php
2
 
3
+ namespace AC\Form\Element;
 
 
4
 
5
+ use AC\Form\Element;
6
+
7
+ class Input extends Element {
8
 
9
  protected function is_valid_type( $type ) {
10
  $valid_types = array(
54
  return $this;
55
  }
56
 
57
+ }
classes/Form/Element/Radio.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Form_Element_Radio extends AC_Form_Element_Checkbox {
8
 
9
  protected function get_type() {
10
  return 'radio';
11
  }
12
 
13
- }
1
  <?php
2
 
3
+ namespace AC\Form\Element;
 
 
4
 
5
+ class Radio extends Checkbox {
6
 
7
  protected function get_type() {
8
  return 'radio';
9
  }
10
 
11
+ }
classes/Form/Element/Select.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Form_Element_Select extends AC_Form_Element {
 
 
8
 
9
  /**
10
  * @var string
@@ -97,4 +97,4 @@ class AC_Form_Element_Select extends AC_Form_Element {
97
  return $this;
98
  }
99
 
100
- }
1
  <?php
2
 
3
+ namespace AC\Form\Element;
 
 
4
 
5
+ use AC\Form\Element;
6
+
7
+ class Select extends Element {
8
 
9
  /**
10
  * @var string
97
  return $this;
98
  }
99
 
100
+ }
classes/Groups.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * Holds the groups to which columns can belong.
9
  */
10
- final class AC_Groups {
11
 
12
  const SORT_PRIORITY = 1;
13
 
@@ -151,4 +149,4 @@ final class AC_Groups {
151
  return true;
152
  }
153
 
154
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
  /**
6
  * Holds the groups to which columns can belong.
7
  */
8
+ final class Groups {
9
 
10
  const SORT_PRIORITY = 1;
11
 
149
  return true;
150
  }
151
 
152
+ }
classes/Helper.php CHANGED
@@ -1,37 +1,49 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
- * Class AC_Helper
9
  *
10
  * Implements __call to work around any keyword restrictions for PHP versions > 7
11
  *
12
- * @property AC_Helper_Array array
13
- * @property AC_Helper_Date date
14
- * @property AC_Helper_Image image
15
- * @property AC_Helper_Post post
16
- * @property AC_Helper_String string
17
- * @property AC_Helper_Taxonomy taxonomy
18
- * @property AC_Helper_User user
19
- * @property AC_Helper_Icon icon
20
- * @property AC_Helper_Html html
21
- * @property AC_Helper_Media media
22
- * @property AC_Helper_Network network
23
- * @property AC_Helper_File file
24
  */
25
- final class AC_Helper {
26
 
27
  public function __get( $helper ) {
28
- $class = 'AC_Helper_' . ucfirst( $helper );
29
 
30
- if ( class_exists( 'AC_Helper_' . ucfirst( $helper ) ) ) {
31
- return new $class;
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
 
34
  return false;
35
  }
36
 
37
- }
1
  <?php
2
 
3
+ namespace AC;
4
+
5
+ use AC;
6
 
7
  /**
8
+ * Class AC\Helper
9
  *
10
  * Implements __call to work around any keyword restrictions for PHP versions > 7
11
  *
12
+ * @property Helper\Arrays array
13
+ * @property Helper\Date date
14
+ * @property Helper\Image image
15
+ * @property Helper\Post post
16
+ * @property Helper\Strings string
17
+ * @property Helper\Taxonomy taxonomy
18
+ * @property Helper\User user
19
+ * @property Helper\Icon icon
20
+ * @property Helper\Html html
21
+ * @property Helper\Media media
22
+ * @property Helper\Network network
23
+ * @property Helper\File file
24
  */
25
+ final class Helper {
26
 
27
  public function __get( $helper ) {
 
28
 
29
+ switch ( $helper ) {
30
+
31
+ // Hotfix
32
+ case 'string' :
33
+ return new AC\Helper\Strings;
34
+
35
+ case 'array' :
36
+ return new AC\Helper\Arrays;
37
+
38
+ default :
39
+ $class = 'AC\Helper\\' . ucfirst( $helper );
40
+
41
+ if ( class_exists( $class ) ) {
42
+ return new $class;
43
+ }
44
  }
45
 
46
  return false;
47
  }
48
 
49
+ }
classes/Helper/{Array.php → Arrays.php} RENAMED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Array {
8
 
9
  /**
10
  * Implode for multi dimensional array
@@ -145,4 +143,4 @@ class AC_Helper_Array {
145
  return ac_helper()->string->string_to_array_integers( $string );
146
  }
147
 
148
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Arrays {
6
 
7
  /**
8
  * Implode for multi dimensional array
143
  return ac_helper()->string->string_to_array_integers( $string );
144
  }
145
 
146
+ }
classes/Helper/Date.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Date {
8
 
9
  /**
10
  * @param string $date
@@ -30,7 +28,7 @@ class AC_Helper_Date {
30
  }
31
 
32
  // Date format: yyyymmdd ( often used by ACF ) must start with 19xx or 20xx and is 8 long
33
- // @todo: in theory a numeric string of 8 can also be a unix timestamp; no conversion would be needed
34
  if ( 8 === $length && ( strpos( $date, '20' ) === 0 || strpos( $date, '19' ) === 0 ) ) {
35
  $date = strtotime( $date );
36
  }
@@ -178,4 +176,4 @@ class AC_Helper_Date {
178
  return preg_replace( $replace_from, $replace_to, $format );
179
  }
180
 
181
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Date {
6
 
7
  /**
8
  * @param string $date
28
  }
29
 
30
  // Date format: yyyymmdd ( often used by ACF ) must start with 19xx or 20xx and is 8 long
31
+ // in theory a numeric string of 8 can also be a unix timestamp; no conversion would be needed
32
  if ( 8 === $length && ( strpos( $date, '20' ) === 0 || strpos( $date, '19' ) === 0 ) ) {
33
  $date = strtotime( $date );
34
  }
176
  return preg_replace( $replace_from, $replace_to, $format );
177
  }
178
 
179
+ }
classes/Helper/File.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_File {
8
 
9
  /**
10
  * Convert file size to readable format
@@ -48,4 +46,4 @@ class AC_Helper_File {
48
  );
49
  }
50
 
51
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class File {
6
 
7
  /**
8
  * Convert file size to readable format
46
  );
47
  }
48
 
49
+ }
classes/Helper/Html.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Html {
8
 
9
  /**
10
  * @param string $key
@@ -127,7 +125,7 @@ class AC_Helper_Html {
127
  }
128
 
129
  /**
130
- * Display a toggle box which trigger an ajax event on click. The ajax callback calls AC_Column::get_ajax_value.
131
  *
132
  * @param int $id
133
  * @param string $label
@@ -200,13 +198,13 @@ class AC_Helper_Html {
200
  $internal_links = array();
201
  $external_links = array();
202
 
203
- $dom = new DOMDocument();
204
  $dom->loadHTML( $string );
205
 
206
  $links = $dom->getElementsByTagName( 'a' );
207
 
208
  foreach ( $links as $link ) {
209
- /** @var DOMElement $link */
210
  $href = $link->getAttribute( 'href' );
211
 
212
  if ( 0 === strpos( $href, '#' ) ) {
@@ -482,4 +480,4 @@ class AC_Helper_Html {
482
  return '<div class="ac-image-container">' . $value . '</div>';
483
  }
484
 
485
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Html {
6
 
7
  /**
8
  * @param string $key
125
  }
126
 
127
  /**
128
+ * Display a toggle box which trigger an ajax event on click. The ajax callback calls AC\Column::get_ajax_value.
129
  *
130
  * @param int $id
131
  * @param string $label
198
  $internal_links = array();
199
  $external_links = array();
200
 
201
+ $dom = new \DOMDocument();
202
  $dom->loadHTML( $string );
203
 
204
  $links = $dom->getElementsByTagName( 'a' );
205
 
206
  foreach ( $links as $link ) {
207
+ /** @var \DOMElement $link */
208
  $href = $link->getAttribute( 'href' );
209
 
210
  if ( 0 === strpos( $href, '#' ) ) {
480
  return '<div class="ac-image-container">' . $value . '</div>';
481
  }
482
 
483
+ }
classes/Helper/Icon.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Icon {
8
 
9
  public function dashicon( $args = array() ) {
10
  $defaults = array(
@@ -75,4 +73,4 @@ class AC_Helper_Icon {
75
  return $is_true ? $this->yes( $tooltip ) : $this->no( $tooltip );
76
  }
77
 
78
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Icon {
6
 
7
  public function dashicon( $args = array() ) {
8
  $defaults = array(
73
  return $is_true ? $this->yes( $tooltip ) : $this->no( $tooltip );
74
  }
75
 
76
+ }
classes/Helper/Image.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Image {
8
 
9
  /**
10
  * Resize image
@@ -17,7 +15,7 @@ class AC_Helper_Image {
17
  * @param null|string $dest_path
18
  * @param int $jpeg_quality
19
  *
20
- * @return bool|string|WP_Error
21
  */
22
  public function resize( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 ) {
23
  $editor = wp_get_image_editor( $file );
@@ -309,7 +307,7 @@ class AC_Helper_Image {
309
  return array();
310
  }
311
 
312
- $dom = new DOMDocument;
313
  @$dom->loadHTML( $string );
314
  $dom->preserveWhiteSpace = false;
315
 
@@ -319,11 +317,11 @@ class AC_Helper_Image {
319
 
320
  foreach ( $images as $img ) {
321
 
322
- /** @var DOMElement $img */
323
  $urls[] = $img->getAttribute( 'src' );
324
  }
325
 
326
  return $urls;
327
  }
328
 
329
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Image {
6
 
7
  /**
8
  * Resize image
15
  * @param null|string $dest_path
16
  * @param int $jpeg_quality
17
  *
18
+ * @return bool|string|\WP_Error
19
  */
20
  public function resize( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 ) {
21
  $editor = wp_get_image_editor( $file );
307
  return array();
308
  }
309
 
310
+ $dom = new \DOMDocument;
311
  @$dom->loadHTML( $string );
312
  $dom->preserveWhiteSpace = false;
313
 
317
 
318
  foreach ( $images as $img ) {
319
 
320
+ /** @var \DOMElement $img */
321
  $urls[] = $img->getAttribute( 'src' );
322
  }
323
 
324
  return $urls;
325
  }
326
 
327
+ }
classes/Helper/Media.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Media {
8
 
9
  /**
10
  * @param string $image_url
@@ -91,4 +89,4 @@ class AC_Helper_Media {
91
  return $image_id;
92
  }
93
 
94
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Media {
6
 
7
  /**
8
  * @param string $image_url
89
  return $image_id;
90
  }
91
 
92
+ }
classes/Helper/Network.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Network {
8
 
9
  /**
10
  * @param int $blog_id
@@ -29,10 +27,10 @@ class AC_Helper_Network {
29
  /**
30
  * @param int $blog_id
31
  *
32
- * @return WP_Theme
33
  */
34
  public function get_active_theme( $blog_id ) {
35
- return wp_get_theme( ac_helper()->network->get_site_option( $blog_id, 'stylesheet' ) );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Network {
6
 
7
  /**
8
  * @param int $blog_id
27
  /**
28
  * @param int $blog_id
29
  *
30
+ * @return \WP_Theme
31
  */
32
  public function get_active_theme( $blog_id ) {
33
+ return wp_get_theme( $this->get_site_option( $blog_id, 'stylesheet' ) );
34
  }
35
 
36
+ }
classes/Helper/Post.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Post {
8
 
9
  /**
10
  * @param int $id
@@ -95,7 +93,7 @@ class AC_Helper_Post {
95
  /**
96
  * Get Post Title or Media Filename
97
  *
98
- * @param int|WP_Post $post
99
  *
100
  * @return bool|string
101
  */
@@ -116,7 +114,7 @@ class AC_Helper_Post {
116
  }
117
 
118
  /**
119
- * @param WP_Post $post Post
120
  *
121
  * @return false|string Dash icon with tooltip
122
  */
@@ -149,4 +147,4 @@ class AC_Helper_Post {
149
  return $icon;
150
  }
151
 
152
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Post {
6
 
7
  /**
8
  * @param int $id
93
  /**
94
  * Get Post Title or Media Filename
95
  *
96
+ * @param int|\WP_Post $post
97
  *
98
  * @return bool|string
99
  */
114
  }
115
 
116
  /**
117
+ * @param \WP_Post $post Post
118
  *
119
  * @return false|string Dash icon with tooltip
120
  */
147
  return $icon;
148
  }
149
 
150
+ }
classes/Helper/{String.php → Strings.php} RENAMED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_String {
8
 
9
  /**
10
  * @since 1.3.1
@@ -67,7 +65,7 @@ class AC_Helper_String {
67
  *
68
  * @since 3.0
69
  *
70
- * @return string
71
  */
72
  public function trim_words( $string = '', $num_words = 30, $more = null ) {
73
  if ( ! $string ) {
@@ -240,7 +238,7 @@ class AC_Helper_String {
240
  * @return string Display empty value
241
  */
242
  public function get_empty_char() {
243
- _deprecated_function( __METHOD__, '3.0', 'AC_Column::get_empty_char' );
244
 
245
  return '&ndash;';
246
  }
@@ -298,4 +296,4 @@ class AC_Helper_String {
298
  return str_replace( $delimiter . $last, $compound . $last, implode( $delimiter, $words ) );
299
  }
300
 
301
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Strings {
6
 
7
  /**
8
  * @since 1.3.1
65
  *
66
  * @since 3.0
67
  *
68
+ * @return false|string
69
  */
70
  public function trim_words( $string = '', $num_words = 30, $more = null ) {
71
  if ( ! $string ) {
238
  * @return string Display empty value
239
  */
240
  public function get_empty_char() {
241
+ _deprecated_function( __METHOD__, '3.0', 'AC\Column::get_empty_char' );
242
 
243
  return '&ndash;';
244
  }
296
  return str_replace( $delimiter . $last, $compound . $last, implode( $delimiter, $words ) );
297
  }
298
 
299
+ }
classes/Helper/Taxonomy.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_Taxonomy {
8
 
9
  /**
10
- * @param WP_Term[] $terms Term objects
11
  * @param null|string $post_type
12
  *
13
  * @return array
@@ -39,7 +37,7 @@ class AC_Helper_Taxonomy {
39
  }
40
 
41
  /**
42
- * @param WP_Term $term
43
  *
44
  * @return false|string
45
  */
@@ -118,7 +116,7 @@ class AC_Helper_Taxonomy {
118
  * @param int $term_ids
119
  * @param string $taxonomy
120
  *
121
- * @return WP_Term[]
122
  */
123
  public function get_terms_by_ids( $term_ids, $taxonomy ) {
124
  $terms = array();
@@ -133,4 +131,4 @@ class AC_Helper_Taxonomy {
133
  return $terms;
134
  }
135
 
136
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class Taxonomy {
6
 
7
  /**
8
+ * @param \WP_Term[] $terms Term objects
9
  * @param null|string $post_type
10
  *
11
  * @return array
37
  }
38
 
39
  /**
40
+ * @param \WP_Term $term
41
  *
42
  * @return false|string
43
  */
116
  * @param int $term_ids
117
  * @param string $taxonomy
118
  *
119
+ * @return \WP_Term[]
120
  */
121
  public function get_terms_by_ids( $term_ids, $taxonomy ) {
122
  $terms = array();
131
  return $terms;
132
  }
133
 
134
+ }
classes/Helper/User.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Helper_User {
8
 
9
  /**
10
  * @param string $field
@@ -54,7 +52,7 @@ class AC_Helper_User {
54
  }
55
 
56
  /**
57
- * @param int|WP_User $user
58
  * @param false|string $format WP_user var, 'first_last_name' or 'roles'
59
  *
60
  * @return false|string
@@ -119,6 +117,9 @@ class AC_Helper_User {
119
 
120
  /**
121
  * @since 3.4.4
 
 
 
122
  */
123
  public function get_postcount( $user_id, $post_type ) {
124
  global $wpdb;
@@ -173,4 +174,4 @@ class AC_Helper_User {
173
  return $wpdb->get_col( "SELECT {$wpdb->users}.ID FROM {$wpdb->users}" );
174
  }
175
 
176
- }
1
  <?php
2
 
3
+ namespace AC\Helper;
 
 
4
 
5
+ class User {
6
 
7
  /**
8
  * @param string $field
52
  }
53
 
54
  /**
55
+ * @param int|\WP_User $user
56
  * @param false|string $format WP_user var, 'first_last_name' or 'roles'
57
  *
58
  * @return false|string
117
 
118
  /**
119
  * @since 3.4.4
120
+ *
121
+ * @param int $user_id
122
+ * @param string $post_type
123
  */
124
  public function get_postcount( $user_id, $post_type ) {
125
  global $wpdb;
174
  return $wpdb->get_col( "SELECT {$wpdb->users}.ID FROM {$wpdb->users}" );
175
  }
176
 
177
+ }
classes/ListScreen.php CHANGED
@@ -1,15 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * List Screen
9
  *
10
  * @since 2.0
11
  */
12
- abstract class AC_ListScreen {
13
 
14
  const OPTIONS_KEY = 'cpac_options_';
15
 
@@ -58,7 +56,7 @@ abstract class AC_ListScreen {
58
  /**
59
  * Name of the base PHP file (without extension).
60
  *
61
- * @see WP_Screen::base
62
  *
63
  * @since 2.0
64
  * @var string
@@ -68,7 +66,7 @@ abstract class AC_ListScreen {
68
  /**
69
  * The unique ID of the screen.
70
  *
71
- * @see WP_Screen::id
72
  *
73
  * @since 2.5
74
  * @var string
@@ -77,13 +75,13 @@ abstract class AC_ListScreen {
77
 
78
  /**
79
  * @since 2.0.1
80
- * @var AC_Column[]
81
  */
82
  private $columns;
83
 
84
  /**
85
  * @since 2.2
86
- * @var AC_Column[]
87
  */
88
  private $column_types;
89
 
@@ -130,22 +128,45 @@ abstract class AC_ListScreen {
130
  */
131
  abstract protected function register_column_types();
132
 
 
 
 
133
  public function get_key() {
134
  return $this->key;
135
  }
136
 
 
 
 
 
 
137
  protected function set_key( $key ) {
138
  $this->key = $key;
 
 
139
  }
140
 
 
 
 
141
  public function get_label() {
142
  return $this->label;
143
  }
144
 
 
 
 
 
 
145
  protected function set_label( $label ) {
146
  $this->label = $label;
 
 
147
  }
148
 
 
 
 
149
  public function get_singular_label() {
150
  if ( null === $this->singular_label ) {
151
  $this->set_singular_label( $this->label );
@@ -154,48 +175,105 @@ abstract class AC_ListScreen {
154
  return $this->singular_label;
155
  }
156
 
 
 
 
 
 
157
  protected function set_singular_label( $label ) {
158
  $this->singular_label = $label;
 
 
159
  }
160
 
 
 
 
161
  public function get_meta_type() {
162
  return $this->meta_type;
163
  }
164
 
 
 
 
 
 
165
  protected function set_meta_type( $meta_type ) {
166
  $this->meta_type = $meta_type;
 
 
167
  }
168
 
 
 
 
169
  public function get_screen_base() {
170
  return $this->screen_base;
171
  }
172
 
 
 
 
 
 
173
  protected function set_screen_base( $screen_base ) {
174
  $this->screen_base = $screen_base;
 
 
175
  }
176
 
 
 
 
177
  public function get_screen_id() {
178
  return $this->screen_id;
179
  }
180
 
 
 
 
 
 
181
  protected function set_screen_id( $screen_id ) {
182
  $this->screen_id = $screen_id;
 
 
183
  }
184
 
 
 
 
185
  public function get_page() {
186
  return $this->page;
187
  }
188
 
 
 
 
 
 
189
  protected function set_page( $page ) {
190
  $this->page = $page;
 
 
191
  }
192
 
 
 
 
193
  public function get_group() {
194
  return $this->group;
195
  }
196
 
 
 
 
 
 
197
  public function set_group( $group ) {
198
  $this->group = $group;
 
 
199
  }
200
 
201
  /**
@@ -228,7 +306,7 @@ abstract class AC_ListScreen {
228
  /**
229
  * @param string $layout_id
230
  *
231
- * @return AC_ListScreen
232
  */
233
  public function set_layout_id( $layout_id ) {
234
  $this->layout_id = $layout_id;
@@ -251,7 +329,7 @@ abstract class AC_ListScreen {
251
  /**
252
  * @since 2.0.3
253
  *
254
- * @param WP_Screen $screen
255
  *
256
  * @return boolean
257
  */
@@ -312,7 +390,7 @@ abstract class AC_ListScreen {
312
  /**
313
  * @since 3.0
314
  *
315
- * @return AC_Column[]
316
  */
317
  public function get_columns() {
318
  if ( null === $this->columns ) {
@@ -323,7 +401,7 @@ abstract class AC_ListScreen {
323
  }
324
 
325
  /**
326
- * @return AC_Column[]
327
  */
328
  public function get_column_types() {
329
  if ( null === $this->column_types ) {
@@ -346,7 +424,7 @@ abstract class AC_ListScreen {
346
 
347
  /**
348
  * @since 2.0
349
- * @return false|AC_Column
350
  */
351
  public function get_column_by_name( $name ) {
352
  $columns = $this->get_columns();
@@ -366,7 +444,7 @@ abstract class AC_ListScreen {
366
  /**
367
  * @param string $type
368
  *
369
- * @return false|AC_Column
370
  */
371
  public function get_column_by_type( $type ) {
372
  $column_types = $this->get_column_types();
@@ -403,9 +481,9 @@ abstract class AC_ListScreen {
403
  }
404
 
405
  /**
406
- * @param AC_Column $column
407
  */
408
- public function register_column_type( AC_Column $column ) {
409
  if ( ! $column->get_type() ) {
410
  return;
411
  }
@@ -478,7 +556,7 @@ abstract class AC_ListScreen {
478
  continue;
479
  }
480
 
481
- $column = new AC_Column();
482
 
483
  $column
484
  ->set_type( $type )
@@ -500,21 +578,23 @@ abstract class AC_ListScreen {
500
  /**
501
  * Register column types
502
  *
503
- * @param AC_ListScreen $this
504
  */
505
  do_action( 'ac/column_types', $this );
506
  }
507
 
508
  /**
509
- * @param string $dir Absolute path to the column directory
510
- * @param string $prefix Autoload prefix
511
  */
512
- public function register_column_types_from_dir( $dir, $prefix ) {
513
- $prefix = rtrim( $prefix, '_' ) . '_';
514
- $classes = AC()->autoloader()->get_class_names_from_dir( $dir, $prefix );
515
 
516
  foreach ( $classes as $class ) {
517
- $this->register_column_type( new $class );
 
 
 
 
518
  }
519
  }
520
 
@@ -536,7 +616,7 @@ abstract class AC_ListScreen {
536
  /**
537
  * @param array $settings Column options
538
  *
539
- * @return AC_Column|false
540
  */
541
  public function create_column( array $settings ) {
542
  if ( ! isset( $settings['type'] ) ) {
@@ -549,9 +629,8 @@ abstract class AC_ListScreen {
549
  return false;
550
  }
551
 
552
- /* @var AC_Column $column */
553
  $column = new $class();
554
-
555
  $column->set_list_screen( $this )
556
  ->set_type( $settings['type'] );
557
 
@@ -561,7 +640,6 @@ abstract class AC_ListScreen {
561
 
562
  // Mark as original
563
  if ( $this->is_original_column( $settings['type'] ) ) {
564
-
565
  $column->set_original( true );
566
  $column->set_name( $settings['type'] );
567
  }
@@ -583,7 +661,7 @@ abstract class AC_ListScreen {
583
  /**
584
  * @param array $data Column options
585
  */
586
- protected function register_column( AC_Column $column ) {
587
  $this->columns[ $column->get_name() ] = $column;
588
 
589
  /**
@@ -592,8 +670,8 @@ abstract class AC_ListScreen {
592
  *
593
  * @since 3.0.5
594
  *
595
- * @param AC_Column $column Column type object
596
- * @param AC_ListScreen $list_screen List screen object to which the column was registered
597
  */
598
  do_action( 'ac/list_screen/column_registered', $column, $this );
599
  }
@@ -629,11 +707,11 @@ abstract class AC_ListScreen {
629
  *
630
  * @param array $column_data
631
  *
632
- * @return WP_Error|true
633
  */
634
  public function store( $column_data ) {
635
  if ( ! $column_data ) {
636
- return new WP_Error( 'no-settings', __( 'No columns settings available.', 'codepress-admin-columns' ) );
637
  }
638
 
639
  $settings = array();
@@ -681,7 +759,7 @@ abstract class AC_ListScreen {
681
  $result = update_option( self::OPTIONS_KEY . $this->get_storage_key(), $settings );
682
 
683
  if ( ! $result ) {
684
- return new WP_Error( 'same-settings' );
685
  }
686
 
687
  /**
@@ -690,7 +768,7 @@ abstract class AC_ListScreen {
690
  *
691
  * @since 3.0
692
  *
693
- * @param AC_ListScreen $list_screen
694
  */
695
  do_action( 'ac/columns_stored', $this );
696
 
@@ -774,7 +852,7 @@ abstract class AC_ListScreen {
774
  *
775
  * @since 3.0.8
776
  *
777
- * @param AC_ListScreen $list_screen
778
  */
779
  do_action( 'ac/columns_delete', $this );
780
 
@@ -807,9 +885,9 @@ abstract class AC_ListScreen {
807
  *
808
  * @since 3.0
809
  *
810
- * @param string $value Column display value
811
- * @param int $id Object ID
812
- * @param AC_Column $column Column object
813
  */
814
  $value = apply_filters( 'ac/column/value', $value, $id, $column );
815
 
@@ -825,4 +903,4 @@ abstract class AC_ListScreen {
825
  return array();
826
  }
827
 
828
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
  /**
6
  * List Screen
7
  *
8
  * @since 2.0
9
  */
10
+ abstract class ListScreen {
11
 
12
  const OPTIONS_KEY = 'cpac_options_';
13
 
56
  /**
57
  * Name of the base PHP file (without extension).
58
  *
59
+ * @see \WP_Screen::base
60
  *
61
  * @since 2.0
62
  * @var string
66
  /**
67
  * The unique ID of the screen.
68
  *
69
+ * @see \WP_Screen::id
70
  *
71
  * @since 2.5
72
  * @var string
75
 
76
  /**
77
  * @since 2.0.1
78
+ * @var Column[]
79
  */
80
  private $columns;
81
 
82
  /**
83
  * @since 2.2
84
+ * @var Column[]
85
  */
86
  private $column_types;
87
 
128
  */
129
  abstract protected function register_column_types();
130
 
131
+ /**
132
+ * @return string
133
+ */
134
  public function get_key() {
135
  return $this->key;
136
  }
137
 
138
+ /**
139
+ * @param string $key
140
+ *
141
+ * @return self
142
+ */
143
  protected function set_key( $key ) {
144
  $this->key = $key;
145
+
146
+ return $this;
147
  }
148
 
149
+ /**
150
+ * @return string
151
+ */
152
  public function get_label() {
153
  return $this->label;
154
  }
155
 
156
+ /**
157
+ * @param string $label
158
+ *
159
+ * @return self
160
+ */
161
  protected function set_label( $label ) {
162
  $this->label = $label;
163
+
164
+ return $this;
165
  }
166
 
167
+ /**
168
+ * @return string
169
+ */
170
  public function get_singular_label() {
171
  if ( null === $this->singular_label ) {
172
  $this->set_singular_label( $this->label );
175
  return $this->singular_label;
176
  }
177
 
178
+ /**
179
+ * @param string $label
180
+ *
181
+ * @return self
182
+ */
183
  protected function set_singular_label( $label ) {
184
  $this->singular_label = $label;
185
+
186
+ return $this;
187
  }
188
 
189
+ /**
190
+ * @return string
191
+ */
192
  public function get_meta_type() {
193
  return $this->meta_type;
194
  }
195
 
196
+ /**
197
+ * @param string $meta_type
198
+ *
199
+ * @return self
200
+ */
201
  protected function set_meta_type( $meta_type ) {
202
  $this->meta_type = $meta_type;
203
+
204
+ return $this;
205
  }
206
 
207
+ /**
208
+ * @return string
209
+ */
210
  public function get_screen_base() {
211
  return $this->screen_base;
212
  }
213
 
214
+ /**
215
+ * @param string $screen_base
216
+ *
217
+ * @return self
218
+ */
219
  protected function set_screen_base( $screen_base ) {
220
  $this->screen_base = $screen_base;
221
+
222
+ return $this;
223
  }
224
 
225
+ /**
226
+ * @return string
227
+ */
228
  public function get_screen_id() {
229
  return $this->screen_id;
230
  }
231
 
232
+ /**
233
+ * @param string $screen_id
234
+ *
235
+ * @return self
236
+ */
237
  protected function set_screen_id( $screen_id ) {
238
  $this->screen_id = $screen_id;
239
+
240
+ return $this;
241
  }
242
 
243
+ /**
244
+ * @return string
245
+ */
246
  public function get_page() {
247
  return $this->page;
248
  }
249
 
250
+ /**
251
+ * @param string $page
252
+ *
253
+ * @return self
254
+ */
255
  protected function set_page( $page ) {
256
  $this->page = $page;
257
+
258
+ return $this;
259
  }
260
 
261
+ /**
262
+ * @return string
263
+ */
264
  public function get_group() {
265
  return $this->group;
266
  }
267
 
268
+ /**
269
+ * @param string $group
270
+ *
271
+ * @return self
272
+ */
273
  public function set_group( $group ) {
274
  $this->group = $group;
275
+
276
+ return $this;
277
  }
278
 
279
  /**
306
  /**
307
  * @param string $layout_id
308
  *
309
+ * @return self
310
  */
311
  public function set_layout_id( $layout_id ) {
312
  $this->layout_id = $layout_id;
329
  /**
330
  * @since 2.0.3
331
  *
332
+ * @param \WP_Screen $screen
333
  *
334
  * @return boolean
335
  */
390
  /**
391
  * @since 3.0
392
  *
393
+ * @return Column[]
394
  */
395
  public function get_columns() {
396
  if ( null === $this->columns ) {
401
  }
402
 
403
  /**
404
+ * @return Column[]
405
  */
406
  public function get_column_types() {
407
  if ( null === $this->column_types ) {
424
 
425
  /**
426
  * @since 2.0
427
+ * @return false|Column
428
  */
429
  public function get_column_by_name( $name ) {
430
  $columns = $this->get_columns();
444
  /**
445
  * @param string $type
446
  *
447
+ * @return false|Column
448
  */
449
  public function get_column_by_type( $type ) {
450
  $column_types = $this->get_column_types();
481
  }
482
 
483
  /**
484
+ * @param Column $column
485
  */
486
+ public function register_column_type( Column $column ) {
487
  if ( ! $column->get_type() ) {
488
  return;
489
  }
556
  continue;
557
  }
558
 
559
+ $column = new Column();
560
 
561
  $column
562
  ->set_type( $type )
578
  /**
579
  * Register column types
580
  *
581
+ * @param ListScreen $this
582
  */
583
  do_action( 'ac/column_types', $this );
584
  }
585
 
586
  /**
587
+ * @param string $namespace Namespace from the current path
 
588
  */
589
+ public function register_column_types_from_dir( $namespace ) {
590
+ $classes = Autoloader::instance()->get_class_names_from_dir( $namespace );
 
591
 
592
  foreach ( $classes as $class ) {
593
+ $reflection = new \ReflectionClass( $class );
594
+
595
+ if ( $reflection->isInstantiable() ) {
596
+ $this->register_column_type( new $class );
597
+ }
598
  }
599
  }
600
 
616
  /**
617
  * @param array $settings Column options
618
  *
619
+ * @return Column|false
620
  */
621
  public function create_column( array $settings ) {
622
  if ( ! isset( $settings['type'] ) ) {
629
  return false;
630
  }
631
 
632
+ /* @var Column $column */
633
  $column = new $class();
 
634
  $column->set_list_screen( $this )
635
  ->set_type( $settings['type'] );
636
 
640
 
641
  // Mark as original
642
  if ( $this->is_original_column( $settings['type'] ) ) {
 
643
  $column->set_original( true );
644
  $column->set_name( $settings['type'] );
645
  }
661
  /**
662
  * @param array $data Column options
663
  */
664
+ protected function register_column( Column $column ) {
665
  $this->columns[ $column->get_name() ] = $column;
666
 
667
  /**
670
  *
671
  * @since 3.0.5
672
  *
673
+ * @param Column $column Column type object
674
+ * @param ListScreen $list_screen List screen object to which the column was registered
675
  */
676
  do_action( 'ac/list_screen/column_registered', $column, $this );
677
  }
707
  *
708
  * @param array $column_data
709
  *
710
+ * @return \WP_Error|true
711
  */
712
  public function store( $column_data ) {
713
  if ( ! $column_data ) {
714
+ return new \WP_Error( 'no-settings', __( 'No columns settings available.', 'codepress-admin-columns' ) );
715
  }
716
 
717
  $settings = array();
759
  $result = update_option( self::OPTIONS_KEY . $this->get_storage_key(), $settings );
760
 
761
  if ( ! $result ) {
762
+ return new \WP_Error( 'same-settings' );
763
  }
764
 
765
  /**
768
  *
769
  * @since 3.0
770
  *
771
+ * @param ListScreen $list_screen
772
  */
773
  do_action( 'ac/columns_stored', $this );
774
 
852
  *
853
  * @since 3.0.8
854
  *
855
+ * @param ListScreen $list_screen
856
  */
857
  do_action( 'ac/columns_delete', $this );
858
 
885
  *
886
  * @since 3.0
887
  *
888
+ * @param string $value Column display value
889
+ * @param int $id Object ID
890
+ * @param Column $column Column object
891
  */
892
  $value = apply_filters( 'ac/column/value', $value, $id, $column );
893
 
903
  return array();
904
  }
905
 
906
+ }
classes/ListScreen/Comment.php CHANGED
@@ -1,43 +1,43 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 2.0
9
  */
10
- class AC_ListScreen_Comment extends AC_ListScreenWP {
11
 
12
  public function __construct() {
13
 
14
- $this->set_label( __( 'Comments' ) );
15
- $this->set_singular_label( __( 'Comment' ) );
16
- $this->set_meta_type( 'comment' );
17
- $this->set_screen_base( 'edit-comments' );
18
- $this->set_key( 'wp-comments' );
19
- $this->set_screen_id( 'edit-comments' );
20
- $this->set_group( 'comment' );
21
  }
22
 
23
  /**
24
  * @param int $id
25
  *
26
- * @return WP_Comment
27
  */
28
  protected function get_object( $id ) {
29
  return get_comment( $id );
30
  }
31
 
32
  /**
33
- * @return WP_Comments_List_Table
34
  */
35
  public function get_list_table() {
36
  require_once( ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php' );
37
 
38
- $table = new WP_Comments_List_Table( array( 'screen' => $this->get_screen_id() ) );
39
 
40
- // Since 4.4 the `floated_admin_avatar` filter is added in the constructor of the `WP_Comments_List_Table` class.
41
  // Here we remove the filter from the constructor.
42
  remove_filter( 'comment_author', array( $table, 'floated_admin_avatar' ), 10 );
43
 
@@ -67,10 +67,9 @@ class AC_ListScreen_Comment extends AC_ListScreenWP {
67
  * Register column types
68
  */
69
  protected function register_column_types() {
70
- $this->register_column_type( new AC_Column_CustomField );
71
- $this->register_column_type( new AC_Column_Actions );
72
-
73
- $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Comment', AC()->get_prefix() );
74
  }
75
 
76
- }
1
  <?php
2
 
3
+ namespace AC\ListScreen;
4
+
5
+ use AC;
6
 
7
  /**
8
  * @since 2.0
9
  */
10
+ class Comment extends AC\ListScreenWP {
11
 
12
  public function __construct() {
13
 
14
+ $this->set_label( __( 'Comments' ) )
15
+ ->set_singular_label( __( 'Comment' ) )
16
+ ->set_meta_type( 'comment' )
17
+ ->set_screen_base( 'edit-comments' )
18
+ ->set_key( 'wp-comments' )
19
+ ->set_screen_id( 'edit-comments' )
20
+ ->set_group( 'comment' );
21
  }
22
 
23
  /**
24
  * @param int $id
25
  *
26
+ * @return \WP_Comment
27
  */
28
  protected function get_object( $id ) {
29
  return get_comment( $id );
30
  }
31
 
32
  /**
33
+ * @return \WP_Comments_List_Table
34
  */
35
  public function get_list_table() {
36
  require_once( ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php' );
37
 
38
+ $table = new \WP_Comments_List_Table( array( 'screen' => $this->get_screen_id() ) );
39
 
40
+ // Since 4.4 the `floated_admin_avatar` filter is added in the constructor of the `\WP_Comments_List_Table` class.
41
  // Here we remove the filter from the constructor.
42
  remove_filter( 'comment_author', array( $table, 'floated_admin_avatar' ), 10 );
43
 
67
  * Register column types
68
  */
69
  protected function register_column_types() {
70
+ $this->register_column_type( new AC\Column\CustomField );
71
+ $this->register_column_type( new AC\Column\Actions );
72
+ $this->register_column_types_from_dir( 'AC\Column\Comment' );
 
73
  }
74
 
75
+ }
classes/ListScreen/Media.php CHANGED
@@ -1,19 +1,19 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_ListScreen_Media extends AC_ListScreenPost {
 
 
8
 
9
  public function __construct() {
10
  parent::__construct( 'attachment' );
11
 
12
- $this->set_screen_id( 'upload' );
13
- $this->set_screen_base( 'upload' );
14
- $this->set_key( 'wp-media' );
15
- $this->set_group( 'media' );
16
- $this->set_label( __( 'Media' ) );
17
  }
18
 
19
  public function set_manage_value_callback() {
@@ -21,12 +21,12 @@ class AC_ListScreen_Media extends AC_ListScreenPost {
21
  }
22
 
23
  /**
24
- * @return WP_Media_List_Table
25
  */
26
  public function get_list_table() {
27
  require_once( ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php' );
28
 
29
- return new WP_Media_List_Table( array( 'screen' => $this->get_screen_id() ) );
30
  }
31
 
32
  /**
@@ -53,7 +53,7 @@ class AC_ListScreen_Media extends AC_ListScreenPost {
53
  protected function register_column_types() {
54
  parent::register_column_types();
55
 
56
- $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Media', AC()->get_prefix() );
57
  }
58
 
59
- }
1
  <?php
2
 
3
+ namespace AC\ListScreen;
 
 
4
 
5
+ use AC;
6
+
7
+ class Media extends AC\ListScreenPost {
8
 
9
  public function __construct() {
10
  parent::__construct( 'attachment' );
11
 
12
+ $this->set_screen_id( 'upload' )
13
+ ->set_screen_base( 'upload' )
14
+ ->set_key( 'wp-media' )
15
+ ->set_group( 'media' )
16
+ ->set_label( __( 'Media' ) );
17
  }
18
 
19
  public function set_manage_value_callback() {
21
  }
22
 
23
  /**
24
+ * @return \WP_Media_List_Table
25
  */
26
  public function get_list_table() {
27
  require_once( ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php' );
28
 
29
+ return new \WP_Media_List_Table( array( 'screen' => $this->get_screen_id() ) );
30
  }
31
 
32
  /**
53
  protected function register_column_types() {
54
  parent::register_column_types();
55
 
56
+ $this->register_column_types_from_dir( 'AC\Column\Media' );
57
  }
58
 
59
+ }
classes/ListScreen/Post.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_ListScreen_Post extends AC_ListScreenPost {
 
 
8
 
9
  public function __construct( $post_type ) {
10
  parent::__construct( $post_type );
11
 
12
- $this->set_screen_base( 'edit' );
13
- $this->set_group( 'post' );
14
- $this->set_key( $post_type );
15
- $this->set_screen_id( $this->get_screen_base() . '-' . $post_type );
16
  }
17
 
18
  /**
@@ -23,12 +23,12 @@ class AC_ListScreen_Post extends AC_ListScreenPost {
23
  }
24
 
25
  /**
26
- * @return WP_Posts_List_Table
27
  */
28
  protected function get_list_table() {
29
  require_once( ABSPATH . 'wp-admin/includes/class-wp-posts-list-table.php' );
30
 
31
- return new WP_Posts_List_Table( array( 'screen' => $this->get_screen_id() ) );
32
  }
33
 
34
  /**
@@ -62,7 +62,7 @@ class AC_ListScreen_Post extends AC_ListScreenPost {
62
  protected function register_column_types() {
63
  parent::register_column_types();
64
 
65
- $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/Post', AC()->get_prefix() );
66
  }
67
 
68
- }
1
  <?php
2
 
3
+ namespace AC\ListScreen;
 
 
4
 
5
+ use AC\ListScreenPost;
6
+
7
+ class Post extends ListScreenPost {
8
 
9
  public function __construct( $post_type ) {
10
  parent::__construct( $post_type );
11
 
12
+ $this->set_screen_base( 'edit' )
13
+ ->set_group( 'post' )
14
+ ->set_key( $post_type )
15
+ ->set_screen_id( $this->get_screen_base() . '-' . $post_type );
16
  }
17
 
18
  /**
23
  }
24
 
25
  /**
26
+ * @return \WP_Posts_List_Table
27
  */
28
  protected function get_list_table() {
29
  require_once( ABSPATH . 'wp-admin/includes/class-wp-posts-list-table.php' );
30
 
31
+ return new \WP_Posts_List_Table( array( 'screen' => $this->get_screen_id() ) );
32
  }
33
 
34
  /**
62
  protected function register_column_types() {
63
  parent::register_column_types();
64
 
65
+ $this->register_column_types_from_dir( 'AC\Column\Post' );
66
  }
67
 
68
+ }
classes/ListScreen/User.php CHANGED
@@ -1,20 +1,20 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_ListScreen_User extends AC_ListScreenWP {
 
 
8
 
9
  public function __construct() {
10
 
11
- $this->set_label( __( 'Users' ) );
12
- $this->set_singular_label( __( 'User' ) );
13
- $this->set_meta_type( 'user' );
14
- $this->set_screen_base( 'users' );
15
- $this->set_screen_id( 'users' );
16
- $this->set_key( 'wp-users' );
17
- $this->set_group( 'user' );
18
  }
19
 
20
  /**
@@ -25,12 +25,12 @@ class AC_ListScreen_User extends AC_ListScreenWP {
25
  }
26
 
27
  /**
28
- * @return WP_Users_List_Table
29
  */
30
  public function get_list_table() {
31
  require_once( ABSPATH . 'wp-admin/includes/class-wp-users-list-table.php' );
32
 
33
- return new WP_Users_List_Table( array( 'screen' => $this->get_screen_id() ) );
34
  }
35
 
36
  /**
@@ -54,7 +54,7 @@ class AC_ListScreen_User extends AC_ListScreenWP {
54
  /**
55
  * @param int $id
56
  *
57
- * @return WP_User
58
  */
59
  protected function get_object( $id ) {
60
  return get_userdata( $id );
@@ -72,10 +72,10 @@ class AC_ListScreen_User extends AC_ListScreenWP {
72
  }
73
 
74
  protected function register_column_types() {
75
- $this->register_column_type( new AC_Column_CustomField );
76
- $this->register_column_type( new AC_Column_Actions );
77
 
78
- $this->register_column_types_from_dir( AC()->get_plugin_dir() . 'classes/Column/User', AC()->get_prefix() );
79
  }
80
 
81
- }
1
  <?php
2
 
3
+ namespace AC\ListScreen;
 
 
4
 
5
+ use AC;
6
+
7
+ class User extends AC\ListScreenWP {
8
 
9
  public function __construct() {
10
 
11
+ $this->set_label( __( 'Users' ) )
12
+ ->set_singular_label( __( 'User' ) )
13
+ ->set_meta_type( 'user' )
14
+ ->set_screen_base( 'users' )
15
+ ->set_screen_id( 'users' )
16
+ ->set_key( 'wp-users' )
17
+ ->set_group( 'user' );
18
  }
19
 
20
  /**
25
  }
26
 
27
  /**
28
+ * @return \WP_Users_List_Table
29
  */
30
  public function get_list_table() {
31
  require_once( ABSPATH . 'wp-admin/includes/class-wp-users-list-table.php' );
32
 
33
+ return new \WP_Users_List_Table( array( 'screen' => $this->get_screen_id() ) );
34
  }
35
 
36
  /**
54
  /**
55
  * @param int $id
56
  *
57
+ * @return \WP_User
58
  */
59
  protected function get_object( $id ) {
60
  return get_userdata( $id );
72
  }
73
 
74
  protected function register_column_types() {
75
+ $this->register_column_type( new AC\Column\CustomField );
76
+ $this->register_column_type( new AC\Column\Actions );
77
 
78
+ $this->register_column_types_from_dir( 'AC\Column\User' );
79
  }
80
 
81
+ }
classes/ListScreenFactory.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ class ListScreenFactory {
6
+
7
+ /**
8
+ * @param string $type
9
+ * @param int $id Optional (layout) ID
10
+ *
11
+ * @return ListScreen|false
12
+ */
13
+ public static function create( $type, $id = null ) {
14
+ $list_screens = AC()->get_list_screens();
15
+
16
+ if ( ! isset( $list_screens[ $type ] ) ) {
17
+ return false;
18
+ }
19
+
20
+ $list_screen = clone $list_screens[ $type ];
21
+
22
+ $list_screen->set_layout_id( $id );
23
+
24
+ return $list_screen;
25
+ }
26
+
27
+ }
classes/ListScreenGroups.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ class ListScreenGroups {
6
+
7
+ /**
8
+ * @return Groups
9
+ */
10
+ public static function get_groups() {
11
+ $groups = new Groups();
12
+
13
+ $groups->register_group( 'post', __( 'Post Type', 'codepress-admin-columns' ), 5 );
14
+ $groups->register_group( 'user', __( 'Users' ) );
15
+ $groups->register_group( 'media', __( 'Media' ) );
16
+ $groups->register_group( 'comment', __( 'Comments' ) );
17
+ $groups->register_group( 'link', __( 'Links' ), 15 );
18
+
19
+ do_action( 'ac/list_screen_groups', $groups );
20
+
21
+ return $groups;
22
+ }
23
+
24
+ }
classes/ListScreenPost.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_ListScreenPost extends AC_ListScreenWP {
8
 
9
  /**
10
  * @var string Post type
@@ -36,7 +34,7 @@ abstract class AC_ListScreenPost extends AC_ListScreenWP {
36
  /**
37
  * @param int $id
38
  *
39
- * @return WP_Post
40
  */
41
  protected function get_object( $id ) {
42
  return get_post( $id );
@@ -57,8 +55,8 @@ abstract class AC_ListScreenPost extends AC_ListScreenWP {
57
  * Register post specific columns
58
  */
59
  protected function register_column_types() {
60
- $this->register_column_type( new AC_Column_CustomField );
61
- $this->register_column_type( new AC_Column_Actions );
62
  }
63
 
64
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ abstract class ListScreenPost extends ListScreenWP {
6
 
7
  /**
8
  * @var string Post type
34
  /**
35
  * @param int $id
36
  *
37
+ * @return \WP_Post
38
  */
39
  protected function get_object( $id ) {
40
  return get_post( $id );
55
  * Register post specific columns
56
  */
57
  protected function register_column_types() {
58
+ $this->register_column_type( new Column\CustomField );
59
+ $this->register_column_type( new Column\Actions );
60
  }
61
 
62
+ }
classes/ListScreenWP.php CHANGED
@@ -1,18 +1,16 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * @since 3.1
9
  */
10
- abstract class AC_ListScreenWP extends AC_ListScreen {
11
 
12
  /**
13
- * Class name of the WP_List_Table instance
14
  *
15
- * @see WP_List_Table
16
  *
17
  * @since 3.0
18
  * @deprecated 3.1
@@ -22,7 +20,7 @@ abstract class AC_ListScreenWP extends AC_ListScreen {
22
  private $list_table_class;
23
 
24
  /**
25
- * @return WP_List_Table
26
  */
27
  abstract protected function get_list_table();
28
 
@@ -67,7 +65,7 @@ abstract class AC_ListScreenWP extends AC_ListScreen {
67
  /**
68
  * Get default column headers
69
  *
70
- * @see WP_List_Table::get_columns()
71
  *
72
  * @return array
73
  */
@@ -92,7 +90,7 @@ abstract class AC_ListScreenWP extends AC_ListScreen {
92
  * @param string $list_table_class
93
  */
94
  public function set_list_table_class( $list_table_class ) {
95
- _deprecated_function( __METHOD__, '3.1', 'AC_ListScreenWP::get_list_table()' );
96
 
97
  $this->list_table_class = (string) $list_table_class;
98
  }
@@ -105,9 +103,9 @@ abstract class AC_ListScreenWP extends AC_ListScreen {
105
  * @return object
106
  */
107
  protected function get_object_by_id( $id ) {
108
- _deprecated_function( __METHOD__, '3.1.4', 'AC_ListScreenWP::get_object()' );
109
 
110
  return $this->get_object( $id );
111
  }
112
 
113
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
  /**
6
  * @since 3.1
7
  */
8
+ abstract class ListScreenWP extends ListScreen {
9
 
10
  /**
11
+ * Class name of the \WP_List_Table instance
12
  *
13
+ * @see \WP_List_Table
14
  *
15
  * @since 3.0
16
  * @deprecated 3.1
20
  private $list_table_class;
21
 
22
  /**
23
+ * @return \WP_List_Table
24
  */
25
  abstract protected function get_list_table();
26
 
65
  /**
66
  * Get default column headers
67
  *
68
+ * @see \WP_List_Table::get_columns()
69
  *
70
  * @return array
71
  */
90
  * @param string $list_table_class
91
  */
92
  public function set_list_table_class( $list_table_class ) {
93
+ _deprecated_function( __METHOD__, '3.1', 'AC\ListScreenWP::get_list_table()' );
94
 
95
  $this->list_table_class = (string) $list_table_class;
96
  }
103
  * @return object
104
  */
105
  protected function get_object_by_id( $id ) {
106
+ _deprecated_function( __METHOD__, '3.1.4', 'AC\ListScreenWP::get_object()' );
107
 
108
  return $this->get_object( $id );
109
  }
110
 
111
+ }
classes/Message.php ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ abstract class Message {
6
+
7
+ const SUCCESS = 'updated';
8
+
9
+ const ERROR = 'notice-error';
10
+
11
+ const WARNING = 'notice-warning';
12
+
13
+ const INFO = 'notice-info';
14
+
15
+ /**
16
+ * @var string
17
+ */
18
+ protected $message;
19
+
20
+ /**
21
+ * @var string
22
+ */
23
+ protected $type;
24
+
25
+ /**
26
+ * @var string
27
+ */
28
+ protected $id;
29
+
30
+ public function __construct() {
31
+ $this->type = self::SUCCESS;
32
+ }
33
+
34
+ /**
35
+ * Create a view that can be rendered
36
+ *
37
+ * @return View
38
+ */
39
+ abstract protected function create_view();
40
+
41
+ /**
42
+ * Render an View
43
+ *
44
+ * @return string
45
+ * @throws \Exception
46
+ */
47
+ public function render() {
48
+ if ( empty( $this->message ) ) {
49
+ throw new \Exception( 'Message cannot be empty' );
50
+ }
51
+
52
+ $view = $this->create_view();
53
+
54
+ if ( ! ( $view instanceof View ) ) {
55
+ throw new \Exception( 'AC\Notice::create_view should return an instance of View' );
56
+ }
57
+
58
+ return $view->render();
59
+ }
60
+
61
+ /**
62
+ * Display self::render to the screen
63
+ */
64
+ public function display() {
65
+ echo $this->render();
66
+ }
67
+
68
+ /**
69
+ * @return string
70
+ */
71
+ public function get_message() {
72
+ return $this->message;
73
+ }
74
+
75
+ /**
76
+ * @param string $message
77
+ *
78
+ * @return $this
79
+ */
80
+ public function set_message( $message ) {
81
+ $this->message = $message;
82
+
83
+ return $this;
84
+ }
85
+
86
+ /**
87
+ * @return string
88
+ */
89
+ public function get_type() {
90
+ return $this->type;
91
+ }
92
+
93
+ /**
94
+ * @param string $type
95
+ *
96
+ * @return $this
97
+ */
98
+ public function set_type( $type ) {
99
+ $this->type = $type;
100
+
101
+ return $this;
102
+ }
103
+
104
+ /**
105
+ * @return string
106
+ */
107
+ public function get_id() {
108
+ return $this->id;
109
+ }
110
+
111
+ /**
112
+ * @param string $id
113
+ *
114
+ * @return $this
115
+ */
116
+ public function set_id( $id ) {
117
+ $this->id = $id;
118
+
119
+ return $this;
120
+ }
121
+ }
classes/Message/Notice.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Message;
4
+
5
+ use AC\Message;
6
+ use AC\View;
7
+
8
+ class Notice extends Message {
9
+
10
+ public static function with_register() {
11
+ $notice = new self();
12
+ $notice->register();
13
+
14
+ return $notice;
15
+ }
16
+
17
+ public function create_view() {
18
+ $data = array(
19
+ 'message' => $this->message,
20
+ 'type' => $this->type,
21
+ 'id' => $this->id,
22
+ );
23
+
24
+ $view = new View( $data );
25
+ $view->set_template( 'message/notice' );
26
+
27
+ return $view;
28
+ }
29
+
30
+ public function register() {
31
+ if ( apply_filters( 'ac/suppress_site_wide_notices', false ) ) {
32
+ return;
33
+ }
34
+
35
+ add_action( 'admin_notices', array( $this, 'display' ) );
36
+ add_action( 'network_admin_notices', array( $this, 'display' ) );
37
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
38
+ }
39
+
40
+ /**
41
+ * Enqueue scripts & styles
42
+ */
43
+ public function enqueue_scripts() {
44
+ wp_enqueue_style( 'ac-message', AC()->get_url() . 'assets/css/notice.css', array(), AC()->get_version() );
45
+ }
46
+
47
+ }
classes/Message/Notice/Dismissible.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Message\Notice;
4
+
5
+ use AC\Ajax\Handler;
6
+ use AC\Ajax\NullHandler;
7
+ use AC\Message\Notice;
8
+
9
+ class Dismissible extends Notice {
10
+
11
+ /**
12
+ * @var Handler
13
+ */
14
+ protected $handler;
15
+
16
+ public function __construct( Handler $handler = null ) {
17
+ parent::__construct();
18
+
19
+ if ( null === $handler ) {
20
+ $handler = new NullHandler();
21
+ }
22
+
23
+ $this->handler = $handler;
24
+ }
25
+
26
+ public function create_view() {
27
+ $view = parent::create_view();
28
+
29
+ $view->set_template( 'message/notice/dismissible' )
30
+ ->set( 'dismissible_callback', $this->handler->get_params() );
31
+
32
+ return $view;
33
+ }
34
+
35
+ /**
36
+ * Enqueue scripts & styles
37
+ */
38
+ public function enqueue_scripts() {
39
+ parent::enqueue_scripts();
40
+
41
+ wp_enqueue_script( 'ac-message', AC()->get_url() . 'assets/js/notice-dismissible.js', array(), AC()->get_version(), true );
42
+ }
43
+
44
+ }
classes/Message/Plugin.php ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Message;
4
+
5
+ use AC\Message;
6
+ use AC\View;
7
+
8
+ class Plugin extends Message {
9
+
10
+ /**
11
+ * @var string
12
+ */
13
+ protected $plugin_basename;
14
+
15
+ /**
16
+ * @var string
17
+ */
18
+ protected $icon;
19
+
20
+ /**
21
+ * @param string $plugin_basename
22
+ * @param string $message
23
+ * @param string $type
24
+ */
25
+ public function __construct( $plugin_basename ) {
26
+ parent::__construct();
27
+
28
+ $this->plugin_basename = $plugin_basename;
29
+ $this->type = self::WARNING;
30
+ $this->icon = $this->get_icon_by_current_type();
31
+ }
32
+
33
+ public function register() {
34
+ add_action( 'after_plugin_row_' . $this->plugin_basename, array( $this, 'display' ), 11 );
35
+ }
36
+
37
+ public function create_view() {
38
+ switch ( $this->type ) {
39
+ case self::SUCCESS :
40
+ $class = 'updated-message notice-success';
41
+
42
+ break;
43
+ case self::INFO :
44
+ $class = self::WARNING;
45
+
46
+ break;
47
+ default:
48
+ $class = $this->type;
49
+ }
50
+
51
+ $status = is_plugin_active( $this->plugin_basename )
52
+ ? 'active'
53
+ : '';
54
+
55
+ $data = array(
56
+ 'plugin_basename' => $this->plugin_basename,
57
+ 'icon' => $this->icon,
58
+ 'class' => $class,
59
+ 'message' => $this->message,
60
+ 'type' => $this->type,
61
+ 'status' => $status,
62
+ );
63
+
64
+ $view = new View( $data );
65
+ $view->set_template( 'message/plugin' );
66
+
67
+ return $view;
68
+ }
69
+
70
+ /**
71
+ * @return string
72
+ */
73
+ protected function get_icon_by_current_type() {
74
+ $mapping = array(
75
+ self::SUCCESS => '\f147',
76
+ self::WARNING => '\f348',
77
+ self::ERROR => '\f534',
78
+ self::INFO => '\f463',
79
+ );
80
+
81
+ if ( ! isset( $mapping[ $this->type ] ) ) {
82
+ return false;
83
+ }
84
+
85
+ return $mapping[ $this->type ];
86
+ }
87
+
88
+ /**
89
+ * @param string $type
90
+ *
91
+ * @return $this
92
+ */
93
+ public function set_type( $type ) {
94
+ $this->type = $type;
95
+
96
+ return $this;
97
+ }
98
+
99
+ /**
100
+ * Set the icon of this notice
101
+ *
102
+ * @param string $icon
103
+ *
104
+ * @return $this
105
+ */
106
+ public function set_icon( $icon ) {
107
+ $this->icon = $icon;
108
+
109
+ return $this;
110
+ }
111
+
112
+ }
classes/Meta/Query.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Meta_Query {
8
 
9
  /**
10
- * @var WP_Meta_Query
11
  */
12
  private $query;
13
 
@@ -441,7 +439,7 @@ class AC_Meta_Query {
441
  }
442
 
443
  /**
444
- * @return WP_Meta_Query
445
  */
446
  public function get_query() {
447
  return $this->query;
@@ -476,10 +474,10 @@ class AC_Meta_Query {
476
  return false;
477
  }
478
 
479
- $this->query = new WP_Meta_Query();
480
  $this->query->get_sql( $type, $table, $id );
481
 
482
  return true;
483
  }
484
 
485
- }
1
  <?php
2
 
3
+ namespace AC\Meta;
 
 
4
 
5
+ class Query {
6
 
7
  /**
8
+ * @var \WP_Meta_Query
9
  */
10
  private $query;
11
 
439
  }
440
 
441
  /**
442
+ * @return \WP_Meta_Query
443
  */
444
  public function get_query() {
445
  return $this->query;
474
  return false;
475
  }
476
 
477
+ $this->query = new \WP_Meta_Query();
478
  $this->query->get_sql( $type, $table, $id );
479
 
480
  return true;
481
  }
482
 
483
+ }
classes/Meta/QueryColumn.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Meta_QueryColumn extends AC_Meta_Query {
 
 
8
 
9
  /**
10
- * @param AC_Column $column
11
  */
12
- public function __construct( AC_Column $column ) {
13
  parent::__construct( $column->get_list_screen()->get_meta_type() );
14
 
15
- if ( $column instanceof AC_Column_Meta ) {
16
  $this->join_where( 'meta_key', $column->get_meta_key() );
17
  }
18
 
@@ -21,4 +21,4 @@ class AC_Meta_QueryColumn extends AC_Meta_Query {
21
  }
22
  }
23
 
24
- }
1
  <?php
2
 
3
+ namespace AC\Meta;
 
 
4
 
5
+ use AC\Column;
6
+
7
+ class QueryColumn extends Query {
8
 
9
  /**
10
+ * @param Column $column
11
  */
12
+ public function __construct( Column $column ) {
13
  parent::__construct( $column->get_list_screen()->get_meta_type() );
14
 
15
+ if ( $column instanceof Column\Meta ) {
16
  $this->join_where( 'meta_key', $column->get_meta_key() );
17
  }
18
 
21
  }
22
  }
23
 
24
+ }
classes/Notice/Plugin.php DELETED
@@ -1,182 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- final class AC_Notice_Plugin {
8
-
9
- /**
10
- * @var string
11
- */
12
- private $plugin_basename;
13
-
14
- /**
15
- * @var string
16
- */
17
- private $message;
18
-
19
- /**
20
- * @var string
21
- */
22
- private $class;
23
-
24
- /**
25
- * @var string
26
- */
27
- private $icon;
28
-
29
- /**
30
- * @param string $plugin_basename
31
- */
32
- public function __construct( $plugin_basename ) {
33
- $this->plugin_basename = $plugin_basename;
34
- $this->set_type( 'warning' );
35
- }
36
-
37
- /**
38
- * Check if the plugin has an update available
39
- *
40
- * @return bool
41
- */
42
- private function update_available() {
43
- $current = get_site_transient( 'update_plugins' );
44
-
45
- return isset( $current->response[ $this->plugin_basename ] );
46
- }
47
-
48
- public function hook_notice() {
49
- add_action( 'after_plugin_row_' . $this->plugin_basename, array( $this, 'display_notice' ), 11 );
50
- }
51
-
52
- public function display_notice() {
53
- $class = '';
54
-
55
- if ( is_plugin_active( $this->plugin_basename ) ) {
56
- $class .= ' active';
57
-
58
- if ( $this->update_available() ) {
59
- $class .= ' update';
60
- }
61
- }
62
-
63
- ?>
64
-
65
- <style>
66
- .plugins tr[data-plugin='<?php echo $this->plugin_basename; ?>'] th,
67
- .plugins tr[data-plugin='<?php echo $this->plugin_basename; ?>'] td {
68
- box-shadow: none;
69
- }
70
-
71
- <?php if ( $this->icon ) : ?>
72
- .plugins tr[data-plugin='<?php echo $this->plugin_basename; ?>'] .update-message p:before {
73
- content: "<?php echo $this->icon ?>";
74
- }
75
-
76
- <?php endif; ?>
77
- </style>
78
-
79
- <tr class="plugin-update-tr <?php echo esc_attr( $class ); ?>" data-slug="<?php echo esc_attr( basename( $this->plugin_basename ) ); ?>" data-plugin="<?php echo esc_attr( $this->plugin_basename ); ?>">
80
- <td colspan="3" class="plugin-update colspanchange">
81
- <div class="update-message notice inline <?php echo esc_attr( $this->class ); ?>">
82
- <p><?php echo $this->message; ?></p>
83
- </div>
84
- </td>
85
- </tr>
86
-
87
- <?php
88
- }
89
-
90
- /**
91
- * Set the message of this notice. Only links allowed, other HTML is escaped
92
- *
93
- * @param string $message
94
- *
95
- * @return $this
96
- */
97
- public function set_message( $message ) {
98
- $this->message = wp_kses( $message, array(
99
- 'strong' => array(),
100
- 'br' => array(),
101
- 'a' => array(
102
- 'class' => true,
103
- 'data' => true,
104
- 'href' => true,
105
- 'id' => true,
106
- 'title' => true,
107
- ),
108
- ) );
109
-
110
- return $this;
111
- }
112
-
113
- private function get_predefined_type( $type ) {
114
- $mapping = array(
115
- 'warning' => 'notice-warning|\f348',
116
- 'error' => 'notice-error|\f534',
117
- 'success' => 'updated-message notice-success|\f147',
118
- 'update' => 'notice-warning|\f463',
119
- );
120
-
121
- if ( array_key_exists( $type, $mapping ) ) {
122
- $parts = explode( '|', $mapping[ $type ] );
123
-
124
- return (object) array(
125
- 'class' => $parts[0] . ' notice-alt',
126
- 'icon' => $parts[1],
127
- );
128
- }
129
-
130
- return false;
131
- }
132
-
133
- public function set_type( $type ) {
134
- $type = $this->get_predefined_type( $type );
135
-
136
- if ( $type ) {
137
- $this->set_class( $type->class );
138
- $this->set_icon( $type->icon );
139
- }
140
-
141
- return $this;
142
- }
143
-
144
- /**
145
- * Set the color-scheme of the notice
146
- *
147
- * @param string $class
148
- *
149
- * @return $this
150
- */
151
- public function set_class( $class ) {
152
- $type = $this->get_predefined_type( $class );
153
-
154
- if ( $type ) {
155
- $class = $type->class;
156
- }
157
-
158
- $this->class = $class;
159
-
160
- return $this;
161
- }
162
-
163
- /**
164
- * Set the icon of the notice. Defaults to 'update'
165
- *
166
- * @param string $icon
167
- *
168
- * @return $this
169
- */
170
- public function set_icon( $icon ) {
171
- $type = $this->get_predefined_type( $icon );
172
-
173
- if ( $type ) {
174
- $icon = $type->icon;
175
- }
176
-
177
- $this->icon = $icon;
178
-
179
- return $this;
180
- }
181
-
182
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Notice/Review.php DELETED
@@ -1,150 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- class AC_Notice_Review {
8
-
9
- public function __construct() {
10
- add_action( 'admin_init', array( $this, 'maybe_display_review_notice' ) );
11
- add_action( 'wp_ajax_ac_hide_review_notice', array( $this, 'ajax_hide_review_notice' ) );
12
- }
13
-
14
- /**
15
- * @return string
16
- */
17
- private function get_first_login_timestamp() {
18
- $timestamp = get_user_meta( get_current_user_id(), 'ac-first-login-timestamp', true );
19
-
20
- if ( empty( $timestamp ) ) {
21
- update_user_meta( get_current_user_id(), 'ac-first-login-timestamp', time() );
22
-
23
- $timestamp = time();
24
- }
25
-
26
- return $timestamp;
27
- }
28
-
29
- /**
30
- * Display review notice after 30 days of first login by an admin
31
- */
32
- public function maybe_display_review_notice() {
33
- if ( AC()->suppress_site_wide_notices() ) {
34
- return;
35
- }
36
-
37
- if ( ! AC()->user_can_manage_admin_columns() ) {
38
- return;
39
- }
40
-
41
- if ( $this->hide_notice() ) {
42
- return;
43
- }
44
-
45
- // Display notice after 30 days of first login
46
- if ( ( time() - ( 30 * DAY_IN_SECONDS ) ) <= $this->get_first_login_timestamp() ) {
47
- return;
48
- }
49
-
50
- add_action( 'admin_notices', array( $this, 'display_review_notice' ) );
51
- }
52
-
53
- /**
54
- * @return bool
55
- */
56
- public function hide_notice() {
57
- return (bool) get_user_meta( get_current_user_id(), 'ac_hide_notice_review', true );
58
- }
59
-
60
- public function ajax_hide_review_notice() {
61
- update_user_meta( get_current_user_id(), 'ac_hide_notice_review', true );
62
- }
63
-
64
- public function display_review_notice() {
65
- $product = __( 'Admin Columns', 'codepress-admin-columns' );
66
-
67
- if ( ac_is_pro_active() ) {
68
- $product = __( 'Admin Columns Pro', 'codepress-admin-columns' );
69
- }
70
-
71
- wp_enqueue_style( 'ac-sitewide-notices' );
72
-
73
- ?>
74
- <div class="ac-message updated">
75
- <div class="info">
76
- <p>
77
- <?php printf( __(
78
- "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s.", 'codepress-admin-columns' ),
79
- '<strong>' . $product . '</strong>',
80
- $product,
81
- '<a class="hide-review-notice hide-review-notice-soft" href="#">' . __( 'click here', 'codepress-admin-columns' ) . '</a>'
82
- ); ?>
83
- </p>
84
- <p class="buttons">
85
- <a class="button button-primary" href="https://wordpress.org/support/view/plugin-reviews/codepress-admin-columns?rate=5#postform" target="_blank"><?php _e( 'Leave a review!', 'codepress-admin-columns' ); ?></a>
86
- <a class="button button-secondary hide-review-notice" href='#'><?php _e( "Permanently hide notice", 'codepress-admin-columns' ); ?></a>
87
- </p>
88
- </div>
89
- <div class="help hidden">
90
- <a href="#" class="hide-notice hide-review-notice"></a>
91
- <p>
92
- <?php printf(
93
- __( "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s.", 'codepress-admin-columns' ),
94
- $product,
95
- '<a href="' . esc_url( ac_get_site_utm_url( 'documentation', 'review-notice' ) ) . '" target="_blank">' . __( 'documentation page', 'codepress-admin-columns' ) . '</a>'
96
- ); ?>
97
- <?php if ( ac_is_pro_active() ) : ?>
98
- <?php printf(
99
- __( 'As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!', 'codepress-admin-columns' ),
100
- '<a href="' . esc_url( ac_get_site_utm_url( 'forumns', 'review-notice' ) ) . '" target="_blank">' . __( 'our forums', 'codepress-admin-columns' ) . '</a>'
101
- ); ?>
102
- <?php else : ?>
103
- <?php printf(
104
- __( 'You can also find help on the %s, and %s.', 'codepress-admin-columns' ),
105
- '<a href="https://wordpress.org/support/plugin/codepress-admin-columns#postform" target="_blank">' . __( 'Admin Columns forums on WordPress.org', 'codepress-admin-columns' ) . '</a>',
106
- '<a href="https://wordpress.org/plugins/codepress-admin-columns/faq/#plugin-info" target="_blank">' . __( 'find answers to some frequently asked questions', 'codepress-admin-columns' ) . '</a>'
107
- ); ?>
108
- <?php endif; ?>
109
- </p>
110
- </div>
111
- <div class="clear"></div>
112
- </div>
113
- <script type="text/javascript">
114
- jQuery( function( $ ) {
115
- $( document ).ready( function() {
116
- $( '.updated a.hide-review-notice' ).click( function( e ) {
117
- e.preventDefault();
118
-
119
- var el = $( this ).parents( '.ac-message' );
120
- var el_close = el.find( '.hide-notice' );
121
- var soft = $( this ).hasClass( 'hide-review-notice-soft' );
122
-
123
- if ( soft ) {
124
- el.find( '.info' ).slideUp();
125
- el.find( '.help' ).slideDown();
126
- }
127
- else {
128
- el_close.hide();
129
- el_close.after( '<div class="spinner right"></div>' );
130
- el.find( '.spinner' ).show();
131
- }
132
-
133
- $.post( ajaxurl, {
134
- 'action' : 'ac_hide_review_notice'
135
- }, function() {
136
- if ( !soft ) {
137
- el.find( '.spinner' ).remove();
138
- el.slideUp();
139
- }
140
- } );
141
-
142
- return false;
143
- } );
144
- } );
145
- } );
146
- </script>
147
- <?php
148
- }
149
-
150
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Plugin.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Plugin extends AC_Addon {
8
 
9
  /**
10
  * Check if plugin is network activated
@@ -21,12 +19,20 @@ abstract class AC_Plugin extends AC_Addon {
21
  * @see get_plugin_data()
22
  * @return array
23
  */
24
- protected function get_plugin_data() {
25
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
26
 
27
  return get_plugin_data( $this->get_file(), false, false );
28
  }
29
 
 
 
 
 
 
 
 
 
30
  /**
31
  * Return a plugin header from the plugin data
32
  *
@@ -34,8 +40,8 @@ abstract class AC_Plugin extends AC_Addon {
34
  *
35
  * @return false|string
36
  */
37
- protected function get_plugin_header( $key ) {
38
- $data = $this->get_plugin_data();
39
 
40
  if ( ! isset( $data[ $key ] ) ) {
41
  return false;
@@ -44,13 +50,6 @@ abstract class AC_Plugin extends AC_Addon {
44
  return $data[ $key ];
45
  }
46
 
47
- /**
48
- * Return the prefix that is used by this plugin
49
- *
50
- * @return string
51
- */
52
- abstract public function get_prefix();
53
-
54
  /**
55
  * Apply updates to the database
56
  *
@@ -61,13 +60,14 @@ abstract class AC_Plugin extends AC_Addon {
61
  return;
62
  }
63
 
64
- $updater = new AC_Plugin_Updater( $this );
65
 
66
  if ( ! $updater->check_update_conditions() ) {
67
  return;
68
  }
69
 
70
- $classes = AC()->autoloader()->get_class_names_from_dir( $this->get_plugin_dir() . 'classes/Plugin/Update', $this->get_prefix() );
 
71
 
72
  foreach ( $classes as $class ) {
73
  $updater->add_update( new $class( $this->get_stored_version() ) );
@@ -76,11 +76,21 @@ abstract class AC_Plugin extends AC_Addon {
76
  $updater->parse_updates();
77
  }
78
 
 
 
 
 
 
 
 
 
 
 
79
  /**
80
  * @return string
81
  */
82
  public function get_version() {
83
- return $this->get_plugin_header( 'Version' );
84
  }
85
 
86
  /**
@@ -88,6 +98,15 @@ abstract class AC_Plugin extends AC_Addon {
88
  */
89
  abstract protected function get_version_key();
90
 
 
 
 
 
 
 
 
 
 
91
  /**
92
  * @return string
93
  */
@@ -124,4 +143,31 @@ abstract class AC_Plugin extends AC_Addon {
124
  return empty( $results );
125
  }
126
 
127
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ abstract class Plugin extends Addon {
6
 
7
  /**
8
  * Check if plugin is network activated
19
  * @see get_plugin_data()
20
  * @return array
21
  */
22
+ protected function get_data() {
23
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
24
 
25
  return get_plugin_data( $this->get_file(), false, false );
26
  }
27
 
28
+ /**
29
+ * @since 3.2
30
+ * @return false|string
31
+ */
32
+ public function get_name() {
33
+ return $this->get_header( 'Name' );
34
+ }
35
+
36
  /**
37
  * Return a plugin header from the plugin data
38
  *
40
  *
41
  * @return false|string
42
  */
43
+ protected function get_header( $key ) {
44
+ $data = $this->get_data();
45
 
46
  if ( ! isset( $data[ $key ] ) ) {
47
  return false;
50
  return $data[ $key ];
51
  }
52
 
 
 
 
 
 
 
 
53
  /**
54
  * Apply updates to the database
55
  *
60
  return;
61
  }
62
 
63
+ $updater = new Plugin\Updater( $this );
64
 
65
  if ( ! $updater->check_update_conditions() ) {
66
  return;
67
  }
68
 
69
+ $reflection = new \ReflectionObject( $this );
70
+ $classes = Autoloader::instance()->get_class_names_from_dir( $reflection->getNamespaceName() . '\Plugin\Update' );
71
 
72
  foreach ( $classes as $class ) {
73
  $updater->add_update( new $class( $this->get_stored_version() ) );
76
  $updater->parse_updates();
77
  }
78
 
79
+ /**
80
+ * Check if a plugin is in beta
81
+ *
82
+ * @since 3.2
83
+ * @return bool
84
+ */
85
+ public function is_beta() {
86
+ return false !== strpos( $this->get_version(), 'beta' );
87
+ }
88
+
89
  /**
90
  * @return string
91
  */
92
  public function get_version() {
93
+ return $this->get_header( 'Version' );
94
  }
95
 
96
  /**
98
  */
99
  abstract protected function get_version_key();
100
 
101
+ /**
102
+ * @param string $version
103
+ *
104
+ * @return bool
105
+ */
106
+ public function is_version_gte( $version ) {
107
+ return version_compare( $this->get_version(), $version, '>=' );
108
+ }
109
+
110
  /**
111
  * @return string
112
  */
143
  return empty( $results );
144
  }
145
 
146
+ /**
147
+ * Return a plugin header from the plugin data
148
+ *
149
+ * @param $key
150
+ *
151
+ * @deprecated
152
+ * @return false|string
153
+ */
154
+ protected function get_plugin_header( $key ) {
155
+ _deprecated_function( __METHOD__, '3.2', 'AC\Plugin::get_header()' );
156
+
157
+ return $this->get_header( $key );
158
+ }
159
+
160
+ /**
161
+ * Calls get_plugin_data() for this plugin
162
+ *
163
+ * @deprecated
164
+ * @see get_plugin_data()
165
+ * @return array
166
+ */
167
+ protected function get_plugin_data() {
168
+ _deprecated_function( __METHOD__, '3.2', 'AC\Plugin::get_data()' );
169
+
170
+ return $this->get_data();
171
+ }
172
+
173
+ }
classes/Plugin/Update.php CHANGED
@@ -1,15 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- /**
8
- * Class AC_Plugin_Update
9
- *
10
- * Assumes this regex for versions: ^[1-9]\.[0-9]\.[1-9][0-9]?$
11
- */
12
- abstract class AC_Plugin_Update {
13
 
14
  /**
15
  * @var string
@@ -17,7 +10,7 @@ abstract class AC_Plugin_Update {
17
  protected $stored_version;
18
 
19
  /**
20
- * @var string
21
  */
22
  protected $version;
23
 
@@ -63,4 +56,4 @@ abstract class AC_Plugin_Update {
63
  */
64
  protected abstract function set_version();
65
 
66
- }
1
  <?php
2
 
3
+ namespace AC\Plugin;
 
 
4
 
5
+ abstract class Update {
 
 
 
 
 
6
 
7
  /**
8
  * @var string
10
  protected $stored_version;
11
 
12
  /**
13
+ * @var string Assumes this regex for versions: ^[1-9]\.[0-9]\.[1-9][0-9]?$
14
  */
15
  protected $version;
16
 
56
  */
57
  protected abstract function set_version();
58
 
59
+ }
classes/Plugin/Update/V3005.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Plugin_Update_V3005 extends AC_Plugin_Update {
 
 
8
 
9
  public function apply_update() {
10
  $this->migrate_user_specific_settings();
@@ -122,4 +122,4 @@ class AC_Plugin_Update_V3005 extends AC_Plugin_Update {
122
  $wpdb->query( $sql );
123
  }
124
 
125
- }
1
  <?php
2
 
3
+ namespace AC\Plugin\Update;
 
 
4
 
5
+ use AC\Plugin\Update;
6
+
7
+ class V3005 extends Update {
8
 
9
  public function apply_update() {
10
  $this->migrate_user_specific_settings();
122
  $wpdb->query( $sql );
123
  }
124
 
125
+ }
classes/Plugin/Update/V3007.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Plugin_Update_V3007 extends AC_Plugin_Update {
 
 
8
 
9
  public function apply_update() {
10
  $this->update_roles_column();
@@ -60,4 +60,4 @@ class AC_Plugin_Update_V3007 extends AC_Plugin_Update {
60
  }
61
  }
62
 
63
- }
1
  <?php
2
 
3
+ namespace AC\Plugin\Update;
 
 
4
 
5
+ use AC\Plugin\Update;
6
+
7
+ class V3007 extends Update {
8
 
9
  public function apply_update() {
10
  $this->update_roles_column();
60
  }
61
  }
62
 
63
+ }
classes/Plugin/Update/V3201.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Plugin\Update;
4
+
5
+ use AC\Plugin\Update;
6
+ use AC\Preferences;
7
+
8
+ class V3201 extends Update {
9
+
10
+ public function apply_update() {
11
+ $this->uppercase_class_files( AC()->get_dir() . '/classes' );
12
+ $this->update_notice_preference_review();
13
+ $this->update_notice_preference_addons();
14
+ }
15
+
16
+ protected function set_version() {
17
+ $this->version = '3.2.1';
18
+ }
19
+
20
+ /**
21
+ * Set all files to the proper case
22
+ *
23
+ * @param string Directory
24
+ */
25
+ protected function uppercase_class_files( $directory ) {
26
+ $iterator = new \RecursiveIteratorIterator(
27
+ new \RecursiveDirectoryIterator( $directory, \FilesystemIterator::SKIP_DOTS )
28
+ );
29
+
30
+ /** @var \DirectoryIterator $leaf */
31
+ foreach ( $iterator as $leaf ) {
32
+ $file = $leaf->getFilename();
33
+
34
+ if ( $leaf->isFile() && 'php' === $leaf->getExtension() && $file == strtolower( $file ) ) {
35
+ @rename( $leaf->getPathname(), trailingslashit( $leaf->getPath() ) . ucfirst( $file ) );
36
+ }
37
+ }
38
+ }
39
+
40
+ /**
41
+ * Update user preferences for review
42
+ */
43
+ private function update_notice_preference_review() {
44
+ $mapping = array(
45
+ 'ac_hide_notice_review' => 'dismiss-review',
46
+ 'ac-first-login-timestamp' => 'first-login-review',
47
+ );
48
+
49
+ foreach ( $mapping as $old => $new ) {
50
+ foreach ( $this->get_users_by_meta_key( $old ) as $user_id ) {
51
+
52
+ $value = get_user_meta( $user_id, $old, true );
53
+
54
+ $option = new Preferences\User( 'check-review', $user_id );
55
+ $option->set( $new, $value, true );
56
+
57
+ delete_user_meta( $user_id, $old );
58
+ }
59
+ }
60
+ }
61
+
62
+ /**
63
+ * Update user preferences for addons
64
+ */
65
+ private function update_notice_preference_addons() {
66
+ $mapping = array(
67
+ 'ac_hide_notice_addons' => 'dismiss-notice',
68
+ );
69
+
70
+ foreach ( $mapping as $old => $new ) {
71
+ foreach ( $this->get_users_by_meta_key( $old ) as $user_id ) {
72
+
73
+ $value = get_user_meta( $user_id, $old, true );
74
+
75
+ $option = new Preferences\User( 'check-addon-available', $user_id );
76
+ $option->set( $new, $value, true );
77
+
78
+ delete_user_meta( $user_id, $old );
79
+ }
80
+ }
81
+ }
82
+
83
+ /**
84
+ * @param string $key
85
+ *
86
+ * @return array ID's
87
+ */
88
+ protected function get_users_by_meta_key( $key ) {
89
+ $user_ids = get_users( array(
90
+ 'fields' => 'ids',
91
+ 'meta_query' => array(
92
+ array(
93
+ 'key' => $key,
94
+ 'compare' => 'EXISTS',
95
+ ),
96
+ ),
97
+ ) );
98
+
99
+ if ( ! $user_ids ) {
100
+ return array();
101
+ }
102
+
103
+ return $user_ids;
104
+ }
105
+
106
+ }
classes/Plugin/Updater.php CHANGED
@@ -1,10 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Plugin_Updater {
 
 
 
 
8
 
9
  /**
10
  * @var self
@@ -22,26 +24,26 @@ class AC_Plugin_Updater {
22
  protected $apply_updates;
23
 
24
  /**
25
- * @var AC_Plugin_Update[]
26
  */
27
  protected $updates;
28
 
29
  /**
30
- * @var AC_Plugin
31
  */
32
  protected $plugin;
33
 
34
  /**
35
- * @param AC_Plugin $plugin
36
  */
37
- public function __construct( AC_Plugin $plugin ) {
38
  $this->plugin = $plugin;
39
  // TODO: https://github.com/codepress/admin-columns-issues/issues/982
40
  //$this->apply_updates = 'true' === filter_input( INPUT_GET, 'ac_do_update' );
41
  $this->apply_updates = true;
42
  }
43
 
44
- public function add_update( AC_Plugin_Update $update ) {
45
  $this->updates[ $update->get_version() ] = $update;
46
  }
47
 
@@ -50,7 +52,7 @@ class AC_Plugin_Updater {
50
  *
51
  */
52
  public function check_update_conditions() {
53
- if ( ! AC()->user_can_manage_admin_columns() ) {
54
  return false;
55
  }
56
 
@@ -73,9 +75,10 @@ class AC_Plugin_Updater {
73
  return;
74
  }
75
 
76
- krsort( $this->updates, SORT_NUMERIC );
 
77
 
78
- /* @var AC_Plugin_Update $update */
79
  foreach ( $this->updates as $update ) {
80
  if ( $update->needs_update() ) {
81
  if ( ! $this->apply_updates ) {
@@ -104,7 +107,9 @@ class AC_Plugin_Updater {
104
  esc_html__( 'Your database is up to date. You are awesome.', 'codepress-admin-columns' )
105
  );
106
 
107
- AC()->notice( $message );
 
 
108
  }
109
 
110
  protected function show_update_notice() {
@@ -117,7 +122,10 @@ class AC_Plugin_Updater {
117
  esc_html__( 'Run the updater', 'codepress-admin-columns' )
118
  );
119
 
120
- AC()->notice( $message, 'notice-info' );
 
 
 
121
  }
122
 
123
- }
1
  <?php
2
 
3
+ namespace AC\Plugin;
 
 
4
 
5
+ use AC\Capabilities;
6
+ use AC\Message;
7
+ use AC\Plugin;
8
+
9
+ class Updater {
10
 
11
  /**
12
  * @var self
24
  protected $apply_updates;
25
 
26
  /**
27
+ * @var Update[]
28
  */
29
  protected $updates;
30
 
31
  /**
32
+ * @var Plugin
33
  */
34
  protected $plugin;
35
 
36
  /**
37
+ * @param Plugin $plugin
38
  */
39
+ public function __construct( Plugin $plugin ) {
40
  $this->plugin = $plugin;
41
  // TODO: https://github.com/codepress/admin-columns-issues/issues/982
42
  //$this->apply_updates = 'true' === filter_input( INPUT_GET, 'ac_do_update' );
43
  $this->apply_updates = true;
44
  }
45
 
46
+ public function add_update( Update $update ) {
47
  $this->updates[ $update->get_version() ] = $update;
48
  }
49
 
52
  *
53
  */
54
  public function check_update_conditions() {
55
+ if ( ! current_user_can( Capabilities::MANAGE ) ) {
56
  return false;
57
  }
58
 
75
  return;
76
  }
77
 
78
+ // Sort by version number
79
+ uksort( $this->updates, 'version_compare' );
80
 
81
+ /* @var Update $update */
82
  foreach ( $this->updates as $update ) {
83
  if ( $update->needs_update() ) {
84
  if ( ! $this->apply_updates ) {
107
  esc_html__( 'Your database is up to date. You are awesome.', 'codepress-admin-columns' )
108
  );
109
 
110
+ $notice = new Message\Notice();
111
+ $notice->set_message( $message )
112
+ ->register();
113
  }
114
 
115
  protected function show_update_notice() {
122
  esc_html__( 'Run the updater', 'codepress-admin-columns' )
123
  );
124
 
125
+ $notice = new Message\Notice();
126
+ $notice->set_message( $message )
127
+ ->set_type( $notice::INFO )
128
+ ->register();
129
  }
130
 
131
+ }
classes/PluginInformation.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_PluginInformation {
8
 
9
  /**
10
  * @var string
@@ -94,4 +92,4 @@ class AC_PluginInformation {
94
  return $info[ $var ];
95
  }
96
 
97
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ class PluginInformation {
6
 
7
  /**
8
  * @var string
92
  return $info[ $var ];
93
  }
94
 
95
+ }
classes/Preferences.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Preferences {
8
 
9
  /**
10
  * @var int
@@ -147,4 +145,4 @@ abstract class AC_Preferences {
147
  return (bool) $wpdb->query( $sql );
148
  }
149
 
150
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ abstract class Preferences {
6
 
7
  /**
8
  * @var int
145
  return (bool) $wpdb->query( $sql );
146
  }
147
 
148
+ }
classes/Preferences/Site.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Preferences_Site extends AC_Preferences {
 
 
8
 
9
  /**
10
  * return array|false
@@ -20,4 +20,4 @@ class AC_Preferences_Site extends AC_Preferences {
20
  return (bool) update_user_option( $this->get_user_id(), $this->get_key(), $this->data );
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\Preferences;
 
 
4
 
5
+ use AC\Preferences;
6
+
7
+ class Site extends Preferences {
8
 
9
  /**
10
  * return array|false
20
  return (bool) update_user_option( $this->get_user_id(), $this->get_key(), $this->data );
21
  }
22
 
23
+ }
classes/Preferences/User.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Preferences_User extends AC_Preferences {
 
 
8
 
9
  /**
10
  * @return bool
@@ -20,4 +20,4 @@ class AC_Preferences_User extends AC_Preferences {
20
  return get_user_meta( $this->get_user_id(), $this->get_key(), true );
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\Preferences;
 
 
4
 
5
+ use AC\Preferences;
6
+
7
+ class User extends Preferences {
8
 
9
  /**
10
  * @return bool
20
  return get_user_meta( $this->get_user_id(), $this->get_key(), true );
21
  }
22
 
23
+ }
classes/Registrable.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ interface Registrable {
6
+
7
+ public function register();
8
+
9
+ }
classes/Relation.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Relation {
8
 
9
  /**
10
  * @var string
@@ -31,8 +29,8 @@ abstract class AC_Relation {
31
  abstract public function get_type();
32
 
33
  /**
34
- * @return false|stdClass
35
  */
36
  abstract public function get_labels();
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ abstract class Relation {
6
 
7
  /**
8
  * @var string
29
  abstract public function get_type();
30
 
31
  /**
32
+ * @return false|object
33
  */
34
  abstract public function get_labels();
35
 
36
+ }
classes/Relation/Post.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Relation_Post extends AC_Relation {
 
 
8
 
9
  /**
10
- * @var stdClass
11
  */
12
  private $post_type_object;
13
 
@@ -21,6 +21,9 @@ class AC_Relation_Post extends AC_Relation {
21
  return 'post';
22
  }
23
 
 
 
 
24
  public function get_post_type_object() {
25
  return $this->post_type_object;
26
  }
@@ -33,4 +36,4 @@ class AC_Relation_Post extends AC_Relation {
33
  return $this->post_type_object->labels;
34
  }
35
 
36
- }
1
  <?php
2
 
3
+ namespace AC\Relation;
 
 
4
 
5
+ use AC\Relation;
6
+
7
+ class Post extends Relation {
8
 
9
  /**
10
+ * @var object
11
  */
12
  private $post_type_object;
13
 
21
  return 'post';
22
  }
23
 
24
+ /**
25
+ * @return \WP_Post_Type
26
+ */
27
  public function get_post_type_object() {
28
  return $this->post_type_object;
29
  }
36
  return $this->post_type_object->labels;
37
  }
38
 
39
+ }
classes/Relation/Taxonomy.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Relation_Taxonomy extends AC_Relation {
 
 
8
 
9
  /**
10
- * @var stdClass
11
  */
12
  private $taxonomy;
13
 
@@ -33,4 +33,4 @@ class AC_Relation_Taxonomy extends AC_Relation {
33
  return $this->taxonomy->labels;
34
  }
35
 
36
- }
1
  <?php
2
 
3
+ namespace AC\Relation;
 
 
4
 
5
+ use AC\Relation;
6
+
7
+ class Taxonomy extends Relation {
8
 
9
  /**
10
+ * @var object
11
  */
12
  private $taxonomy;
13
 
33
  return $this->taxonomy->labels;
34
  }
35
 
36
+ }
classes/Screen.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ class Screen {
6
+
7
+ /**
8
+ * @var \WP_Screen
9
+ */
10
+ protected $screen;
11
+
12
+ /**
13
+ * @var bool
14
+ */
15
+ protected $ready;
16
+
17
+ public function __construct() {
18
+ $this->ready = false;
19
+ }
20
+
21
+ public function register() {
22
+ add_action( 'current_screen', array( $this, 'init' ) );
23
+ }
24
+
25
+ /**
26
+ * @param \WP_Screen $screen
27
+ */
28
+ public function init( \WP_Screen $screen ) {
29
+ $this->set_screen( $screen );
30
+
31
+ do_action( 'ac/screen', $this, $this->screen->id );
32
+ }
33
+
34
+ /**
35
+ * @param $id
36
+ *
37
+ * @return bool
38
+ */
39
+ public function is_screen( $id ) {
40
+ return $this->has_screen() && $this->get_screen()->id === $id;
41
+ }
42
+
43
+ /**
44
+ * @param \WP_Screen $screen
45
+ *
46
+ * @return $this
47
+ */
48
+ public function set_screen( \WP_Screen $screen ) {
49
+ $this->screen = $screen;
50
+
51
+ return $this;
52
+ }
53
+
54
+ /**
55
+ * @return \WP_Screen
56
+ */
57
+ public function get_screen() {
58
+ return $this->screen;
59
+ }
60
+
61
+ public function has_screen() {
62
+ return ! empty( $this->screen );
63
+ }
64
+
65
+ /**
66
+ * @return string
67
+ */
68
+ public function get_id() {
69
+ return $this->screen->id;
70
+ }
71
+
72
+ /**
73
+ * @return ListScreen|false
74
+ */
75
+ public function get_list_screen() {
76
+ foreach ( AC()->get_list_screens() as $list_screen ) {
77
+ if ( $list_screen->is_current_screen( $this->screen ) ) {
78
+ return $list_screen;
79
+ }
80
+ }
81
+
82
+ return false;
83
+ }
84
+
85
+ /**
86
+ * @return bool
87
+ */
88
+ public function is_list_screen() {
89
+ return false !== $this->get_list_screen();
90
+ }
91
+
92
+ /**
93
+ * Check if current screen is plugins screen
94
+ *
95
+ * @return bool
96
+ */
97
+ public function is_plugin_screen() {
98
+ return $this->is_screen( 'plugins' );
99
+ }
100
+
101
+ /**
102
+ * @param string|null $slug
103
+ *
104
+ * @return bool
105
+ */
106
+ public function is_admin_screen( $slug = null ) {
107
+ if ( null !== $slug ) {
108
+ return AC()->admin()->is_current_page( $slug );
109
+ }
110
+
111
+ return AC()->admin()->is_admin_screen();
112
+ }
113
+
114
+ }
classes/Settings/Column.php CHANGED
@@ -1,10 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Settings_Column {
 
 
 
 
8
 
9
  /**
10
  * A (short) reference to this setting
@@ -21,7 +23,7 @@ abstract class AC_Settings_Column {
21
  protected $options = array();
22
 
23
  /**
24
- * @var AC_Column
25
  */
26
  protected $column;
27
 
@@ -33,9 +35,9 @@ abstract class AC_Settings_Column {
33
  private $user_set = array();
34
 
35
  /**
36
- * @param AC_Column $column
37
  */
38
- public function __construct( AC_Column $column ) {
39
  $this->column = $column;
40
 
41
  $this->set_options();
@@ -43,7 +45,7 @@ abstract class AC_Settings_Column {
43
  }
44
 
45
  /**
46
- * @see AC_Settings_Column::$options
47
  * @return array
48
  */
49
  protected abstract function define_options();
@@ -51,14 +53,14 @@ abstract class AC_Settings_Column {
51
  /**
52
  * Create a string representation of this setting
53
  *
54
- * @return AC_View|false
55
  */
56
  public abstract function create_view();
57
 
58
  /**
59
  * Get settings that depend on this setting
60
  *
61
- * @return AC_Settings_Column[]
62
  */
63
  public function get_dependent_settings() {
64
  return array();
@@ -262,7 +264,7 @@ abstract class AC_Settings_Column {
262
  * @param string $type
263
  * @param string|null $name
264
  *
265
- * @return AC_Form_Element_Select|AC_Form_Element_Input|AC_Form_Element_Radio
266
  */
267
  protected function create_element( $type, $name = null ) {
268
  if ( null === $name ) {
@@ -272,19 +274,19 @@ abstract class AC_Settings_Column {
272
  switch ( $type ) {
273
 
274
  case 'checkbox' :
275
- $element = new AC_Form_Element_Checkbox( $name );
276
 
277
  break;
278
  case 'radio' :
279
- $element = new AC_Form_Element_Radio( $name );
280
 
281
  break;
282
  case 'select' :
283
- $element = new AC_Settings_Form_Element_Select( $name );
284
 
285
  break;
286
  default:
287
- $element = new AC_Form_Element_Input( $name );
288
  $element->set_type( $type );
289
  }
290
 
@@ -308,14 +310,14 @@ abstract class AC_Settings_Column {
308
  * @return false|string
309
  */
310
  public function render_header() {
311
- if ( ! ( $this instanceof AC_Settings_HeaderInterface ) ) {
312
  return false;
313
  }
314
 
315
- /* @var AC_Settings_HeaderInterface $this */
316
  $view = $this->create_header_view();
317
 
318
- if ( ! ( $view instanceof AC_View ) ) {
319
  return false;
320
  }
321
 
@@ -338,7 +340,7 @@ abstract class AC_Settings_Column {
338
  public function render() {
339
  $view = $this->create_view();
340
 
341
- if ( ! ( $view instanceof AC_View ) ) {
342
  return false;
343
  }
344
 
@@ -354,9 +356,18 @@ abstract class AC_Settings_Column {
354
  $view->set( 'name', $this->name );
355
  }
356
 
 
 
 
 
 
 
 
 
 
357
  // set default template for nested sections
358
  foreach ( (array) $view->sections as $section ) {
359
- if ( $section instanceof AC_View && null === $section->get_template() ) {
360
  $section->set_template( $template );
361
  }
362
  }
@@ -372,4 +383,4 @@ abstract class AC_Settings_Column {
372
  return $this->column;
373
  }
374
 
375
- }
1
  <?php
2
 
3
+ namespace AC\Settings;
 
 
4
 
5
+ use AC;
6
+ use AC\Form\Element;
7
+ use AC\View;
8
+
9
+ abstract class Column {
10
 
11
  /**
12
  * A (short) reference to this setting
23
  protected $options = array();
24
 
25
  /**
26
+ * @var AC\Column
27
  */
28
  protected $column;
29
 
35
  private $user_set = array();
36
 
37
  /**
38
+ * @param Column $column
39
  */
40
+ public function __construct( AC\Column $column ) {
41
  $this->column = $column;
42
 
43
  $this->set_options();
45
  }
46
 
47
  /**
48
+ * @see AC\Settings_Column::$options
49
  * @return array
50
  */
51
  protected abstract function define_options();
53
  /**
54
  * Create a string representation of this setting
55
  *
56
+ * @return View|false
57
  */
58
  public abstract function create_view();
59
 
60
  /**
61
  * Get settings that depend on this setting
62
  *
63
+ * @return Column[]
64
  */
65
  public function get_dependent_settings() {
66
  return array();
264
  * @param string $type
265
  * @param string|null $name
266
  *
267
+ * @return Element\Select|Element\Input|Element\Radio
268
  */
269
  protected function create_element( $type, $name = null ) {
270
  if ( null === $name ) {
274
  switch ( $type ) {
275
 
276
  case 'checkbox' :
277
+ $element = new Element\Checkbox( $name );
278
 
279
  break;
280
  case 'radio' :
281
+ $element = new Element\Radio( $name );
282
 
283
  break;
284
  case 'select' :
285
+ $element = new AC\Settings\Form\Element\Select( $name );
286
 
287
  break;
288
  default:
289
+ $element = new Element\Input( $name );
290
  $element->set_type( $type );
291
  }
292
 
310
  * @return false|string
311
  */
312
  public function render_header() {
313
+ if ( ! ( $this instanceof Header ) ) {
314
  return false;
315
  }
316
 
317
+ /* @var Header $this */
318
  $view = $this->create_header_view();
319
 
320
+ if ( ! ( $view instanceof View ) ) {
321
  return false;
322
  }
323
 
340
  public function render() {
341
  $view = $this->create_view();
342
 
343
+ if ( ! ( $view instanceof View ) ) {
344
  return false;
345
  }
346
 
356
  $view->set( 'name', $this->name );
357
  }
358
 
359
+ // set default for
360
+ if ( null === $view->get( 'for' ) ) {
361
+ $setting = $view->get( 'setting' );
362
+
363
+ if ( $setting instanceof AC\Form\Element ) {
364
+ $view->set( 'for', $setting->get_id() );
365
+ }
366
+ }
367
+
368
  // set default template for nested sections
369
  foreach ( (array) $view->sections as $section ) {
370
+ if ( $section instanceof View && null === $section->get_template() ) {
371
  $section->set_template( $template );
372
  }
373
  }
383
  return $this->column;
384
  }
385
 
386
+ }
classes/Settings/Column/ActionIcons.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_ActionIcons extends AC_Settings_Column {
 
 
 
8
 
9
  private $use_icons;
10
 
@@ -22,7 +23,7 @@ class AC_Settings_Column_ActionIcons extends AC_Settings_Column {
22
  '' => __( 'No' ),
23
  ) );
24
 
25
- $view = new AC_View( array(
26
  'label' => __( 'Use icons?', 'codepress-admin-columns' ),
27
  'tooltip' => __( 'Use icons instead of text for displaying the actions.', 'codepress-admin-columns' ),
28
  'setting' => $setting,
@@ -49,4 +50,4 @@ class AC_Settings_Column_ActionIcons extends AC_Settings_Column {
49
  return true;
50
  }
51
 
52
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings\Column;
6
+ use AC\View;
7
+
8
+ class ActionIcons extends Column {
9
 
10
  private $use_icons;
11
 
23
  '' => __( 'No' ),
24
  ) );
25
 
26
+ $view = new View( array(
27
  'label' => __( 'Use icons?', 'codepress-admin-columns' ),
28
  'tooltip' => __( 'Use icons instead of text for displaying the actions.', 'codepress-admin-columns' ),
29
  'setting' => $setting,
50
  return true;
51
  }
52
 
53
+ }
classes/Settings/Column/AttachmentDisplay.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_AttachmentDisplay extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  private $attachment_display;
11
 
@@ -20,7 +21,7 @@ class AC_Settings_Column_AttachmentDisplay extends AC_Settings_Column
20
 
21
  switch ( $this->get_attachment_display() ) {
22
  case 'thumbnail' :
23
- $settings[] = new AC_Settings_Column_Images( $this->column );
24
 
25
  break;
26
  }
@@ -37,7 +38,7 @@ class AC_Settings_Column_AttachmentDisplay extends AC_Settings_Column
37
  'count' => __( 'Count', 'codepress-admin-columns' ),
38
  ) );
39
 
40
- $view = new AC_View( array(
41
  'label' => __( 'Display', 'codepress-admin-columns' ),
42
  'setting' => $setting,
43
  ) );
@@ -72,4 +73,4 @@ class AC_Settings_Column_AttachmentDisplay extends AC_Settings_Column
72
 
73
  return $value;
74
  }
75
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class AttachmentDisplay extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  private $attachment_display;
12
 
21
 
22
  switch ( $this->get_attachment_display() ) {
23
  case 'thumbnail' :
24
+ $settings[] = new Settings\Column\Images( $this->column );
25
 
26
  break;
27
  }
38
  'count' => __( 'Count', 'codepress-admin-columns' ),
39
  ) );
40
 
41
+ $view = new View( array(
42
  'label' => __( 'Display', 'codepress-admin-columns' ),
43
  'setting' => $setting,
44
  ) );
73
 
74
  return $value;
75
  }
76
+ }
classes/Settings/Column/BeforeAfter.php CHANGED
@@ -1,11 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_BeforeAfter extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
 
9
 
10
  /**
11
  * @var string
@@ -54,25 +56,28 @@ class AC_Settings_Column_BeforeAfter extends AC_Settings_Column
54
  public function create_view() {
55
  $setting = $this->get_before_element();
56
 
57
- $before = new AC_View( array(
 
 
58
  'label' => __( 'Before', 'codepress-admin-columns' ),
59
  'description' => __( 'This text will appear before the column value.', 'codepress-admin-columns' ),
60
  'setting' => $setting,
61
- 'for' => $setting->get_id(),
62
  ) );
63
 
64
  $setting = $this->get_after_element();
65
 
66
- $after = new AC_View( array(
67
  'label' => __( 'After', 'codepress-admin-columns' ),
68
  'description' => __( 'This text will appear after the column value.', 'codepress-admin-columns' ),
69
  'setting' => $setting,
70
  'for' => $setting->get_id(),
71
  ) );
72
 
73
- $view = new AC_View( array(
74
  'label' => __( 'Display Options', 'codepress-admin-columns' ),
75
  'sections' => array( $before, $after ),
 
76
  ) );
77
 
78
  return $view;
@@ -114,4 +119,4 @@ class AC_Settings_Column_BeforeAfter extends AC_Settings_Column
114
  return true;
115
  }
116
 
117
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\Settings\Column;
7
+ use AC\View;
8
+
9
+ class BeforeAfter extends Column
10
+ implements Settings\FormatValue {
11
 
12
  /**
13
  * @var string
56
  public function create_view() {
57
  $setting = $this->get_before_element();
58
 
59
+ $for = $setting->get_id();
60
+
61
+ $before = new View( array(
62
  'label' => __( 'Before', 'codepress-admin-columns' ),
63
  'description' => __( 'This text will appear before the column value.', 'codepress-admin-columns' ),
64
  'setting' => $setting,
65
+ 'for' => $for,
66
  ) );
67
 
68
  $setting = $this->get_after_element();
69
 
70
+ $after = new View( array(
71
  'label' => __( 'After', 'codepress-admin-columns' ),
72
  'description' => __( 'This text will appear after the column value.', 'codepress-admin-columns' ),
73
  'setting' => $setting,
74
  'for' => $setting->get_id(),
75
  ) );
76
 
77
+ $view = new View( array(
78
  'label' => __( 'Display Options', 'codepress-admin-columns' ),
79
  'sections' => array( $before, $after ),
80
+ 'for' => $for,
81
  ) );
82
 
83
  return $view;
119
  return true;
120
  }
121
 
122
+ }
classes/Settings/Column/BeforeAfter/Aperture.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_BeforeAfter_Aperture extends AC_Settings_Column_BeforeAfter {
 
 
8
 
9
  protected function define_options() {
10
  return array( 'before' => 'f/', 'after' => '' );
11
  }
12
 
13
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\BeforeAfter;
 
 
4
 
5
+ use AC\Settings\Column\BeforeAfter;
6
+
7
+ class Aperture extends BeforeAfter {
8
 
9
  protected function define_options() {
10
  return array( 'before' => 'f/', 'after' => '' );
11
  }
12
 
13
+ }
classes/Settings/Column/BeforeAfter/FocalLength.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_BeforeAfter_FocalLength extends AC_Settings_Column_BeforeAfter {
 
 
8
 
9
  protected function define_options() {
10
  return array( 'before' => '', 'after' => 'mm' );
11
  }
12
 
13
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\BeforeAfter;
 
 
4
 
5
+ use AC\Settings\Column\BeforeAfter;
6
+
7
+ class FocalLength extends BeforeAfter {
8
 
9
  protected function define_options() {
10
  return array( 'before' => '', 'after' => 'mm' );
11
  }
12
 
13
+ }
classes/Settings/Column/BeforeAfter/ISO.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_BeforeAfter_ISO extends AC_Settings_Column_BeforeAfter {
 
 
8
 
9
  protected function define_options() {
10
  return array( 'before' => 'ISO ', 'after' => '' );
11
  }
12
 
13
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\BeforeAfter;
 
 
4
 
5
+ use AC\Settings\Column\BeforeAfter;
6
+
7
+ class ISO extends BeforeAfter {
8
 
9
  protected function define_options() {
10
  return array( 'before' => 'ISO ', 'after' => '' );
11
  }
12
 
13
+ }
classes/Settings/Column/BeforeAfter/ShutterSpeed.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_BeforeAfter_ShutterSpeed extends AC_Settings_Column_BeforeAfter {
 
 
8
 
9
  protected function define_options() {
10
  return array( 'before' => '', 'after' => 's' );
11
  }
12
 
13
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\BeforeAfter;
 
 
4
 
5
+ use AC\Settings\Column\BeforeAfter;
6
+
7
+ class ShutterSpeed extends BeforeAfter {
8
 
9
  protected function define_options() {
10
  return array( 'before' => '', 'after' => 's' );
11
  }
12
 
13
+ }
classes/Settings/Column/CharacterLimit.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_CharacterLimit extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var int
@@ -23,7 +24,7 @@ class AC_Settings_Column_CharacterLimit extends AC_Settings_Column
23
  ->set_attribute( 'min', 0 )
24
  ->set_attribute( 'step', 1 );
25
 
26
- $view = new AC_View( array(
27
  'label' => __( 'Character Limit', 'codepress-admin-columns' ),
28
  'tooltip' => __( 'Maximum number of characters', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
29
  'setting' => $word_limit,
@@ -54,4 +55,4 @@ class AC_Settings_Column_CharacterLimit extends AC_Settings_Column
54
  return ac_helper()->string->trim_characters( $value, $this->get_character_limit() );
55
  }
56
 
57
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class CharacterLimit extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var int
24
  ->set_attribute( 'min', 0 )
25
  ->set_attribute( 'step', 1 );
26
 
27
+ $view = new View( array(
28
  'label' => __( 'Character Limit', 'codepress-admin-columns' ),
29
  'tooltip' => __( 'Maximum number of characters', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
30
  'setting' => $word_limit,
55
  return ac_helper()->string->trim_characters( $value, $this->get_character_limit() );
56
  }
57
 
58
+ }
classes/Settings/Column/Comment.php CHANGED
@@ -1,14 +1,15 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
6
 
7
  /**
8
  * @since 3.0.8
9
  */
10
- class AC_Settings_Column_Comment extends AC_Settings_Column
11
- implements AC_Settings_FormatValueInterface {
12
 
13
  /**
14
  * @var string
@@ -30,11 +31,11 @@ class AC_Settings_Column_Comment extends AC_Settings_Column
30
  switch ( $this->get_comment_property_display() ) {
31
 
32
  case 'date' :
33
- return array( new AC_Settings_Column_Date( $this->column ) );
34
 
35
  break;
36
  case 'comment' :
37
- return array( new AC_Settings_Column_StringLimit( $this->column ) );
38
 
39
  break;
40
 
@@ -97,7 +98,7 @@ class AC_Settings_Column_Comment extends AC_Settings_Column
97
  ->set_attribute( 'data-refresh', 'column' )
98
  ->set_options( $this->get_display_options() );
99
 
100
- $view = new AC_View( array(
101
  'label' => __( 'Display', 'codepress-admin-columns' ),
102
  'setting' => $select,
103
  ) );
@@ -137,4 +138,4 @@ class AC_Settings_Column_Comment extends AC_Settings_Column
137
  return true;
138
  }
139
 
140
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
4
+
5
+ use AC\Settings;
6
+ use AC\View;
7
 
8
  /**
9
  * @since 3.0.8
10
  */
11
+ class Comment extends Settings\Column
12
+ implements Settings\FormatValue {
13
 
14
  /**
15
  * @var string
31
  switch ( $this->get_comment_property_display() ) {
32
 
33
  case 'date' :
34
+ return array( new Settings\Column\Date( $this->column ) );
35
 
36
  break;
37
  case 'comment' :
38
+ return array( new Settings\Column\StringLimit( $this->column ) );
39
 
40
  break;
41
 
98
  ->set_attribute( 'data-refresh', 'column' )
99
  ->set_options( $this->get_display_options() );
100
 
101
+ $view = new View( array(
102
  'label' => __( 'Display', 'codepress-admin-columns' ),
103
  'setting' => $select,
104
  ) );
138
  return true;
139
  }
140
 
141
+ }
classes/Settings/Column/CommentCount.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_CommentCount extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -23,13 +24,13 @@ class AC_Settings_Column_CommentCount extends AC_Settings_Column
23
  }
24
 
25
  /**
26
- * @return AC_View
27
  */
28
  public function create_view() {
29
  $setting = $this->create_element( 'select' )
30
  ->set_options( $this->get_comment_statuses() );
31
 
32
- $view = new AC_View( array(
33
  'label' => __( 'Comment status', 'codepress-admin-columns' ),
34
  'tooltip' => __( 'Select which comment status you like to display.', 'codepress-admin-columns' ),
35
  'setting' => $setting,
@@ -107,4 +108,4 @@ class AC_Settings_Column_CommentCount extends AC_Settings_Column
107
  return ac_helper()->html->link( add_query_arg( array( 'p' => $post_id, 'comment_status' => $this->get_comment_status() ), admin_url( 'edit-comments.php' ) ), $count );
108
  }
109
 
110
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class CommentCount extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
24
  }
25
 
26
  /**
27
+ * @return View
28
  */
29
  public function create_view() {
30
  $setting = $this->create_element( 'select' )
31
  ->set_options( $this->get_comment_statuses() );
32
 
33
+ $view = new View( array(
34
  'label' => __( 'Comment status', 'codepress-admin-columns' ),
35
  'tooltip' => __( 'Select which comment status you like to display.', 'codepress-admin-columns' ),
36
  'setting' => $setting,
108
  return ac_helper()->html->link( add_query_arg( array( 'p' => $post_id, 'comment_status' => $this->get_comment_status() ), admin_url( 'edit-comments.php' ) ), $count );
109
  }
110
 
111
+ }
classes/Settings/Column/CustomField.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
 
 
 
8
 
9
  protected function set_name() {
10
  $this->name = 'custom_field';
@@ -24,7 +25,7 @@ class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
24
  }
25
 
26
  public function get_dependent_settings() {
27
- return array( new AC_Settings_Column_CustomFieldType( $this->column ) );
28
  }
29
 
30
  protected function get_cache_group() {
@@ -53,7 +54,7 @@ class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
53
  * @return array|false
54
  */
55
  protected function get_meta_keys() {
56
- $query = new AC_Meta_Query( $this->get_meta_type() );
57
 
58
  $query->select( 'meta_key' )
59
  ->distinct()
@@ -71,7 +72,7 @@ class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
71
 
72
  /**
73
  * @param array $keys Distinct meta keys from DB
74
- * @param AC_Settings_Column_CustomField $this
75
  */
76
  return apply_filters( 'ac/column/custom_field/meta_keys', $keys, $this );
77
  }
@@ -91,4 +92,4 @@ class AC_Settings_Column_CustomField extends AC_Settings_Column_Meta {
91
  return parent::set_field( $field );
92
  }
93
 
94
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC;
6
+ use AC\Settings;
7
+
8
+ class CustomField extends Meta {
9
 
10
  protected function set_name() {
11
  $this->name = 'custom_field';
25
  }
26
 
27
  public function get_dependent_settings() {
28
+ return array( new Settings\Column\CustomFieldType( $this->column ) );
29
  }
30
 
31
  protected function get_cache_group() {
54
  * @return array|false
55
  */
56
  protected function get_meta_keys() {
57
+ $query = new AC\Meta\Query( $this->get_meta_type() );
58
 
59
  $query->select( 'meta_key' )
60
  ->distinct()
72
 
73
  /**
74
  * @param array $keys Distinct meta keys from DB
75
+ * @param Settings\Column\CustomField $this
76
  */
77
  return apply_filters( 'ac/column/custom_field/meta_keys', $keys, $this );
78
  }
92
  return parent::set_field( $field );
93
  }
94
 
95
+ }
classes/Settings/Column/CustomFieldType.php CHANGED
@@ -1,11 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
 
 
9
 
10
  /**
11
  * @var string
@@ -22,20 +25,20 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
22
  switch ( $this->get_field_type() ) {
23
 
24
  case 'date' :
25
- $settings[] = new AC_Settings_Column_Date( $this->column );
26
 
27
  break;
28
  case 'image' :
29
  case 'library_id' :
30
- $settings[] = new AC_Settings_Column_Image( $this->column );
31
 
32
  break;
33
  case 'excerpt' :
34
- $settings[] = new AC_Settings_Column_StringLimit( $this->column );
35
 
36
  break;
37
  case 'link' :
38
- $settings[] = new AC_Settings_Column_LinkLabel( $this->column );
39
 
40
  break;
41
  }
@@ -56,7 +59,7 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
56
  $tooltip .= '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->get_field_type() . '</em>';
57
  }
58
 
59
- $view = new AC_View( array(
60
  'label' => __( 'Field Type', 'codepress-admin-columns' ),
61
  'tooltip' => $tooltip,
62
  'setting' => $select,
@@ -66,8 +69,8 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
66
  }
67
 
68
  private function get_description_object_ids( $input ) {
69
- $description = sprintf( __( "Uses the id from a %s to display information about it.", 'codepress-admin-columns' ), '<em>' . $input . '</em>' );
70
- $description .= ' ' . __( "Multiple ids should be separated by a comma.", 'codepress-admin-columns' );
71
 
72
  return $description;
73
  }
@@ -99,9 +102,9 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
99
  'basic' => array(
100
  'color' => __( 'Color', 'codepress-admin-columns' ),
101
  'date' => __( 'Date', 'codepress-admin-columns' ),
102
- 'excerpt' => __( 'Text' ),
103
  'image' => __( 'Image', 'codepress-admin-columns' ),
104
- 'link' => __( 'Url', 'codepress-admin-columns' ),
105
  'numeric' => __( 'Number', 'codepress-admin-columns' ),
106
  ),
107
  'choice' => array(
@@ -224,11 +227,11 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
224
 
225
  break;
226
  case 'image':
227
- $value = new AC_Collection( $this->get_values_from_array_or_string( $value ) );
228
 
229
  break;
230
  case 'library_id' :
231
- $value = new AC_Collection( $this->get_ids_from_array_or_string( $value ) );
232
 
233
  break;
234
  case "checkmark" :
@@ -252,7 +255,7 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
252
  break;
253
  case "count" :
254
 
255
- if ( $this->column instanceof AC_Column_Meta ) {
256
  $value = $this->column->get_meta_value( $original_value, $this->column->get_meta_key(), false );
257
 
258
  if ( $value ) {
@@ -300,4 +303,4 @@ class AC_Settings_Column_CustomFieldType extends AC_Settings_Column
300
  return true;
301
  }
302
 
303
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC;
6
+ use AC\Collection;
7
+ use AC\Settings;
8
+ use AC\View;
9
+
10
+ class CustomFieldType extends Settings\Column
11
+ implements Settings\FormatValue {
12
 
13
  /**
14
  * @var string
25
  switch ( $this->get_field_type() ) {
26
 
27
  case 'date' :
28
+ $settings[] = new Date( $this->column );
29
 
30
  break;
31
  case 'image' :
32
  case 'library_id' :
33
+ $settings[] = new Image( $this->column );
34
 
35
  break;
36
  case 'excerpt' :
37
+ $settings[] = new StringLimit( $this->column );
38
 
39
  break;
40
  case 'link' :
41
+ $settings[] = new LinkLabel( $this->column );
42
 
43
  break;
44
  }
59
  $tooltip .= '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->get_field_type() . '</em>';
60
  }
61
 
62
+ $view = new View( array(
63
  'label' => __( 'Field Type', 'codepress-admin-columns' ),
64
  'tooltip' => $tooltip,
65
  'setting' => $select,
69
  }
70
 
71
  private function get_description_object_ids( $input ) {
72
+ $description = sprintf( __( "Uses one or more %s IDs to display information about it.", 'codepress-admin-columns' ), '<em>' . $input . '</em>' );
73
+ $description .= ' ' . __( "Multiple IDs should be separated by commas.", 'codepress-admin-columns' );
74
 
75
  return $description;
76
  }
102
  'basic' => array(
103
  'color' => __( 'Color', 'codepress-admin-columns' ),
104
  'date' => __( 'Date', 'codepress-admin-columns' ),
105
+ 'excerpt' => __( 'Excerpt', 'codepress-admin-columns' ),
106
  'image' => __( 'Image', 'codepress-admin-columns' ),
107
+ 'link' => __( 'URL', 'codepress-admin-columns' ),
108
  'numeric' => __( 'Number', 'codepress-admin-columns' ),
109
  ),
110
  'choice' => array(
227
 
228
  break;
229
  case 'image':
230
+ $value = new Collection( $this->get_values_from_array_or_string( $value ) );
231
 
232
  break;
233
  case 'library_id' :
234
+ $value = new Collection( $this->get_ids_from_array_or_string( $value ) );
235
 
236
  break;
237
  case "checkmark" :
255
  break;
256
  case "count" :
257
 
258
+ if ( $this->column instanceof AC\Column\Meta ) {
259
  $value = $this->column->get_meta_value( $original_value, $this->column->get_meta_key(), false );
260
 
261
  if ( $value ) {
303
  return true;
304
  }
305
 
306
+ }
classes/Settings/Column/Date.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Date extends AC_Settings_Column_DateTimeFormat {
 
 
8
 
9
  private function get_diff_html_label() {
10
  $description = __( 'The difference is returned in a human readable format.', 'codepress-admin-columns' ) . ' <br/>' .
@@ -81,4 +81,4 @@ class AC_Settings_Column_Date extends AC_Settings_Column_DateTimeFormat {
81
  return sprintf( $tpl, human_time_diff( $timestamp, $current_time ) );
82
  }
83
 
84
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class Date extends Settings\Column\DateTimeFormat {
8
 
9
  private function get_diff_html_label() {
10
  $description = __( 'The difference is returned in a human readable format.', 'codepress-admin-columns' ) . ' <br/>' .
81
  return sprintf( $tpl, human_time_diff( $timestamp, $current_time ) );
82
  }
83
 
84
+ }
classes/Settings/Column/DateTimeFormat.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Settings_Column_DateTimeFormat extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  private $date_format;
11
 
@@ -47,7 +48,7 @@ abstract class AC_Settings_Column_DateTimeFormat extends AC_Settings_Column
47
  ->create_element( 'text' )
48
  ->set_attribute( 'placeholder', $this->get_default() );
49
 
50
- $view = new AC_View( array(
51
  'setting' => $setting,
52
  'date_format' => $this->get_date_format(),
53
  'date_options' => $this->get_date_options(),
@@ -189,4 +190,4 @@ abstract class AC_Settings_Column_DateTimeFormat extends AC_Settings_Column
189
  return $date;
190
  }
191
 
192
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ abstract class DateTimeFormat extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  private $date_format;
12
 
48
  ->create_element( 'text' )
49
  ->set_attribute( 'placeholder', $this->get_default() );
50
 
51
+ $view = new View( array(
52
  'setting' => $setting,
53
  'date_format' => $this->get_date_format(),
54
  'date_options' => $this->get_date_options(),
190
  return $date;
191
  }
192
 
193
+ }
classes/Settings/Column/ExifData.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_ExifData extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -26,7 +27,7 @@ class AC_Settings_Column_ExifData extends AC_Settings_Column
26
  ->set_attribute( 'data-refresh', 'column' )
27
  ->set_options( $this->get_exif_types() );
28
 
29
- return new AC_View( array(
30
  'label' => $this->column->get_label(),
31
  'setting' => $setting,
32
  ) );
@@ -36,23 +37,23 @@ class AC_Settings_Column_ExifData extends AC_Settings_Column
36
 
37
  switch ( $this->get_exif_datatype() ) {
38
  case 'aperture' :
39
- $settings = array( new AC_Settings_Column_BeforeAfter_Aperture( $this->column ) );
40
 
41
  break;
42
  case 'focal_length' :
43
- $settings = array( new AC_Settings_Column_BeforeAfter_FocalLength( $this->column ) );
44
 
45
  break;
46
  case 'iso' :
47
- $settings = array( new AC_Settings_Column_BeforeAfter_ISO( $this->column ) );
48
 
49
  break;
50
  case 'shutter_speed' :
51
- $settings = array( new AC_Settings_Column_BeforeAfter_ShutterSpeed( $this->column ) );
52
 
53
  break;
54
  default :
55
- $settings = array( new AC_Settings_Column_BeforeAfter( $this->column ) );
56
  }
57
 
58
  return $settings;
@@ -126,4 +127,4 @@ class AC_Settings_Column_ExifData extends AC_Settings_Column
126
  return $value;
127
  }
128
 
129
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class ExifData extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
27
  ->set_attribute( 'data-refresh', 'column' )
28
  ->set_options( $this->get_exif_types() );
29
 
30
+ return new View( array(
31
  'label' => $this->column->get_label(),
32
  'setting' => $setting,
33
  ) );
37
 
38
  switch ( $this->get_exif_datatype() ) {
39
  case 'aperture' :
40
+ $settings = array( new Settings\Column\BeforeAfter\Aperture( $this->column ) );
41
 
42
  break;
43
  case 'focal_length' :
44
+ $settings = array( new Settings\Column\BeforeAfter\FocalLength( $this->column ) );
45
 
46
  break;
47
  case 'iso' :
48
+ $settings = array( new Settings\Column\BeforeAfter\ISO( $this->column ) );
49
 
50
  break;
51
  case 'shutter_speed' :
52
+ $settings = array( new Settings\Column\BeforeAfter\ShutterSpeed( $this->column ) );
53
 
54
  break;
55
  default :
56
+ $settings = array( new Settings\Column\BeforeAfter( $this->column ) );
57
  }
58
 
59
  return $settings;
127
  return $value;
128
  }
129
 
130
+ }
classes/Settings/Column/Image.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Image extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -35,13 +36,13 @@ class AC_Settings_Column_Image extends AC_Settings_Column
35
  }
36
 
37
  public function create_view() {
38
- $width = new AC_View( array(
39
  'setting' => $this->create_element( 'number', 'image_size_w' ),
40
  'label' => __( 'Width', 'codepress-admin-columns' ),
41
  'tooltip' => __( 'Width in pixels', 'codepress-admin-columns' ),
42
  ) );
43
 
44
- $height = new AC_View( array(
45
  'setting' => $this->create_element( 'number', 'image_size_h' ),
46
  'label' => __( 'Height', 'codepress-admin-columns' ),
47
  'tooltip' => __( 'Height in pixels', 'codepress-admin-columns' ),
@@ -50,7 +51,7 @@ class AC_Settings_Column_Image extends AC_Settings_Column
50
  $size = $this->create_element( 'select', 'image_size' )
51
  ->set_options( $this->get_grouped_image_sizes() );
52
 
53
- $view = new AC_View( array(
54
  'label' => __( 'Image Size', 'codepress-admin-columns' ),
55
  'setting' => $size,
56
  'sections' => array( $width, $height ),
@@ -196,4 +197,4 @@ class AC_Settings_Column_Image extends AC_Settings_Column
196
  return ac_helper()->image->get_image( $value, $this->get_size_args() );
197
  }
198
 
199
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Image extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
36
  }
37
 
38
  public function create_view() {
39
+ $width = new View( array(
40
  'setting' => $this->create_element( 'number', 'image_size_w' ),
41
  'label' => __( 'Width', 'codepress-admin-columns' ),
42
  'tooltip' => __( 'Width in pixels', 'codepress-admin-columns' ),
43
  ) );
44
 
45
+ $height = new View( array(
46
  'setting' => $this->create_element( 'number', 'image_size_h' ),
47
  'label' => __( 'Height', 'codepress-admin-columns' ),
48
  'tooltip' => __( 'Height in pixels', 'codepress-admin-columns' ),
51
  $size = $this->create_element( 'select', 'image_size' )
52
  ->set_options( $this->get_grouped_image_sizes() );
53
 
54
+ $view = new View( array(
55
  'label' => __( 'Image Size', 'codepress-admin-columns' ),
56
  'setting' => $size,
57
  'sections' => array( $width, $height ),
197
  return ac_helper()->image->get_image( $value, $this->get_size_args() );
198
  }
199
 
200
+ }
classes/Settings/Column/Images.php CHANGED
@@ -1,24 +1,25 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Images extends AC_Settings_Column_Image {
 
 
 
8
 
9
  protected function set_name() {
10
  return $this->name = 'images';
11
  }
12
 
13
  public function get_dependent_settings() {
14
- return array( new AC_Settings_Column_NumberOfItems( $this->column ) );
15
  }
16
 
17
  public function format( $value, $original_value ) {
18
- $collection = new AC_Collection( (array) $value );
19
  $removed = $collection->limit( $this->column->get_setting( 'number_of_items' )->get_value() );
20
 
21
  return ac_helper()->html->images( parent::format( $collection->all(), $original_value ), $removed );
22
  }
23
 
24
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Collection;
6
+ use AC\Settings;
7
+
8
+ class Images extends Settings\Column\Image {
9
 
10
  protected function set_name() {
11
  return $this->name = 'images';
12
  }
13
 
14
  public function get_dependent_settings() {
15
+ return array( new Settings\Column\NumberOfItems( $this->column ) );
16
  }
17
 
18
  public function format( $value, $original_value ) {
19
+ $collection = new Collection( (array) $value );
20
  $removed = $collection->limit( $this->column->get_setting( 'number_of_items' )->get_value() );
21
 
22
  return ac_helper()->html->images( parent::format( $collection->all(), $original_value ), $removed );
23
  }
24
 
25
+ }
classes/Settings/Column/Label.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Label extends AC_Settings_Column {
 
 
 
8
 
9
  /**
10
  * @var string
@@ -23,7 +24,7 @@ class AC_Settings_Column_Label extends AC_Settings_Column {
23
  ->create_element( 'text' )
24
  ->set_attribute( 'placeholder', $this->column->get_label() );
25
 
26
- $view = new AC_View( array(
27
  'label' => __( 'Label', 'codepress-admin-columns' ),
28
  'tooltip' => __( 'This is the name which will appear as the column header.', 'codepress-admin-columns' ),
29
  'setting' => $setting,
@@ -74,4 +75,4 @@ class AC_Settings_Column_Label extends AC_Settings_Column {
74
  return $this->convert_site_url( $this->label );
75
  }
76
 
77
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Label extends Settings\Column {
9
 
10
  /**
11
  * @var string
24
  ->create_element( 'text' )
25
  ->set_attribute( 'placeholder', $this->column->get_label() );
26
 
27
+ $view = new View( array(
28
  'label' => __( 'Label', 'codepress-admin-columns' ),
29
  'tooltip' => __( 'This is the name which will appear as the column header.', 'codepress-admin-columns' ),
30
  'setting' => $setting,
75
  return $this->convert_site_url( $this->label );
76
  }
77
 
78
+ }
classes/Settings/Column/LinkLabel.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_LinkLabel extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -17,10 +18,10 @@ class AC_Settings_Column_LinkLabel extends AC_Settings_Column
17
  }
18
 
19
  public function create_view() {
20
- $view = new AC_View( array(
21
  'setting' => $this->create_element( 'text' ),
22
  'label' => __( 'Link Label', 'codepress-admin-columns' ),
23
- 'tooltip' => __( 'Leave blank to display the url', 'codepress-admin-columns' ),
24
  ) );
25
 
26
  return $view;
@@ -60,4 +61,4 @@ class AC_Settings_Column_LinkLabel extends AC_Settings_Column
60
  return $value;
61
  }
62
 
63
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class LinkLabel extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
18
  }
19
 
20
  public function create_view() {
21
+ $view = new View( array(
22
  'setting' => $this->create_element( 'text' ),
23
  'label' => __( 'Link Label', 'codepress-admin-columns' ),
24
+ 'tooltip' => __( 'Leave blank to display the URL', 'codepress-admin-columns' ),
25
  ) );
26
 
27
  return $view;
61
  return $value;
62
  }
63
 
64
+ }
classes/Settings/Column/LinkToMenu.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_LinkToMenu extends AC_Settings_Column_Toggle
8
- implements AC_Settings_FormatValueInterface {
 
 
9
 
10
  /**
11
  * @var string
@@ -73,4 +73,4 @@ class AC_Settings_Column_LinkToMenu extends AC_Settings_Column_Toggle
73
  return wp_sprintf( '%l', $values );
74
  }
75
 
76
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class LinkToMenu extends Settings\Column\Toggle
8
+ implements Settings\FormatValue {
9
 
10
  /**
11
  * @var string
73
  return wp_sprintf( '%l', $values );
74
  }
75
 
76
+ }
classes/Settings/Column/Message.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Message extends AC_Settings_Column {
 
 
 
8
 
9
  private $label;
10
 
@@ -31,7 +32,7 @@ class AC_Settings_Column_Message extends AC_Settings_Column {
31
  }
32
 
33
  public function create_view() {
34
- $view = new AC_View( array(
35
  'label' => $this->label,
36
  'setting' => $this->message,
37
  ) );
@@ -39,4 +40,4 @@ class AC_Settings_Column_Message extends AC_Settings_Column {
39
  return $view;
40
  }
41
 
42
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Message extends Settings\Column {
9
 
10
  private $label;
11
 
32
  }
33
 
34
  public function create_view() {
35
+ $view = new View( array(
36
  'label' => $this->label,
37
  'setting' => $this->message,
38
  ) );
40
  return $view;
41
  }
42
 
43
+ }
classes/Settings/Column/Meta.php CHANGED
@@ -1,10 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
 
 
6
 
7
- abstract class AC_Settings_Column_Meta extends AC_Settings_Column {
8
 
9
  /**
10
  * @var string
@@ -18,7 +20,7 @@ abstract class AC_Settings_Column_Meta extends AC_Settings_Column {
18
  }
19
 
20
  /**
21
- * @return AC_Form_Element_Select
22
  */
23
  protected function get_setting_field() {
24
  $setting = $this
@@ -63,10 +65,10 @@ abstract class AC_Settings_Column_Meta extends AC_Settings_Column {
63
  }
64
 
65
  /**
66
- * @return AC_View
67
  */
68
  public function create_view() {
69
- $view = new AC_View( array(
70
  'label' => __( 'Field', 'codepress-admin-columns' ),
71
  'setting' => $this->get_setting_field(),
72
  ) );
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
4
+
5
+ use AC\Form\Element\Select;
6
+ use AC\Settings\Column;
7
+ use AC\View;
8
 
9
+ abstract class Meta extends Column {
10
 
11
  /**
12
  * @var string
20
  }
21
 
22
  /**
23
+ * @return Select
24
  */
25
  protected function get_setting_field() {
26
  $setting = $this
65
  }
66
 
67
  /**
68
+ * @return View
69
  */
70
  public function create_view() {
71
+ $view = new View( array(
72
  'label' => __( 'Field', 'codepress-admin-columns' ),
73
  'setting' => $this->get_setting_field(),
74
  ) );
classes/Settings/Column/MissingImageSize.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_MissingImageSize extends AC_Settings_Column {
 
 
 
8
 
9
  private $include_missing_sizes;
10
 
@@ -22,7 +23,7 @@ class AC_Settings_Column_MissingImageSize extends AC_Settings_Column {
22
  '' => __( 'No' ),
23
  ) );
24
 
25
- $view = new AC_View( array(
26
  'label' => __( 'Include missing sizes?', 'codepress-admin-columns' ),
27
  'tooltip' => __( 'Include sizes that are missing an image file.', 'codepress-admin-columns' ),
28
  'setting' => $setting,
@@ -49,4 +50,4 @@ class AC_Settings_Column_MissingImageSize extends AC_Settings_Column {
49
  return true;
50
  }
51
 
52
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class MissingImageSize extends Settings\Column {
9
 
10
  private $include_missing_sizes;
11
 
23
  '' => __( 'No' ),
24
  ) );
25
 
26
+ $view = new View( array(
27
  'label' => __( 'Include missing sizes?', 'codepress-admin-columns' ),
28
  'tooltip' => __( 'Include sizes that are missing an image file.', 'codepress-admin-columns' ),
29
  'setting' => $setting,
50
  return true;
51
  }
52
 
53
+ }
classes/Settings/Column/NumberOfItems.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_NumberOfItems extends AC_Settings_Column {
 
 
 
8
 
9
  /**
10
  * @var string
@@ -25,7 +26,7 @@ class AC_Settings_Column_NumberOfItems extends AC_Settings_Column {
25
  $item_limit = $this->create_element( 'number' )
26
  ->set_attribute( 'step', 1 );
27
 
28
- $view = new AC_View( array(
29
  'label' => __( 'Number of Items', 'codepress-admin-columns' ),
30
  'tooltip' => __( 'Maximum number of items', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
31
  'setting' => $item_limit,
@@ -54,4 +55,4 @@ class AC_Settings_Column_NumberOfItems extends AC_Settings_Column {
54
  return true;
55
  }
56
 
57
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class NumberOfItems extends Settings\Column {
9
 
10
  /**
11
  * @var string
26
  $item_limit = $this->create_element( 'number' )
27
  ->set_attribute( 'step', 1 );
28
 
29
+ $view = new View( array(
30
  'label' => __( 'Number of Items', 'codepress-admin-columns' ),
31
  'tooltip' => __( 'Maximum number of items', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
32
  'setting' => $item_limit,
55
  return true;
56
  }
57
 
58
+ }
classes/Settings/Column/Password.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Password extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -23,7 +24,7 @@ class AC_Settings_Column_Password extends AC_Settings_Column
23
  'text' => __( 'Plain text', 'codepress-admin-column' ),
24
  ) );
25
 
26
- $view = new AC_View( array(
27
  'label' => __( 'Display format', 'codepress-admin-columns' ),
28
  'setting' => $select,
29
  ) );
@@ -58,4 +59,4 @@ class AC_Settings_Column_Password extends AC_Settings_Column
58
  return $value;
59
  }
60
 
61
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Password extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
24
  'text' => __( 'Plain text', 'codepress-admin-column' ),
25
  ) );
26
 
27
+ $view = new View( array(
28
  'label' => __( 'Display format', 'codepress-admin-columns' ),
29
  'setting' => $select,
30
  ) );
59
  return $value;
60
  }
61
 
62
+ }
classes/Settings/Column/PathScope.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_PathScope extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -23,10 +24,10 @@ class AC_Settings_Column_PathScope extends AC_Settings_Column
23
  ->set_options( array(
24
  'full' => __( 'Full Path', 'codepress-admin-columns' ),
25
  'relative-domain' => __( 'Relative to domain', 'codepress-admin-columns' ),
26
- 'relative-uploads' => __( 'Relative to main uploads folder ', 'codepress-admin-columns' ),
27
  ) );
28
 
29
- $view = new AC_View( array(
30
  'label' => __( 'Path scope', 'codepress-admin-columns' ),
31
  'tooltip' => __( 'Part of the file path to display', 'codepress-admin-columns' ),
32
  'setting' => $select,
@@ -87,4 +88,4 @@ class AC_Settings_Column_PathScope extends AC_Settings_Column
87
  return $value;
88
  }
89
 
90
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class PathScope extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
24
  ->set_options( array(
25
  'full' => __( 'Full Path', 'codepress-admin-columns' ),
26
  'relative-domain' => __( 'Relative to domain', 'codepress-admin-columns' ),
27
+ 'relative-uploads' => __( 'Relative to main uploads folder', 'codepress-admin-columns' ),
28
  ) );
29
 
30
+ $view = new View( array(
31
  'label' => __( 'Path scope', 'codepress-admin-columns' ),
32
  'tooltip' => __( 'Part of the file path to display', 'codepress-admin-columns' ),
33
  'setting' => $select,
88
  return $value;
89
  }
90
 
91
+ }
classes/Settings/Column/Post.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Post extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -27,11 +28,11 @@ class AC_Settings_Column_Post extends AC_Settings_Column
27
 
28
  switch ( $this->get_post_property_display() ) {
29
  case 'thumbnail' :
30
- $setting[] = new AC_Settings_Column_Image( $this->column );
31
  break;
32
  }
33
 
34
- $setting[] = new AC_Settings_Column_PostLink( $this->column );
35
 
36
  return $setting;
37
  }
@@ -70,7 +71,7 @@ class AC_Settings_Column_Post extends AC_Settings_Column
70
  ->set_attribute( 'data-refresh', 'column' )
71
  ->set_options( $this->get_display_options() );
72
 
73
- $view = new AC_View( array(
74
  'label' => __( 'Display', 'codepress-admin-columns' ),
75
  'setting' => $select,
76
  ) );
@@ -109,4 +110,4 @@ class AC_Settings_Column_Post extends AC_Settings_Column
109
  return true;
110
  }
111
 
112
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Post extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
28
 
29
  switch ( $this->get_post_property_display() ) {
30
  case 'thumbnail' :
31
+ $setting[] = new Settings\Column\Image( $this->column );
32
  break;
33
  }
34
 
35
+ $setting[] = new Settings\Column\PostLink( $this->column );
36
 
37
  return $setting;
38
  }
71
  ->set_attribute( 'data-refresh', 'column' )
72
  ->set_options( $this->get_display_options() );
73
 
74
+ $view = new View( array(
75
  'label' => __( 'Display', 'codepress-admin-columns' ),
76
  'setting' => $select,
77
  ) );
110
  return true;
111
  }
112
 
113
+ }
classes/Settings/Column/PostFormatIcon.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_PostFormatIcon extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var bool
@@ -24,7 +25,7 @@ class AC_Settings_Column_PostFormatIcon extends AC_Settings_Column
24
  '' => __( 'No' ),
25
  ) );
26
 
27
- $view = new AC_View( array(
28
  'label' => __( 'Use an icon?', 'codepress-admin-columns' ),
29
  'tooltip' => __( 'Use an icon instead of text for displaying.', 'codepress-admin-columns' ),
30
  'setting' => $setting,
@@ -80,4 +81,4 @@ class AC_Settings_Column_PostFormatIcon extends AC_Settings_Column
80
  return $value;
81
  }
82
 
83
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class PostFormatIcon extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var bool
25
  '' => __( 'No' ),
26
  ) );
27
 
28
+ $view = new View( array(
29
  'label' => __( 'Use an icon?', 'codepress-admin-columns' ),
30
  'tooltip' => __( 'Use an icon instead of text for displaying.', 'codepress-admin-columns' ),
31
  'setting' => $setting,
81
  return $value;
82
  }
83
 
84
+ }
classes/Settings/Column/PostLink.php CHANGED
@@ -1,11 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_PostLink extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
 
9
 
10
  /**
11
  * @var string
@@ -52,7 +54,7 @@ class AC_Settings_Column_PostLink extends AC_Settings_Column
52
  public function create_view() {
53
  $select = $this->create_element( 'select' )->set_options( $this->get_display_options() );
54
 
55
- $view = new AC_View( array(
56
  'label' => __( 'Link To', 'codepress-admin-columns' ),
57
  'setting' => $select,
58
  ) );
@@ -70,7 +72,7 @@ class AC_Settings_Column_PostLink extends AC_Settings_Column
70
  'view_author' => __( 'View Public Post Author Page', 'codepress-admin-columns' ),
71
  );
72
 
73
- if ( $this->column instanceof AC_Column_RelationInterface ) {
74
  $relation_options = array(
75
  'edit_post' => _x( 'Edit %s', 'post' ),
76
  'view_post' => _x( 'View %s', 'post' ),
@@ -106,4 +108,4 @@ class AC_Settings_Column_PostLink extends AC_Settings_Column
106
  return true;
107
  }
108
 
109
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC;
6
+ use AC\Settings;
7
+ use AC\View;
8
+
9
+ class PostLink extends Settings\Column
10
+ implements Settings\FormatValue {
11
 
12
  /**
13
  * @var string
54
  public function create_view() {
55
  $select = $this->create_element( 'select' )->set_options( $this->get_display_options() );
56
 
57
+ $view = new View( array(
58
  'label' => __( 'Link To', 'codepress-admin-columns' ),
59
  'setting' => $select,
60
  ) );
72
  'view_author' => __( 'View Public Post Author Page', 'codepress-admin-columns' ),
73
  );
74
 
75
+ if ( $this->column instanceof AC\Column\Relation ) {
76
  $relation_options = array(
77
  'edit_post' => _x( 'Edit %s', 'post' ),
78
  'view_post' => _x( 'View %s', 'post' ),
108
  return true;
109
  }
110
 
111
+ }
classes/Settings/Column/PostType.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_PostType extends AC_Settings_Column {
 
 
 
8
 
9
  /**
10
  * @var string
@@ -20,7 +21,7 @@ class AC_Settings_Column_PostType extends AC_Settings_Column {
20
  ->set_attribute( 'data-label', 'update' )
21
  ->set_options( $this->get_post_type_labels() );
22
 
23
- $view = new AC_View( array(
24
  'label' => __( 'Post Type', 'codepress-admin-columns' ),
25
  'setting' => $setting,
26
  ) );
@@ -30,7 +31,8 @@ class AC_Settings_Column_PostType extends AC_Settings_Column {
30
 
31
  private function get_post_type_labels() {
32
  $options = array();
33
- $post_types = AC()->get_post_types();
 
34
 
35
  if ( ! is_array( $post_types ) ) {
36
  return $options;
@@ -64,4 +66,4 @@ class AC_Settings_Column_PostType extends AC_Settings_Column {
64
  return true;
65
  }
66
 
67
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class PostType extends Settings\Column {
9
 
10
  /**
11
  * @var string
21
  ->set_attribute( 'data-label', 'update' )
22
  ->set_options( $this->get_post_type_labels() );
23
 
24
+ $view = new View( array(
25
  'label' => __( 'Post Type', 'codepress-admin-columns' ),
26
  'setting' => $setting,
27
  ) );
31
 
32
  private function get_post_type_labels() {
33
  $options = array();
34
+
35
+ $post_types = get_post_types();
36
 
37
  if ( ! is_array( $post_types ) ) {
38
  return $options;
66
  return true;
67
  }
68
 
69
+ }
classes/Settings/Column/Pro.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Settings_Column_Pro extends AC_Settings_Column {
 
 
 
8
 
9
  abstract protected function get_label();
10
 
@@ -18,7 +19,7 @@ abstract class AC_Settings_Column_Pro extends AC_Settings_Column {
18
  ) )
19
  ->set_value( 'off' );
20
 
21
- $view = new AC_View();
22
  $view->set( 'label', $this->get_label() )
23
  ->set( 'tooltip', $this->get_tooltip() )
24
  ->set( 'setting', $setting )
@@ -27,4 +28,4 @@ abstract class AC_Settings_Column_Pro extends AC_Settings_Column {
27
  return $view;
28
  }
29
 
30
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ abstract class Pro extends Settings\Column {
9
 
10
  abstract protected function get_label();
11
 
19
  ) )
20
  ->set_value( 'off' );
21
 
22
+ $view = new View();
23
  $view->set( 'label', $this->get_label() )
24
  ->set( 'tooltip', $this->get_tooltip() )
25
  ->set( 'setting', $setting )
28
  return $view;
29
  }
30
 
31
+ }
classes/Settings/Column/Pro/Editing.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Pro_Editing extends AC_Settings_Column_Pro {
 
 
8
 
9
  protected function get_label() {
10
  return __( 'Editing', 'codepress-admin-columns' );
@@ -18,4 +18,4 @@ class AC_Settings_Column_Pro_Editing extends AC_Settings_Column_Pro {
18
  return array( 'edit' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\Pro;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class Editing extends Settings\Column\Pro {
8
 
9
  protected function get_label() {
10
  return __( 'Editing', 'codepress-admin-columns' );
18
  return array( 'edit' );
19
  }
20
 
21
+ }
classes/Settings/Column/Pro/Export.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Pro_Export extends AC_Settings_Column_Pro {
 
 
8
 
9
  protected function get_label() {
10
  return __( 'Export', 'codepress-admin-columns' );
@@ -18,4 +18,4 @@ class AC_Settings_Column_Pro_Export extends AC_Settings_Column_Pro {
18
  return array( 'export' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\Pro;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class Export extends Settings\Column\Pro {
8
 
9
  protected function get_label() {
10
  return __( 'Export', 'codepress-admin-columns' );
18
  return array( 'export' );
19
  }
20
 
21
+ }
classes/Settings/Column/Pro/Filtering.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Pro_Filtering extends AC_Settings_Column_Pro {
 
 
8
 
9
  protected function get_label() {
10
  return __( 'Filtering', 'codepress-admin-columns' );
@@ -18,4 +18,4 @@ class AC_Settings_Column_Pro_Filtering extends AC_Settings_Column_Pro {
18
  return array( 'filter' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\Pro;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class Filtering extends Settings\Column\Pro {
8
 
9
  protected function get_label() {
10
  return __( 'Filtering', 'codepress-admin-columns' );
18
  return array( 'filter' );
19
  }
20
 
21
+ }
classes/Settings/Column/Pro/Sorting.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Pro_Sorting extends AC_Settings_Column_Pro {
 
 
8
 
9
  protected function get_label() {
10
  return __( 'Sorting', 'codepress-admin-columns' );
@@ -18,4 +18,4 @@ class AC_Settings_Column_Pro_Sorting extends AC_Settings_Column_Pro {
18
  return array( 'sort' );
19
  }
20
 
21
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column\Pro;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class Sorting extends Settings\Column\Pro {
8
 
9
  protected function get_label() {
10
  return __( 'Sorting', 'codepress-admin-columns' );
18
  return array( 'sort' );
19
  }
20
 
21
+ }
classes/Settings/Column/Separator.php CHANGED
@@ -1,11 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Separator extends AC_Settings_Column
8
- implements AC_Settings_FormatCollectionInterface {
 
 
 
 
9
 
10
  /**
11
  * @var string
@@ -27,7 +29,7 @@ class AC_Settings_Column_Separator extends AC_Settings_Column
27
  'white_space' => __( 'Whitespace', 'codepress-admin-columns' ),
28
  ) );
29
 
30
- $view = new AC_View( array(
31
  'label' => __( 'Separator', 'codepress-admin-columns' ),
32
  'tooltip' => __( 'Select a repeater sub field.', 'codepress-admin-columns' ),
33
  'setting' => $element,
@@ -46,7 +48,7 @@ class AC_Settings_Column_Separator extends AC_Settings_Column
46
  return $this;
47
  }
48
 
49
- public function format( AC_Collection $collection, $original_value ) {
50
  switch ( $this->separator ) {
51
  case 'comma' :
52
  $separator = ', ';
@@ -71,4 +73,4 @@ class AC_Settings_Column_Separator extends AC_Settings_Column
71
  return $collection->filter()->implode( $separator );
72
  }
73
 
74
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Collection;
6
+ use AC\Settings;
7
+ use AC\View;
8
+
9
+ class Separator extends Settings\Column
10
+ implements Settings\FormatCollection {
11
 
12
  /**
13
  * @var string
29
  'white_space' => __( 'Whitespace', 'codepress-admin-columns' ),
30
  ) );
31
 
32
+ $view = new View( array(
33
  'label' => __( 'Separator', 'codepress-admin-columns' ),
34
  'tooltip' => __( 'Select a repeater sub field.', 'codepress-admin-columns' ),
35
  'setting' => $element,
48
  return $this;
49
  }
50
 
51
+ public function format( Collection $collection, $original_value ) {
52
  switch ( $this->separator ) {
53
  case 'comma' :
54
  $separator = ', ';
73
  return $collection->filter()->implode( $separator );
74
  }
75
 
76
+ }
classes/Settings/Column/StatusIcon.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_StatusIcon extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var bool
@@ -24,7 +25,7 @@ class AC_Settings_Column_StatusIcon extends AC_Settings_Column
24
  '' => __( 'No' ),
25
  ) );
26
 
27
- $view = new AC_View( array(
28
  'label' => __( 'Use an icon?', 'codepress-admin-columns' ),
29
  'tooltip' => __( 'Use an icon instead of text for displaying the status.', 'codepress-admin-columns' ),
30
  'setting' => $setting,
@@ -81,4 +82,4 @@ class AC_Settings_Column_StatusIcon extends AC_Settings_Column
81
  return $value;
82
  }
83
 
84
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class StatusIcon extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var bool
25
  '' => __( 'No' ),
26
  ) );
27
 
28
+ $view = new View( array(
29
  'label' => __( 'Use an icon?', 'codepress-admin-columns' ),
30
  'tooltip' => __( 'Use an icon instead of text for displaying the status.', 'codepress-admin-columns' ),
31
  'setting' => $setting,
82
  return $value;
83
  }
84
 
85
+ }
classes/Settings/Column/StringLimit.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_StringLimit extends AC_Settings_Column {
 
 
 
8
 
9
  /**
10
  * @var string
@@ -20,7 +21,7 @@ class AC_Settings_Column_StringLimit extends AC_Settings_Column {
20
  ->set_attribute( 'data-refresh', 'column' )
21
  ->set_options( $this->get_limit_options() );
22
 
23
- $view = new AC_View( array(
24
  'label' => __( 'Text Limit', 'codepress-admin-columns' ),
25
  'tooltip' => __( 'Limit text to a certain number of characters or words', 'codepress-admin-columns' ),
26
  'setting' => $setting,
@@ -45,11 +46,11 @@ class AC_Settings_Column_StringLimit extends AC_Settings_Column {
45
  switch ( $this->get_string_limit() ) {
46
 
47
  case 'character_limit' :
48
- $setting[] = new AC_Settings_Column_CharacterLimit( $this->column );
49
 
50
  break;
51
  case 'word_limit' :
52
- $setting[] = new AC_Settings_Column_WordLimit( $this->column );
53
 
54
  break;
55
  }
@@ -75,4 +76,4 @@ class AC_Settings_Column_StringLimit extends AC_Settings_Column {
75
  return true;
76
  }
77
 
78
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class StringLimit extends Settings\Column {
9
 
10
  /**
11
  * @var string
21
  ->set_attribute( 'data-refresh', 'column' )
22
  ->set_options( $this->get_limit_options() );
23
 
24
+ $view = new View( array(
25
  'label' => __( 'Text Limit', 'codepress-admin-columns' ),
26
  'tooltip' => __( 'Limit text to a certain number of characters or words', 'codepress-admin-columns' ),
27
  'setting' => $setting,
46
  switch ( $this->get_string_limit() ) {
47
 
48
  case 'character_limit' :
49
+ $setting[] = new Settings\Column\CharacterLimit( $this->column );
50
 
51
  break;
52
  case 'word_limit' :
53
+ $setting[] = new Settings\Column\WordLimit( $this->column );
54
 
55
  break;
56
  }
76
  return true;
77
  }
78
 
79
+ }
classes/Settings/Column/Taxonomy.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Taxonomy extends AC_Settings_Column {
 
 
 
8
 
9
  /**
10
  * @var string
@@ -16,7 +17,7 @@ class AC_Settings_Column_Taxonomy extends AC_Settings_Column {
16
  }
17
 
18
  /**
19
- * @return AC_View
20
  */
21
  public function create_view() {
22
  $taxonomy = $this->create_element( 'select', 'taxonomy' );
@@ -25,7 +26,7 @@ class AC_Settings_Column_Taxonomy extends AC_Settings_Column {
25
  ->set_attribute( 'data-label', 'update' )
26
  ->set_attribute( 'data-refresh', 'column' );
27
 
28
- return new AC_View( array(
29
  'setting' => $taxonomy,
30
  'label' => __( 'Taxonomy', 'codepress-admin-columns' ),
31
  ) );
@@ -49,4 +50,4 @@ class AC_Settings_Column_Taxonomy extends AC_Settings_Column {
49
  return true;
50
  }
51
 
52
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Taxonomy extends Settings\Column {
9
 
10
  /**
11
  * @var string
17
  }
18
 
19
  /**
20
+ * @return View
21
  */
22
  public function create_view() {
23
  $taxonomy = $this->create_element( 'select', 'taxonomy' );
26
  ->set_attribute( 'data-label', 'update' )
27
  ->set_attribute( 'data-refresh', 'column' );
28
 
29
+ return new View( array(
30
  'setting' => $taxonomy,
31
  'label' => __( 'Taxonomy', 'codepress-admin-columns' ),
32
  ) );
50
  return true;
51
  }
52
 
53
+ }
classes/Settings/Column/Term.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Term extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -29,7 +30,7 @@ class AC_Settings_Column_Term extends AC_Settings_Column
29
  'id' => __( 'ID' ),
30
  ) );
31
 
32
- $view = new AC_View( array(
33
  'label' => __( 'Display', 'codepress-admin-columns' ),
34
  'setting' => $setting,
35
  ) );
@@ -56,8 +57,6 @@ class AC_Settings_Column_Term extends AC_Settings_Column
56
  }
57
 
58
  public function format( $value, $original_value ) {
59
-
60
- // For ACP_Column_Taxonomy_Parent
61
  $term_id = $value;
62
 
63
  switch ( $this->get_term_property() ) {
@@ -80,4 +79,4 @@ class AC_Settings_Column_Term extends AC_Settings_Column
80
  return ac_helper()->html->link( get_edit_term_link( $term_id, $this->column->get_taxonomy() ), $label );
81
  }
82
 
83
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Term extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
30
  'id' => __( 'ID' ),
31
  ) );
32
 
33
+ $view = new View( array(
34
  'label' => __( 'Display', 'codepress-admin-columns' ),
35
  'setting' => $setting,
36
  ) );
57
  }
58
 
59
  public function format( $value, $original_value ) {
 
 
60
  $term_id = $value;
61
 
62
  switch ( $this->get_term_property() ) {
79
  return ac_helper()->html->link( get_edit_term_link( $term_id, $this->column->get_taxonomy() ), $label );
80
  }
81
 
82
+ }
classes/Settings/Column/Time.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Time extends AC_Settings_Column_DateTimeFormat
8
- implements AC_Settings_FormatValueInterface {
 
 
9
 
10
  public function create_view() {
11
  $view = parent::create_view();
@@ -35,4 +35,4 @@ class AC_Settings_Column_Time extends AC_Settings_Column_DateTimeFormat
35
  return get_option( 'time_format' );
36
  }
37
 
38
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+
7
+ class Time extends Settings\Column\DateTimeFormat
8
+ implements Settings\FormatValue {
9
 
10
  public function create_view() {
11
  $view = parent::create_view();
35
  return get_option( 'time_format' );
36
  }
37
 
38
+ }
classes/Settings/Column/Toggle.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- abstract class AC_Settings_Column_Toggle extends AC_Settings_Column {
 
 
 
8
 
9
  public function create_view() {
10
  $setting = $this
@@ -14,11 +15,11 @@ abstract class AC_Settings_Column_Toggle extends AC_Settings_Column {
14
  'off' => __( 'No' ),
15
  ) );
16
 
17
- $view = new AC_View( array(
18
  'setting' => $setting,
19
  ) );
20
 
21
  return $view;
22
  }
23
 
24
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ abstract class Toggle extends Settings\Column {
9
 
10
  public function create_view() {
11
  $setting = $this
15
  'off' => __( 'No' ),
16
  ) );
17
 
18
+ $view = new View( array(
19
  'setting' => $setting,
20
  ) );
21
 
22
  return $view;
23
  }
24
 
25
+ }
classes/Settings/Column/Type.php CHANGED
@@ -1,10 +1,14 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Type extends AC_Settings_Column {
 
 
 
 
 
 
8
 
9
  /**
10
  * @var string
@@ -26,14 +30,14 @@ class AC_Settings_Column_Type extends AC_Settings_Column {
26
  $tooltip = __( 'Choose a column type.', 'codepress-admin-columns' );
27
 
28
  if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
29
- $tooltip .= '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->column->get_type() . '</em>';
30
 
31
  if ( $this->column->get_name() ) {
32
  $tooltip .= '<em>' . __( 'Name', 'codepress-admin-columns' ) . ': ' . $this->column->get_name() . '</em>';
33
  }
34
  }
35
 
36
- $view = new AC_View( array(
37
  'setting' => $type,
38
  'label' => __( 'Type', 'codepress-admin-columns' ),
39
  'tooltip' => $tooltip,
@@ -45,11 +49,11 @@ class AC_Settings_Column_Type extends AC_Settings_Column {
45
  /**
46
  * Returns the type label as human readable: no tags, underscores and capitalized.
47
  *
48
- * @param AC_Column|null $column
49
  *
50
  * @return string
51
  */
52
- private function get_clean_label( AC_Column $column ) {
53
  $label = $column->get_label();
54
 
55
  if ( 0 === strlen( strip_tags( $label ) ) ) {
@@ -60,7 +64,27 @@ class AC_Settings_Column_Type extends AC_Settings_Column {
60
  }
61
 
62
  /**
63
- * @param AC_ListScreen $list_screen
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  *
65
  * @return array
66
  */
@@ -72,7 +96,7 @@ class AC_Settings_Column_Type extends AC_Settings_Column {
72
 
73
  /**
74
  * @param string $group Group slug
75
- * @param AC_Column $column
76
  */
77
  $group = apply_filters( 'ac/column_group', $column->get_group(), $column );
78
 
@@ -87,7 +111,7 @@ class AC_Settings_Column_Type extends AC_Settings_Column {
87
  $grouped = array();
88
 
89
  // create select options
90
- foreach ( AC()->column_groups()->get_groups_sorted() as $group ) {
91
  $slug = $group['slug'];
92
 
93
  // hide empty groups
@@ -132,4 +156,4 @@ class AC_Settings_Column_Type extends AC_Settings_Column {
132
  return true;
133
  }
134
 
135
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC;
6
+ use AC\Groups;
7
+ use AC\ListScreen;
8
+ use AC\Settings\Column;
9
+ use AC\View;
10
+
11
+ class Type extends Column {
12
 
13
  /**
14
  * @var string
30
  $tooltip = __( 'Choose a column type.', 'codepress-admin-columns' );
31
 
32
  if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
33
+ $tooltip .= '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->column->get_type() . '</em>';
34
 
35
  if ( $this->column->get_name() ) {
36
  $tooltip .= '<em>' . __( 'Name', 'codepress-admin-columns' ) . ': ' . $this->column->get_name() . '</em>';
37
  }
38
  }
39
 
40
+ $view = new View( array(
41
  'setting' => $type,
42
  'label' => __( 'Type', 'codepress-admin-columns' ),
43
  'tooltip' => $tooltip,
49
  /**
50
  * Returns the type label as human readable: no tags, underscores and capitalized.
51
  *
52
+ * @param AC\Column|null $column
53
  *
54
  * @return string
55
  */
56
+ private function get_clean_label( AC\Column $column ) {
57
  $label = $column->get_label();
58
 
59
  if ( 0 === strlen( strip_tags( $label ) ) ) {
64
  }
65
 
66
  /**
67
+ * @return Groups
68
+ */
69
+ private function column_groups() {
70
+ $groups = new Groups();
71
+
72
+ $groups->register_group( 'default', __( 'Default', 'codepress-admin-columns' ) );
73
+ $groups->register_group( 'plugin', __( 'Plugins' ), 20 );
74
+ $groups->register_group( 'custom_field', __( 'Custom Fields', 'codepress-admin-columns' ), 30 );
75
+ $groups->register_group( 'custom', __( 'Custom', 'codepress-admin-columns' ), 40 );
76
+
77
+ foreach ( AC()->addons()->get_missing_addons() as $addon ) {
78
+ $groups->register_group( $addon->get_slug(), $addon->get_title(), 11 );
79
+ }
80
+
81
+ do_action( 'ac/column_groups', $groups );
82
+
83
+ return $groups;
84
+ }
85
+
86
+ /**
87
+ * @param ListScreen $list_screen
88
  *
89
  * @return array
90
  */
96
 
97
  /**
98
  * @param string $group Group slug
99
+ * @param Column $column
100
  */
101
  $group = apply_filters( 'ac/column_group', $column->get_group(), $column );
102
 
111
  $grouped = array();
112
 
113
  // create select options
114
+ foreach ( $this->column_groups()->get_groups_sorted() as $group ) {
115
  $slug = $group['slug'];
116
 
117
  // hide empty groups
156
  return true;
157
  }
158
 
159
+ }
classes/Settings/Column/User.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_User extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -23,13 +24,13 @@ class AC_Settings_Column_User extends AC_Settings_Column
23
  public function get_dependent_settings() {
24
  $settings = array();
25
 
26
- $settings[] = new AC_Settings_Column_UserLink( $this->column );
27
 
28
  return $settings;
29
  }
30
 
31
  /**
32
- * @return AC_View
33
  */
34
  public function create_view() {
35
  $select = $this->create_element( 'select', 'display_author_as' )
@@ -37,7 +38,7 @@ class AC_Settings_Column_User extends AC_Settings_Column
37
  ->set_attribute( 'data-refresh', 'column' )
38
  ->set_options( $this->get_display_options() );
39
 
40
- $view = new AC_View( array(
41
  'label' => __( 'Display', 'codepress-admin-columns' ),
42
  'setting' => $select,
43
  'for' => $select->get_id(),
@@ -100,4 +101,4 @@ class AC_Settings_Column_User extends AC_Settings_Column
100
  return $this->get_user_name( $value );
101
  }
102
 
103
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class User extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
24
  public function get_dependent_settings() {
25
  $settings = array();
26
 
27
+ $settings[] = new Settings\Column\UserLink( $this->column );
28
 
29
  return $settings;
30
  }
31
 
32
  /**
33
+ * @return View
34
  */
35
  public function create_view() {
36
  $select = $this->create_element( 'select', 'display_author_as' )
38
  ->set_attribute( 'data-refresh', 'column' )
39
  ->set_options( $this->get_display_options() );
40
 
41
+ $view = new View( array(
42
  'label' => __( 'Display', 'codepress-admin-columns' ),
43
  'setting' => $select,
44
  'for' => $select->get_id(),
101
  return $this->get_user_name( $value );
102
  }
103
 
104
+ }
classes/Settings/Column/UserLink.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_UserLink extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var string
@@ -55,7 +56,7 @@ class AC_Settings_Column_UserLink extends AC_Settings_Column
55
  public function create_view() {
56
  $select = $this->create_element( 'select' )->set_options( $this->get_display_options() );
57
 
58
- $view = new AC_View( array(
59
  'label' => __( 'Link To', 'codepress-admin-columns' ),
60
  'setting' => $select,
61
  ) );
@@ -97,4 +98,4 @@ class AC_Settings_Column_UserLink extends AC_Settings_Column
97
  return true;
98
  }
99
 
100
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class UserLink extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var string
56
  public function create_view() {
57
  $select = $this->create_element( 'select' )->set_options( $this->get_display_options() );
58
 
59
+ $view = new View( array(
60
  'label' => __( 'Link To', 'codepress-admin-columns' ),
61
  'setting' => $select,
62
  ) );
98
  return true;
99
  }
100
 
101
+ }
classes/Settings/Column/Width.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_Width extends AC_Settings_Column
8
- implements AC_Settings_HeaderInterface {
 
 
 
9
 
10
  /**
11
  * @var integer
@@ -42,13 +43,13 @@ class AC_Settings_Column_Width extends AC_Settings_Column
42
  $unit = $this->create_element( 'radio', 'width_unit' )
43
  ->set_options( $this->get_valid_width_units() );
44
 
45
- $section = new AC_View( array(
46
  'width' => $width,
47
  'unit' => $unit,
48
  ) );
49
  $section->set_template( 'settings/setting-width' );
50
 
51
- $view = new AC_View( array(
52
  'label' => __( 'Width', 'codepress-admin-columns' ),
53
  'sections' => array( $section ),
54
  ) );
@@ -58,7 +59,7 @@ class AC_Settings_Column_Width extends AC_Settings_Column
58
 
59
  public function create_header_view() {
60
 
61
- $view = new AC_View( array(
62
  'title' => __( 'width', 'codepress-admin-columns' ),
63
  'content' => $this->get_display_width(),
64
  ) );
@@ -130,4 +131,4 @@ class AC_Settings_Column_Width extends AC_Settings_Column
130
  return $value;
131
  }
132
 
133
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class Width extends Settings\Column
9
+ implements Settings\Header {
10
 
11
  /**
12
  * @var integer
43
  $unit = $this->create_element( 'radio', 'width_unit' )
44
  ->set_options( $this->get_valid_width_units() );
45
 
46
+ $section = new View( array(
47
  'width' => $width,
48
  'unit' => $unit,
49
  ) );
50
  $section->set_template( 'settings/setting-width' );
51
 
52
+ $view = new View( array(
53
  'label' => __( 'Width', 'codepress-admin-columns' ),
54
  'sections' => array( $section ),
55
  ) );
59
 
60
  public function create_header_view() {
61
 
62
+ $view = new View( array(
63
  'title' => __( 'width', 'codepress-admin-columns' ),
64
  'content' => $this->get_display_width(),
65
  ) );
131
  return $value;
132
  }
133
 
134
+ }
classes/Settings/Column/WordLimit.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_WordLimit extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var int
@@ -29,7 +30,7 @@ class AC_Settings_Column_WordLimit extends AC_Settings_Column
29
  'step' => 1,
30
  ) );
31
 
32
- $view = new AC_View( array(
33
  'label' => __( 'Word Limit', 'codepress-admin-columns' ),
34
  'tooltip' => __( 'Maximum number of words', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
35
  'setting' => $setting,
@@ -66,4 +67,4 @@ class AC_Settings_Column_WordLimit extends AC_Settings_Column
66
  return ac_helper()->html->implode( $values );
67
  }
68
 
69
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class WordLimit extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var int
30
  'step' => 1,
31
  ) );
32
 
33
+ $view = new View( array(
34
  'label' => __( 'Word Limit', 'codepress-admin-columns' ),
35
  'tooltip' => __( 'Maximum number of words', 'codepress-admin-columns' ) . '<em>' . __( 'Leave empty for no limit', 'codepress-admin-columns' ) . '</em>',
36
  'setting' => $setting,
67
  return ac_helper()->html->implode( $values );
68
  }
69
 
70
+ }
classes/Settings/Column/WordsPerMinute.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Column_WordsPerMinute extends AC_Settings_Column
8
- implements AC_Settings_FormatValueInterface {
 
 
 
9
 
10
  /**
11
  * @var int
@@ -27,7 +28,7 @@ class AC_Settings_Column_WordsPerMinute extends AC_Settings_Column
27
  'placeholder' => $this->get_words_per_minute(),
28
  ) );
29
 
30
- $view = new AC_View( array(
31
  'label' => __( 'Words per minute', 'codepress-admin-columns' ),
32
  'tooltip' => __( 'Estimated reading time in words per minute.', 'codepress-admin-columns' ) . ' ' . sprintf( __( 'By default: %s', 'codepress-admin-columns' ), $this->get_words_per_minute() ),
33
  'setting' => $setting,
@@ -121,4 +122,4 @@ class AC_Settings_Column_WordsPerMinute extends AC_Settings_Column
121
  return $this->make_human_readable( $this->get_estimated_reading_time_in_seconds( $value ) );
122
  }
123
 
124
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Column;
 
 
4
 
5
+ use AC\Settings;
6
+ use AC\View;
7
+
8
+ class WordsPerMinute extends Settings\Column
9
+ implements Settings\FormatValue {
10
 
11
  /**
12
  * @var int
28
  'placeholder' => $this->get_words_per_minute(),
29
  ) );
30
 
31
+ $view = new View( array(
32
  'label' => __( 'Words per minute', 'codepress-admin-columns' ),
33
  'tooltip' => __( 'Estimated reading time in words per minute.', 'codepress-admin-columns' ) . ' ' . sprintf( __( 'By default: %s', 'codepress-admin-columns' ), $this->get_words_per_minute() ),
34
  'setting' => $setting,
122
  return $this->make_human_readable( $this->get_estimated_reading_time_in_seconds( $value ) );
123
  }
124
 
125
+ }
classes/Settings/Form/Element/Select.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_Settings_Form_Element_Select extends AC_Form_Element_Select {
 
 
8
 
9
  protected function render_ajax_message() {
10
  return '<div class="msg"></div>';
@@ -17,4 +17,4 @@ class AC_Settings_Form_Element_Select extends AC_Form_Element_Select {
17
  return parent::render_description() . $this->render_ajax_message();
18
  }
19
 
20
- }
1
  <?php
2
 
3
+ namespace AC\Settings\Form\Element;
 
 
4
 
5
+ use AC;
6
+
7
+ class Select extends AC\Form\Element\Select {
8
 
9
  protected function render_ajax_message() {
10
  return '<div class="msg"></div>';
17
  return parent::render_description() . $this->render_ajax_message();
18
  }
19
 
20
+ }
classes/Settings/FormatCollection.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Settings;
4
+
5
+ use AC\Collection;
6
+
7
+ interface FormatCollection {
8
+
9
+ /**
10
+ * @param Collection $collection
11
+ * @param mixed $original_value
12
+ *
13
+ * @return mixed
14
+ */
15
+ public function format( Collection $collection, $original_value );
16
+
17
+ }
classes/Settings/FormatCollectionInterface.php DELETED
@@ -1,17 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- interface AC_Settings_FormatCollectionInterface {
8
-
9
- /**
10
- * @param AC_Collection $collection
11
- * @param mixed $original_value
12
- *
13
- * @return mixed
14
- */
15
- public function format( AC_Collection $collection, $original_value );
16
-
17
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Settings/{FormatValueInterface.php → FormatValue.php} RENAMED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- interface AC_Settings_FormatValueInterface {
8
 
9
  /**
10
  * @param mixed $value
@@ -14,4 +12,4 @@ interface AC_Settings_FormatValueInterface {
14
  */
15
  public function format( $value, $original_value );
16
 
17
- }
1
  <?php
2
 
3
+ namespace AC\Settings;
 
 
4
 
5
+ interface FormatValue {
6
 
7
  /**
8
  * @param mixed $value
12
  */
13
  public function format( $value, $original_value );
14
 
15
+ }
classes/Settings/Header.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Settings;
4
+
5
+ use AC\View;
6
+
7
+ interface Header {
8
+
9
+ /**
10
+ * @return View|false
11
+ */
12
+ public function create_header_view();
13
+
14
+ }
classes/Settings/HeaderInterface.php DELETED
@@ -1,14 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- interface AC_Settings_HeaderInterface {
8
-
9
- /**
10
- * @return AC_View|false
11
- */
12
- public function create_header_view();
13
-
14
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/Storage/KeyValuePair.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Storage;
4
+
5
+ interface KeyValuePair {
6
+
7
+ public function get();
8
+
9
+ public function save( $value );
10
+
11
+ public function delete();
12
+
13
+ }
classes/Storage/Option.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Storage;
4
+
5
+ class Option
6
+ implements KeyValuePair {
7
+
8
+ /**
9
+ * @var string
10
+ */
11
+ protected $key;
12
+
13
+ public function __construct( $key ) {
14
+ $this->key = $key;
15
+ }
16
+
17
+ /**
18
+ * @return mixed
19
+ */
20
+ public function get() {
21
+ return get_option( $this->key );
22
+ }
23
+
24
+ /**
25
+ * @param $value
26
+ *
27
+ * @return bool
28
+ */
29
+ public function save( $value ) {
30
+ return update_option( $this->key, $value, false );
31
+ }
32
+
33
+ /**
34
+ * @return bool
35
+ */
36
+ public function delete() {
37
+ return delete_option( $this->key );
38
+ }
39
+
40
+ }
classes/Storage/SiteOption.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Storage;
4
+
5
+ class SiteOption extends Option {
6
+
7
+ /**
8
+ * @return mixed
9
+ */
10
+ public function get() {
11
+ return get_site_option( $this->key );
12
+ }
13
+
14
+ /**
15
+ * @param $value
16
+ *
17
+ * @return bool
18
+ */
19
+ public function save( $value ) {
20
+ return update_site_option( $this->key, $value );
21
+ }
22
+
23
+ /**
24
+ * @return bool
25
+ */
26
+ public function delete() {
27
+ return delete_site_option( $this->key );
28
+ }
29
+
30
+ }
classes/Storage/Timestamp.php ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Storage;
4
+
5
+ use AC\Expirable;
6
+
7
+ final class Timestamp
8
+ implements KeyValuePair, Expirable {
9
+
10
+ /**
11
+ * @var KeyValuePair
12
+ */
13
+ protected $storage;
14
+
15
+ public function __construct( KeyValuePair $storage ) {
16
+ $this->storage = $storage;
17
+ }
18
+
19
+ /**
20
+ * @param int|null $time
21
+ *
22
+ * @return bool
23
+ */
24
+ public function is_expired( $time = null ) {
25
+ $value = $this->get();
26
+
27
+ if ( false === $value ) {
28
+ return true;
29
+ }
30
+
31
+ if ( null === $time ) {
32
+ $time = time();
33
+ }
34
+
35
+ return $time > $value;
36
+ }
37
+
38
+ /**
39
+ * @param int $value
40
+ *
41
+ * @return bool
42
+ */
43
+ public function validate( $value ) {
44
+ return preg_match( '/^[1-9][0-9]*$/', $value );
45
+ }
46
+
47
+ public function get() {
48
+ return $this->storage->get();
49
+ }
50
+
51
+ public function delete() {
52
+ return $this->storage->delete();
53
+ }
54
+
55
+ /**
56
+ * @param int $value
57
+ *
58
+ * @return bool
59
+ */
60
+ public function save( $value ) {
61
+ if ( ! $this->validate( $value ) ) {
62
+ throw new \Exception( 'Value needs to be a positive integer' );
63
+ }
64
+
65
+ return $this->storage->save( $value );
66
+ }
67
+
68
+ }
classes/Storage/UserMeta.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC\Storage;
4
+
5
+ class UserMeta
6
+ implements KeyValuePair {
7
+
8
+ /**
9
+ * @var int
10
+ */
11
+ protected $user_id;
12
+
13
+ /**
14
+ * @var string
15
+ */
16
+ protected $key;
17
+
18
+ /**
19
+ * @param int $user_id
20
+ * @param string $key
21
+ */
22
+ public function __construct( $key, $user_id = null ) {
23
+ if ( null === $user_id ) {
24
+ $user_id = get_current_user_id();
25
+ }
26
+
27
+ if ( ! preg_match( '/^[1-9][0-9]*$/', $user_id ) ) {
28
+ throw new \Exception( 'Storage cannot be initialized without a valid user id.' );
29
+ }
30
+
31
+ $this->user_id = $user_id;
32
+ $this->key = $key;
33
+ }
34
+
35
+ /**
36
+ * @return mixed
37
+ */
38
+ public function get() {
39
+ return get_user_meta( $this->user_id, $this->key, true );
40
+ }
41
+
42
+ /**
43
+ * @param $value
44
+ *
45
+ * @return bool|int
46
+ */
47
+ public function save( $value ) {
48
+ return update_user_meta( $this->user_id, $this->key, $value );
49
+ }
50
+
51
+ /**
52
+ * @return bool
53
+ */
54
+ public function delete() {
55
+ return delete_user_meta( $this->user_id, $this->key );
56
+ }
57
+
58
+ }
classes/{TableScreen.php → Table/Screen.php} RENAMED
@@ -1,10 +1,15 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- final class AC_TableScreen {
 
 
 
 
 
 
 
8
 
9
  /**
10
  * @var array $column_headings
@@ -12,7 +17,7 @@ final class AC_TableScreen {
12
  private $column_headings = array();
13
 
14
  /**
15
- * @var AC_ListScreen $list_screen
16
  */
17
  private $current_list_screen;
18
 
@@ -40,21 +45,19 @@ final class AC_TableScreen {
40
  $this->ajax_error( __( 'Invalid item ID.', 'codepress-admin-columns' ) );
41
  }
42
 
43
- $list_screen = AC()->get_list_screen( filter_input( INPUT_POST, 'list_screen' ) );
44
 
45
  if ( ! $list_screen ) {
46
  $this->ajax_error( __( 'Invalid list screen.', 'codepress-admin-columns' ) );
47
  }
48
 
49
- $list_screen->set_layout_id( filter_input( INPUT_POST, 'layout' ) );
50
-
51
  $column = $list_screen->get_column_by_name( filter_input( INPUT_POST, 'column' ) );
52
 
53
  if ( ! $column ) {
54
  $this->ajax_error( __( 'Invalid column.', 'codepress-admin-columns' ) );
55
  }
56
 
57
- if ( ! $column instanceof AC_Column_AjaxValue ) {
58
  $this->ajax_error( __( 'Invalid method.', 'codepress-admin-columns' ) );
59
  }
60
 
@@ -84,7 +87,7 @@ final class AC_TableScreen {
84
  if ( 'column-actions' == $column->get_type() ) {
85
  $default = $column->get_name();
86
 
87
- if ( $this->current_list_screen instanceof AC_ListScreen_Media ) {
88
 
89
  // Add download button to the actions column
90
  add_filter( 'media_row_actions', array( $this, 'set_media_row_actions' ), 10, 2 );
@@ -93,20 +96,15 @@ final class AC_TableScreen {
93
  };
94
 
95
  // Set inline edit data if the default column (title) is not present
96
- if ( $this->current_list_screen instanceof AC_ListScreen_Post && 'title' !== $default ) {
97
  add_filter( 'page_row_actions', array( $this, 'set_inline_edit_data' ), 20, 2 );
98
  add_filter( 'post_row_actions', array( $this, 'set_inline_edit_data' ), 20, 2 );
99
  }
100
 
101
  // Remove inline edit action if the default column (author) is not present
102
- if ( $this->current_list_screen instanceof AC_ListScreen_Comment && 'comment' !== $default ) {
103
  add_filter( 'comment_row_actions', array( $this, 'remove_quick_edit_from_actions' ), 20, 2 );
104
  }
105
-
106
- // Adds the default hidden bulk edit markup for the new primary column
107
- if ( $this->current_list_screen instanceof ACP_ListScreen_Taxonomy && 'name' !== $default ) {
108
- add_filter( 'tag_row_actions', array( $this, 'add_taxonomy_hidden_quick_edit_markup' ), 20, 2 );
109
- }
110
  }
111
 
112
  return $default;
@@ -115,8 +113,8 @@ final class AC_TableScreen {
115
  /**
116
  * Add a download link to the table screen
117
  *
118
- * @param array $actions
119
- * @param WP_Post $post
120
  */
121
  public function set_media_row_actions( $actions, $post ) {
122
  $link_attributes = array(
@@ -129,10 +127,10 @@ final class AC_TableScreen {
129
  }
130
 
131
  /**
132
- * Sets the inline data when the title columns is not present on a AC_ListScreen_Post screen
133
  *
134
- * @param array $actions
135
- * @param WP_Post $post
136
  */
137
  public function set_inline_edit_data( $actions, $post ) {
138
  get_inline_data( $post );
@@ -151,22 +149,6 @@ final class AC_TableScreen {
151
  return $actions;
152
  }
153
 
154
- /**
155
- * Add the default markup for the default primary column for the Taxonomy list screen which is necessary for bulk edit
156
- *
157
- * @param $actions
158
- * @param $term
159
- */
160
- public function add_taxonomy_hidden_quick_edit_markup( $actions, $term ) {
161
- $list_screen = $this->get_current_list_screen();
162
-
163
- if ( $list_screen instanceof ACP_ListScreen_Taxonomy ) {
164
- echo sprintf( '<div class="hidden">%s</div>', $list_screen->get_list_table()->column_name( $term ) );
165
- }
166
-
167
- return $actions;
168
- }
169
-
170
  /**
171
  * Adds a body class which is used to set individual column widths
172
  *
@@ -189,7 +171,7 @@ final class AC_TableScreen {
189
  /**
190
  * @since 2.2.4
191
  *
192
- * @param AC_ListScreen $list_screen
193
  */
194
  public function admin_scripts() {
195
  if ( ! $this->current_list_screen ) {
@@ -199,12 +181,12 @@ final class AC_TableScreen {
199
  $list_screen = $this->current_list_screen;
200
 
201
  // Tooltip
202
- wp_register_script( 'jquery-qtip2', AC()->get_plugin_url() . "external/qtip2/jquery.qtip.min.js", array( 'jquery' ), AC()->get_version() );
203
- wp_enqueue_style( 'jquery-qtip2', AC()->get_plugin_url() . "external/qtip2/jquery.qtip.min.css", array(), AC()->get_version() );
204
 
205
  // Main
206
- wp_enqueue_script( 'ac-table', AC()->get_plugin_url() . "assets/js/table.js", array( 'jquery', 'jquery-qtip2' ), AC()->get_version() );
207
- wp_enqueue_style( 'ac-table', AC()->get_plugin_url() . "assets/css/table.css", array(), AC()->get_version() );
208
 
209
  wp_localize_script( 'ac-table', 'AC', array(
210
  'list_screen' => $list_screen->get_key(),
@@ -221,7 +203,7 @@ final class AC_TableScreen {
221
  );
222
 
223
  /**
224
- * @param AC_ListScreen $list_screen
225
  */
226
  do_action( 'ac/table_scripts', $list_screen );
227
 
@@ -245,11 +227,11 @@ final class AC_TableScreen {
245
  }
246
 
247
  /**
248
- * @param AC_ListScreen $list_screen
249
  *
250
  * @return array
251
  */
252
- private function get_column_types_mapping( AC_ListScreen $list_screen ) {
253
  $types = array();
254
  foreach ( $list_screen->get_columns() as $column ) {
255
  $types[ $column->get_name() ] = $column->get_type();
@@ -258,6 +240,9 @@ final class AC_TableScreen {
258
  return $types;
259
  }
260
 
 
 
 
261
  public function get_current_list_screen() {
262
  return $this->current_list_screen;
263
  }
@@ -274,7 +259,7 @@ final class AC_TableScreen {
274
  $css_column_width = false;
275
 
276
  foreach ( $this->current_list_screen->get_columns() as $column ) {
277
- /* @var AC_Settings_Column_Width $setting */
278
  $setting = $column->get_setting( 'width' );
279
 
280
  if ( $width = $setting->get_display_width() ) {
@@ -299,16 +284,16 @@ final class AC_TableScreen {
299
  }
300
 
301
  /**
302
- * @param AC_ListScreen $list_screen
303
  *
304
  * @return string|false
305
  */
306
- private function get_edit_link( AC_ListScreen $list_screen ) {
307
- if ( ! AC()->user_can_manage_admin_columns() ) {
308
  return false;
309
  }
310
 
311
- /* @var AC_Admin_Page_Settings $settings */
312
  $settings = AC()->admin()->get_page( 'settings' );
313
 
314
  if ( ! $settings->show_edit_button() ) {
@@ -335,8 +320,8 @@ final class AC_TableScreen {
335
  *
336
  * @since 3.1.4
337
  *
338
- * @param AC_ListScreen
339
- * @param AC_TableScreen
340
  */
341
  do_action( 'ac/admin_head', $this->current_list_screen, $this );
342
  }
@@ -356,8 +341,8 @@ final class AC_TableScreen {
356
  *
357
  * @since 2.3.5
358
  *
359
- * @param AC_ListScreen
360
- * @param AC_TableScreen
361
  */
362
  do_action( 'ac/admin_footer', $this->current_list_screen, $this );
363
  }
@@ -365,17 +350,14 @@ final class AC_TableScreen {
365
  /**
366
  * Load current list screen
367
  *
368
- * @param WP_Screen $wp_screen
369
  */
370
  public function load_list_screen( $wp_screen ) {
371
- if ( ! $wp_screen instanceof WP_Screen ) {
372
- return;
373
- }
374
 
375
  foreach ( AC()->get_list_screens() as $list_screen ) {
376
  if ( $list_screen->is_current_screen( $wp_screen ) ) {
 
377
 
378
- $this->set_current_list_screen( $list_screen );
379
  break;
380
  }
381
  }
@@ -385,11 +367,37 @@ final class AC_TableScreen {
385
  * Runs when doing Quick Edit, a native WordPress ajax call
386
  */
387
  public function load_list_screen_doing_quick_edit() {
388
- $this->set_current_list_screen( AC()->get_list_screen( $this->get_list_screen_when_doing_quick_edit() ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  }
390
 
391
  /**
392
- * @param AC_ListScreen $list_screen
393
  */
394
  public function set_current_list_screen( $list_screen ) {
395
  if ( ! $list_screen ) {
@@ -410,46 +418,11 @@ final class AC_TableScreen {
410
  /**
411
  * @since 3.0
412
  *
413
- * @param AC_ListScreen
414
  */
415
  do_action( 'ac/table/list_screen', $list_screen );
416
  }
417
 
418
- /**
419
- * Is WordPress doing ajax
420
- *
421
- * @since 2.5
422
- * @return string List screen key
423
- */
424
- public function get_list_screen_when_doing_quick_edit() {
425
- $list_screen = false;
426
-
427
- if ( AC()->is_doing_ajax() ) {
428
-
429
- switch ( filter_input( INPUT_POST, 'action' ) ) {
430
-
431
- // Quick edit post
432
- case 'inline-save' :
433
- $list_screen = filter_input( INPUT_POST, 'post_type' );
434
- break;
435
-
436
- // Adding term & Quick edit term
437
- case 'add-tag' :
438
- case 'inline-save-tax' :
439
- $list_screen = 'wp-taxonomy_' . filter_input( INPUT_POST, 'taxonomy' );
440
- break;
441
-
442
- // Quick edit comment & Inline reply on comment
443
- case 'edit-comment' :
444
- case 'replyto-comment' :
445
- $list_screen = 'wp-comments';
446
- break;
447
- }
448
- }
449
-
450
- return $list_screen;
451
- }
452
-
453
  /**
454
  * @since 2.0
455
  */
@@ -494,8 +467,8 @@ final class AC_TableScreen {
494
  /**
495
  * @since 3.0
496
  *
497
- * @param string $label
498
- * @param AC_Column $column
499
  */
500
  $label = apply_filters( 'ac/headings/label', $column->get_setting( 'label' )->get_value(), $column );
501
 
@@ -505,4 +478,4 @@ final class AC_TableScreen {
505
  return apply_filters( 'ac/headings', $this->column_headings, $this->current_list_screen );
506
  }
507
 
508
- }
1
  <?php
2
 
3
+ namespace AC\Table;
 
 
4
 
5
+ use AC\Admin;
6
+ use AC\Capabilities;
7
+ use AC\Column;
8
+ use AC\ListScreen;
9
+ use AC\ListScreenFactory;
10
+ use AC\Settings;
11
+
12
+ final class Screen {
13
 
14
  /**
15
  * @var array $column_headings
17
  private $column_headings = array();
18
 
19
  /**
20
+ * @var ListScreen $list_screen
21
  */
22
  private $current_list_screen;
23
 
45
  $this->ajax_error( __( 'Invalid item ID.', 'codepress-admin-columns' ) );
46
  }
47
 
48
+ $list_screen = ListScreenFactory::create( filter_input( INPUT_POST, 'list_screen' ), filter_input( INPUT_POST, 'layout' ) );
49
 
50
  if ( ! $list_screen ) {
51
  $this->ajax_error( __( 'Invalid list screen.', 'codepress-admin-columns' ) );
52
  }
53
 
 
 
54
  $column = $list_screen->get_column_by_name( filter_input( INPUT_POST, 'column' ) );
55
 
56
  if ( ! $column ) {
57
  $this->ajax_error( __( 'Invalid column.', 'codepress-admin-columns' ) );
58
  }
59
 
60
+ if ( ! $column instanceof Column\AjaxValue ) {
61
  $this->ajax_error( __( 'Invalid method.', 'codepress-admin-columns' ) );
62
  }
63
 
87
  if ( 'column-actions' == $column->get_type() ) {
88
  $default = $column->get_name();
89
 
90
+ if ( $this->current_list_screen instanceof ListScreen\Media ) {
91
 
92
  // Add download button to the actions column
93
  add_filter( 'media_row_actions', array( $this, 'set_media_row_actions' ), 10, 2 );
96
  };
97
 
98
  // Set inline edit data if the default column (title) is not present
99
+ if ( $this->current_list_screen instanceof ListScreen\Post && 'title' !== $default ) {
100
  add_filter( 'page_row_actions', array( $this, 'set_inline_edit_data' ), 20, 2 );
101
  add_filter( 'post_row_actions', array( $this, 'set_inline_edit_data' ), 20, 2 );
102
  }
103
 
104
  // Remove inline edit action if the default column (author) is not present
105
+ if ( $this->current_list_screen instanceof ListScreen\Comment && 'comment' !== $default ) {
106
  add_filter( 'comment_row_actions', array( $this, 'remove_quick_edit_from_actions' ), 20, 2 );
107
  }
 
 
 
 
 
108
  }
109
 
110
  return $default;
113
  /**
114
  * Add a download link to the table screen
115
  *
116
+ * @param array $actions
117
+ * @param \WP_Post $post
118
  */
119
  public function set_media_row_actions( $actions, $post ) {
120
  $link_attributes = array(
127
  }
128
 
129
  /**
130
+ * Sets the inline data when the title columns is not present on a AC\ListScreen_Post screen
131
  *
132
+ * @param array $actions
133
+ * @param \WP_Post $post
134
  */
135
  public function set_inline_edit_data( $actions, $post ) {
136
  get_inline_data( $post );
149
  return $actions;
150
  }
151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  /**
153
  * Adds a body class which is used to set individual column widths
154
  *
171
  /**
172
  * @since 2.2.4
173
  *
174
+ * @param ListScreen $list_screen
175
  */
176
  public function admin_scripts() {
177
  if ( ! $this->current_list_screen ) {
181
  $list_screen = $this->current_list_screen;
182
 
183
  // Tooltip
184
+ wp_register_script( 'jquery-qtip2', AC()->get_url() . "external/qtip2/jquery.qtip.min.js", array( 'jquery' ), AC()->get_version() );
185
+ wp_enqueue_style( 'jquery-qtip2', AC()->get_url() . "external/qtip2/jquery.qtip.min.css", array(), AC()->get_version() );
186
 
187
  // Main
188
+ wp_enqueue_script( 'ac-table', AC()->get_url() . "assets/js/table.js", array( 'jquery', 'jquery-qtip2' ), AC()->get_version() );
189
+ wp_enqueue_style( 'ac-table', AC()->get_url() . "assets/css/table.css", array(), AC()->get_version() );
190
 
191
  wp_localize_script( 'ac-table', 'AC', array(
192
  'list_screen' => $list_screen->get_key(),
203
  );
204
 
205
  /**
206
+ * @param ListScreen $list_screen
207
  */
208
  do_action( 'ac/table_scripts', $list_screen );
209
 
227
  }
228
 
229
  /**
230
+ * @param ListScreen $list_screen
231
  *
232
  * @return array
233
  */
234
+ private function get_column_types_mapping( ListScreen $list_screen ) {
235
  $types = array();
236
  foreach ( $list_screen->get_columns() as $column ) {
237
  $types[ $column->get_name() ] = $column->get_type();
240
  return $types;
241
  }
242
 
243
+ /**
244
+ * @return ListScreen
245
+ */
246
  public function get_current_list_screen() {
247
  return $this->current_list_screen;
248
  }
259
  $css_column_width = false;
260
 
261
  foreach ( $this->current_list_screen->get_columns() as $column ) {
262
+ /* @var Settings\Column\Width $setting */
263
  $setting = $column->get_setting( 'width' );
264
 
265
  if ( $width = $setting->get_display_width() ) {
284
  }
285
 
286
  /**
287
+ * @param ListScreen $list_screen
288
  *
289
  * @return string|false
290
  */
291
+ private function get_edit_link( ListScreen $list_screen ) {
292
+ if ( ! current_user_can( Capabilities::MANAGE ) ) {
293
  return false;
294
  }
295
 
296
+ /* @var Admin\Page\Settings $settings */
297
  $settings = AC()->admin()->get_page( 'settings' );
298
 
299
  if ( ! $settings->show_edit_button() ) {
320
  *
321
  * @since 3.1.4
322
  *
323
+ * @param ListScreen
324
+ * @param self
325
  */
326
  do_action( 'ac/admin_head', $this->current_list_screen, $this );
327
  }
341
  *
342
  * @since 2.3.5
343
  *
344
+ * @param ListScreen
345
+ * @param self
346
  */
347
  do_action( 'ac/admin_footer', $this->current_list_screen, $this );
348
  }
350
  /**
351
  * Load current list screen
352
  *
353
+ * @param \WP_Screen $wp_screen
354
  */
355
  public function load_list_screen( $wp_screen ) {
 
 
 
356
 
357
  foreach ( AC()->get_list_screens() as $list_screen ) {
358
  if ( $list_screen->is_current_screen( $wp_screen ) ) {
359
+ $this->set_current_list_screen( ListScreenFactory::create( $list_screen->get_key() ) );
360
 
 
361
  break;
362
  }
363
  }
367
  * Runs when doing Quick Edit, a native WordPress ajax call
368
  */
369
  public function load_list_screen_doing_quick_edit() {
370
+ if ( AC()->is_doing_ajax() ) {
371
+
372
+ switch ( filter_input( INPUT_POST, 'action' ) ) {
373
+
374
+ // Quick edit post
375
+ case 'inline-save' :
376
+ $list_screen = filter_input( INPUT_POST, 'post_type' );
377
+ break;
378
+
379
+ // Adding term & Quick edit term
380
+ case 'add-tag' :
381
+ case 'inline-save-tax' :
382
+ $list_screen = 'wp-taxonomy_' . filter_input( INPUT_POST, 'taxonomy' );
383
+ break;
384
+
385
+ // Quick edit comment & Inline reply on comment
386
+ case 'edit-comment' :
387
+ case 'replyto-comment' :
388
+ $list_screen = 'wp-comments';
389
+ break;
390
+
391
+ default :
392
+ $list_screen = false;
393
+ }
394
+
395
+ $this->set_current_list_screen( ListScreenFactory::create( $list_screen ) );
396
+ }
397
  }
398
 
399
  /**
400
+ * @param ListScreen $list_screen
401
  */
402
  public function set_current_list_screen( $list_screen ) {
403
  if ( ! $list_screen ) {
418
  /**
419
  * @since 3.0
420
  *
421
+ * @param ListScreen
422
  */
423
  do_action( 'ac/table/list_screen', $list_screen );
424
  }
425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  /**
427
  * @since 2.0
428
  */
467
  /**
468
  * @since 3.0
469
  *
470
+ * @param string $label
471
+ * @param Column $column
472
  */
473
  $label = apply_filters( 'ac/headings/label', $column->get_setting( 'label' )->get_value(), $column );
474
 
478
  return apply_filters( 'ac/headings', $this->column_headings, $this->current_list_screen );
479
  }
480
 
481
+ }
classes/ThirdParty/ACF.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_ThirdParty_ACF {
8
 
9
  public function __construct() {
10
  add_filter( 'ac/post_types', array( $this, 'remove_acf_field_group' ) );
@@ -30,4 +28,4 @@ class AC_ThirdParty_ACF {
30
  return $post_types;
31
  }
32
 
33
- }
1
  <?php
2
 
3
+ namespace AC\ThirdParty;
 
 
4
 
5
+ class ACF {
6
 
7
  public function __construct() {
8
  add_filter( 'ac/post_types', array( $this, 'remove_acf_field_group' ) );
28
  return $post_types;
29
  }
30
 
31
+ }
classes/ThirdParty/NinjaForms.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_ThirdParty_NinjaForms {
8
 
9
  public function __construct() {
10
  add_filter( 'ac/post_types', array( $this, 'remove_nf_sub' ) );
@@ -20,4 +18,4 @@ class AC_ThirdParty_NinjaForms {
20
  return $post_types;
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\ThirdParty;
 
 
4
 
5
+ class NinjaForms {
6
 
7
  public function __construct() {
8
  add_filter( 'ac/post_types', array( $this, 'remove_nf_sub' ) );
18
  return $post_types;
19
  }
20
 
21
+ }
classes/ThirdParty/WPML.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * WPML compatibility
9
  */
10
- class AC_ThirdParty_WPML {
11
 
12
  function __construct() {
13
 
@@ -21,7 +21,7 @@ class AC_ThirdParty_WPML {
21
  add_filter( 'ac/headings/label', array( $this, 'register_translated_label' ), 100 );
22
  }
23
 
24
- public function replace_flags( $list_screen ) {
25
  if ( ! class_exists( 'SitePress', false ) ) {
26
  return;
27
  }
@@ -36,7 +36,7 @@ class AC_ThirdParty_WPML {
36
  $post_types['page'] = 1;
37
  foreach ( $post_types as $post_type => $value ) {
38
  if ( $value ) {
39
- new AC_ThirdParty_WPMLColumn( $post_type );
40
  }
41
  }
42
  }
@@ -57,7 +57,7 @@ class AC_ThirdParty_WPML {
57
 
58
  /**
59
  * @param string $label
60
- * @param AC_Column $column
61
  *
62
  * @return string
63
  */
@@ -69,4 +69,4 @@ class AC_ThirdParty_WPML {
69
  return $label;
70
  }
71
 
72
- }
1
  <?php
2
 
3
+ namespace AC\ThirdParty;
4
+
5
+ use AC\Column;
6
 
7
  /**
8
  * WPML compatibility
9
  */
10
+ class WPML {
11
 
12
  function __construct() {
13
 
21
  add_filter( 'ac/headings/label', array( $this, 'register_translated_label' ), 100 );
22
  }
23
 
24
+ public function replace_flags() {
25
  if ( ! class_exists( 'SitePress', false ) ) {
26
  return;
27
  }
36
  $post_types['page'] = 1;
37
  foreach ( $post_types as $post_type => $value ) {
38
  if ( $value ) {
39
+ new WPMLColumn( $post_type );
40
  }
41
  }
42
  }
57
 
58
  /**
59
  * @param string $label
60
+ * @param Column $column
61
  *
62
  * @return string
63
  */
69
  return $label;
70
  }
71
 
72
+ }
classes/ThirdParty/WPMLColumn.php CHANGED
@@ -1,13 +1,11 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
  /**
8
  * WPML: display correct flags on the overview screens
9
  */
10
- class AC_ThirdParty_WPMLColumn {
11
 
12
  const COLUMN_NAME = 'icl_translations';
13
 
@@ -33,4 +31,4 @@ class AC_ThirdParty_WPMLColumn {
33
 
34
  return $columns;
35
  }
36
- }
1
  <?php
2
 
3
+ namespace AC\ThirdParty;
 
 
4
 
5
  /**
6
  * WPML: display correct flags on the overview screens
7
  */
8
+ class WPMLColumn {
9
 
10
  const COLUMN_NAME = 'icl_translations';
11
 
31
 
32
  return $columns;
33
  }
34
+ }
classes/ThirdParty/WooCommerce.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_ThirdParty_WooCommerce {
8
 
9
  public function __construct() {
10
  add_filter( 'ac/post_types', array( $this, 'remove_webhook' ) );
@@ -20,4 +18,4 @@ class AC_ThirdParty_WooCommerce {
20
  return $post_types;
21
  }
22
 
23
- }
1
  <?php
2
 
3
+ namespace AC\ThirdParty;
 
 
4
 
5
+ class WooCommerce {
6
 
7
  public function __construct() {
8
  add_filter( 'ac/post_types', array( $this, 'remove_webhook' ) );
18
  return $post_types;
19
  }
20
 
21
+ }
classes/Transient.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace AC;
4
+
5
+ use AC\Storage;
6
+
7
+ class Transient
8
+ implements Expirable {
9
+
10
+ /**
11
+ * @var Storage\Option
12
+ */
13
+ protected $option;
14
+
15
+ /**
16
+ * @var Storage\Timestamp
17
+ */
18
+ protected $timestamp;
19
+
20
+ public function __construct( $key ) {
21
+ $this->option = new Storage\Option( $key );
22
+ $this->timestamp = new Storage\Timestamp(
23
+ new Storage\Option( $key . '_timestamp' )
24
+ );
25
+ }
26
+
27
+ /**
28
+ * @param int|null $value
29
+ *
30
+ * @return bool
31
+ */
32
+ public function is_expired( $value = null ) {
33
+ return $this->timestamp->is_expired( $value );
34
+ }
35
+
36
+ /**
37
+ * @return mixed
38
+ */
39
+ public function get() {
40
+ return $this->option->get();
41
+ }
42
+
43
+ public function delete() {
44
+ $this->option->delete();
45
+ $this->timestamp->delete();
46
+ }
47
+
48
+ /**
49
+ * @param mixed $data
50
+ * @param int $expiration Time until expiration in seconds. Default 0 (no expiration).
51
+ */
52
+ public function save( $data, $expiration ) {
53
+ return $this->option->save( $data ) && $this->timestamp->save( time() + intval( $expiration ) );
54
+ }
55
+
56
+ }
classes/View.php CHANGED
@@ -1,11 +1,8 @@
1
  <?php
2
 
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
 
7
- class AC_View
8
- implements AC_ViewInterface {
9
 
10
  /**
11
  * @var array
@@ -74,7 +71,7 @@ class AC_View
74
  * @param array $paths Template paths
75
  * @param string $template Current template path
76
  */
77
- $paths = apply_filters( 'ac/view/templates', array( AC()->get_plugin_dir() . 'templates' ), $this->template );
78
 
79
  foreach ( $paths as $path ) {
80
  $file = $path . '/' . $this->template . '.php';
@@ -89,6 +86,11 @@ class AC_View
89
  return false;
90
  }
91
 
 
 
 
 
 
92
  public function render() {
93
  ob_start();
94
 
@@ -115,8 +117,13 @@ class AC_View
115
  return $this;
116
  }
117
 
 
 
 
 
 
118
  public function __toString() {
119
  return $this->render();
120
  }
121
 
122
- }
1
  <?php
2
 
3
+ namespace AC;
 
 
4
 
5
+ class View {
 
6
 
7
  /**
8
  * @var array
71
  * @param array $paths Template paths
72
  * @param string $template Current template path
73
  */
74
+ $paths = apply_filters( 'ac/view/templates', array( AC()->get_dir() . 'templates' ), $this->template );
75
 
76
  foreach ( $paths as $path ) {
77
  $file = $path . '/' . $this->template . '.php';
86
  return false;
87
  }
88
 
89
+ /**
90
+ * Get a string representation of this object
91
+ *
92
+ * @return string
93
+ */
94
  public function render() {
95
  ob_start();
96
 
117
  return $this;
118
  }
119
 
120
+ /**
121
+ * Should call self::render when treated as a string
122
+ *
123
+ * @return string
124
+ */
125
  public function __toString() {
126
  return $this->render();
127
  }
128
 
129
+ }
classes/ViewInterface.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- interface AC_ViewInterface {
8
-
9
- /**
10
- * Get a string representation of this object
11
- *
12
- * @return string
13
- */
14
- public function render();
15
-
16
- /**
17
- * Should call self::render when treated as a string
18
- *
19
- * @return string
20
- */
21
- public function __toString();
22
-
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
codepress-admin-columns.php CHANGED
@@ -1,17 +1,18 @@
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
- Version: 3.1.10
5
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
6
  Author: AdminColumns.com
7
  Author URI: https://www.admincolumns.com
8
  Plugin URI: https://www.admincolumns.com
 
9
  Text Domain: codepress-admin-columns
10
  Domain Path: /languages
11
  License: GPL v3
12
 
13
  Admin Columns Plugin
14
- Copyright (C) 20011-2017, Admin Columns - info@admincolumns.com
15
  This program is free software: you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
17
  the Free Software Foundation, either version 3 of the License, or
@@ -31,581 +32,22 @@ if ( ! defined( 'ABSPATH' ) ) {
31
  }
32
 
33
  if ( ! is_admin() ) {
34
- return false;
35
  }
36
 
37
- require_once 'classes/Autoloader.php';
38
- require_once 'classes/Addon.php';
39
- require_once 'classes/Plugin.php';
40
- require_once 'api.php';
41
 
42
- /**
43
- * The Admin Columns Class
44
- *
45
- * @since 1.0
46
- */
47
- class CPAC extends AC_Plugin {
48
 
49
- /**
50
- * Admin Columns settings class instance
51
- *
52
- * @since 2.2
53
- * @access private
54
- * @var AC_Admin
55
- */
56
- private $admin;
57
 
58
- /**
59
- * @var AC_Groups Column Groups
60
- */
61
- private $column_groups;
62
-
63
- /**
64
- * @var AC_Groups Listscreen Groups
65
- */
66
- private $list_screen_groups;
67
-
68
- /**
69
- * @var AC_TableScreen
70
- */
71
- private $table_screen;
72
-
73
- /**
74
- * @since 3.0
75
- * @var AC_Helper
76
- */
77
- private $helper;
78
-
79
- /**
80
- * @since 3.0
81
- * @var AC_ListScreen[]
82
- */
83
- private $list_screens;
84
-
85
- /**
86
- * @var array $notices
87
- */
88
- private $notices;
89
-
90
- /**
91
- * @var AC_API
92
- */
93
- private $api;
94
-
95
- /**
96
- * @var AC_Admin_Addons
97
- */
98
- private $addons;
99
-
100
- /**
101
- * @since 2.5
102
- */
103
- private static $instance = null;
104
-
105
- /**
106
- * @since 2.5
107
- */
108
- public static function instance() {
109
- if ( null === self::$instance ) {
110
- self::$instance = new self;
111
- }
112
-
113
- return self::$instance;
114
- }
115
-
116
- /**
117
- * @since 1.0
118
- */
119
- private function __construct() {
120
- // Backwards compatibility
121
- define( 'CPAC_VERSION', $this->get_version() );
122
- define( 'CPAC_URL', $this->get_plugin_url() );
123
- define( 'CPAC_DIR', $this->get_plugin_dir() );
124
-
125
- $this->autoloader()->register_prefix( $this->get_prefix(), $this->get_plugin_dir() . 'classes/' );
126
-
127
- // Third Party
128
- new AC_ThirdParty_ACF();
129
- new AC_ThirdParty_NinjaForms();
130
- new AC_ThirdParty_WooCommerce();
131
- new AC_ThirdParty_WPML();
132
-
133
- // Init
134
- $this->addons = new AC_Admin_Addons();
135
-
136
- $this->admin = new AC_Admin();
137
- $this->admin->register();
138
-
139
- $this->table_screen = new AC_TableScreen();
140
- $this->helper = new AC_Helper();
141
- $this->api = new AC_API();
142
-
143
- new AC_Notice_Review();
144
-
145
- // Hooks
146
- add_action( 'init', array( $this, 'localize' ) );
147
- add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 1, 2 );
148
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
149
-
150
- // Notices
151
- add_action( 'admin_notices', array( $this, 'display_notices' ) );
152
- add_action( 'network_admin_notices', array( $this, 'display_notices' ) );
153
-
154
- add_action( 'after_setup_theme', array( $this, 'ready' ) );
155
-
156
- // Set capabilities
157
- add_action( 'admin_init', array( $this, 'check_capabilities' ) );
158
- register_activation_hook( $this->get_file(), array( $this, 'set_capabilities' ) );
159
-
160
- // Updater
161
- add_action( 'init', array( $this, 'install' ) );
162
- }
163
-
164
- /**
165
- * @return string
166
- */
167
- protected function get_file() {
168
- return __FILE__;
169
- }
170
-
171
- /**
172
- * @return string
173
- */
174
- protected function get_version_key() {
175
- return 'ac_version';
176
- }
177
-
178
- /**
179
- * @return string
180
- */
181
- public function get_version() {
182
- return '3.1.10';
183
- }
184
-
185
- public function get_prefix() {
186
- return 'AC_';
187
- }
188
-
189
- public function ready() {
190
-
191
- /**
192
- * For loading external resources, e.g. column settings.
193
- * Can be called from plugins and themes.
194
- */
195
- do_action( 'ac/ready', $this );
196
- }
197
-
198
- /**
199
- * @return AC_Autoloader
200
- */
201
- public function autoloader() {
202
- return AC_Autoloader::instance();
203
- }
204
-
205
- /**
206
- * @since 2.2
207
- * @uses load_plugin_textdomain()
208
- */
209
- public function localize() {
210
- load_plugin_textdomain( 'codepress-admin-columns', false, dirname( $this->get_basename() ) . '/languages/' );
211
- }
212
-
213
- /**
214
- * Add capability to administrator to manage admin columns.
215
- * You can use the capability 'manage_admin_columns' to grant other roles this privilege as well.
216
- *
217
- * @since 2.0.4
218
- *
219
- * @return bool
220
- */
221
- public function set_capabilities() {
222
- if ( ! current_user_can( 'administrator' ) ) {
223
- return false;
224
- }
225
-
226
- $role = get_role( 'administrator' );
227
-
228
- if ( ! $role ) {
229
- return false;
230
- }
231
-
232
- $role->add_cap( 'manage_admin_columns' );
233
-
234
- return update_option( 'ac_capabilities_set', 1, false );
235
- }
236
-
237
- /**
238
- * Check if the capabilities are set or settable
239
- *
240
- * @since 3.1.6
241
- *
242
- * @return bool
243
- */
244
- public function check_capabilities() {
245
- if ( ! current_user_can( 'administrator' ) ) {
246
- return false;
247
- }
248
-
249
- if ( get_option( 'ac_capabilities_set' ) ) {
250
- return true;
251
- }
252
-
253
- return $this->set_capabilities();
254
- }
255
-
256
- /**
257
- * @return bool True when user can manage admin columns
258
- */
259
- public function user_can_manage_admin_columns() {
260
- return current_user_can( 'manage_admin_columns' );
261
  }
262
 
263
- /**
264
- * Disable side wide notices
265
- *
266
- * @return bool True when no notices should be displayed
267
- */
268
- public function suppress_site_wide_notices() {
269
- return apply_filters( 'ac/suppress_site_wide_notices', false );
270
- }
271
-
272
- /**
273
- * Add a settings link to the Admin Columns entry in the plugin overview screen
274
- *
275
- * @since 1.0
276
- * @see filter:plugin_action_links
277
- */
278
- public function add_settings_link( $links, $file ) {
279
- if ( $file === $this->get_basename() ) {
280
- array_unshift( $links, ac_helper()->html->link( AC()->admin()->get_link( 'columns' ), __( 'Settings', 'codepress-admin-columns' ) ) );
281
- }
282
-
283
- return $links;
284
- }
285
-
286
- /**
287
- * @since 2.5
288
- */
289
- public function use_delete_confirmation() {
290
- return apply_filters( 'ac/delete_confirmation', true );
291
- }
292
-
293
- /**
294
- * @since 3.0
295
- * @return AC_API
296
- */
297
- public function api() {
298
- return $this->api;
299
- }
300
-
301
- /**
302
- * @since 2.2
303
- * @return AC_Admin Settings class instance
304
- */
305
- public function admin() {
306
- return $this->admin;
307
- }
308
-
309
- /**
310
- * @since 2.2
311
- * @return AC_Admin_Addons Add-ons class instance
312
- */
313
- public function addons() {
314
- return $this->addons;
315
- }
316
-
317
- /**
318
- * Column groups
319
- */
320
- public function set_column_groups() {
321
- $groups = new AC_Groups();
322
-
323
- $groups->register_group( 'default', __( 'Default', 'codepress-admin-columns' ) );
324
- $groups->register_group( 'plugin', __( 'Plugins' ), 20 );
325
- $groups->register_group( 'custom_field', __( 'Custom Fields', 'codepress-admin-columns' ), 30 );
326
- $groups->register_group( 'custom', __( 'Custom', 'codepress-admin-columns' ), 40 );
327
-
328
- foreach ( $this->addons()->get_missing_addons() as $addon ) {
329
- $groups->register_group( $addon->get_slug(), $addon->get_title(), 11 );
330
- }
331
-
332
- $this->column_groups = $groups;
333
-
334
- do_action( 'ac/column_groups', $groups );
335
- }
336
-
337
- /**
338
- * @return AC_Groups
339
- */
340
- public function column_groups() {
341
- if ( null === $this->column_groups ) {
342
- $this->set_column_groups();
343
- }
344
-
345
- return $this->column_groups;
346
- }
347
-
348
- /**
349
- * Contains simple helper methods
350
- *
351
- * @since 3.0
352
- *
353
- * @return AC_Helper
354
- */
355
- public function helper() {
356
- return $this->helper;
357
- }
358
-
359
- /**
360
- * @return AC_TableScreen Returns the screen manager for the list table
361
- */
362
- public function table_screen() {
363
- return $this->table_screen;
364
- }
365
-
366
- /**
367
- * @since 3.0
368
- *
369
- * @param string $key
370
- *
371
- * @return AC_ListScreen|false
372
- */
373
- public function get_list_screen( $key ) {
374
- $screens = $this->get_list_screens();
375
-
376
- if ( ! isset( $screens[ $key ] ) ) {
377
- return false;
378
- }
379
-
380
- return $screens[ $key ];
381
- }
382
-
383
- /**
384
- * @param string $key
385
- *
386
- * @return bool
387
- */
388
- public function list_screen_exists( $key ) {
389
- return $this->get_list_screen( $key ) ? true : false;
390
- }
391
-
392
- /**
393
- * Get registered list screens
394
- *
395
- * @since 3.0
396
- * @return AC_ListScreen[]
397
- */
398
- public function get_list_screens() {
399
- if ( null === $this->list_screens ) {
400
- $this->set_list_screens();
401
- }
402
-
403
- return $this->list_screens;
404
- }
405
-
406
- /**
407
- * Get registered list screens
408
- *
409
- * @since 3.0
410
- */
411
- private function set_list_screens() {
412
-
413
- $list_screens = array();
414
-
415
- // Post types
416
- foreach ( $this->get_post_types() as $post_type ) {
417
- $list_screens[] = new AC_ListScreen_Post( $post_type );
418
- }
419
-
420
- $list_screens[] = new AC_ListScreen_Media();
421
- $list_screens[] = new AC_ListScreen_Comment();
422
-
423
- // Users, not for network users
424
- if ( ! is_multisite() ) {
425
- $list_screens[] = new AC_ListScreen_User();
426
- }
427
-
428
- foreach ( $list_screens as $list_screen ) {
429
- $this->register_list_screen( $list_screen );
430
- }
431
-
432
- /**
433
- * Register list screens
434
- *
435
- * @since 3.0
436
- *
437
- * @param CPAC $this
438
- */
439
- do_action( 'ac/list_screens', $this );
440
- }
441
-
442
- /**
443
- * @param AC_ListScreen $list_screen
444
- */
445
- public function register_list_screen( AC_ListScreen $list_screen ) {
446
- $this->list_screens[ $list_screen->get_key() ] = $list_screen;
447
- }
448
-
449
- /**
450
- * Column groups
451
- */
452
- public function set_list_screen_groups() {
453
- $groups = new AC_Groups();
454
-
455
- $groups->register_group( 'post', __( 'Post Type', 'codepress-admin-columns' ), 5 );
456
- $groups->register_group( 'user', __( 'Users' ) );
457
- $groups->register_group( 'media', __( 'Media' ) );
458
- $groups->register_group( 'comment', __( 'Comments' ) );
459
- $groups->register_group( 'link', __( 'Links' ), 15 );
460
-
461
- $this->list_screen_groups = $groups;
462
-
463
- do_action( 'ac/list_screen_groups', $groups );
464
- }
465
-
466
- /**
467
- * @return AC_Groups
468
- */
469
- public function list_screen_groups() {
470
- if ( null === $this->list_screen_groups ) {
471
- $this->set_list_screen_groups();
472
- }
473
-
474
- return $this->list_screen_groups;
475
- }
476
-
477
- /**
478
- * Get a list of post types for which Admin Columns is active
479
- *
480
- * @since 1.0
481
- *
482
- * @return array List of post type keys (e.g. post, page)
483
- */
484
- public function get_post_types() {
485
- $post_types = array();
486
-
487
- if ( post_type_exists( 'post' ) ) {
488
- $post_types['post'] = 'post';
489
- }
490
- if ( post_type_exists( 'page' ) ) {
491
- $post_types['page'] = 'page';
492
- }
493
-
494
- $post_types = array_merge( $post_types, get_post_types( array(
495
- '_builtin' => false,
496
- 'show_ui' => true,
497
- ) ) );
498
-
499
- /**
500
- * Filter the post types for which Admin Columns is active
501
- *
502
- * @since 2.0
503
- *
504
- * @param array $post_types List of active post type names
505
- */
506
- return apply_filters( 'ac/post_types', $post_types );
507
- }
508
-
509
- /**
510
- * Display admin notice
511
- */
512
- public function display_notices() {
513
- if ( $this->notices ) {
514
- echo implode( array_unique( $this->notices ) );
515
- wp_enqueue_style( 'ac-sitewide-notices' );
516
- }
517
- }
518
-
519
- /**
520
- * @param string $message Message body
521
- * @param string $type
522
- * 'updated' is green
523
- * 'error' is red
524
- * 'notice-warning' is yellow
525
- * 'notice-info' is blue
526
- * @param bool $paragraph
527
- */
528
- public function notice( $message, $type = 'updated', $paragraph = true ) {
529
- if ( $paragraph ) {
530
- $message = '<p>' . $message . '</p>';
531
- }
532
-
533
- $this->notices[] = '<div class="ac-message notice ' . esc_attr( $type ) . '">' . $message . '</div>';
534
- }
535
-
536
- /**
537
- * @return AC_Admin_Page_Columns
538
- */
539
- public function admin_columns_screen() {
540
- return $this->admin()->get_page( 'columns' );
541
- }
542
-
543
- /**
544
- * @since 3.0
545
- */
546
- public function admin_scripts() {
547
- wp_register_script( 'ac-sitewide-notices', AC()->get_plugin_url() . "assets/js/message.js", array( 'jquery' ), AC()->get_version() );
548
- wp_register_style( 'ac-sitewide-notices', AC()->get_plugin_url() . "assets/css/message.css", array(), AC()->get_version() );
549
- }
550
-
551
- /**
552
- * @return bool True when doing ajax
553
- */
554
- public function is_doing_ajax() {
555
- return defined( 'DOING_AJAX' ) && DOING_AJAX;
556
- }
557
-
558
- /**
559
- * @deprecated 3.1.5
560
- *
561
- * @param WP_Screen $wp_screen
562
- */
563
- public function get_list_screen_by_wpscreen( $wp_screen ) {
564
- _deprecated_function( __METHOD__, '3.1.5' );
565
- }
566
-
567
- /**
568
- * @deprecated 3.1.5
569
- * @since 3.0
570
- */
571
- public function get_plugin_version( $file ) {
572
- _deprecated_function( __METHOD__, '3.1.5' );
573
- }
574
-
575
- /**
576
- * Returns the default list screen when no choice is made by the user
577
- *
578
- * @deprecated 3.1.5
579
- * @since 3.0
580
- */
581
- public function get_default_list_screen() {
582
- _deprecated_function( __METHOD__, '3.1.5' );
583
- }
584
-
585
- /**
586
- * @deprecated 3.1.5
587
- * @since 3.0
588
- */
589
- public function minified() {
590
- _deprecated_function( __METHOD__, '3.1.5' );
591
- }
592
-
593
- }
594
-
595
- /**
596
- * @deprecated 3.0
597
- */
598
- function cpac() {
599
- return AC();
600
- }
601
-
602
- /**
603
- * @since 3.0
604
- * @return CPAC
605
- */
606
- function AC() {
607
- return CPAC::instance();
608
  }
609
 
610
- // Global for backwards compatibility.
611
- $GLOBALS['cpac'] = AC();
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
+ Version: 3.2.3
5
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
6
  Author: AdminColumns.com
7
  Author URI: https://www.admincolumns.com
8
  Plugin URI: https://www.admincolumns.com
9
+ Requires PHP: 5.3
10
  Text Domain: codepress-admin-columns
11
  Domain Path: /languages
12
  License: GPL v3
13
 
14
  Admin Columns Plugin
15
+ Copyright (C) 2011-2018, Admin Columns - info@admincolumns.com
16
  This program is free software: you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License as published by
18
  the Free Software Foundation, either version 3 of the License, or
32
  }
33
 
34
  if ( ! is_admin() ) {
35
+ return;
36
  }
37
 
38
+ define( 'AC_FILE', __FILE__ );
 
 
 
39
 
40
+ require_once 'classes/Dependencies.php';
 
 
 
 
 
41
 
42
+ function ac_init() {
43
+ $dependencies = new AC_Dependencies( plugin_basename( AC_FILE ) );
44
+ $dependencies->check_php_version( '5.3' );
 
 
 
 
 
45
 
46
+ if ( $dependencies->has_missing() ) {
47
+ return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  }
49
 
50
+ require_once __DIR__ . '/bootstrap.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  }
52
 
53
+ add_action( 'after_setup_theme', 'ac_init', 1 );
 
languages/codepress-admin-columns-ar_AR.mo CHANGED
Binary file
languages/codepress-admin-columns-ar_AR.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,43 +579,43 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
@@ -557,99 +625,99 @@ msgstr[3] ""
557
  msgstr[4] ""
558
  msgstr[5] ""
559
 
560
- #: classes/Admin/Page/Help.php:258
561
  msgid "View documentation"
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:203
565
  msgid "The action %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:185
569
  msgid "The filter %s used on this website is deprecated since %s."
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:172
573
  msgid "Deprecated Actions"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:171
577
  msgid "Deprecated Filters"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
581
  msgid "Help"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
585
  msgid "Close"
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:741
589
  msgid "Clear all columns "
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:648
593
  msgid "I'm using Admin Columns for WordPress!"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:590
597
  msgid "Your First Name"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:589
601
  msgid "Your Email"
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:582
605
  msgid "Submit your email and we'll send you a discount for %s off."
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:578
609
  msgid "Get %s Off!"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:545
613
  msgid "Extra Columns for:"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:531
617
  msgid "Edit your column content directly"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:519
621
  msgid "Pro"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:301
625
  msgid "You need at least one column"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:293
629
  msgid "Available"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:292
633
  msgid "Recommended"
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:113
637
  msgid "%s could not be activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:103
641
  msgid "%s successfully activated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:98
645
  msgid "%s plugin successfully deactivated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:97
649
  msgid "%s plugin successfully activated."
650
  msgstr ""
651
 
652
- #: classes/Admin/Page/Addons.php:64
653
  msgid "%s add-on requires %s."
654
  msgid_plural "%s add-ons requires %s."
655
  msgstr[0] ""
@@ -659,19 +727,19 @@ msgstr[3] ""
659
  msgstr[4] ""
660
  msgstr[5] ""
661
 
662
- #: classes/Admin/Page/Addons.php:51
663
  msgid "here"
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:51
667
  msgid "Click %s to activate the plugin."
668
  msgstr ""
669
 
670
- #: classes/Admin/Page/Addons.php:48
671
  msgid "%s plugin is installed, but not active."
672
  msgstr ""
673
 
674
- #: classes/Admin/Page/Addons.php:46
675
  msgid "%s plugin needs to be installed for the add-on to work."
676
  msgstr ""
677
 
@@ -691,59 +759,55 @@ msgstr ""
691
  msgid "Imported"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:561
695
  msgid "Learn more about Pro"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:533
699
  msgid "Import &amp; Export settings"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:532
703
  msgid "Create multiple columns sets"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:530
707
  msgid "Add filterable columns"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:529
711
  msgid "Add sortable columns"
712
  msgstr ""
713
 
714
- #: classes/Admin/Page/Columns.php:524
715
  msgid "Take Admin Columns to the next level:"
716
  msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:519
719
  msgid "Upgrade to"
720
  msgstr ""
721
 
722
- #: classes/Admin/Promo.php:134
723
- msgid "Get %s Off"
724
- msgstr ""
725
-
726
- #: classes/Admin/Page/Columns.php:431
727
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:221
731
  msgid "Please visit the %s screen once to load all available columns"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:500
735
  msgid "Restore columns"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:147
739
  msgid "Settings for %s restored successfully."
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Columns.php:308
743
  msgid "View %s screen"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Columns.php:70
747
  msgid "Invalid response."
748
  msgstr "خطاء في الاستجابة."
749
 
@@ -759,23 +823,23 @@ msgstr ""
759
  msgid "Link Label"
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:220
763
  msgid "You need Admin Columns Pro."
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:214
767
  msgid "Addon does not exist."
768
  msgstr ""
769
 
770
- #: classes/Admin/Page/Addons.php:176
771
  msgid "the addons page"
772
  msgstr ""
773
 
774
- #: classes/Admin/Page/Addons.php:176
775
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
776
  msgstr ""
777
 
778
- #: codepress-admin-columns.php:300
779
  msgid "Custom Fields"
780
  msgstr "حقول مخصصة"
781
 
@@ -787,22 +851,28 @@ msgstr ""
787
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
788
  msgstr ""
789
 
790
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
791
  #. Plugin URI of the plugin/theme
792
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
793
  #. Author URI of the plugin/theme
794
  msgid "https://www.admincolumns.com"
795
  msgstr ""
796
 
797
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
798
  msgid "Edit columns"
799
  msgstr "تحرير الأعمدة"
800
 
801
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
802
  msgid "Settings for %s updated successfully."
803
  msgstr ""
804
 
805
- #: classes/Admin/Page/Columns.php:315
806
  msgid "You are trying to store the same settings for %s."
807
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
808
 
@@ -810,17 +880,17 @@ msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
810
  msgid "No columns settings available."
811
  msgstr "لا توجد إعدادات أعمدة متوفرة."
812
 
813
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
814
  msgid "Users"
815
  msgstr ""
816
 
817
  #: classes/ListScreen/Media.php:16
818
  #: classes/Settings/Column/CustomFieldType.php:112
819
- #: codepress-admin-columns.php:432
820
  msgid "Media"
821
  msgstr ""
822
 
823
- #: codepress-admin-columns.php:434
824
  msgid "Links"
825
  msgstr ""
826
 
@@ -828,103 +898,103 @@ msgstr ""
828
  msgid "Comment"
829
  msgstr ""
830
 
831
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
832
  msgid "Comments"
833
  msgstr ""
834
 
835
- #: classes/Admin/Page/Addons.php:420
836
  msgid "Get this add-on"
837
  msgstr ""
838
 
839
- #: classes/Admin/Page/Addons.php:418
840
  msgid "Download & Install"
841
  msgstr ""
842
 
843
- #: classes/Admin/Page/Addons.php:412
844
  msgid "Activate"
845
  msgstr ""
846
 
847
- #: classes/Admin/Page/Addons.php:291
848
  msgid "Installed"
849
  msgstr ""
850
 
851
- #: classes/Admin/Page/Addons.php:408
852
  msgid "Deactivate"
853
  msgstr ""
854
 
855
- #: classes/Admin/Page/Addons.php:405
856
  msgid "Active"
857
  msgstr ""
858
 
859
- #: classes/Admin/Page/Columns.php:747
860
  msgid "Add Column"
861
  msgstr "أضف عمود"
862
 
863
- #: classes/Admin/Page/Columns.php:727
864
  msgid "Drag and drop to reorder"
865
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
866
 
867
- #: classes/Admin/Page/Columns.php:676
868
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
869
  msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
870
 
871
- #: classes/Admin/Page/Columns.php:672
872
  msgid "Check the <strong>Help</strong> section in the top-right screen."
873
  msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
874
 
875
- #: classes/Admin/Page/Columns.php:667
876
  msgid "Support"
877
  msgstr "دعم"
878
 
879
- #: classes/Admin/Page/Columns.php:655
880
  msgid "Buy Pro"
881
  msgstr ""
882
 
883
- #: classes/Admin/Page/Columns.php:649
884
  msgid "Tweet"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:643
888
  msgid "Rate"
889
  msgstr ""
890
 
891
- #: classes/Admin/Page/Columns.php:638
892
  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!"
893
  msgstr ""
894
 
895
- #: classes/Admin/Page/Columns.php:635
896
  msgid "Woohoo! We're glad to hear that!"
897
  msgstr ""
898
 
899
- #: classes/Admin/Page/Columns.php:625
900
  msgid "Forums"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:620
904
  msgid "Docs"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:615
908
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:612
912
  msgid "What's wrong? Need help? Let us know!"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:602
916
  msgid "Are you happy with Admin Columns?"
917
  msgstr ""
918
 
919
- #: classes/Admin/Page/Columns.php:499
920
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
921
  msgstr ""
922
 
923
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
924
  msgid "Update"
925
  msgstr ""
926
 
927
- #: classes/Admin/Page/Columns.php:477
928
  msgid "Store settings"
929
  msgstr "حفظ الإعدادات"
930
 
@@ -932,7 +1002,7 @@ msgstr "حفظ الإعدادات"
932
  msgid "Add-ons"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
936
  msgid "Settings"
937
  msgstr "الإعدادات"
938
 
@@ -940,32 +1010,32 @@ msgstr "الإعدادات"
940
  msgid "Others"
941
  msgstr ""
942
 
943
- #: classes/Admin/Page/Settings.php:229
944
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
945
  msgstr ""
946
 
947
- #: classes/Admin/Page/Settings.php:229
948
  msgid "Restore default settings"
949
  msgstr "استرجاع الإعدادات الإفتراضية"
950
 
951
- #: classes/Admin/Page/Settings.php:221
952
  msgid "This will delete all column settings and restore the default settings."
953
  msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
954
 
955
- #: classes/Admin/Page/Settings.php:220
956
  msgid "Restore Settings"
957
  msgstr "استرجاع الإعدادات"
958
 
959
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
960
- #: classes/Admin/Page/Settings.php:179
961
  msgid "Save"
962
  msgstr ""
963
 
964
- #: classes/Admin/Page/Settings.php:161
965
  msgid "Customize your Admin Columns settings."
966
  msgstr "قم بتخصيص إعدادات Admin Columns."
967
 
968
- #: classes/Admin/Page/Settings.php:160
969
  #: classes/Settings/Column/DateTimeFormat.php:39
970
  msgid "General Settings"
971
  msgstr "إعدادات عامة"
@@ -1066,19 +1136,19 @@ msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضا
1066
  msgid "Overview"
1067
  msgstr "نظرة عامة"
1068
 
1069
- #: classes/Admin/Page/Settings.php:101
1070
  msgid "Default settings succesfully restored."
1071
  msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
1072
 
1073
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1074
  msgid "%s column is already present and can not be duplicated."
1075
  msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
1076
 
1077
- #: classes/Admin.php:127
1078
  msgid "Admin Columns Settings"
1079
  msgstr "إعدادات Admin Columns"
1080
 
1081
- #: classes/Admin/Page/Addons.php:104
1082
  msgid "%s successfully deactivated."
1083
  msgstr ""
1084
 
@@ -1126,13 +1196,14 @@ msgstr ""
1126
  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."
1127
  msgstr ""
1128
 
1129
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1130
  msgid "Admin Columns Pro"
1131
  msgstr ""
1132
 
1133
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1134
  #. Plugin Name of the plugin/theme
1135
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1136
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1137
  #: classes/Plugin/Updater.php:114
1138
  msgid "Admin Columns"
@@ -1186,7 +1257,7 @@ msgstr ""
1186
  msgid "Choose a column type."
1187
  msgstr "اختر نوع عمود"
1188
 
1189
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1190
  msgid "Clone"
1191
  msgstr ""
1192
 
@@ -1206,7 +1277,7 @@ msgstr "بريد المستخدم"
1206
  msgid "User Login"
1207
  msgstr "اسم الدخول"
1208
 
1209
- #: classes/Settings/Column/User.php:65
1210
  msgid "Last Name"
1211
  msgstr "الاسم الأخير"
1212
 
@@ -1235,7 +1306,7 @@ msgid "width"
1235
  msgstr "عرض"
1236
 
1237
  #: classes/Settings/Column/CustomFieldType.php:153
1238
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1239
  msgid "Custom"
1240
  msgstr "مخصوص"
1241
 
@@ -1272,7 +1343,7 @@ msgid "Registered"
1272
  msgstr "مسجل"
1273
 
1274
  #: classes/Settings/Column/CustomFieldType.php:80
1275
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1276
  msgid "Post Type"
1277
  msgstr "نوع تدوبنة"
1278
 
@@ -1284,16 +1355,12 @@ msgstr "عدد التدوينات"
1284
  msgid "Nickname"
1285
  msgstr "الاسم المستعار"
1286
 
1287
- #: classes/Column/User/LastName.php:14
1288
- msgid "Last name"
1289
- msgstr "الاسم الأخير"
1290
-
1291
  #: classes/Column/Post/CommentCount.php:17
1292
  #: classes/Column/User/CommentCount.php:14
1293
  msgid "Comment Count"
1294
  msgstr ""
1295
 
1296
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1297
  msgid "Remove"
1298
  msgstr "إزالة"
1299
 
@@ -1341,7 +1408,7 @@ msgstr ""
1341
  msgid "Permalink"
1342
  msgstr ""
1343
 
1344
- #: classes/Column/Post/Path.php:16
1345
  msgid "Path"
1346
  msgstr ""
1347
 
@@ -1491,10 +1558,6 @@ msgstr ""
1491
  msgid "Path scope"
1492
  msgstr ""
1493
 
1494
- #: classes/Settings/Column/PathScope.php:24
1495
- msgid "Full path"
1496
- msgstr "مسار كامل"
1497
-
1498
  #: classes/Column/Media/FileSize.php:14
1499
  msgid "File Size"
1500
  msgstr ""
@@ -1552,7 +1615,7 @@ msgstr "شرح"
1552
  msgid "Available Sizes"
1553
  msgstr "الأحجام المتوفرة"
1554
 
1555
- #: classes/Admin/Page/Columns.php:463
1556
  msgid "View"
1557
  msgstr "عرض"
1558
 
@@ -1647,7 +1710,7 @@ msgstr "لون"
1647
  #: classes/Admin/Help/CustomField.php:22
1648
  #: classes/Settings/Column/CustomFieldType.php:168
1649
  #: classes/Settings/Column/Image.php:71
1650
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1651
  msgid "Default"
1652
  msgstr "إفتراضي"
1653
 
@@ -1733,7 +1796,7 @@ msgstr "موافق عليه"
1733
  msgid "Agent"
1734
  msgstr "عميل"
1735
 
1736
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1737
  msgid "Edit"
1738
  msgstr "تحرير"
1739
 
@@ -1744,20 +1807,20 @@ msgstr "تحرير"
1744
  msgid "ID"
1745
  msgstr "رقم"
1746
 
1747
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1748
  #: classes/Settings/Column/ActionIcons.php:22
1749
  #: classes/Settings/Column/MissingImageSize.php:22
1750
  #: classes/Settings/Column/PostFormatIcon.php:24
1751
- #: classes/Settings/Column/StatusIcon.php:24
1752
  #: classes/Settings/Column/Toggle.php:14
1753
  msgid "No"
1754
  msgstr ""
1755
 
1756
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1757
  #: classes/Settings/Column/ActionIcons.php:21
1758
  #: classes/Settings/Column/MissingImageSize.php:21
1759
  #: classes/Settings/Column/PostFormatIcon.php:23
1760
- #: classes/Settings/Column/StatusIcon.php:23
1761
  #: classes/Settings/Column/Toggle.php:13
1762
  msgid "Yes"
1763
  msgstr ""
@@ -1786,6 +1849,6 @@ msgstr ""
1786
  msgid "Advanced Custom Fields"
1787
  msgstr ""
1788
 
1789
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1790
  msgid "Plugins"
1791
  msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
625
  msgstr[4] ""
626
  msgstr[5] ""
627
 
628
+ #: classes/Admin/Page/Help.php:263
629
  msgid "View documentation"
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:208
633
  msgid "The action %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:190
637
  msgid "The filter %s used on this website is deprecated since %s."
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:177
641
  msgid "Deprecated Actions"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:176
645
  msgid "Deprecated Filters"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
649
  msgid "Help"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
653
  msgid "Close"
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:744
657
  msgid "Clear all columns "
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:651
661
  msgid "I'm using Admin Columns for WordPress!"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:593
665
  msgid "Your First Name"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:592
669
  msgid "Your Email"
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:585
673
  msgid "Submit your email and we'll send you a discount for %s off."
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
677
  msgid "Get %s Off!"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:548
681
  msgid "Extra Columns for:"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:534
685
  msgid "Edit your column content directly"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:522
689
  msgid "Pro"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Columns.php:304
693
  msgid "You need at least one column"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:297
697
  msgid "Available"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:296
701
  msgid "Recommended"
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:117
705
  msgid "%s could not be activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:107
709
  msgid "%s successfully activated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:102
713
  msgid "%s plugin successfully deactivated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:101
717
  msgid "%s plugin successfully activated."
718
  msgstr ""
719
 
720
+ #: classes/Admin/Page/Addons.php:69
721
  msgid "%s add-on requires %s."
722
  msgid_plural "%s add-ons requires %s."
723
  msgstr[0] ""
727
  msgstr[4] ""
728
  msgstr[5] ""
729
 
730
+ #: classes/Admin/Page/Addons.php:56
731
  msgid "here"
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:56
735
  msgid "Click %s to activate the plugin."
736
  msgstr ""
737
 
738
+ #: classes/Admin/Page/Addons.php:53
739
  msgid "%s plugin is installed, but not active."
740
  msgstr ""
741
 
742
+ #: classes/Admin/Page/Addons.php:51
743
  msgid "%s plugin needs to be installed for the add-on to work."
744
  msgstr ""
745
 
759
  msgid "Imported"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:564
763
  msgid "Learn more about Pro"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:536
767
  msgid "Import &amp; Export settings"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:535
771
  msgid "Create multiple columns sets"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:533
775
  msgid "Add filterable columns"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:532
779
  msgid "Add sortable columns"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:527
783
  msgid "Take Admin Columns to the next level:"
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:522
787
  msgid "Upgrade to"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
791
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:224
795
  msgid "Please visit the %s screen once to load all available columns"
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:503
799
  msgid "Restore columns"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:150
803
  msgid "Settings for %s restored successfully."
804
  msgstr ""
805
 
806
+ #: classes/Admin/Page/Columns.php:311
807
  msgid "View %s screen"
808
  msgstr ""
809
 
810
+ #: classes/Admin/Page/Columns.php:73
811
  msgid "Invalid response."
812
  msgstr "خطاء في الاستجابة."
813
 
823
  msgid "Link Label"
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:224
827
  msgid "You need Admin Columns Pro."
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:218
831
  msgid "Addon does not exist."
832
  msgstr ""
833
 
834
+ #: classes/Admin/Page/Addons.php:180
835
  msgid "the addons page"
836
  msgstr ""
837
 
838
+ #: classes/Admin/Page/Addons.php:180
839
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
840
  msgstr ""
841
 
842
+ #: codepress-admin-columns.php:325
843
  msgid "Custom Fields"
844
  msgstr "حقول مخصصة"
845
 
851
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
852
  msgstr ""
853
 
854
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
855
+ #. #-#-#-#-#
856
  #. Plugin URI of the plugin/theme
857
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
858
+ #. #-#-#-#-#
859
  #. Author URI of the plugin/theme
860
  msgid "https://www.admincolumns.com"
861
  msgstr ""
862
 
863
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
864
  msgid "Edit columns"
865
  msgstr "تحرير الأعمدة"
866
 
867
+ #: classes/Admin/Page/Columns.php:940
868
+ msgid "Upgrade"
869
+ msgstr "تحديث"
870
+
871
+ #: classes/Admin/Page/Columns.php:331
872
  msgid "Settings for %s updated successfully."
873
  msgstr ""
874
 
875
+ #: classes/Admin/Page/Columns.php:318
876
  msgid "You are trying to store the same settings for %s."
877
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
878
 
880
  msgid "No columns settings available."
881
  msgstr "لا توجد إعدادات أعمدة متوفرة."
882
 
883
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
884
  msgid "Users"
885
  msgstr ""
886
 
887
  #: classes/ListScreen/Media.php:16
888
  #: classes/Settings/Column/CustomFieldType.php:112
889
+ #: codepress-admin-columns.php:457
890
  msgid "Media"
891
  msgstr ""
892
 
893
+ #: codepress-admin-columns.php:459
894
  msgid "Links"
895
  msgstr ""
896
 
898
  msgid "Comment"
899
  msgstr ""
900
 
901
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
902
  msgid "Comments"
903
  msgstr ""
904
 
905
+ #: classes/Admin/Page/Addons.php:424
906
  msgid "Get this add-on"
907
  msgstr ""
908
 
909
+ #: classes/Admin/Page/Addons.php:422
910
  msgid "Download & Install"
911
  msgstr ""
912
 
913
+ #: classes/Admin/Page/Addons.php:416
914
  msgid "Activate"
915
  msgstr ""
916
 
917
+ #: classes/Admin/Page/Addons.php:295
918
  msgid "Installed"
919
  msgstr ""
920
 
921
+ #: classes/Admin/Page/Addons.php:412
922
  msgid "Deactivate"
923
  msgstr ""
924
 
925
+ #: classes/Admin/Page/Addons.php:409
926
  msgid "Active"
927
  msgstr ""
928
 
929
+ #: classes/Admin/Page/Columns.php:750
930
  msgid "Add Column"
931
  msgstr "أضف عمود"
932
 
933
+ #: classes/Admin/Page/Columns.php:730
934
  msgid "Drag and drop to reorder"
935
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
936
 
937
+ #: classes/Admin/Page/Columns.php:679
938
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
939
  msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
940
 
941
+ #: classes/Admin/Page/Columns.php:675
942
  msgid "Check the <strong>Help</strong> section in the top-right screen."
943
  msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
944
 
945
+ #: classes/Admin/Page/Columns.php:670
946
  msgid "Support"
947
  msgstr "دعم"
948
 
949
+ #: classes/Admin/Page/Columns.php:658
950
  msgid "Buy Pro"
951
  msgstr ""
952
 
953
+ #: classes/Admin/Page/Columns.php:652
954
  msgid "Tweet"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:646
958
  msgid "Rate"
959
  msgstr ""
960
 
961
+ #: classes/Admin/Page/Columns.php:641
962
  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!"
963
  msgstr ""
964
 
965
+ #: classes/Admin/Page/Columns.php:638
966
  msgid "Woohoo! We're glad to hear that!"
967
  msgstr ""
968
 
969
+ #: classes/Admin/Page/Columns.php:628
970
  msgid "Forums"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:623
974
  msgid "Docs"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:618
978
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:615
982
  msgid "What's wrong? Need help? Let us know!"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:605
986
  msgid "Are you happy with Admin Columns?"
987
  msgstr ""
988
 
989
+ #: classes/Admin/Page/Columns.php:502
990
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
991
  msgstr ""
992
 
993
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
994
  msgid "Update"
995
  msgstr ""
996
 
997
+ #: classes/Admin/Page/Columns.php:480
998
  msgid "Store settings"
999
  msgstr "حفظ الإعدادات"
1000
 
1002
  msgid "Add-ons"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
1006
  msgid "Settings"
1007
  msgstr "الإعدادات"
1008
 
1010
  msgid "Others"
1011
  msgstr ""
1012
 
1013
+ #: classes/Admin/Page/Settings.php:239
1014
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1015
  msgstr ""
1016
 
1017
+ #: classes/Admin/Page/Settings.php:239
1018
  msgid "Restore default settings"
1019
  msgstr "استرجاع الإعدادات الإفتراضية"
1020
 
1021
+ #: classes/Admin/Page/Settings.php:231
1022
  msgid "This will delete all column settings and restore the default settings."
1023
  msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
1024
 
1025
+ #: classes/Admin/Page/Settings.php:230
1026
  msgid "Restore Settings"
1027
  msgstr "استرجاع الإعدادات"
1028
 
1029
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1030
+ #: classes/Admin/Page/Settings.php:189
1031
  msgid "Save"
1032
  msgstr ""
1033
 
1034
+ #: classes/Admin/Page/Settings.php:171
1035
  msgid "Customize your Admin Columns settings."
1036
  msgstr "قم بتخصيص إعدادات Admin Columns."
1037
 
1038
+ #: classes/Admin/Page/Settings.php:170
1039
  #: classes/Settings/Column/DateTimeFormat.php:39
1040
  msgid "General Settings"
1041
  msgstr "إعدادات عامة"
1136
  msgid "Overview"
1137
  msgstr "نظرة عامة"
1138
 
1139
+ #: classes/Admin/Page/Settings.php:111
1140
  msgid "Default settings succesfully restored."
1141
  msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
1142
 
1143
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1144
  msgid "%s column is already present and can not be duplicated."
1145
  msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
1146
 
1147
+ #: classes/Admin.php:126
1148
  msgid "Admin Columns Settings"
1149
  msgstr "إعدادات Admin Columns"
1150
 
1151
+ #: classes/Admin/Page/Addons.php:108
1152
  msgid "%s successfully deactivated."
1153
  msgstr ""
1154
 
1196
  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."
1197
  msgstr ""
1198
 
1199
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1200
  msgid "Admin Columns Pro"
1201
  msgstr ""
1202
 
1203
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1204
+ #. #-#-#-#-#
1205
  #. Plugin Name of the plugin/theme
1206
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1207
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1208
  #: classes/Plugin/Updater.php:114
1209
  msgid "Admin Columns"
1257
  msgid "Choose a column type."
1258
  msgstr "اختر نوع عمود"
1259
 
1260
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1261
  msgid "Clone"
1262
  msgstr ""
1263
 
1277
  msgid "User Login"
1278
  msgstr "اسم الدخول"
1279
 
1280
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1281
  msgid "Last Name"
1282
  msgstr "الاسم الأخير"
1283
 
1306
  msgstr "عرض"
1307
 
1308
  #: classes/Settings/Column/CustomFieldType.php:153
1309
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1310
  msgid "Custom"
1311
  msgstr "مخصوص"
1312
 
1343
  msgstr "مسجل"
1344
 
1345
  #: classes/Settings/Column/CustomFieldType.php:80
1346
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1347
  msgid "Post Type"
1348
  msgstr "نوع تدوبنة"
1349
 
1355
  msgid "Nickname"
1356
  msgstr "الاسم المستعار"
1357
 
 
 
 
 
1358
  #: classes/Column/Post/CommentCount.php:17
1359
  #: classes/Column/User/CommentCount.php:14
1360
  msgid "Comment Count"
1361
  msgstr ""
1362
 
1363
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1364
  msgid "Remove"
1365
  msgstr "إزالة"
1366
 
1408
  msgid "Permalink"
1409
  msgstr ""
1410
 
1411
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1412
  msgid "Path"
1413
  msgstr ""
1414
 
1558
  msgid "Path scope"
1559
  msgstr ""
1560
 
 
 
 
 
1561
  #: classes/Column/Media/FileSize.php:14
1562
  msgid "File Size"
1563
  msgstr ""
1615
  msgid "Available Sizes"
1616
  msgstr "الأحجام المتوفرة"
1617
 
1618
+ #: classes/Admin/Page/Columns.php:466
1619
  msgid "View"
1620
  msgstr "عرض"
1621
 
1710
  #: classes/Admin/Help/CustomField.php:22
1711
  #: classes/Settings/Column/CustomFieldType.php:168
1712
  #: classes/Settings/Column/Image.php:71
1713
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1714
  msgid "Default"
1715
  msgstr "إفتراضي"
1716
 
1796
  msgid "Agent"
1797
  msgstr "عميل"
1798
 
1799
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1800
  msgid "Edit"
1801
  msgstr "تحرير"
1802
 
1807
  msgid "ID"
1808
  msgstr "رقم"
1809
 
1810
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1811
  #: classes/Settings/Column/ActionIcons.php:22
1812
  #: classes/Settings/Column/MissingImageSize.php:22
1813
  #: classes/Settings/Column/PostFormatIcon.php:24
1814
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1815
  #: classes/Settings/Column/Toggle.php:14
1816
  msgid "No"
1817
  msgstr ""
1818
 
1819
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1820
  #: classes/Settings/Column/ActionIcons.php:21
1821
  #: classes/Settings/Column/MissingImageSize.php:21
1822
  #: classes/Settings/Column/PostFormatIcon.php:23
1823
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1824
  #: classes/Settings/Column/Toggle.php:13
1825
  msgid "Yes"
1826
  msgstr ""
1849
  msgid "Advanced Custom Fields"
1850
  msgstr ""
1851
 
1852
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1853
  msgid "Plugins"
1854
  msgstr ""
languages/codepress-admin-columns-bt_BR.mo CHANGED
Binary file
languages/codepress-admin-columns-bt_BR.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr "Formato de hora do WordPress"
@@ -184,7 +252,7 @@ msgstr "original"
184
  msgid "Alternative Text"
185
  msgstr "Texto alternativo"
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr "Visite a página %s."
190
 
@@ -241,11 +309,11 @@ msgstr "O resumo está vazio."
241
  msgid "User Nicename"
242
  msgstr "Apelido do usuário"
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr "Me mande o desconto"
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr "Preços a partir de %s"
251
 
@@ -503,7 +571,7 @@ msgstr ", "
503
  msgid "Standard"
504
  msgstr "Padrão"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr "Caminho completo"
509
 
@@ -511,159 +579,159 @@ msgstr "Caminho completo"
511
  msgid "Discount is valid until %s"
512
  msgstr "Desconto válido até %s"
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr "Mostrar o botão de %s na tela da tabela."
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr "Padrão é %s."
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr "ligado"
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr "desligado"
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr "Aviso"
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "Instruções"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr "nossa documentação"
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr "Este site está utilizando algumas ações ou filtros que foram alterados. Leia %s para resolvê-los."
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr "O plugin Admin Columns teve algumas alterações importantes na versão 4."
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] "O callback usado é %s."
554
  msgstr[1] "Os callbacks usados são %s"
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr "Ver documentação"
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr "A ação %s usada neste site está obsoleta desde %s."
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr "O filtro %s usado neste site está obsoleto desde %s."
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr "Ações obsoletas"
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr "Filtros obsoletos"
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr "Ajuda"
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr "Fechar"
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr "Limpar todas as colunas "
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr "Estou usando o Admin Columns para WordPress!"
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr "Seu nome"
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr "Seu Email"
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr "Mande seu e-mail e nós te enviaremos um desconto de %s."
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr "Ganhe %s de desconto!"
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr "Colunas extras para:"
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr "Edite o conteúdo da coluna diretamente"
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr "Pro"
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr "Você precisa de pelo menos uma coluna"
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr "Disponível"
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr "Recomendado"
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr "%s não pôde ser ativado."
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr "%s ativado com sucesso."
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr "O plugin %s foi desativado."
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr "Plugin %s ativado com sucesso."
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] "%s complemento requer o %s."
652
  msgstr[1] "%s complementos requerem o %s."
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr "aqui"
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr "Clique %s para ativar o plugin."
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr "Plugin %s instalado, mas não está ativo."
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr "O plugin %s é necessário para que o complemento funcione."
669
 
@@ -683,59 +751,55 @@ msgstr "Pods"
683
  msgid "Imported"
684
  msgstr "Importado"
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr "Saiba mais sobre a versão Pro"
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr "Configurações de importação &amp; exportação"
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr "Criar vários conjuntos de colunas"
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr "Adicionar colunas filtráveis"
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr "Adicionar colunas ordenáveis"
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr "Leve o Admin Columns para o próximo nível:"
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr "Atualize para"
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr "Obtenha %s de desconto"
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr "As colunas para %s são configuradas via PHP e, portanto, não podem ser editadas."
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr "Por favor visite a tela de %s para carregar todas as colunas disponíveis"
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr "Restaurar colunas"
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr "Configurações para %s restauradas com sucesso."
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr "Ver tela de %s"
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr "Resposta inválida."
741
 
@@ -751,23 +815,23 @@ msgstr "Deixe em branco para exibir a URL"
751
  msgid "Link Label"
752
  msgstr "Rótulo do link"
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr "Você precisa do Admin Columns Pro."
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr "O complemento não existe."
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr "a página de complementos"
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr "Você sabia que o Admin Columns Pro tem um complemento de integração para o %s? Com a licença adequada do Admin Columns Pro, você pode realizar o download em %s!"
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Campos personalizados"
773
 
@@ -779,22 +843,28 @@ msgstr "AdminColumns.com"
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr "Personalize as colunas nas telas administrativas dos posts (e tipos personalizados), páginas, mídia, comentários, links e usuários com uma interface arraste-e-solte fácil de usar."
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr "https://www.admincolumns.com"
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Editar colunas"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr "Configurações para %s atualizado."
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Você está tentando armazenar as mesmas configurações para %s."
800
 
@@ -802,17 +872,17 @@ msgstr "Você está tentando armazenar as mesmas configurações para %s."
802
  msgid "No columns settings available."
803
  msgstr "Nenhuma configuração de colunas disponível."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Usuários"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "Mídia"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr "Links"
818
 
@@ -820,103 +890,103 @@ msgstr "Links"
820
  msgid "Comment"
821
  msgstr "Comentário"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "Comentários"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr "Obter este complemento"
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr "Baixar e instalar"
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Ativado"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "Instalado"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Desativar"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Ativar"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Adicionar coluna"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Arraste e solte para reordenar"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr "Para a documentação completa, relatos de erros, sugestões de recursos e outras dicas <a href='%s'>visite o site do Admin Columns</a>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Suporte"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr "Comprar a versão Pro"
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr "Twittar"
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "Avaliar"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr "Nós realmente adoraríamos se você pudesse mostrar seu apreço nos avaliando no WordPress.org ou twittando sobre o Admin Columns!"
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr "Uhuu! Estamos felizes em saber disto!"
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr "Forums"
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr "Docs"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr "Algum problema? Precisa de ajuda? Fale conosco!"
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr "Você está feliz com o Admin Columns?"
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr "Atenção! Os dados das colunas de %s serão excluídos. Isto não poderá ser desfeito. 'OK' para prosseguir, 'Cancelar' para desistir"
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Atualizar"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Armazenar configurações"
922
 
@@ -924,7 +994,7 @@ msgstr "Armazenar configurações"
924
  msgid "Add-ons"
925
  msgstr "Complementos"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Configurações"
930
 
@@ -932,32 +1002,32 @@ msgstr "Configurações"
932
  msgid "Others"
933
  msgstr "Outros"
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr "Atenção! Todos os dados salvos do administrador de colunas serão excluídos. Isto não poderá ser desfeito. 'OK' para prosseguir, 'Cancelar' para desistir"
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Restaurar configuração padrão"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Isto irá apagar todas as configurações de coluna e restaurar as configurações padrão."
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Restaurar Configurações"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Salvar"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Personalize as configurações do Admin Columns."
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Configurações gerais"
@@ -1058,19 +1128,19 @@ msgstr "Esse plugin serve para adicionar e remover colunas adicionais nas telas
1058
  msgid "Overview"
1059
  msgstr "Visão geral"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "As configurações padrão foram restauradas."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "A coluna %s já está inclusa e não pode ser duplicada."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Configurações do Admin Columns"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr "%s desativado com sucesso."
1076
 
@@ -1118,13 +1188,14 @@ msgstr "clique aqui"
1118
  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."
1119
  msgstr "Nós não queremos lhe incomodar, mas você já está usando o %s há algum tempo, e nós queremos saber se você está feliz com o plugin. Caso esteja, poderia deixar uma avaliação no wordpress.org? Caso não esteja feliz com o %s, por favor %s."
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr "Admin Columns Pro"
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Nome"
1178
  msgid "Choose a column type."
1179
  msgstr "Escolha um tipo de coluna."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "Clonar"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Email do Usuário"
1198
  msgid "User Login"
1199
  msgstr "Login do usuário"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Sobrenome"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "largura"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Personalizado"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Registrado"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Tipo de Post"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Contagem de posts"
1276
  msgid "Nickname"
1277
  msgstr "Apelido"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Sobrenome"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr "Nº de comentários"
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Remover"
1291
 
@@ -1333,7 +1400,7 @@ msgstr "Ping status"
1333
  msgid "Permalink"
1334
  msgstr "Link permanente"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr "Caminho"
1339
 
@@ -1475,10 +1542,6 @@ msgstr "Parte do caminho do arquivo a exibir"
1475
  msgid "Path scope"
1476
  msgstr "Escopo do caminho"
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Caminho completo"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr "Tamanho do arquivo"
@@ -1536,7 +1599,7 @@ msgstr "Legenda"
1536
  msgid "Available Sizes"
1537
  msgstr "Tamanhos disponíveis"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Ver"
1542
 
@@ -1633,7 +1696,7 @@ msgstr "Cor"
1633
  #: classes/Admin/Help/CustomField.php:22
1634
  #: classes/Settings/Column/CustomFieldType.php:168
1635
  #: classes/Settings/Column/Image.php:71
1636
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1637
  msgid "Default"
1638
  msgstr "Padrão"
1639
 
@@ -1719,7 +1782,7 @@ msgstr "Aprovado"
1719
  msgid "Agent"
1720
  msgstr "Agente"
1721
 
1722
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1723
  msgid "Edit"
1724
  msgstr "Editar"
1725
 
@@ -1730,20 +1793,20 @@ msgstr "Editar"
1730
  msgid "ID"
1731
  msgstr "ID"
1732
 
1733
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1734
  #: classes/Settings/Column/ActionIcons.php:22
1735
  #: classes/Settings/Column/MissingImageSize.php:22
1736
  #: classes/Settings/Column/PostFormatIcon.php:24
1737
- #: classes/Settings/Column/StatusIcon.php:24
1738
  #: classes/Settings/Column/Toggle.php:14
1739
  msgid "No"
1740
  msgstr "Não"
1741
 
1742
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1743
  #: classes/Settings/Column/ActionIcons.php:21
1744
  #: classes/Settings/Column/MissingImageSize.php:21
1745
  #: classes/Settings/Column/PostFormatIcon.php:23
1746
- #: classes/Settings/Column/StatusIcon.php:23
1747
  #: classes/Settings/Column/Toggle.php:13
1748
  msgid "Yes"
1749
  msgstr "Sim"
@@ -1772,6 +1835,6 @@ msgstr "WooCommerce"
1772
  msgid "Advanced Custom Fields"
1773
  msgstr "Advanced Custom Fields"
1774
 
1775
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1776
  msgid "Plugins"
1777
  msgstr "Plugins"
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr "Formato de hora do WordPress"
252
  msgid "Alternative Text"
253
  msgstr "Texto alternativo"
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr "Visite a página %s."
258
 
309
  msgid "User Nicename"
310
  msgstr "Apelido do usuário"
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr "Me mande o desconto"
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr "Preços a partir de %s"
319
 
571
  msgid "Standard"
572
  msgstr "Padrão"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr "Caminho completo"
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr "Desconto válido até %s"
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr "Mostrar o botão de %s na tela da tabela."
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr "Padrão é %s."
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr "ligado"
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr "desligado"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr "Aviso"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "Instruções"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr "nossa documentação"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr "Este site está utilizando algumas ações ou filtros que foram alterados. Leia %s para resolvê-los."
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr "O plugin Admin Columns teve algumas alterações importantes na versão 4."
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] "O callback usado é %s."
622
  msgstr[1] "Os callbacks usados são %s"
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr "Ver documentação"
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr "A ação %s usada neste site está obsoleta desde %s."
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr "O filtro %s usado neste site está obsoleto desde %s."
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr "Ações obsoletas"
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr "Filtros obsoletos"
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr "Ajuda"
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr "Fechar"
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr "Limpar todas as colunas "
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr "Estou usando o Admin Columns para WordPress!"
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr "Seu nome"
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr "Seu Email"
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr "Mande seu e-mail e nós te enviaremos um desconto de %s."
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr "Ganhe %s de desconto!"
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr "Colunas extras para:"
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr "Edite o conteúdo da coluna diretamente"
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr "Pro"
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr "Você precisa de pelo menos uma coluna"
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr "Disponível"
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr "Recomendado"
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr "%s não pôde ser ativado."
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr "%s ativado com sucesso."
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr "O plugin %s foi desativado."
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr "Plugin %s ativado com sucesso."
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] "%s complemento requer o %s."
720
  msgstr[1] "%s complementos requerem o %s."
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr "aqui"
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr "Clique %s para ativar o plugin."
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr "Plugin %s instalado, mas não está ativo."
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr "O plugin %s é necessário para que o complemento funcione."
737
 
751
  msgid "Imported"
752
  msgstr "Importado"
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr "Saiba mais sobre a versão Pro"
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr "Configurações de importação &amp; exportação"
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr "Criar vários conjuntos de colunas"
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr "Adicionar colunas filtráveis"
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr "Adicionar colunas ordenáveis"
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr "Leve o Admin Columns para o próximo nível:"
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr "Atualize para"
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr "As colunas para %s são configuradas via PHP e, portanto, não podem ser editadas."
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr "Por favor visite a tela de %s para carregar todas as colunas disponíveis"
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr "Restaurar colunas"
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr "Configurações para %s restauradas com sucesso."
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr "Ver tela de %s"
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr "Resposta inválida."
805
 
815
  msgid "Link Label"
816
  msgstr "Rótulo do link"
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr "Você precisa do Admin Columns Pro."
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr "O complemento não existe."
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr "a página de complementos"
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr "Você sabia que o Admin Columns Pro tem um complemento de integração para o %s? Com a licença adequada do Admin Columns Pro, você pode realizar o download em %s!"
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Campos personalizados"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr "Personalize as colunas nas telas administrativas dos posts (e tipos personalizados), páginas, mídia, comentários, links e usuários com uma interface arraste-e-solte fácil de usar."
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr "https://www.admincolumns.com"
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Editar colunas"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Atualizar"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr "Configurações para %s atualizado."
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Você está tentando armazenar as mesmas configurações para %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Nenhuma configuração de colunas disponível."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Usuários"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "Mídia"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr "Links"
888
 
890
  msgid "Comment"
891
  msgstr "Comentário"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "Comentários"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr "Obter este complemento"
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr "Baixar e instalar"
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Ativado"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "Instalado"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Desativar"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Ativar"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Adicionar coluna"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Arraste e solte para reordenar"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr "Para a documentação completa, relatos de erros, sugestões de recursos e outras dicas <a href='%s'>visite o site do Admin Columns</a>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Suporte"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr "Comprar a versão Pro"
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr "Twittar"
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "Avaliar"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr "Nós realmente adoraríamos se você pudesse mostrar seu apreço nos avaliando no WordPress.org ou twittando sobre o Admin Columns!"
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr "Uhuu! Estamos felizes em saber disto!"
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr "Forums"
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr "Docs"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr "Algum problema? Precisa de ajuda? Fale conosco!"
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr "Você está feliz com o Admin Columns?"
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr "Atenção! Os dados das colunas de %s serão excluídos. Isto não poderá ser desfeito. 'OK' para prosseguir, 'Cancelar' para desistir"
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Atualizar"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Armazenar configurações"
992
 
994
  msgid "Add-ons"
995
  msgstr "Complementos"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Configurações"
1000
 
1002
  msgid "Others"
1003
  msgstr "Outros"
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr "Atenção! Todos os dados salvos do administrador de colunas serão excluídos. Isto não poderá ser desfeito. 'OK' para prosseguir, 'Cancelar' para desistir"
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Restaurar configuração padrão"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Isto irá apagar todas as configurações de coluna e restaurar as configurações padrão."
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Restaurar Configurações"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Salvar"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Personalize as configurações do Admin Columns."
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Configurações gerais"
1128
  msgid "Overview"
1129
  msgstr "Visão geral"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "As configurações padrão foram restauradas."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "A coluna %s já está inclusa e não pode ser duplicada."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Configurações do Admin Columns"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr "%s desativado com sucesso."
1146
 
1188
  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."
1189
  msgstr "Nós não queremos lhe incomodar, mas você já está usando o %s há algum tempo, e nós queremos saber se você está feliz com o plugin. Caso esteja, poderia deixar uma avaliação no wordpress.org? Caso não esteja feliz com o %s, por favor %s."
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr "Admin Columns Pro"
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr "Escolha um tipo de coluna."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "Clonar"
1255
 
1269
  msgid "User Login"
1270
  msgstr "Login do usuário"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Sobrenome"
1275
 
1298
  msgstr "largura"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Personalizado"
1304
 
1335
  msgstr "Registrado"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Tipo de Post"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Apelido"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr "Nº de comentários"
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Remover"
1358
 
1400
  msgid "Permalink"
1401
  msgstr "Link permanente"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr "Caminho"
1406
 
1542
  msgid "Path scope"
1543
  msgstr "Escopo do caminho"
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr "Tamanho do arquivo"
1599
  msgid "Available Sizes"
1600
  msgstr "Tamanhos disponíveis"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Ver"
1605
 
1696
  #: classes/Admin/Help/CustomField.php:22
1697
  #: classes/Settings/Column/CustomFieldType.php:168
1698
  #: classes/Settings/Column/Image.php:71
1699
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1700
  msgid "Default"
1701
  msgstr "Padrão"
1702
 
1782
  msgid "Agent"
1783
  msgstr "Agente"
1784
 
1785
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1786
  msgid "Edit"
1787
  msgstr "Editar"
1788
 
1793
  msgid "ID"
1794
  msgstr "ID"
1795
 
1796
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1797
  #: classes/Settings/Column/ActionIcons.php:22
1798
  #: classes/Settings/Column/MissingImageSize.php:22
1799
  #: classes/Settings/Column/PostFormatIcon.php:24
1800
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1801
  #: classes/Settings/Column/Toggle.php:14
1802
  msgid "No"
1803
  msgstr "Não"
1804
 
1805
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1806
  #: classes/Settings/Column/ActionIcons.php:21
1807
  #: classes/Settings/Column/MissingImageSize.php:21
1808
  #: classes/Settings/Column/PostFormatIcon.php:23
1809
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1810
  #: classes/Settings/Column/Toggle.php:13
1811
  msgid "Yes"
1812
  msgstr "Sim"
1835
  msgid "Advanced Custom Fields"
1836
  msgstr "Advanced Custom Fields"
1837
 
1838
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1839
  msgid "Plugins"
1840
  msgstr "Plugins"
languages/codepress-admin-columns-da_DK.mo CHANGED
Binary file
languages/codepress-admin-columns-da_DK.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: da_DK\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr ""
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr ""
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Brugerdefineret felter"
773
 
@@ -779,22 +843,28 @@ msgstr ""
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Rediger kolonner"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr ""
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Du forsøger at gemme samme indstillinger for %s."
800
 
@@ -802,17 +872,17 @@ msgstr "Du forsøger at gemme samme indstillinger for %s."
802
  msgid "No columns settings available."
803
  msgstr "Ingen kolonneindstillinger tilgængelige."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Brugere"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr ""
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr ""
818
 
@@ -820,103 +890,103 @@ msgstr ""
820
  msgid "Comment"
821
  msgstr "Kommentar"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr ""
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr ""
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr ""
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Aktivér"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr ""
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr ""
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr ""
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Tilføj kolonne"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Træk og slip for at ændre rækkefølgen"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Hjælp"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr ""
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr ""
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr ""
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr ""
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr ""
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr ""
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Opdatér"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Gem indstillinger"
922
 
@@ -924,7 +994,7 @@ msgstr "Gem indstillinger"
924
  msgid "Add-ons"
925
  msgstr ""
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Indstillinger"
930
 
@@ -932,32 +1002,32 @@ msgstr "Indstillinger"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Gendan standard indstillinger"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Gendan indstillinger"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr ""
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Tilpas din Admin Columns indstillinger."
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Generelle indstillinger"
@@ -1058,19 +1128,19 @@ msgstr "Dette plugin er til at tilføje og fjerne tillægskolonner på administr
1058
  msgid "Overview"
1059
  msgstr "Overblik"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Standard indstillinger gendannet med success."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Admin Kolonne Indstillinger"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr ""
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr ""
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Navn"
1178
  msgid "Choose a column type."
1179
  msgstr "Vælg en kolonne type."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr ""
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Bruger e-mail"
1198
  msgid "User Login"
1199
  msgstr "Brugerlogin"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Efternavn"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "bredde"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Brugerdefineret"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Registreret"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Indholdstype"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Antal indlæg"
1276
  msgid "Nickname"
1277
  msgstr "Kaldenavn"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Efternavn"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Fjern"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr ""
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr ""
1339
 
@@ -1475,10 +1542,6 @@ msgstr ""
1475
  msgid "Path scope"
1476
  msgstr ""
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Fuld sti"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr "Titeltekst"
1536
  msgid "Available Sizes"
1537
  msgstr "Tilgængelige størrelser"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Vis"
1542
 
@@ -1631,7 +1694,7 @@ msgstr "Farve"
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "Standard"
1637
 
@@ -1717,7 +1780,7 @@ msgstr "Godkendt"
1717
  msgid "Agent"
1718
  msgstr "Agent"
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "Rediger"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "Rediger"
1728
  msgid "ID"
1729
  msgstr "ID"
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "Nej"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "Ja"
@@ -1770,6 +1833,6 @@ msgstr ""
1770
  msgid "Advanced Custom Fields"
1771
  msgstr ""
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr ""
11
  "Language: da_DK\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr ""
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Brugerdefineret felter"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Rediger kolonner"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Opgrader"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr ""
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Du forsøger at gemme samme indstillinger for %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Ingen kolonneindstillinger tilgængelige."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Brugere"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr ""
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr ""
888
 
890
  msgid "Comment"
891
  msgstr "Kommentar"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr ""
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr ""
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr ""
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Aktivér"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr ""
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr ""
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr ""
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Tilføj kolonne"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Træk og slip for at ændre rækkefølgen"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Hjælp"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr ""
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr ""
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr ""
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr ""
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr ""
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr ""
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Opdatér"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Gem indstillinger"
992
 
994
  msgid "Add-ons"
995
  msgstr ""
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Indstillinger"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Gendan standard indstillinger"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Gendan indstillinger"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr ""
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Tilpas din Admin Columns indstillinger."
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Generelle indstillinger"
1128
  msgid "Overview"
1129
  msgstr "Overblik"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Standard indstillinger gendannet med success."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Admin Kolonne Indstillinger"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr ""
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr "Vælg en kolonne type."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr ""
1255
 
1269
  msgid "User Login"
1270
  msgstr "Brugerlogin"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Efternavn"
1275
 
1298
  msgstr "bredde"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Brugerdefineret"
1304
 
1335
  msgstr "Registreret"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Indholdstype"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Kaldenavn"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Fjern"
1358
 
1400
  msgid "Permalink"
1401
  msgstr ""
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr ""
1406
 
1542
  msgid "Path scope"
1543
  msgstr ""
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr "Tilgængelige størrelser"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Vis"
1605
 
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "Standard"
1700
 
1780
  msgid "Agent"
1781
  msgstr "Agent"
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "Rediger"
1786
 
1791
  msgid "ID"
1792
  msgstr "ID"
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "Nej"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "Ja"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr ""
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr ""
languages/codepress-admin-columns-de_DE.mo CHANGED
Binary file
languages/codepress-admin-columns-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-03-12 18:45:19+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -239,15 +307,15 @@ msgstr ""
239
 
240
  #: classes/Settings/Column/User.php:71
241
  msgid "User Nicename"
242
- msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
- msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
- msgstr ""
251
 
252
  #: classes/Admin/Addon/BuddyPress.php:17
253
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
@@ -275,7 +343,7 @@ msgstr ""
275
 
276
  #: classes/TableScreen.php:40
277
  msgid "Invalid item ID."
278
- msgstr ""
279
 
280
  #: classes/Settings/Column/WordsPerMinute.php:32
281
  msgid "By default: %s"
@@ -283,7 +351,7 @@ msgstr ""
283
 
284
  #: classes/Settings/Column/WordLimit.php:34
285
  msgid "Maximum number of words"
286
- msgstr ""
287
 
288
  #: classes/Settings/Column/StringLimit.php:36
289
  #: classes/Settings/Column/WordLimit.php:33
@@ -342,7 +410,7 @@ msgstr "Individuelle Größe"
342
 
343
  #: classes/Settings/Column/Image.php:108
344
  msgid "Full Size"
345
- msgstr ""
346
 
347
  #: classes/Settings/Column/Image.php:54
348
  msgid "Image Size"
@@ -358,7 +426,7 @@ msgstr "Breite in Pixeln"
358
 
359
  #: classes/Settings/Column/Date.php:78
360
  msgid "in %s"
361
- msgstr ""
362
 
363
  #: classes/Settings/Column/Date.php:75
364
  msgid "%s ago"
@@ -374,7 +442,7 @@ msgstr ""
374
 
375
  #: classes/Settings/Column/DateTimeFormat.php:107
376
  msgid "Custom:"
377
- msgstr ""
378
 
379
  #: classes/Settings/Column/DateTimeFormat.php:39
380
  msgid "The %s can be changed in %s."
@@ -398,7 +466,7 @@ msgstr ""
398
 
399
  #: classes/Settings/Column/Date.php:17
400
  msgid "Time Difference"
401
- msgstr ""
402
 
403
  #: classes/Settings/Column/CustomFieldType.php:152
404
  msgid "Multiple"
@@ -452,11 +520,11 @@ msgstr "Feld"
452
  #: classes/Settings/Column/NumberOfItems.php:30
453
  #: classes/Settings/Column/WordLimit.php:34
454
  msgid "Leave empty for no limit"
455
- msgstr ""
456
 
457
  #: classes/Settings/Column/CharacterLimit.php:28
458
  msgid "Maximum number of characters"
459
- msgstr ""
460
 
461
  #: classes/Settings/Column/CharacterLimit.php:27
462
  #: classes/Settings/Column/StringLimit.php:35
@@ -469,7 +537,7 @@ msgstr ""
469
 
470
  #: classes/Settings/Column/BeforeAfter.php:68
471
  msgid "This text will appear after the column value."
472
- msgstr ""
473
 
474
  #: classes/Helper/String.php:292
475
  msgid " or "
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr "Standard"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr "Gesamter Pfad"
509
 
@@ -511,159 +579,159 @@ msgstr "Gesamter Pfad"
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr "an"
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr "aus"
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
- msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
- msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
- msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr ""
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr ""
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Benutzerdefinierte Felder"
773
 
@@ -779,22 +843,28 @@ msgstr ""
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Bearbeite Spalten"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr ""
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr ""
800
 
@@ -802,17 +872,17 @@ msgstr ""
802
  msgid "No columns settings available."
803
  msgstr ""
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Benutzer"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "Media"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr ""
818
 
@@ -820,103 +890,103 @@ msgstr ""
820
  msgid "Comment"
821
  msgstr ""
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr ""
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr ""
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr ""
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Aktivieren"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr ""
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Deaktivieren"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Aktiv"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr ""
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr ""
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr ""
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr ""
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Support"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr ""
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr ""
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr ""
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr ""
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr ""
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr ""
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Aktualisieren"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr ""
922
 
@@ -924,40 +994,40 @@ msgstr ""
924
  msgid "Add-ons"
925
  msgstr ""
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Einstellungen"
930
 
931
  #: classes/Settings/Column/Image.php:89
932
  msgid "Others"
933
- msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Standardeinstellungen wiederherstellen"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr ""
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr ""
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Speichern"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr ""
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Haupteinstellungen"
@@ -1058,19 +1128,19 @@ msgstr ""
1058
  msgid "Overview"
1059
  msgstr "Überblick"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr ""
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr ""
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr ""
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr ""
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr ""
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Name"
1178
  msgid "Choose a column type."
1179
  msgstr ""
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "Duplizieren"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "user_email geändert."
1198
  msgid "User Login"
1199
  msgstr "Benutzeranmeldung"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Nachname"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr ""
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Benutzerdefiniert"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Angemeldet am"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr ""
1270
 
@@ -1276,16 +1347,12 @@ msgstr ""
1276
  msgid "Nickname"
1277
  msgstr "Spitzname"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr ""
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Entfernen"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr "Direktlink"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr ""
1339
 
@@ -1475,10 +1542,6 @@ msgstr ""
1475
  msgid "Path scope"
1476
  msgstr ""
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr ""
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr "Bildunterschrift"
1536
  msgid "Available Sizes"
1537
  msgstr ""
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Ansehen"
1542
 
@@ -1631,7 +1694,7 @@ msgstr ""
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "Standard"
1637
 
@@ -1717,7 +1780,7 @@ msgstr ""
1717
  msgid "Agent"
1718
  msgstr "makler"
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "Bearbeiten"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "Bearbeiten"
1728
  msgid "ID"
1729
  msgstr ""
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "Nein"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "Ja"
@@ -1770,6 +1833,6 @@ msgstr ""
1770
  msgid "Advanced Custom Fields"
1771
  msgstr ""
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr "Plugins"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-05-29 13:55:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
307
 
308
  #: classes/Settings/Column/User.php:71
309
  msgid "User Nicename"
310
+ msgstr "Ausgeschriebener Name"
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
+ msgstr "Sende mir einen Rabatt"
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
+ msgstr "Preise starten bei %s"
319
 
320
  #: classes/Admin/Addon/BuddyPress.php:17
321
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
343
 
344
  #: classes/TableScreen.php:40
345
  msgid "Invalid item ID."
346
+ msgstr "Ungültige Eintrags-ID."
347
 
348
  #: classes/Settings/Column/WordsPerMinute.php:32
349
  msgid "By default: %s"
351
 
352
  #: classes/Settings/Column/WordLimit.php:34
353
  msgid "Maximum number of words"
354
+ msgstr "Maximale Anzahl an Wörtern"
355
 
356
  #: classes/Settings/Column/StringLimit.php:36
357
  #: classes/Settings/Column/WordLimit.php:33
410
 
411
  #: classes/Settings/Column/Image.php:108
412
  msgid "Full Size"
413
+ msgstr "Volle Größe"
414
 
415
  #: classes/Settings/Column/Image.php:54
416
  msgid "Image Size"
426
 
427
  #: classes/Settings/Column/Date.php:78
428
  msgid "in %s"
429
+ msgstr "in %s"
430
 
431
  #: classes/Settings/Column/Date.php:75
432
  msgid "%s ago"
442
 
443
  #: classes/Settings/Column/DateTimeFormat.php:107
444
  msgid "Custom:"
445
+ msgstr "Individuell:"
446
 
447
  #: classes/Settings/Column/DateTimeFormat.php:39
448
  msgid "The %s can be changed in %s."
466
 
467
  #: classes/Settings/Column/Date.php:17
468
  msgid "Time Difference"
469
+ msgstr "Zeitunterschied"
470
 
471
  #: classes/Settings/Column/CustomFieldType.php:152
472
  msgid "Multiple"
520
  #: classes/Settings/Column/NumberOfItems.php:30
521
  #: classes/Settings/Column/WordLimit.php:34
522
  msgid "Leave empty for no limit"
523
+ msgstr "Leer lassen für unlimitiert"
524
 
525
  #: classes/Settings/Column/CharacterLimit.php:28
526
  msgid "Maximum number of characters"
527
+ msgstr "Maximale Zeichen-Anzahl"
528
 
529
  #: classes/Settings/Column/CharacterLimit.php:27
530
  #: classes/Settings/Column/StringLimit.php:35
537
 
538
  #: classes/Settings/Column/BeforeAfter.php:68
539
  msgid "This text will appear after the column value."
540
+ msgstr "Dieser Text wird hinter dem Spaltenwert angezeigt."
541
 
542
  #: classes/Helper/String.php:292
543
  msgid " or "
571
  msgid "Standard"
572
  msgstr "Standard"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr "Gesamter Pfad"
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr "an"
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr "aus"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
+ msgstr "Notiz"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
+ msgstr "Anweisungen"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
+ msgstr "unsere Dokumentation"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr ""
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Benutzerdefinierte Felder"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Bearbeite Spalten"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Aktualisierung"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr ""
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr ""
870
 
872
  msgid "No columns settings available."
873
  msgstr ""
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Benutzer"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "Media"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr ""
888
 
890
  msgid "Comment"
891
  msgstr ""
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr ""
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr ""
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr ""
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Aktivieren"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr ""
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Deaktivieren"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Aktiv"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr ""
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr ""
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr ""
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr ""
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Support"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr ""
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr ""
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr ""
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr ""
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr ""
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr ""
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Aktualisieren"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr ""
992
 
994
  msgid "Add-ons"
995
  msgstr ""
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Einstellungen"
1000
 
1001
  #: classes/Settings/Column/Image.php:89
1002
  msgid "Others"
1003
+ msgstr "Andere"
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Standardeinstellungen wiederherstellen"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr ""
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr ""
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Speichern"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr ""
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Haupteinstellungen"
1128
  msgid "Overview"
1129
  msgstr "Überblick"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr ""
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr ""
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr ""
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr ""
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr ""
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "Duplizieren"
1255
 
1269
  msgid "User Login"
1270
  msgstr "Benutzeranmeldung"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Nachname"
1275
 
1298
  msgstr ""
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Benutzerdefiniert"
1304
 
1335
  msgstr "Angemeldet am"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr ""
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Spitzname"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Entfernen"
1358
 
1400
  msgid "Permalink"
1401
  msgstr "Direktlink"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr ""
1406
 
1542
  msgid "Path scope"
1543
  msgstr ""
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr ""
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Ansehen"
1605
 
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "Standard"
1700
 
1780
  msgid "Agent"
1781
  msgstr "makler"
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "Bearbeiten"
1786
 
1791
  msgid "ID"
1792
  msgstr ""
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "Nein"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "Ja"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr ""
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr "Plugins"
languages/codepress-admin-columns-en_NZ.mo CHANGED
Binary file
languages/codepress-admin-columns-en_NZ.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr ""
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr ""
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Custom Fields"
773
 
@@ -779,22 +843,28 @@ msgstr ""
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr ""
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr ""
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr ""
800
 
@@ -802,17 +872,17 @@ msgstr ""
802
  msgid "No columns settings available."
803
  msgstr ""
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Users"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "Media"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr "Links"
818
 
@@ -820,103 +890,103 @@ msgstr "Links"
820
  msgid "Comment"
821
  msgstr ""
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "Comments"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr ""
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr ""
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Activate"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr ""
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Deactivate"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Active"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr ""
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr ""
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr ""
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr ""
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Support"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr ""
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr ""
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "Rate"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr ""
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr ""
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr "Docs"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Update"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr ""
922
 
@@ -924,7 +994,7 @@ msgstr ""
924
  msgid "Add-ons"
925
  msgstr "Add-ons"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Settings"
930
 
@@ -932,32 +1002,32 @@ msgstr "Settings"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr ""
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr ""
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr ""
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Save"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr ""
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "General Settings"
@@ -1058,19 +1128,19 @@ msgstr ""
1058
  msgid "Overview"
1059
  msgstr ""
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr ""
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr ""
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr ""
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr ""
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr ""
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Name"
1178
  msgid "Choose a column type."
1179
  msgstr ""
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr ""
1184
 
@@ -1198,7 +1269,7 @@ msgstr ""
1198
  msgid "User Login"
1199
  msgstr ""
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Last Name"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr ""
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Custom"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr ""
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr ""
1270
 
@@ -1276,16 +1347,12 @@ msgstr ""
1276
  msgid "Nickname"
1277
  msgstr "Nickname"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Last Name"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Remove"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr ""
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr ""
1339
 
@@ -1475,10 +1542,6 @@ msgstr ""
1475
  msgid "Path scope"
1476
  msgstr ""
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr ""
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr ""
1536
  msgid "Available Sizes"
1537
  msgstr ""
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "View"
1542
 
@@ -1631,7 +1694,7 @@ msgstr ""
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "Standard"
1637
 
@@ -1717,7 +1780,7 @@ msgstr ""
1717
  msgid "Agent"
1718
  msgstr ""
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "Edit"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "Edit"
1728
  msgid "ID"
1729
  msgstr "ID"
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "No"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "Yes"
@@ -1770,6 +1833,6 @@ msgstr "WooCommerce"
1770
  msgid "Advanced Custom Fields"
1771
  msgstr ""
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr ""
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr ""
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Custom Fields"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr ""
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr ""
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr ""
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr ""
870
 
872
  msgid "No columns settings available."
873
  msgstr ""
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Users"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "Media"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr "Links"
888
 
890
  msgid "Comment"
891
  msgstr ""
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "Comments"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr ""
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr ""
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Activate"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr ""
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Deactivate"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Active"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr ""
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr ""
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr ""
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr ""
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Support"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr ""
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr ""
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "Rate"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr ""
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr ""
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr "Docs"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Update"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr ""
992
 
994
  msgid "Add-ons"
995
  msgstr "Add-ons"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Settings"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr ""
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr ""
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr ""
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Save"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr ""
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "General Settings"
1128
  msgid "Overview"
1129
  msgstr ""
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr ""
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr ""
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr ""
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr ""
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr ""
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr ""
1255
 
1269
  msgid "User Login"
1270
  msgstr ""
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Last Name"
1275
 
1298
  msgstr ""
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Custom"
1304
 
1335
  msgstr ""
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr ""
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Nickname"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Remove"
1358
 
1400
  msgid "Permalink"
1401
  msgstr ""
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr ""
1406
 
1542
  msgid "Path scope"
1543
  msgstr ""
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr ""
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "View"
1605
 
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "Standard"
1700
 
1780
  msgid "Agent"
1781
  msgstr ""
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "Edit"
1786
 
1791
  msgid "ID"
1792
  msgstr "ID"
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "No"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "Yes"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr ""
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr ""
languages/codepress-admin-columns-es_ES.mo CHANGED
Binary file
languages/codepress-admin-columns-es_ES.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr ""
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr ""
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Campo Personalizado"
773
 
@@ -779,22 +843,28 @@ msgstr ""
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Editar columnas"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr ""
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Está tratando de almacenar los mismos ajustes para %s."
800
 
@@ -802,17 +872,17 @@ msgstr "Está tratando de almacenar los mismos ajustes para %s."
802
  msgid "No columns settings available."
803
  msgstr "No hay ajustes de columnas disponibles."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Usuarios"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr ""
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr ""
818
 
@@ -820,103 +890,103 @@ msgstr ""
820
  msgid "Comment"
821
  msgstr "Comentar"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "Comentarios"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr "Obtener este add-on"
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr "Descargar e Instalar"
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Activar"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "Instalado"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Inactivo"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Activar"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Adicionar Columna"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Arrastre y suelte para reordenar"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  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>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Soporte"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr ""
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr ""
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "Cambio"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr ""
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr ""
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr ""
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr ""
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Almacenar ajustes"
922
 
@@ -924,7 +994,7 @@ msgstr "Almacenar ajustes"
924
  msgid "Add-ons"
925
  msgstr "Extensiones"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Configurar"
930
 
@@ -932,32 +1002,32 @@ msgstr "Configurar"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Restaurar ajustes por defecto"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Restaurar Ajustes"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Guardar"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Personalice sus ajustes de Admin Columns."
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Ajustes generales"
@@ -1058,19 +1128,19 @@ msgstr "Este plugin es para adicionar y borrar columnas adicionales a las pantal
1058
  msgid "Overview"
1059
  msgstr "Vista previa"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Ajustes por defecto restaurados satisfactoriamente."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "%s columna está ya presente y no puede ser duplicada."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Ajustes de Admin Columns"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr ""
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr ""
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Nom"
1178
  msgid "Choose a column type."
1179
  msgstr "Escoger un tipo de columna."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr ""
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Email de Usuario"
1198
  msgid "User Login"
1199
  msgstr "Nombre de Usuario"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Apellidos"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "ancho"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Personalizado"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Registrado"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Tipo de Post"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Cantidad de Post"
1276
  msgid "Nickname"
1277
  msgstr "Apodo"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Apellido"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Eliminar"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr "Permalink"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr ""
1339
 
@@ -1475,10 +1542,6 @@ msgstr ""
1475
  msgid "Path scope"
1476
  msgstr ""
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Camino completo"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr "Caption"
1536
  msgid "Available Sizes"
1537
  msgstr "Tamaños Disponibles"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Ver"
1542
 
@@ -1631,7 +1694,7 @@ msgstr "Color"
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "Por defecto"
1637
 
@@ -1717,7 +1780,7 @@ msgstr "Aprobado"
1717
  msgid "Agent"
1718
  msgstr "Agente"
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "Editar"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "Editar"
1728
  msgid "ID"
1729
  msgstr "ID"
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "No"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "Si"
@@ -1770,6 +1833,6 @@ msgstr ""
1770
  msgid "Advanced Custom Fields"
1771
  msgstr "Campos Personalizados Avanzados"
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr ""
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Campo Personalizado"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Editar columnas"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Actualizar"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr ""
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Está tratando de almacenar los mismos ajustes para %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "No hay ajustes de columnas disponibles."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Usuarios"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr ""
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr ""
888
 
890
  msgid "Comment"
891
  msgstr "Comentar"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "Comentarios"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr "Obtener este add-on"
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr "Descargar e Instalar"
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Activar"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "Instalado"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Inactivo"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Activar"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Adicionar Columna"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Arrastre y suelte para reordenar"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  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>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Soporte"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr ""
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr ""
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "Cambio"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr ""
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr ""
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr ""
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr ""
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Almacenar ajustes"
992
 
994
  msgid "Add-ons"
995
  msgstr "Extensiones"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Configurar"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Restaurar ajustes por defecto"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Restaurar Ajustes"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Guardar"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Personalice sus ajustes de Admin Columns."
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Ajustes generales"
1128
  msgid "Overview"
1129
  msgstr "Vista previa"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Ajustes por defecto restaurados satisfactoriamente."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "%s columna está ya presente y no puede ser duplicada."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Ajustes de Admin Columns"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr ""
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr "Escoger un tipo de columna."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr ""
1255
 
1269
  msgid "User Login"
1270
  msgstr "Nombre de Usuario"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Apellidos"
1275
 
1298
  msgstr "ancho"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Personalizado"
1304
 
1335
  msgstr "Registrado"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Tipo de Post"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Apodo"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Eliminar"
1358
 
1400
  msgid "Permalink"
1401
  msgstr "Permalink"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr ""
1406
 
1542
  msgid "Path scope"
1543
  msgstr ""
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr "Tamaños Disponibles"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Ver"
1605
 
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "Por defecto"
1700
 
1780
  msgid "Agent"
1781
  msgstr "Agente"
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "Editar"
1786
 
1791
  msgid "ID"
1792
  msgstr "ID"
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "No"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "Si"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr "Campos Personalizados Avanzados"
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr ""
languages/codepress-admin-columns-fa_IR.mo CHANGED
Binary file
languages/codepress-admin-columns-fa_IR.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: fa\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,157 +579,157 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
 
555
- #: classes/Admin/Page/Help.php:258
556
  msgid "View documentation"
557
  msgstr ""
558
 
559
- #: classes/Admin/Page/Help.php:203
560
  msgid "The action %s used on this website is deprecated since %s."
561
  msgstr ""
562
 
563
- #: classes/Admin/Page/Help.php:185
564
  msgid "The filter %s used on this website is deprecated since %s."
565
  msgstr ""
566
 
567
- #: classes/Admin/Page/Help.php:172
568
  msgid "Deprecated Actions"
569
  msgstr ""
570
 
571
- #: classes/Admin/Page/Help.php:171
572
  msgid "Deprecated Filters"
573
  msgstr ""
574
 
575
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
576
  msgid "Help"
577
  msgstr ""
578
 
579
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
580
  msgid "Close"
581
  msgstr ""
582
 
583
- #: classes/Admin/Page/Columns.php:741
584
  msgid "Clear all columns "
585
  msgstr ""
586
 
587
- #: classes/Admin/Page/Columns.php:648
588
  msgid "I'm using Admin Columns for WordPress!"
589
  msgstr ""
590
 
591
- #: classes/Admin/Page/Columns.php:590
592
  msgid "Your First Name"
593
  msgstr ""
594
 
595
- #: classes/Admin/Page/Columns.php:589
596
  msgid "Your Email"
597
  msgstr ""
598
 
599
- #: classes/Admin/Page/Columns.php:582
600
  msgid "Submit your email and we'll send you a discount for %s off."
601
  msgstr ""
602
 
603
- #: classes/Admin/Page/Columns.php:578
604
  msgid "Get %s Off!"
605
  msgstr ""
606
 
607
- #: classes/Admin/Page/Columns.php:545
608
  msgid "Extra Columns for:"
609
  msgstr ""
610
 
611
- #: classes/Admin/Page/Columns.php:531
612
  msgid "Edit your column content directly"
613
  msgstr ""
614
 
615
- #: classes/Admin/Page/Columns.php:519
616
  msgid "Pro"
617
  msgstr ""
618
 
619
- #: classes/Admin/Page/Columns.php:301
620
  msgid "You need at least one column"
621
  msgstr ""
622
 
623
- #: classes/Admin/Page/Addons.php:293
624
  msgid "Available"
625
  msgstr ""
626
 
627
- #: classes/Admin/Page/Addons.php:292
628
  msgid "Recommended"
629
  msgstr ""
630
 
631
- #: classes/Admin/Page/Addons.php:113
632
  msgid "%s could not be activated."
633
  msgstr ""
634
 
635
- #: classes/Admin/Page/Addons.php:103
636
  msgid "%s successfully activated."
637
  msgstr ""
638
 
639
- #: classes/Admin/Page/Addons.php:98
640
  msgid "%s plugin successfully deactivated."
641
  msgstr ""
642
 
643
- #: classes/Admin/Page/Addons.php:97
644
  msgid "%s plugin successfully activated."
645
  msgstr ""
646
 
647
- #: classes/Admin/Page/Addons.php:64
648
  msgid "%s add-on requires %s."
649
  msgid_plural "%s add-ons requires %s."
650
  msgstr[0] ""
651
 
652
- #: classes/Admin/Page/Addons.php:51
653
  msgid "here"
654
  msgstr ""
655
 
656
- #: classes/Admin/Page/Addons.php:51
657
  msgid "Click %s to activate the plugin."
658
  msgstr ""
659
 
660
- #: classes/Admin/Page/Addons.php:48
661
  msgid "%s plugin is installed, but not active."
662
  msgstr ""
663
 
664
- #: classes/Admin/Page/Addons.php:46
665
  msgid "%s plugin needs to be installed for the add-on to work."
666
  msgstr ""
667
 
@@ -681,59 +749,55 @@ msgstr ""
681
  msgid "Imported"
682
  msgstr ""
683
 
684
- #: classes/Admin/Page/Columns.php:561
685
  msgid "Learn more about Pro"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:533
689
  msgid "Import &amp; Export settings"
690
  msgstr ""
691
 
692
- #: classes/Admin/Page/Columns.php:532
693
  msgid "Create multiple columns sets"
694
  msgstr ""
695
 
696
- #: classes/Admin/Page/Columns.php:530
697
  msgid "Add filterable columns"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Columns.php:529
701
  msgid "Add sortable columns"
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Columns.php:524
705
  msgid "Take Admin Columns to the next level:"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:519
709
  msgid "Upgrade to"
710
  msgstr ""
711
 
712
- #: classes/Admin/Promo.php:134
713
- msgid "Get %s Off"
714
- msgstr ""
715
-
716
- #: classes/Admin/Page/Columns.php:431
717
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:221
721
  msgid "Please visit the %s screen once to load all available columns"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:500
725
  msgid "Restore columns"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:147
729
  msgid "Settings for %s restored successfully."
730
  msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:308
733
  msgid "View %s screen"
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:70
737
  msgid "Invalid response."
738
  msgstr ""
739
 
@@ -749,23 +813,23 @@ msgstr ""
749
  msgid "Link Label"
750
  msgstr ""
751
 
752
- #: classes/Admin/Page/Addons.php:220
753
  msgid "You need Admin Columns Pro."
754
  msgstr ""
755
 
756
- #: classes/Admin/Page/Addons.php:214
757
  msgid "Addon does not exist."
758
  msgstr ""
759
 
760
- #: classes/Admin/Page/Addons.php:176
761
  msgid "the addons page"
762
  msgstr ""
763
 
764
- #: classes/Admin/Page/Addons.php:176
765
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
766
  msgstr ""
767
 
768
- #: codepress-admin-columns.php:300
769
  msgid "Custom Fields"
770
  msgstr "فیلدهای اضافی"
771
 
@@ -777,22 +841,28 @@ msgstr ""
777
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
778
  msgstr ""
779
 
780
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
781
  #. Plugin URI of the plugin/theme
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Author URI of the plugin/theme
784
  msgid "https://www.admincolumns.com"
785
  msgstr ""
786
 
787
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
788
  msgid "Edit columns"
789
  msgstr "ویرایش ستون ها"
790
 
791
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
792
  msgid "Settings for %s updated successfully."
793
  msgstr ""
794
 
795
- #: classes/Admin/Page/Columns.php:315
796
  msgid "You are trying to store the same settings for %s."
797
  msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
798
 
@@ -800,17 +870,17 @@ msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
800
  msgid "No columns settings available."
801
  msgstr "هیچ تنظیمی برای ستونها موجود نیست."
802
 
803
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
804
  msgid "Users"
805
  msgstr ""
806
 
807
  #: classes/ListScreen/Media.php:16
808
  #: classes/Settings/Column/CustomFieldType.php:112
809
- #: codepress-admin-columns.php:432
810
  msgid "Media"
811
  msgstr ""
812
 
813
- #: codepress-admin-columns.php:434
814
  msgid "Links"
815
  msgstr ""
816
 
@@ -818,103 +888,103 @@ msgstr ""
818
  msgid "Comment"
819
  msgstr ""
820
 
821
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
822
  msgid "Comments"
823
  msgstr ""
824
 
825
- #: classes/Admin/Page/Addons.php:420
826
  msgid "Get this add-on"
827
  msgstr "دریافت این افزودنی"
828
 
829
- #: classes/Admin/Page/Addons.php:418
830
  msgid "Download & Install"
831
  msgstr "دانلود و نصب"
832
 
833
- #: classes/Admin/Page/Addons.php:412
834
  msgid "Activate"
835
  msgstr "فعال"
836
 
837
- #: classes/Admin/Page/Addons.php:291
838
  msgid "Installed"
839
  msgstr "نصب شده"
840
 
841
- #: classes/Admin/Page/Addons.php:408
842
  msgid "Deactivate"
843
  msgstr "غیرفعال"
844
 
845
- #: classes/Admin/Page/Addons.php:405
846
  msgid "Active"
847
  msgstr "فعال"
848
 
849
- #: classes/Admin/Page/Columns.php:747
850
  msgid "Add Column"
851
  msgstr "ستون جدید"
852
 
853
- #: classes/Admin/Page/Columns.php:727
854
  msgid "Drag and drop to reorder"
855
  msgstr "برای مرتب سازی بگیرید و بکشید"
856
 
857
- #: classes/Admin/Page/Columns.php:676
858
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
859
  msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
860
 
861
- #: classes/Admin/Page/Columns.php:672
862
  msgid "Check the <strong>Help</strong> section in the top-right screen."
863
  msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
864
 
865
- #: classes/Admin/Page/Columns.php:667
866
  msgid "Support"
867
  msgstr "پشتیبانی"
868
 
869
- #: classes/Admin/Page/Columns.php:655
870
  msgid "Buy Pro"
871
  msgstr ""
872
 
873
- #: classes/Admin/Page/Columns.php:649
874
  msgid "Tweet"
875
  msgstr ""
876
 
877
- #: classes/Admin/Page/Columns.php:643
878
  msgid "Rate"
879
  msgstr ""
880
 
881
- #: classes/Admin/Page/Columns.php:638
882
  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!"
883
  msgstr ""
884
 
885
- #: classes/Admin/Page/Columns.php:635
886
  msgid "Woohoo! We're glad to hear that!"
887
  msgstr ""
888
 
889
- #: classes/Admin/Page/Columns.php:625
890
  msgid "Forums"
891
  msgstr ""
892
 
893
- #: classes/Admin/Page/Columns.php:620
894
  msgid "Docs"
895
  msgstr ""
896
 
897
- #: classes/Admin/Page/Columns.php:615
898
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
899
  msgstr ""
900
 
901
- #: classes/Admin/Page/Columns.php:612
902
  msgid "What's wrong? Need help? Let us know!"
903
  msgstr ""
904
 
905
- #: classes/Admin/Page/Columns.php:602
906
  msgid "Are you happy with Admin Columns?"
907
  msgstr ""
908
 
909
- #: classes/Admin/Page/Columns.php:499
910
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
911
  msgstr ""
912
 
913
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
914
  msgid "Update"
915
  msgstr ""
916
 
917
- #: classes/Admin/Page/Columns.php:477
918
  msgid "Store settings"
919
  msgstr "ذخیره تنظیمات"
920
 
@@ -922,7 +992,7 @@ msgstr "ذخیره تنظیمات"
922
  msgid "Add-ons"
923
  msgstr "افزودنی ها"
924
 
925
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
926
  msgid "Settings"
927
  msgstr "تنظیمات"
928
 
@@ -930,32 +1000,32 @@ msgstr "تنظیمات"
930
  msgid "Others"
931
  msgstr ""
932
 
933
- #: classes/Admin/Page/Settings.php:229
934
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
935
  msgstr ""
936
 
937
- #: classes/Admin/Page/Settings.php:229
938
  msgid "Restore default settings"
939
  msgstr "بازسازی تنظیمات پیش فرض"
940
 
941
- #: classes/Admin/Page/Settings.php:221
942
  msgid "This will delete all column settings and restore the default settings."
943
  msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
944
 
945
- #: classes/Admin/Page/Settings.php:220
946
  msgid "Restore Settings"
947
  msgstr "بازنشانی تنظیمات"
948
 
949
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
950
- #: classes/Admin/Page/Settings.php:179
951
  msgid "Save"
952
  msgstr ""
953
 
954
- #: classes/Admin/Page/Settings.php:161
955
  msgid "Customize your Admin Columns settings."
956
  msgstr "دلخواه سازی تنظیمات افزونه"
957
 
958
- #: classes/Admin/Page/Settings.php:160
959
  #: classes/Settings/Column/DateTimeFormat.php:39
960
  msgid "General Settings"
961
  msgstr "تنظیمات عمومی"
@@ -1056,19 +1126,19 @@ msgstr "این افزونه برای ایجاد ستون های دلخواه و
1056
  msgid "Overview"
1057
  msgstr "مرورکلی"
1058
 
1059
- #: classes/Admin/Page/Settings.php:101
1060
  msgid "Default settings succesfully restored."
1061
  msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
1062
 
1063
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1064
  msgid "%s column is already present and can not be duplicated."
1065
  msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
1066
 
1067
- #: classes/Admin.php:127
1068
  msgid "Admin Columns Settings"
1069
  msgstr "تنظیمات ستون ها"
1070
 
1071
- #: classes/Admin/Page/Addons.php:104
1072
  msgid "%s successfully deactivated."
1073
  msgstr ""
1074
 
@@ -1116,13 +1186,14 @@ msgstr ""
1116
  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."
1117
  msgstr ""
1118
 
1119
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1120
  msgid "Admin Columns Pro"
1121
  msgstr ""
1122
 
1123
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1124
  #. Plugin Name of the plugin/theme
1125
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1126
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1127
  #: classes/Plugin/Updater.php:114
1128
  msgid "Admin Columns"
@@ -1176,7 +1247,7 @@ msgstr ""
1176
  msgid "Choose a column type."
1177
  msgstr "انتخاب نوع ستون"
1178
 
1179
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1180
  msgid "Clone"
1181
  msgstr ""
1182
 
@@ -1196,7 +1267,7 @@ msgstr "ایمیل کاربر"
1196
  msgid "User Login"
1197
  msgstr "نام کاربری"
1198
 
1199
- #: classes/Settings/Column/User.php:65
1200
  msgid "Last Name"
1201
  msgstr "نام خانوادگی"
1202
 
@@ -1225,7 +1296,7 @@ msgid "width"
1225
  msgstr "عرض"
1226
 
1227
  #: classes/Settings/Column/CustomFieldType.php:153
1228
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1229
  msgid "Custom"
1230
  msgstr "دلخواه"
1231
 
@@ -1262,7 +1333,7 @@ msgid "Registered"
1262
  msgstr "ثبت نام شده"
1263
 
1264
  #: classes/Settings/Column/CustomFieldType.php:80
1265
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1266
  msgid "Post Type"
1267
  msgstr "نوع نوشته"
1268
 
@@ -1274,16 +1345,12 @@ msgstr "تعداد نوشته"
1274
  msgid "Nickname"
1275
  msgstr "لغب"
1276
 
1277
- #: classes/Column/User/LastName.php:14
1278
- msgid "Last name"
1279
- msgstr "نام خانوادگی"
1280
-
1281
  #: classes/Column/Post/CommentCount.php:17
1282
  #: classes/Column/User/CommentCount.php:14
1283
  msgid "Comment Count"
1284
  msgstr ""
1285
 
1286
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1287
  msgid "Remove"
1288
  msgstr "حذف"
1289
 
@@ -1331,7 +1398,7 @@ msgstr ""
1331
  msgid "Permalink"
1332
  msgstr "پیوندیکتا"
1333
 
1334
- #: classes/Column/Post/Path.php:16
1335
  msgid "Path"
1336
  msgstr ""
1337
 
@@ -1471,10 +1538,6 @@ msgstr ""
1471
  msgid "Path scope"
1472
  msgstr ""
1473
 
1474
- #: classes/Settings/Column/PathScope.php:24
1475
- msgid "Full path"
1476
- msgstr "مسیر کامل"
1477
-
1478
  #: classes/Column/Media/FileSize.php:14
1479
  msgid "File Size"
1480
  msgstr ""
@@ -1532,7 +1595,7 @@ msgstr "عنوان"
1532
  msgid "Available Sizes"
1533
  msgstr "اندازه های موجود"
1534
 
1535
- #: classes/Admin/Page/Columns.php:463
1536
  msgid "View"
1537
  msgstr "نمایش"
1538
 
@@ -1627,7 +1690,7 @@ msgstr "رنگ"
1627
  #: classes/Admin/Help/CustomField.php:22
1628
  #: classes/Settings/Column/CustomFieldType.php:168
1629
  #: classes/Settings/Column/Image.php:71
1630
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1631
  msgid "Default"
1632
  msgstr "پیش فرض"
1633
 
@@ -1713,7 +1776,7 @@ msgstr "تایید شده"
1713
  msgid "Agent"
1714
  msgstr "مرورگر"
1715
 
1716
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1717
  msgid "Edit"
1718
  msgstr "ویرایش"
1719
 
@@ -1724,20 +1787,20 @@ msgstr "ویرایش"
1724
  msgid "ID"
1725
  msgstr "شناسه"
1726
 
1727
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1728
  #: classes/Settings/Column/ActionIcons.php:22
1729
  #: classes/Settings/Column/MissingImageSize.php:22
1730
  #: classes/Settings/Column/PostFormatIcon.php:24
1731
- #: classes/Settings/Column/StatusIcon.php:24
1732
  #: classes/Settings/Column/Toggle.php:14
1733
  msgid "No"
1734
  msgstr ""
1735
 
1736
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1737
  #: classes/Settings/Column/ActionIcons.php:21
1738
  #: classes/Settings/Column/MissingImageSize.php:21
1739
  #: classes/Settings/Column/PostFormatIcon.php:23
1740
- #: classes/Settings/Column/StatusIcon.php:23
1741
  #: classes/Settings/Column/Toggle.php:13
1742
  msgid "Yes"
1743
  msgstr "بله"
@@ -1766,6 +1829,6 @@ msgstr ""
1766
  msgid "Advanced Custom Fields"
1767
  msgstr "زمینه های دلخواه پیشرفته"
1768
 
1769
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1770
  msgid "Plugins"
1771
  msgstr ""
11
  "Language: fa\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
 
623
+ #: classes/Admin/Page/Help.php:263
624
  msgid "View documentation"
625
  msgstr ""
626
 
627
+ #: classes/Admin/Page/Help.php:208
628
  msgid "The action %s used on this website is deprecated since %s."
629
  msgstr ""
630
 
631
+ #: classes/Admin/Page/Help.php:190
632
  msgid "The filter %s used on this website is deprecated since %s."
633
  msgstr ""
634
 
635
+ #: classes/Admin/Page/Help.php:177
636
  msgid "Deprecated Actions"
637
  msgstr ""
638
 
639
+ #: classes/Admin/Page/Help.php:176
640
  msgid "Deprecated Filters"
641
  msgstr ""
642
 
643
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
644
  msgid "Help"
645
  msgstr ""
646
 
647
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
648
  msgid "Close"
649
  msgstr ""
650
 
651
+ #: classes/Admin/Page/Columns.php:744
652
  msgid "Clear all columns "
653
  msgstr ""
654
 
655
+ #: classes/Admin/Page/Columns.php:651
656
  msgid "I'm using Admin Columns for WordPress!"
657
  msgstr ""
658
 
659
+ #: classes/Admin/Page/Columns.php:593
660
  msgid "Your First Name"
661
  msgstr ""
662
 
663
+ #: classes/Admin/Page/Columns.php:592
664
  msgid "Your Email"
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:585
668
  msgid "Submit your email and we'll send you a discount for %s off."
669
  msgstr ""
670
 
671
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
672
  msgid "Get %s Off!"
673
  msgstr ""
674
 
675
+ #: classes/Admin/Page/Columns.php:548
676
  msgid "Extra Columns for:"
677
  msgstr ""
678
 
679
+ #: classes/Admin/Page/Columns.php:534
680
  msgid "Edit your column content directly"
681
  msgstr ""
682
 
683
+ #: classes/Admin/Page/Columns.php:522
684
  msgid "Pro"
685
  msgstr ""
686
 
687
+ #: classes/Admin/Page/Columns.php:304
688
  msgid "You need at least one column"
689
  msgstr ""
690
 
691
+ #: classes/Admin/Page/Addons.php:297
692
  msgid "Available"
693
  msgstr ""
694
 
695
+ #: classes/Admin/Page/Addons.php:296
696
  msgid "Recommended"
697
  msgstr ""
698
 
699
+ #: classes/Admin/Page/Addons.php:117
700
  msgid "%s could not be activated."
701
  msgstr ""
702
 
703
+ #: classes/Admin/Page/Addons.php:107
704
  msgid "%s successfully activated."
705
  msgstr ""
706
 
707
+ #: classes/Admin/Page/Addons.php:102
708
  msgid "%s plugin successfully deactivated."
709
  msgstr ""
710
 
711
+ #: classes/Admin/Page/Addons.php:101
712
  msgid "%s plugin successfully activated."
713
  msgstr ""
714
 
715
+ #: classes/Admin/Page/Addons.php:69
716
  msgid "%s add-on requires %s."
717
  msgid_plural "%s add-ons requires %s."
718
  msgstr[0] ""
719
 
720
+ #: classes/Admin/Page/Addons.php:56
721
  msgid "here"
722
  msgstr ""
723
 
724
+ #: classes/Admin/Page/Addons.php:56
725
  msgid "Click %s to activate the plugin."
726
  msgstr ""
727
 
728
+ #: classes/Admin/Page/Addons.php:53
729
  msgid "%s plugin is installed, but not active."
730
  msgstr ""
731
 
732
+ #: classes/Admin/Page/Addons.php:51
733
  msgid "%s plugin needs to be installed for the add-on to work."
734
  msgstr ""
735
 
749
  msgid "Imported"
750
  msgstr ""
751
 
752
+ #: classes/Admin/Page/Columns.php:564
753
  msgid "Learn more about Pro"
754
  msgstr ""
755
 
756
+ #: classes/Admin/Page/Columns.php:536
757
  msgid "Import &amp; Export settings"
758
  msgstr ""
759
 
760
+ #: classes/Admin/Page/Columns.php:535
761
  msgid "Create multiple columns sets"
762
  msgstr ""
763
 
764
+ #: classes/Admin/Page/Columns.php:533
765
  msgid "Add filterable columns"
766
  msgstr ""
767
 
768
+ #: classes/Admin/Page/Columns.php:532
769
  msgid "Add sortable columns"
770
  msgstr ""
771
 
772
+ #: classes/Admin/Page/Columns.php:527
773
  msgid "Take Admin Columns to the next level:"
774
  msgstr ""
775
 
776
+ #: classes/Admin/Page/Columns.php:522
777
  msgid "Upgrade to"
778
  msgstr ""
779
 
780
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
781
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
782
  msgstr ""
783
 
784
+ #: classes/Admin/Page/Columns.php:224
785
  msgid "Please visit the %s screen once to load all available columns"
786
  msgstr ""
787
 
788
+ #: classes/Admin/Page/Columns.php:503
789
  msgid "Restore columns"
790
  msgstr ""
791
 
792
+ #: classes/Admin/Page/Columns.php:150
793
  msgid "Settings for %s restored successfully."
794
  msgstr ""
795
 
796
+ #: classes/Admin/Page/Columns.php:311
797
  msgid "View %s screen"
798
  msgstr ""
799
 
800
+ #: classes/Admin/Page/Columns.php:73
801
  msgid "Invalid response."
802
  msgstr ""
803
 
813
  msgid "Link Label"
814
  msgstr ""
815
 
816
+ #: classes/Admin/Page/Addons.php:224
817
  msgid "You need Admin Columns Pro."
818
  msgstr ""
819
 
820
+ #: classes/Admin/Page/Addons.php:218
821
  msgid "Addon does not exist."
822
  msgstr ""
823
 
824
+ #: classes/Admin/Page/Addons.php:180
825
  msgid "the addons page"
826
  msgstr ""
827
 
828
+ #: classes/Admin/Page/Addons.php:180
829
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
830
  msgstr ""
831
 
832
+ #: codepress-admin-columns.php:325
833
  msgid "Custom Fields"
834
  msgstr "فیلدهای اضافی"
835
 
841
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
842
  msgstr ""
843
 
844
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
845
+ #. #-#-#-#-#
846
  #. Plugin URI of the plugin/theme
847
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
848
+ #. #-#-#-#-#
849
  #. Author URI of the plugin/theme
850
  msgid "https://www.admincolumns.com"
851
  msgstr ""
852
 
853
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
854
  msgid "Edit columns"
855
  msgstr "ویرایش ستون ها"
856
 
857
+ #: classes/Admin/Page/Columns.php:940
858
+ msgid "Upgrade"
859
+ msgstr "به روزرسانی"
860
+
861
+ #: classes/Admin/Page/Columns.php:331
862
  msgid "Settings for %s updated successfully."
863
  msgstr ""
864
 
865
+ #: classes/Admin/Page/Columns.php:318
866
  msgid "You are trying to store the same settings for %s."
867
  msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
868
 
870
  msgid "No columns settings available."
871
  msgstr "هیچ تنظیمی برای ستونها موجود نیست."
872
 
873
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
874
  msgid "Users"
875
  msgstr ""
876
 
877
  #: classes/ListScreen/Media.php:16
878
  #: classes/Settings/Column/CustomFieldType.php:112
879
+ #: codepress-admin-columns.php:457
880
  msgid "Media"
881
  msgstr ""
882
 
883
+ #: codepress-admin-columns.php:459
884
  msgid "Links"
885
  msgstr ""
886
 
888
  msgid "Comment"
889
  msgstr ""
890
 
891
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
892
  msgid "Comments"
893
  msgstr ""
894
 
895
+ #: classes/Admin/Page/Addons.php:424
896
  msgid "Get this add-on"
897
  msgstr "دریافت این افزودنی"
898
 
899
+ #: classes/Admin/Page/Addons.php:422
900
  msgid "Download & Install"
901
  msgstr "دانلود و نصب"
902
 
903
+ #: classes/Admin/Page/Addons.php:416
904
  msgid "Activate"
905
  msgstr "فعال"
906
 
907
+ #: classes/Admin/Page/Addons.php:295
908
  msgid "Installed"
909
  msgstr "نصب شده"
910
 
911
+ #: classes/Admin/Page/Addons.php:412
912
  msgid "Deactivate"
913
  msgstr "غیرفعال"
914
 
915
+ #: classes/Admin/Page/Addons.php:409
916
  msgid "Active"
917
  msgstr "فعال"
918
 
919
+ #: classes/Admin/Page/Columns.php:750
920
  msgid "Add Column"
921
  msgstr "ستون جدید"
922
 
923
+ #: classes/Admin/Page/Columns.php:730
924
  msgid "Drag and drop to reorder"
925
  msgstr "برای مرتب سازی بگیرید و بکشید"
926
 
927
+ #: classes/Admin/Page/Columns.php:679
928
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
929
  msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
930
 
931
+ #: classes/Admin/Page/Columns.php:675
932
  msgid "Check the <strong>Help</strong> section in the top-right screen."
933
  msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
934
 
935
+ #: classes/Admin/Page/Columns.php:670
936
  msgid "Support"
937
  msgstr "پشتیبانی"
938
 
939
+ #: classes/Admin/Page/Columns.php:658
940
  msgid "Buy Pro"
941
  msgstr ""
942
 
943
+ #: classes/Admin/Page/Columns.php:652
944
  msgid "Tweet"
945
  msgstr ""
946
 
947
+ #: classes/Admin/Page/Columns.php:646
948
  msgid "Rate"
949
  msgstr ""
950
 
951
+ #: classes/Admin/Page/Columns.php:641
952
  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!"
953
  msgstr ""
954
 
955
+ #: classes/Admin/Page/Columns.php:638
956
  msgid "Woohoo! We're glad to hear that!"
957
  msgstr ""
958
 
959
+ #: classes/Admin/Page/Columns.php:628
960
  msgid "Forums"
961
  msgstr ""
962
 
963
+ #: classes/Admin/Page/Columns.php:623
964
  msgid "Docs"
965
  msgstr ""
966
 
967
+ #: classes/Admin/Page/Columns.php:618
968
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
969
  msgstr ""
970
 
971
+ #: classes/Admin/Page/Columns.php:615
972
  msgid "What's wrong? Need help? Let us know!"
973
  msgstr ""
974
 
975
+ #: classes/Admin/Page/Columns.php:605
976
  msgid "Are you happy with Admin Columns?"
977
  msgstr ""
978
 
979
+ #: classes/Admin/Page/Columns.php:502
980
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
981
  msgstr ""
982
 
983
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
984
  msgid "Update"
985
  msgstr ""
986
 
987
+ #: classes/Admin/Page/Columns.php:480
988
  msgid "Store settings"
989
  msgstr "ذخیره تنظیمات"
990
 
992
  msgid "Add-ons"
993
  msgstr "افزودنی ها"
994
 
995
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
996
  msgid "Settings"
997
  msgstr "تنظیمات"
998
 
1000
  msgid "Others"
1001
  msgstr ""
1002
 
1003
+ #: classes/Admin/Page/Settings.php:239
1004
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1005
  msgstr ""
1006
 
1007
+ #: classes/Admin/Page/Settings.php:239
1008
  msgid "Restore default settings"
1009
  msgstr "بازسازی تنظیمات پیش فرض"
1010
 
1011
+ #: classes/Admin/Page/Settings.php:231
1012
  msgid "This will delete all column settings and restore the default settings."
1013
  msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
1014
 
1015
+ #: classes/Admin/Page/Settings.php:230
1016
  msgid "Restore Settings"
1017
  msgstr "بازنشانی تنظیمات"
1018
 
1019
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1020
+ #: classes/Admin/Page/Settings.php:189
1021
  msgid "Save"
1022
  msgstr ""
1023
 
1024
+ #: classes/Admin/Page/Settings.php:171
1025
  msgid "Customize your Admin Columns settings."
1026
  msgstr "دلخواه سازی تنظیمات افزونه"
1027
 
1028
+ #: classes/Admin/Page/Settings.php:170
1029
  #: classes/Settings/Column/DateTimeFormat.php:39
1030
  msgid "General Settings"
1031
  msgstr "تنظیمات عمومی"
1126
  msgid "Overview"
1127
  msgstr "مرورکلی"
1128
 
1129
+ #: classes/Admin/Page/Settings.php:111
1130
  msgid "Default settings succesfully restored."
1131
  msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
1132
 
1133
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1134
  msgid "%s column is already present and can not be duplicated."
1135
  msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
1136
 
1137
+ #: classes/Admin.php:126
1138
  msgid "Admin Columns Settings"
1139
  msgstr "تنظیمات ستون ها"
1140
 
1141
+ #: classes/Admin/Page/Addons.php:108
1142
  msgid "%s successfully deactivated."
1143
  msgstr ""
1144
 
1186
  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."
1187
  msgstr ""
1188
 
1189
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1190
  msgid "Admin Columns Pro"
1191
  msgstr ""
1192
 
1193
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1194
+ #. #-#-#-#-#
1195
  #. Plugin Name of the plugin/theme
1196
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1197
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1198
  #: classes/Plugin/Updater.php:114
1199
  msgid "Admin Columns"
1247
  msgid "Choose a column type."
1248
  msgstr "انتخاب نوع ستون"
1249
 
1250
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1251
  msgid "Clone"
1252
  msgstr ""
1253
 
1267
  msgid "User Login"
1268
  msgstr "نام کاربری"
1269
 
1270
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1271
  msgid "Last Name"
1272
  msgstr "نام خانوادگی"
1273
 
1296
  msgstr "عرض"
1297
 
1298
  #: classes/Settings/Column/CustomFieldType.php:153
1299
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1300
  msgid "Custom"
1301
  msgstr "دلخواه"
1302
 
1333
  msgstr "ثبت نام شده"
1334
 
1335
  #: classes/Settings/Column/CustomFieldType.php:80
1336
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1337
  msgid "Post Type"
1338
  msgstr "نوع نوشته"
1339
 
1345
  msgid "Nickname"
1346
  msgstr "لغب"
1347
 
 
 
 
 
1348
  #: classes/Column/Post/CommentCount.php:17
1349
  #: classes/Column/User/CommentCount.php:14
1350
  msgid "Comment Count"
1351
  msgstr ""
1352
 
1353
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1354
  msgid "Remove"
1355
  msgstr "حذف"
1356
 
1398
  msgid "Permalink"
1399
  msgstr "پیوندیکتا"
1400
 
1401
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1402
  msgid "Path"
1403
  msgstr ""
1404
 
1538
  msgid "Path scope"
1539
  msgstr ""
1540
 
 
 
 
 
1541
  #: classes/Column/Media/FileSize.php:14
1542
  msgid "File Size"
1543
  msgstr ""
1595
  msgid "Available Sizes"
1596
  msgstr "اندازه های موجود"
1597
 
1598
+ #: classes/Admin/Page/Columns.php:466
1599
  msgid "View"
1600
  msgstr "نمایش"
1601
 
1690
  #: classes/Admin/Help/CustomField.php:22
1691
  #: classes/Settings/Column/CustomFieldType.php:168
1692
  #: classes/Settings/Column/Image.php:71
1693
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1694
  msgid "Default"
1695
  msgstr "پیش فرض"
1696
 
1776
  msgid "Agent"
1777
  msgstr "مرورگر"
1778
 
1779
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1780
  msgid "Edit"
1781
  msgstr "ویرایش"
1782
 
1787
  msgid "ID"
1788
  msgstr "شناسه"
1789
 
1790
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1791
  #: classes/Settings/Column/ActionIcons.php:22
1792
  #: classes/Settings/Column/MissingImageSize.php:22
1793
  #: classes/Settings/Column/PostFormatIcon.php:24
1794
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1795
  #: classes/Settings/Column/Toggle.php:14
1796
  msgid "No"
1797
  msgstr ""
1798
 
1799
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1800
  #: classes/Settings/Column/ActionIcons.php:21
1801
  #: classes/Settings/Column/MissingImageSize.php:21
1802
  #: classes/Settings/Column/PostFormatIcon.php:23
1803
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1804
  #: classes/Settings/Column/Toggle.php:13
1805
  msgid "Yes"
1806
  msgstr "بله"
1829
  msgid "Advanced Custom Fields"
1830
  msgstr "زمینه های دلخواه پیشرفته"
1831
 
1832
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1833
  msgid "Plugins"
1834
  msgstr ""
languages/codepress-admin-columns-fr_FR.mo CHANGED
Binary file
languages/codepress-admin-columns-fr_FR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-04-30 08:17:23+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr "Format de l’heure de WordPress"
@@ -184,7 +252,7 @@ msgstr "original"
184
  msgid "Alternative Text"
185
  msgstr "Texte alternatif"
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr "Veuillez visiter la page %s."
190
 
@@ -241,11 +309,11 @@ msgstr "L’extrait est manquant."
241
  msgid "User Nicename"
242
  msgstr "Nom utilisateur normalisé"
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr "Envoyez-moi la promotion"
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr "Les prix commencent à partir de %s"
251
 
@@ -394,7 +462,7 @@ msgstr "Par exemple : %s."
394
 
395
  #: classes/Settings/Column/Date.php:10
396
  msgid "The difference is returned in a human readable format."
397
- msgstr "La différence est renvoyée dans un format lisible par l'humain."
398
 
399
  #: classes/Settings/Column/Date.php:17
400
  msgid "Time Difference"
@@ -438,7 +506,7 @@ msgstr "Texte"
438
 
439
  #: classes/Settings/Column/CustomFieldType.php:70
440
  msgid "Multiple ids should be separated by a comma."
441
- msgstr "Les ids multiples devraient être séparés par une virgule."
442
 
443
  #: classes/Settings/Column/CustomFieldType.php:69
444
  msgid "Uses the id from a %s to display information about it."
@@ -503,7 +571,7 @@ msgstr ", "
503
  msgid "Standard"
504
  msgstr "Standard"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr "Chemin complet"
509
 
@@ -511,159 +579,159 @@ msgstr "Chemin complet"
511
  msgid "Discount is valid until %s"
512
  msgstr "La remise est valide jusqu’à %s"
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr "Afficher le bouton %s sur l’écran liste."
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr "La valeur par défaut est %s."
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr "oui"
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr "non"
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr "Avertissement"
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "Instructions"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr "notre documentation"
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr "Ce site utiliser des actions ou filtres qui ont été modifiés. Veuillez lire %s pour résoudre le problème."
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr "L’extension Admin Columns a subi quelques modifications majeures dans la version 4."
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] "La fonction de rappel utilisée est %s."
554
  msgstr[1] "Les fonctions de rappel utilisées sont %s."
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr "Voir la documentation"
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr "L’action %s utilisée sur ce site est obsolète depuis %s."
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr "Le filtre %s utilisé sur ce site web est obsolète depuis %s."
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr "Actions dépréciées"
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr "Filtres dépréciés"
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr "Aide"
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr "Fermer"
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr "Effacer toutes les colonnes"
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr "J’utilise Admin Columns pour WordPress !"
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr "Votre prénom"
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr "Votre e-mail"
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr "Envoyez nous votre e-mail et nous vous enverrons une remise de %s."
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr "Obtenez %s de réduction !"
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr "Colonnes supplémentaires :"
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr "Modifiez directement le contenu de votre colonne"
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr "version Pro"
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr "Vous avez besoin d’au moins une colonne"
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr "Disponible"
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr "Recommandé"
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr "%s ne peut pas être activé."
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr "%s bien activé."
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr "Extension %s bien désactivée."
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr "Extension %s bien activée."
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] "Le module %s nécessite %s."
652
  msgstr[1] "Les modules %s nécessitent %s."
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr "ici"
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr "Cliquez %s pour activer l’extension."
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr "L’extension %s est installé mais pas active."
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr "L’extension %s doit être installée pour que le module fonctionne."
669
 
@@ -683,59 +751,55 @@ msgstr "Pods"
683
  msgid "Imported"
684
  msgstr "Importé"
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr "En savoir plus sur la version Pro"
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr "Réglages d’import &amp; d’export"
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr "Créez plusieurs ensembles de colonnes"
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr "Ajouter des colonnes filtrables"
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr "Ajouter des colonnes triables"
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr "Passez Admin Columns au niveau supérieur :"
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr "Passez en"
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr "Obtenir %s de réduction"
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr "Les colonnes pour %s sont configurées via PHP et ne peuvent donc pas être modifiées."
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr "Veuillez visiter l’écran %s une première fois afin de charger toutes colonnes disponibles."
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr "Restaurer les colonnes"
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr "Les réglages pour %s ont bien été restaurés."
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr "Voir l’écran %s"
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr "Réponse non valide"
741
 
@@ -751,23 +815,23 @@ msgstr "Laisser vide pour afficher l’URL"
751
  msgid "Link Label"
752
  msgstr "Libellé du lien"
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr "Vous avez besoin d’Admin Columns Pro."
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr "Le module n’existe pas."
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr "la page des modules"
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr "Savez-vous qu’Admin Columns Pro possède un module d’intégration pour %s ? Avec la licence Admin Columns Pro correcte, vous pouvez les télécharger depuis %s !"
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Champs personnalisés"
773
 
@@ -779,22 +843,28 @@ msgstr "AdminColumns.com"
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr "Personnalisez les colonnes sur les écrans d’administration des articles, types de contenu, pages, médias, commentaires, liens et utilisateurs grâce à une interface glisser-déposer facile à utiliser."
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr "https://www.admincolumns.com"
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Modifier les colonnes"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr "Les réglages pour les %s ont bien été mis à jour."
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Vous essayez de conserver les mêmes réglages pour %s."
800
 
@@ -802,17 +872,17 @@ msgstr "Vous essayez de conserver les mêmes réglages pour %s."
802
  msgid "No columns settings available."
803
  msgstr "Aucun réglage de colonne disponible."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Utilisateurs"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "Média"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr "Liens"
818
 
@@ -820,103 +890,103 @@ msgstr "Liens"
820
  msgid "Comment"
821
  msgstr "Commentaire"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "Commentaires"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr "Obtenir ce module"
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr "Télécharger & Installer"
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Activer"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "Installé"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Désactiver"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Activé"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Ajouter une colonne"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Vous pouvez modifier l’ordre."
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr "Pour la documentation complète, les rapports de bug, les suggestions de fonctionnalités et autres astuces <a href='%s'>visitez le site web d’Admin Columns</a>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Consultez la section <strong>Aide</strong> en haut à droite de l’écran."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Support"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
- msgstr "Acheter la Pro"
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr "Tweet"
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "Taux"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr "Nous aimerions vraiment que vous puissiez montrer votre appréciation en nous donnant une note sur WordPress.org ou en twittant à propos d’Admin Columns !"
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr "Ouah ! Nous sommes heureux d’entendre ça !"
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr "Forums"
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr "Docs"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr "Consultez notre documentation complète ou vous pouvez ouvrir un sujet de support sur WordPress.org !"
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr "Qu’est-ce qui ne va pas ? Besoin d’aide ? Faites le nous savoir !"
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr "Êtes-vous satisfait d’Admin Columns ?"
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr "Attention ! Les données des colonnes %s vont être supprimées. Cela ne peut pas être annulé. « OK » pour supprimer, « Annuler » pour interrompre"
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Mettre à jour"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Enregistrer les réglages"
922
 
@@ -924,7 +994,7 @@ msgstr "Enregistrer les réglages"
924
  msgid "Add-ons"
925
  msgstr "Modules"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Réglages"
930
 
@@ -932,32 +1002,32 @@ msgstr "Réglages"
932
  msgid "Others"
933
  msgstr "Autres"
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr "Attention ! Toutes les données d’Admin Columns enregistrées seront supprimées. Cela ne peut pas être annulé. « OK » pour supprimer, « Annuler » pour arrêter"
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Restaurer les réglages par défaut"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Cela supprimera tous les réglages de colonnes et restaurera tous les réglages par défaut."
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Restaurer les réglages"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Enregistrer"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Personnalisez vos réglages Admin Columns."
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Réglages généraux"
@@ -1058,19 +1128,19 @@ msgstr "Cette extension permet d’ajouter ou supprimer des colonnes dans les é
1058
  msgid "Overview"
1059
  msgstr "Vue d’ensemble"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Les réglages par défaut ont été restaurés avec succès."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "La colonne %s est déjà présente et ne peut pas être dupliquée."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Réglages Admin Columns"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr "%s bien désactivé."
1076
 
@@ -1118,13 +1188,14 @@ msgstr "cliquez ici"
1118
  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."
1119
  msgstr "Nous ne voulons pas vous déranger mais vous utilisez %s depuis un moment maintenant et nous nous demandions si vous étiez satisfait de l’extension. Si c'est le cas, pourriez-vous laisser un avis sur wordpress.org s’il vous plaît ? Si vous n’êtes pas satisfait d’%s, veuillez %s."
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr "Admin Columns Pro"
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1140,7 +1211,7 @@ msgstr "Admin Columns Pro propose une intégration complète de %s vous permetta
1140
 
1141
  #: classes/Column/Placeholder.php:39
1142
  msgid "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>."
1143
- msgstr "Si vous avez une licence business ou developer, veuillez télécharger et installer votre module %s depuis <a href='%s'>l’onglet modules</a>."
1144
 
1145
  #: classes/Column/Placeholder.php:35
1146
  msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
@@ -1178,7 +1249,7 @@ msgstr "Nom"
1178
  msgid "Choose a column type."
1179
  msgstr "Choisissez le type de colonne."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "Cloner"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "E-mail utilisateur"
1198
  msgid "User Login"
1199
  msgstr "Identifiant utilisateur"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Nom"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "largeur"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Personnalisé"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Enregistré"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Type de contenu"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Nombre d’article"
1276
  msgid "Nickname"
1277
  msgstr "Pseudonyme"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Nom"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr "Nombre de commentaires"
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Supprimer"
1291
 
@@ -1307,7 +1374,7 @@ msgstr "Taxonomie"
1307
 
1308
  #: classes/Column/Post/Sticky.php:16
1309
  msgid "Sticky"
1310
- msgstr "Mise en avant"
1311
 
1312
  #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1313
  msgid "Status"
@@ -1315,7 +1382,7 @@ msgstr "État "
1315
 
1316
  #: classes/Column/Post/Slug.php:14 classes/Settings/Column/Term.php:28
1317
  msgid "Slug"
1318
- msgstr "Identifiant"
1319
 
1320
  #: classes/Column/Post/Shortcodes.php:16
1321
  msgid "Shortcodes"
@@ -1333,7 +1400,7 @@ msgstr "État du ping"
1333
  msgid "Permalink"
1334
  msgstr "Permalien"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr "Chemin"
1339
 
@@ -1475,10 +1542,6 @@ msgstr "Partie du fichier à afficher"
1475
  msgid "Path scope"
1476
  msgstr "Portée du chemin"
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Chemin d'accès complet"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr "Taille du fichier"
@@ -1494,7 +1557,7 @@ msgstr "Titre"
1494
 
1495
  #: classes/Settings/Column/ExifData.php:80
1496
  msgid "Shutter Speed"
1497
- msgstr "Vitesse d'obturation"
1498
 
1499
  #: classes/Settings/Column/ExifData.php:79
1500
  msgid "ISO"
@@ -1506,7 +1569,7 @@ msgstr "Distance focale"
1506
 
1507
  #: classes/Settings/Column/ExifData.php:76
1508
  msgid "Timestamp"
1509
- msgstr "Horodateur"
1510
 
1511
  #: classes/Settings/Column/ExifData.php:74
1512
  msgid "Camera"
@@ -1526,7 +1589,7 @@ msgstr "Données EXIF"
1526
 
1527
  #: classes/Column/Media/Dimensions.php:16
1528
  msgid "Dimensions"
1529
- msgstr "Dimensions"
1530
 
1531
  #: classes/Column/Media/Caption.php:14 classes/Settings/Column/ExifData.php:75
1532
  msgid "Caption"
@@ -1536,7 +1599,7 @@ msgstr "Légende"
1536
  msgid "Available Sizes"
1537
  msgstr "Tailles disponibles"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Afficher"
1542
 
@@ -1551,7 +1614,7 @@ msgstr "Cible"
1551
 
1552
  #: classes/Column/Link/Rss.php:14
1553
  msgid "Rss"
1554
- msgstr "Rss"
1555
 
1556
  #: classes/Column/Link/Owner.php:14
1557
  msgid "Owner"
@@ -1633,7 +1696,7 @@ msgstr "Couleur"
1633
  #: classes/Admin/Help/CustomField.php:22
1634
  #: classes/Settings/Column/CustomFieldType.php:168
1635
  #: classes/Settings/Column/Image.php:71
1636
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1637
  msgid "Default"
1638
  msgstr "Par défaut"
1639
 
@@ -1719,7 +1782,7 @@ msgstr "Approuvé"
1719
  msgid "Agent"
1720
  msgstr "Agent"
1721
 
1722
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1723
  msgid "Edit"
1724
  msgstr "Modifier"
1725
 
@@ -1730,20 +1793,20 @@ msgstr "Modifier"
1730
  msgid "ID"
1731
  msgstr "ID"
1732
 
1733
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1734
  #: classes/Settings/Column/ActionIcons.php:22
1735
  #: classes/Settings/Column/MissingImageSize.php:22
1736
  #: classes/Settings/Column/PostFormatIcon.php:24
1737
- #: classes/Settings/Column/StatusIcon.php:24
1738
  #: classes/Settings/Column/Toggle.php:14
1739
  msgid "No"
1740
  msgstr "Non"
1741
 
1742
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1743
  #: classes/Settings/Column/ActionIcons.php:21
1744
  #: classes/Settings/Column/MissingImageSize.php:21
1745
  #: classes/Settings/Column/PostFormatIcon.php:23
1746
- #: classes/Settings/Column/StatusIcon.php:23
1747
  #: classes/Settings/Column/Toggle.php:13
1748
  msgid "Yes"
1749
  msgstr "Oui"
@@ -1772,6 +1835,6 @@ msgstr "WooCommerce"
1772
  msgid "Advanced Custom Fields"
1773
  msgstr "Advanced Custom Fields"
1774
 
1775
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1776
  msgid "Plugins"
1777
  msgstr "Extensions"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-06-22 15:29:23+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr "Cela rendra la colonne triable."
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr "Tri"
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr "Cela rendra la colonne filtrable."
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr "Filtrage"
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr "Exportez vos données de colonnes au format CSV."
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr "Exportation"
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr "Modifiez votre contenu directement depuis la vue d’ensemble."
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr "Édition"
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr "Seulement %s pour 1 site"
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr "Obtenez des modules pour ACF, WooCommerce et beaucoup d‘autres"
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr "Créez plusieurs groupes de colonnes par vue d’ensemble"
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr "Exportez toutes les données de colonnes au format CSV"
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr "Modifiez directement votre contenu depuis la vue d’ensemble"
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr "Triez et filtrez sur tout votre contenu"
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr "Passez à la version PRO et amenez Admin Columns au niveau supérieur :"
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr "Aimez-vous Admin Columns ?"
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr "Sélectionner le type"
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr "Format de l’heure de WordPress"
252
  msgid "Alternative Text"
253
  msgstr "Texte alternatif"
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr "Veuillez visiter la page %s."
258
 
309
  msgid "User Nicename"
310
  msgstr "Nom utilisateur normalisé"
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr "Envoyez-moi la promotion"
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr "Les prix commencent à partir de %s"
319
 
462
 
463
  #: classes/Settings/Column/Date.php:10
464
  msgid "The difference is returned in a human readable format."
465
+ msgstr "La différence est renvoyée dans un format lisible par un humain."
466
 
467
  #: classes/Settings/Column/Date.php:17
468
  msgid "Time Difference"
506
 
507
  #: classes/Settings/Column/CustomFieldType.php:70
508
  msgid "Multiple ids should be separated by a comma."
509
+ msgstr "Vous pouvez entrer plusieurs ID en les séparant par une virgule."
510
 
511
  #: classes/Settings/Column/CustomFieldType.php:69
512
  msgid "Uses the id from a %s to display information about it."
571
  msgid "Standard"
572
  msgstr "Standard"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr "Chemin complet"
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr "La remise est valide jusqu’à %s"
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr "Afficher le bouton %s sur l’écran liste."
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr "La valeur par défaut est %s."
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr "oui"
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr "non"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr "Avertissement"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "Instructions"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr "notre documentation"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr "Ce site utiliser des actions ou filtres qui ont été modifiés. Veuillez lire %s pour résoudre le problème."
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr "L’extension Admin Columns a subi quelques modifications majeures dans la version 4."
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] "La fonction de rappel utilisée est %s."
622
  msgstr[1] "Les fonctions de rappel utilisées sont %s."
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr "Voir la documentation"
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr "L’action %s utilisée sur ce site est obsolète depuis %s."
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr "Le filtre %s utilisé sur ce site web est obsolète depuis %s."
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr "Actions dépréciées"
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr "Filtres dépréciés"
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr "Aide"
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr "Fermer"
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr "Effacer toutes les colonnes"
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr "J’utilise Admin Columns pour WordPress !"
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr "Votre prénom"
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr "Votre e-mail"
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr "Envoyez nous votre e-mail et nous vous enverrons une remise de %s."
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr "Obtenez %s de réduction !"
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr "Colonnes supplémentaires :"
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr "Modifiez directement le contenu de votre colonne"
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr "version Pro"
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr "Vous avez besoin d’au moins une colonne"
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr "Disponible"
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr "Recommandé"
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr "%s ne peut pas être activé."
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr "%s bien activé."
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr "Extension %s bien désactivée."
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr "Extension %s bien activée."
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] "Le module %s nécessite %s."
720
  msgstr[1] "Les modules %s nécessitent %s."
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr "ici"
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr "Cliquez %s pour activer l’extension."
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr "L’extension %s est installé mais pas active."
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr "L’extension %s doit être installée pour que le module fonctionne."
737
 
751
  msgid "Imported"
752
  msgstr "Importé"
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr "En savoir plus sur la version Pro"
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr "Réglages d’import &amp; d’export"
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr "Créez plusieurs ensembles de colonnes"
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr "Ajouter des colonnes filtrables"
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr "Ajouter des colonnes triables"
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr "Passez Admin Columns au niveau supérieur :"
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr "Passez en"
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr "Les colonnes pour %s sont configurées via PHP et ne peuvent donc pas être modifiées."
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr "Veuillez visiter l’écran %s une première fois afin de charger toutes colonnes disponibles."
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr "Restaurer les colonnes"
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr "Les réglages pour %s ont bien été restaurés."
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr "Voir l’écran %s"
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr "Réponse non valide"
805
 
815
  msgid "Link Label"
816
  msgstr "Libellé du lien"
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr "Vous avez besoin d’Admin Columns Pro."
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr "Le module n’existe pas."
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr "la page des modules"
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr "Savez-vous qu’Admin Columns Pro possède un module d’intégration pour %s ? Avec la licence Admin Columns Pro correcte, vous pouvez les télécharger depuis %s !"
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Champs personnalisés"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr "Personnalisez les colonnes sur les écrans d’administration des articles, types de contenu, pages, médias, commentaires, liens et utilisateurs grâce à une interface glisser-déposer facile à utiliser."
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr "https://www.admincolumns.com"
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Modifier les colonnes"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Mettre à niveau"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr "Les réglages pour les %s ont bien été mis à jour."
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Vous essayez de conserver les mêmes réglages pour %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Aucun réglage de colonne disponible."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Utilisateurs"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "Média"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr "Liens"
888
 
890
  msgid "Comment"
891
  msgstr "Commentaire"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "Commentaires"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr "Obtenir ce module"
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr "Télécharger & Installer"
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Activer"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "Installé"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Désactiver"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Activé"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Ajouter une colonne"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Vous pouvez modifier l’ordre."
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr "Pour la documentation complète, les rapports de bug, les suggestions de fonctionnalités et autres astuces <a href='%s'>visitez le site web d’Admin Columns</a>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Consultez la section <strong>Aide</strong> en haut à droite de l’écran."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Support"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
+ msgstr "Acheter la version Pro"
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr "Tweet"
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "Taux"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr "Nous aimerions vraiment que vous puissiez montrer votre appréciation en nous donnant une note sur WordPress.org ou en twittant à propos d’Admin Columns !"
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr "Ouah ! Nous sommes heureux d’entendre ça !"
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr "Forums"
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr "Docs"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr "Consultez notre documentation complète ou vous pouvez ouvrir un sujet de support sur WordPress.org !"
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr "Qu’est-ce qui ne va pas ? Besoin d’aide ? Faites le nous savoir !"
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr "Êtes-vous satisfait d’Admin Columns ?"
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr "Attention ! Les données des colonnes %s vont être supprimées. Cela ne peut pas être annulé. « OK » pour supprimer, « Annuler » pour interrompre"
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Mettre à jour"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Enregistrer les réglages"
992
 
994
  msgid "Add-ons"
995
  msgstr "Modules"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Réglages"
1000
 
1002
  msgid "Others"
1003
  msgstr "Autres"
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr "Attention ! Toutes les données d’Admin Columns enregistrées seront supprimées. Cela ne peut pas être annulé. « OK » pour supprimer, « Annuler » pour arrêter"
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Restaurer les réglages par défaut"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Cela supprimera tous les réglages de colonnes et restaurera tous les réglages par défaut."
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Restaurer les réglages"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Enregistrer"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Personnalisez vos réglages Admin Columns."
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Réglages généraux"
1128
  msgid "Overview"
1129
  msgstr "Vue d’ensemble"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Les réglages par défaut ont été restaurés avec succès."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "La colonne %s est déjà présente et ne peut pas être dupliquée."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Réglages Admin Columns"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr "%s bien désactivé."
1146
 
1188
  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."
1189
  msgstr "Nous ne voulons pas vous déranger mais vous utilisez %s depuis un moment maintenant et nous nous demandions si vous étiez satisfait de l’extension. Si c'est le cas, pourriez-vous laisser un avis sur wordpress.org s’il vous plaît ? Si vous n’êtes pas satisfait d’%s, veuillez %s."
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr "Admin Columns Pro"
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1211
 
1212
  #: classes/Column/Placeholder.php:39
1213
  msgid "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>."
1214
+ msgstr "Si vous avez une licence « business » ou « developer », veuillez télécharger et installer votre module %s depuis <a href='%s'>l’onglet modules</a>."
1215
 
1216
  #: classes/Column/Placeholder.php:35
1217
  msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
1249
  msgid "Choose a column type."
1250
  msgstr "Choisissez le type de colonne."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "Cloner"
1255
 
1269
  msgid "User Login"
1270
  msgstr "Identifiant utilisateur"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Nom"
1275
 
1298
  msgstr "largeur"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Personnalisé"
1304
 
1335
  msgstr "Enregistré"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Type de contenu"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Pseudonyme"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr "Nombre de commentaires"
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Supprimer"
1358
 
1374
 
1375
  #: classes/Column/Post/Sticky.php:16
1376
  msgid "Sticky"
1377
+ msgstr "Épinglé"
1378
 
1379
  #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1380
  msgid "Status"
1382
 
1383
  #: classes/Column/Post/Slug.php:14 classes/Settings/Column/Term.php:28
1384
  msgid "Slug"
1385
+ msgstr "Slug"
1386
 
1387
  #: classes/Column/Post/Shortcodes.php:16
1388
  msgid "Shortcodes"
1400
  msgid "Permalink"
1401
  msgstr "Permalien"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr "Chemin"
1406
 
1542
  msgid "Path scope"
1543
  msgstr "Portée du chemin"
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr "Taille du fichier"
1557
 
1558
  #: classes/Settings/Column/ExifData.php:80
1559
  msgid "Shutter Speed"
1560
+ msgstr "Vitesse dobturation"
1561
 
1562
  #: classes/Settings/Column/ExifData.php:79
1563
  msgid "ISO"
1569
 
1570
  #: classes/Settings/Column/ExifData.php:76
1571
  msgid "Timestamp"
1572
+ msgstr "Horodatage"
1573
 
1574
  #: classes/Settings/Column/ExifData.php:74
1575
  msgid "Camera"
1589
 
1590
  #: classes/Column/Media/Dimensions.php:16
1591
  msgid "Dimensions"
1592
+ msgstr "Taille"
1593
 
1594
  #: classes/Column/Media/Caption.php:14 classes/Settings/Column/ExifData.php:75
1595
  msgid "Caption"
1599
  msgid "Available Sizes"
1600
  msgstr "Tailles disponibles"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Afficher"
1605
 
1614
 
1615
  #: classes/Column/Link/Rss.php:14
1616
  msgid "Rss"
1617
+ msgstr "RSS"
1618
 
1619
  #: classes/Column/Link/Owner.php:14
1620
  msgid "Owner"
1696
  #: classes/Admin/Help/CustomField.php:22
1697
  #: classes/Settings/Column/CustomFieldType.php:168
1698
  #: classes/Settings/Column/Image.php:71
1699
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1700
  msgid "Default"
1701
  msgstr "Par défaut"
1702
 
1782
  msgid "Agent"
1783
  msgstr "Agent"
1784
 
1785
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1786
  msgid "Edit"
1787
  msgstr "Modifier"
1788
 
1793
  msgid "ID"
1794
  msgstr "ID"
1795
 
1796
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1797
  #: classes/Settings/Column/ActionIcons.php:22
1798
  #: classes/Settings/Column/MissingImageSize.php:22
1799
  #: classes/Settings/Column/PostFormatIcon.php:24
1800
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1801
  #: classes/Settings/Column/Toggle.php:14
1802
  msgid "No"
1803
  msgstr "Non"
1804
 
1805
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1806
  #: classes/Settings/Column/ActionIcons.php:21
1807
  #: classes/Settings/Column/MissingImageSize.php:21
1808
  #: classes/Settings/Column/PostFormatIcon.php:23
1809
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1810
  #: classes/Settings/Column/Toggle.php:13
1811
  msgid "Yes"
1812
  msgstr "Oui"
1835
  msgid "Advanced Custom Fields"
1836
  msgstr "Advanced Custom Fields"
1837
 
1838
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1839
  msgid "Plugins"
1840
  msgstr "Extensions"
languages/codepress-admin-columns-he_IL.mo CHANGED
Binary file
languages/codepress-admin-columns-he_IL.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: he_IL\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr "שדרג אל"
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr "הגדרות עבור %s שוחזרו בהצלחה."
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr "הצג מסך %s"
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr "תגיבה לא תקינה."
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr "עמוד ההרחבות"
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "שדות מיוחדים"
773
 
@@ -779,22 +843,28 @@ msgstr "AdminColumns.com"
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr "https://www.admincolumns.com"
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr ""
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr "הגדרות עבור %s עודכנו בהצלחה."
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr ""
800
 
@@ -802,17 +872,17 @@ msgstr ""
802
  msgid "No columns settings available."
803
  msgstr ""
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "משתמשים"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "מדיה"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr "קישורים"
818
 
@@ -820,103 +890,103 @@ msgstr "קישורים"
820
  msgid "Comment"
821
  msgstr "תגובות"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "תגובות"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr ""
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr ""
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "הפעלה"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "מותקן"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "כיבוי"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "פעיל"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "הוספת עמודה"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr ""
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr ""
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr ""
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "תמיכה"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr ""
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr "צייץ"
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "דרג"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr "וואוו! אנחנו שמחים לשמוע את זה."
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr "פורומים"
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr "תיעוד"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "עדכון"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "הגדרות חנות"
922
 
@@ -924,7 +994,7 @@ msgstr "הגדרות חנות"
924
  msgid "Add-ons"
925
  msgstr ""
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "הגדרות"
930
 
@@ -932,32 +1002,32 @@ msgstr "הגדרות"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "שיחזור הגדרות ברירת מחדל"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr ""
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "שיחזור הגדרות"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "שמירה"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr ""
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "הגדות כלליות"
@@ -1058,19 +1128,19 @@ msgstr ""
1058
  msgid "Overview"
1059
  msgstr "סקירה"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr ""
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr ""
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr ""
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr "לחץ כאן"
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr ""
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "שם"
1178
  msgid "Choose a column type."
1179
  msgstr ""
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "שכפל"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "אימייל משתמש"
1198
  msgid "User Login"
1199
  msgstr ""
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "שם משפחה"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "רוחב"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "מותאם"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "רשום"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr ""
1270
 
@@ -1276,16 +1347,12 @@ msgstr ""
1276
  msgid "Nickname"
1277
  msgstr "כינוי"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "שם משפחה"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "הסר"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr ""
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr "נתיב"
1339
 
@@ -1475,10 +1542,6 @@ msgstr ""
1475
  msgid "Path scope"
1476
  msgstr ""
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "נתיב מלא"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr ""
1536
  msgid "Available Sizes"
1537
  msgstr "גדלים אפשריים"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "הצג"
1542
 
@@ -1631,7 +1694,7 @@ msgstr "צבע"
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "ברירת מחדל"
1637
 
@@ -1717,7 +1780,7 @@ msgstr "אושר"
1717
  msgid "Agent"
1718
  msgstr ""
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "עריכה"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "עריכה"
1728
  msgid "ID"
1729
  msgstr "ID"
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "לא"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "כן"
@@ -1770,6 +1833,6 @@ msgstr "ווקומרס"
1770
  msgid "Advanced Custom Fields"
1771
  msgstr ""
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr "תוספים"
11
  "Language: he_IL\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr "שדרג אל"
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr "הגדרות עבור %s שוחזרו בהצלחה."
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr "הצג מסך %s"
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr "תגיבה לא תקינה."
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr "עמוד ההרחבות"
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "שדות מיוחדים"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr "https://www.admincolumns.com"
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr ""
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "שדרוג"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr "הגדרות עבור %s עודכנו בהצלחה."
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr ""
870
 
872
  msgid "No columns settings available."
873
  msgstr ""
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "משתמשים"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "מדיה"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr "קישורים"
888
 
890
  msgid "Comment"
891
  msgstr "תגובות"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "תגובות"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr ""
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr ""
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "הפעלה"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "מותקן"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "כיבוי"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "פעיל"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "הוספת עמודה"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr ""
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr ""
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr ""
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "תמיכה"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr ""
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr "צייץ"
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "דרג"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr "וואוו! אנחנו שמחים לשמוע את זה."
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr "פורומים"
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr "תיעוד"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "עדכון"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "הגדרות חנות"
992
 
994
  msgid "Add-ons"
995
  msgstr ""
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "הגדרות"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "שיחזור הגדרות ברירת מחדל"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr ""
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "שיחזור הגדרות"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "שמירה"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr ""
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "הגדות כלליות"
1128
  msgid "Overview"
1129
  msgstr "סקירה"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr ""
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr ""
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr ""
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr ""
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr ""
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "שכפל"
1255
 
1269
  msgid "User Login"
1270
  msgstr ""
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "שם משפחה"
1275
 
1298
  msgstr "רוחב"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "מותאם"
1304
 
1335
  msgstr "רשום"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr ""
1341
 
1347
  msgid "Nickname"
1348
  msgstr "כינוי"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "הסר"
1358
 
1400
  msgid "Permalink"
1401
  msgstr ""
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr "נתיב"
1406
 
1542
  msgid "Path scope"
1543
  msgstr ""
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr "גדלים אפשריים"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "הצג"
1605
 
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "ברירת מחדל"
1700
 
1780
  msgid "Agent"
1781
  msgstr ""
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "עריכה"
1786
 
1791
  msgid "ID"
1792
  msgstr "ID"
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "לא"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "כן"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr ""
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr "תוספים"
languages/codepress-admin-columns-hu_HU.mo CHANGED
Binary file
languages/codepress-admin-columns-hu_HU.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: hu\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr ""
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr ""
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr " Egyedi mezők"
773
 
@@ -779,22 +843,28 @@ msgstr ""
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Oszlopok szerkesztése"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr ""
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
800
 
@@ -802,17 +872,17 @@ msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
802
  msgid "No columns settings available."
803
  msgstr "Nincs elérhető oszlopbeállítás."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr ""
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr ""
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr ""
818
 
@@ -820,103 +890,103 @@ msgstr ""
820
  msgid "Comment"
821
  msgstr ""
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr ""
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr ""
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr ""
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Sikeresen regisztrált oldalunkra!"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr ""
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr ""
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Bekapcsolva"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Oszlop hozzáadása"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  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>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Segítség"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr ""
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr ""
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr ""
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr ""
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr ""
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr ""
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr ""
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr ""
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr ""
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Frisítés"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Beállítások tárolása"
922
 
@@ -924,7 +994,7 @@ msgstr "Beállítások tárolása"
924
  msgid "Add-ons"
925
  msgstr ""
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Beállítások"
930
 
@@ -932,32 +1002,32 @@ msgstr "Beállítások"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Alapértelmezett beállítások visszaállítása"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Beállítások visszaállítása"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr ""
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Az Admin Columns beállítások módosítása"
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Általános beállítások"
@@ -1058,19 +1128,19 @@ msgstr "A plugin segítségével további oszlopokat lehet hozzáadni bejegyzés
1058
  msgid "Overview"
1059
  msgstr "Áttekintés"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Alapértelmezett beállítások sikeresen visszaállítva."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Admin Columns beállítások"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr ""
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr ""
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Név"
1178
  msgid "Choose a column type."
1179
  msgstr "Válassz egy oszloptípust."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr ""
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Felhasználó email"
1198
  msgid "User Login"
1199
  msgstr "Felhasználó bejelentkezés"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Családnév"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "szélesség"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Egyedi"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Feliratkozott"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Bejegyzés típus"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Bejegyzések száma"
1276
  msgid "Nickname"
1277
  msgstr "Becenév"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Vezetéknév"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Eltávolítás"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr ""
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr ""
1339
 
@@ -1475,10 +1542,6 @@ msgstr ""
1475
  msgid "Path scope"
1476
  msgstr ""
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Teljes útvonal"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr "Kép felirata"
1536
  msgid "Available Sizes"
1537
  msgstr "Elérhető méretek"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Megtekintés"
1542
 
@@ -1631,7 +1694,7 @@ msgstr "Szín"
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "Alapérték"
1637
 
@@ -1717,7 +1780,7 @@ msgstr "Jóváhagyva"
1717
  msgid "Agent"
1718
  msgstr "Ügynök"
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "Szerkesztés"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "Szerkesztés"
1728
  msgid "ID"
1729
  msgstr "ID"
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "Nem"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "Igen"
@@ -1770,6 +1833,6 @@ msgstr ""
1770
  msgid "Advanced Custom Fields"
1771
  msgstr ""
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr ""
11
  "Language: hu\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr ""
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr ""
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr ""
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr " Egyedi mezők"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Oszlopok szerkesztése"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Frissítés"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr ""
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Nincs elérhető oszlopbeállítás."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr ""
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr ""
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr ""
888
 
890
  msgid "Comment"
891
  msgstr ""
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr ""
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr ""
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr ""
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Sikeresen regisztrált oldalunkra!"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr ""
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr ""
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Bekapcsolva"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Oszlop hozzáadása"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  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>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Segítség"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr ""
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr ""
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr ""
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr ""
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr ""
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr ""
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr ""
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr ""
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr ""
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Frisítés"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Beállítások tárolása"
992
 
994
  msgid "Add-ons"
995
  msgstr ""
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Beállítások"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Alapértelmezett beállítások visszaállítása"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Beállítások visszaállítása"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr ""
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Az Admin Columns beállítások módosítása"
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Általános beállítások"
1128
  msgid "Overview"
1129
  msgstr "Áttekintés"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Alapértelmezett beállítások sikeresen visszaállítva."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Admin Columns beállítások"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr ""
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr "Válassz egy oszloptípust."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr ""
1255
 
1269
  msgid "User Login"
1270
  msgstr "Felhasználó bejelentkezés"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Családnév"
1275
 
1298
  msgstr "szélesség"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Egyedi"
1304
 
1335
  msgstr "Feliratkozott"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Bejegyzés típus"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Becenév"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Eltávolítás"
1358
 
1400
  msgid "Permalink"
1401
  msgstr ""
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr ""
1406
 
1542
  msgid "Path scope"
1543
  msgstr ""
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr "Elérhető méretek"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Megtekintés"
1605
 
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "Alapérték"
1700
 
1780
  msgid "Agent"
1781
  msgstr "Ügynök"
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "Szerkesztés"
1786
 
1791
  msgid "ID"
1792
  msgstr "ID"
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "Nem"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "Igen"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr ""
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr ""
languages/codepress-admin-columns-it_IT.mo CHANGED
Binary file
languages/codepress-admin-columns-it_IT.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr "Riassunto mancante."
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr "Inviami lo sconto"
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr "Prezzi a partire da %s"
251
 
@@ -503,7 +571,7 @@ msgstr ", "
503
  msgid "Standard"
504
  msgstr "Standard"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr "Avviso"
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "Istruzioni"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr "Aiuto"
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr "Cancellare tutte le colonne "
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr "Sto usando Admin Columns per WordPress!"
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr "Il tuo nome"
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr "La tua email"
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr "Pro"
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr "Ulteriori informazioni su Pro"
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr ""
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr "Risposta non valida."
741
 
@@ -751,23 +815,23 @@ msgstr "Lasciare vuoto per visualizzare l'url"
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Campi personalizzati"
773
 
@@ -779,22 +843,28 @@ msgstr "AdminColumns.com"
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Modifica colonne"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr "Impostazioni per %s aggiornato con successo."
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
800
 
@@ -802,17 +872,17 @@ msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
802
  msgid "No columns settings available."
803
  msgstr "Nessuna impostazione colonne disponibile."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Utenti"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "Media"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr "Link"
818
 
@@ -820,103 +890,103 @@ msgstr "Link"
820
  msgid "Comment"
821
  msgstr "Commento"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "Commenti"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr "Ottieni questo componente aggiuntivo"
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
  msgstr "Scarica & Installa"
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Attiva"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "Installato"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Disattiva"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Attivo"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Aggiungi colonna"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Trascina e rilascia per riordinare"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr ""
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Supporto"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr "Acquista Pro"
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr "Tweet"
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr ""
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr ""
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr "Woohoo! Siamo lieti di sentire questo!"
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr "Forum"
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr "Documenti"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr "Sei felice con Admin Columns?"
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Aggiorna"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Memorizza le impostazioni"
922
 
@@ -924,7 +994,7 @@ msgstr "Memorizza le impostazioni"
924
  msgid "Add-ons"
925
  msgstr "Componenti aggiuntivi"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Impostazioni"
930
 
@@ -932,32 +1002,32 @@ msgstr "Impostazioni"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Ripristina le impostazioni predefinite"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr ""
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Ripristina Impostazioni"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Salva"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Personalizza le impostazioni del tuo Admin Columns"
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Impostazioni generali"
@@ -1058,19 +1128,19 @@ msgstr ""
1058
  msgid "Overview"
1059
  msgstr "Panoramica"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Le impostazioni predefinite sono state ripristinate."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "Colonna %s è già presente e non può essere duplicata."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Impostazioni Admin Columns"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1118,13 +1188,14 @@ msgstr "fai clic qui"
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr "Admin Columns Pro"
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Nome"
1178
  msgid "Choose a column type."
1179
  msgstr "Scegli un tipo di colonna."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "Clona"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Email utente"
1198
  msgid "User Login"
1199
  msgstr "Login utente"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Cognome"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "larghezza"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Personalizzato"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Registrato"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Tipo di Articolo"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Conteggio Articolo"
1276
  msgid "Nickname"
1277
  msgstr "Nickname"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Cognome"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Elimina"
1291
 
@@ -1333,7 +1400,7 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr "Permalink"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr "Percorso"
1339
 
@@ -1475,10 +1542,6 @@ msgstr "Parte del percorso del file da visualizzare"
1475
  msgid "Path scope"
1476
  msgstr "Percorso del campo"
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Percorso completo"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr ""
@@ -1536,7 +1599,7 @@ msgstr "Didascalia"
1536
  msgid "Available Sizes"
1537
  msgstr "Dimensioni Disponibili"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr ""
1542
 
@@ -1633,7 +1696,7 @@ msgstr "Colore"
1633
  #: classes/Admin/Help/CustomField.php:22
1634
  #: classes/Settings/Column/CustomFieldType.php:168
1635
  #: classes/Settings/Column/Image.php:71
1636
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1637
  msgid "Default"
1638
  msgstr "Predefinito"
1639
 
@@ -1719,7 +1782,7 @@ msgstr "Approvato"
1719
  msgid "Agent"
1720
  msgstr "Agente"
1721
 
1722
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1723
  msgid "Edit"
1724
  msgstr "Modifica"
1725
 
@@ -1730,20 +1793,20 @@ msgstr "Modifica"
1730
  msgid "ID"
1731
  msgstr "ID"
1732
 
1733
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1734
  #: classes/Settings/Column/ActionIcons.php:22
1735
  #: classes/Settings/Column/MissingImageSize.php:22
1736
  #: classes/Settings/Column/PostFormatIcon.php:24
1737
- #: classes/Settings/Column/StatusIcon.php:24
1738
  #: classes/Settings/Column/Toggle.php:14
1739
  msgid "No"
1740
  msgstr "No"
1741
 
1742
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1743
  #: classes/Settings/Column/ActionIcons.php:21
1744
  #: classes/Settings/Column/MissingImageSize.php:21
1745
  #: classes/Settings/Column/PostFormatIcon.php:23
1746
- #: classes/Settings/Column/StatusIcon.php:23
1747
  #: classes/Settings/Column/Toggle.php:13
1748
  msgid "Yes"
1749
  msgstr "Sì"
@@ -1772,6 +1835,6 @@ msgstr "WooCommerce"
1772
  msgid "Advanced Custom Fields"
1773
  msgstr "Campi personalizzati avanzati"
1774
 
1775
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1776
  msgid "Plugins"
1777
  msgstr "Plugin"
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr "Inviami lo sconto"
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr "Prezzi a partire da %s"
319
 
571
  msgid "Standard"
572
  msgstr "Standard"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr "Avviso"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "Istruzioni"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr "Aiuto"
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr "Cancellare tutte le colonne "
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr "Sto usando Admin Columns per WordPress!"
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr "Il tuo nome"
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr "La tua email"
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr ""
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr "Pro"
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr ""
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr ""
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr "Ulteriori informazioni su Pro"
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr "Risposta non valida."
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Campi personalizzati"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Modifica colonne"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Aggiornamento"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr "Impostazioni per %s aggiornato con successo."
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Nessuna impostazione colonne disponibile."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Utenti"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "Media"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr "Link"
888
 
890
  msgid "Comment"
891
  msgstr "Commento"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "Commenti"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr "Ottieni questo componente aggiuntivo"
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
  msgstr "Scarica & Installa"
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Attiva"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "Installato"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Disattiva"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Attivo"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Aggiungi colonna"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Trascina e rilascia per riordinare"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr ""
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Supporto"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr "Acquista Pro"
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr "Tweet"
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr ""
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr ""
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr "Woohoo! Siamo lieti di sentire questo!"
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr "Forum"
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr "Documenti"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr "Sei felice con Admin Columns?"
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Aggiorna"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Memorizza le impostazioni"
992
 
994
  msgid "Add-ons"
995
  msgstr "Componenti aggiuntivi"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Impostazioni"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Ripristina le impostazioni predefinite"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr ""
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Ripristina Impostazioni"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Salva"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Personalizza le impostazioni del tuo Admin Columns"
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Impostazioni generali"
1128
  msgid "Overview"
1129
  msgstr "Panoramica"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Le impostazioni predefinite sono state ripristinate."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "Colonna %s è già presente e non può essere duplicata."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Impostazioni Admin Columns"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr "Admin Columns Pro"
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr "Scegli un tipo di colonna."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "Clona"
1255
 
1269
  msgid "User Login"
1270
  msgstr "Login utente"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Cognome"
1275
 
1298
  msgstr "larghezza"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Personalizzato"
1304
 
1335
  msgstr "Registrato"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Tipo di Articolo"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Nickname"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Elimina"
1358
 
1400
  msgid "Permalink"
1401
  msgstr "Permalink"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr "Percorso"
1406
 
1542
  msgid "Path scope"
1543
  msgstr "Percorso del campo"
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr ""
1599
  msgid "Available Sizes"
1600
  msgstr "Dimensioni Disponibili"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr ""
1605
 
1696
  #: classes/Admin/Help/CustomField.php:22
1697
  #: classes/Settings/Column/CustomFieldType.php:168
1698
  #: classes/Settings/Column/Image.php:71
1699
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1700
  msgid "Default"
1701
  msgstr "Predefinito"
1702
 
1782
  msgid "Agent"
1783
  msgstr "Agente"
1784
 
1785
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1786
  msgid "Edit"
1787
  msgstr "Modifica"
1788
 
1793
  msgid "ID"
1794
  msgstr "ID"
1795
 
1796
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1797
  #: classes/Settings/Column/ActionIcons.php:22
1798
  #: classes/Settings/Column/MissingImageSize.php:22
1799
  #: classes/Settings/Column/PostFormatIcon.php:24
1800
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1801
  #: classes/Settings/Column/Toggle.php:14
1802
  msgid "No"
1803
  msgstr "No"
1804
 
1805
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1806
  #: classes/Settings/Column/ActionIcons.php:21
1807
  #: classes/Settings/Column/MissingImageSize.php:21
1808
  #: classes/Settings/Column/PostFormatIcon.php:23
1809
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1810
  #: classes/Settings/Column/Toggle.php:13
1811
  msgid "Yes"
1812
  msgstr "Sì"
1835
  msgid "Advanced Custom Fields"
1836
  msgstr "Campi personalizzati avanzati"
1837
 
1838
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1839
  msgid "Plugins"
1840
  msgstr "Plugin"
languages/codepress-admin-columns-ja_JA.mo CHANGED
Binary file
languages/codepress-admin-columns-ja_JA.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr "、"
503
  msgid "Standard"
504
  msgstr "標準"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr "完全なパス"
509
 
@@ -511,157 +579,157 @@ msgstr "完全なパス"
511
  msgid "Discount is valid until %s"
512
  msgstr "割引は%sまで有効です"
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr "%s ボタンをテーブル画面に表示"
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr "デフォルトは %s です。"
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr "オン"
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr "オフ"
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr "注意"
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "手順"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr "ドキュメンテーション"
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
 
555
- #: classes/Admin/Page/Help.php:258
556
  msgid "View documentation"
557
  msgstr "ドキュメンテーションを表示"
558
 
559
- #: classes/Admin/Page/Help.php:203
560
  msgid "The action %s used on this website is deprecated since %s."
561
  msgstr ""
562
 
563
- #: classes/Admin/Page/Help.php:185
564
  msgid "The filter %s used on this website is deprecated since %s."
565
  msgstr ""
566
 
567
- #: classes/Admin/Page/Help.php:172
568
  msgid "Deprecated Actions"
569
  msgstr "非推奨アクション"
570
 
571
- #: classes/Admin/Page/Help.php:171
572
  msgid "Deprecated Filters"
573
  msgstr "被推奨フィルター"
574
 
575
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
576
  msgid "Help"
577
  msgstr "ヘルプ"
578
 
579
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
580
  msgid "Close"
581
  msgstr "閉じる"
582
 
583
- #: classes/Admin/Page/Columns.php:741
584
  msgid "Clear all columns "
585
  msgstr "すべての列をクリア"
586
 
587
- #: classes/Admin/Page/Columns.php:648
588
  msgid "I'm using Admin Columns for WordPress!"
589
  msgstr ""
590
 
591
- #: classes/Admin/Page/Columns.php:590
592
  msgid "Your First Name"
593
  msgstr "名"
594
 
595
- #: classes/Admin/Page/Columns.php:589
596
  msgid "Your Email"
597
  msgstr "メールアドレス"
598
 
599
- #: classes/Admin/Page/Columns.php:582
600
  msgid "Submit your email and we'll send you a discount for %s off."
601
  msgstr ""
602
 
603
- #: classes/Admin/Page/Columns.php:578
604
  msgid "Get %s Off!"
605
  msgstr ""
606
 
607
- #: classes/Admin/Page/Columns.php:545
608
  msgid "Extra Columns for:"
609
  msgstr ""
610
 
611
- #: classes/Admin/Page/Columns.php:531
612
  msgid "Edit your column content directly"
613
  msgstr ""
614
 
615
- #: classes/Admin/Page/Columns.php:519
616
  msgid "Pro"
617
  msgstr "プロ版"
618
 
619
- #: classes/Admin/Page/Columns.php:301
620
  msgid "You need at least one column"
621
  msgstr ""
622
 
623
- #: classes/Admin/Page/Addons.php:293
624
  msgid "Available"
625
  msgstr "利用可能"
626
 
627
- #: classes/Admin/Page/Addons.php:292
628
  msgid "Recommended"
629
  msgstr "おすすめ"
630
 
631
- #: classes/Admin/Page/Addons.php:113
632
  msgid "%s could not be activated."
633
  msgstr ""
634
 
635
- #: classes/Admin/Page/Addons.php:103
636
  msgid "%s successfully activated."
637
  msgstr ""
638
 
639
- #: classes/Admin/Page/Addons.php:98
640
  msgid "%s plugin successfully deactivated."
641
  msgstr ""
642
 
643
- #: classes/Admin/Page/Addons.php:97
644
  msgid "%s plugin successfully activated."
645
  msgstr ""
646
 
647
- #: classes/Admin/Page/Addons.php:64
648
  msgid "%s add-on requires %s."
649
  msgid_plural "%s add-ons requires %s."
650
  msgstr[0] ""
651
 
652
- #: classes/Admin/Page/Addons.php:51
653
  msgid "here"
654
  msgstr "ここ"
655
 
656
- #: classes/Admin/Page/Addons.php:51
657
  msgid "Click %s to activate the plugin."
658
  msgstr "プラグインを有効化するには「%s」をクリックしてください。"
659
 
660
- #: classes/Admin/Page/Addons.php:48
661
  msgid "%s plugin is installed, but not active."
662
  msgstr ""
663
 
664
- #: classes/Admin/Page/Addons.php:46
665
  msgid "%s plugin needs to be installed for the add-on to work."
666
  msgstr ""
667
 
@@ -681,59 +749,55 @@ msgstr ""
681
  msgid "Imported"
682
  msgstr "インポート済み"
683
 
684
- #: classes/Admin/Page/Columns.php:561
685
  msgid "Learn more about Pro"
686
  msgstr "プロ版についてさらに詳しく読む"
687
 
688
- #: classes/Admin/Page/Columns.php:533
689
  msgid "Import &amp; Export settings"
690
  msgstr "インポート &amp; エクスポート設定"
691
 
692
- #: classes/Admin/Page/Columns.php:532
693
  msgid "Create multiple columns sets"
694
  msgstr ""
695
 
696
- #: classes/Admin/Page/Columns.php:530
697
  msgid "Add filterable columns"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Columns.php:529
701
  msgid "Add sortable columns"
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Columns.php:524
705
  msgid "Take Admin Columns to the next level:"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:519
709
  msgid "Upgrade to"
710
  msgstr "アップグレード:"
711
 
712
- #: classes/Admin/Promo.php:134
713
- msgid "Get %s Off"
714
- msgstr "%s割引を適用"
715
-
716
- #: classes/Admin/Page/Columns.php:431
717
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:221
721
  msgid "Please visit the %s screen once to load all available columns"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:500
725
  msgid "Restore columns"
726
  msgstr "列を復元"
727
 
728
- #: classes/Admin/Page/Columns.php:147
729
  msgid "Settings for %s restored successfully."
730
  msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:308
733
  msgid "View %s screen"
734
  msgstr "%s 画面を表示"
735
 
736
- #: classes/Admin/Page/Columns.php:70
737
  msgid "Invalid response."
738
  msgstr "無効なレスポンス。"
739
 
@@ -749,23 +813,23 @@ msgstr ""
749
  msgid "Link Label"
750
  msgstr "リンクのラベル"
751
 
752
- #: classes/Admin/Page/Addons.php:220
753
  msgid "You need Admin Columns Pro."
754
  msgstr ""
755
 
756
- #: classes/Admin/Page/Addons.php:214
757
  msgid "Addon does not exist."
758
  msgstr "アドオンが存在しません。"
759
 
760
- #: classes/Admin/Page/Addons.php:176
761
  msgid "the addons page"
762
  msgstr "アドオンのページ"
763
 
764
- #: classes/Admin/Page/Addons.php:176
765
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
766
  msgstr ""
767
 
768
- #: codepress-admin-columns.php:300
769
  msgid "Custom Fields"
770
  msgstr "カスタムフィールド"
771
 
@@ -777,22 +841,28 @@ msgstr "AdminColumns.com"
777
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
778
  msgstr ""
779
 
780
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
781
  #. Plugin URI of the plugin/theme
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Author URI of the plugin/theme
784
  msgid "https://www.admincolumns.com"
785
  msgstr "https://www.admincolumns.com"
786
 
787
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
788
  msgid "Edit columns"
789
  msgstr "列の編集"
790
 
791
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
792
  msgid "Settings for %s updated successfully."
793
  msgstr ""
794
 
795
- #: classes/Admin/Page/Columns.php:315
796
  msgid "You are trying to store the same settings for %s."
797
  msgstr "%sはすでに設定済みです "
798
 
@@ -800,17 +870,17 @@ msgstr "%sはすでに設定済みです "
800
  msgid "No columns settings available."
801
  msgstr "設定された列はありません"
802
 
803
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
804
  msgid "Users"
805
  msgstr "ユーザー"
806
 
807
  #: classes/ListScreen/Media.php:16
808
  #: classes/Settings/Column/CustomFieldType.php:112
809
- #: codepress-admin-columns.php:432
810
  msgid "Media"
811
  msgstr "メディア"
812
 
813
- #: codepress-admin-columns.php:434
814
  msgid "Links"
815
  msgstr "リンク"
816
 
@@ -818,103 +888,103 @@ msgstr "リンク"
818
  msgid "Comment"
819
  msgstr "コメント"
820
 
821
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
822
  msgid "Comments"
823
  msgstr "コメント"
824
 
825
- #: classes/Admin/Page/Addons.php:420
826
  msgid "Get this add-on"
827
  msgstr "このアドオンを入手"
828
 
829
- #: classes/Admin/Page/Addons.php:418
830
  msgid "Download & Install"
831
  msgstr "ダウンロード & インストール"
832
 
833
- #: classes/Admin/Page/Addons.php:412
834
  msgid "Activate"
835
  msgstr "有効化"
836
 
837
- #: classes/Admin/Page/Addons.php:291
838
  msgid "Installed"
839
  msgstr "インストール済み"
840
 
841
- #: classes/Admin/Page/Addons.php:408
842
  msgid "Deactivate"
843
  msgstr "停止"
844
 
845
- #: classes/Admin/Page/Addons.php:405
846
  msgid "Active"
847
  msgstr "有効"
848
 
849
- #: classes/Admin/Page/Columns.php:747
850
  msgid "Add Column"
851
  msgstr "列を追加"
852
 
853
- #: classes/Admin/Page/Columns.php:727
854
  msgid "Drag and drop to reorder"
855
  msgstr "ドロップ&ドラッグで表示順序を変更できます"
856
 
857
- #: classes/Admin/Page/Columns.php:676
858
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
859
  msgstr "ドキュメント・バグレポート・機能の提案などは<a href='%s'> Admin Columns website</a>を訪れてください。"
860
 
861
- #: classes/Admin/Page/Columns.php:672
862
  msgid "Check the <strong>Help</strong> section in the top-right screen."
863
  msgstr "画面右上の<strong>Help</strong>を確認してください。"
864
 
865
- #: classes/Admin/Page/Columns.php:667
866
  msgid "Support"
867
  msgstr "サポート"
868
 
869
- #: classes/Admin/Page/Columns.php:655
870
  msgid "Buy Pro"
871
  msgstr "Pro 版を購入"
872
 
873
- #: classes/Admin/Page/Columns.php:649
874
  msgid "Tweet"
875
  msgstr "ツイートする"
876
 
877
- #: classes/Admin/Page/Columns.php:643
878
  msgid "Rate"
879
  msgstr "評価"
880
 
881
- #: classes/Admin/Page/Columns.php:638
882
  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!"
883
  msgstr ""
884
 
885
- #: classes/Admin/Page/Columns.php:635
886
  msgid "Woohoo! We're glad to hear that!"
887
  msgstr ""
888
 
889
- #: classes/Admin/Page/Columns.php:625
890
  msgid "Forums"
891
  msgstr "フォーラム"
892
 
893
- #: classes/Admin/Page/Columns.php:620
894
  msgid "Docs"
895
  msgstr "ドキュメント"
896
 
897
- #: classes/Admin/Page/Columns.php:615
898
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
899
  msgstr ""
900
 
901
- #: classes/Admin/Page/Columns.php:612
902
  msgid "What's wrong? Need help? Let us know!"
903
  msgstr ""
904
 
905
- #: classes/Admin/Page/Columns.php:602
906
  msgid "Are you happy with Admin Columns?"
907
  msgstr ""
908
 
909
- #: classes/Admin/Page/Columns.php:499
910
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
911
  msgstr ""
912
 
913
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
914
  msgid "Update"
915
  msgstr "更新"
916
 
917
- #: classes/Admin/Page/Columns.php:477
918
  msgid "Store settings"
919
  msgstr "ストアー設定"
920
 
@@ -922,7 +992,7 @@ msgstr "ストアー設定"
922
  msgid "Add-ons"
923
  msgstr "アドオン"
924
 
925
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
926
  msgid "Settings"
927
  msgstr "設定"
928
 
@@ -930,32 +1000,32 @@ msgstr "設定"
930
  msgid "Others"
931
  msgstr "その他"
932
 
933
- #: classes/Admin/Page/Settings.php:229
934
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
935
  msgstr ""
936
 
937
- #: classes/Admin/Page/Settings.php:229
938
  msgid "Restore default settings"
939
  msgstr "デフォルト設定に復元する"
940
 
941
- #: classes/Admin/Page/Settings.php:221
942
  msgid "This will delete all column settings and restore the default settings."
943
  msgstr "追加された全ての列を削除し、デフォルト設定に戻します。"
944
 
945
- #: classes/Admin/Page/Settings.php:220
946
  msgid "Restore Settings"
947
  msgstr "設定を修復"
948
 
949
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
950
- #: classes/Admin/Page/Settings.php:179
951
  msgid "Save"
952
  msgstr "保存"
953
 
954
- #: classes/Admin/Page/Settings.php:161
955
  msgid "Customize your Admin Columns settings."
956
  msgstr "管理画面の列表示をカスタマイズします。"
957
 
958
- #: classes/Admin/Page/Settings.php:160
959
  #: classes/Settings/Column/DateTimeFormat.php:39
960
  msgid "General Settings"
961
  msgstr "一般設定"
@@ -1061,19 +1131,19 @@ msgstr ""
1061
  msgid "Overview"
1062
  msgstr "概要"
1063
 
1064
- #: classes/Admin/Page/Settings.php:101
1065
  msgid "Default settings succesfully restored."
1066
  msgstr "初期設定を復元しました。"
1067
 
1068
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1069
  msgid "%s column is already present and can not be duplicated."
1070
  msgstr "%s 列はすでに存在します。複製することができません "
1071
 
1072
- #: classes/Admin.php:127
1073
  msgid "Admin Columns Settings"
1074
  msgstr "Admin Columns 設定"
1075
 
1076
- #: classes/Admin/Page/Addons.php:104
1077
  msgid "%s successfully deactivated."
1078
  msgstr "%s を無効化しました。"
1079
 
@@ -1121,13 +1191,14 @@ msgstr "ここをクリック"
1121
  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."
1122
  msgstr ""
1123
 
1124
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1125
  msgid "Admin Columns Pro"
1126
  msgstr "Admin Columns Pro"
1127
 
1128
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1129
  #. Plugin Name of the plugin/theme
1130
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1131
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1132
  #: classes/Plugin/Updater.php:114
1133
  msgid "Admin Columns"
@@ -1181,7 +1252,7 @@ msgstr "名称"
1181
  msgid "Choose a column type."
1182
  msgstr "カラム形式を選択。"
1183
 
1184
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1185
  msgid "Clone"
1186
  msgstr "複製"
1187
 
@@ -1201,7 +1272,7 @@ msgstr "メールアドレス"
1201
  msgid "User Login"
1202
  msgstr "ユーザーログイン"
1203
 
1204
- #: classes/Settings/Column/User.php:65
1205
  msgid "Last Name"
1206
  msgstr "姓"
1207
 
@@ -1230,7 +1301,7 @@ msgid "width"
1230
  msgstr "幅"
1231
 
1232
  #: classes/Settings/Column/CustomFieldType.php:153
1233
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1234
  msgid "Custom"
1235
  msgstr "カスタム"
1236
 
@@ -1267,7 +1338,7 @@ msgid "Registered"
1267
  msgstr "登録済み"
1268
 
1269
  #: classes/Settings/Column/CustomFieldType.php:80
1270
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1271
  msgid "Post Type"
1272
  msgstr "投稿タイプ"
1273
 
@@ -1279,16 +1350,12 @@ msgstr "投稿数"
1279
  msgid "Nickname"
1280
  msgstr "ニックネーム"
1281
 
1282
- #: classes/Column/User/LastName.php:14
1283
- msgid "Last name"
1284
- msgstr "姓"
1285
-
1286
  #: classes/Column/Post/CommentCount.php:17
1287
  #: classes/Column/User/CommentCount.php:14
1288
  msgid "Comment Count"
1289
  msgstr "コメント数"
1290
 
1291
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1292
  msgid "Remove"
1293
  msgstr "削除"
1294
 
@@ -1336,7 +1403,7 @@ msgstr "Ping ステータス"
1336
  msgid "Permalink"
1337
  msgstr "パーマリンク"
1338
 
1339
- #: classes/Column/Post/Path.php:16
1340
  msgid "Path"
1341
  msgstr "パス"
1342
 
@@ -1476,10 +1543,6 @@ msgstr "表示するファイルパスの部分"
1476
  msgid "Path scope"
1477
  msgstr "パススコープ"
1478
 
1479
- #: classes/Settings/Column/PathScope.php:24
1480
- msgid "Full path"
1481
- msgstr "フルパス"
1482
-
1483
  #: classes/Column/Media/FileSize.php:14
1484
  msgid "File Size"
1485
  msgstr "ファイルサイズ"
@@ -1537,7 +1600,7 @@ msgstr "キャプション"
1537
  msgid "Available Sizes"
1538
  msgstr "利用可能なサイズ"
1539
 
1540
- #: classes/Admin/Page/Columns.php:463
1541
  msgid "View"
1542
  msgstr "表示"
1543
 
@@ -1632,7 +1695,7 @@ msgstr "色"
1632
  #: classes/Admin/Help/CustomField.php:22
1633
  #: classes/Settings/Column/CustomFieldType.php:168
1634
  #: classes/Settings/Column/Image.php:71
1635
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1636
  msgid "Default"
1637
  msgstr "デフォルト"
1638
 
@@ -1718,7 +1781,7 @@ msgstr "承認済み"
1718
  msgid "Agent"
1719
  msgstr "エージェント"
1720
 
1721
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1722
  msgid "Edit"
1723
  msgstr "編集"
1724
 
@@ -1729,20 +1792,20 @@ msgstr "編集"
1729
  msgid "ID"
1730
  msgstr "ID"
1731
 
1732
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1733
  #: classes/Settings/Column/ActionIcons.php:22
1734
  #: classes/Settings/Column/MissingImageSize.php:22
1735
  #: classes/Settings/Column/PostFormatIcon.php:24
1736
- #: classes/Settings/Column/StatusIcon.php:24
1737
  #: classes/Settings/Column/Toggle.php:14
1738
  msgid "No"
1739
  msgstr "いいえ"
1740
 
1741
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1742
  #: classes/Settings/Column/ActionIcons.php:21
1743
  #: classes/Settings/Column/MissingImageSize.php:21
1744
  #: classes/Settings/Column/PostFormatIcon.php:23
1745
- #: classes/Settings/Column/StatusIcon.php:23
1746
  #: classes/Settings/Column/Toggle.php:13
1747
  msgid "Yes"
1748
  msgstr "はい"
@@ -1771,6 +1834,6 @@ msgstr "WooCommerce"
1771
  msgid "Advanced Custom Fields"
1772
  msgstr "Advanced Custom Fields"
1773
 
1774
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1775
  msgid "Plugins"
1776
  msgstr "プラグイン"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr "標準"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr "完全なパス"
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr "割引は%sまで有効です"
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr "%s ボタンをテーブル画面に表示"
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr "デフォルトは %s です。"
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr "オン"
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr "オフ"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr "注意"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "手順"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr "ドキュメンテーション"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
 
623
+ #: classes/Admin/Page/Help.php:263
624
  msgid "View documentation"
625
  msgstr "ドキュメンテーションを表示"
626
 
627
+ #: classes/Admin/Page/Help.php:208
628
  msgid "The action %s used on this website is deprecated since %s."
629
  msgstr ""
630
 
631
+ #: classes/Admin/Page/Help.php:190
632
  msgid "The filter %s used on this website is deprecated since %s."
633
  msgstr ""
634
 
635
+ #: classes/Admin/Page/Help.php:177
636
  msgid "Deprecated Actions"
637
  msgstr "非推奨アクション"
638
 
639
+ #: classes/Admin/Page/Help.php:176
640
  msgid "Deprecated Filters"
641
  msgstr "被推奨フィルター"
642
 
643
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
644
  msgid "Help"
645
  msgstr "ヘルプ"
646
 
647
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
648
  msgid "Close"
649
  msgstr "閉じる"
650
 
651
+ #: classes/Admin/Page/Columns.php:744
652
  msgid "Clear all columns "
653
  msgstr "すべての列をクリア"
654
 
655
+ #: classes/Admin/Page/Columns.php:651
656
  msgid "I'm using Admin Columns for WordPress!"
657
  msgstr ""
658
 
659
+ #: classes/Admin/Page/Columns.php:593
660
  msgid "Your First Name"
661
  msgstr "名"
662
 
663
+ #: classes/Admin/Page/Columns.php:592
664
  msgid "Your Email"
665
  msgstr "メールアドレス"
666
 
667
+ #: classes/Admin/Page/Columns.php:585
668
  msgid "Submit your email and we'll send you a discount for %s off."
669
  msgstr ""
670
 
671
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
672
  msgid "Get %s Off!"
673
  msgstr ""
674
 
675
+ #: classes/Admin/Page/Columns.php:548
676
  msgid "Extra Columns for:"
677
  msgstr ""
678
 
679
+ #: classes/Admin/Page/Columns.php:534
680
  msgid "Edit your column content directly"
681
  msgstr ""
682
 
683
+ #: classes/Admin/Page/Columns.php:522
684
  msgid "Pro"
685
  msgstr "プロ版"
686
 
687
+ #: classes/Admin/Page/Columns.php:304
688
  msgid "You need at least one column"
689
  msgstr ""
690
 
691
+ #: classes/Admin/Page/Addons.php:297
692
  msgid "Available"
693
  msgstr "利用可能"
694
 
695
+ #: classes/Admin/Page/Addons.php:296
696
  msgid "Recommended"
697
  msgstr "おすすめ"
698
 
699
+ #: classes/Admin/Page/Addons.php:117
700
  msgid "%s could not be activated."
701
  msgstr ""
702
 
703
+ #: classes/Admin/Page/Addons.php:107
704
  msgid "%s successfully activated."
705
  msgstr ""
706
 
707
+ #: classes/Admin/Page/Addons.php:102
708
  msgid "%s plugin successfully deactivated."
709
  msgstr ""
710
 
711
+ #: classes/Admin/Page/Addons.php:101
712
  msgid "%s plugin successfully activated."
713
  msgstr ""
714
 
715
+ #: classes/Admin/Page/Addons.php:69
716
  msgid "%s add-on requires %s."
717
  msgid_plural "%s add-ons requires %s."
718
  msgstr[0] ""
719
 
720
+ #: classes/Admin/Page/Addons.php:56
721
  msgid "here"
722
  msgstr "ここ"
723
 
724
+ #: classes/Admin/Page/Addons.php:56
725
  msgid "Click %s to activate the plugin."
726
  msgstr "プラグインを有効化するには「%s」をクリックしてください。"
727
 
728
+ #: classes/Admin/Page/Addons.php:53
729
  msgid "%s plugin is installed, but not active."
730
  msgstr ""
731
 
732
+ #: classes/Admin/Page/Addons.php:51
733
  msgid "%s plugin needs to be installed for the add-on to work."
734
  msgstr ""
735
 
749
  msgid "Imported"
750
  msgstr "インポート済み"
751
 
752
+ #: classes/Admin/Page/Columns.php:564
753
  msgid "Learn more about Pro"
754
  msgstr "プロ版についてさらに詳しく読む"
755
 
756
+ #: classes/Admin/Page/Columns.php:536
757
  msgid "Import &amp; Export settings"
758
  msgstr "インポート &amp; エクスポート設定"
759
 
760
+ #: classes/Admin/Page/Columns.php:535
761
  msgid "Create multiple columns sets"
762
  msgstr ""
763
 
764
+ #: classes/Admin/Page/Columns.php:533
765
  msgid "Add filterable columns"
766
  msgstr ""
767
 
768
+ #: classes/Admin/Page/Columns.php:532
769
  msgid "Add sortable columns"
770
  msgstr ""
771
 
772
+ #: classes/Admin/Page/Columns.php:527
773
  msgid "Take Admin Columns to the next level:"
774
  msgstr ""
775
 
776
+ #: classes/Admin/Page/Columns.php:522
777
  msgid "Upgrade to"
778
  msgstr "アップグレード:"
779
 
780
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
781
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
782
  msgstr ""
783
 
784
+ #: classes/Admin/Page/Columns.php:224
785
  msgid "Please visit the %s screen once to load all available columns"
786
  msgstr ""
787
 
788
+ #: classes/Admin/Page/Columns.php:503
789
  msgid "Restore columns"
790
  msgstr "列を復元"
791
 
792
+ #: classes/Admin/Page/Columns.php:150
793
  msgid "Settings for %s restored successfully."
794
  msgstr ""
795
 
796
+ #: classes/Admin/Page/Columns.php:311
797
  msgid "View %s screen"
798
  msgstr "%s 画面を表示"
799
 
800
+ #: classes/Admin/Page/Columns.php:73
801
  msgid "Invalid response."
802
  msgstr "無効なレスポンス。"
803
 
813
  msgid "Link Label"
814
  msgstr "リンクのラベル"
815
 
816
+ #: classes/Admin/Page/Addons.php:224
817
  msgid "You need Admin Columns Pro."
818
  msgstr ""
819
 
820
+ #: classes/Admin/Page/Addons.php:218
821
  msgid "Addon does not exist."
822
  msgstr "アドオンが存在しません。"
823
 
824
+ #: classes/Admin/Page/Addons.php:180
825
  msgid "the addons page"
826
  msgstr "アドオンのページ"
827
 
828
+ #: classes/Admin/Page/Addons.php:180
829
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
830
  msgstr ""
831
 
832
+ #: codepress-admin-columns.php:325
833
  msgid "Custom Fields"
834
  msgstr "カスタムフィールド"
835
 
841
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
842
  msgstr ""
843
 
844
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
845
+ #. #-#-#-#-#
846
  #. Plugin URI of the plugin/theme
847
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
848
+ #. #-#-#-#-#
849
  #. Author URI of the plugin/theme
850
  msgid "https://www.admincolumns.com"
851
  msgstr "https://www.admincolumns.com"
852
 
853
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
854
  msgid "Edit columns"
855
  msgstr "列の編集"
856
 
857
+ #: classes/Admin/Page/Columns.php:940
858
+ msgid "Upgrade"
859
+ msgstr "アップグレード"
860
+
861
+ #: classes/Admin/Page/Columns.php:331
862
  msgid "Settings for %s updated successfully."
863
  msgstr ""
864
 
865
+ #: classes/Admin/Page/Columns.php:318
866
  msgid "You are trying to store the same settings for %s."
867
  msgstr "%sはすでに設定済みです "
868
 
870
  msgid "No columns settings available."
871
  msgstr "設定された列はありません"
872
 
873
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
874
  msgid "Users"
875
  msgstr "ユーザー"
876
 
877
  #: classes/ListScreen/Media.php:16
878
  #: classes/Settings/Column/CustomFieldType.php:112
879
+ #: codepress-admin-columns.php:457
880
  msgid "Media"
881
  msgstr "メディア"
882
 
883
+ #: codepress-admin-columns.php:459
884
  msgid "Links"
885
  msgstr "リンク"
886
 
888
  msgid "Comment"
889
  msgstr "コメント"
890
 
891
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
892
  msgid "Comments"
893
  msgstr "コメント"
894
 
895
+ #: classes/Admin/Page/Addons.php:424
896
  msgid "Get this add-on"
897
  msgstr "このアドオンを入手"
898
 
899
+ #: classes/Admin/Page/Addons.php:422
900
  msgid "Download & Install"
901
  msgstr "ダウンロード & インストール"
902
 
903
+ #: classes/Admin/Page/Addons.php:416
904
  msgid "Activate"
905
  msgstr "有効化"
906
 
907
+ #: classes/Admin/Page/Addons.php:295
908
  msgid "Installed"
909
  msgstr "インストール済み"
910
 
911
+ #: classes/Admin/Page/Addons.php:412
912
  msgid "Deactivate"
913
  msgstr "停止"
914
 
915
+ #: classes/Admin/Page/Addons.php:409
916
  msgid "Active"
917
  msgstr "有効"
918
 
919
+ #: classes/Admin/Page/Columns.php:750
920
  msgid "Add Column"
921
  msgstr "列を追加"
922
 
923
+ #: classes/Admin/Page/Columns.php:730
924
  msgid "Drag and drop to reorder"
925
  msgstr "ドロップ&ドラッグで表示順序を変更できます"
926
 
927
+ #: classes/Admin/Page/Columns.php:679
928
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
929
  msgstr "ドキュメント・バグレポート・機能の提案などは<a href='%s'> Admin Columns website</a>を訪れてください。"
930
 
931
+ #: classes/Admin/Page/Columns.php:675
932
  msgid "Check the <strong>Help</strong> section in the top-right screen."
933
  msgstr "画面右上の<strong>Help</strong>を確認してください。"
934
 
935
+ #: classes/Admin/Page/Columns.php:670
936
  msgid "Support"
937
  msgstr "サポート"
938
 
939
+ #: classes/Admin/Page/Columns.php:658
940
  msgid "Buy Pro"
941
  msgstr "Pro 版を購入"
942
 
943
+ #: classes/Admin/Page/Columns.php:652
944
  msgid "Tweet"
945
  msgstr "ツイートする"
946
 
947
+ #: classes/Admin/Page/Columns.php:646
948
  msgid "Rate"
949
  msgstr "評価"
950
 
951
+ #: classes/Admin/Page/Columns.php:641
952
  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!"
953
  msgstr ""
954
 
955
+ #: classes/Admin/Page/Columns.php:638
956
  msgid "Woohoo! We're glad to hear that!"
957
  msgstr ""
958
 
959
+ #: classes/Admin/Page/Columns.php:628
960
  msgid "Forums"
961
  msgstr "フォーラム"
962
 
963
+ #: classes/Admin/Page/Columns.php:623
964
  msgid "Docs"
965
  msgstr "ドキュメント"
966
 
967
+ #: classes/Admin/Page/Columns.php:618
968
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
969
  msgstr ""
970
 
971
+ #: classes/Admin/Page/Columns.php:615
972
  msgid "What's wrong? Need help? Let us know!"
973
  msgstr ""
974
 
975
+ #: classes/Admin/Page/Columns.php:605
976
  msgid "Are you happy with Admin Columns?"
977
  msgstr ""
978
 
979
+ #: classes/Admin/Page/Columns.php:502
980
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
981
  msgstr ""
982
 
983
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
984
  msgid "Update"
985
  msgstr "更新"
986
 
987
+ #: classes/Admin/Page/Columns.php:480
988
  msgid "Store settings"
989
  msgstr "ストアー設定"
990
 
992
  msgid "Add-ons"
993
  msgstr "アドオン"
994
 
995
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
996
  msgid "Settings"
997
  msgstr "設定"
998
 
1000
  msgid "Others"
1001
  msgstr "その他"
1002
 
1003
+ #: classes/Admin/Page/Settings.php:239
1004
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1005
  msgstr ""
1006
 
1007
+ #: classes/Admin/Page/Settings.php:239
1008
  msgid "Restore default settings"
1009
  msgstr "デフォルト設定に復元する"
1010
 
1011
+ #: classes/Admin/Page/Settings.php:231
1012
  msgid "This will delete all column settings and restore the default settings."
1013
  msgstr "追加された全ての列を削除し、デフォルト設定に戻します。"
1014
 
1015
+ #: classes/Admin/Page/Settings.php:230
1016
  msgid "Restore Settings"
1017
  msgstr "設定を修復"
1018
 
1019
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1020
+ #: classes/Admin/Page/Settings.php:189
1021
  msgid "Save"
1022
  msgstr "保存"
1023
 
1024
+ #: classes/Admin/Page/Settings.php:171
1025
  msgid "Customize your Admin Columns settings."
1026
  msgstr "管理画面の列表示をカスタマイズします。"
1027
 
1028
+ #: classes/Admin/Page/Settings.php:170
1029
  #: classes/Settings/Column/DateTimeFormat.php:39
1030
  msgid "General Settings"
1031
  msgstr "一般設定"
1131
  msgid "Overview"
1132
  msgstr "概要"
1133
 
1134
+ #: classes/Admin/Page/Settings.php:111
1135
  msgid "Default settings succesfully restored."
1136
  msgstr "初期設定を復元しました。"
1137
 
1138
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1139
  msgid "%s column is already present and can not be duplicated."
1140
  msgstr "%s 列はすでに存在します。複製することができません "
1141
 
1142
+ #: classes/Admin.php:126
1143
  msgid "Admin Columns Settings"
1144
  msgstr "Admin Columns 設定"
1145
 
1146
+ #: classes/Admin/Page/Addons.php:108
1147
  msgid "%s successfully deactivated."
1148
  msgstr "%s を無効化しました。"
1149
 
1191
  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."
1192
  msgstr ""
1193
 
1194
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1195
  msgid "Admin Columns Pro"
1196
  msgstr "Admin Columns Pro"
1197
 
1198
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1199
+ #. #-#-#-#-#
1200
  #. Plugin Name of the plugin/theme
1201
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1202
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1203
  #: classes/Plugin/Updater.php:114
1204
  msgid "Admin Columns"
1252
  msgid "Choose a column type."
1253
  msgstr "カラム形式を選択。"
1254
 
1255
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1256
  msgid "Clone"
1257
  msgstr "複製"
1258
 
1272
  msgid "User Login"
1273
  msgstr "ユーザーログイン"
1274
 
1275
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1276
  msgid "Last Name"
1277
  msgstr "姓"
1278
 
1301
  msgstr "幅"
1302
 
1303
  #: classes/Settings/Column/CustomFieldType.php:153
1304
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1305
  msgid "Custom"
1306
  msgstr "カスタム"
1307
 
1338
  msgstr "登録済み"
1339
 
1340
  #: classes/Settings/Column/CustomFieldType.php:80
1341
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1342
  msgid "Post Type"
1343
  msgstr "投稿タイプ"
1344
 
1350
  msgid "Nickname"
1351
  msgstr "ニックネーム"
1352
 
 
 
 
 
1353
  #: classes/Column/Post/CommentCount.php:17
1354
  #: classes/Column/User/CommentCount.php:14
1355
  msgid "Comment Count"
1356
  msgstr "コメント数"
1357
 
1358
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1359
  msgid "Remove"
1360
  msgstr "削除"
1361
 
1403
  msgid "Permalink"
1404
  msgstr "パーマリンク"
1405
 
1406
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1407
  msgid "Path"
1408
  msgstr "パス"
1409
 
1543
  msgid "Path scope"
1544
  msgstr "パススコープ"
1545
 
 
 
 
 
1546
  #: classes/Column/Media/FileSize.php:14
1547
  msgid "File Size"
1548
  msgstr "ファイルサイズ"
1600
  msgid "Available Sizes"
1601
  msgstr "利用可能なサイズ"
1602
 
1603
+ #: classes/Admin/Page/Columns.php:466
1604
  msgid "View"
1605
  msgstr "表示"
1606
 
1695
  #: classes/Admin/Help/CustomField.php:22
1696
  #: classes/Settings/Column/CustomFieldType.php:168
1697
  #: classes/Settings/Column/Image.php:71
1698
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1699
  msgid "Default"
1700
  msgstr "デフォルト"
1701
 
1781
  msgid "Agent"
1782
  msgstr "エージェント"
1783
 
1784
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1785
  msgid "Edit"
1786
  msgstr "編集"
1787
 
1792
  msgid "ID"
1793
  msgstr "ID"
1794
 
1795
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1796
  #: classes/Settings/Column/ActionIcons.php:22
1797
  #: classes/Settings/Column/MissingImageSize.php:22
1798
  #: classes/Settings/Column/PostFormatIcon.php:24
1799
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1800
  #: classes/Settings/Column/Toggle.php:14
1801
  msgid "No"
1802
  msgstr "いいえ"
1803
 
1804
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1805
  #: classes/Settings/Column/ActionIcons.php:21
1806
  #: classes/Settings/Column/MissingImageSize.php:21
1807
  #: classes/Settings/Column/PostFormatIcon.php:23
1808
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1809
  #: classes/Settings/Column/Toggle.php:13
1810
  msgid "Yes"
1811
  msgstr "はい"
1834
  msgid "Advanced Custom Fields"
1835
  msgstr "Advanced Custom Fields"
1836
 
1837
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1838
  msgid "Plugins"
1839
  msgstr "プラグイン"
languages/codepress-admin-columns-nl_NL.mo CHANGED
Binary file
languages/codepress-admin-columns-nl_NL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-02-13 07:02:22+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,9 +11,77 @@ msgstr ""
11
  "Language: nl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
- msgstr ""
17
 
18
  #: classes/Settings/Column/Time.php:14
19
  msgid "This will determine how the time will be displayed."
@@ -46,12 +114,12 @@ msgstr "Download"
46
  #: classes/Settings/Column/PostLink.php:78
47
  msgctxt "post"
48
  msgid "View Public %s Author Page"
49
- msgstr ""
50
 
51
  #: classes/Settings/Column/PostLink.php:77
52
  msgctxt "post"
53
  msgid "Edit %s Author"
54
- msgstr ""
55
 
56
  #: classes/Settings/Column/PostLink.php:76
57
  msgctxt "post"
@@ -65,32 +133,32 @@ msgstr "Bewerk %s"
65
 
66
  #: classes/Settings/Column/PostFormatIcon.php:29
67
  msgid "Use an icon instead of text for displaying."
68
- msgstr ""
69
 
70
  #: classes/Settings/Column/Post.php:86
71
  msgctxt "post"
72
  msgid "Featured Image"
73
- msgstr ""
74
 
75
  #: classes/Settings/Column/NumberOfItems.php:30
76
  msgid "Maximum number of items"
77
- msgstr ""
78
 
79
  #: classes/Settings/Column/NumberOfItems.php:29
80
  msgid "Number of Items"
81
- msgstr ""
82
 
83
  #: classes/Settings/Column/MissingImageSize.php:27
84
  msgid "Include sizes that are missing an image file."
85
- msgstr ""
86
 
87
  #: classes/Settings/Column/MissingImageSize.php:26
88
  msgid "Include missing sizes?"
89
- msgstr ""
90
 
91
  #: classes/Settings/Column/Meta.php:135
92
  msgid "Site Options"
93
- msgstr ""
94
 
95
  #: classes/Settings/Column/Meta.php:129
96
  msgid "current"
@@ -98,7 +166,7 @@ msgstr "huidig"
98
 
99
  #: classes/Settings/Column/Meta.php:126
100
  msgid "Network Site:"
101
- msgstr ""
102
 
103
  #: classes/Settings/Column/Meta.php:118
104
  msgid "Hidden"
@@ -106,15 +174,15 @@ msgstr "Verborgen"
106
 
107
  #: classes/Settings/Column/Meta.php:117
108
  msgid "Public"
109
- msgstr ""
110
 
111
  #: classes/Settings/Column/ExifData.php:83
112
  msgid "Keywords"
113
- msgstr ""
114
 
115
  #: classes/Settings/Column/ExifData.php:82
116
  msgid "Orientation"
117
- msgstr ""
118
 
119
  #: classes/Settings/Column/ExifData.php:77
120
  msgid "Copyright"
@@ -122,15 +190,15 @@ msgstr "Copyright"
122
 
123
  #: classes/Settings/Column/CustomField.php:17
124
  msgid "Custom field key"
125
- msgstr ""
126
 
127
  #: classes/Settings/Column/AttachmentDisplay.php:37
128
  msgid "Count"
129
- msgstr ""
130
 
131
  #: classes/Settings/Column/AttachmentDisplay.php:36
132
  msgid "Thumbnails"
133
- msgstr ""
134
 
135
  #: classes/Plugin/Updater.php:117
136
  msgid "Run the updater"
@@ -142,11 +210,11 @@ msgstr "We moeten de database updaten naar de laatste versie."
142
 
143
  #: classes/Helper/Post.php:144
144
  msgid "Missed schedule"
145
- msgstr ""
146
 
147
  #: classes/Helper/Post.php:140
148
  msgid "Scheduled"
149
- msgstr ""
150
 
151
  #: classes/Column/Post/TitleRaw.php:14
152
  msgid "Title Only"
@@ -154,39 +222,39 @@ msgstr "Alleen titel"
154
 
155
  #: classes/Column/Post/CommentStatus.php:17
156
  msgid "Allow Comments"
157
- msgstr ""
158
 
159
  #: classes/Column/Post/BeforeMoreTag.php:14
160
  msgid "More Tag"
161
- msgstr ""
162
 
163
  #: classes/Column/Menu.php:17
164
  msgid "Menu"
165
- msgstr ""
166
 
167
  #: classes/Column/Media/Dimensions.php:28
168
  msgid "Height : %s px"
169
- msgstr ""
170
 
171
  #: classes/Column/Media/Dimensions.php:28
172
  msgid "Width : %s px"
173
- msgstr ""
174
 
175
  #: classes/Column/Media/AvailableSizes.php:51
176
  msgid "Missing image file for size %s."
177
- msgstr ""
178
 
179
  #: classes/Column/Media/AvailableSizes.php:35
180
  msgid "original"
181
- msgstr ""
182
 
183
  #: classes/Column/Media/AlternateText.php:14
184
  msgid "Alternative Text"
185
- msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
- msgstr ""
190
 
191
  #: classes/Admin/Addon/NinjaForms.php:13
192
  msgid "Ninja Forms"
@@ -198,11 +266,11 @@ msgstr "The Events Calendar"
198
 
199
  #: classes/Settings/Column/StatusIcon.php:71
200
  msgid "Password protected"
201
- msgstr ""
202
 
203
  #: classes/Helper/Post.php:137
204
  msgid "Pending for review"
205
- msgstr ""
206
 
207
  #: classes/Helper/Post.php:134
208
  msgid "Draft"
@@ -218,12 +286,12 @@ msgstr "Privé"
218
 
219
  #: classes/Settings/Column/StatusIcon.php:29
220
  msgid "Use an icon instead of text for displaying the status."
221
- msgstr ""
222
 
223
  #: classes/Settings/Column/PostFormatIcon.php:28
224
  #: classes/Settings/Column/StatusIcon.php:28
225
  msgid "Use an icon?"
226
- msgstr ""
227
 
228
  #: classes/Helper/String.php:106
229
  msgid "&hellip;"
@@ -231,21 +299,21 @@ msgstr "&hellip;"
231
 
232
  #: classes/Column/Post/Excerpt.php:21
233
  msgid "Current excerpt is generated from the content."
234
- msgstr ""
235
 
236
  #: classes/Column/Post/Excerpt.php:21
237
  msgid "Excerpt is missing."
238
- msgstr ""
239
 
240
  #: classes/Settings/Column/User.php:71
241
  msgid "User Nicename"
242
  msgstr "Gebruiker schermnaam"
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr "Stuur mij de korting"
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr "Prijzen vanaf %s"
251
 
@@ -503,7 +571,7 @@ msgstr ", "
503
  msgid "Standard"
504
  msgstr "Standaard"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr "Volledig pad"
509
 
@@ -511,159 +579,159 @@ msgstr "Volledig pad"
511
  msgid "Discount is valid until %s"
512
  msgstr "Korting is geldig tot %s"
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr "Toon %s-knop bij tabel-weergave."
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr "Standaard is %s."
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr "aan"
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr "uit"
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr "Opmerking"
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "Instructies"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr "onze documentatie"
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr "Deze site maakt gebruik van enkele acties of filters die zijn veranderd. Lees %s om ze op te lossen."
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr "De Admin Columns plugin heeft enkele grote aanpassing gekregen in versie 4."
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] "De callback die wordt gebruikt is %s."
554
  msgstr[1] "De callbacks die worden gebruikt zijn %s."
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
  msgstr "Bekijk documentatie."
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr "De actie %s die wordt gebruikt op deze website is verouderd sinds %s."
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr "Het filter %s dat wordt gebruikt op deze website is verouderd sinds %s."
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr "Verouderde acties"
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr "Verouderde filters"
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
  msgstr "Hulp"
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
  msgstr "Sluiten"
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
  msgstr "Alle kolommen legen "
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr "Ik gebruik Admin Columns voor WordPress."
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
  msgstr "Je voornaam"
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
  msgstr "Je e-mailadres"
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr "Stuur je e-mail en wij sturen je een code voor %s korting."
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr "Krijg %s korting."
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
  msgstr "Extra kolommen voor:"
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr "Bewerk je kolom-inhoud rechtstreeks."
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
  msgstr "Pro"
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
  msgstr "Je hebt minstens één kolom nodig"
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
  msgstr "Beschikbaar"
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
  msgstr "Aangeraden"
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
  msgstr "%s kan niet worden geactiveerd."
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
  msgstr "%s succesvol geactiveerd."
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr "%s plugin succesvol uitgeschakeld."
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr "%s plugin succesvol geactiveerd."
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] "%s add-on vereist %s."
652
  msgstr[1] "%s add-ons vereisen %s."
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
  msgstr "hier"
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr "Klik %s om de plugin te activeren."
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr "%s plugin is geïnstalleerd, maar niet actief."
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr "%s plugin dient geïnstalleerd te zijn, om de add-on te laten werken."
669
 
@@ -683,59 +751,55 @@ msgstr "Pods"
683
  msgid "Imported"
684
  msgstr "Geïmporteerd"
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr "Meer weten over Pro"
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr "Import &amp; Expor-instellingen"
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr "Maak meerdere kolommenverzamelingen."
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr "Voeg filterbare kolom toe"
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr "Voeg sorteerbare kolom toe"
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr "Breng Admin Columns naar een hoger niveau:"
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
  msgstr "Upgraden naar"
713
 
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr "Krijg %s korting"
717
-
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangepast worden."
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr "Bezoek eenmalig het %s-scherm om alle beschikbare kolommen te laden"
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr "Herstel originele kolommen"
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr "Kolom-instellingen voor %s succesvol hersteld in originele staat."
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr "Bekijk %s-scherm"
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr "Ongeldige respons."
741
 
@@ -751,23 +815,23 @@ msgstr "Laat leeg om URL weer te geven"
751
  msgid "Link Label"
752
  msgstr "Link label"
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr "Hiervoor heeft u Admin Columns Pro nodig."
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr "Add-on bestaat niet."
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr "de add-ons-pagina"
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr "Wist je dat Admin Columns Pro een add-on heeft voor integratie met %s? Met de juiste licentie kun je onze add-ons downloaden via %s."
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Extra velden"
773
 
@@ -779,22 +843,28 @@ msgstr "AdminColumns.com"
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr "Pas de kolommen aan op de beheerschermen van post(types), pagina's, media, reacties en gebruikers met een eenvoudige drag-and-drop-interface."
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr "https://www.admincolumns.com"
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Kolommen bewerken"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr "Instellingen voor %s succesvol bijgewerkt."
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
800
 
@@ -802,17 +872,17 @@ msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
802
  msgid "No columns settings available."
803
  msgstr "Geen kolom instellingen beschikbaar."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
  msgstr "Gebruikers"
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
  msgstr "Media"
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
  msgstr "Links"
818
 
@@ -820,103 +890,103 @@ msgstr "Links"
820
  msgid "Comment"
821
  msgstr "Reactie"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
  msgstr "Reacties"
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
  msgstr "Ga naar deze add-on"
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
- msgstr "Downloadem & installeren"
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Activeren"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "Geïnstalleerd"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Deactiveren"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Actief"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Kolom toevoegen"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Sleep om te herordenen"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Ondersteuning"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr "Pro kopen"
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr "Tweeten"
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "Beoordelen"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr "Woohoo! We zijn blij dat te horen!"
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr "Forums"
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
  msgstr "Documenten"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr "Ben je blij met Admin Columns?"
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr "Waarschuwing. De kolomdata van %s wordt verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen met verwijderen."
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Bijwerken"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Instellingen opslaan"
922
 
@@ -924,7 +994,7 @@ msgstr "Instellingen opslaan"
924
  msgid "Add-ons"
925
  msgstr "Add-ons"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Instellingen"
930
 
@@ -932,32 +1002,32 @@ msgstr "Instellingen"
932
  msgid "Others"
933
  msgstr "Overige"
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr "Waarschuwing! ALLE gegevens van de opgeslagen beheerderskolommen zullen worden verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen"
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Herstel standaard instellingen"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Herstel Instellingen"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Bewaar"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Pas je Admin Column instellingen aan."
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Algemene Instellingen"
@@ -1020,7 +1090,7 @@ msgstr "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de w
1020
 
1021
  #: classes/Admin/Help/CustomField.php:18
1022
  msgid "The custom field column uses the custom fields from posts and users. There are 10 types which you can set."
1023
- msgstr ""
1024
 
1025
  #: classes/Admin/Help/Basics.php:29
1026
  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."
@@ -1058,19 +1128,19 @@ msgstr "Met deze plugin kun je bijkomende kolommen toevoegen en verwijderen van
1058
  msgid "Overview"
1059
  msgstr "Overzicht"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Standaard instellingen succesvol hersteld."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Admin Columns Instellingen"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr "%s werd gedeactiveerd."
1076
 
@@ -1118,13 +1188,14 @@ msgstr "klik hier"
1118
  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."
1119
  msgstr "We willen je niet storen, maar je gebruikt %s nu al een tijdje, en we vroegen ons af of je tevreden was met de plugin. Zo ja, zou je dan een review achter willen laten op WordPress.org? Als je niet blij bent met %s, %s a.u.b."
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr "Admin Columns Pro"
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1178,7 +1249,7 @@ msgstr "Naam"
1178
  msgid "Choose a column type."
1179
  msgstr "Kies een kolom type."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "Kloon"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Gebruiker Email"
1198
  msgid "User Login"
1199
  msgstr "Gebruikers login"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Achternaam"
1204
 
@@ -1227,7 +1298,7 @@ msgid "width"
1227
  msgstr "breedte"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Aangepast"
1233
 
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Registratie"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Post Type"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Aantal posts"
1276
  msgid "Nickname"
1277
  msgstr "Nickname"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Achternaam"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr "Reacties-telling"
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Verwijderen"
1291
 
@@ -1333,7 +1400,7 @@ msgstr "Ping status"
1333
  msgid "Permalink"
1334
  msgstr "Permalink"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr "Pad"
1339
 
@@ -1475,10 +1542,6 @@ msgstr "Deel van bestands locatie voor weergave"
1475
  msgid "Path scope"
1476
  msgstr "Path scope"
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Volledige pad"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr "Bestandsgrootte"
@@ -1536,7 +1599,7 @@ msgstr "Onderschrift"
1536
  msgid "Available Sizes"
1537
  msgstr "Beschikbare Afmetingen"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Bekijk"
1542
 
@@ -1633,7 +1696,7 @@ msgstr "Kleur"
1633
  #: classes/Admin/Help/CustomField.php:22
1634
  #: classes/Settings/Column/CustomFieldType.php:168
1635
  #: classes/Settings/Column/Image.php:71
1636
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1637
  msgid "Default"
1638
  msgstr "Standaard"
1639
 
@@ -1719,7 +1782,7 @@ msgstr "Goedgekeurd"
1719
  msgid "Agent"
1720
  msgstr "Agent"
1721
 
1722
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1723
  msgid "Edit"
1724
  msgstr "Bewerken"
1725
 
@@ -1730,20 +1793,20 @@ msgstr "Bewerken"
1730
  msgid "ID"
1731
  msgstr "ID"
1732
 
1733
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1734
  #: classes/Settings/Column/ActionIcons.php:22
1735
  #: classes/Settings/Column/MissingImageSize.php:22
1736
  #: classes/Settings/Column/PostFormatIcon.php:24
1737
- #: classes/Settings/Column/StatusIcon.php:24
1738
  #: classes/Settings/Column/Toggle.php:14
1739
  msgid "No"
1740
  msgstr "Nee"
1741
 
1742
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1743
  #: classes/Settings/Column/ActionIcons.php:21
1744
  #: classes/Settings/Column/MissingImageSize.php:21
1745
  #: classes/Settings/Column/PostFormatIcon.php:23
1746
- #: classes/Settings/Column/StatusIcon.php:23
1747
  #: classes/Settings/Column/Toggle.php:13
1748
  msgid "Yes"
1749
  msgstr "Ja"
@@ -1772,6 +1835,6 @@ msgstr "WooCommerce"
1772
  msgid "Advanced Custom Fields"
1773
  msgstr "Advanced Custom Fields"
1774
 
1775
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1776
  msgid "Plugins"
1777
  msgstr "Plugins"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-05-25 10:06:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: nl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr "Dit maakt de kolom sorteerbaar."
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr "Sorteren"
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr "Dit maakt de kolom filterbaar"
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr "Filteren"
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr "Exporteer kolomdata naar CSV."
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr "Export"
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr "Wijzig je content direct vanaf het overzicht."
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr "Wijzigen"
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr "Vanaf %s for 1 site"
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr "Verkrijg add-ons voor ACF, WooCommerce en meer"
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr "Maak meerdere kolomgroepen aan per overzicht"
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr "Exporteer alle kolomdata naar CSV"
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr "Wijzig direct je data vanaf het overzicht"
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr "Sorteer en filter op al je data"
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr "Upgrade naar PRO en breng Admin Columns naar het volgende niveau"
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr "Tevreden met Admin Columns?"
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr "Selecteer een type"
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
+ msgstr "WordPress tijd formaat"
85
 
86
  #: classes/Settings/Column/Time.php:14
87
  msgid "This will determine how the time will be displayed."
114
  #: classes/Settings/Column/PostLink.php:78
115
  msgctxt "post"
116
  msgid "View Public %s Author Page"
117
+ msgstr "Bekijk publieke %s auteurpagina"
118
 
119
  #: classes/Settings/Column/PostLink.php:77
120
  msgctxt "post"
121
  msgid "Edit %s Author"
122
+ msgstr "Bewerk %s auteur"
123
 
124
  #: classes/Settings/Column/PostLink.php:76
125
  msgctxt "post"
133
 
134
  #: classes/Settings/Column/PostFormatIcon.php:29
135
  msgid "Use an icon instead of text for displaying."
136
+ msgstr "Vertoon met een icoon in plaats van tekst."
137
 
138
  #: classes/Settings/Column/Post.php:86
139
  msgctxt "post"
140
  msgid "Featured Image"
141
+ msgstr "Uitgelichte afbeelding"
142
 
143
  #: classes/Settings/Column/NumberOfItems.php:30
144
  msgid "Maximum number of items"
145
+ msgstr "Maximale hoeveelheid items"
146
 
147
  #: classes/Settings/Column/NumberOfItems.php:29
148
  msgid "Number of Items"
149
+ msgstr "Hoeveelheid items"
150
 
151
  #: classes/Settings/Column/MissingImageSize.php:27
152
  msgid "Include sizes that are missing an image file."
153
+ msgstr "Gebruik ook groottes zonder afbeeldingsbestand."
154
 
155
  #: classes/Settings/Column/MissingImageSize.php:26
156
  msgid "Include missing sizes?"
157
+ msgstr "Gebruik ook ontbrekende groottes?"
158
 
159
  #: classes/Settings/Column/Meta.php:135
160
  msgid "Site Options"
161
+ msgstr "Site opties"
162
 
163
  #: classes/Settings/Column/Meta.php:129
164
  msgid "current"
166
 
167
  #: classes/Settings/Column/Meta.php:126
168
  msgid "Network Site:"
169
+ msgstr "Netwerk site"
170
 
171
  #: classes/Settings/Column/Meta.php:118
172
  msgid "Hidden"
174
 
175
  #: classes/Settings/Column/Meta.php:117
176
  msgid "Public"
177
+ msgstr "Publiek"
178
 
179
  #: classes/Settings/Column/ExifData.php:83
180
  msgid "Keywords"
181
+ msgstr "Trefwoorden"
182
 
183
  #: classes/Settings/Column/ExifData.php:82
184
  msgid "Orientation"
185
+ msgstr "Oriëntatie"
186
 
187
  #: classes/Settings/Column/ExifData.php:77
188
  msgid "Copyright"
190
 
191
  #: classes/Settings/Column/CustomField.php:17
192
  msgid "Custom field key"
193
+ msgstr "Custom field key"
194
 
195
  #: classes/Settings/Column/AttachmentDisplay.php:37
196
  msgid "Count"
197
+ msgstr "Aantal"
198
 
199
  #: classes/Settings/Column/AttachmentDisplay.php:36
200
  msgid "Thumbnails"
201
+ msgstr "Thumbnails"
202
 
203
  #: classes/Plugin/Updater.php:117
204
  msgid "Run the updater"
210
 
211
  #: classes/Helper/Post.php:144
212
  msgid "Missed schedule"
213
+ msgstr "Inplannen gemist"
214
 
215
  #: classes/Helper/Post.php:140
216
  msgid "Scheduled"
217
+ msgstr "Ingepland"
218
 
219
  #: classes/Column/Post/TitleRaw.php:14
220
  msgid "Title Only"
222
 
223
  #: classes/Column/Post/CommentStatus.php:17
224
  msgid "Allow Comments"
225
+ msgstr "Reacties toestaan"
226
 
227
  #: classes/Column/Post/BeforeMoreTag.php:14
228
  msgid "More Tag"
229
+ msgstr "More Tag"
230
 
231
  #: classes/Column/Menu.php:17
232
  msgid "Menu"
233
+ msgstr "Menu"
234
 
235
  #: classes/Column/Media/Dimensions.php:28
236
  msgid "Height : %s px"
237
+ msgstr "Hoogte: %s px"
238
 
239
  #: classes/Column/Media/Dimensions.php:28
240
  msgid "Width : %s px"
241
+ msgstr "Breedte: %s px"
242
 
243
  #: classes/Column/Media/AvailableSizes.php:51
244
  msgid "Missing image file for size %s."
245
+ msgstr "Ontbrekend afbeeldingsbestand voor grootte %s."
246
 
247
  #: classes/Column/Media/AvailableSizes.php:35
248
  msgid "original"
249
+ msgstr "Origineel"
250
 
251
  #: classes/Column/Media/AlternateText.php:14
252
  msgid "Alternative Text"
253
+ msgstr "Alternatieve tekst"
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
+ msgstr "Bezoek alsjeblieft de %s pagina."
258
 
259
  #: classes/Admin/Addon/NinjaForms.php:13
260
  msgid "Ninja Forms"
266
 
267
  #: classes/Settings/Column/StatusIcon.php:71
268
  msgid "Password protected"
269
+ msgstr "Wachtwoord beschermd"
270
 
271
  #: classes/Helper/Post.php:137
272
  msgid "Pending for review"
273
+ msgstr "Wachtend op beoordeling"
274
 
275
  #: classes/Helper/Post.php:134
276
  msgid "Draft"
286
 
287
  #: classes/Settings/Column/StatusIcon.php:29
288
  msgid "Use an icon instead of text for displaying the status."
289
+ msgstr "Toon een icoon in plaats van een tekst voor het tonen van de status."
290
 
291
  #: classes/Settings/Column/PostFormatIcon.php:28
292
  #: classes/Settings/Column/StatusIcon.php:28
293
  msgid "Use an icon?"
294
+ msgstr "Icoon gebruiken?"
295
 
296
  #: classes/Helper/String.php:106
297
  msgid "&hellip;"
299
 
300
  #: classes/Column/Post/Excerpt.php:21
301
  msgid "Current excerpt is generated from the content."
302
+ msgstr "Huidige samenvatting is gegenereerd op basis de inhoud."
303
 
304
  #: classes/Column/Post/Excerpt.php:21
305
  msgid "Excerpt is missing."
306
+ msgstr "Samenvatting niet aanwezig."
307
 
308
  #: classes/Settings/Column/User.php:71
309
  msgid "User Nicename"
310
  msgstr "Gebruiker schermnaam"
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr "Stuur mij de korting"
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr "Prijzen vanaf %s"
319
 
571
  msgid "Standard"
572
  msgstr "Standaard"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr "Volledig pad"
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr "Korting is geldig tot %s"
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr "Toon %s-knop bij tabel-weergave."
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr "Standaard is %s."
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr "aan"
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr "uit"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr "Opmerking"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "Instructies"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr "onze documentatie"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr "Deze site maakt gebruik van enkele acties of filters die zijn veranderd. Lees %s om ze op te lossen."
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr "De Admin Columns plugin heeft enkele grote aanpassing gekregen in versie 4."
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] "De callback die wordt gebruikt is %s."
622
  msgstr[1] "De callbacks die worden gebruikt zijn %s."
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
  msgstr "Bekijk documentatie."
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr "De actie %s die wordt gebruikt op deze website is verouderd sinds %s."
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr "Het filter %s dat wordt gebruikt op deze website is verouderd sinds %s."
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr "Verouderde acties"
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr "Verouderde filters"
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
  msgstr "Hulp"
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
  msgstr "Sluiten"
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
  msgstr "Alle kolommen legen "
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr "Ik gebruik Admin Columns voor WordPress."
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
  msgstr "Je voornaam"
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
  msgstr "Je e-mailadres"
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr "Stuur je e-mail en wij sturen je een code voor %s korting."
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr "Krijg %s korting."
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
  msgstr "Extra kolommen voor:"
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr "Bewerk je kolom-inhoud rechtstreeks."
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
  msgstr "Pro"
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
  msgstr "Je hebt minstens één kolom nodig"
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
  msgstr "Beschikbaar"
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
  msgstr "Aangeraden"
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
  msgstr "%s kan niet worden geactiveerd."
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
  msgstr "%s succesvol geactiveerd."
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr "%s plugin succesvol uitgeschakeld."
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr "%s plugin succesvol geactiveerd."
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] "%s add-on vereist %s."
720
  msgstr[1] "%s add-ons vereisen %s."
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
  msgstr "hier"
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr "Klik %s om de plugin te activeren."
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr "%s plugin is geïnstalleerd, maar niet actief."
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr "%s plugin dient geïnstalleerd te zijn, om de add-on te laten werken."
737
 
751
  msgid "Imported"
752
  msgstr "Geïmporteerd"
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr "Meer weten over Pro"
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr "Import &amp; Expor-instellingen"
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr "Maak meerdere kolommenverzamelingen."
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr "Voeg filterbare kolom toe"
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr "Voeg sorteerbare kolom toe"
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr "Breng Admin Columns naar een hoger niveau:"
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
  msgstr "Upgraden naar"
781
 
782
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangepast worden."
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr "Bezoek eenmalig het %s-scherm om alle beschikbare kolommen te laden"
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr "Herstel originele kolommen"
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr "Kolom-instellingen voor %s succesvol hersteld in originele staat."
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr "Bekijk %s-scherm"
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr "Ongeldige respons."
805
 
815
  msgid "Link Label"
816
  msgstr "Link label"
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr "Hiervoor heeft u Admin Columns Pro nodig."
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr "Add-on bestaat niet."
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr "de add-ons-pagina"
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr "Wist je dat Admin Columns Pro een add-on heeft voor integratie met %s? Met de juiste licentie kun je onze add-ons downloaden via %s."
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Extra velden"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr "Pas de kolommen aan op de beheerschermen van post(types), pagina's, media, reacties en gebruikers met een eenvoudige drag-and-drop-interface."
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr "https://www.admincolumns.com"
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Kolommen bewerken"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Upgraden"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr "Instellingen voor %s succesvol bijgewerkt."
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Geen kolom instellingen beschikbaar."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
  msgstr "Gebruikers"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
  msgstr "Media"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
  msgstr "Links"
888
 
890
  msgid "Comment"
891
  msgstr "Reactie"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
  msgstr "Reacties"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
  msgstr "Ga naar deze add-on"
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
+ msgstr "Downloaden & installeren"
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Activeren"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "Geïnstalleerd"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Deactiveren"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Actief"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Kolom toevoegen"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Sleep om te herordenen"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Ondersteuning"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr "Pro kopen"
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr "Tweeten"
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "Beoordelen"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr "Woohoo! We zijn blij dat te horen!"
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr "Forums"
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
  msgstr "Documenten"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr "Ben je blij met Admin Columns?"
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr "Waarschuwing. De kolomdata van %s wordt verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen met verwijderen."
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Bijwerken"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Instellingen opslaan"
992
 
994
  msgid "Add-ons"
995
  msgstr "Add-ons"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Instellingen"
1000
 
1002
  msgid "Others"
1003
  msgstr "Overige"
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr "Waarschuwing! ALLE gegevens van de opgeslagen beheerderskolommen zullen worden verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen"
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Herstel standaard instellingen"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Herstel Instellingen"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Bewaar"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Pas je Admin Column instellingen aan."
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Algemene Instellingen"
1090
 
1091
  #: classes/Admin/Help/CustomField.php:18
1092
  msgid "The custom field column uses the custom fields from posts and users. There are 10 types which you can set."
1093
+ msgstr "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. Er zijn 10 typen welke je kan gebruiken."
1094
 
1095
  #: classes/Admin/Help/Basics.php:29
1096
  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."
1128
  msgid "Overview"
1129
  msgstr "Overzicht"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Standaard instellingen succesvol hersteld."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Admin Columns Instellingen"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr "%s werd gedeactiveerd."
1146
 
1188
  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."
1189
  msgstr "We willen je niet storen, maar je gebruikt %s nu al een tijdje, en we vroegen ons af of je tevreden was met de plugin. Zo ja, zou je dan een review achter willen laten op WordPress.org? Als je niet blij bent met %s, %s a.u.b."
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr "Admin Columns Pro"
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1249
  msgid "Choose a column type."
1250
  msgstr "Kies een kolom type."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "Kloon"
1255
 
1269
  msgid "User Login"
1270
  msgstr "Gebruikers login"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Achternaam"
1275
 
1298
  msgstr "breedte"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Aangepast"
1304
 
1335
  msgstr "Registratie"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Post Type"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Nickname"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr "Reacties-telling"
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Verwijderen"
1358
 
1400
  msgid "Permalink"
1401
  msgstr "Permalink"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr "Pad"
1406
 
1542
  msgid "Path scope"
1543
  msgstr "Path scope"
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr "Bestandsgrootte"
1599
  msgid "Available Sizes"
1600
  msgstr "Beschikbare Afmetingen"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Bekijk"
1605
 
1696
  #: classes/Admin/Help/CustomField.php:22
1697
  #: classes/Settings/Column/CustomFieldType.php:168
1698
  #: classes/Settings/Column/Image.php:71
1699
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1700
  msgid "Default"
1701
  msgstr "Standaard"
1702
 
1782
  msgid "Agent"
1783
  msgstr "Agent"
1784
 
1785
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1786
  msgid "Edit"
1787
  msgstr "Bewerken"
1788
 
1793
  msgid "ID"
1794
  msgstr "ID"
1795
 
1796
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1797
  #: classes/Settings/Column/ActionIcons.php:22
1798
  #: classes/Settings/Column/MissingImageSize.php:22
1799
  #: classes/Settings/Column/PostFormatIcon.php:24
1800
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1801
  #: classes/Settings/Column/Toggle.php:14
1802
  msgid "No"
1803
  msgstr "Nee"
1804
 
1805
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1806
  #: classes/Settings/Column/ActionIcons.php:21
1807
  #: classes/Settings/Column/MissingImageSize.php:21
1808
  #: classes/Settings/Column/PostFormatIcon.php:23
1809
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1810
  #: classes/Settings/Column/Toggle.php:13
1811
  msgid "Yes"
1812
  msgstr "Ja"
1835
  msgid "Advanced Custom Fields"
1836
  msgstr "Advanced Custom Fields"
1837
 
1838
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1839
  msgid "Plugins"
1840
  msgstr "Plugins"
languages/codepress-admin-columns-pl_PL.mo CHANGED
Binary file
languages/codepress-admin-columns-pl_PL.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: pl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,161 +579,161 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
  msgstr[2] ""
556
 
557
- #: classes/Admin/Page/Help.php:258
558
  msgid "View documentation"
559
  msgstr ""
560
 
561
- #: classes/Admin/Page/Help.php:203
562
  msgid "The action %s used on this website is deprecated since %s."
563
  msgstr ""
564
 
565
- #: classes/Admin/Page/Help.php:185
566
  msgid "The filter %s used on this website is deprecated since %s."
567
  msgstr ""
568
 
569
- #: classes/Admin/Page/Help.php:172
570
  msgid "Deprecated Actions"
571
  msgstr ""
572
 
573
- #: classes/Admin/Page/Help.php:171
574
  msgid "Deprecated Filters"
575
  msgstr ""
576
 
577
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
578
  msgid "Help"
579
  msgstr ""
580
 
581
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
582
  msgid "Close"
583
  msgstr ""
584
 
585
- #: classes/Admin/Page/Columns.php:741
586
  msgid "Clear all columns "
587
  msgstr ""
588
 
589
- #: classes/Admin/Page/Columns.php:648
590
  msgid "I'm using Admin Columns for WordPress!"
591
  msgstr ""
592
 
593
- #: classes/Admin/Page/Columns.php:590
594
  msgid "Your First Name"
595
  msgstr ""
596
 
597
- #: classes/Admin/Page/Columns.php:589
598
  msgid "Your Email"
599
  msgstr ""
600
 
601
- #: classes/Admin/Page/Columns.php:582
602
  msgid "Submit your email and we'll send you a discount for %s off."
603
  msgstr ""
604
 
605
- #: classes/Admin/Page/Columns.php:578
606
  msgid "Get %s Off!"
607
  msgstr ""
608
 
609
- #: classes/Admin/Page/Columns.php:545
610
  msgid "Extra Columns for:"
611
  msgstr ""
612
 
613
- #: classes/Admin/Page/Columns.php:531
614
  msgid "Edit your column content directly"
615
  msgstr ""
616
 
617
- #: classes/Admin/Page/Columns.php:519
618
  msgid "Pro"
619
  msgstr ""
620
 
621
- #: classes/Admin/Page/Columns.php:301
622
  msgid "You need at least one column"
623
  msgstr ""
624
 
625
- #: classes/Admin/Page/Addons.php:293
626
  msgid "Available"
627
  msgstr ""
628
 
629
- #: classes/Admin/Page/Addons.php:292
630
  msgid "Recommended"
631
  msgstr ""
632
 
633
- #: classes/Admin/Page/Addons.php:113
634
  msgid "%s could not be activated."
635
  msgstr ""
636
 
637
- #: classes/Admin/Page/Addons.php:103
638
  msgid "%s successfully activated."
639
  msgstr ""
640
 
641
- #: classes/Admin/Page/Addons.php:98
642
  msgid "%s plugin successfully deactivated."
643
  msgstr ""
644
 
645
- #: classes/Admin/Page/Addons.php:97
646
  msgid "%s plugin successfully activated."
647
  msgstr ""
648
 
649
- #: classes/Admin/Page/Addons.php:64
650
  msgid "%s add-on requires %s."
651
  msgid_plural "%s add-ons requires %s."
652
  msgstr[0] ""
653
  msgstr[1] ""
654
  msgstr[2] ""
655
 
656
- #: classes/Admin/Page/Addons.php:51
657
  msgid "here"
658
  msgstr ""
659
 
660
- #: classes/Admin/Page/Addons.php:51
661
  msgid "Click %s to activate the plugin."
662
  msgstr ""
663
 
664
- #: classes/Admin/Page/Addons.php:48
665
  msgid "%s plugin is installed, but not active."
666
  msgstr ""
667
 
668
- #: classes/Admin/Page/Addons.php:46
669
  msgid "%s plugin needs to be installed for the add-on to work."
670
  msgstr ""
671
 
@@ -685,59 +753,55 @@ msgstr ""
685
  msgid "Imported"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:561
689
  msgid "Learn more about Pro"
690
  msgstr ""
691
 
692
- #: classes/Admin/Page/Columns.php:533
693
  msgid "Import &amp; Export settings"
694
  msgstr ""
695
 
696
- #: classes/Admin/Page/Columns.php:532
697
  msgid "Create multiple columns sets"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Columns.php:530
701
  msgid "Add filterable columns"
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Columns.php:529
705
  msgid "Add sortable columns"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:524
709
  msgid "Take Admin Columns to the next level:"
710
  msgstr ""
711
 
712
- #: classes/Admin/Page/Columns.php:519
713
  msgid "Upgrade to"
714
  msgstr ""
715
 
716
- #: classes/Admin/Promo.php:134
717
- msgid "Get %s Off"
718
- msgstr ""
719
-
720
- #: classes/Admin/Page/Columns.php:431
721
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:221
725
  msgid "Please visit the %s screen once to load all available columns"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:500
729
  msgid "Restore columns"
730
  msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:147
733
  msgid "Settings for %s restored successfully."
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:308
737
  msgid "View %s screen"
738
  msgstr ""
739
 
740
- #: classes/Admin/Page/Columns.php:70
741
  msgid "Invalid response."
742
  msgstr ""
743
 
@@ -753,23 +817,23 @@ msgstr ""
753
  msgid "Link Label"
754
  msgstr ""
755
 
756
- #: classes/Admin/Page/Addons.php:220
757
  msgid "You need Admin Columns Pro."
758
  msgstr ""
759
 
760
- #: classes/Admin/Page/Addons.php:214
761
  msgid "Addon does not exist."
762
  msgstr ""
763
 
764
- #: classes/Admin/Page/Addons.php:176
765
  msgid "the addons page"
766
  msgstr ""
767
 
768
- #: classes/Admin/Page/Addons.php:176
769
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
770
  msgstr ""
771
 
772
- #: codepress-admin-columns.php:300
773
  msgid "Custom Fields"
774
  msgstr "Pola niestandardowe"
775
 
@@ -781,22 +845,28 @@ msgstr ""
781
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
782
  msgstr ""
783
 
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Plugin URI of the plugin/theme
786
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
787
  #. Author URI of the plugin/theme
788
  msgid "https://www.admincolumns.com"
789
  msgstr ""
790
 
791
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
792
  msgid "Edit columns"
793
  msgstr "Edytuj kolumny"
794
 
795
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
796
  msgid "Settings for %s updated successfully."
797
  msgstr ""
798
 
799
- #: classes/Admin/Page/Columns.php:315
800
  msgid "You are trying to store the same settings for %s."
801
  msgstr "Próbujesz przywrócić te same ustawienia dla %s."
802
 
@@ -804,17 +874,17 @@ msgstr "Próbujesz przywrócić te same ustawienia dla %s."
804
  msgid "No columns settings available."
805
  msgstr "Brak dostępnych ustawień kolumn."
806
 
807
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
808
  msgid "Users"
809
  msgstr "Użytkownicy"
810
 
811
  #: classes/ListScreen/Media.php:16
812
  #: classes/Settings/Column/CustomFieldType.php:112
813
- #: codepress-admin-columns.php:432
814
  msgid "Media"
815
  msgstr ""
816
 
817
- #: codepress-admin-columns.php:434
818
  msgid "Links"
819
  msgstr ""
820
 
@@ -822,103 +892,103 @@ msgstr ""
822
  msgid "Comment"
823
  msgstr ""
824
 
825
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
826
  msgid "Comments"
827
  msgstr ""
828
 
829
- #: classes/Admin/Page/Addons.php:420
830
  msgid "Get this add-on"
831
  msgstr ""
832
 
833
- #: classes/Admin/Page/Addons.php:418
834
  msgid "Download & Install"
835
  msgstr ""
836
 
837
- #: classes/Admin/Page/Addons.php:412
838
  msgid "Activate"
839
  msgstr ""
840
 
841
- #: classes/Admin/Page/Addons.php:291
842
  msgid "Installed"
843
  msgstr ""
844
 
845
- #: classes/Admin/Page/Addons.php:408
846
  msgid "Deactivate"
847
  msgstr ""
848
 
849
- #: classes/Admin/Page/Addons.php:405
850
  msgid "Active"
851
  msgstr ""
852
 
853
- #: classes/Admin/Page/Columns.php:747
854
  msgid "Add Column"
855
  msgstr "Dodaj kolumnę"
856
 
857
- #: classes/Admin/Page/Columns.php:727
858
  msgid "Drag and drop to reorder"
859
  msgstr "Przeciągnij i opuść aby zmienić kolejność"
860
 
861
- #: classes/Admin/Page/Columns.php:676
862
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
863
  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>"
864
 
865
- #: classes/Admin/Page/Columns.php:672
866
  msgid "Check the <strong>Help</strong> section in the top-right screen."
867
  msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
868
 
869
- #: classes/Admin/Page/Columns.php:667
870
  msgid "Support"
871
  msgstr "Wsparcie"
872
 
873
- #: classes/Admin/Page/Columns.php:655
874
  msgid "Buy Pro"
875
  msgstr ""
876
 
877
- #: classes/Admin/Page/Columns.php:649
878
  msgid "Tweet"
879
  msgstr ""
880
 
881
- #: classes/Admin/Page/Columns.php:643
882
  msgid "Rate"
883
  msgstr ""
884
 
885
- #: classes/Admin/Page/Columns.php:638
886
  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!"
887
  msgstr ""
888
 
889
- #: classes/Admin/Page/Columns.php:635
890
  msgid "Woohoo! We're glad to hear that!"
891
  msgstr ""
892
 
893
- #: classes/Admin/Page/Columns.php:625
894
  msgid "Forums"
895
  msgstr "Fora"
896
 
897
- #: classes/Admin/Page/Columns.php:620
898
  msgid "Docs"
899
  msgstr ""
900
 
901
- #: classes/Admin/Page/Columns.php:615
902
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
903
  msgstr ""
904
 
905
- #: classes/Admin/Page/Columns.php:612
906
  msgid "What's wrong? Need help? Let us know!"
907
  msgstr ""
908
 
909
- #: classes/Admin/Page/Columns.php:602
910
  msgid "Are you happy with Admin Columns?"
911
  msgstr ""
912
 
913
- #: classes/Admin/Page/Columns.php:499
914
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
915
  msgstr ""
916
 
917
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
918
  msgid "Update"
919
  msgstr "Aktualizuj"
920
 
921
- #: classes/Admin/Page/Columns.php:477
922
  msgid "Store settings"
923
  msgstr "Zapisz ustawienia"
924
 
@@ -926,7 +996,7 @@ msgstr "Zapisz ustawienia"
926
  msgid "Add-ons"
927
  msgstr ""
928
 
929
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
930
  msgid "Settings"
931
  msgstr "Ustawienia"
932
 
@@ -934,32 +1004,32 @@ msgstr "Ustawienia"
934
  msgid "Others"
935
  msgstr ""
936
 
937
- #: classes/Admin/Page/Settings.php:229
938
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
939
  msgstr ""
940
 
941
- #: classes/Admin/Page/Settings.php:229
942
  msgid "Restore default settings"
943
  msgstr "Przywróć ustawienia domyślne"
944
 
945
- #: classes/Admin/Page/Settings.php:221
946
  msgid "This will delete all column settings and restore the default settings."
947
  msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
948
 
949
- #: classes/Admin/Page/Settings.php:220
950
  msgid "Restore Settings"
951
  msgstr "Przywróć ustawienia"
952
 
953
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
954
- #: classes/Admin/Page/Settings.php:179
955
  msgid "Save"
956
  msgstr "Zapisz"
957
 
958
- #: classes/Admin/Page/Settings.php:161
959
  msgid "Customize your Admin Columns settings."
960
  msgstr "Zmodyfikuj ustawienia Edytora kolumn."
961
 
962
- #: classes/Admin/Page/Settings.php:160
963
  #: classes/Settings/Column/DateTimeFormat.php:39
964
  msgid "General Settings"
965
  msgstr "Ustawienia ogólne"
@@ -1060,19 +1130,19 @@ msgstr "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów
1060
  msgid "Overview"
1061
  msgstr "Przegląd"
1062
 
1063
- #: classes/Admin/Page/Settings.php:101
1064
  msgid "Default settings succesfully restored."
1065
  msgstr "Domyślne ustawienia zostały przywrócone."
1066
 
1067
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1068
  msgid "%s column is already present and can not be duplicated."
1069
  msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
1070
 
1071
- #: classes/Admin.php:127
1072
  msgid "Admin Columns Settings"
1073
  msgstr "Ustawienia edytora kolumn"
1074
 
1075
- #: classes/Admin/Page/Addons.php:104
1076
  msgid "%s successfully deactivated."
1077
  msgstr ""
1078
 
@@ -1120,13 +1190,14 @@ msgstr ""
1120
  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."
1121
  msgstr ""
1122
 
1123
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1124
  msgid "Admin Columns Pro"
1125
  msgstr ""
1126
 
1127
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1128
  #. Plugin Name of the plugin/theme
1129
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1130
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1131
  #: classes/Plugin/Updater.php:114
1132
  msgid "Admin Columns"
@@ -1180,7 +1251,7 @@ msgstr "Nazwa"
1180
  msgid "Choose a column type."
1181
  msgstr "Wybierz typ kolumny."
1182
 
1183
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1184
  msgid "Clone"
1185
  msgstr ""
1186
 
@@ -1200,7 +1271,7 @@ msgstr "Email użytkownika"
1200
  msgid "User Login"
1201
  msgstr "Login użytkownika"
1202
 
1203
- #: classes/Settings/Column/User.php:65
1204
  msgid "Last Name"
1205
  msgstr "Nazwisko"
1206
 
@@ -1229,7 +1300,7 @@ msgid "width"
1229
  msgstr "szerokość"
1230
 
1231
  #: classes/Settings/Column/CustomFieldType.php:153
1232
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1233
  msgid "Custom"
1234
  msgstr "Włąsne"
1235
 
@@ -1266,7 +1337,7 @@ msgid "Registered"
1266
  msgstr "Zarejestrowany"
1267
 
1268
  #: classes/Settings/Column/CustomFieldType.php:80
1269
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1270
  msgid "Post Type"
1271
  msgstr "Typ wpisu"
1272
 
@@ -1278,16 +1349,12 @@ msgstr "Liczba wpisów"
1278
  msgid "Nickname"
1279
  msgstr "Pseudonim"
1280
 
1281
- #: classes/Column/User/LastName.php:14
1282
- msgid "Last name"
1283
- msgstr "Nazwisko"
1284
-
1285
  #: classes/Column/Post/CommentCount.php:17
1286
  #: classes/Column/User/CommentCount.php:14
1287
  msgid "Comment Count"
1288
  msgstr ""
1289
 
1290
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1291
  msgid "Remove"
1292
  msgstr "Usuń"
1293
 
@@ -1335,7 +1402,7 @@ msgstr ""
1335
  msgid "Permalink"
1336
  msgstr ""
1337
 
1338
- #: classes/Column/Post/Path.php:16
1339
  msgid "Path"
1340
  msgstr ""
1341
 
@@ -1479,10 +1546,6 @@ msgstr ""
1479
  msgid "Path scope"
1480
  msgstr ""
1481
 
1482
- #: classes/Settings/Column/PathScope.php:24
1483
- msgid "Full path"
1484
- msgstr "Pełna ścieżka"
1485
-
1486
  #: classes/Column/Media/FileSize.php:14
1487
  msgid "File Size"
1488
  msgstr ""
@@ -1540,7 +1603,7 @@ msgstr "Tytuł"
1540
  msgid "Available Sizes"
1541
  msgstr "Dostępne rozmiary"
1542
 
1543
- #: classes/Admin/Page/Columns.php:463
1544
  msgid "View"
1545
  msgstr "Zobacz"
1546
 
@@ -1635,7 +1698,7 @@ msgstr "Kolor"
1635
  #: classes/Admin/Help/CustomField.php:22
1636
  #: classes/Settings/Column/CustomFieldType.php:168
1637
  #: classes/Settings/Column/Image.php:71
1638
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1639
  msgid "Default"
1640
  msgstr "Domyślny"
1641
 
@@ -1721,7 +1784,7 @@ msgstr "Zatwierdzona"
1721
  msgid "Agent"
1722
  msgstr "Przeglądarka"
1723
 
1724
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1725
  msgid "Edit"
1726
  msgstr "Edytuj"
1727
 
@@ -1732,20 +1795,20 @@ msgstr "Edytuj"
1732
  msgid "ID"
1733
  msgstr "ID"
1734
 
1735
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1736
  #: classes/Settings/Column/ActionIcons.php:22
1737
  #: classes/Settings/Column/MissingImageSize.php:22
1738
  #: classes/Settings/Column/PostFormatIcon.php:24
1739
- #: classes/Settings/Column/StatusIcon.php:24
1740
  #: classes/Settings/Column/Toggle.php:14
1741
  msgid "No"
1742
  msgstr "Nie"
1743
 
1744
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1745
  #: classes/Settings/Column/ActionIcons.php:21
1746
  #: classes/Settings/Column/MissingImageSize.php:21
1747
  #: classes/Settings/Column/PostFormatIcon.php:23
1748
- #: classes/Settings/Column/StatusIcon.php:23
1749
  #: classes/Settings/Column/Toggle.php:13
1750
  msgid "Yes"
1751
  msgstr "Tak"
@@ -1774,6 +1837,6 @@ msgstr ""
1774
  msgid "Advanced Custom Fields"
1775
  msgstr ""
1776
 
1777
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1778
  msgid "Plugins"
1779
  msgstr ""
11
  "Language: pl\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
  msgstr[2] ""
624
 
625
+ #: classes/Admin/Page/Help.php:263
626
  msgid "View documentation"
627
  msgstr ""
628
 
629
+ #: classes/Admin/Page/Help.php:208
630
  msgid "The action %s used on this website is deprecated since %s."
631
  msgstr ""
632
 
633
+ #: classes/Admin/Page/Help.php:190
634
  msgid "The filter %s used on this website is deprecated since %s."
635
  msgstr ""
636
 
637
+ #: classes/Admin/Page/Help.php:177
638
  msgid "Deprecated Actions"
639
  msgstr ""
640
 
641
+ #: classes/Admin/Page/Help.php:176
642
  msgid "Deprecated Filters"
643
  msgstr ""
644
 
645
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
646
  msgid "Help"
647
  msgstr ""
648
 
649
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
650
  msgid "Close"
651
  msgstr ""
652
 
653
+ #: classes/Admin/Page/Columns.php:744
654
  msgid "Clear all columns "
655
  msgstr ""
656
 
657
+ #: classes/Admin/Page/Columns.php:651
658
  msgid "I'm using Admin Columns for WordPress!"
659
  msgstr ""
660
 
661
+ #: classes/Admin/Page/Columns.php:593
662
  msgid "Your First Name"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:592
666
  msgid "Your Email"
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:585
670
  msgid "Submit your email and we'll send you a discount for %s off."
671
  msgstr ""
672
 
673
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
674
  msgid "Get %s Off!"
675
  msgstr ""
676
 
677
+ #: classes/Admin/Page/Columns.php:548
678
  msgid "Extra Columns for:"
679
  msgstr ""
680
 
681
+ #: classes/Admin/Page/Columns.php:534
682
  msgid "Edit your column content directly"
683
  msgstr ""
684
 
685
+ #: classes/Admin/Page/Columns.php:522
686
  msgid "Pro"
687
  msgstr ""
688
 
689
+ #: classes/Admin/Page/Columns.php:304
690
  msgid "You need at least one column"
691
  msgstr ""
692
 
693
+ #: classes/Admin/Page/Addons.php:297
694
  msgid "Available"
695
  msgstr ""
696
 
697
+ #: classes/Admin/Page/Addons.php:296
698
  msgid "Recommended"
699
  msgstr ""
700
 
701
+ #: classes/Admin/Page/Addons.php:117
702
  msgid "%s could not be activated."
703
  msgstr ""
704
 
705
+ #: classes/Admin/Page/Addons.php:107
706
  msgid "%s successfully activated."
707
  msgstr ""
708
 
709
+ #: classes/Admin/Page/Addons.php:102
710
  msgid "%s plugin successfully deactivated."
711
  msgstr ""
712
 
713
+ #: classes/Admin/Page/Addons.php:101
714
  msgid "%s plugin successfully activated."
715
  msgstr ""
716
 
717
+ #: classes/Admin/Page/Addons.php:69
718
  msgid "%s add-on requires %s."
719
  msgid_plural "%s add-ons requires %s."
720
  msgstr[0] ""
721
  msgstr[1] ""
722
  msgstr[2] ""
723
 
724
+ #: classes/Admin/Page/Addons.php:56
725
  msgid "here"
726
  msgstr ""
727
 
728
+ #: classes/Admin/Page/Addons.php:56
729
  msgid "Click %s to activate the plugin."
730
  msgstr ""
731
 
732
+ #: classes/Admin/Page/Addons.php:53
733
  msgid "%s plugin is installed, but not active."
734
  msgstr ""
735
 
736
+ #: classes/Admin/Page/Addons.php:51
737
  msgid "%s plugin needs to be installed for the add-on to work."
738
  msgstr ""
739
 
753
  msgid "Imported"
754
  msgstr ""
755
 
756
+ #: classes/Admin/Page/Columns.php:564
757
  msgid "Learn more about Pro"
758
  msgstr ""
759
 
760
+ #: classes/Admin/Page/Columns.php:536
761
  msgid "Import &amp; Export settings"
762
  msgstr ""
763
 
764
+ #: classes/Admin/Page/Columns.php:535
765
  msgid "Create multiple columns sets"
766
  msgstr ""
767
 
768
+ #: classes/Admin/Page/Columns.php:533
769
  msgid "Add filterable columns"
770
  msgstr ""
771
 
772
+ #: classes/Admin/Page/Columns.php:532
773
  msgid "Add sortable columns"
774
  msgstr ""
775
 
776
+ #: classes/Admin/Page/Columns.php:527
777
  msgid "Take Admin Columns to the next level:"
778
  msgstr ""
779
 
780
+ #: classes/Admin/Page/Columns.php:522
781
  msgid "Upgrade to"
782
  msgstr ""
783
 
784
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
785
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
786
  msgstr ""
787
 
788
+ #: classes/Admin/Page/Columns.php:224
789
  msgid "Please visit the %s screen once to load all available columns"
790
  msgstr ""
791
 
792
+ #: classes/Admin/Page/Columns.php:503
793
  msgid "Restore columns"
794
  msgstr ""
795
 
796
+ #: classes/Admin/Page/Columns.php:150
797
  msgid "Settings for %s restored successfully."
798
  msgstr ""
799
 
800
+ #: classes/Admin/Page/Columns.php:311
801
  msgid "View %s screen"
802
  msgstr ""
803
 
804
+ #: classes/Admin/Page/Columns.php:73
805
  msgid "Invalid response."
806
  msgstr ""
807
 
817
  msgid "Link Label"
818
  msgstr ""
819
 
820
+ #: classes/Admin/Page/Addons.php:224
821
  msgid "You need Admin Columns Pro."
822
  msgstr ""
823
 
824
+ #: classes/Admin/Page/Addons.php:218
825
  msgid "Addon does not exist."
826
  msgstr ""
827
 
828
+ #: classes/Admin/Page/Addons.php:180
829
  msgid "the addons page"
830
  msgstr ""
831
 
832
+ #: classes/Admin/Page/Addons.php:180
833
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
834
  msgstr ""
835
 
836
+ #: codepress-admin-columns.php:325
837
  msgid "Custom Fields"
838
  msgstr "Pola niestandardowe"
839
 
845
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
846
  msgstr ""
847
 
848
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
849
+ #. #-#-#-#-#
850
  #. Plugin URI of the plugin/theme
851
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
852
+ #. #-#-#-#-#
853
  #. Author URI of the plugin/theme
854
  msgid "https://www.admincolumns.com"
855
  msgstr ""
856
 
857
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
858
  msgid "Edit columns"
859
  msgstr "Edytuj kolumny"
860
 
861
+ #: classes/Admin/Page/Columns.php:940
862
+ msgid "Upgrade"
863
+ msgstr "Aktualizuj"
864
+
865
+ #: classes/Admin/Page/Columns.php:331
866
  msgid "Settings for %s updated successfully."
867
  msgstr ""
868
 
869
+ #: classes/Admin/Page/Columns.php:318
870
  msgid "You are trying to store the same settings for %s."
871
  msgstr "Próbujesz przywrócić te same ustawienia dla %s."
872
 
874
  msgid "No columns settings available."
875
  msgstr "Brak dostępnych ustawień kolumn."
876
 
877
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
878
  msgid "Users"
879
  msgstr "Użytkownicy"
880
 
881
  #: classes/ListScreen/Media.php:16
882
  #: classes/Settings/Column/CustomFieldType.php:112
883
+ #: codepress-admin-columns.php:457
884
  msgid "Media"
885
  msgstr ""
886
 
887
+ #: codepress-admin-columns.php:459
888
  msgid "Links"
889
  msgstr ""
890
 
892
  msgid "Comment"
893
  msgstr ""
894
 
895
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
896
  msgid "Comments"
897
  msgstr ""
898
 
899
+ #: classes/Admin/Page/Addons.php:424
900
  msgid "Get this add-on"
901
  msgstr ""
902
 
903
+ #: classes/Admin/Page/Addons.php:422
904
  msgid "Download & Install"
905
  msgstr ""
906
 
907
+ #: classes/Admin/Page/Addons.php:416
908
  msgid "Activate"
909
  msgstr ""
910
 
911
+ #: classes/Admin/Page/Addons.php:295
912
  msgid "Installed"
913
  msgstr ""
914
 
915
+ #: classes/Admin/Page/Addons.php:412
916
  msgid "Deactivate"
917
  msgstr ""
918
 
919
+ #: classes/Admin/Page/Addons.php:409
920
  msgid "Active"
921
  msgstr ""
922
 
923
+ #: classes/Admin/Page/Columns.php:750
924
  msgid "Add Column"
925
  msgstr "Dodaj kolumnę"
926
 
927
+ #: classes/Admin/Page/Columns.php:730
928
  msgid "Drag and drop to reorder"
929
  msgstr "Przeciągnij i opuść aby zmienić kolejność"
930
 
931
+ #: classes/Admin/Page/Columns.php:679
932
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
933
  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>"
934
 
935
+ #: classes/Admin/Page/Columns.php:675
936
  msgid "Check the <strong>Help</strong> section in the top-right screen."
937
  msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
938
 
939
+ #: classes/Admin/Page/Columns.php:670
940
  msgid "Support"
941
  msgstr "Wsparcie"
942
 
943
+ #: classes/Admin/Page/Columns.php:658
944
  msgid "Buy Pro"
945
  msgstr ""
946
 
947
+ #: classes/Admin/Page/Columns.php:652
948
  msgid "Tweet"
949
  msgstr ""
950
 
951
+ #: classes/Admin/Page/Columns.php:646
952
  msgid "Rate"
953
  msgstr ""
954
 
955
+ #: classes/Admin/Page/Columns.php:641
956
  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!"
957
  msgstr ""
958
 
959
+ #: classes/Admin/Page/Columns.php:638
960
  msgid "Woohoo! We're glad to hear that!"
961
  msgstr ""
962
 
963
+ #: classes/Admin/Page/Columns.php:628
964
  msgid "Forums"
965
  msgstr "Fora"
966
 
967
+ #: classes/Admin/Page/Columns.php:623
968
  msgid "Docs"
969
  msgstr ""
970
 
971
+ #: classes/Admin/Page/Columns.php:618
972
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
973
  msgstr ""
974
 
975
+ #: classes/Admin/Page/Columns.php:615
976
  msgid "What's wrong? Need help? Let us know!"
977
  msgstr ""
978
 
979
+ #: classes/Admin/Page/Columns.php:605
980
  msgid "Are you happy with Admin Columns?"
981
  msgstr ""
982
 
983
+ #: classes/Admin/Page/Columns.php:502
984
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
985
  msgstr ""
986
 
987
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
988
  msgid "Update"
989
  msgstr "Aktualizuj"
990
 
991
+ #: classes/Admin/Page/Columns.php:480
992
  msgid "Store settings"
993
  msgstr "Zapisz ustawienia"
994
 
996
  msgid "Add-ons"
997
  msgstr ""
998
 
999
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
1000
  msgid "Settings"
1001
  msgstr "Ustawienia"
1002
 
1004
  msgid "Others"
1005
  msgstr ""
1006
 
1007
+ #: classes/Admin/Page/Settings.php:239
1008
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1009
  msgstr ""
1010
 
1011
+ #: classes/Admin/Page/Settings.php:239
1012
  msgid "Restore default settings"
1013
  msgstr "Przywróć ustawienia domyślne"
1014
 
1015
+ #: classes/Admin/Page/Settings.php:231
1016
  msgid "This will delete all column settings and restore the default settings."
1017
  msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
1018
 
1019
+ #: classes/Admin/Page/Settings.php:230
1020
  msgid "Restore Settings"
1021
  msgstr "Przywróć ustawienia"
1022
 
1023
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1024
+ #: classes/Admin/Page/Settings.php:189
1025
  msgid "Save"
1026
  msgstr "Zapisz"
1027
 
1028
+ #: classes/Admin/Page/Settings.php:171
1029
  msgid "Customize your Admin Columns settings."
1030
  msgstr "Zmodyfikuj ustawienia Edytora kolumn."
1031
 
1032
+ #: classes/Admin/Page/Settings.php:170
1033
  #: classes/Settings/Column/DateTimeFormat.php:39
1034
  msgid "General Settings"
1035
  msgstr "Ustawienia ogólne"
1130
  msgid "Overview"
1131
  msgstr "Przegląd"
1132
 
1133
+ #: classes/Admin/Page/Settings.php:111
1134
  msgid "Default settings succesfully restored."
1135
  msgstr "Domyślne ustawienia zostały przywrócone."
1136
 
1137
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1138
  msgid "%s column is already present and can not be duplicated."
1139
  msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
1140
 
1141
+ #: classes/Admin.php:126
1142
  msgid "Admin Columns Settings"
1143
  msgstr "Ustawienia edytora kolumn"
1144
 
1145
+ #: classes/Admin/Page/Addons.php:108
1146
  msgid "%s successfully deactivated."
1147
  msgstr ""
1148
 
1190
  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."
1191
  msgstr ""
1192
 
1193
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1194
  msgid "Admin Columns Pro"
1195
  msgstr ""
1196
 
1197
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1198
+ #. #-#-#-#-#
1199
  #. Plugin Name of the plugin/theme
1200
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1201
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1202
  #: classes/Plugin/Updater.php:114
1203
  msgid "Admin Columns"
1251
  msgid "Choose a column type."
1252
  msgstr "Wybierz typ kolumny."
1253
 
1254
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1255
  msgid "Clone"
1256
  msgstr ""
1257
 
1271
  msgid "User Login"
1272
  msgstr "Login użytkownika"
1273
 
1274
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1275
  msgid "Last Name"
1276
  msgstr "Nazwisko"
1277
 
1300
  msgstr "szerokość"
1301
 
1302
  #: classes/Settings/Column/CustomFieldType.php:153
1303
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1304
  msgid "Custom"
1305
  msgstr "Włąsne"
1306
 
1337
  msgstr "Zarejestrowany"
1338
 
1339
  #: classes/Settings/Column/CustomFieldType.php:80
1340
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1341
  msgid "Post Type"
1342
  msgstr "Typ wpisu"
1343
 
1349
  msgid "Nickname"
1350
  msgstr "Pseudonim"
1351
 
 
 
 
 
1352
  #: classes/Column/Post/CommentCount.php:17
1353
  #: classes/Column/User/CommentCount.php:14
1354
  msgid "Comment Count"
1355
  msgstr ""
1356
 
1357
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1358
  msgid "Remove"
1359
  msgstr "Usuń"
1360
 
1402
  msgid "Permalink"
1403
  msgstr ""
1404
 
1405
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1406
  msgid "Path"
1407
  msgstr ""
1408
 
1546
  msgid "Path scope"
1547
  msgstr ""
1548
 
 
 
 
 
1549
  #: classes/Column/Media/FileSize.php:14
1550
  msgid "File Size"
1551
  msgstr ""
1603
  msgid "Available Sizes"
1604
  msgstr "Dostępne rozmiary"
1605
 
1606
+ #: classes/Admin/Page/Columns.php:466
1607
  msgid "View"
1608
  msgstr "Zobacz"
1609
 
1698
  #: classes/Admin/Help/CustomField.php:22
1699
  #: classes/Settings/Column/CustomFieldType.php:168
1700
  #: classes/Settings/Column/Image.php:71
1701
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1702
  msgid "Default"
1703
  msgstr "Domyślny"
1704
 
1784
  msgid "Agent"
1785
  msgstr "Przeglądarka"
1786
 
1787
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1788
  msgid "Edit"
1789
  msgstr "Edytuj"
1790
 
1795
  msgid "ID"
1796
  msgstr "ID"
1797
 
1798
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1799
  #: classes/Settings/Column/ActionIcons.php:22
1800
  #: classes/Settings/Column/MissingImageSize.php:22
1801
  #: classes/Settings/Column/PostFormatIcon.php:24
1802
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1803
  #: classes/Settings/Column/Toggle.php:14
1804
  msgid "No"
1805
  msgstr "Nie"
1806
 
1807
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1808
  #: classes/Settings/Column/ActionIcons.php:21
1809
  #: classes/Settings/Column/MissingImageSize.php:21
1810
  #: classes/Settings/Column/PostFormatIcon.php:23
1811
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1812
  #: classes/Settings/Column/Toggle.php:13
1813
  msgid "Yes"
1814
  msgstr "Tak"
1837
  msgid "Advanced Custom Fields"
1838
  msgstr ""
1839
 
1840
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1841
  msgid "Plugins"
1842
  msgstr ""
languages/codepress-admin-columns-ro_RO.mo CHANGED
Binary file
languages/codepress-admin-columns-ro_RO.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-11-26 15:48:19+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: ro\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ", "
503
  msgid "Standard"
504
  msgstr "Standard"
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,161 +579,161 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr "Implicit este %s."
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "Instrucțiuni"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr "documentația noastră"
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
  msgstr[2] ""
556
 
557
- #: classes/Admin/Page/Help.php:258
558
  msgid "View documentation"
559
  msgstr "Vezi documentația"
560
 
561
- #: classes/Admin/Page/Help.php:203
562
  msgid "The action %s used on this website is deprecated since %s."
563
  msgstr ""
564
 
565
- #: classes/Admin/Page/Help.php:185
566
  msgid "The filter %s used on this website is deprecated since %s."
567
  msgstr ""
568
 
569
- #: classes/Admin/Page/Help.php:172
570
  msgid "Deprecated Actions"
571
  msgstr "Acțiuni învechite"
572
 
573
- #: classes/Admin/Page/Help.php:171
574
  msgid "Deprecated Filters"
575
  msgstr "Filtre învechite"
576
 
577
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
578
  msgid "Help"
579
  msgstr "Ajutor"
580
 
581
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
582
  msgid "Close"
583
  msgstr "Închide"
584
 
585
- #: classes/Admin/Page/Columns.php:741
586
  msgid "Clear all columns "
587
  msgstr ""
588
 
589
- #: classes/Admin/Page/Columns.php:648
590
  msgid "I'm using Admin Columns for WordPress!"
591
  msgstr ""
592
 
593
- #: classes/Admin/Page/Columns.php:590
594
  msgid "Your First Name"
595
  msgstr ""
596
 
597
- #: classes/Admin/Page/Columns.php:589
598
  msgid "Your Email"
599
  msgstr ""
600
 
601
- #: classes/Admin/Page/Columns.php:582
602
  msgid "Submit your email and we'll send you a discount for %s off."
603
  msgstr ""
604
 
605
- #: classes/Admin/Page/Columns.php:578
606
  msgid "Get %s Off!"
607
  msgstr ""
608
 
609
- #: classes/Admin/Page/Columns.php:545
610
  msgid "Extra Columns for:"
611
  msgstr "Coloane suplimentare pentru:"
612
 
613
- #: classes/Admin/Page/Columns.php:531
614
  msgid "Edit your column content directly"
615
  msgstr ""
616
 
617
- #: classes/Admin/Page/Columns.php:519
618
  msgid "Pro"
619
  msgstr "Pro"
620
 
621
- #: classes/Admin/Page/Columns.php:301
622
  msgid "You need at least one column"
623
  msgstr ""
624
 
625
- #: classes/Admin/Page/Addons.php:293
626
  msgid "Available"
627
  msgstr ""
628
 
629
- #: classes/Admin/Page/Addons.php:292
630
  msgid "Recommended"
631
  msgstr ""
632
 
633
- #: classes/Admin/Page/Addons.php:113
634
  msgid "%s could not be activated."
635
  msgstr "%s n-a putut fi activat."
636
 
637
- #: classes/Admin/Page/Addons.php:103
638
  msgid "%s successfully activated."
639
  msgstr "%s activat cu succes."
640
 
641
- #: classes/Admin/Page/Addons.php:98
642
  msgid "%s plugin successfully deactivated."
643
  msgstr "Modulul %s dezactivat cu succes."
644
 
645
- #: classes/Admin/Page/Addons.php:97
646
  msgid "%s plugin successfully activated."
647
  msgstr "Modulul %s activat cu succes."
648
 
649
- #: classes/Admin/Page/Addons.php:64
650
  msgid "%s add-on requires %s."
651
  msgid_plural "%s add-ons requires %s."
652
  msgstr[0] "%s supliment necesită %s."
653
  msgstr[1] "%s suplimente necesită %s."
654
  msgstr[2] "%s de suplimente necesită %s."
655
 
656
- #: classes/Admin/Page/Addons.php:51
657
  msgid "here"
658
  msgstr "aici"
659
 
660
- #: classes/Admin/Page/Addons.php:51
661
  msgid "Click %s to activate the plugin."
662
  msgstr "Dă clic pe %s pentru a activa modulul."
663
 
664
- #: classes/Admin/Page/Addons.php:48
665
  msgid "%s plugin is installed, but not active."
666
  msgstr "Modulul %s este instalat, dar nu este activ."
667
 
668
- #: classes/Admin/Page/Addons.php:46
669
  msgid "%s plugin needs to be installed for the add-on to work."
670
  msgstr ""
671
 
@@ -685,59 +753,55 @@ msgstr ""
685
  msgid "Imported"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:561
689
  msgid "Learn more about Pro"
690
  msgstr "Află mai mult despre Pro"
691
 
692
- #: classes/Admin/Page/Columns.php:533
693
  msgid "Import &amp; Export settings"
694
  msgstr "Setări import și export"
695
 
696
- #: classes/Admin/Page/Columns.php:532
697
  msgid "Create multiple columns sets"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Columns.php:530
701
  msgid "Add filterable columns"
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Columns.php:529
705
  msgid "Add sortable columns"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:524
709
  msgid "Take Admin Columns to the next level:"
710
  msgstr ""
711
 
712
- #: classes/Admin/Page/Columns.php:519
713
  msgid "Upgrade to"
714
  msgstr "Actualizează la"
715
 
716
- #: classes/Admin/Promo.php:134
717
- msgid "Get %s Off"
718
- msgstr ""
719
-
720
- #: classes/Admin/Page/Columns.php:431
721
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:221
725
  msgid "Please visit the %s screen once to load all available columns"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:500
729
  msgid "Restore columns"
730
  msgstr "Restaurează coloane"
731
 
732
- #: classes/Admin/Page/Columns.php:147
733
  msgid "Settings for %s restored successfully."
734
  msgstr "Setările pentru %s s-au restaurat cu succes."
735
 
736
- #: classes/Admin/Page/Columns.php:308
737
  msgid "View %s screen"
738
  msgstr "Vezi ecranul %s"
739
 
740
- #: classes/Admin/Page/Columns.php:70
741
  msgid "Invalid response."
742
  msgstr "Răspuns invalid."
743
 
@@ -753,23 +817,23 @@ msgstr "Lasă necompletat pentru a afișa URL-ul"
753
  msgid "Link Label"
754
  msgstr "Etichetă legătură"
755
 
756
- #: classes/Admin/Page/Addons.php:220
757
  msgid "You need Admin Columns Pro."
758
  msgstr ""
759
 
760
- #: classes/Admin/Page/Addons.php:214
761
  msgid "Addon does not exist."
762
  msgstr "Suplimentul nu există."
763
 
764
- #: classes/Admin/Page/Addons.php:176
765
  msgid "the addons page"
766
  msgstr "pagina suplimentelor"
767
 
768
- #: classes/Admin/Page/Addons.php:176
769
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
770
  msgstr ""
771
 
772
- #: codepress-admin-columns.php:300
773
  msgid "Custom Fields"
774
  msgstr "Câmpuri personalizate"
775
 
@@ -781,22 +845,28 @@ msgstr ""
781
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
782
  msgstr ""
783
 
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Plugin URI of the plugin/theme
786
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
787
  #. Author URI of the plugin/theme
788
  msgid "https://www.admincolumns.com"
789
  msgstr "https://www.admincolumns.com"
790
 
791
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
792
  msgid "Edit columns"
793
  msgstr "Editează coloane"
794
 
795
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
796
  msgid "Settings for %s updated successfully."
797
  msgstr ""
798
 
799
- #: classes/Admin/Page/Columns.php:315
800
  msgid "You are trying to store the same settings for %s."
801
  msgstr ""
802
 
@@ -804,17 +874,17 @@ msgstr ""
804
  msgid "No columns settings available."
805
  msgstr ""
806
 
807
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
808
  msgid "Users"
809
  msgstr "Utilizatori"
810
 
811
  #: classes/ListScreen/Media.php:16
812
  #: classes/Settings/Column/CustomFieldType.php:112
813
- #: codepress-admin-columns.php:432
814
  msgid "Media"
815
  msgstr "Media"
816
 
817
- #: codepress-admin-columns.php:434
818
  msgid "Links"
819
  msgstr "Legături"
820
 
@@ -822,103 +892,103 @@ msgstr "Legături"
822
  msgid "Comment"
823
  msgstr "Comentariu"
824
 
825
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
826
  msgid "Comments"
827
  msgstr "Comentarii"
828
 
829
- #: classes/Admin/Page/Addons.php:420
830
  msgid "Get this add-on"
831
  msgstr "Obține acest supliment"
832
 
833
- #: classes/Admin/Page/Addons.php:418
834
  msgid "Download & Install"
835
  msgstr "Descărcare și instalare"
836
 
837
- #: classes/Admin/Page/Addons.php:412
838
  msgid "Activate"
839
  msgstr "Activează"
840
 
841
- #: classes/Admin/Page/Addons.php:291
842
  msgid "Installed"
843
  msgstr "Instalat"
844
 
845
- #: classes/Admin/Page/Addons.php:408
846
  msgid "Deactivate"
847
  msgstr "Dezactivare"
848
 
849
- #: classes/Admin/Page/Addons.php:405
850
  msgid "Active"
851
  msgstr "Activ"
852
 
853
- #: classes/Admin/Page/Columns.php:747
854
  msgid "Add Column"
855
  msgstr "Adaugă coloană"
856
 
857
- #: classes/Admin/Page/Columns.php:727
858
  msgid "Drag and drop to reorder"
859
  msgstr "Trage și plasează pentru a reordona"
860
 
861
- #: classes/Admin/Page/Columns.php:676
862
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
863
  msgstr ""
864
 
865
- #: classes/Admin/Page/Columns.php:672
866
  msgid "Check the <strong>Help</strong> section in the top-right screen."
867
  msgstr ""
868
 
869
- #: classes/Admin/Page/Columns.php:667
870
  msgid "Support"
871
  msgstr "Suport"
872
 
873
- #: classes/Admin/Page/Columns.php:655
874
  msgid "Buy Pro"
875
  msgstr "Cumpără Pro"
876
 
877
- #: classes/Admin/Page/Columns.php:649
878
  msgid "Tweet"
879
  msgstr ""
880
 
881
- #: classes/Admin/Page/Columns.php:643
882
  msgid "Rate"
883
  msgstr "Evaluează"
884
 
885
- #: classes/Admin/Page/Columns.php:638
886
  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!"
887
  msgstr ""
888
 
889
- #: classes/Admin/Page/Columns.php:635
890
  msgid "Woohoo! We're glad to hear that!"
891
  msgstr ""
892
 
893
- #: classes/Admin/Page/Columns.php:625
894
  msgid "Forums"
895
  msgstr "Forumuri"
896
 
897
- #: classes/Admin/Page/Columns.php:620
898
  msgid "Docs"
899
  msgstr "Documente"
900
 
901
- #: classes/Admin/Page/Columns.php:615
902
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
903
  msgstr ""
904
 
905
- #: classes/Admin/Page/Columns.php:612
906
  msgid "What's wrong? Need help? Let us know!"
907
  msgstr ""
908
 
909
- #: classes/Admin/Page/Columns.php:602
910
  msgid "Are you happy with Admin Columns?"
911
  msgstr ""
912
 
913
- #: classes/Admin/Page/Columns.php:499
914
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
915
  msgstr ""
916
 
917
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
918
  msgid "Update"
919
  msgstr "Actualizează"
920
 
921
- #: classes/Admin/Page/Columns.php:477
922
  msgid "Store settings"
923
  msgstr ""
924
 
@@ -926,7 +996,7 @@ msgstr ""
926
  msgid "Add-ons"
927
  msgstr "Suplimente"
928
 
929
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
930
  msgid "Settings"
931
  msgstr "Setări"
932
 
@@ -934,32 +1004,32 @@ msgstr "Setări"
934
  msgid "Others"
935
  msgstr "Altele"
936
 
937
- #: classes/Admin/Page/Settings.php:229
938
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
939
  msgstr ""
940
 
941
- #: classes/Admin/Page/Settings.php:229
942
  msgid "Restore default settings"
943
  msgstr "Restaurează setările implicite"
944
 
945
- #: classes/Admin/Page/Settings.php:221
946
  msgid "This will delete all column settings and restore the default settings."
947
  msgstr ""
948
 
949
- #: classes/Admin/Page/Settings.php:220
950
  msgid "Restore Settings"
951
  msgstr "Restaurează setările"
952
 
953
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
954
- #: classes/Admin/Page/Settings.php:179
955
  msgid "Save"
956
  msgstr "Salvare"
957
 
958
- #: classes/Admin/Page/Settings.php:161
959
  msgid "Customize your Admin Columns settings."
960
  msgstr ""
961
 
962
- #: classes/Admin/Page/Settings.php:160
963
  #: classes/Settings/Column/DateTimeFormat.php:39
964
  msgid "General Settings"
965
  msgstr "Setări generale"
@@ -1060,19 +1130,19 @@ msgstr ""
1060
  msgid "Overview"
1061
  msgstr "Prezentare generală"
1062
 
1063
- #: classes/Admin/Page/Settings.php:101
1064
  msgid "Default settings succesfully restored."
1065
  msgstr "Setările implicite s-au restaurat cu succes."
1066
 
1067
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1068
  msgid "%s column is already present and can not be duplicated."
1069
  msgstr ""
1070
 
1071
- #: classes/Admin.php:127
1072
  msgid "Admin Columns Settings"
1073
  msgstr ""
1074
 
1075
- #: classes/Admin/Page/Addons.php:104
1076
  msgid "%s successfully deactivated."
1077
  msgstr "%s dezactivat cu succes."
1078
 
@@ -1120,13 +1190,14 @@ msgstr "dă clic aici"
1120
  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."
1121
  msgstr ""
1122
 
1123
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1124
  msgid "Admin Columns Pro"
1125
  msgstr ""
1126
 
1127
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1128
  #. Plugin Name of the plugin/theme
1129
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1130
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1131
  #: classes/Plugin/Updater.php:114
1132
  msgid "Admin Columns"
@@ -1180,7 +1251,7 @@ msgstr "Nume"
1180
  msgid "Choose a column type."
1181
  msgstr "Alege un tip de coloană."
1182
 
1183
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1184
  msgid "Clone"
1185
  msgstr "Clonare"
1186
 
@@ -1200,7 +1271,7 @@ msgstr "Email utilizator"
1200
  msgid "User Login"
1201
  msgstr "Autentificare utilizator"
1202
 
1203
- #: classes/Settings/Column/User.php:65
1204
  msgid "Last Name"
1205
  msgstr "Nume"
1206
 
@@ -1229,7 +1300,7 @@ msgid "width"
1229
  msgstr "lățime"
1230
 
1231
  #: classes/Settings/Column/CustomFieldType.php:153
1232
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1233
  msgid "Custom"
1234
  msgstr "Personalizat"
1235
 
@@ -1266,7 +1337,7 @@ msgid "Registered"
1266
  msgstr "Înregistrat"
1267
 
1268
  #: classes/Settings/Column/CustomFieldType.php:80
1269
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1270
  msgid "Post Type"
1271
  msgstr "Tip de articol"
1272
 
@@ -1278,16 +1349,12 @@ msgstr ""
1278
  msgid "Nickname"
1279
  msgstr "Poreclă"
1280
 
1281
- #: classes/Column/User/LastName.php:14
1282
- msgid "Last name"
1283
- msgstr "Nume"
1284
-
1285
  #: classes/Column/Post/CommentCount.php:17
1286
  #: classes/Column/User/CommentCount.php:14
1287
  msgid "Comment Count"
1288
  msgstr "Număr comentarii"
1289
 
1290
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1291
  msgid "Remove"
1292
  msgstr "Înlătură"
1293
 
@@ -1335,7 +1402,7 @@ msgstr "Stare ping"
1335
  msgid "Permalink"
1336
  msgstr "Legătură permanentă"
1337
 
1338
- #: classes/Column/Post/Path.php:16
1339
  msgid "Path"
1340
  msgstr "Cale"
1341
 
@@ -1479,10 +1546,6 @@ msgstr ""
1479
  msgid "Path scope"
1480
  msgstr ""
1481
 
1482
- #: classes/Settings/Column/PathScope.php:24
1483
- msgid "Full path"
1484
- msgstr "Cale completă"
1485
-
1486
  #: classes/Column/Media/FileSize.php:14
1487
  msgid "File Size"
1488
  msgstr "Dimensiune fișier"
@@ -1540,7 +1603,7 @@ msgstr "Text asociat"
1540
  msgid "Available Sizes"
1541
  msgstr "Dimensiuni disponibile"
1542
 
1543
- #: classes/Admin/Page/Columns.php:463
1544
  msgid "View"
1545
  msgstr "Vezi"
1546
 
@@ -1635,7 +1698,7 @@ msgstr "Culoare"
1635
  #: classes/Admin/Help/CustomField.php:22
1636
  #: classes/Settings/Column/CustomFieldType.php:168
1637
  #: classes/Settings/Column/Image.php:71
1638
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1639
  msgid "Default"
1640
  msgstr "Implicit"
1641
 
@@ -1721,7 +1784,7 @@ msgstr "Aprobat"
1721
  msgid "Agent"
1722
  msgstr "Agent"
1723
 
1724
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1725
  msgid "Edit"
1726
  msgstr "Editare"
1727
 
@@ -1732,20 +1795,20 @@ msgstr "Editare"
1732
  msgid "ID"
1733
  msgstr "ID"
1734
 
1735
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1736
  #: classes/Settings/Column/ActionIcons.php:22
1737
  #: classes/Settings/Column/MissingImageSize.php:22
1738
  #: classes/Settings/Column/PostFormatIcon.php:24
1739
- #: classes/Settings/Column/StatusIcon.php:24
1740
  #: classes/Settings/Column/Toggle.php:14
1741
  msgid "No"
1742
  msgstr "Nu"
1743
 
1744
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1745
  #: classes/Settings/Column/ActionIcons.php:21
1746
  #: classes/Settings/Column/MissingImageSize.php:21
1747
  #: classes/Settings/Column/PostFormatIcon.php:23
1748
- #: classes/Settings/Column/StatusIcon.php:23
1749
  #: classes/Settings/Column/Toggle.php:13
1750
  msgid "Yes"
1751
  msgstr "Da"
@@ -1774,6 +1837,6 @@ msgstr "WooCommerce"
1774
  msgid "Advanced Custom Fields"
1775
  msgstr "Câmpuri personalizate avansate"
1776
 
1777
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1778
  msgid "Plugins"
1779
  msgstr "Module"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-04-25 06:41:30+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: ro\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr "Standard"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr "Implicit este %s."
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "Instrucțiuni"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr "documentația noastră"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
  msgstr[2] ""
624
 
625
+ #: classes/Admin/Page/Help.php:263
626
  msgid "View documentation"
627
  msgstr "Vezi documentația"
628
 
629
+ #: classes/Admin/Page/Help.php:208
630
  msgid "The action %s used on this website is deprecated since %s."
631
  msgstr ""
632
 
633
+ #: classes/Admin/Page/Help.php:190
634
  msgid "The filter %s used on this website is deprecated since %s."
635
  msgstr ""
636
 
637
+ #: classes/Admin/Page/Help.php:177
638
  msgid "Deprecated Actions"
639
  msgstr "Acțiuni învechite"
640
 
641
+ #: classes/Admin/Page/Help.php:176
642
  msgid "Deprecated Filters"
643
  msgstr "Filtre învechite"
644
 
645
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
646
  msgid "Help"
647
  msgstr "Ajutor"
648
 
649
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
650
  msgid "Close"
651
  msgstr "Închide"
652
 
653
+ #: classes/Admin/Page/Columns.php:744
654
  msgid "Clear all columns "
655
  msgstr ""
656
 
657
+ #: classes/Admin/Page/Columns.php:651
658
  msgid "I'm using Admin Columns for WordPress!"
659
  msgstr ""
660
 
661
+ #: classes/Admin/Page/Columns.php:593
662
  msgid "Your First Name"
663
  msgstr ""
664
 
665
+ #: classes/Admin/Page/Columns.php:592
666
  msgid "Your Email"
667
  msgstr ""
668
 
669
+ #: classes/Admin/Page/Columns.php:585
670
  msgid "Submit your email and we'll send you a discount for %s off."
671
  msgstr ""
672
 
673
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
674
  msgid "Get %s Off!"
675
  msgstr ""
676
 
677
+ #: classes/Admin/Page/Columns.php:548
678
  msgid "Extra Columns for:"
679
  msgstr "Coloane suplimentare pentru:"
680
 
681
+ #: classes/Admin/Page/Columns.php:534
682
  msgid "Edit your column content directly"
683
  msgstr ""
684
 
685
+ #: classes/Admin/Page/Columns.php:522
686
  msgid "Pro"
687
  msgstr "Pro"
688
 
689
+ #: classes/Admin/Page/Columns.php:304
690
  msgid "You need at least one column"
691
  msgstr ""
692
 
693
+ #: classes/Admin/Page/Addons.php:297
694
  msgid "Available"
695
  msgstr ""
696
 
697
+ #: classes/Admin/Page/Addons.php:296
698
  msgid "Recommended"
699
  msgstr ""
700
 
701
+ #: classes/Admin/Page/Addons.php:117
702
  msgid "%s could not be activated."
703
  msgstr "%s n-a putut fi activat."
704
 
705
+ #: classes/Admin/Page/Addons.php:107
706
  msgid "%s successfully activated."
707
  msgstr "%s activat cu succes."
708
 
709
+ #: classes/Admin/Page/Addons.php:102
710
  msgid "%s plugin successfully deactivated."
711
  msgstr "Modulul %s dezactivat cu succes."
712
 
713
+ #: classes/Admin/Page/Addons.php:101
714
  msgid "%s plugin successfully activated."
715
  msgstr "Modulul %s activat cu succes."
716
 
717
+ #: classes/Admin/Page/Addons.php:69
718
  msgid "%s add-on requires %s."
719
  msgid_plural "%s add-ons requires %s."
720
  msgstr[0] "%s supliment necesită %s."
721
  msgstr[1] "%s suplimente necesită %s."
722
  msgstr[2] "%s de suplimente necesită %s."
723
 
724
+ #: classes/Admin/Page/Addons.php:56
725
  msgid "here"
726
  msgstr "aici"
727
 
728
+ #: classes/Admin/Page/Addons.php:56
729
  msgid "Click %s to activate the plugin."
730
  msgstr "Dă clic pe %s pentru a activa modulul."
731
 
732
+ #: classes/Admin/Page/Addons.php:53
733
  msgid "%s plugin is installed, but not active."
734
  msgstr "Modulul %s este instalat, dar nu este activ."
735
 
736
+ #: classes/Admin/Page/Addons.php:51
737
  msgid "%s plugin needs to be installed for the add-on to work."
738
  msgstr ""
739
 
753
  msgid "Imported"
754
  msgstr ""
755
 
756
+ #: classes/Admin/Page/Columns.php:564
757
  msgid "Learn more about Pro"
758
  msgstr "Află mai mult despre Pro"
759
 
760
+ #: classes/Admin/Page/Columns.php:536
761
  msgid "Import &amp; Export settings"
762
  msgstr "Setări import și export"
763
 
764
+ #: classes/Admin/Page/Columns.php:535
765
  msgid "Create multiple columns sets"
766
  msgstr ""
767
 
768
+ #: classes/Admin/Page/Columns.php:533
769
  msgid "Add filterable columns"
770
  msgstr ""
771
 
772
+ #: classes/Admin/Page/Columns.php:532
773
  msgid "Add sortable columns"
774
  msgstr ""
775
 
776
+ #: classes/Admin/Page/Columns.php:527
777
  msgid "Take Admin Columns to the next level:"
778
  msgstr ""
779
 
780
+ #: classes/Admin/Page/Columns.php:522
781
  msgid "Upgrade to"
782
  msgstr "Actualizează la"
783
 
784
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
785
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
786
  msgstr ""
787
 
788
+ #: classes/Admin/Page/Columns.php:224
789
  msgid "Please visit the %s screen once to load all available columns"
790
  msgstr ""
791
 
792
+ #: classes/Admin/Page/Columns.php:503
793
  msgid "Restore columns"
794
  msgstr "Restaurează coloane"
795
 
796
+ #: classes/Admin/Page/Columns.php:150
797
  msgid "Settings for %s restored successfully."
798
  msgstr "Setările pentru %s s-au restaurat cu succes."
799
 
800
+ #: classes/Admin/Page/Columns.php:311
801
  msgid "View %s screen"
802
  msgstr "Vezi ecranul %s"
803
 
804
+ #: classes/Admin/Page/Columns.php:73
805
  msgid "Invalid response."
806
  msgstr "Răspuns invalid."
807
 
817
  msgid "Link Label"
818
  msgstr "Etichetă legătură"
819
 
820
+ #: classes/Admin/Page/Addons.php:224
821
  msgid "You need Admin Columns Pro."
822
  msgstr ""
823
 
824
+ #: classes/Admin/Page/Addons.php:218
825
  msgid "Addon does not exist."
826
  msgstr "Suplimentul nu există."
827
 
828
+ #: classes/Admin/Page/Addons.php:180
829
  msgid "the addons page"
830
  msgstr "pagina suplimentelor"
831
 
832
+ #: classes/Admin/Page/Addons.php:180
833
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
834
  msgstr ""
835
 
836
+ #: codepress-admin-columns.php:325
837
  msgid "Custom Fields"
838
  msgstr "Câmpuri personalizate"
839
 
845
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
846
  msgstr ""
847
 
848
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
849
+ #. #-#-#-#-#
850
  #. Plugin URI of the plugin/theme
851
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
852
+ #. #-#-#-#-#
853
  #. Author URI of the plugin/theme
854
  msgid "https://www.admincolumns.com"
855
  msgstr "https://www.admincolumns.com"
856
 
857
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
858
  msgid "Edit columns"
859
  msgstr "Editează coloane"
860
 
861
+ #: classes/Admin/Page/Columns.php:940
862
+ msgid "Upgrade"
863
+ msgstr "Actualizare"
864
+
865
+ #: classes/Admin/Page/Columns.php:331
866
  msgid "Settings for %s updated successfully."
867
  msgstr ""
868
 
869
+ #: classes/Admin/Page/Columns.php:318
870
  msgid "You are trying to store the same settings for %s."
871
  msgstr ""
872
 
874
  msgid "No columns settings available."
875
  msgstr ""
876
 
877
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
878
  msgid "Users"
879
  msgstr "Utilizatori"
880
 
881
  #: classes/ListScreen/Media.php:16
882
  #: classes/Settings/Column/CustomFieldType.php:112
883
+ #: codepress-admin-columns.php:457
884
  msgid "Media"
885
  msgstr "Media"
886
 
887
+ #: codepress-admin-columns.php:459
888
  msgid "Links"
889
  msgstr "Legături"
890
 
892
  msgid "Comment"
893
  msgstr "Comentariu"
894
 
895
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
896
  msgid "Comments"
897
  msgstr "Comentarii"
898
 
899
+ #: classes/Admin/Page/Addons.php:424
900
  msgid "Get this add-on"
901
  msgstr "Obține acest supliment"
902
 
903
+ #: classes/Admin/Page/Addons.php:422
904
  msgid "Download & Install"
905
  msgstr "Descărcare și instalare"
906
 
907
+ #: classes/Admin/Page/Addons.php:416
908
  msgid "Activate"
909
  msgstr "Activează"
910
 
911
+ #: classes/Admin/Page/Addons.php:295
912
  msgid "Installed"
913
  msgstr "Instalat"
914
 
915
+ #: classes/Admin/Page/Addons.php:412
916
  msgid "Deactivate"
917
  msgstr "Dezactivare"
918
 
919
+ #: classes/Admin/Page/Addons.php:409
920
  msgid "Active"
921
  msgstr "Activ"
922
 
923
+ #: classes/Admin/Page/Columns.php:750
924
  msgid "Add Column"
925
  msgstr "Adaugă coloană"
926
 
927
+ #: classes/Admin/Page/Columns.php:730
928
  msgid "Drag and drop to reorder"
929
  msgstr "Trage și plasează pentru a reordona"
930
 
931
+ #: classes/Admin/Page/Columns.php:679
932
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
933
  msgstr ""
934
 
935
+ #: classes/Admin/Page/Columns.php:675
936
  msgid "Check the <strong>Help</strong> section in the top-right screen."
937
  msgstr ""
938
 
939
+ #: classes/Admin/Page/Columns.php:670
940
  msgid "Support"
941
  msgstr "Suport"
942
 
943
+ #: classes/Admin/Page/Columns.php:658
944
  msgid "Buy Pro"
945
  msgstr "Cumpără Pro"
946
 
947
+ #: classes/Admin/Page/Columns.php:652
948
  msgid "Tweet"
949
  msgstr ""
950
 
951
+ #: classes/Admin/Page/Columns.php:646
952
  msgid "Rate"
953
  msgstr "Evaluează"
954
 
955
+ #: classes/Admin/Page/Columns.php:641
956
  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!"
957
  msgstr ""
958
 
959
+ #: classes/Admin/Page/Columns.php:638
960
  msgid "Woohoo! We're glad to hear that!"
961
  msgstr ""
962
 
963
+ #: classes/Admin/Page/Columns.php:628
964
  msgid "Forums"
965
  msgstr "Forumuri"
966
 
967
+ #: classes/Admin/Page/Columns.php:623
968
  msgid "Docs"
969
  msgstr "Documente"
970
 
971
+ #: classes/Admin/Page/Columns.php:618
972
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
973
  msgstr ""
974
 
975
+ #: classes/Admin/Page/Columns.php:615
976
  msgid "What's wrong? Need help? Let us know!"
977
  msgstr ""
978
 
979
+ #: classes/Admin/Page/Columns.php:605
980
  msgid "Are you happy with Admin Columns?"
981
  msgstr ""
982
 
983
+ #: classes/Admin/Page/Columns.php:502
984
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
985
  msgstr ""
986
 
987
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
988
  msgid "Update"
989
  msgstr "Actualizează"
990
 
991
+ #: classes/Admin/Page/Columns.php:480
992
  msgid "Store settings"
993
  msgstr ""
994
 
996
  msgid "Add-ons"
997
  msgstr "Suplimente"
998
 
999
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
1000
  msgid "Settings"
1001
  msgstr "Setări"
1002
 
1004
  msgid "Others"
1005
  msgstr "Altele"
1006
 
1007
+ #: classes/Admin/Page/Settings.php:239
1008
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1009
  msgstr ""
1010
 
1011
+ #: classes/Admin/Page/Settings.php:239
1012
  msgid "Restore default settings"
1013
  msgstr "Restaurează setările implicite"
1014
 
1015
+ #: classes/Admin/Page/Settings.php:231
1016
  msgid "This will delete all column settings and restore the default settings."
1017
  msgstr ""
1018
 
1019
+ #: classes/Admin/Page/Settings.php:230
1020
  msgid "Restore Settings"
1021
  msgstr "Restaurează setările"
1022
 
1023
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1024
+ #: classes/Admin/Page/Settings.php:189
1025
  msgid "Save"
1026
  msgstr "Salvare"
1027
 
1028
+ #: classes/Admin/Page/Settings.php:171
1029
  msgid "Customize your Admin Columns settings."
1030
  msgstr ""
1031
 
1032
+ #: classes/Admin/Page/Settings.php:170
1033
  #: classes/Settings/Column/DateTimeFormat.php:39
1034
  msgid "General Settings"
1035
  msgstr "Setări generale"
1130
  msgid "Overview"
1131
  msgstr "Prezentare generală"
1132
 
1133
+ #: classes/Admin/Page/Settings.php:111
1134
  msgid "Default settings succesfully restored."
1135
  msgstr "Setările implicite s-au restaurat cu succes."
1136
 
1137
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1138
  msgid "%s column is already present and can not be duplicated."
1139
  msgstr ""
1140
 
1141
+ #: classes/Admin.php:126
1142
  msgid "Admin Columns Settings"
1143
  msgstr ""
1144
 
1145
+ #: classes/Admin/Page/Addons.php:108
1146
  msgid "%s successfully deactivated."
1147
  msgstr "%s dezactivat cu succes."
1148
 
1190
  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."
1191
  msgstr ""
1192
 
1193
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1194
  msgid "Admin Columns Pro"
1195
  msgstr ""
1196
 
1197
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1198
+ #. #-#-#-#-#
1199
  #. Plugin Name of the plugin/theme
1200
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1201
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1202
  #: classes/Plugin/Updater.php:114
1203
  msgid "Admin Columns"
1251
  msgid "Choose a column type."
1252
  msgstr "Alege un tip de coloană."
1253
 
1254
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1255
  msgid "Clone"
1256
  msgstr "Clonare"
1257
 
1271
  msgid "User Login"
1272
  msgstr "Autentificare utilizator"
1273
 
1274
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1275
  msgid "Last Name"
1276
  msgstr "Nume"
1277
 
1300
  msgstr "lățime"
1301
 
1302
  #: classes/Settings/Column/CustomFieldType.php:153
1303
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1304
  msgid "Custom"
1305
  msgstr "Personalizat"
1306
 
1337
  msgstr "Înregistrat"
1338
 
1339
  #: classes/Settings/Column/CustomFieldType.php:80
1340
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1341
  msgid "Post Type"
1342
  msgstr "Tip de articol"
1343
 
1349
  msgid "Nickname"
1350
  msgstr "Poreclă"
1351
 
 
 
 
 
1352
  #: classes/Column/Post/CommentCount.php:17
1353
  #: classes/Column/User/CommentCount.php:14
1354
  msgid "Comment Count"
1355
  msgstr "Număr comentarii"
1356
 
1357
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1358
  msgid "Remove"
1359
  msgstr "Înlătură"
1360
 
1402
  msgid "Permalink"
1403
  msgstr "Legătură permanentă"
1404
 
1405
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1406
  msgid "Path"
1407
  msgstr "Cale"
1408
 
1546
  msgid "Path scope"
1547
  msgstr ""
1548
 
 
 
 
 
1549
  #: classes/Column/Media/FileSize.php:14
1550
  msgid "File Size"
1551
  msgstr "Dimensiune fișier"
1603
  msgid "Available Sizes"
1604
  msgstr "Dimensiuni disponibile"
1605
 
1606
+ #: classes/Admin/Page/Columns.php:466
1607
  msgid "View"
1608
  msgstr "Vezi"
1609
 
1698
  #: classes/Admin/Help/CustomField.php:22
1699
  #: classes/Settings/Column/CustomFieldType.php:168
1700
  #: classes/Settings/Column/Image.php:71
1701
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1702
  msgid "Default"
1703
  msgstr "Implicit"
1704
 
1784
  msgid "Agent"
1785
  msgstr "Agent"
1786
 
1787
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1788
  msgid "Edit"
1789
  msgstr "Editare"
1790
 
1795
  msgid "ID"
1796
  msgstr "ID"
1797
 
1798
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1799
  #: classes/Settings/Column/ActionIcons.php:22
1800
  #: classes/Settings/Column/MissingImageSize.php:22
1801
  #: classes/Settings/Column/PostFormatIcon.php:24
1802
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1803
  #: classes/Settings/Column/Toggle.php:14
1804
  msgid "No"
1805
  msgstr "Nu"
1806
 
1807
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1808
  #: classes/Settings/Column/ActionIcons.php:21
1809
  #: classes/Settings/Column/MissingImageSize.php:21
1810
  #: classes/Settings/Column/PostFormatIcon.php:23
1811
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1812
  #: classes/Settings/Column/Toggle.php:13
1813
  msgid "Yes"
1814
  msgstr "Da"
1837
  msgid "Advanced Custom Fields"
1838
  msgstr "Câmpuri personalizate avansate"
1839
 
1840
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1841
  msgid "Plugins"
1842
  msgstr "Module"
languages/codepress-admin-columns-ru_RU.mo CHANGED
Binary file
languages/codepress-admin-columns-ru_RU.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr "Цитата отсутствует."
241
  msgid "User Nicename"
242
  msgstr "Имя пользователя"
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr "Прислать мне скидку"
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr "Цены начиная от %s"
251
 
@@ -503,7 +571,7 @@ msgstr ","
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr "Полный путь к файлу"
509
 
@@ -511,161 +579,161 @@ msgstr "Полный путь к файлу"
511
  msgid "Discount is valid until %s"
512
  msgstr "Скидка действует до %s"
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr "Показывать кнопку %s на экране таблицы."
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr "По умолчанию - %s."
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr "включено"
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr "выключено"
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr "Уведомление"
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr "Инструкции"
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr "наша документация"
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
  msgstr[2] ""
556
 
557
- #: classes/Admin/Page/Help.php:258
558
  msgid "View documentation"
559
  msgstr "Посмотреть документацию"
560
 
561
- #: classes/Admin/Page/Help.php:203
562
  msgid "The action %s used on this website is deprecated since %s."
563
  msgstr ""
564
 
565
- #: classes/Admin/Page/Help.php:185
566
  msgid "The filter %s used on this website is deprecated since %s."
567
  msgstr ""
568
 
569
- #: classes/Admin/Page/Help.php:172
570
  msgid "Deprecated Actions"
571
  msgstr "Устаревшие действия"
572
 
573
- #: classes/Admin/Page/Help.php:171
574
  msgid "Deprecated Filters"
575
  msgstr "Устаревшие фильтры"
576
 
577
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
578
  msgid "Help"
579
  msgstr "Помощь"
580
 
581
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
582
  msgid "Close"
583
  msgstr "Закрыть"
584
 
585
- #: classes/Admin/Page/Columns.php:741
586
  msgid "Clear all columns "
587
  msgstr "Очистить все колонки"
588
 
589
- #: classes/Admin/Page/Columns.php:648
590
  msgid "I'm using Admin Columns for WordPress!"
591
  msgstr "Я использую Admin Columns для WordPress!"
592
 
593
- #: classes/Admin/Page/Columns.php:590
594
  msgid "Your First Name"
595
  msgstr "Ваше имя"
596
 
597
- #: classes/Admin/Page/Columns.php:589
598
  msgid "Your Email"
599
  msgstr "Ваш Email"
600
 
601
- #: classes/Admin/Page/Columns.php:582
602
  msgid "Submit your email and we'll send you a discount for %s off."
603
  msgstr "Напишите свой электронный адрес и мы отправим купон на %s скидку."
604
 
605
- #: classes/Admin/Page/Columns.php:578
606
  msgid "Get %s Off!"
607
  msgstr "Получите %s скидку!"
608
 
609
- #: classes/Admin/Page/Columns.php:545
610
  msgid "Extra Columns for:"
611
  msgstr "Дополнительные колонки для:"
612
 
613
- #: classes/Admin/Page/Columns.php:531
614
  msgid "Edit your column content directly"
615
  msgstr "Редактируйте содержимое колонки"
616
 
617
- #: classes/Admin/Page/Columns.php:519
618
  msgid "Pro"
619
  msgstr "Pro"
620
 
621
- #: classes/Admin/Page/Columns.php:301
622
  msgid "You need at least one column"
623
  msgstr "Вам нужна по крайней мере одна колонка"
624
 
625
- #: classes/Admin/Page/Addons.php:293
626
  msgid "Available"
627
  msgstr "Доступно"
628
 
629
- #: classes/Admin/Page/Addons.php:292
630
  msgid "Recommended"
631
  msgstr "Рекомендуется"
632
 
633
- #: classes/Admin/Page/Addons.php:113
634
  msgid "%s could not be activated."
635
  msgstr ""
636
 
637
- #: classes/Admin/Page/Addons.php:103
638
  msgid "%s successfully activated."
639
  msgstr ""
640
 
641
- #: classes/Admin/Page/Addons.php:98
642
  msgid "%s plugin successfully deactivated."
643
  msgstr "Плагин %s успешно деактивирован."
644
 
645
- #: classes/Admin/Page/Addons.php:97
646
  msgid "%s plugin successfully activated."
647
  msgstr "Плагин %s успешно активирован."
648
 
649
- #: classes/Admin/Page/Addons.php:64
650
  msgid "%s add-on requires %s."
651
  msgid_plural "%s add-ons requires %s."
652
  msgstr[0] ""
653
  msgstr[1] ""
654
  msgstr[2] ""
655
 
656
- #: classes/Admin/Page/Addons.php:51
657
  msgid "here"
658
  msgstr "здесь"
659
 
660
- #: classes/Admin/Page/Addons.php:51
661
  msgid "Click %s to activate the plugin."
662
  msgstr "Нажмите %s чтобы активировать плагин."
663
 
664
- #: classes/Admin/Page/Addons.php:48
665
  msgid "%s plugin is installed, but not active."
666
  msgstr "Плагин %s установлен, но не активен."
667
 
668
- #: classes/Admin/Page/Addons.php:46
669
  msgid "%s plugin needs to be installed for the add-on to work."
670
  msgstr ""
671
 
@@ -685,59 +753,55 @@ msgstr "Pods"
685
  msgid "Imported"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:561
689
  msgid "Learn more about Pro"
690
  msgstr "Узнать больше о Pro"
691
 
692
- #: classes/Admin/Page/Columns.php:533
693
  msgid "Import &amp; Export settings"
694
  msgstr "Импорт &amp; Экспорт настроек"
695
 
696
- #: classes/Admin/Page/Columns.php:532
697
  msgid "Create multiple columns sets"
698
  msgstr "Создавайте наборы колонок"
699
 
700
- #: classes/Admin/Page/Columns.php:530
701
  msgid "Add filterable columns"
702
  msgstr "Фильтрация"
703
 
704
- #: classes/Admin/Page/Columns.php:529
705
  msgid "Add sortable columns"
706
  msgstr "Сортировка"
707
 
708
- #: classes/Admin/Page/Columns.php:524
709
  msgid "Take Admin Columns to the next level:"
710
  msgstr "Поднимите Admin Columns на уровень выше:"
711
 
712
- #: classes/Admin/Page/Columns.php:519
713
  msgid "Upgrade to"
714
  msgstr "Обновить до"
715
 
716
- #: classes/Admin/Promo.php:134
717
- msgid "Get %s Off"
718
- msgstr ""
719
-
720
- #: classes/Admin/Page/Columns.php:431
721
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:221
725
  msgid "Please visit the %s screen once to load all available columns"
726
  msgstr "Пожалуйста, посетите экран %s один раз для загрузки всех доступных колонок"
727
 
728
- #: classes/Admin/Page/Columns.php:500
729
  msgid "Restore columns"
730
  msgstr "Восстановить колонки"
731
 
732
- #: classes/Admin/Page/Columns.php:147
733
  msgid "Settings for %s restored successfully."
734
  msgstr "Настройки для экрана %s успешно восстановлены."
735
 
736
- #: classes/Admin/Page/Columns.php:308
737
  msgid "View %s screen"
738
  msgstr "Посмотреть экран %s"
739
 
740
- #: classes/Admin/Page/Columns.php:70
741
  msgid "Invalid response."
742
  msgstr "Недопустимый ответ."
743
 
@@ -753,23 +817,23 @@ msgstr "Оставьте пустым для отображения URL-адре
753
  msgid "Link Label"
754
  msgstr "Ярлык ссылки"
755
 
756
- #: classes/Admin/Page/Addons.php:220
757
  msgid "You need Admin Columns Pro."
758
  msgstr "Вам нужен Admin Columns Pro."
759
 
760
- #: classes/Admin/Page/Addons.php:214
761
  msgid "Addon does not exist."
762
  msgstr "Дополнение не существует."
763
 
764
- #: classes/Admin/Page/Addons.php:176
765
  msgid "the addons page"
766
  msgstr ""
767
 
768
- #: classes/Admin/Page/Addons.php:176
769
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
770
  msgstr "Знаете ли Вы, что Admin Columns Pro имеет возможность интеграции с %s? С лицензией Admin Columns Pro Вы можете скачать их с %s!"
771
 
772
- #: codepress-admin-columns.php:300
773
  msgid "Custom Fields"
774
  msgstr "Произвольные поля"
775
 
@@ -781,22 +845,28 @@ msgstr "AdminColumns.com"
781
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
782
  msgstr "Позволяет добавлять, удалять, изменять и переставлять местами колонки в таблицах на экранах записей, страниц, комментариев и т.д. в админ-панели WordPress."
783
 
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Plugin URI of the plugin/theme
786
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
787
  #. Author URI of the plugin/theme
788
  msgid "https://www.admincolumns.com"
789
  msgstr "https://www.admincolumns.com"
790
 
791
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
792
  msgid "Edit columns"
793
  msgstr "Редактировать колонки"
794
 
795
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
796
  msgid "Settings for %s updated successfully."
797
  msgstr "Настройки для экрана %s успешно обновлены."
798
 
799
- #: classes/Admin/Page/Columns.php:315
800
  msgid "You are trying to store the same settings for %s."
801
  msgstr "Вы пытаетесь сохранить те же параметры для %s."
802
 
@@ -804,17 +874,17 @@ msgstr "Вы пытаетесь сохранить те же параметры
804
  msgid "No columns settings available."
805
  msgstr "Нет доступных настроек колонок."
806
 
807
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
808
  msgid "Users"
809
  msgstr "Пользователи"
810
 
811
  #: classes/ListScreen/Media.php:16
812
  #: classes/Settings/Column/CustomFieldType.php:112
813
- #: codepress-admin-columns.php:432
814
  msgid "Media"
815
  msgstr "Медиафайлы"
816
 
817
- #: codepress-admin-columns.php:434
818
  msgid "Links"
819
  msgstr "Ссылки"
820
 
@@ -822,103 +892,103 @@ msgstr "Ссылки"
822
  msgid "Comment"
823
  msgstr "Комментарий"
824
 
825
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
826
  msgid "Comments"
827
  msgstr "Комментарии"
828
 
829
- #: classes/Admin/Page/Addons.php:420
830
  msgid "Get this add-on"
831
  msgstr "Получить это дополнение"
832
 
833
- #: classes/Admin/Page/Addons.php:418
834
  msgid "Download & Install"
835
  msgstr "Скачать & Установить"
836
 
837
- #: classes/Admin/Page/Addons.php:412
838
  msgid "Activate"
839
  msgstr "Активировать"
840
 
841
- #: classes/Admin/Page/Addons.php:291
842
  msgid "Installed"
843
  msgstr "Установленные"
844
 
845
- #: classes/Admin/Page/Addons.php:408
846
  msgid "Deactivate"
847
  msgstr "Деактивировать"
848
 
849
- #: classes/Admin/Page/Addons.php:405
850
  msgid "Active"
851
  msgstr "Активен"
852
 
853
- #: classes/Admin/Page/Columns.php:747
854
  msgid "Add Column"
855
  msgstr "Добавить колонку"
856
 
857
- #: classes/Admin/Page/Columns.php:727
858
  msgid "Drag and drop to reorder"
859
  msgstr "Перетащите чтобы изменить порядок"
860
 
861
- #: classes/Admin/Page/Columns.php:676
862
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
863
  msgstr "Полная документация, отчёты об ошибках, предложения и прочее - <a href='%s'>на сайте Admin Columns</a>"
864
 
865
- #: classes/Admin/Page/Columns.php:672
866
  msgid "Check the <strong>Help</strong> section in the top-right screen."
867
  msgstr "См. раздел <strong>Помощь</strong> в верхнем углу экрана."
868
 
869
- #: classes/Admin/Page/Columns.php:667
870
  msgid "Support"
871
  msgstr "Техподдержка"
872
 
873
- #: classes/Admin/Page/Columns.php:655
874
  msgid "Buy Pro"
875
  msgstr "Купить Pro"
876
 
877
- #: classes/Admin/Page/Columns.php:649
878
  msgid "Tweet"
879
  msgstr "Твиттер"
880
 
881
- #: classes/Admin/Page/Columns.php:643
882
  msgid "Rate"
883
  msgstr "Голосовать"
884
 
885
- #: classes/Admin/Page/Columns.php:638
886
  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!"
887
  msgstr "Мы будем очень рады, если Вы поставите свою оценку в рейтинге на WordPress.org или расскажете об Admin Columns в Твиттере!"
888
 
889
- #: classes/Admin/Page/Columns.php:635
890
  msgid "Woohoo! We're glad to hear that!"
891
  msgstr "Мы рады слышать это!"
892
 
893
- #: classes/Admin/Page/Columns.php:625
894
  msgid "Forums"
895
  msgstr "Форумы"
896
 
897
- #: classes/Admin/Page/Columns.php:620
898
  msgid "Docs"
899
  msgstr "Документация"
900
 
901
- #: classes/Admin/Page/Columns.php:615
902
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
903
  msgstr " с нашей обширной документацией или откройте тему WordPress.org!"
904
 
905
- #: classes/Admin/Page/Columns.php:612
906
  msgid "What's wrong? Need help? Let us know!"
907
  msgstr "Что-то не так? Нужна помощь? Дайте нам знать!"
908
 
909
- #: classes/Admin/Page/Columns.php:602
910
  msgid "Are you happy with Admin Columns?"
911
  msgstr "Вам нравится Admin Columns?"
912
 
913
- #: classes/Admin/Page/Columns.php:499
914
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
915
  msgstr "Внимание! Настройка колонок для экрана %s будет сброшена. Это необратимое действие."
916
 
917
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
918
  msgid "Update"
919
  msgstr "Обновить"
920
 
921
- #: classes/Admin/Page/Columns.php:477
922
  msgid "Store settings"
923
  msgstr "Настройки сохранения"
924
 
@@ -926,7 +996,7 @@ msgstr "Настройки сохранения"
926
  msgid "Add-ons"
927
  msgstr "Дополнения"
928
 
929
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
930
  msgid "Settings"
931
  msgstr "Настройки"
932
 
@@ -934,32 +1004,32 @@ msgstr "Настройки"
934
  msgid "Others"
935
  msgstr "Другое"
936
 
937
- #: classes/Admin/Page/Settings.php:229
938
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
939
  msgstr "Внимание! Все сохранённые ранее настройки колонок будут сброшены. Это необратимое действие."
940
 
941
- #: classes/Admin/Page/Settings.php:229
942
  msgid "Restore default settings"
943
  msgstr "Восстановить настройки по умолчанию"
944
 
945
- #: classes/Admin/Page/Settings.php:221
946
  msgid "This will delete all column settings and restore the default settings."
947
  msgstr "Удалить все настройки колонок и восстановить настройки по умолчанию."
948
 
949
- #: classes/Admin/Page/Settings.php:220
950
  msgid "Restore Settings"
951
  msgstr "Восстановить настройки"
952
 
953
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
954
- #: classes/Admin/Page/Settings.php:179
955
  msgid "Save"
956
  msgstr "Сохранить"
957
 
958
- #: classes/Admin/Page/Settings.php:161
959
  msgid "Customize your Admin Columns settings."
960
  msgstr "Настройте дополнительные параметры"
961
 
962
- #: classes/Admin/Page/Settings.php:160
963
  #: classes/Settings/Column/DateTimeFormat.php:39
964
  msgid "General Settings"
965
  msgstr "Основные настройки"
@@ -1060,19 +1130,19 @@ msgstr "Этот плагин предназначен для добавлени
1060
  msgid "Overview"
1061
  msgstr "Обзор"
1062
 
1063
- #: classes/Admin/Page/Settings.php:101
1064
  msgid "Default settings succesfully restored."
1065
  msgstr "Настройки по умолчанию успешно восстановлены."
1066
 
1067
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1068
  msgid "%s column is already present and can not be duplicated."
1069
  msgstr "Колонка %s уже существует и не может быть продублирована."
1070
 
1071
- #: classes/Admin.php:127
1072
  msgid "Admin Columns Settings"
1073
  msgstr "Настройка Admin Columns"
1074
 
1075
- #: classes/Admin/Page/Addons.php:104
1076
  msgid "%s successfully deactivated."
1077
  msgstr "%s успешно деактивировано."
1078
 
@@ -1120,13 +1190,14 @@ msgstr "нажмите здесь"
1120
  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."
1121
  msgstr "Мы не хотели бы Вас беспокоить, но Вы уже некоторое время используете %s, и нам интересно довольны ли Вы плагином. Если да, не могли бы Вы оставить свой комментарий на wordpress.org? Если у Вас есть какие-то проблемы с %s, пожалуйста, %s."
1122
 
1123
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1124
  msgid "Admin Columns Pro"
1125
  msgstr "Admin Columns Pro"
1126
 
1127
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1128
  #. Plugin Name of the plugin/theme
1129
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1130
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1131
  #: classes/Plugin/Updater.php:114
1132
  msgid "Admin Columns"
@@ -1180,7 +1251,7 @@ msgstr "Имя"
1180
  msgid "Choose a column type."
1181
  msgstr "Выберете тип столбца."
1182
 
1183
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1184
  msgid "Clone"
1185
  msgstr "Клонировать"
1186
 
@@ -1200,7 +1271,7 @@ msgstr "Email пользователя"
1200
  msgid "User Login"
1201
  msgstr "Логин пользователя"
1202
 
1203
- #: classes/Settings/Column/User.php:65
1204
  msgid "Last Name"
1205
  msgstr "Фамилия"
1206
 
@@ -1229,7 +1300,7 @@ msgid "width"
1229
  msgstr "ширина"
1230
 
1231
  #: classes/Settings/Column/CustomFieldType.php:153
1232
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1233
  msgid "Custom"
1234
  msgstr "Произвольно "
1235
 
@@ -1266,7 +1337,7 @@ msgid "Registered"
1266
  msgstr "Регистрация"
1267
 
1268
  #: classes/Settings/Column/CustomFieldType.php:80
1269
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1270
  msgid "Post Type"
1271
  msgstr "Тип записи"
1272
 
@@ -1278,16 +1349,12 @@ msgstr "Количество записей"
1278
  msgid "Nickname"
1279
  msgstr "Никнейм"
1280
 
1281
- #: classes/Column/User/LastName.php:14
1282
- msgid "Last name"
1283
- msgstr "Фамилия"
1284
-
1285
  #: classes/Column/Post/CommentCount.php:17
1286
  #: classes/Column/User/CommentCount.php:14
1287
  msgid "Comment Count"
1288
  msgstr "Количество комментариев"
1289
 
1290
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1291
  msgid "Remove"
1292
  msgstr "Убрать"
1293
 
@@ -1335,7 +1402,7 @@ msgstr "PING статус"
1335
  msgid "Permalink"
1336
  msgstr "Постоянная ссылка"
1337
 
1338
- #: classes/Column/Post/Path.php:16
1339
  msgid "Path"
1340
  msgstr "Путь"
1341
 
@@ -1479,10 +1546,6 @@ msgstr "Часть пути к файлу для отображения"
1479
  msgid "Path scope"
1480
  msgstr "Область пути"
1481
 
1482
- #: classes/Settings/Column/PathScope.php:24
1483
- msgid "Full path"
1484
- msgstr "Полный путь"
1485
-
1486
  #: classes/Column/Media/FileSize.php:14
1487
  msgid "File Size"
1488
  msgstr "Размер файла"
@@ -1540,7 +1603,7 @@ msgstr "Подпись"
1540
  msgid "Available Sizes"
1541
  msgstr "Доступные размеры"
1542
 
1543
- #: classes/Admin/Page/Columns.php:463
1544
  msgid "View"
1545
  msgstr "Посмотреть"
1546
 
@@ -1635,7 +1698,7 @@ msgstr "Цвет"
1635
  #: classes/Admin/Help/CustomField.php:22
1636
  #: classes/Settings/Column/CustomFieldType.php:168
1637
  #: classes/Settings/Column/Image.php:71
1638
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1639
  msgid "Default"
1640
  msgstr "По умолчанию"
1641
 
@@ -1721,7 +1784,7 @@ msgstr "Одобренные"
1721
  msgid "Agent"
1722
  msgstr "Агент"
1723
 
1724
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1725
  msgid "Edit"
1726
  msgstr "Редактировать"
1727
 
@@ -1732,20 +1795,20 @@ msgstr "Редактировать"
1732
  msgid "ID"
1733
  msgstr "ID"
1734
 
1735
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1736
  #: classes/Settings/Column/ActionIcons.php:22
1737
  #: classes/Settings/Column/MissingImageSize.php:22
1738
  #: classes/Settings/Column/PostFormatIcon.php:24
1739
- #: classes/Settings/Column/StatusIcon.php:24
1740
  #: classes/Settings/Column/Toggle.php:14
1741
  msgid "No"
1742
  msgstr "Нет"
1743
 
1744
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1745
  #: classes/Settings/Column/ActionIcons.php:21
1746
  #: classes/Settings/Column/MissingImageSize.php:21
1747
  #: classes/Settings/Column/PostFormatIcon.php:23
1748
- #: classes/Settings/Column/StatusIcon.php:23
1749
  #: classes/Settings/Column/Toggle.php:13
1750
  msgid "Yes"
1751
  msgstr "Да"
@@ -1774,6 +1837,6 @@ msgstr "WooCommerce"
1774
  msgid "Advanced Custom Fields"
1775
  msgstr "Advanced Custom Fields"
1776
 
1777
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1778
  msgid "Plugins"
1779
  msgstr "Плагины"
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr "Имя пользователя"
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr "Прислать мне скидку"
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr "Цены начиная от %s"
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr "Полный путь к файлу"
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr "Скидка действует до %s"
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr "Показывать кнопку %s на экране таблицы."
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr "По умолчанию - %s."
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr "включено"
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr "выключено"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr "Уведомление"
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr "Инструкции"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr "наша документация"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
  msgstr[2] ""
624
 
625
+ #: classes/Admin/Page/Help.php:263
626
  msgid "View documentation"
627
  msgstr "Посмотреть документацию"
628
 
629
+ #: classes/Admin/Page/Help.php:208
630
  msgid "The action %s used on this website is deprecated since %s."
631
  msgstr ""
632
 
633
+ #: classes/Admin/Page/Help.php:190
634
  msgid "The filter %s used on this website is deprecated since %s."
635
  msgstr ""
636
 
637
+ #: classes/Admin/Page/Help.php:177
638
  msgid "Deprecated Actions"
639
  msgstr "Устаревшие действия"
640
 
641
+ #: classes/Admin/Page/Help.php:176
642
  msgid "Deprecated Filters"
643
  msgstr "Устаревшие фильтры"
644
 
645
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
646
  msgid "Help"
647
  msgstr "Помощь"
648
 
649
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
650
  msgid "Close"
651
  msgstr "Закрыть"
652
 
653
+ #: classes/Admin/Page/Columns.php:744
654
  msgid "Clear all columns "
655
  msgstr "Очистить все колонки"
656
 
657
+ #: classes/Admin/Page/Columns.php:651
658
  msgid "I'm using Admin Columns for WordPress!"
659
  msgstr "Я использую Admin Columns для WordPress!"
660
 
661
+ #: classes/Admin/Page/Columns.php:593
662
  msgid "Your First Name"
663
  msgstr "Ваше имя"
664
 
665
+ #: classes/Admin/Page/Columns.php:592
666
  msgid "Your Email"
667
  msgstr "Ваш Email"
668
 
669
+ #: classes/Admin/Page/Columns.php:585
670
  msgid "Submit your email and we'll send you a discount for %s off."
671
  msgstr "Напишите свой электронный адрес и мы отправим купон на %s скидку."
672
 
673
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
674
  msgid "Get %s Off!"
675
  msgstr "Получите %s скидку!"
676
 
677
+ #: classes/Admin/Page/Columns.php:548
678
  msgid "Extra Columns for:"
679
  msgstr "Дополнительные колонки для:"
680
 
681
+ #: classes/Admin/Page/Columns.php:534
682
  msgid "Edit your column content directly"
683
  msgstr "Редактируйте содержимое колонки"
684
 
685
+ #: classes/Admin/Page/Columns.php:522
686
  msgid "Pro"
687
  msgstr "Pro"
688
 
689
+ #: classes/Admin/Page/Columns.php:304
690
  msgid "You need at least one column"
691
  msgstr "Вам нужна по крайней мере одна колонка"
692
 
693
+ #: classes/Admin/Page/Addons.php:297
694
  msgid "Available"
695
  msgstr "Доступно"
696
 
697
+ #: classes/Admin/Page/Addons.php:296
698
  msgid "Recommended"
699
  msgstr "Рекомендуется"
700
 
701
+ #: classes/Admin/Page/Addons.php:117
702
  msgid "%s could not be activated."
703
  msgstr ""
704
 
705
+ #: classes/Admin/Page/Addons.php:107
706
  msgid "%s successfully activated."
707
  msgstr ""
708
 
709
+ #: classes/Admin/Page/Addons.php:102
710
  msgid "%s plugin successfully deactivated."
711
  msgstr "Плагин %s успешно деактивирован."
712
 
713
+ #: classes/Admin/Page/Addons.php:101
714
  msgid "%s plugin successfully activated."
715
  msgstr "Плагин %s успешно активирован."
716
 
717
+ #: classes/Admin/Page/Addons.php:69
718
  msgid "%s add-on requires %s."
719
  msgid_plural "%s add-ons requires %s."
720
  msgstr[0] ""
721
  msgstr[1] ""
722
  msgstr[2] ""
723
 
724
+ #: classes/Admin/Page/Addons.php:56
725
  msgid "here"
726
  msgstr "здесь"
727
 
728
+ #: classes/Admin/Page/Addons.php:56
729
  msgid "Click %s to activate the plugin."
730
  msgstr "Нажмите %s чтобы активировать плагин."
731
 
732
+ #: classes/Admin/Page/Addons.php:53
733
  msgid "%s plugin is installed, but not active."
734
  msgstr "Плагин %s установлен, но не активен."
735
 
736
+ #: classes/Admin/Page/Addons.php:51
737
  msgid "%s plugin needs to be installed for the add-on to work."
738
  msgstr ""
739
 
753
  msgid "Imported"
754
  msgstr ""
755
 
756
+ #: classes/Admin/Page/Columns.php:564
757
  msgid "Learn more about Pro"
758
  msgstr "Узнать больше о Pro"
759
 
760
+ #: classes/Admin/Page/Columns.php:536
761
  msgid "Import &amp; Export settings"
762
  msgstr "Импорт &amp; Экспорт настроек"
763
 
764
+ #: classes/Admin/Page/Columns.php:535
765
  msgid "Create multiple columns sets"
766
  msgstr "Создавайте наборы колонок"
767
 
768
+ #: classes/Admin/Page/Columns.php:533
769
  msgid "Add filterable columns"
770
  msgstr "Фильтрация"
771
 
772
+ #: classes/Admin/Page/Columns.php:532
773
  msgid "Add sortable columns"
774
  msgstr "Сортировка"
775
 
776
+ #: classes/Admin/Page/Columns.php:527
777
  msgid "Take Admin Columns to the next level:"
778
  msgstr "Поднимите Admin Columns на уровень выше:"
779
 
780
+ #: classes/Admin/Page/Columns.php:522
781
  msgid "Upgrade to"
782
  msgstr "Обновить до"
783
 
784
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
785
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
786
  msgstr ""
787
 
788
+ #: classes/Admin/Page/Columns.php:224
789
  msgid "Please visit the %s screen once to load all available columns"
790
  msgstr "Пожалуйста, посетите экран %s один раз для загрузки всех доступных колонок"
791
 
792
+ #: classes/Admin/Page/Columns.php:503
793
  msgid "Restore columns"
794
  msgstr "Восстановить колонки"
795
 
796
+ #: classes/Admin/Page/Columns.php:150
797
  msgid "Settings for %s restored successfully."
798
  msgstr "Настройки для экрана %s успешно восстановлены."
799
 
800
+ #: classes/Admin/Page/Columns.php:311
801
  msgid "View %s screen"
802
  msgstr "Посмотреть экран %s"
803
 
804
+ #: classes/Admin/Page/Columns.php:73
805
  msgid "Invalid response."
806
  msgstr "Недопустимый ответ."
807
 
817
  msgid "Link Label"
818
  msgstr "Ярлык ссылки"
819
 
820
+ #: classes/Admin/Page/Addons.php:224
821
  msgid "You need Admin Columns Pro."
822
  msgstr "Вам нужен Admin Columns Pro."
823
 
824
+ #: classes/Admin/Page/Addons.php:218
825
  msgid "Addon does not exist."
826
  msgstr "Дополнение не существует."
827
 
828
+ #: classes/Admin/Page/Addons.php:180
829
  msgid "the addons page"
830
  msgstr ""
831
 
832
+ #: classes/Admin/Page/Addons.php:180
833
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
834
  msgstr "Знаете ли Вы, что Admin Columns Pro имеет возможность интеграции с %s? С лицензией Admin Columns Pro Вы можете скачать их с %s!"
835
 
836
+ #: codepress-admin-columns.php:325
837
  msgid "Custom Fields"
838
  msgstr "Произвольные поля"
839
 
845
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
846
  msgstr "Позволяет добавлять, удалять, изменять и переставлять местами колонки в таблицах на экранах записей, страниц, комментариев и т.д. в админ-панели WordPress."
847
 
848
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
849
+ #. #-#-#-#-#
850
  #. Plugin URI of the plugin/theme
851
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
852
+ #. #-#-#-#-#
853
  #. Author URI of the plugin/theme
854
  msgid "https://www.admincolumns.com"
855
  msgstr "https://www.admincolumns.com"
856
 
857
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
858
  msgid "Edit columns"
859
  msgstr "Редактировать колонки"
860
 
861
+ #: classes/Admin/Page/Columns.php:940
862
+ msgid "Upgrade"
863
+ msgstr "Обновить"
864
+
865
+ #: classes/Admin/Page/Columns.php:331
866
  msgid "Settings for %s updated successfully."
867
  msgstr "Настройки для экрана %s успешно обновлены."
868
 
869
+ #: classes/Admin/Page/Columns.php:318
870
  msgid "You are trying to store the same settings for %s."
871
  msgstr "Вы пытаетесь сохранить те же параметры для %s."
872
 
874
  msgid "No columns settings available."
875
  msgstr "Нет доступных настроек колонок."
876
 
877
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
878
  msgid "Users"
879
  msgstr "Пользователи"
880
 
881
  #: classes/ListScreen/Media.php:16
882
  #: classes/Settings/Column/CustomFieldType.php:112
883
+ #: codepress-admin-columns.php:457
884
  msgid "Media"
885
  msgstr "Медиафайлы"
886
 
887
+ #: codepress-admin-columns.php:459
888
  msgid "Links"
889
  msgstr "Ссылки"
890
 
892
  msgid "Comment"
893
  msgstr "Комментарий"
894
 
895
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
896
  msgid "Comments"
897
  msgstr "Комментарии"
898
 
899
+ #: classes/Admin/Page/Addons.php:424
900
  msgid "Get this add-on"
901
  msgstr "Получить это дополнение"
902
 
903
+ #: classes/Admin/Page/Addons.php:422
904
  msgid "Download & Install"
905
  msgstr "Скачать & Установить"
906
 
907
+ #: classes/Admin/Page/Addons.php:416
908
  msgid "Activate"
909
  msgstr "Активировать"
910
 
911
+ #: classes/Admin/Page/Addons.php:295
912
  msgid "Installed"
913
  msgstr "Установленные"
914
 
915
+ #: classes/Admin/Page/Addons.php:412
916
  msgid "Deactivate"
917
  msgstr "Деактивировать"
918
 
919
+ #: classes/Admin/Page/Addons.php:409
920
  msgid "Active"
921
  msgstr "Активен"
922
 
923
+ #: classes/Admin/Page/Columns.php:750
924
  msgid "Add Column"
925
  msgstr "Добавить колонку"
926
 
927
+ #: classes/Admin/Page/Columns.php:730
928
  msgid "Drag and drop to reorder"
929
  msgstr "Перетащите чтобы изменить порядок"
930
 
931
+ #: classes/Admin/Page/Columns.php:679
932
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
933
  msgstr "Полная документация, отчёты об ошибках, предложения и прочее - <a href='%s'>на сайте Admin Columns</a>"
934
 
935
+ #: classes/Admin/Page/Columns.php:675
936
  msgid "Check the <strong>Help</strong> section in the top-right screen."
937
  msgstr "См. раздел <strong>Помощь</strong> в верхнем углу экрана."
938
 
939
+ #: classes/Admin/Page/Columns.php:670
940
  msgid "Support"
941
  msgstr "Техподдержка"
942
 
943
+ #: classes/Admin/Page/Columns.php:658
944
  msgid "Buy Pro"
945
  msgstr "Купить Pro"
946
 
947
+ #: classes/Admin/Page/Columns.php:652
948
  msgid "Tweet"
949
  msgstr "Твиттер"
950
 
951
+ #: classes/Admin/Page/Columns.php:646
952
  msgid "Rate"
953
  msgstr "Голосовать"
954
 
955
+ #: classes/Admin/Page/Columns.php:641
956
  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!"
957
  msgstr "Мы будем очень рады, если Вы поставите свою оценку в рейтинге на WordPress.org или расскажете об Admin Columns в Твиттере!"
958
 
959
+ #: classes/Admin/Page/Columns.php:638
960
  msgid "Woohoo! We're glad to hear that!"
961
  msgstr "Мы рады слышать это!"
962
 
963
+ #: classes/Admin/Page/Columns.php:628
964
  msgid "Forums"
965
  msgstr "Форумы"
966
 
967
+ #: classes/Admin/Page/Columns.php:623
968
  msgid "Docs"
969
  msgstr "Документация"
970
 
971
+ #: classes/Admin/Page/Columns.php:618
972
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
973
  msgstr " с нашей обширной документацией или откройте тему WordPress.org!"
974
 
975
+ #: classes/Admin/Page/Columns.php:615
976
  msgid "What's wrong? Need help? Let us know!"
977
  msgstr "Что-то не так? Нужна помощь? Дайте нам знать!"
978
 
979
+ #: classes/Admin/Page/Columns.php:605
980
  msgid "Are you happy with Admin Columns?"
981
  msgstr "Вам нравится Admin Columns?"
982
 
983
+ #: classes/Admin/Page/Columns.php:502
984
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
985
  msgstr "Внимание! Настройка колонок для экрана %s будет сброшена. Это необратимое действие."
986
 
987
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
988
  msgid "Update"
989
  msgstr "Обновить"
990
 
991
+ #: classes/Admin/Page/Columns.php:480
992
  msgid "Store settings"
993
  msgstr "Настройки сохранения"
994
 
996
  msgid "Add-ons"
997
  msgstr "Дополнения"
998
 
999
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
1000
  msgid "Settings"
1001
  msgstr "Настройки"
1002
 
1004
  msgid "Others"
1005
  msgstr "Другое"
1006
 
1007
+ #: classes/Admin/Page/Settings.php:239
1008
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1009
  msgstr "Внимание! Все сохранённые ранее настройки колонок будут сброшены. Это необратимое действие."
1010
 
1011
+ #: classes/Admin/Page/Settings.php:239
1012
  msgid "Restore default settings"
1013
  msgstr "Восстановить настройки по умолчанию"
1014
 
1015
+ #: classes/Admin/Page/Settings.php:231
1016
  msgid "This will delete all column settings and restore the default settings."
1017
  msgstr "Удалить все настройки колонок и восстановить настройки по умолчанию."
1018
 
1019
+ #: classes/Admin/Page/Settings.php:230
1020
  msgid "Restore Settings"
1021
  msgstr "Восстановить настройки"
1022
 
1023
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1024
+ #: classes/Admin/Page/Settings.php:189
1025
  msgid "Save"
1026
  msgstr "Сохранить"
1027
 
1028
+ #: classes/Admin/Page/Settings.php:171
1029
  msgid "Customize your Admin Columns settings."
1030
  msgstr "Настройте дополнительные параметры"
1031
 
1032
+ #: classes/Admin/Page/Settings.php:170
1033
  #: classes/Settings/Column/DateTimeFormat.php:39
1034
  msgid "General Settings"
1035
  msgstr "Основные настройки"
1130
  msgid "Overview"
1131
  msgstr "Обзор"
1132
 
1133
+ #: classes/Admin/Page/Settings.php:111
1134
  msgid "Default settings succesfully restored."
1135
  msgstr "Настройки по умолчанию успешно восстановлены."
1136
 
1137
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1138
  msgid "%s column is already present and can not be duplicated."
1139
  msgstr "Колонка %s уже существует и не может быть продублирована."
1140
 
1141
+ #: classes/Admin.php:126
1142
  msgid "Admin Columns Settings"
1143
  msgstr "Настройка Admin Columns"
1144
 
1145
+ #: classes/Admin/Page/Addons.php:108
1146
  msgid "%s successfully deactivated."
1147
  msgstr "%s успешно деактивировано."
1148
 
1190
  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."
1191
  msgstr "Мы не хотели бы Вас беспокоить, но Вы уже некоторое время используете %s, и нам интересно довольны ли Вы плагином. Если да, не могли бы Вы оставить свой комментарий на wordpress.org? Если у Вас есть какие-то проблемы с %s, пожалуйста, %s."
1192
 
1193
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1194
  msgid "Admin Columns Pro"
1195
  msgstr "Admin Columns Pro"
1196
 
1197
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1198
+ #. #-#-#-#-#
1199
  #. Plugin Name of the plugin/theme
1200
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1201
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1202
  #: classes/Plugin/Updater.php:114
1203
  msgid "Admin Columns"
1251
  msgid "Choose a column type."
1252
  msgstr "Выберете тип столбца."
1253
 
1254
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1255
  msgid "Clone"
1256
  msgstr "Клонировать"
1257
 
1271
  msgid "User Login"
1272
  msgstr "Логин пользователя"
1273
 
1274
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1275
  msgid "Last Name"
1276
  msgstr "Фамилия"
1277
 
1300
  msgstr "ширина"
1301
 
1302
  #: classes/Settings/Column/CustomFieldType.php:153
1303
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1304
  msgid "Custom"
1305
  msgstr "Произвольно "
1306
 
1337
  msgstr "Регистрация"
1338
 
1339
  #: classes/Settings/Column/CustomFieldType.php:80
1340
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1341
  msgid "Post Type"
1342
  msgstr "Тип записи"
1343
 
1349
  msgid "Nickname"
1350
  msgstr "Никнейм"
1351
 
 
 
 
 
1352
  #: classes/Column/Post/CommentCount.php:17
1353
  #: classes/Column/User/CommentCount.php:14
1354
  msgid "Comment Count"
1355
  msgstr "Количество комментариев"
1356
 
1357
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1358
  msgid "Remove"
1359
  msgstr "Убрать"
1360
 
1402
  msgid "Permalink"
1403
  msgstr "Постоянная ссылка"
1404
 
1405
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1406
  msgid "Path"
1407
  msgstr "Путь"
1408
 
1546
  msgid "Path scope"
1547
  msgstr "Область пути"
1548
 
 
 
 
 
1549
  #: classes/Column/Media/FileSize.php:14
1550
  msgid "File Size"
1551
  msgstr "Размер файла"
1603
  msgid "Available Sizes"
1604
  msgstr "Доступные размеры"
1605
 
1606
+ #: classes/Admin/Page/Columns.php:466
1607
  msgid "View"
1608
  msgstr "Посмотреть"
1609
 
1698
  #: classes/Admin/Help/CustomField.php:22
1699
  #: classes/Settings/Column/CustomFieldType.php:168
1700
  #: classes/Settings/Column/Image.php:71
1701
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1702
  msgid "Default"
1703
  msgstr "По умолчанию"
1704
 
1784
  msgid "Agent"
1785
  msgstr "Агент"
1786
 
1787
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1788
  msgid "Edit"
1789
  msgstr "Редактировать"
1790
 
1795
  msgid "ID"
1796
  msgstr "ID"
1797
 
1798
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1799
  #: classes/Settings/Column/ActionIcons.php:22
1800
  #: classes/Settings/Column/MissingImageSize.php:22
1801
  #: classes/Settings/Column/PostFormatIcon.php:24
1802
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1803
  #: classes/Settings/Column/Toggle.php:14
1804
  msgid "No"
1805
  msgstr "Нет"
1806
 
1807
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1808
  #: classes/Settings/Column/ActionIcons.php:21
1809
  #: classes/Settings/Column/MissingImageSize.php:21
1810
  #: classes/Settings/Column/PostFormatIcon.php:23
1811
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1812
  #: classes/Settings/Column/Toggle.php:13
1813
  msgid "Yes"
1814
  msgstr "Да"
1837
  msgid "Advanced Custom Fields"
1838
  msgstr "Advanced Custom Fields"
1839
 
1840
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1841
  msgid "Plugins"
1842
  msgstr "Плагины"
languages/codepress-admin-columns-sv_SE.mo CHANGED
Binary file
languages/codepress-admin-columns-sv_SE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-03-19 14:30:06+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -25,7 +93,7 @@ msgstr ""
25
 
26
  #: classes/Settings/Column/StringLimit.php:34
27
  msgid "No limit"
28
- msgstr ""
29
 
30
  #: classes/Settings/Column/StringLimit.php:25
31
  msgid "Limit text to a certain number of characters or words"
@@ -41,7 +109,7 @@ msgstr ""
41
 
42
  #: classes/TableScreen.php:124 classes/TableScreen.php:126
43
  msgid "Download"
44
- msgstr ""
45
 
46
  #: classes/Settings/Column/PostLink.php:78
47
  msgctxt "post"
@@ -56,12 +124,12 @@ msgstr ""
56
  #: classes/Settings/Column/PostLink.php:76
57
  msgctxt "post"
58
  msgid "View %s"
59
- msgstr ""
60
 
61
  #: classes/Settings/Column/PostLink.php:75
62
  msgctxt "post"
63
  msgid "Edit %s"
64
- msgstr ""
65
 
66
  #: classes/Settings/Column/PostFormatIcon.php:29
67
  msgid "Use an icon instead of text for displaying."
@@ -70,7 +138,7 @@ msgstr ""
70
  #: classes/Settings/Column/Post.php:86
71
  msgctxt "post"
72
  msgid "Featured Image"
73
- msgstr ""
74
 
75
  #: classes/Settings/Column/NumberOfItems.php:30
76
  msgid "Maximum number of items"
@@ -94,7 +162,7 @@ msgstr ""
94
 
95
  #: classes/Settings/Column/Meta.php:129
96
  msgid "current"
97
- msgstr ""
98
 
99
  #: classes/Settings/Column/Meta.php:126
100
  msgid "Network Site:"
@@ -102,15 +170,15 @@ msgstr ""
102
 
103
  #: classes/Settings/Column/Meta.php:118
104
  msgid "Hidden"
105
- msgstr ""
106
 
107
  #: classes/Settings/Column/Meta.php:117
108
  msgid "Public"
109
- msgstr ""
110
 
111
  #: classes/Settings/Column/ExifData.php:83
112
  msgid "Keywords"
113
- msgstr ""
114
 
115
  #: classes/Settings/Column/ExifData.php:82
116
  msgid "Orientation"
@@ -122,7 +190,7 @@ msgstr ""
122
 
123
  #: classes/Settings/Column/CustomField.php:17
124
  msgid "Custom field key"
125
- msgstr ""
126
 
127
  #: classes/Settings/Column/AttachmentDisplay.php:37
128
  msgid "Count"
@@ -130,7 +198,7 @@ msgstr ""
130
 
131
  #: classes/Settings/Column/AttachmentDisplay.php:36
132
  msgid "Thumbnails"
133
- msgstr ""
134
 
135
  #: classes/Plugin/Updater.php:117
136
  msgid "Run the updater"
@@ -150,11 +218,11 @@ msgstr ""
150
 
151
  #: classes/Column/Post/TitleRaw.php:14
152
  msgid "Title Only"
153
- msgstr ""
154
 
155
  #: classes/Column/Post/CommentStatus.php:17
156
  msgid "Allow Comments"
157
- msgstr ""
158
 
159
  #: classes/Column/Post/BeforeMoreTag.php:14
160
  msgid "More Tag"
@@ -162,7 +230,7 @@ msgstr ""
162
 
163
  #: classes/Column/Menu.php:17
164
  msgid "Menu"
165
- msgstr ""
166
 
167
  #: classes/Column/Media/Dimensions.php:28
168
  msgid "Height : %s px"
@@ -182,15 +250,15 @@ msgstr ""
182
 
183
  #: classes/Column/Media/AlternateText.php:14
184
  msgid "Alternative Text"
185
- msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
191
  #: classes/Admin/Addon/NinjaForms.php:13
192
  msgid "Ninja Forms"
193
- msgstr ""
194
 
195
  #: classes/Admin/Addon/EventsCalendar.php:13
196
  msgid "The Events Calendar"
@@ -206,11 +274,11 @@ msgstr ""
206
 
207
  #: classes/Helper/Post.php:134
208
  msgid "Draft"
209
- msgstr ""
210
 
211
  #: classes/Helper/Post.php:131
212
  msgid "Published"
213
- msgstr ""
214
 
215
  #: classes/Helper/Post.php:128
216
  msgid "Private"
@@ -223,7 +291,7 @@ msgstr ""
223
  #: classes/Settings/Column/PostFormatIcon.php:28
224
  #: classes/Settings/Column/StatusIcon.php:28
225
  msgid "Use an icon?"
226
- msgstr ""
227
 
228
  #: classes/Helper/String.php:106
229
  msgid "&hellip;"
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -255,19 +323,19 @@ msgstr ""
255
 
256
  #: classes/Admin/Addon/BuddyPress.php:13
257
  msgid "BuddyPress"
258
- msgstr ""
259
 
260
  #: templates/settings/section.php:23
261
  msgid "View more"
262
- msgstr ""
263
 
264
  #: classes/TableScreen.php:58
265
  msgid "Invalid method."
266
- msgstr ""
267
 
268
  #: classes/TableScreen.php:54
269
  msgid "Invalid column."
270
- msgstr ""
271
 
272
  #: classes/TableScreen.php:46
273
  msgid "Invalid list screen."
@@ -292,7 +360,7 @@ msgstr ""
292
 
293
  #: classes/Settings/Column/Width.php:40
294
  msgid "Auto"
295
- msgstr ""
296
 
297
  #: classes/Settings/Column/AttachmentDisplay.php:41
298
  #: classes/Settings/Column/Comment.php:101 classes/Settings/Column/Post.php:74
@@ -330,15 +398,15 @@ msgstr ""
330
 
331
  #: classes/Settings/Column/Password.php:22
332
  msgid "Password"
333
- msgstr ""
334
 
335
  #: classes/Settings/Column/Meta.php:27
336
  msgid "No fields available."
337
- msgstr ""
338
 
339
  #: classes/Settings/Column/Image.php:112
340
  msgid "Custom Size"
341
- msgstr ""
342
 
343
  #: classes/Settings/Column/Image.php:108
344
  msgid "Full Size"
@@ -346,7 +414,7 @@ msgstr ""
346
 
347
  #: classes/Settings/Column/Image.php:54
348
  msgid "Image Size"
349
- msgstr ""
350
 
351
  #: classes/Settings/Column/Image.php:47
352
  msgid "Height in pixels"
@@ -358,11 +426,11 @@ msgstr ""
358
 
359
  #: classes/Settings/Column/Date.php:78
360
  msgid "in %s"
361
- msgstr ""
362
 
363
  #: classes/Settings/Column/Date.php:75
364
  msgid "%s ago"
365
- msgstr ""
366
 
367
  #: classes/Settings/Column/DateTimeFormat.php:109
368
  msgid "date and time formatting"
@@ -370,11 +438,11 @@ msgstr ""
370
 
371
  #: classes/Settings/Column/DateTimeFormat.php:109
372
  msgid "Learn more about %s."
373
- msgstr ""
374
 
375
  #: classes/Settings/Column/DateTimeFormat.php:107
376
  msgid "Custom:"
377
- msgstr ""
378
 
379
  #: classes/Settings/Column/DateTimeFormat.php:39
380
  msgid "The %s can be changed in %s."
@@ -386,11 +454,11 @@ msgstr ""
386
 
387
  #: classes/Settings/Column/Date.php:13
388
  msgid "or"
389
- msgstr ""
390
 
391
  #: classes/Settings/Column/Date.php:11
392
  msgid "For example: %s."
393
- msgstr ""
394
 
395
  #: classes/Settings/Column/Date.php:10
396
  msgid "The difference is returned in a human readable format."
@@ -434,7 +502,7 @@ msgstr ""
434
 
435
  #: classes/Settings/Column/CustomFieldType.php:102
436
  msgid "Text"
437
- msgstr ""
438
 
439
  #: classes/Settings/Column/CustomFieldType.php:70
440
  msgid "Multiple ids should be separated by a comma."
@@ -446,7 +514,7 @@ msgstr ""
446
 
447
  #: classes/Settings/Column/Meta.php:70
448
  msgid "Field"
449
- msgstr ""
450
 
451
  #: classes/Settings/Column/CharacterLimit.php:28
452
  #: classes/Settings/Column/NumberOfItems.php:30
@@ -473,11 +541,11 @@ msgstr ""
473
 
474
  #: classes/Helper/String.php:292
475
  msgid " or "
476
- msgstr ""
477
 
478
  #: classes/Helper/Html.php:402
479
  msgid "Hide"
480
- msgstr ""
481
 
482
  #: classes/Helper/Html.php:398
483
  msgid "Show %s more"
@@ -485,7 +553,7 @@ msgstr ""
485
 
486
  #: classes/Column/User/Url.php:14
487
  msgid "Website"
488
- msgstr ""
489
 
490
  #: classes/Column/User/ShowToolbar.php:14
491
  msgid "Show Toolbar"
@@ -497,13 +565,13 @@ msgstr ""
497
 
498
  #: classes/Settings/Column/CustomFieldType.php:279
499
  msgid ", "
500
- msgstr ""
501
 
502
  #: classes/Settings/Column/PostFormatIcon.php:73
503
  msgid "Standard"
504
- msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,159 +579,159 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
- msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
- msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
- msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
- msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
- msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
  msgstr[1] ""
555
 
556
- #: classes/Admin/Page/Help.php:258
557
  msgid "View documentation"
558
- msgstr ""
559
 
560
- #: classes/Admin/Page/Help.php:203
561
  msgid "The action %s used on this website is deprecated since %s."
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Help.php:185
565
  msgid "The filter %s used on this website is deprecated since %s."
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Help.php:172
569
  msgid "Deprecated Actions"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Help.php:171
573
  msgid "Deprecated Filters"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
577
  msgid "Help"
578
- msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
581
  msgid "Close"
582
- msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:741
585
  msgid "Clear all columns "
586
- msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:648
589
  msgid "I'm using Admin Columns for WordPress!"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:590
593
  msgid "Your First Name"
594
- msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:589
597
  msgid "Your Email"
598
- msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:582
601
  msgid "Submit your email and we'll send you a discount for %s off."
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:578
605
  msgid "Get %s Off!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:545
609
  msgid "Extra Columns for:"
610
- msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:531
613
  msgid "Edit your column content directly"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:519
617
  msgid "Pro"
618
- msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:301
621
  msgid "You need at least one column"
622
- msgstr ""
623
 
624
- #: classes/Admin/Page/Addons.php:293
625
  msgid "Available"
626
- msgstr ""
627
 
628
- #: classes/Admin/Page/Addons.php:292
629
  msgid "Recommended"
630
- msgstr ""
631
 
632
- #: classes/Admin/Page/Addons.php:113
633
  msgid "%s could not be activated."
634
- msgstr ""
635
 
636
- #: classes/Admin/Page/Addons.php:103
637
  msgid "%s successfully activated."
638
- msgstr ""
639
 
640
- #: classes/Admin/Page/Addons.php:98
641
  msgid "%s plugin successfully deactivated."
642
  msgstr ""
643
 
644
- #: classes/Admin/Page/Addons.php:97
645
  msgid "%s plugin successfully activated."
646
  msgstr ""
647
 
648
- #: classes/Admin/Page/Addons.php:64
649
  msgid "%s add-on requires %s."
650
  msgid_plural "%s add-ons requires %s."
651
  msgstr[0] ""
652
  msgstr[1] ""
653
 
654
- #: classes/Admin/Page/Addons.php:51
655
  msgid "here"
656
- msgstr ""
657
 
658
- #: classes/Admin/Page/Addons.php:51
659
  msgid "Click %s to activate the plugin."
660
  msgstr ""
661
 
662
- #: classes/Admin/Page/Addons.php:48
663
  msgid "%s plugin is installed, but not active."
664
  msgstr ""
665
 
666
- #: classes/Admin/Page/Addons.php:46
667
  msgid "%s plugin needs to be installed for the add-on to work."
668
  msgstr ""
669
 
@@ -683,59 +751,55 @@ msgstr ""
683
  msgid "Imported"
684
  msgstr ""
685
 
686
- #: classes/Admin/Page/Columns.php:561
687
  msgid "Learn more about Pro"
688
  msgstr ""
689
 
690
- #: classes/Admin/Page/Columns.php:533
691
  msgid "Import &amp; Export settings"
692
  msgstr ""
693
 
694
- #: classes/Admin/Page/Columns.php:532
695
  msgid "Create multiple columns sets"
696
  msgstr ""
697
 
698
- #: classes/Admin/Page/Columns.php:530
699
  msgid "Add filterable columns"
700
  msgstr ""
701
 
702
- #: classes/Admin/Page/Columns.php:529
703
  msgid "Add sortable columns"
704
  msgstr ""
705
 
706
- #: classes/Admin/Page/Columns.php:524
707
  msgid "Take Admin Columns to the next level:"
708
  msgstr ""
709
 
710
- #: classes/Admin/Page/Columns.php:519
711
  msgid "Upgrade to"
712
- msgstr ""
713
-
714
- #: classes/Admin/Promo.php:134
715
- msgid "Get %s Off"
716
- msgstr ""
717
 
718
- #: classes/Admin/Page/Columns.php:431
719
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
720
  msgstr ""
721
 
722
- #: classes/Admin/Page/Columns.php:221
723
  msgid "Please visit the %s screen once to load all available columns"
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Columns.php:500
727
  msgid "Restore columns"
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Columns.php:147
731
  msgid "Settings for %s restored successfully."
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Columns.php:308
735
  msgid "View %s screen"
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Columns.php:70
739
  msgid "Invalid response."
740
  msgstr ""
741
 
@@ -751,23 +815,23 @@ msgstr ""
751
  msgid "Link Label"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Addons.php:220
755
  msgid "You need Admin Columns Pro."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Addons.php:214
759
  msgid "Addon does not exist."
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Addons.php:176
763
  msgid "the addons page"
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Addons.php:176
767
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
768
  msgstr ""
769
 
770
- #: codepress-admin-columns.php:300
771
  msgid "Custom Fields"
772
  msgstr "Anpassade fält"
773
 
@@ -779,22 +843,28 @@ msgstr ""
779
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
780
  msgstr ""
781
 
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Plugin URI of the plugin/theme
784
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
785
  #. Author URI of the plugin/theme
786
  msgid "https://www.admincolumns.com"
787
  msgstr ""
788
 
789
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
790
  msgid "Edit columns"
791
  msgstr "Redigera kolumner"
792
 
793
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
794
  msgid "Settings for %s updated successfully."
795
  msgstr "Inställningar för %s uppdaterades framgångsrikt."
796
 
797
- #: classes/Admin/Page/Columns.php:315
798
  msgid "You are trying to store the same settings for %s."
799
  msgstr "Du försöker lagra samma inställningar för %s."
800
 
@@ -802,129 +872,129 @@ msgstr "Du försöker lagra samma inställningar för %s."
802
  msgid "No columns settings available."
803
  msgstr "Inga inställningar för kolumner är tillgängliga."
804
 
805
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
806
  msgid "Users"
807
- msgstr ""
808
 
809
  #: classes/ListScreen/Media.php:16
810
  #: classes/Settings/Column/CustomFieldType.php:112
811
- #: codepress-admin-columns.php:432
812
  msgid "Media"
813
- msgstr ""
814
 
815
- #: codepress-admin-columns.php:434
816
  msgid "Links"
817
- msgstr ""
818
 
819
  #: classes/ListScreen/Comment.php:15 classes/Settings/Column/Comment.php:110
820
  msgid "Comment"
821
  msgstr "Kommentera"
822
 
823
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
824
  msgid "Comments"
825
- msgstr ""
826
 
827
- #: classes/Admin/Page/Addons.php:420
828
  msgid "Get this add-on"
829
- msgstr "Skaffa detta tillägget"
830
 
831
- #: classes/Admin/Page/Addons.php:418
832
  msgid "Download & Install"
833
- msgstr "Ladda ner & installera"
834
 
835
- #: classes/Admin/Page/Addons.php:412
836
  msgid "Activate"
837
  msgstr "Aktivera"
838
 
839
- #: classes/Admin/Page/Addons.php:291
840
  msgid "Installed"
841
  msgstr "Installerat"
842
 
843
- #: classes/Admin/Page/Addons.php:408
844
  msgid "Deactivate"
845
  msgstr "Inaktivera"
846
 
847
- #: classes/Admin/Page/Addons.php:405
848
  msgid "Active"
849
  msgstr "Aktivt"
850
 
851
- #: classes/Admin/Page/Columns.php:747
852
  msgid "Add Column"
853
  msgstr "Lägg till kolumn"
854
 
855
- #: classes/Admin/Page/Columns.php:727
856
  msgid "Drag and drop to reorder"
857
  msgstr "Drag och släpp för att ändra ordning"
858
 
859
- #: classes/Admin/Page/Columns.php:676
860
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
861
  msgstr "För fullständig dokumentation, felrapporter, förslag på funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</a>"
862
 
863
- #: classes/Admin/Page/Columns.php:672
864
  msgid "Check the <strong>Help</strong> section in the top-right screen."
865
  msgstr "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
866
 
867
- #: classes/Admin/Page/Columns.php:667
868
  msgid "Support"
869
  msgstr "Support"
870
 
871
- #: classes/Admin/Page/Columns.php:655
872
  msgid "Buy Pro"
873
  msgstr "Köp Pro"
874
 
875
- #: classes/Admin/Page/Columns.php:649
876
  msgid "Tweet"
877
  msgstr "Twittra"
878
 
879
- #: classes/Admin/Page/Columns.php:643
880
  msgid "Rate"
881
  msgstr "Omdöme"
882
 
883
- #: classes/Admin/Page/Columns.php:638
884
  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!"
885
  msgstr "Vi skulle verkligen älska om du kunde visa din uppskattning genom att ge oss ett omdöme på WordPress.org eller twittra om Admin Columns!"
886
 
887
- #: classes/Admin/Page/Columns.php:635
888
  msgid "Woohoo! We're glad to hear that!"
889
  msgstr "Woohoo! Vi är glada att höra det!"
890
 
891
- #: classes/Admin/Page/Columns.php:625
892
  msgid "Forums"
893
  msgstr "Forum"
894
 
895
- #: classes/Admin/Page/Columns.php:620
896
  msgid "Docs"
897
- msgstr "Dokumentation"
898
 
899
- #: classes/Admin/Page/Columns.php:615
900
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
901
  msgstr "Kolla in vår omfattande dokumentation, eller så kan du öppna ett support tråd på WordPress.org!"
902
 
903
- #: classes/Admin/Page/Columns.php:612
904
  msgid "What's wrong? Need help? Let us know!"
905
  msgstr "Vad är fel? Behöver hjälp? Låt oss veta!"
906
 
907
- #: classes/Admin/Page/Columns.php:602
908
  msgid "Are you happy with Admin Columns?"
909
  msgstr "Är du nöjd med Admin Columns?"
910
 
911
- #: classes/Admin/Page/Columns.php:499
912
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
913
  msgstr ""
914
 
915
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
916
  msgid "Update"
917
  msgstr "Uppdatera"
918
 
919
- #: classes/Admin/Page/Columns.php:477
920
  msgid "Store settings"
921
  msgstr "Spara inställningar"
922
 
923
  #: classes/Admin/Page/Addons.php:12
924
  msgid "Add-ons"
925
- msgstr "Tillägg"
926
 
927
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
928
  msgid "Settings"
929
  msgstr "Inställningar"
930
 
@@ -932,32 +1002,32 @@ msgstr "Inställningar"
932
  msgid "Others"
933
  msgstr ""
934
 
935
- #: classes/Admin/Page/Settings.php:229
936
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
937
  msgstr ""
938
 
939
- #: classes/Admin/Page/Settings.php:229
940
  msgid "Restore default settings"
941
  msgstr "Återställ till standardinställningar"
942
 
943
- #: classes/Admin/Page/Settings.php:221
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "Detta kommer att radera alla kolumner inställningar och återställa till standardinställningarna"
946
 
947
- #: classes/Admin/Page/Settings.php:220
948
  msgid "Restore Settings"
949
  msgstr "Återställ inställningar"
950
 
951
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
952
- #: classes/Admin/Page/Settings.php:179
953
  msgid "Save"
954
  msgstr "Spara"
955
 
956
- #: classes/Admin/Page/Settings.php:161
957
  msgid "Customize your Admin Columns settings."
958
  msgstr "Anpassa dina Admin Columns inställningar."
959
 
960
- #: classes/Admin/Page/Settings.php:160
961
  #: classes/Settings/Column/DateTimeFormat.php:39
962
  msgid "General Settings"
963
  msgstr "Allmänna inställningar"
@@ -1058,19 +1128,19 @@ msgstr "Denna plugin är för att lägga till och ta bort ytterligare kolumner t
1058
  msgid "Overview"
1059
  msgstr "Översikt"
1060
 
1061
- #: classes/Admin/Page/Settings.php:101
1062
  msgid "Default settings succesfully restored."
1063
  msgstr "Standardinställningar återställdes framgångsrikt."
1064
 
1065
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1066
  msgid "%s column is already present and can not be duplicated."
1067
  msgstr "%s kolumn finns redan och kan inte dupliceras."
1068
 
1069
- #: classes/Admin.php:127
1070
  msgid "Admin Columns Settings"
1071
  msgstr "Admin Columns Inställningar"
1072
 
1073
- #: classes/Admin/Page/Addons.php:104
1074
  msgid "%s successfully deactivated."
1075
  msgstr ""
1076
 
@@ -1096,7 +1166,7 @@ msgstr "Som en Admin Columns Pro användare, du kan också använda ditt AdminCo
1096
 
1097
  #: classes/Notice/Review.php:95
1098
  msgid "documentation page"
1099
- msgstr "dokumentation sida"
1100
 
1101
  #: classes/Notice/Review.php:93
1102
  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."
@@ -1118,13 +1188,14 @@ msgstr "klicka här"
1118
  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."
1119
  msgstr ""
1120
 
1121
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1122
  msgid "Admin Columns Pro"
1123
  msgstr "Admin Columns Pro"
1124
 
1125
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1126
  #. Plugin Name of the plugin/theme
1127
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1128
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1129
  #: classes/Plugin/Updater.php:114
1130
  msgid "Admin Columns"
@@ -1156,11 +1227,11 @@ msgstr ""
1156
 
1157
  #: classes/Settings/Column/PostLink.php:68
1158
  msgid "View Post"
1159
- msgstr ""
1160
 
1161
  #: classes/Settings/Column/PostLink.php:67
1162
  msgid "Edit Post"
1163
- msgstr ""
1164
 
1165
  #: classes/Settings/Column/Label.php:28
1166
  msgid "This is the name which will appear as the column header."
@@ -1178,7 +1249,7 @@ msgstr "Namn"
1178
  msgid "Choose a column type."
1179
  msgstr "Välj en kolumntyp."
1180
 
1181
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1182
  msgid "Clone"
1183
  msgstr "Klona"
1184
 
@@ -1198,7 +1269,7 @@ msgstr "Användare Email"
1198
  msgid "User Login"
1199
  msgstr "Användare Loggin"
1200
 
1201
- #: classes/Settings/Column/User.php:65
1202
  msgid "Last Name"
1203
  msgstr "Efternamn"
1204
 
@@ -1208,7 +1279,7 @@ msgstr "Förnamn"
1208
 
1209
  #: classes/Column/User/DisplayName.php:14 classes/Settings/Column/User.php:63
1210
  msgid "Display Name"
1211
- msgstr "Visa namn"
1212
 
1213
  #: classes/Settings/Column/BeforeAfter.php:67
1214
  msgid "After"
@@ -1220,14 +1291,14 @@ msgstr ""
1220
 
1221
  #: classes/Settings/Column/BeforeAfter.php:58
1222
  msgid "Before"
1223
- msgstr "Innan"
1224
 
1225
  #: classes/Settings/Column/Width.php:62
1226
  msgid "width"
1227
  msgstr "bredd"
1228
 
1229
  #: classes/Settings/Column/CustomFieldType.php:153
1230
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1231
  msgid "Custom"
1232
  msgstr "Anpassad"
1233
 
@@ -1245,7 +1316,7 @@ msgstr "Stor"
1245
 
1246
  #: classes/Settings/Column/Image.php:74
1247
  msgid "Medium"
1248
- msgstr "Mellan"
1249
 
1250
  #: classes/Settings/Column/Image.php:73
1251
  msgid "Thumbnail"
@@ -1264,7 +1335,7 @@ msgid "Registered"
1264
  msgstr "Registrerad"
1265
 
1266
  #: classes/Settings/Column/CustomFieldType.php:80
1267
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1268
  msgid "Post Type"
1269
  msgstr "Inläggstyp"
1270
 
@@ -1276,16 +1347,12 @@ msgstr "Inläggsräknare"
1276
  msgid "Nickname"
1277
  msgstr "Smeknamn"
1278
 
1279
- #: classes/Column/User/LastName.php:14
1280
- msgid "Last name"
1281
- msgstr "Efternamn"
1282
-
1283
  #: classes/Column/Post/CommentCount.php:17
1284
  #: classes/Column/User/CommentCount.php:14
1285
  msgid "Comment Count"
1286
  msgstr ""
1287
 
1288
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1289
  msgid "Remove"
1290
  msgstr "Ta bort"
1291
 
@@ -1307,7 +1374,7 @@ msgstr "Taxonomi"
1307
 
1308
  #: classes/Column/Post/Sticky.php:16
1309
  msgid "Sticky"
1310
- msgstr "Klistrad"
1311
 
1312
  #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1313
  msgid "Status"
@@ -1333,17 +1400,17 @@ msgstr ""
1333
  msgid "Permalink"
1334
  msgstr "Permalänk"
1335
 
1336
- #: classes/Column/Post/Path.php:16
1337
  msgid "Path"
1338
  msgstr "Sökväg"
1339
 
1340
  #: classes/Column/Post/Parent.php:14
1341
  msgid "Parent"
1342
- msgstr "Förälder"
1343
 
1344
  #: classes/Column/Post/PageTemplate.php:14
1345
  msgid "Page Template"
1346
- msgstr "Sidmallen"
1347
 
1348
  #: classes/Column/Post/Order.php:14
1349
  msgid "Order"
@@ -1395,7 +1462,7 @@ msgstr "Djup"
1395
 
1396
  #: classes/Column/Post/DatePublished.php:14
1397
  msgid "Date Published"
1398
- msgstr ""
1399
 
1400
  #: classes/Settings/Column/CommentCount.php:34
1401
  msgid "Select which comment status you like to display."
@@ -1429,7 +1496,7 @@ msgstr ""
1429
 
1430
  #: classes/Settings/Column/UserLink.php:68
1431
  msgid "Edit User Profile"
1432
- msgstr ""
1433
 
1434
  #: classes/Settings/Column/PostLink.php:66
1435
  #: classes/Settings/Column/Separator.php:26
@@ -1440,11 +1507,11 @@ msgstr "Ingen"
1440
  #: classes/Settings/Column/PostLink.php:56
1441
  #: classes/Settings/Column/UserLink.php:59
1442
  msgid "Link To"
1443
- msgstr ""
1444
 
1445
  #: classes/Column/Post/Attachment.php:14
1446
  msgid "Attachments"
1447
- msgstr "Bilaga"
1448
 
1449
  #: classes/Column/Media/Width.php:16 classes/Settings/Column/Image.php:40
1450
  #: classes/Settings/Column/Width.php:52
@@ -1475,10 +1542,6 @@ msgstr "Del av filens sökväg att visa"
1475
  msgid "Path scope"
1476
  msgstr "Sökväg fält"
1477
 
1478
- #: classes/Settings/Column/PathScope.php:24
1479
- msgid "Full path"
1480
- msgstr "Full path"
1481
-
1482
  #: classes/Column/Media/FileSize.php:14
1483
  msgid "File Size"
1484
  msgstr "Filstorlek"
@@ -1536,7 +1599,7 @@ msgstr "Bildtext"
1536
  msgid "Available Sizes"
1537
  msgstr "Tillgängliga storlekar"
1538
 
1539
- #: classes/Admin/Page/Columns.php:463
1540
  msgid "View"
1541
  msgstr "Visa"
1542
 
@@ -1551,7 +1614,7 @@ msgstr "Mål"
1551
 
1552
  #: classes/Column/Link/Rss.php:14
1553
  msgid "Rss"
1554
- msgstr "RSS"
1555
 
1556
  #: classes/Column/Link/Owner.php:14
1557
  msgid "Owner"
@@ -1631,7 +1694,7 @@ msgstr "Färg"
1631
  #: classes/Admin/Help/CustomField.php:22
1632
  #: classes/Settings/Column/CustomFieldType.php:168
1633
  #: classes/Settings/Column/Image.php:71
1634
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1635
  msgid "Default"
1636
  msgstr "Standard"
1637
 
@@ -1717,7 +1780,7 @@ msgstr "Godkänd"
1717
  msgid "Agent"
1718
  msgstr "Agent"
1719
 
1720
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1721
  msgid "Edit"
1722
  msgstr "Redigera"
1723
 
@@ -1728,20 +1791,20 @@ msgstr "Redigera"
1728
  msgid "ID"
1729
  msgstr "ID"
1730
 
1731
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1732
  #: classes/Settings/Column/ActionIcons.php:22
1733
  #: classes/Settings/Column/MissingImageSize.php:22
1734
  #: classes/Settings/Column/PostFormatIcon.php:24
1735
- #: classes/Settings/Column/StatusIcon.php:24
1736
  #: classes/Settings/Column/Toggle.php:14
1737
  msgid "No"
1738
  msgstr "Nej"
1739
 
1740
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1741
  #: classes/Settings/Column/ActionIcons.php:21
1742
  #: classes/Settings/Column/MissingImageSize.php:21
1743
  #: classes/Settings/Column/PostFormatIcon.php:23
1744
- #: classes/Settings/Column/StatusIcon.php:23
1745
  #: classes/Settings/Column/Toggle.php:13
1746
  msgid "Yes"
1747
  msgstr "Ja"
@@ -1770,6 +1833,6 @@ msgstr "WooCommerce"
1770
  msgid "Advanced Custom Fields"
1771
  msgstr "Advanced Custom Fields"
1772
 
1773
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1774
  msgid "Plugins"
1775
  msgstr "Tillägg"
2
  # This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-05-09 10:03:34+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr "Redigering"
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr "Endast %s för 1webbplats"
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr "Välj typ"
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
93
 
94
  #: classes/Settings/Column/StringLimit.php:34
95
  msgid "No limit"
96
+ msgstr "Ingen begränsning"
97
 
98
  #: classes/Settings/Column/StringLimit.php:25
99
  msgid "Limit text to a certain number of characters or words"
109
 
110
  #: classes/TableScreen.php:124 classes/TableScreen.php:126
111
  msgid "Download"
112
+ msgstr "Ladda ner"
113
 
114
  #: classes/Settings/Column/PostLink.php:78
115
  msgctxt "post"
124
  #: classes/Settings/Column/PostLink.php:76
125
  msgctxt "post"
126
  msgid "View %s"
127
+ msgstr "Visa %s"
128
 
129
  #: classes/Settings/Column/PostLink.php:75
130
  msgctxt "post"
131
  msgid "Edit %s"
132
+ msgstr "Redigera %s"
133
 
134
  #: classes/Settings/Column/PostFormatIcon.php:29
135
  msgid "Use an icon instead of text for displaying."
138
  #: classes/Settings/Column/Post.php:86
139
  msgctxt "post"
140
  msgid "Featured Image"
141
+ msgstr "Utvald bild"
142
 
143
  #: classes/Settings/Column/NumberOfItems.php:30
144
  msgid "Maximum number of items"
162
 
163
  #: classes/Settings/Column/Meta.php:129
164
  msgid "current"
165
+ msgstr "nuvarande"
166
 
167
  #: classes/Settings/Column/Meta.php:126
168
  msgid "Network Site:"
170
 
171
  #: classes/Settings/Column/Meta.php:118
172
  msgid "Hidden"
173
+ msgstr "Dold"
174
 
175
  #: classes/Settings/Column/Meta.php:117
176
  msgid "Public"
177
+ msgstr "Offentlig"
178
 
179
  #: classes/Settings/Column/ExifData.php:83
180
  msgid "Keywords"
181
+ msgstr "Nyckelord"
182
 
183
  #: classes/Settings/Column/ExifData.php:82
184
  msgid "Orientation"
190
 
191
  #: classes/Settings/Column/CustomField.php:17
192
  msgid "Custom field key"
193
+ msgstr "Anpassad fältnyckel"
194
 
195
  #: classes/Settings/Column/AttachmentDisplay.php:37
196
  msgid "Count"
198
 
199
  #: classes/Settings/Column/AttachmentDisplay.php:36
200
  msgid "Thumbnails"
201
+ msgstr "Miniatyr"
202
 
203
  #: classes/Plugin/Updater.php:117
204
  msgid "Run the updater"
218
 
219
  #: classes/Column/Post/TitleRaw.php:14
220
  msgid "Title Only"
221
+ msgstr "Endast rubrik"
222
 
223
  #: classes/Column/Post/CommentStatus.php:17
224
  msgid "Allow Comments"
225
+ msgstr "Tillåt kommentarer"
226
 
227
  #: classes/Column/Post/BeforeMoreTag.php:14
228
  msgid "More Tag"
230
 
231
  #: classes/Column/Menu.php:17
232
  msgid "Menu"
233
+ msgstr "Meny"
234
 
235
  #: classes/Column/Media/Dimensions.php:28
236
  msgid "Height : %s px"
250
 
251
  #: classes/Column/Media/AlternateText.php:14
252
  msgid "Alternative Text"
253
+ msgstr "Alternativ text"
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
259
  #: classes/Admin/Addon/NinjaForms.php:13
260
  msgid "Ninja Forms"
261
+ msgstr "Ninja Forms"
262
 
263
  #: classes/Admin/Addon/EventsCalendar.php:13
264
  msgid "The Events Calendar"
274
 
275
  #: classes/Helper/Post.php:134
276
  msgid "Draft"
277
+ msgstr "Utkast"
278
 
279
  #: classes/Helper/Post.php:131
280
  msgid "Published"
281
+ msgstr "Publicerad"
282
 
283
  #: classes/Helper/Post.php:128
284
  msgid "Private"
291
  #: classes/Settings/Column/PostFormatIcon.php:28
292
  #: classes/Settings/Column/StatusIcon.php:28
293
  msgid "Use an icon?"
294
+ msgstr "Använd en ikon?"
295
 
296
  #: classes/Helper/String.php:106
297
  msgid "&hellip;"
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
323
 
324
  #: classes/Admin/Addon/BuddyPress.php:13
325
  msgid "BuddyPress"
326
+ msgstr "BuddyPress"
327
 
328
  #: templates/settings/section.php:23
329
  msgid "View more"
330
+ msgstr "Visa mer"
331
 
332
  #: classes/TableScreen.php:58
333
  msgid "Invalid method."
334
+ msgstr "Ogiltig metod."
335
 
336
  #: classes/TableScreen.php:54
337
  msgid "Invalid column."
338
+ msgstr "Ogiltig kolumn."
339
 
340
  #: classes/TableScreen.php:46
341
  msgid "Invalid list screen."
360
 
361
  #: classes/Settings/Column/Width.php:40
362
  msgid "Auto"
363
+ msgstr "Auto"
364
 
365
  #: classes/Settings/Column/AttachmentDisplay.php:41
366
  #: classes/Settings/Column/Comment.php:101 classes/Settings/Column/Post.php:74
398
 
399
  #: classes/Settings/Column/Password.php:22
400
  msgid "Password"
401
+ msgstr "Lösenord"
402
 
403
  #: classes/Settings/Column/Meta.php:27
404
  msgid "No fields available."
405
+ msgstr "Inga fält tillgängliga."
406
 
407
  #: classes/Settings/Column/Image.php:112
408
  msgid "Custom Size"
409
+ msgstr "Anpassad storlek"
410
 
411
  #: classes/Settings/Column/Image.php:108
412
  msgid "Full Size"
414
 
415
  #: classes/Settings/Column/Image.php:54
416
  msgid "Image Size"
417
+ msgstr "Bildstorlek"
418
 
419
  #: classes/Settings/Column/Image.php:47
420
  msgid "Height in pixels"
426
 
427
  #: classes/Settings/Column/Date.php:78
428
  msgid "in %s"
429
+ msgstr "i %s"
430
 
431
  #: classes/Settings/Column/Date.php:75
432
  msgid "%s ago"
433
+ msgstr "%s sedan"
434
 
435
  #: classes/Settings/Column/DateTimeFormat.php:109
436
  msgid "date and time formatting"
438
 
439
  #: classes/Settings/Column/DateTimeFormat.php:109
440
  msgid "Learn more about %s."
441
+ msgstr "Lär dig mer om %s."
442
 
443
  #: classes/Settings/Column/DateTimeFormat.php:107
444
  msgid "Custom:"
445
+ msgstr "Anpassad:"
446
 
447
  #: classes/Settings/Column/DateTimeFormat.php:39
448
  msgid "The %s can be changed in %s."
454
 
455
  #: classes/Settings/Column/Date.php:13
456
  msgid "or"
457
+ msgstr "eller"
458
 
459
  #: classes/Settings/Column/Date.php:11
460
  msgid "For example: %s."
461
+ msgstr "Till exempel: %s."
462
 
463
  #: classes/Settings/Column/Date.php:10
464
  msgid "The difference is returned in a human readable format."
502
 
503
  #: classes/Settings/Column/CustomFieldType.php:102
504
  msgid "Text"
505
+ msgstr "Text"
506
 
507
  #: classes/Settings/Column/CustomFieldType.php:70
508
  msgid "Multiple ids should be separated by a comma."
514
 
515
  #: classes/Settings/Column/Meta.php:70
516
  msgid "Field"
517
+ msgstr "Fält"
518
 
519
  #: classes/Settings/Column/CharacterLimit.php:28
520
  #: classes/Settings/Column/NumberOfItems.php:30
541
 
542
  #: classes/Helper/String.php:292
543
  msgid " or "
544
+ msgstr "eller"
545
 
546
  #: classes/Helper/Html.php:402
547
  msgid "Hide"
548
+ msgstr "Dölj"
549
 
550
  #: classes/Helper/Html.php:398
551
  msgid "Show %s more"
553
 
554
  #: classes/Column/User/Url.php:14
555
  msgid "Website"
556
+ msgstr "Webbplats"
557
 
558
  #: classes/Column/User/ShowToolbar.php:14
559
  msgid "Show Toolbar"
565
 
566
  #: classes/Settings/Column/CustomFieldType.php:279
567
  msgid ", "
568
+ msgstr ", "
569
 
570
  #: classes/Settings/Column/PostFormatIcon.php:73
571
  msgid "Standard"
572
+ msgstr "Standard"
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
+ msgstr "Standard är %s."
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
+ msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
+ msgstr "av"
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
+ msgstr "Instruktioner"
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
+ msgstr "vår dokumentation"
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
  msgstr[1] ""
623
 
624
+ #: classes/Admin/Page/Help.php:263
625
  msgid "View documentation"
626
+ msgstr "Visa dokumentation"
627
 
628
+ #: classes/Admin/Page/Help.php:208
629
  msgid "The action %s used on this website is deprecated since %s."
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Help.php:190
633
  msgid "The filter %s used on this website is deprecated since %s."
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Help.php:177
637
  msgid "Deprecated Actions"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Help.php:176
641
  msgid "Deprecated Filters"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
645
  msgid "Help"
646
+ msgstr "Hjälp"
647
 
648
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
649
  msgid "Close"
650
+ msgstr "Stäng"
651
 
652
+ #: classes/Admin/Page/Columns.php:744
653
  msgid "Clear all columns "
654
+ msgstr "Rensa alla kolumner"
655
 
656
+ #: classes/Admin/Page/Columns.php:651
657
  msgid "I'm using Admin Columns for WordPress!"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:593
661
  msgid "Your First Name"
662
+ msgstr "Ditt förnamn"
663
 
664
+ #: classes/Admin/Page/Columns.php:592
665
  msgid "Your Email"
666
+ msgstr "Din e-post"
667
 
668
+ #: classes/Admin/Page/Columns.php:585
669
  msgid "Submit your email and we'll send you a discount for %s off."
670
  msgstr ""
671
 
672
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
673
  msgid "Get %s Off!"
674
  msgstr ""
675
 
676
+ #: classes/Admin/Page/Columns.php:548
677
  msgid "Extra Columns for:"
678
+ msgstr "Extra kolumner för:"
679
 
680
+ #: classes/Admin/Page/Columns.php:534
681
  msgid "Edit your column content directly"
682
  msgstr ""
683
 
684
+ #: classes/Admin/Page/Columns.php:522
685
  msgid "Pro"
686
+ msgstr "Pro"
687
 
688
+ #: classes/Admin/Page/Columns.php:304
689
  msgid "You need at least one column"
690
+ msgstr "Du behöver åtminstone en kolumn"
691
 
692
+ #: classes/Admin/Page/Addons.php:297
693
  msgid "Available"
694
+ msgstr "Tillgänglig"
695
 
696
+ #: classes/Admin/Page/Addons.php:296
697
  msgid "Recommended"
698
+ msgstr "Rekommenderad"
699
 
700
+ #: classes/Admin/Page/Addons.php:117
701
  msgid "%s could not be activated."
702
+ msgstr "%s kunde inte bli aktiverad."
703
 
704
+ #: classes/Admin/Page/Addons.php:107
705
  msgid "%s successfully activated."
706
+ msgstr "%s aktiverades utan problem."
707
 
708
+ #: classes/Admin/Page/Addons.php:102
709
  msgid "%s plugin successfully deactivated."
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Addons.php:101
713
  msgid "%s plugin successfully activated."
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Addons.php:69
717
  msgid "%s add-on requires %s."
718
  msgid_plural "%s add-ons requires %s."
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
+ #: classes/Admin/Page/Addons.php:56
723
  msgid "here"
724
+ msgstr "här"
725
 
726
+ #: classes/Admin/Page/Addons.php:56
727
  msgid "Click %s to activate the plugin."
728
  msgstr ""
729
 
730
+ #: classes/Admin/Page/Addons.php:53
731
  msgid "%s plugin is installed, but not active."
732
  msgstr ""
733
 
734
+ #: classes/Admin/Page/Addons.php:51
735
  msgid "%s plugin needs to be installed for the add-on to work."
736
  msgstr ""
737
 
751
  msgid "Imported"
752
  msgstr ""
753
 
754
+ #: classes/Admin/Page/Columns.php:564
755
  msgid "Learn more about Pro"
756
  msgstr ""
757
 
758
+ #: classes/Admin/Page/Columns.php:536
759
  msgid "Import &amp; Export settings"
760
  msgstr ""
761
 
762
+ #: classes/Admin/Page/Columns.php:535
763
  msgid "Create multiple columns sets"
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Columns.php:533
767
  msgid "Add filterable columns"
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Columns.php:532
771
  msgid "Add sortable columns"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Columns.php:527
775
  msgid "Take Admin Columns to the next level:"
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Columns.php:522
779
  msgid "Upgrade to"
780
+ msgstr "Uppgradera till"
 
 
 
 
781
 
782
+ #: classes/Admin/Page/Columns.php:434
783
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Columns.php:224
787
  msgid "Please visit the %s screen once to load all available columns"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Columns.php:503
791
  msgid "Restore columns"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Columns.php:150
795
  msgid "Settings for %s restored successfully."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Columns.php:311
799
  msgid "View %s screen"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Columns.php:73
803
  msgid "Invalid response."
804
  msgstr ""
805
 
815
  msgid "Link Label"
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Addons.php:224
819
  msgid "You need Admin Columns Pro."
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Addons.php:218
823
  msgid "Addon does not exist."
824
  msgstr ""
825
 
826
+ #: classes/Admin/Page/Addons.php:180
827
  msgid "the addons page"
828
  msgstr ""
829
 
830
+ #: classes/Admin/Page/Addons.php:180
831
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
832
  msgstr ""
833
 
834
+ #: codepress-admin-columns.php:325
835
  msgid "Custom Fields"
836
  msgstr "Anpassade fält"
837
 
843
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
844
  msgstr ""
845
 
846
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
847
+ #. #-#-#-#-#
848
  #. Plugin URI of the plugin/theme
849
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
850
+ #. #-#-#-#-#
851
  #. Author URI of the plugin/theme
852
  msgid "https://www.admincolumns.com"
853
  msgstr ""
854
 
855
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
856
  msgid "Edit columns"
857
  msgstr "Redigera kolumner"
858
 
859
+ #: classes/Admin/Page/Columns.php:940
860
+ msgid "Upgrade"
861
+ msgstr "Uppgradera"
862
+
863
+ #: classes/Admin/Page/Columns.php:331
864
  msgid "Settings for %s updated successfully."
865
  msgstr "Inställningar för %s uppdaterades framgångsrikt."
866
 
867
+ #: classes/Admin/Page/Columns.php:318
868
  msgid "You are trying to store the same settings for %s."
869
  msgstr "Du försöker lagra samma inställningar för %s."
870
 
872
  msgid "No columns settings available."
873
  msgstr "Inga inställningar för kolumner är tillgängliga."
874
 
875
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
876
  msgid "Users"
877
+ msgstr "Användare"
878
 
879
  #: classes/ListScreen/Media.php:16
880
  #: classes/Settings/Column/CustomFieldType.php:112
881
+ #: codepress-admin-columns.php:457
882
  msgid "Media"
883
+ msgstr "Media"
884
 
885
+ #: codepress-admin-columns.php:459
886
  msgid "Links"
887
+ msgstr "Länkar"
888
 
889
  #: classes/ListScreen/Comment.php:15 classes/Settings/Column/Comment.php:110
890
  msgid "Comment"
891
  msgstr "Kommentera"
892
 
893
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
894
  msgid "Comments"
895
+ msgstr "Kommentarer"
896
 
897
+ #: classes/Admin/Page/Addons.php:424
898
  msgid "Get this add-on"
899
+ msgstr "Skaffa denna utökning"
900
 
901
+ #: classes/Admin/Page/Addons.php:422
902
  msgid "Download & Install"
903
+ msgstr "Ladda ner och installera"
904
 
905
+ #: classes/Admin/Page/Addons.php:416
906
  msgid "Activate"
907
  msgstr "Aktivera"
908
 
909
+ #: classes/Admin/Page/Addons.php:295
910
  msgid "Installed"
911
  msgstr "Installerat"
912
 
913
+ #: classes/Admin/Page/Addons.php:412
914
  msgid "Deactivate"
915
  msgstr "Inaktivera"
916
 
917
+ #: classes/Admin/Page/Addons.php:409
918
  msgid "Active"
919
  msgstr "Aktivt"
920
 
921
+ #: classes/Admin/Page/Columns.php:750
922
  msgid "Add Column"
923
  msgstr "Lägg till kolumn"
924
 
925
+ #: classes/Admin/Page/Columns.php:730
926
  msgid "Drag and drop to reorder"
927
  msgstr "Drag och släpp för att ändra ordning"
928
 
929
+ #: classes/Admin/Page/Columns.php:679
930
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
931
  msgstr "För fullständig dokumentation, felrapporter, förslag på funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</a>"
932
 
933
+ #: classes/Admin/Page/Columns.php:675
934
  msgid "Check the <strong>Help</strong> section in the top-right screen."
935
  msgstr "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
936
 
937
+ #: classes/Admin/Page/Columns.php:670
938
  msgid "Support"
939
  msgstr "Support"
940
 
941
+ #: classes/Admin/Page/Columns.php:658
942
  msgid "Buy Pro"
943
  msgstr "Köp Pro"
944
 
945
+ #: classes/Admin/Page/Columns.php:652
946
  msgid "Tweet"
947
  msgstr "Twittra"
948
 
949
+ #: classes/Admin/Page/Columns.php:646
950
  msgid "Rate"
951
  msgstr "Omdöme"
952
 
953
+ #: classes/Admin/Page/Columns.php:641
954
  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!"
955
  msgstr "Vi skulle verkligen älska om du kunde visa din uppskattning genom att ge oss ett omdöme på WordPress.org eller twittra om Admin Columns!"
956
 
957
+ #: classes/Admin/Page/Columns.php:638
958
  msgid "Woohoo! We're glad to hear that!"
959
  msgstr "Woohoo! Vi är glada att höra det!"
960
 
961
+ #: classes/Admin/Page/Columns.php:628
962
  msgid "Forums"
963
  msgstr "Forum"
964
 
965
+ #: classes/Admin/Page/Columns.php:623
966
  msgid "Docs"
967
+ msgstr "Dokument"
968
 
969
+ #: classes/Admin/Page/Columns.php:618
970
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
971
  msgstr "Kolla in vår omfattande dokumentation, eller så kan du öppna ett support tråd på WordPress.org!"
972
 
973
+ #: classes/Admin/Page/Columns.php:615
974
  msgid "What's wrong? Need help? Let us know!"
975
  msgstr "Vad är fel? Behöver hjälp? Låt oss veta!"
976
 
977
+ #: classes/Admin/Page/Columns.php:605
978
  msgid "Are you happy with Admin Columns?"
979
  msgstr "Är du nöjd med Admin Columns?"
980
 
981
+ #: classes/Admin/Page/Columns.php:502
982
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
983
  msgstr ""
984
 
985
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
986
  msgid "Update"
987
  msgstr "Uppdatera"
988
 
989
+ #: classes/Admin/Page/Columns.php:480
990
  msgid "Store settings"
991
  msgstr "Spara inställningar"
992
 
993
  #: classes/Admin/Page/Addons.php:12
994
  msgid "Add-ons"
995
+ msgstr "Utökningar"
996
 
997
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
998
  msgid "Settings"
999
  msgstr "Inställningar"
1000
 
1002
  msgid "Others"
1003
  msgstr ""
1004
 
1005
+ #: classes/Admin/Page/Settings.php:239
1006
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1007
  msgstr ""
1008
 
1009
+ #: classes/Admin/Page/Settings.php:239
1010
  msgid "Restore default settings"
1011
  msgstr "Återställ till standardinställningar"
1012
 
1013
+ #: classes/Admin/Page/Settings.php:231
1014
  msgid "This will delete all column settings and restore the default settings."
1015
  msgstr "Detta kommer att radera alla kolumner inställningar och återställa till standardinställningarna"
1016
 
1017
+ #: classes/Admin/Page/Settings.php:230
1018
  msgid "Restore Settings"
1019
  msgstr "Återställ inställningar"
1020
 
1021
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1022
+ #: classes/Admin/Page/Settings.php:189
1023
  msgid "Save"
1024
  msgstr "Spara"
1025
 
1026
+ #: classes/Admin/Page/Settings.php:171
1027
  msgid "Customize your Admin Columns settings."
1028
  msgstr "Anpassa dina Admin Columns inställningar."
1029
 
1030
+ #: classes/Admin/Page/Settings.php:170
1031
  #: classes/Settings/Column/DateTimeFormat.php:39
1032
  msgid "General Settings"
1033
  msgstr "Allmänna inställningar"
1128
  msgid "Overview"
1129
  msgstr "Översikt"
1130
 
1131
+ #: classes/Admin/Page/Settings.php:111
1132
  msgid "Default settings succesfully restored."
1133
  msgstr "Standardinställningar återställdes framgångsrikt."
1134
 
1135
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1136
  msgid "%s column is already present and can not be duplicated."
1137
  msgstr "%s kolumn finns redan och kan inte dupliceras."
1138
 
1139
+ #: classes/Admin.php:126
1140
  msgid "Admin Columns Settings"
1141
  msgstr "Admin Columns Inställningar"
1142
 
1143
+ #: classes/Admin/Page/Addons.php:108
1144
  msgid "%s successfully deactivated."
1145
  msgstr ""
1146
 
1166
 
1167
  #: classes/Notice/Review.php:95
1168
  msgid "documentation page"
1169
+ msgstr "Dokumentationssida"
1170
 
1171
  #: classes/Notice/Review.php:93
1172
  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."
1188
  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."
1189
  msgstr ""
1190
 
1191
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1192
  msgid "Admin Columns Pro"
1193
  msgstr "Admin Columns Pro"
1194
 
1195
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1196
+ #. #-#-#-#-#
1197
  #. Plugin Name of the plugin/theme
1198
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1199
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1200
  #: classes/Plugin/Updater.php:114
1201
  msgid "Admin Columns"
1227
 
1228
  #: classes/Settings/Column/PostLink.php:68
1229
  msgid "View Post"
1230
+ msgstr "Visa inlägg"
1231
 
1232
  #: classes/Settings/Column/PostLink.php:67
1233
  msgid "Edit Post"
1234
+ msgstr "Redigera inlägg"
1235
 
1236
  #: classes/Settings/Column/Label.php:28
1237
  msgid "This is the name which will appear as the column header."
1249
  msgid "Choose a column type."
1250
  msgstr "Välj en kolumntyp."
1251
 
1252
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1253
  msgid "Clone"
1254
  msgstr "Klona"
1255
 
1269
  msgid "User Login"
1270
  msgstr "Användare Loggin"
1271
 
1272
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1273
  msgid "Last Name"
1274
  msgstr "Efternamn"
1275
 
1279
 
1280
  #: classes/Column/User/DisplayName.php:14 classes/Settings/Column/User.php:63
1281
  msgid "Display Name"
1282
+ msgstr "Visningsnamn"
1283
 
1284
  #: classes/Settings/Column/BeforeAfter.php:67
1285
  msgid "After"
1291
 
1292
  #: classes/Settings/Column/BeforeAfter.php:58
1293
  msgid "Before"
1294
+ msgstr "Före"
1295
 
1296
  #: classes/Settings/Column/Width.php:62
1297
  msgid "width"
1298
  msgstr "bredd"
1299
 
1300
  #: classes/Settings/Column/CustomFieldType.php:153
1301
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1302
  msgid "Custom"
1303
  msgstr "Anpassad"
1304
 
1316
 
1317
  #: classes/Settings/Column/Image.php:74
1318
  msgid "Medium"
1319
+ msgstr "Medium"
1320
 
1321
  #: classes/Settings/Column/Image.php:73
1322
  msgid "Thumbnail"
1335
  msgstr "Registrerad"
1336
 
1337
  #: classes/Settings/Column/CustomFieldType.php:80
1338
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1339
  msgid "Post Type"
1340
  msgstr "Inläggstyp"
1341
 
1347
  msgid "Nickname"
1348
  msgstr "Smeknamn"
1349
 
 
 
 
 
1350
  #: classes/Column/Post/CommentCount.php:17
1351
  #: classes/Column/User/CommentCount.php:14
1352
  msgid "Comment Count"
1353
  msgstr ""
1354
 
1355
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1356
  msgid "Remove"
1357
  msgstr "Ta bort"
1358
 
1374
 
1375
  #: classes/Column/Post/Sticky.php:16
1376
  msgid "Sticky"
1377
+ msgstr "Klistrat"
1378
 
1379
  #: classes/Column/Comment/Status.php:14 classes/Column/Post/Status.php:11
1380
  msgid "Status"
1400
  msgid "Permalink"
1401
  msgstr "Permalänk"
1402
 
1403
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1404
  msgid "Path"
1405
  msgstr "Sökväg"
1406
 
1407
  #: classes/Column/Post/Parent.php:14
1408
  msgid "Parent"
1409
+ msgstr "Överordnad"
1410
 
1411
  #: classes/Column/Post/PageTemplate.php:14
1412
  msgid "Page Template"
1413
+ msgstr "Sidmall"
1414
 
1415
  #: classes/Column/Post/Order.php:14
1416
  msgid "Order"
1462
 
1463
  #: classes/Column/Post/DatePublished.php:14
1464
  msgid "Date Published"
1465
+ msgstr "Publiceringsdatum"
1466
 
1467
  #: classes/Settings/Column/CommentCount.php:34
1468
  msgid "Select which comment status you like to display."
1496
 
1497
  #: classes/Settings/Column/UserLink.php:68
1498
  msgid "Edit User Profile"
1499
+ msgstr "Redigera användarprofil"
1500
 
1501
  #: classes/Settings/Column/PostLink.php:66
1502
  #: classes/Settings/Column/Separator.php:26
1507
  #: classes/Settings/Column/PostLink.php:56
1508
  #: classes/Settings/Column/UserLink.php:59
1509
  msgid "Link To"
1510
+ msgstr "Länk till"
1511
 
1512
  #: classes/Column/Post/Attachment.php:14
1513
  msgid "Attachments"
1514
+ msgstr "Bilagor"
1515
 
1516
  #: classes/Column/Media/Width.php:16 classes/Settings/Column/Image.php:40
1517
  #: classes/Settings/Column/Width.php:52
1542
  msgid "Path scope"
1543
  msgstr "Sökväg fält"
1544
 
 
 
 
 
1545
  #: classes/Column/Media/FileSize.php:14
1546
  msgid "File Size"
1547
  msgstr "Filstorlek"
1599
  msgid "Available Sizes"
1600
  msgstr "Tillgängliga storlekar"
1601
 
1602
+ #: classes/Admin/Page/Columns.php:466
1603
  msgid "View"
1604
  msgstr "Visa"
1605
 
1614
 
1615
  #: classes/Column/Link/Rss.php:14
1616
  msgid "Rss"
1617
+ msgstr "Rss"
1618
 
1619
  #: classes/Column/Link/Owner.php:14
1620
  msgid "Owner"
1694
  #: classes/Admin/Help/CustomField.php:22
1695
  #: classes/Settings/Column/CustomFieldType.php:168
1696
  #: classes/Settings/Column/Image.php:71
1697
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1698
  msgid "Default"
1699
  msgstr "Standard"
1700
 
1780
  msgid "Agent"
1781
  msgstr "Agent"
1782
 
1783
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1784
  msgid "Edit"
1785
  msgstr "Redigera"
1786
 
1791
  msgid "ID"
1792
  msgstr "ID"
1793
 
1794
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1795
  #: classes/Settings/Column/ActionIcons.php:22
1796
  #: classes/Settings/Column/MissingImageSize.php:22
1797
  #: classes/Settings/Column/PostFormatIcon.php:24
1798
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1799
  #: classes/Settings/Column/Toggle.php:14
1800
  msgid "No"
1801
  msgstr "Nej"
1802
 
1803
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1804
  #: classes/Settings/Column/ActionIcons.php:21
1805
  #: classes/Settings/Column/MissingImageSize.php:21
1806
  #: classes/Settings/Column/PostFormatIcon.php:23
1807
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1808
  #: classes/Settings/Column/Toggle.php:13
1809
  msgid "Yes"
1810
  msgstr "Ja"
1833
  msgid "Advanced Custom Fields"
1834
  msgstr "Advanced Custom Fields"
1835
 
1836
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1837
  msgid "Plugins"
1838
  msgstr "Tillägg"
languages/codepress-admin-columns-zh_CN.mo CHANGED
Binary file
languages/codepress-admin-columns-zh_CN.po CHANGED
@@ -11,6 +11,74 @@ msgstr ""
11
  "Language: zh_CN\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: classes/Settings/Column/Time.php:20
15
  msgid "WordPress Time Format"
16
  msgstr ""
@@ -184,7 +252,7 @@ msgstr ""
184
  msgid "Alternative Text"
185
  msgstr ""
186
 
187
- #: classes/Admin/Page/Addons.php:113
188
  msgid "Please visit the %s page."
189
  msgstr ""
190
 
@@ -241,11 +309,11 @@ msgstr ""
241
  msgid "User Nicename"
242
  msgstr ""
243
 
244
- #: classes/Admin/Page/Columns.php:591
245
  msgid "Send me the discount"
246
  msgstr ""
247
 
248
- #: classes/Admin/Page/Columns.php:556
249
  msgid "Prices starting from %s"
250
  msgstr ""
251
 
@@ -503,7 +571,7 @@ msgstr ""
503
  msgid "Standard"
504
  msgstr ""
505
 
506
- #: classes/Column/Media/FullPath.php:14
507
  msgid "Full Path"
508
  msgstr ""
509
 
@@ -511,157 +579,157 @@ msgstr ""
511
  msgid "Discount is valid until %s"
512
  msgstr ""
513
 
514
- #: classes/Admin/Page/Settings.php:171
515
  msgid "Show %s button on table screen."
516
  msgstr ""
517
 
518
- #: classes/Admin/Page/Settings.php:152
519
  msgid "Default is %s."
520
  msgstr ""
521
 
522
- #: classes/Admin/Page/Settings.php:149
523
  msgid "on"
524
  msgstr ""
525
 
526
- #: classes/Admin/Page/Settings.php:146
527
  msgid "off"
528
  msgstr ""
529
 
530
- #: classes/Admin/Page/Settings.php:133
531
  msgid "Notice"
532
  msgstr ""
533
 
534
- #: classes/Admin/Page/Settings.php:127
535
  msgid "Instructions"
536
  msgstr ""
537
 
538
- #: classes/Admin/Page/Help.php:325
539
  msgid "our documentation"
540
  msgstr ""
541
 
542
- #: classes/Admin/Page/Help.php:325
543
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
544
  msgstr ""
545
 
546
- #: classes/Admin/Page/Help.php:323
547
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
548
  msgstr ""
549
 
550
- #: classes/Admin/Page/Help.php:313
551
  msgid "The callback used is %s."
552
  msgid_plural "The callbacks used are %s"
553
  msgstr[0] ""
554
 
555
- #: classes/Admin/Page/Help.php:258
556
  msgid "View documentation"
557
  msgstr ""
558
 
559
- #: classes/Admin/Page/Help.php:203
560
  msgid "The action %s used on this website is deprecated since %s."
561
  msgstr ""
562
 
563
- #: classes/Admin/Page/Help.php:185
564
  msgid "The filter %s used on this website is deprecated since %s."
565
  msgstr ""
566
 
567
- #: classes/Admin/Page/Help.php:172
568
  msgid "Deprecated Actions"
569
  msgstr ""
570
 
571
- #: classes/Admin/Page/Help.php:171
572
  msgid "Deprecated Filters"
573
  msgstr ""
574
 
575
- #: classes/Admin/Page/Help.php:34 classes/Admin/Page/Help.php:321
576
  msgid "Help"
577
  msgstr ""
578
 
579
- #: classes/Admin/Page/Columns.php:858 classes/Admin/Page/Columns.php:893
580
  msgid "Close"
581
  msgstr ""
582
 
583
- #: classes/Admin/Page/Columns.php:741
584
  msgid "Clear all columns "
585
  msgstr ""
586
 
587
- #: classes/Admin/Page/Columns.php:648
588
  msgid "I'm using Admin Columns for WordPress!"
589
  msgstr ""
590
 
591
- #: classes/Admin/Page/Columns.php:590
592
  msgid "Your First Name"
593
  msgstr ""
594
 
595
- #: classes/Admin/Page/Columns.php:589
596
  msgid "Your Email"
597
  msgstr ""
598
 
599
- #: classes/Admin/Page/Columns.php:582
600
  msgid "Submit your email and we'll send you a discount for %s off."
601
  msgstr ""
602
 
603
- #: classes/Admin/Page/Columns.php:578
604
  msgid "Get %s Off!"
605
  msgstr ""
606
 
607
- #: classes/Admin/Page/Columns.php:545
608
  msgid "Extra Columns for:"
609
  msgstr ""
610
 
611
- #: classes/Admin/Page/Columns.php:531
612
  msgid "Edit your column content directly"
613
  msgstr ""
614
 
615
- #: classes/Admin/Page/Columns.php:519
616
  msgid "Pro"
617
  msgstr ""
618
 
619
- #: classes/Admin/Page/Columns.php:301
620
  msgid "You need at least one column"
621
  msgstr ""
622
 
623
- #: classes/Admin/Page/Addons.php:293
624
  msgid "Available"
625
  msgstr ""
626
 
627
- #: classes/Admin/Page/Addons.php:292
628
  msgid "Recommended"
629
  msgstr ""
630
 
631
- #: classes/Admin/Page/Addons.php:113
632
  msgid "%s could not be activated."
633
  msgstr ""
634
 
635
- #: classes/Admin/Page/Addons.php:103
636
  msgid "%s successfully activated."
637
  msgstr ""
638
 
639
- #: classes/Admin/Page/Addons.php:98
640
  msgid "%s plugin successfully deactivated."
641
  msgstr ""
642
 
643
- #: classes/Admin/Page/Addons.php:97
644
  msgid "%s plugin successfully activated."
645
  msgstr ""
646
 
647
- #: classes/Admin/Page/Addons.php:64
648
  msgid "%s add-on requires %s."
649
  msgid_plural "%s add-ons requires %s."
650
  msgstr[0] ""
651
 
652
- #: classes/Admin/Page/Addons.php:51
653
  msgid "here"
654
  msgstr ""
655
 
656
- #: classes/Admin/Page/Addons.php:51
657
  msgid "Click %s to activate the plugin."
658
  msgstr ""
659
 
660
- #: classes/Admin/Page/Addons.php:48
661
  msgid "%s plugin is installed, but not active."
662
  msgstr ""
663
 
664
- #: classes/Admin/Page/Addons.php:46
665
  msgid "%s plugin needs to be installed for the add-on to work."
666
  msgstr ""
667
 
@@ -681,59 +749,55 @@ msgstr ""
681
  msgid "Imported"
682
  msgstr ""
683
 
684
- #: classes/Admin/Page/Columns.php:561
685
  msgid "Learn more about Pro"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:533
689
  msgid "Import &amp; Export settings"
690
  msgstr ""
691
 
692
- #: classes/Admin/Page/Columns.php:532
693
  msgid "Create multiple columns sets"
694
  msgstr ""
695
 
696
- #: classes/Admin/Page/Columns.php:530
697
  msgid "Add filterable columns"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Columns.php:529
701
  msgid "Add sortable columns"
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Columns.php:524
705
  msgid "Take Admin Columns to the next level:"
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Columns.php:519
709
  msgid "Upgrade to"
710
  msgstr ""
711
 
712
- #: classes/Admin/Promo.php:134
713
- msgid "Get %s Off"
714
- msgstr ""
715
-
716
- #: classes/Admin/Page/Columns.php:431
717
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
718
  msgstr ""
719
 
720
- #: classes/Admin/Page/Columns.php:221
721
  msgid "Please visit the %s screen once to load all available columns"
722
  msgstr ""
723
 
724
- #: classes/Admin/Page/Columns.php:500
725
  msgid "Restore columns"
726
  msgstr ""
727
 
728
- #: classes/Admin/Page/Columns.php:147
729
  msgid "Settings for %s restored successfully."
730
  msgstr ""
731
 
732
- #: classes/Admin/Page/Columns.php:308
733
  msgid "View %s screen"
734
  msgstr ""
735
 
736
- #: classes/Admin/Page/Columns.php:70
737
  msgid "Invalid response."
738
  msgstr ""
739
 
@@ -749,23 +813,23 @@ msgstr ""
749
  msgid "Link Label"
750
  msgstr ""
751
 
752
- #: classes/Admin/Page/Addons.php:220
753
  msgid "You need Admin Columns Pro."
754
  msgstr ""
755
 
756
- #: classes/Admin/Page/Addons.php:214
757
  msgid "Addon does not exist."
758
  msgstr ""
759
 
760
- #: classes/Admin/Page/Addons.php:176
761
  msgid "the addons page"
762
  msgstr ""
763
 
764
- #: classes/Admin/Page/Addons.php:176
765
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
766
  msgstr ""
767
 
768
- #: codepress-admin-columns.php:300
769
  msgid "Custom Fields"
770
  msgstr "自定义域"
771
 
@@ -777,22 +841,28 @@ msgstr ""
777
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
778
  msgstr ""
779
 
780
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
781
  #. Plugin URI of the plugin/theme
782
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
783
  #. Author URI of the plugin/theme
784
  msgid "https://www.admincolumns.com"
785
  msgstr ""
786
 
787
- #: classes/Admin/Page/Settings.php:171 classes/TableScreen.php:218
788
  msgid "Edit columns"
789
  msgstr "编辑列"
790
 
791
- #: classes/Admin/Page/Columns.php:328
 
 
 
 
792
  msgid "Settings for %s updated successfully."
793
  msgstr ""
794
 
795
- #: classes/Admin/Page/Columns.php:315
796
  msgid "You are trying to store the same settings for %s."
797
  msgstr "你正在尝试为 %s 保存同样设置"
798
 
@@ -800,17 +870,17 @@ msgstr "你正在尝试为 %s 保存同样设置"
800
  msgid "No columns settings available."
801
  msgstr "没有可用的列设置。"
802
 
803
- #: classes/ListScreen/User.php:11 codepress-admin-columns.php:431
804
  msgid "Users"
805
  msgstr ""
806
 
807
  #: classes/ListScreen/Media.php:16
808
  #: classes/Settings/Column/CustomFieldType.php:112
809
- #: codepress-admin-columns.php:432
810
  msgid "Media"
811
  msgstr ""
812
 
813
- #: codepress-admin-columns.php:434
814
  msgid "Links"
815
  msgstr ""
816
 
@@ -818,103 +888,103 @@ msgstr ""
818
  msgid "Comment"
819
  msgstr ""
820
 
821
- #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:433
822
  msgid "Comments"
823
  msgstr ""
824
 
825
- #: classes/Admin/Page/Addons.php:420
826
  msgid "Get this add-on"
827
  msgstr ""
828
 
829
- #: classes/Admin/Page/Addons.php:418
830
  msgid "Download & Install"
831
  msgstr ""
832
 
833
- #: classes/Admin/Page/Addons.php:412
834
  msgid "Activate"
835
  msgstr ""
836
 
837
- #: classes/Admin/Page/Addons.php:291
838
  msgid "Installed"
839
  msgstr ""
840
 
841
- #: classes/Admin/Page/Addons.php:408
842
  msgid "Deactivate"
843
  msgstr ""
844
 
845
- #: classes/Admin/Page/Addons.php:405
846
  msgid "Active"
847
  msgstr ""
848
 
849
- #: classes/Admin/Page/Columns.php:747
850
  msgid "Add Column"
851
  msgstr "添加列"
852
 
853
- #: classes/Admin/Page/Columns.php:727
854
  msgid "Drag and drop to reorder"
855
  msgstr "拖动排序"
856
 
857
- #: classes/Admin/Page/Columns.php:676
858
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
859
  msgstr "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
860
 
861
- #: classes/Admin/Page/Columns.php:672
862
  msgid "Check the <strong>Help</strong> section in the top-right screen."
863
  msgstr "查看右上角的 <strong>帮助</strong>"
864
 
865
- #: classes/Admin/Page/Columns.php:667
866
  msgid "Support"
867
  msgstr "支持"
868
 
869
- #: classes/Admin/Page/Columns.php:655
870
  msgid "Buy Pro"
871
  msgstr ""
872
 
873
- #: classes/Admin/Page/Columns.php:649
874
  msgid "Tweet"
875
  msgstr ""
876
 
877
- #: classes/Admin/Page/Columns.php:643
878
  msgid "Rate"
879
  msgstr ""
880
 
881
- #: classes/Admin/Page/Columns.php:638
882
  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!"
883
  msgstr ""
884
 
885
- #: classes/Admin/Page/Columns.php:635
886
  msgid "Woohoo! We're glad to hear that!"
887
  msgstr ""
888
 
889
- #: classes/Admin/Page/Columns.php:625
890
  msgid "Forums"
891
  msgstr ""
892
 
893
- #: classes/Admin/Page/Columns.php:620
894
  msgid "Docs"
895
  msgstr ""
896
 
897
- #: classes/Admin/Page/Columns.php:615
898
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
899
  msgstr ""
900
 
901
- #: classes/Admin/Page/Columns.php:612
902
  msgid "What's wrong? Need help? Let us know!"
903
  msgstr ""
904
 
905
- #: classes/Admin/Page/Columns.php:602
906
  msgid "Are you happy with Admin Columns?"
907
  msgstr ""
908
 
909
- #: classes/Admin/Page/Columns.php:499
910
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
911
  msgstr ""
912
 
913
- #: classes/Admin/Page/Columns.php:488 classes/Admin/Page/Columns.php:745
914
  msgid "Update"
915
  msgstr ""
916
 
917
- #: classes/Admin/Page/Columns.php:477
918
  msgid "Store settings"
919
  msgstr "保存设置"
920
 
@@ -922,7 +992,7 @@ msgstr "保存设置"
922
  msgid "Add-ons"
923
  msgstr ""
924
 
925
- #: classes/Admin/Page/Settings.php:18 codepress-admin-columns.php:255
926
  msgid "Settings"
927
  msgstr "设置"
928
 
@@ -930,32 +1000,32 @@ msgstr "设置"
930
  msgid "Others"
931
  msgstr ""
932
 
933
- #: classes/Admin/Page/Settings.php:229
934
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
935
  msgstr ""
936
 
937
- #: classes/Admin/Page/Settings.php:229
938
  msgid "Restore default settings"
939
  msgstr "恢复默认设置"
940
 
941
- #: classes/Admin/Page/Settings.php:221
942
  msgid "This will delete all column settings and restore the default settings."
943
  msgstr "这将删除所有列的设置和恢复到默认设置。"
944
 
945
- #: classes/Admin/Page/Settings.php:220
946
  msgid "Restore Settings"
947
  msgstr "恢复设置"
948
 
949
- #: classes/Admin/Page/Columns.php:489 classes/Admin/Page/Columns.php:746
950
- #: classes/Admin/Page/Settings.php:179
951
  msgid "Save"
952
  msgstr ""
953
 
954
- #: classes/Admin/Page/Settings.php:161
955
  msgid "Customize your Admin Columns settings."
956
  msgstr "自定义Admin Columns的设置"
957
 
958
- #: classes/Admin/Page/Settings.php:160
959
  #: classes/Settings/Column/DateTimeFormat.php:39
960
  msgid "General Settings"
961
  msgstr "常规设置"
@@ -1056,19 +1126,19 @@ msgstr "该插件用来从管理界面中添加或移除额外的列,比如文
1056
  msgid "Overview"
1057
  msgstr "预览"
1058
 
1059
- #: classes/Admin/Page/Settings.php:101
1060
  msgid "Default settings succesfully restored."
1061
  msgstr "已成功恢复默认设置。"
1062
 
1063
- #: classes/Admin/Page/Columns.php:69 classes/Admin/Page/Columns.php:248
1064
  msgid "%s column is already present and can not be duplicated."
1065
  msgstr "%s 这个列已经存在,不能被复制。"
1066
 
1067
- #: classes/Admin.php:127
1068
  msgid "Admin Columns Settings"
1069
  msgstr "Admin Columns 设置"
1070
 
1071
- #: classes/Admin/Page/Addons.php:104
1072
  msgid "%s successfully deactivated."
1073
  msgstr ""
1074
 
@@ -1116,13 +1186,14 @@ msgstr ""
1116
  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."
1117
  msgstr ""
1118
 
1119
- #: classes/Admin/Page/Addons.php:64 classes/Notice/Review.php:68
1120
  msgid "Admin Columns Pro"
1121
  msgstr ""
1122
 
1123
- #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.5) #-#-#-#-#
 
1124
  #. Plugin Name of the plugin/theme
1125
- #: classes/Admin/Page/Columns.php:22 classes/Admin.php:127
1126
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1127
  #: classes/Plugin/Updater.php:114
1128
  msgid "Admin Columns"
@@ -1176,7 +1247,7 @@ msgstr ""
1176
  msgid "Choose a column type."
1177
  msgstr "选择一个列类型。"
1178
 
1179
- #: classes/Admin/Page/Columns.php:860 classes/Admin/Page/Columns.php:895
1180
  msgid "Clone"
1181
  msgstr ""
1182
 
@@ -1196,7 +1267,7 @@ msgstr "用户邮箱"
1196
  msgid "User Login"
1197
  msgstr "用户名"
1198
 
1199
- #: classes/Settings/Column/User.php:65
1200
  msgid "Last Name"
1201
  msgstr "姓氏"
1202
 
@@ -1225,7 +1296,7 @@ msgid "width"
1225
  msgstr "宽度"
1226
 
1227
  #: classes/Settings/Column/CustomFieldType.php:153
1228
- #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:301
1229
  msgid "Custom"
1230
  msgstr "自定义"
1231
 
@@ -1262,7 +1333,7 @@ msgid "Registered"
1262
  msgstr "注册"
1263
 
1264
  #: classes/Settings/Column/CustomFieldType.php:80
1265
- #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:430
1266
  msgid "Post Type"
1267
  msgstr "文章类型"
1268
 
@@ -1274,16 +1345,12 @@ msgstr "文章数量"
1274
  msgid "Nickname"
1275
  msgstr "昵称"
1276
 
1277
- #: classes/Column/User/LastName.php:14
1278
- msgid "Last name"
1279
- msgstr "姓氏"
1280
-
1281
  #: classes/Column/Post/CommentCount.php:17
1282
  #: classes/Column/User/CommentCount.php:14
1283
  msgid "Comment Count"
1284
  msgstr ""
1285
 
1286
- #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
1287
  msgid "Remove"
1288
  msgstr "删除"
1289
 
@@ -1331,7 +1398,7 @@ msgstr ""
1331
  msgid "Permalink"
1332
  msgstr ""
1333
 
1334
- #: classes/Column/Post/Path.php:16
1335
  msgid "Path"
1336
  msgstr ""
1337
 
@@ -1471,10 +1538,6 @@ msgstr ""
1471
  msgid "Path scope"
1472
  msgstr ""
1473
 
1474
- #: classes/Settings/Column/PathScope.php:24
1475
- msgid "Full path"
1476
- msgstr "完整路径"
1477
-
1478
  #: classes/Column/Media/FileSize.php:14
1479
  msgid "File Size"
1480
  msgstr ""
@@ -1532,7 +1595,7 @@ msgstr "标题"
1532
  msgid "Available Sizes"
1533
  msgstr "可用尺寸"
1534
 
1535
- #: classes/Admin/Page/Columns.php:463
1536
  msgid "View"
1537
  msgstr "查看"
1538
 
@@ -1627,7 +1690,7 @@ msgstr "颜色"
1627
  #: classes/Admin/Help/CustomField.php:22
1628
  #: classes/Settings/Column/CustomFieldType.php:168
1629
  #: classes/Settings/Column/Image.php:71
1630
- #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:298
1631
  msgid "Default"
1632
  msgstr "默认"
1633
 
@@ -1713,7 +1776,7 @@ msgstr "已通过"
1713
  msgid "Agent"
1714
  msgstr "代理(Agent)"
1715
 
1716
- #: classes/Admin/Page/Columns.php:857 classes/Column/Link/Actions.php:39
1717
  msgid "Edit"
1718
  msgstr "编辑"
1719
 
@@ -1724,20 +1787,20 @@ msgstr "编辑"
1724
  msgid "ID"
1725
  msgstr "ID"
1726
 
1727
- #: classes/Admin/Page/Columns.php:606 classes/Helper/Icon.php:61
1728
  #: classes/Settings/Column/ActionIcons.php:22
1729
  #: classes/Settings/Column/MissingImageSize.php:22
1730
  #: classes/Settings/Column/PostFormatIcon.php:24
1731
- #: classes/Settings/Column/StatusIcon.php:24
1732
  #: classes/Settings/Column/Toggle.php:14
1733
  msgid "No"
1734
  msgstr ""
1735
 
1736
- #: classes/Admin/Page/Columns.php:605 classes/Helper/Icon.php:49
1737
  #: classes/Settings/Column/ActionIcons.php:21
1738
  #: classes/Settings/Column/MissingImageSize.php:21
1739
  #: classes/Settings/Column/PostFormatIcon.php:23
1740
- #: classes/Settings/Column/StatusIcon.php:23
1741
  #: classes/Settings/Column/Toggle.php:13
1742
  msgid "Yes"
1743
  msgstr ""
@@ -1766,6 +1829,6 @@ msgstr ""
1766
  msgid "Advanced Custom Fields"
1767
  msgstr ""
1768
 
1769
- #: classes/Admin/Page/Addons.php:113 codepress-admin-columns.php:299
1770
  msgid "Plugins"
1771
  msgstr ""
11
  "Language: zh_CN\n"
12
  "Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
13
 
14
+ #: classes/Settings/Column/Pro/Sorting.php:14
15
+ msgid "This will make the column sortable."
16
+ msgstr ""
17
+
18
+ #: classes/Settings/Column/Pro/Sorting.php:10
19
+ msgid "Sorting"
20
+ msgstr ""
21
+
22
+ #: classes/Settings/Column/Pro/Filtering.php:14
23
+ msgid "This will make the column filterable."
24
+ msgstr ""
25
+
26
+ #: classes/Settings/Column/Pro/Filtering.php:10
27
+ msgid "Filtering"
28
+ msgstr ""
29
+
30
+ #: classes/Settings/Column/Pro/Export.php:14
31
+ msgid "Export your column data to CSV."
32
+ msgstr ""
33
+
34
+ #: classes/Settings/Column/Pro/Export.php:10
35
+ msgid "Export"
36
+ msgstr ""
37
+
38
+ #: classes/Settings/Column/Pro/Editing.php:14
39
+ msgid "Edit your content directly from the overview."
40
+ msgstr ""
41
+
42
+ #: classes/Settings/Column/Pro/Editing.php:10
43
+ msgid "Editing"
44
+ msgstr ""
45
+
46
+ #: classes/Admin/Page/Columns.php:941
47
+ msgid "Only %s for 1 site"
48
+ msgstr ""
49
+
50
+ #: classes/Admin/Page/Columns.php:936
51
+ msgid "Get add-ons for ACF, WooCommerce and many more"
52
+ msgstr ""
53
+
54
+ #: classes/Admin/Page/Columns.php:935
55
+ msgid "Create multiple column groups per overview"
56
+ msgstr ""
57
+
58
+ #: classes/Admin/Page/Columns.php:934
59
+ msgid "Export all column data to CSV"
60
+ msgstr ""
61
+
62
+ #: classes/Admin/Page/Columns.php:933
63
+ msgid "Directly edit your content from the overview"
64
+ msgstr ""
65
+
66
+ #: classes/Admin/Page/Columns.php:932
67
+ msgid "Sort & Filter on all your content"
68
+ msgstr ""
69
+
70
+ #: classes/Admin/Page/Columns.php:929
71
+ msgid "Upgrade to PRO, and take Admin Columns to the next level:"
72
+ msgstr ""
73
+
74
+ #: classes/Admin/Page/Columns.php:922
75
+ msgid "Do you like Admin Columns?"
76
+ msgstr ""
77
+
78
+ #: classes/Admin/Page/Columns.php:454
79
+ msgid "Select type"
80
+ msgstr ""
81
+
82
  #: classes/Settings/Column/Time.php:20
83
  msgid "WordPress Time Format"
84
  msgstr ""
252
  msgid "Alternative Text"
253
  msgstr ""
254
 
255
+ #: classes/Admin/Page/Addons.php:117
256
  msgid "Please visit the %s page."
257
  msgstr ""
258
 
309
  msgid "User Nicename"
310
  msgstr ""
311
 
312
+ #: classes/Admin/Page/Columns.php:594
313
  msgid "Send me the discount"
314
  msgstr ""
315
 
316
+ #: classes/Admin/Page/Columns.php:559
317
  msgid "Prices starting from %s"
318
  msgstr ""
319
 
571
  msgid "Standard"
572
  msgstr ""
573
 
574
+ #: classes/Settings/Column/PathScope.php:24
575
  msgid "Full Path"
576
  msgstr ""
577
 
579
  msgid "Discount is valid until %s"
580
  msgstr ""
581
 
582
+ #: classes/Admin/Page/Settings.php:181
583
  msgid "Show %s button on table screen."
584
  msgstr ""
585
 
586
+ #: classes/Admin/Page/Settings.php:162
587
  msgid "Default is %s."
588
  msgstr ""
589
 
590
+ #: classes/Admin/Page/Settings.php:159
591
  msgid "on"
592
  msgstr ""
593
 
594
+ #: classes/Admin/Page/Settings.php:156
595
  msgid "off"
596
  msgstr ""
597
 
598
+ #: classes/Admin/Page/Settings.php:143
599
  msgid "Notice"
600
  msgstr ""
601
 
602
+ #: classes/Admin/Page/Settings.php:137
603
  msgid "Instructions"
604
  msgstr ""
605
 
606
+ #: classes/Admin/Page/Help.php:330
607
  msgid "our documentation"
608
  msgstr ""
609
 
610
+ #: classes/Admin/Page/Help.php:330
611
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
612
  msgstr ""
613
 
614
+ #: classes/Admin/Page/Help.php:328
615
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
616
  msgstr ""
617
 
618
+ #: classes/Admin/Page/Help.php:318
619
  msgid "The callback used is %s."
620
  msgid_plural "The callbacks used are %s"
621
  msgstr[0] ""
622
 
623
+ #: classes/Admin/Page/Help.php:263
624
  msgid "View documentation"
625
  msgstr ""
626
 
627
+ #: classes/Admin/Page/Help.php:208
628
  msgid "The action %s used on this website is deprecated since %s."
629
  msgstr ""
630
 
631
+ #: classes/Admin/Page/Help.php:190
632
  msgid "The filter %s used on this website is deprecated since %s."
633
  msgstr ""
634
 
635
+ #: classes/Admin/Page/Help.php:177
636
  msgid "Deprecated Actions"
637
  msgstr ""
638
 
639
+ #: classes/Admin/Page/Help.php:176
640
  msgid "Deprecated Filters"
641
  msgstr ""
642
 
643
+ #: classes/Admin/Page/Help.php:39 classes/Admin/Page/Help.php:326
644
  msgid "Help"
645
  msgstr ""
646
 
647
+ #: classes/Admin/Page/Columns.php:862 classes/Admin/Page/Columns.php:897
648
  msgid "Close"
649
  msgstr ""
650
 
651
+ #: classes/Admin/Page/Columns.php:744
652
  msgid "Clear all columns "
653
  msgstr ""
654
 
655
+ #: classes/Admin/Page/Columns.php:651
656
  msgid "I'm using Admin Columns for WordPress!"
657
  msgstr ""
658
 
659
+ #: classes/Admin/Page/Columns.php:593
660
  msgid "Your First Name"
661
  msgstr ""
662
 
663
+ #: classes/Admin/Page/Columns.php:592
664
  msgid "Your Email"
665
  msgstr ""
666
 
667
+ #: classes/Admin/Page/Columns.php:585
668
  msgid "Submit your email and we'll send you a discount for %s off."
669
  msgstr ""
670
 
671
+ #: classes/Admin/Page/Columns.php:581 classes/Admin/Promo.php:134
672
  msgid "Get %s Off!"
673
  msgstr ""
674
 
675
+ #: classes/Admin/Page/Columns.php:548
676
  msgid "Extra Columns for:"
677
  msgstr ""
678
 
679
+ #: classes/Admin/Page/Columns.php:534
680
  msgid "Edit your column content directly"
681
  msgstr ""
682
 
683
+ #: classes/Admin/Page/Columns.php:522
684
  msgid "Pro"
685
  msgstr ""
686
 
687
+ #: classes/Admin/Page/Columns.php:304
688
  msgid "You need at least one column"
689
  msgstr ""
690
 
691
+ #: classes/Admin/Page/Addons.php:297
692
  msgid "Available"
693
  msgstr ""
694
 
695
+ #: classes/Admin/Page/Addons.php:296
696
  msgid "Recommended"
697
  msgstr ""
698
 
699
+ #: classes/Admin/Page/Addons.php:117
700
  msgid "%s could not be activated."
701
  msgstr ""
702
 
703
+ #: classes/Admin/Page/Addons.php:107
704
  msgid "%s successfully activated."
705
  msgstr ""
706
 
707
+ #: classes/Admin/Page/Addons.php:102
708
  msgid "%s plugin successfully deactivated."
709
  msgstr ""
710
 
711
+ #: classes/Admin/Page/Addons.php:101
712
  msgid "%s plugin successfully activated."
713
  msgstr ""
714
 
715
+ #: classes/Admin/Page/Addons.php:69
716
  msgid "%s add-on requires %s."
717
  msgid_plural "%s add-ons requires %s."
718
  msgstr[0] ""
719
 
720
+ #: classes/Admin/Page/Addons.php:56
721
  msgid "here"
722
  msgstr ""
723
 
724
+ #: classes/Admin/Page/Addons.php:56
725
  msgid "Click %s to activate the plugin."
726
  msgstr ""
727
 
728
+ #: classes/Admin/Page/Addons.php:53
729
  msgid "%s plugin is installed, but not active."
730
  msgstr ""
731
 
732
+ #: classes/Admin/Page/Addons.php:51
733
  msgid "%s plugin needs to be installed for the add-on to work."
734
  msgstr ""
735
 
749
  msgid "Imported"
750
  msgstr ""
751
 
752
+ #: classes/Admin/Page/Columns.php:564
753
  msgid "Learn more about Pro"
754
  msgstr ""
755
 
756
+ #: classes/Admin/Page/Columns.php:536
757
  msgid "Import &amp; Export settings"
758
  msgstr ""
759
 
760
+ #: classes/Admin/Page/Columns.php:535
761
  msgid "Create multiple columns sets"
762
  msgstr ""
763
 
764
+ #: classes/Admin/Page/Columns.php:533
765
  msgid "Add filterable columns"
766
  msgstr ""
767
 
768
+ #: classes/Admin/Page/Columns.php:532
769
  msgid "Add sortable columns"
770
  msgstr ""
771
 
772
+ #: classes/Admin/Page/Columns.php:527
773
  msgid "Take Admin Columns to the next level:"
774
  msgstr ""
775
 
776
+ #: classes/Admin/Page/Columns.php:522
777
  msgid "Upgrade to"
778
  msgstr ""
779
 
780
+ #: classes/Admin/Page/Columns.php:434
 
 
 
 
781
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
782
  msgstr ""
783
 
784
+ #: classes/Admin/Page/Columns.php:224
785
  msgid "Please visit the %s screen once to load all available columns"
786
  msgstr ""
787
 
788
+ #: classes/Admin/Page/Columns.php:503
789
  msgid "Restore columns"
790
  msgstr ""
791
 
792
+ #: classes/Admin/Page/Columns.php:150
793
  msgid "Settings for %s restored successfully."
794
  msgstr ""
795
 
796
+ #: classes/Admin/Page/Columns.php:311
797
  msgid "View %s screen"
798
  msgstr ""
799
 
800
+ #: classes/Admin/Page/Columns.php:73
801
  msgid "Invalid response."
802
  msgstr ""
803
 
813
  msgid "Link Label"
814
  msgstr ""
815
 
816
+ #: classes/Admin/Page/Addons.php:224
817
  msgid "You need Admin Columns Pro."
818
  msgstr ""
819
 
820
+ #: classes/Admin/Page/Addons.php:218
821
  msgid "Addon does not exist."
822
  msgstr ""
823
 
824
+ #: classes/Admin/Page/Addons.php:180
825
  msgid "the addons page"
826
  msgstr ""
827
 
828
+ #: classes/Admin/Page/Addons.php:180
829
  msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
830
  msgstr ""
831
 
832
+ #: codepress-admin-columns.php:325
833
  msgid "Custom Fields"
834
  msgstr "自定义域"
835
 
841
  msgid "Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
842
  msgstr ""
843
 
844
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
845
+ #. #-#-#-#-#
846
  #. Plugin URI of the plugin/theme
847
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
848
+ #. #-#-#-#-#
849
  #. Author URI of the plugin/theme
850
  msgid "https://www.admincolumns.com"
851
  msgstr ""
852
 
853
+ #: classes/Admin/Page/Settings.php:181 classes/TableScreen.php:218
854
  msgid "Edit columns"
855
  msgstr "编辑列"
856
 
857
+ #: classes/Admin/Page/Columns.php:940
858
+ msgid "Upgrade"
859
+ msgstr "升级"
860
+
861
+ #: classes/Admin/Page/Columns.php:331
862
  msgid "Settings for %s updated successfully."
863
  msgstr ""
864
 
865
+ #: classes/Admin/Page/Columns.php:318
866
  msgid "You are trying to store the same settings for %s."
867
  msgstr "你正在尝试为 %s 保存同样设置"
868
 
870
  msgid "No columns settings available."
871
  msgstr "没有可用的列设置。"
872
 
873
+ #: classes/ListScreen/User.php:11 codepress-admin-columns.php:456
874
  msgid "Users"
875
  msgstr ""
876
 
877
  #: classes/ListScreen/Media.php:16
878
  #: classes/Settings/Column/CustomFieldType.php:112
879
+ #: codepress-admin-columns.php:457
880
  msgid "Media"
881
  msgstr ""
882
 
883
+ #: codepress-admin-columns.php:459
884
  msgid "Links"
885
  msgstr ""
886
 
888
  msgid "Comment"
889
  msgstr ""
890
 
891
+ #: classes/ListScreen/Comment.php:14 codepress-admin-columns.php:458
892
  msgid "Comments"
893
  msgstr ""
894
 
895
+ #: classes/Admin/Page/Addons.php:424
896
  msgid "Get this add-on"
897
  msgstr ""
898
 
899
+ #: classes/Admin/Page/Addons.php:422
900
  msgid "Download & Install"
901
  msgstr ""
902
 
903
+ #: classes/Admin/Page/Addons.php:416
904
  msgid "Activate"
905
  msgstr ""
906
 
907
+ #: classes/Admin/Page/Addons.php:295
908
  msgid "Installed"
909
  msgstr ""
910
 
911
+ #: classes/Admin/Page/Addons.php:412
912
  msgid "Deactivate"
913
  msgstr ""
914
 
915
+ #: classes/Admin/Page/Addons.php:409
916
  msgid "Active"
917
  msgstr ""
918
 
919
+ #: classes/Admin/Page/Columns.php:750
920
  msgid "Add Column"
921
  msgstr "添加列"
922
 
923
+ #: classes/Admin/Page/Columns.php:730
924
  msgid "Drag and drop to reorder"
925
  msgstr "拖动排序"
926
 
927
+ #: classes/Admin/Page/Columns.php:679
928
  msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
929
  msgstr "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
930
 
931
+ #: classes/Admin/Page/Columns.php:675
932
  msgid "Check the <strong>Help</strong> section in the top-right screen."
933
  msgstr "查看右上角的 <strong>帮助</strong>"
934
 
935
+ #: classes/Admin/Page/Columns.php:670
936
  msgid "Support"
937
  msgstr "支持"
938
 
939
+ #: classes/Admin/Page/Columns.php:658
940
  msgid "Buy Pro"
941
  msgstr ""
942
 
943
+ #: classes/Admin/Page/Columns.php:652
944
  msgid "Tweet"
945
  msgstr ""
946
 
947
+ #: classes/Admin/Page/Columns.php:646
948
  msgid "Rate"
949
  msgstr ""
950
 
951
+ #: classes/Admin/Page/Columns.php:641
952
  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!"
953
  msgstr ""
954
 
955
+ #: classes/Admin/Page/Columns.php:638
956
  msgid "Woohoo! We're glad to hear that!"
957
  msgstr ""
958
 
959
+ #: classes/Admin/Page/Columns.php:628
960
  msgid "Forums"
961
  msgstr ""
962
 
963
+ #: classes/Admin/Page/Columns.php:623
964
  msgid "Docs"
965
  msgstr ""
966
 
967
+ #: classes/Admin/Page/Columns.php:618
968
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
969
  msgstr ""
970
 
971
+ #: classes/Admin/Page/Columns.php:615
972
  msgid "What's wrong? Need help? Let us know!"
973
  msgstr ""
974
 
975
+ #: classes/Admin/Page/Columns.php:605
976
  msgid "Are you happy with Admin Columns?"
977
  msgstr ""
978
 
979
+ #: classes/Admin/Page/Columns.php:502
980
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
981
  msgstr ""
982
 
983
+ #: classes/Admin/Page/Columns.php:491 classes/Admin/Page/Columns.php:748
984
  msgid "Update"
985
  msgstr ""
986
 
987
+ #: classes/Admin/Page/Columns.php:480
988
  msgid "Store settings"
989
  msgstr "保存设置"
990
 
992
  msgid "Add-ons"
993
  msgstr ""
994
 
995
+ #: classes/Admin/Page/Settings.php:16 codepress-admin-columns.php:280
996
  msgid "Settings"
997
  msgstr "设置"
998
 
1000
  msgid "Others"
1001
  msgstr ""
1002
 
1003
+ #: classes/Admin/Page/Settings.php:239
1004
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
1005
  msgstr ""
1006
 
1007
+ #: classes/Admin/Page/Settings.php:239
1008
  msgid "Restore default settings"
1009
  msgstr "恢复默认设置"
1010
 
1011
+ #: classes/Admin/Page/Settings.php:231
1012
  msgid "This will delete all column settings and restore the default settings."
1013
  msgstr "这将删除所有列的设置和恢复到默认设置。"
1014
 
1015
+ #: classes/Admin/Page/Settings.php:230
1016
  msgid "Restore Settings"
1017
  msgstr "恢复设置"
1018
 
1019
+ #: classes/Admin/Page/Columns.php:492 classes/Admin/Page/Columns.php:749
1020
+ #: classes/Admin/Page/Settings.php:189
1021
  msgid "Save"
1022
  msgstr ""
1023
 
1024
+ #: classes/Admin/Page/Settings.php:171
1025
  msgid "Customize your Admin Columns settings."
1026
  msgstr "自定义Admin Columns的设置"
1027
 
1028
+ #: classes/Admin/Page/Settings.php:170
1029
  #: classes/Settings/Column/DateTimeFormat.php:39
1030
  msgid "General Settings"
1031
  msgstr "常规设置"
1126
  msgid "Overview"
1127
  msgstr "预览"
1128
 
1129
+ #: classes/Admin/Page/Settings.php:111
1130
  msgid "Default settings succesfully restored."
1131
  msgstr "已成功恢复默认设置。"
1132
 
1133
+ #: classes/Admin/Page/Columns.php:72 classes/Admin/Page/Columns.php:251
1134
  msgid "%s column is already present and can not be duplicated."
1135
  msgstr "%s 这个列已经存在,不能被复制。"
1136
 
1137
+ #: classes/Admin.php:126
1138
  msgid "Admin Columns Settings"
1139
  msgstr "Admin Columns 设置"
1140
 
1141
+ #: classes/Admin/Page/Addons.php:108
1142
  msgid "%s successfully deactivated."
1143
  msgstr ""
1144
 
1186
  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."
1187
  msgstr ""
1188
 
1189
+ #: classes/Admin/Page/Addons.php:69 classes/Notice/Review.php:68
1190
  msgid "Admin Columns Pro"
1191
  msgstr ""
1192
 
1193
+ #. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.1.10)
1194
+ #. #-#-#-#-#
1195
  #. Plugin Name of the plugin/theme
1196
+ #: classes/Admin/Page/Columns.php:22 classes/Admin.php:126
1197
  #: classes/Notice/Review.php:65 classes/Plugin/Updater.php:103
1198
  #: classes/Plugin/Updater.php:114
1199
  msgid "Admin Columns"
1247
  msgid "Choose a column type."
1248
  msgstr "选择一个列类型。"
1249
 
1250
+ #: classes/Admin/Page/Columns.php:864 classes/Admin/Page/Columns.php:899
1251
  msgid "Clone"
1252
  msgstr ""
1253
 
1267
  msgid "User Login"
1268
  msgstr "用户名"
1269
 
1270
+ #: classes/Column/User/LastName.php:14 classes/Settings/Column/User.php:65
1271
  msgid "Last Name"
1272
  msgstr "姓氏"
1273
 
1296
  msgstr "宽度"
1297
 
1298
  #: classes/Settings/Column/CustomFieldType.php:153
1299
+ #: classes/Settings/Column/Image.php:111 codepress-admin-columns.php:326
1300
  msgid "Custom"
1301
  msgstr "自定义"
1302
 
1333
  msgstr "注册"
1334
 
1335
  #: classes/Settings/Column/CustomFieldType.php:80
1336
+ #: classes/Settings/Column/PostType.php:24 codepress-admin-columns.php:455
1337
  msgid "Post Type"
1338
  msgstr "文章类型"
1339
 
1345
  msgid "Nickname"
1346
  msgstr "昵称"
1347
 
 
 
 
 
1348
  #: classes/Column/Post/CommentCount.php:17
1349
  #: classes/Column/User/CommentCount.php:14
1350
  msgid "Comment Count"
1351
  msgstr ""
1352
 
1353
+ #: classes/Admin/Page/Columns.php:866 classes/Admin/Page/Columns.php:901
1354
  msgid "Remove"
1355
  msgstr "删除"
1356
 
1398
  msgid "Permalink"
1399
  msgstr ""
1400
 
1401
+ #: classes/Column/Media/FullPath.php:14 classes/Column/Post/Path.php:16
1402
  msgid "Path"
1403
  msgstr ""
1404
 
1538
  msgid "Path scope"
1539
  msgstr ""
1540
 
 
 
 
 
1541
  #: classes/Column/Media/FileSize.php:14
1542
  msgid "File Size"
1543
  msgstr ""
1595
  msgid "Available Sizes"
1596
  msgstr "可用尺寸"
1597
 
1598
+ #: classes/Admin/Page/Columns.php:466
1599
  msgid "View"
1600
  msgstr "查看"
1601
 
1690
  #: classes/Admin/Help/CustomField.php:22
1691
  #: classes/Settings/Column/CustomFieldType.php:168
1692
  #: classes/Settings/Column/Image.php:71
1693
+ #: classes/Settings/Column/Separator.php:23 codepress-admin-columns.php:323
1694
  msgid "Default"
1695
  msgstr "默认"
1696
 
1776
  msgid "Agent"
1777
  msgstr "代理(Agent)"
1778
 
1779
+ #: classes/Admin/Page/Columns.php:861 classes/Column/Link/Actions.php:39
1780
  msgid "Edit"
1781
  msgstr "编辑"
1782
 
1787
  msgid "ID"
1788
  msgstr "ID"
1789
 
1790
+ #: classes/Admin/Page/Columns.php:609 classes/Helper/Icon.php:61
1791
  #: classes/Settings/Column/ActionIcons.php:22
1792
  #: classes/Settings/Column/MissingImageSize.php:22
1793
  #: classes/Settings/Column/PostFormatIcon.php:24
1794
+ #: classes/Settings/Column/Pro.php:17 classes/Settings/Column/StatusIcon.php:24
1795
  #: classes/Settings/Column/Toggle.php:14
1796
  msgid "No"
1797
  msgstr ""
1798
 
1799
+ #: classes/Admin/Page/Columns.php:608 classes/Helper/Icon.php:49
1800
  #: classes/Settings/Column/ActionIcons.php:21
1801
  #: classes/Settings/Column/MissingImageSize.php:21
1802
  #: classes/Settings/Column/PostFormatIcon.php:23
1803
+ #: classes/Settings/Column/Pro.php:16 classes/Settings/Column/StatusIcon.php:23
1804
  #: classes/Settings/Column/Toggle.php:13
1805
  msgid "Yes"
1806
  msgstr ""
1829
  msgid "Advanced Custom Fields"
1830
  msgstr ""
1831
 
1832
+ #: classes/Admin/Page/Addons.php:117 codepress-admin-columns.php:324
1833
  msgid "Plugins"
1834
  msgstr ""
languages/codepress-admin-columns.pot CHANGED
@@ -15,268 +15,296 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
18
- #: codepress-admin-columns.php:280, classes/Admin/Page/Settings.php:12
 
 
 
 
 
 
 
 
19
  msgid "Settings"
20
  msgstr ""
21
 
22
- #: codepress-admin-columns.php:323, classes/Admin/Help/CustomField.php:18, classes/Settings/Column/CustomFieldType.php:164, classes/Settings/Column/Image.php:67, classes/Settings/Column/Separator.php:19
23
- msgid "Default"
24
  msgstr ""
25
 
26
- #: codepress-admin-columns.php:325
27
- msgid "Custom Fields"
28
  msgstr ""
29
 
30
- #: codepress-admin-columns.php:326, classes/Settings/Column/CustomFieldType.php:149, classes/Settings/Column/Image.php:107
31
- msgid "Custom"
32
  msgstr ""
33
 
34
- #: codepress-admin-columns.php:455, classes/Settings/Column/CustomFieldType.php:76, classes/Settings/Column/PostType.php:20
35
- msgid "Post Type"
36
  msgstr ""
37
 
38
- #: classes/Admin.php:122
39
- msgid "Admin Columns Settings"
40
  msgstr ""
41
 
42
- #: classes/Admin.php:122, classes/Notice/Review.php:61, classes/Plugin/Updater.php:99, classes/Plugin/Updater.php:110, classes/Admin/Page/Columns.php:18
43
- msgid "Admin Columns"
44
  msgstr ""
45
 
46
- #: classes/ListScreen.php:632
47
  msgid "No columns settings available."
48
  msgstr ""
49
 
50
- #: classes/TableScreen.php:36
51
- msgid "Invalid item ID."
52
  msgstr ""
53
 
54
- #: classes/TableScreen.php:42
55
- msgid "Invalid list screen."
56
  msgstr ""
57
 
58
- #: classes/TableScreen.php:50
59
- msgid "Invalid column."
60
  msgstr ""
61
 
62
- #: classes/TableScreen.php:54
63
- msgid "Invalid method."
64
  msgstr ""
65
 
66
- #: classes/TableScreen.php:120, classes/TableScreen.php:122
67
- msgid "Download"
68
  msgstr ""
69
 
70
- #: classes/TableScreen.php:214, classes/Admin/Page/Settings.php:177
71
- msgid "Edit columns"
72
  msgstr ""
73
 
74
- #: classes/Admin/Addon.php:270
75
- msgid "Display and edit %s fields in the posts overview in seconds!"
76
  msgstr ""
77
 
78
- #: classes/Admin/Promo.php:130, classes/Admin/Page/Columns.php:577
79
- msgid "Get %s Off!"
80
  msgstr ""
81
 
82
- #: classes/Admin/Promo.php:133
83
- msgid "Discount is valid until %s"
84
  msgstr ""
85
 
86
- #: classes/Column/Actions.php:15, classes/Column/Link/Actions.php:10
87
- msgid "Actions"
88
  msgstr ""
89
 
90
- #: classes/Column/CustomField.php:16, classes/Admin/Help/CustomField.php:6
91
- msgid "Custom Field"
92
  msgstr ""
93
 
94
- #: classes/Column/Menu.php:13
95
- msgid "Menu"
96
  msgstr ""
97
 
98
- #: classes/Column/Placeholder.php:31
99
- msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
100
  msgstr ""
101
 
102
- #: classes/Column/Placeholder.php:35
103
- msgid "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>."
104
  msgstr ""
105
 
106
- #: classes/Column/Placeholder.php:39
107
- msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
108
  msgstr ""
109
 
110
- #: classes/Column/Placeholder.php:41
111
- msgid "Find out more"
112
  msgstr ""
113
 
114
- #: classes/Column/Taxonomy.php:13, classes/Settings/Column/Taxonomy.php:26
115
- msgid "Taxonomy"
116
  msgstr ""
117
 
118
- #: classes/Helper/Html.php:394
119
- msgid "Show %s more"
120
  msgstr ""
121
 
122
- #: classes/Helper/Html.php:398
123
- msgid "Hide"
124
  msgstr ""
125
 
126
- #: classes/Helper/String.php:288
127
- msgid " or "
128
  msgstr ""
129
 
130
- #: classes/Notice/Review.php:64, classes/Admin/Page/Addons.php:65
131
- msgid "Admin Columns Pro"
132
  msgstr ""
133
 
134
- #: classes/Notice/Review.php:73
135
- 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."
136
  msgstr ""
137
 
138
- #: classes/Notice/Review.php:77
139
- msgid "click here"
140
  msgstr ""
141
 
142
- #: classes/Notice/Review.php:81
143
- msgid "Leave a review!"
144
  msgstr ""
145
 
146
- #: classes/Notice/Review.php:82
147
- msgid "Permanently hide notice"
148
  msgstr ""
149
 
150
- #: classes/Notice/Review.php:89
151
- 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."
152
  msgstr ""
153
 
154
- #: classes/Notice/Review.php:91
155
- msgid "documentation page"
156
  msgstr ""
157
 
158
- #: classes/Notice/Review.php:95
159
- msgid "As an Admin Columns Pro user, you can also use your AdminColumns.com account to access product support through %s!"
160
  msgstr ""
161
 
162
- #: classes/Notice/Review.php:96
163
- msgid "our forums"
164
  msgstr ""
165
 
166
- #: classes/Notice/Review.php:100
167
- msgid "You can also find help on the %s, and %s."
168
  msgstr ""
169
 
170
- #: classes/Notice/Review.php:101
171
- msgid "Admin Columns forums on WordPress.org"
172
  msgstr ""
173
 
174
- #: classes/Notice/Review.php:102
175
- msgid "find answers to some frequently asked questions"
176
  msgstr ""
177
 
178
- #: classes/Plugin/Updater.php:100
179
- msgid "Your database is up to date. You are awesome."
180
  msgstr ""
181
 
182
- #: classes/Plugin/Updater.php:111
183
- msgid "We need to update your database to the latest version."
184
  msgstr ""
185
 
186
- #: classes/Plugin/Updater.php:113
187
- msgid "Run the updater"
 
 
 
 
 
 
 
 
 
 
 
 
188
  msgstr ""
189
 
190
- #: templates/settings/section.php:16
191
  msgid "View more"
192
  msgstr ""
193
 
194
- #: classes/Admin/Addon/ACF.php:9
195
  msgid "Advanced Custom Fields"
196
  msgstr ""
197
 
198
- #: classes/Admin/Addon/BuddyPress.php:13
199
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
200
  msgstr ""
201
 
202
- #: classes/Admin/Addon/BuddyPress.php:9
203
  msgid "BuddyPress"
204
  msgstr ""
205
 
206
- #: classes/Admin/Addon/EventsCalendar.php:9
 
 
 
 
207
  msgid "The Events Calendar"
208
  msgstr ""
209
 
210
- #: classes/Admin/Addon/NinjaForms.php:9
 
 
 
 
211
  msgid "Ninja Forms"
212
  msgstr ""
213
 
214
- #: classes/Admin/Addon/Pods.php:9
215
  msgid "Pods"
216
  msgstr ""
217
 
218
- #: classes/Admin/Addon/Types.php:9
219
  msgid "Toolset Types"
220
  msgstr ""
221
 
222
- #: classes/Admin/Addon/WooCommerce.php:10
223
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
224
  msgstr ""
225
 
226
- #: classes/Admin/Addon/WooCommerce.php:9
227
  msgid "WooCommerce"
228
  msgstr ""
229
 
230
- #: classes/Admin/Help/Basics.php:6
231
  msgid "Basics"
232
  msgstr ""
233
 
234
- #: classes/Admin/Help/Basics.php:13
235
  msgid "Change order"
236
  msgstr ""
237
 
238
- #: classes/Admin/Help/Basics.php:15
239
  msgid "By dragging the columns you can change the order which they will appear in."
240
  msgstr ""
241
 
242
- #: classes/Admin/Help/Basics.php:18
243
  msgid "Change label"
244
  msgstr ""
245
 
246
- #: classes/Admin/Help/Basics.php:20
247
  msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
248
  msgstr ""
249
 
250
- #: classes/Admin/Help/Basics.php:23
251
  msgid "Change column width"
252
  msgstr ""
253
 
254
- #: classes/Admin/Help/Basics.php:25
255
  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."
256
  msgstr ""
257
 
258
- #: classes/Admin/Help/CustomField.php:14
259
- msgid "The custom field column uses the custom fields from posts and users. There are 10 types which you can set."
260
  msgstr ""
261
 
262
- #: classes/Admin/Help/CustomField.php:19
263
- msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
264
  msgstr ""
265
 
266
- #: classes/Admin/Help/CustomField.php:22
267
- msgid "Checkmark"
268
  msgstr ""
269
 
270
  #: classes/Admin/Help/CustomField.php:23
271
- msgid "Value: should be a 1 (one) or 0 (zero)."
272
  msgstr ""
273
 
274
- #: classes/Admin/Help/CustomField.php:26, classes/Settings/Column/CustomFieldType.php:96
275
  msgid "Color"
276
  msgstr ""
277
 
278
  #: classes/Admin/Help/CustomField.php:27
279
- msgid "Value: hex value color, such as #808080."
280
  msgstr ""
281
 
282
  #: classes/Admin/Help/CustomField.php:30
@@ -287,7 +315,7 @@ msgstr ""
287
  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."
288
  msgstr ""
289
 
290
- #: classes/Admin/Help/CustomField.php:34, classes/Settings/Column/CustomFieldType.php:97
291
  msgid "Date"
292
  msgstr ""
293
 
@@ -295,7 +323,7 @@ msgstr ""
295
  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."
296
  msgstr ""
297
 
298
- #: classes/Admin/Help/CustomField.php:38, classes/Column/Post/Excerpt.php:10
299
  msgid "Excerpt"
300
  msgstr ""
301
 
@@ -303,326 +331,338 @@ msgstr ""
303
  msgid "Value: This will show the first 20 words of the Post content."
304
  msgstr ""
305
 
306
- #: classes/Admin/Help/CustomField.php:42, classes/Column/Link/Image.php:10, classes/Settings/Column/CustomFieldType.php:99
307
- msgid "Image"
308
  msgstr ""
309
 
310
  #: classes/Admin/Help/CustomField.php:43
311
- msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
312
  msgstr ""
313
 
314
- #: classes/Admin/Help/CustomField.php:46
315
- msgid "Media Library"
316
  msgstr ""
317
 
318
  #: classes/Admin/Help/CustomField.php:47
319
- msgid "Value: should contain Attachment IDs ( seperated by a ',' comma )."
320
  msgstr ""
321
 
322
- #: classes/Admin/Help/CustomField.php:50, classes/Settings/Column/CustomFieldType.php:114
323
- msgid "Multiple Values"
324
  msgstr ""
325
 
326
  #: classes/Admin/Help/CustomField.php:51
327
- msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
328
  msgstr ""
329
 
330
- #: classes/Admin/Help/CustomField.php:54
331
- msgid "Numeric"
332
  msgstr ""
333
 
334
  #: classes/Admin/Help/CustomField.php:55
335
- 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."
336
  msgstr ""
337
 
338
- #: classes/Admin/Help/CustomField.php:58
339
- msgid "Post Titles"
340
  msgstr ""
341
 
342
  #: classes/Admin/Help/CustomField.php:59
343
- msgid "Value: can be one or more Post ID's (seperated by ',')."
344
  msgstr ""
345
 
346
- #: classes/Admin/Help/CustomField.php:62
347
- msgid "Usernames"
348
  msgstr ""
349
 
350
  #: classes/Admin/Help/CustomField.php:63
351
- msgid "Value: can be one or more User ID's (seperated by ',')."
352
  msgstr ""
353
 
354
- #: classes/Admin/Help/Introduction.php:6
355
- msgid "Overview"
356
  msgstr ""
357
 
358
- #: classes/Admin/Help/Introduction.php:14
359
- 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."
360
  msgstr ""
361
 
362
- #: classes/Admin/Page/Addons.php:8
363
- msgid "Add-ons"
 
 
 
 
364
  msgstr ""
365
 
366
- #: classes/Admin/Page/Addons.php:47
367
- msgid "%s plugin needs to be installed for the add-on to work."
 
 
 
 
368
  msgstr ""
369
 
370
- #: classes/Admin/Page/Addons.php:49
371
- msgid "%s plugin is installed, but not active."
 
 
 
 
372
  msgstr ""
373
 
374
- #: classes/Admin/Page/Addons.php:52
375
- msgid "Click %s to activate the plugin."
376
  msgstr ""
377
 
378
- #: classes/Admin/Page/Addons.php:65
379
  msgid "%s add-on requires %s."
380
  msgid_plural "%s add-ons requires %s."
381
  msgstr[0] ""
382
  msgstr[1] ""
383
 
384
- #: classes/Admin/Page/Addons.php:97
385
- msgid "%s plugin successfully activated."
386
  msgstr ""
387
 
388
- #: classes/Admin/Page/Addons.php:98
389
- msgid "%s plugin successfully deactivated."
390
  msgstr ""
391
 
392
- #: classes/Admin/Page/Addons.php:103
393
- msgid "%s successfully activated."
394
  msgstr ""
395
 
396
- #: classes/Admin/Page/Addons.php:104
397
  msgid "%s successfully deactivated."
398
  msgstr ""
399
 
400
- #: classes/Admin/Page/Addons.php:113
401
- msgid "%s could not be activated."
402
  msgstr ""
403
 
404
- #: classes/Admin/Page/Addons.php:113
405
- msgid "Please visit the %s page."
406
  msgstr ""
407
 
408
- #: classes/Admin/Page/Addons.php:176
409
- msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
410
  msgstr ""
411
 
412
- #: classes/Admin/Page/Addons.php:176
413
- msgid "the addons page"
414
  msgstr ""
415
 
416
- #: classes/Admin/Page/Addons.php:214
417
  msgid "Addon does not exist."
418
  msgstr ""
419
 
420
- #: classes/Admin/Page/Addons.php:220
421
  msgid "You need Admin Columns Pro."
422
  msgstr ""
423
 
424
- #: classes/Admin/Page/Addons.php:291
425
  msgid "Installed"
426
  msgstr ""
427
 
428
- #: classes/Admin/Page/Addons.php:292
429
  msgid "Recommended"
430
  msgstr ""
431
 
432
- #: classes/Admin/Page/Addons.php:293
433
  msgid "Available"
434
  msgstr ""
435
 
436
- #: classes/Admin/Page/Addons.php:405
437
  msgid "Active"
438
  msgstr ""
439
 
440
- #: classes/Admin/Page/Addons.php:408
441
  msgid "Deactivate"
442
  msgstr ""
443
 
444
- #: classes/Admin/Page/Addons.php:412
445
  msgid "Activate"
446
  msgstr ""
447
 
448
- #: classes/Admin/Page/Addons.php:418
449
  msgid "Download & Install"
450
  msgstr ""
451
 
452
- #: classes/Admin/Page/Addons.php:420
453
  msgid "Get this add-on"
454
  msgstr ""
455
 
456
- #: classes/Admin/Page/Columns.php:68, classes/Admin/Page/Columns.php:247
457
  msgid "%s column is already present and can not be duplicated."
458
  msgstr ""
459
 
460
- #: classes/Admin/Page/Columns.php:69
461
  msgid "Invalid response."
462
  msgstr ""
463
 
464
- #: classes/Admin/Page/Columns.php:146
465
  msgid "Settings for %s restored successfully."
466
  msgstr ""
467
 
468
- #: classes/Admin/Page/Columns.php:220
469
  msgid "Please visit the %s screen once to load all available columns"
470
  msgstr ""
471
 
472
- #: classes/Admin/Page/Columns.php:300
473
  msgid "You need at least one column"
474
  msgstr ""
475
 
476
- #: classes/Admin/Page/Columns.php:307
477
  msgid "View %s screen"
478
  msgstr ""
479
 
480
- #: classes/Admin/Page/Columns.php:314
481
  msgid "You are trying to store the same settings for %s."
482
  msgstr ""
483
 
484
- #: classes/Admin/Page/Columns.php:327
485
  msgid "Settings for %s updated successfully."
486
  msgstr ""
487
 
488
- #: classes/Admin/Page/Columns.php:430
489
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
490
  msgstr ""
491
 
492
- #: classes/Admin/Page/Columns.php:450
493
  msgid "Select type"
494
  msgstr ""
495
 
496
- #: classes/Admin/Page/Columns.php:462
497
  msgid "View"
498
  msgstr ""
499
 
500
- #: classes/Admin/Page/Columns.php:476
501
  msgid "Store settings"
502
  msgstr ""
503
 
504
- #: classes/Admin/Page/Columns.php:498
505
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
506
  msgstr ""
507
 
508
- #: classes/Admin/Page/Columns.php:499
509
  msgid "Restore columns"
510
  msgstr ""
511
 
512
- #: classes/Admin/Page/Columns.php:518
513
  msgid "Upgrade to"
514
  msgstr ""
515
 
516
- #: classes/Admin/Page/Columns.php:518
517
  msgid "Pro"
518
  msgstr ""
519
 
520
- #: classes/Admin/Page/Columns.php:523
521
  msgid "Take Admin Columns to the next level:"
522
  msgstr ""
523
 
524
- #: classes/Admin/Page/Columns.php:528
525
  msgid "Add sortable columns"
526
  msgstr ""
527
 
528
- #: classes/Admin/Page/Columns.php:529
529
  msgid "Add filterable columns"
530
  msgstr ""
531
 
532
- #: classes/Admin/Page/Columns.php:530
533
  msgid "Edit your column content directly"
534
  msgstr ""
535
 
536
- #: classes/Admin/Page/Columns.php:531
537
  msgid "Create multiple columns sets"
538
  msgstr ""
539
 
540
- #: classes/Admin/Page/Columns.php:532
541
  msgid "Import &amp; Export settings"
542
  msgstr ""
543
 
544
- #: classes/Admin/Page/Columns.php:544
545
  msgid "Extra Columns for:"
546
  msgstr ""
547
 
548
- #: classes/Admin/Page/Columns.php:555
549
  msgid "Prices starting from %s"
550
  msgstr ""
551
 
552
- #: classes/Admin/Page/Columns.php:560
553
  msgid "Learn more about Pro"
554
  msgstr ""
555
 
556
- #: classes/Admin/Page/Columns.php:581
557
  msgid "Submit your email and we'll send you a discount for %s off."
558
  msgstr ""
559
 
560
- #: classes/Admin/Page/Columns.php:588
561
  msgid "Your Email"
562
  msgstr ""
563
 
564
- #: classes/Admin/Page/Columns.php:589
565
  msgid "Your First Name"
566
  msgstr ""
567
 
568
- #: classes/Admin/Page/Columns.php:590
569
  msgid "Send me the discount"
570
  msgstr ""
571
 
572
- #: classes/Admin/Page/Columns.php:601
573
  msgid "Are you happy with Admin Columns?"
574
  msgstr ""
575
 
576
- #: classes/Admin/Page/Columns.php:611
577
  msgid "What's wrong? Need help? Let us know!"
578
  msgstr ""
579
 
580
- #: classes/Admin/Page/Columns.php:614
581
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
582
  msgstr ""
583
 
584
- #: classes/Admin/Page/Columns.php:619
585
  msgid "Docs"
586
  msgstr ""
587
 
588
- #: classes/Admin/Page/Columns.php:624
589
  msgid "Forums"
590
  msgstr ""
591
 
592
- #: classes/Admin/Page/Columns.php:634
593
  msgid "Woohoo! We're glad to hear that!"
594
  msgstr ""
595
 
596
- #: classes/Admin/Page/Columns.php:637
597
  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!"
598
  msgstr ""
599
 
600
- #: classes/Admin/Page/Columns.php:642
601
  msgid "Rate"
602
  msgstr ""
603
 
604
- #: classes/Admin/Page/Columns.php:647
605
  msgid "I'm using Admin Columns for WordPress!"
606
  msgstr ""
607
 
608
- #: classes/Admin/Page/Columns.php:648
609
  msgid "Tweet"
610
  msgstr ""
611
 
612
- #: classes/Admin/Page/Columns.php:654
613
  msgid "Buy Pro"
614
  msgstr ""
615
 
616
- #: classes/Admin/Page/Columns.php:666
617
  msgid "Support"
618
  msgstr ""
619
 
620
- #: classes/Admin/Page/Columns.php:671
621
  msgid "Check the <strong>Help</strong> section in the top-right screen."
622
  msgstr ""
623
 
624
- #: classes/Admin/Page/Columns.php:675
625
- msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
626
  msgstr ""
627
 
628
  #: classes/Admin/Page/Columns.php:726
@@ -653,984 +693,934 @@ msgstr ""
653
  msgid "Remove"
654
  msgstr ""
655
 
656
- #: classes/Admin/Page/Columns.php:914
657
  msgid "Do you like Admin Columns?"
658
  msgstr ""
659
 
660
- #: classes/Admin/Page/Columns.php:921
661
  msgid "Upgrade to PRO, and take Admin Columns to the next level:"
662
  msgstr ""
663
 
664
- #: classes/Admin/Page/Columns.php:924
665
  msgid "Sort & Filter on all your content"
666
  msgstr ""
667
 
668
- #: classes/Admin/Page/Columns.php:925
669
  msgid "Directly edit your content from the overview"
670
  msgstr ""
671
 
672
- #: classes/Admin/Page/Columns.php:926
673
  msgid "Export all column data to CSV"
674
  msgstr ""
675
 
676
- #: classes/Admin/Page/Columns.php:927
677
  msgid "Create multiple column groups per overview"
678
  msgstr ""
679
 
680
- #: classes/Admin/Page/Columns.php:928
681
  msgid "Get add-ons for ACF, WooCommerce and many more"
682
  msgstr ""
683
 
684
- #: classes/Admin/Page/Columns.php:932
685
  msgid "Upgrade"
686
  msgstr ""
687
 
688
- #: classes/Admin/Page/Columns.php:933
689
  msgid "Only %s for 1 site"
690
  msgstr ""
691
 
692
- #: classes/Admin/Page/Help.php:35, classes/Admin/Page/Help.php:322
693
  msgid "Help"
694
  msgstr ""
695
 
696
- #: classes/Admin/Page/Help.php:172
697
  msgid "Deprecated Filters"
698
  msgstr ""
699
 
700
- #: classes/Admin/Page/Help.php:173
701
  msgid "Deprecated Actions"
702
  msgstr ""
703
 
704
- #: classes/Admin/Page/Help.php:186
705
  msgid "The filter %s used on this website is deprecated since %s."
706
  msgstr ""
707
 
708
- #: classes/Admin/Page/Help.php:204
709
  msgid "The action %s used on this website is deprecated since %s."
710
  msgstr ""
711
 
712
- #: classes/Admin/Page/Help.php:259
713
  msgid "View documentation"
714
  msgstr ""
715
 
716
- #: classes/Admin/Page/Help.php:314
717
  msgid "The callback used is %s."
718
- msgid_plural "The callbacks used are %s"
719
  msgstr[0] ""
720
  msgstr[1] ""
721
 
722
- #: classes/Admin/Page/Help.php:324
723
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
724
  msgstr ""
725
 
726
- #: classes/Admin/Page/Help.php:326
727
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
728
  msgstr ""
729
 
730
- #: classes/Admin/Page/Help.php:326
731
  msgid "our documentation"
732
  msgstr ""
733
 
734
- #: classes/Admin/Page/Settings.php:107
735
- msgid "Default settings succesfully restored."
736
  msgstr ""
737
 
738
- #: classes/Admin/Page/Settings.php:133
739
  msgid "Instructions"
740
  msgstr ""
741
 
742
- #: classes/Admin/Page/Settings.php:139
743
  msgid "Notice"
744
  msgstr ""
745
 
746
- #: classes/Admin/Page/Settings.php:152
747
  msgid "off"
748
  msgstr ""
749
 
750
- #: classes/Admin/Page/Settings.php:155
751
  msgid "on"
752
  msgstr ""
753
 
754
- #: classes/Admin/Page/Settings.php:158
755
  msgid "Default is %s."
756
  msgstr ""
757
 
758
- #: classes/Admin/Page/Settings.php:166
759
  msgid "General Settings"
760
  msgstr ""
761
 
762
- #: classes/Admin/Page/Settings.php:167
763
  msgid "Customize your Admin Columns settings."
764
  msgstr ""
765
 
766
- #: classes/Admin/Page/Settings.php:177
767
  msgid "Show %s button on table screen."
768
  msgstr ""
769
 
770
- #: classes/Admin/Page/Settings.php:226
771
  msgid "Restore Settings"
772
  msgstr ""
773
 
774
- #: classes/Admin/Page/Settings.php:227
775
  msgid "This will delete all column settings and restore the default settings."
776
  msgstr ""
777
 
778
- #: classes/Admin/Page/Settings.php:235
779
  msgid "Restore default settings"
780
  msgstr ""
781
 
782
- #: classes/Admin/Page/Settings.php:235
783
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
784
  msgstr ""
785
 
786
- #: classes/Column/Comment/Agent.php:10
787
  msgid "Agent"
788
  msgstr ""
789
 
790
- #: classes/Column/Comment/Approved.php:10, classes/Settings/Column/CommentCount.php:42
791
  msgid "Approved"
792
  msgstr ""
793
 
794
- #: classes/Column/Comment/AuthorAvatar.php:10
795
  msgid "Avatar"
796
  msgstr ""
797
 
798
- #: classes/Column/Comment/AuthorEmail.php:10
799
  msgid "Author Email"
800
  msgstr ""
801
 
802
- #: classes/Column/Comment/AuthorIP.php:7
803
  msgid "Author IP"
804
  msgstr ""
805
 
806
- #: classes/Column/Comment/AuthorName.php:10
807
  msgid "Author Name"
808
  msgstr ""
809
 
810
- #: classes/Column/Comment/AuthorUrl.php:10
811
- msgid "Author Url"
812
  msgstr ""
813
 
814
- #: classes/Column/Comment/DateGmt.php:10
815
  msgid "Date GMT"
816
  msgstr ""
817
 
818
- #: classes/Column/Comment/DateGmt.php:16
819
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
820
  msgstr ""
821
 
822
- #: classes/Column/Comment/Excerpt.php:10, classes/Column/Post/Content.php:10
823
  msgid "Content"
824
  msgstr ""
825
 
826
- #: classes/Column/Comment/ID.php:10, classes/Column/Link/ID.php:10, classes/Column/Media/ID.php:10, classes/Column/Post/ID.php:10
827
  msgid "ID"
828
  msgstr ""
829
 
830
- #: classes/Column/Comment/Post.php:10, classes/Settings/Column/CustomFieldType.php:109
831
- msgid "Post"
832
- msgstr ""
833
-
834
- #: classes/Column/Comment/ReplyTo.php:10
835
  msgid "In Reply To"
836
  msgstr ""
837
 
838
- #: classes/Column/Comment/Status.php:10, classes/Column/Post/Status.php:7
839
  msgid "Status"
840
  msgstr ""
841
 
842
- #: classes/Column/Comment/Type.php:10, classes/Settings/Column/CustomFieldType.php:52, classes/Settings/Column/Type.php:25, classes/Settings/Column/Type.php:34
843
  msgid "Type"
844
  msgstr ""
845
 
846
- #: classes/Column/Comment/User.php:10, classes/Settings/Column/CustomFieldType.php:80, classes/Settings/Column/CustomFieldType.php:110
847
- msgid "User"
848
- msgstr ""
849
-
850
- #: classes/Column/Comment/WordCount.php:10, classes/Column/Post/WordCount.php:10
851
  msgid "Word Count"
852
  msgstr ""
853
 
854
- #: classes/Column/Link/Actions.php:36
855
- msgid ""
856
- "You are about to delete this link '%s'\n"
857
- " 'Cancel' to stop, 'OK' to delete."
858
- msgstr ""
859
-
860
- #: classes/Column/Link/Description.php:10, classes/Column/Media/Description.php:12, classes/Column/User/Description.php:10
861
- msgid "Description"
862
- msgstr ""
863
-
864
- #: classes/Column/Link/Length.php:10
865
- msgid "Length"
866
- msgstr ""
867
-
868
- #: classes/Column/Link/Notes.php:10
869
- msgid "Notes"
870
- msgstr ""
871
-
872
- #: classes/Column/Link/Owner.php:10
873
- msgid "Owner"
874
- msgstr ""
875
-
876
- #: classes/Column/Link/Rss.php:10
877
- msgid "Rss"
878
- msgstr ""
879
-
880
- #: classes/Column/Link/Target.php:10
881
- msgid "Target"
882
- msgstr ""
883
-
884
- #: classes/Column/Media/AlternateText.php:10
885
  msgid "Alternative Text"
886
  msgstr ""
887
 
888
- #: classes/Column/Media/AvailableSizes.php:12
889
  msgid "Available Sizes"
890
  msgstr ""
891
 
892
- #: classes/Column/Media/AvailableSizes.php:31
893
  msgid "original"
894
  msgstr ""
895
 
896
- #: classes/Column/Media/AvailableSizes.php:47
897
  msgid "Missing image file for size %s."
898
  msgstr ""
899
 
900
- #: classes/Column/Media/Caption.php:10, classes/Settings/Column/ExifData.php:71
901
  msgid "Caption"
902
  msgstr ""
903
 
904
- #: classes/Column/Media/Dimensions.php:12
 
 
 
 
905
  msgid "Dimensions"
906
  msgstr ""
907
 
908
- #: classes/Column/Media/Dimensions.php:24
909
  msgid "Width : %s px"
910
  msgstr ""
911
 
912
- #: classes/Column/Media/Dimensions.php:24
913
  msgid "Height : %s px"
914
  msgstr ""
915
 
916
- #: classes/Column/Media/ExifData.php:12
917
  msgid "EXIF Data"
918
  msgstr ""
919
 
920
- #: classes/Column/Media/FileName.php:10
921
  msgid "Filename"
922
  msgstr ""
923
 
924
- #: classes/Column/Media/FileSize.php:10
925
  msgid "File Size"
926
  msgstr ""
927
 
928
- #: classes/Column/Media/FullPath.php:10, classes/Column/Post/Path.php:12
929
  msgid "Path"
930
  msgstr ""
931
 
932
- #: classes/Column/Media/Height.php:12, classes/Settings/Column/Image.php:42
933
  msgid "Height"
934
  msgstr ""
935
 
936
- #: classes/Column/Media/MimeType.php:10
937
  msgid "Mime Type"
938
  msgstr ""
939
 
940
- #: classes/Column/Media/Width.php:12, classes/Settings/Column/Image.php:36, classes/Settings/Column/Width.php:48
941
  msgid "Width"
942
  msgstr ""
943
 
944
- #: classes/Column/Post/Attachment.php:10
945
  msgid "Attachments"
946
  msgstr ""
947
 
948
- #: classes/Column/Post/AuthorName.php:13
949
  msgid "Author"
950
  msgstr ""
951
 
952
- #: classes/Column/Post/BeforeMoreTag.php:10
953
  msgid "More Tag"
954
  msgstr ""
955
 
956
- #: classes/Column/Post/CommentCount.php:13, classes/Column/User/CommentCount.php:10
957
  msgid "Comment Count"
958
  msgstr ""
959
 
960
- #: classes/Column/Post/CommentStatus.php:13
961
  msgid "Allow Comments"
962
  msgstr ""
963
 
964
- #: classes/Column/Post/DatePublished.php:10
965
  msgid "Date Published"
966
  msgstr ""
967
 
968
- #: classes/Column/Post/Depth.php:12
969
  msgid "Depth"
970
  msgstr ""
971
 
972
- #: classes/Column/Post/EstimatedReadingTime.php:10
973
  msgid "Estimated Reading Time"
974
  msgstr ""
975
 
976
- #: classes/Column/Post/FeaturedImage.php:10
977
  msgid "Featured Image"
978
  msgstr ""
979
 
980
- #: classes/Column/Post/Formats.php:10
981
  msgid "Post Format"
982
  msgstr ""
983
 
984
- #: classes/Column/Post/LastModifiedAuthor.php:13
985
  msgid "Last Modified Author"
986
  msgstr ""
987
 
988
- #: classes/Column/Post/Modified.php:10
989
  msgid "Last Modified"
990
  msgstr ""
991
 
992
- #: classes/Column/Post/Order.php:10
993
  msgid "Order"
994
  msgstr ""
995
 
996
- #: classes/Column/Post/PageTemplate.php:10
997
  msgid "Page Template"
998
  msgstr ""
999
 
1000
- #: classes/Column/Post/Parent.php:10
1001
- msgid "Parent"
1002
- msgstr ""
1003
-
1004
- #: classes/Column/Post/Permalink.php:12
1005
  msgid "Permalink"
1006
  msgstr ""
1007
 
1008
- #: classes/Column/Post/PingStatus.php:10
1009
  msgid "Ping Status"
1010
  msgstr ""
1011
 
1012
- #: classes/Column/Post/Shortcodes.php:12
 
 
 
 
1013
  msgid "Shortcodes"
1014
  msgstr ""
1015
 
1016
- #: classes/Column/Post/Shortlink.php:10
1017
  msgid "Shortlink"
1018
  msgstr ""
1019
 
1020
- #: classes/Column/Post/Slug.php:10
1021
  msgid "Slug"
1022
  msgstr ""
1023
 
1024
- #: classes/Column/Post/Sticky.php:12
1025
  msgid "Sticky"
1026
  msgstr ""
1027
 
1028
- #: classes/Column/Post/TitleRaw.php:10
1029
  msgid "Title Only"
1030
  msgstr ""
1031
 
1032
- #: classes/Column/User/DisplayName.php:10, classes/Settings/Column/User.php:59
1033
  msgid "Display Name"
1034
  msgstr ""
1035
 
1036
- #: classes/Column/User/FirstName.php:10, classes/Settings/Column/User.php:60
1037
  msgid "First Name"
1038
  msgstr ""
1039
 
1040
- #: classes/Column/User/ID.php:10, classes/Settings/Column/User.php:65
1041
  msgid "User ID"
1042
  msgstr ""
1043
 
1044
- #: classes/Column/User/LastName.php:10, classes/Settings/Column/User.php:61
1045
  msgid "Last Name"
1046
  msgstr ""
1047
 
1048
- #: classes/Column/User/Nickname.php:10, classes/Settings/Column/User.php:62
1049
  msgid "Nickname"
1050
  msgstr ""
1051
 
1052
- #: classes/Column/User/PostCount.php:10
1053
  msgid "Post Count"
1054
  msgstr ""
1055
 
1056
- #: classes/Column/User/Registered.php:10
1057
  msgid "Registered"
1058
  msgstr ""
1059
 
1060
- #: classes/Column/User/RichEditing.php:7
1061
  msgid "Visual Editor"
1062
  msgstr ""
1063
 
1064
- #: classes/Column/User/ShowToolbar.php:10
1065
  msgid "Show Toolbar"
1066
  msgstr ""
1067
 
1068
- #: classes/Column/User/Url.php:10
1069
  msgid "Website"
1070
  msgstr ""
1071
 
1072
- #: classes/Settings/Column/ActionIcons.php:22
1073
  msgid "Use icons?"
1074
  msgstr ""
1075
 
1076
- #: classes/Settings/Column/ActionIcons.php:23
1077
  msgid "Use icons instead of text for displaying the actions."
1078
  msgstr ""
1079
 
1080
- #: classes/Settings/Column/AttachmentDisplay.php:32
1081
  msgid "Thumbnails"
1082
  msgstr ""
1083
 
1084
- #: classes/Settings/Column/AttachmentDisplay.php:33
1085
  msgid "Count"
1086
  msgstr ""
1087
 
1088
- #: classes/Settings/Column/AttachmentDisplay.php:37, classes/Settings/Column/Comment.php:97, classes/Settings/Column/Post.php:70, classes/Settings/Column/Term.php:29, classes/Settings/Column/User.php:37
1089
  msgid "Display"
1090
  msgstr ""
1091
 
1092
- #: classes/Settings/Column/BeforeAfter.php:54
1093
  msgid "Before"
1094
  msgstr ""
1095
 
1096
- #: classes/Settings/Column/BeforeAfter.php:55
1097
  msgid "This text will appear before the column value."
1098
  msgstr ""
1099
 
1100
- #: classes/Settings/Column/BeforeAfter.php:63
1101
  msgid "After"
1102
  msgstr ""
1103
 
1104
- #: classes/Settings/Column/BeforeAfter.php:64
1105
  msgid "This text will appear after the column value."
1106
  msgstr ""
1107
 
1108
- #: classes/Settings/Column/BeforeAfter.php:70
1109
  msgid "Display Options"
1110
  msgstr ""
1111
 
1112
- #: classes/Settings/Column/CharacterLimit.php:23, classes/Settings/Column/StringLimit.php:31
1113
  msgid "Character Limit"
1114
  msgstr ""
1115
 
1116
- #: classes/Settings/Column/CharacterLimit.php:24
1117
  msgid "Maximum number of characters"
1118
  msgstr ""
1119
 
1120
- #: classes/Settings/Column/CharacterLimit.php:24, classes/Settings/Column/NumberOfItems.php:26, classes/Settings/Column/WordLimit.php:30
1121
  msgid "Leave empty for no limit"
1122
  msgstr ""
1123
 
1124
- #: classes/Settings/Column/CommentCount.php:29
1125
  msgid "Comment status"
1126
  msgstr ""
1127
 
1128
- #: classes/Settings/Column/CommentCount.php:30
1129
  msgid "Select which comment status you like to display."
1130
  msgstr ""
1131
 
1132
- #: classes/Settings/Column/CommentCount.php:43
1133
  msgid "Pending"
1134
  msgstr ""
1135
 
1136
- #: classes/Settings/Column/CommentCount.php:44
1137
  msgid "Spam"
1138
  msgstr ""
1139
 
1140
- #: classes/Settings/Column/CommentCount.php:45
1141
  msgid "Trash"
1142
  msgstr ""
1143
 
1144
- #: classes/Settings/Column/CommentCount.php:51
1145
  msgid "Total"
1146
  msgstr ""
1147
 
1148
- #: classes/Settings/Column/CustomField.php:13
1149
  msgid "Custom field key"
1150
  msgstr ""
1151
 
1152
- #: classes/Settings/Column/CustomField.php:17
1153
  msgid "No custom fields available."
1154
  msgstr ""
1155
 
1156
- #: classes/Settings/Column/CustomField.php:17
1157
  msgid "Please create a %s item first."
1158
  msgstr ""
1159
 
1160
- #: classes/Settings/Column/CustomFieldType.php:49
1161
  msgid "This will determine how the value will be displayed."
1162
  msgstr ""
1163
 
1164
- #: classes/Settings/Column/CustomFieldType.php:56
1165
  msgid "Field Type"
1166
  msgstr ""
1167
 
1168
- #: classes/Settings/Column/CustomFieldType.php:65
1169
- msgid "Uses the id from a %s to display information about it."
1170
- msgstr ""
1171
-
1172
- #: classes/Settings/Column/CustomFieldType.php:66
1173
- msgid "Multiple ids should be separated by a comma."
1174
  msgstr ""
1175
 
1176
- #: classes/Settings/Column/CustomFieldType.php:100
1177
- msgid "Url"
1178
  msgstr ""
1179
 
1180
- #: classes/Settings/Column/CustomFieldType.php:101
1181
- msgid "Number"
1182
- msgstr ""
1183
-
1184
- #: classes/Settings/Column/CustomFieldType.php:104
1185
- msgid "Has Content"
1186
- msgstr ""
1187
-
1188
- #: classes/Settings/Column/CustomFieldType.php:105
1189
- msgid "True / False"
1190
- msgstr ""
1191
-
1192
- #: classes/Settings/Column/CustomFieldType.php:108
1193
- msgid "Media"
1194
- msgstr ""
1195
-
1196
- #: classes/Settings/Column/CustomFieldType.php:113
1197
  msgid "Number of Fields"
1198
  msgstr ""
1199
 
1200
- #: classes/Settings/Column/CustomFieldType.php:145
1201
  msgid "Basic"
1202
  msgstr ""
1203
 
1204
- #: classes/Settings/Column/CustomFieldType.php:146
1205
  msgid "Relational"
1206
  msgstr ""
1207
 
1208
- #: classes/Settings/Column/CustomFieldType.php:147
1209
  msgid "Choice"
1210
  msgstr ""
1211
 
1212
- #: classes/Settings/Column/CustomFieldType.php:148
1213
  msgid "Multiple"
1214
  msgstr ""
1215
 
1216
- #: classes/Settings/Column/Date.php:6
 
 
 
 
1217
  msgid "The difference is returned in a human readable format."
1218
  msgstr ""
1219
 
1220
- #: classes/Settings/Column/Date.php:7
1221
  msgid "For example: %s."
1222
  msgstr ""
1223
 
1224
- #: classes/Settings/Column/Date.php:9
1225
  msgid "or"
1226
  msgstr ""
1227
 
1228
- #: classes/Settings/Column/Date.php:13
1229
  msgid "Time Difference"
1230
  msgstr ""
1231
 
1232
- #: classes/Settings/Column/Date.php:19
1233
  msgid "WordPress Date Format"
1234
  msgstr ""
1235
 
1236
- #: classes/Settings/Column/Date.php:74
1237
  msgid "in %s"
1238
  msgstr ""
1239
 
1240
- #: classes/Settings/Column/DateTimeFormat.php:35
1241
  msgid "The %s can be changed in %s."
1242
  msgstr ""
1243
 
1244
- #: classes/Settings/Column/DateTimeFormat.php:50
1245
  msgid "Date Format"
1246
  msgstr ""
1247
 
1248
- #: classes/Settings/Column/DateTimeFormat.php:51
1249
  msgid "This will determine how the date will be displayed."
1250
  msgstr ""
1251
 
1252
- #: classes/Settings/Column/DateTimeFormat.php:103
1253
  msgid "Custom:"
1254
  msgstr ""
1255
 
1256
- #: classes/Settings/Column/DateTimeFormat.php:105
1257
  msgid "Learn more about %s."
1258
  msgstr ""
1259
 
1260
- #: classes/Settings/Column/DateTimeFormat.php:105
1261
  msgid "date and time formatting"
1262
  msgstr ""
1263
 
1264
- #: classes/Settings/Column/ExifData.php:68
1265
  msgid "Aperture"
1266
  msgstr ""
1267
 
1268
- #: classes/Settings/Column/ExifData.php:69
1269
  msgid "Credit"
1270
  msgstr ""
1271
 
1272
- #: classes/Settings/Column/ExifData.php:70
1273
  msgid "Camera"
1274
  msgstr ""
1275
 
1276
- #: classes/Settings/Column/ExifData.php:72
1277
  msgid "Timestamp"
1278
  msgstr ""
1279
 
1280
- #: classes/Settings/Column/ExifData.php:73
1281
  msgid "Copyright"
1282
  msgstr ""
1283
 
1284
- #: classes/Settings/Column/ExifData.php:74
1285
  msgid "Focal Length"
1286
  msgstr ""
1287
 
1288
- #: classes/Settings/Column/ExifData.php:75
1289
  msgid "ISO"
1290
  msgstr ""
1291
 
1292
- #: classes/Settings/Column/ExifData.php:76
1293
  msgid "Shutter Speed"
1294
  msgstr ""
1295
 
1296
- #: classes/Settings/Column/ExifData.php:77
1297
  msgid "Title"
1298
  msgstr ""
1299
 
1300
- #: classes/Settings/Column/ExifData.php:78
1301
  msgid "Orientation"
1302
  msgstr ""
1303
 
1304
- #: classes/Settings/Column/ExifData.php:79
1305
  msgid "Keywords"
1306
  msgstr ""
1307
 
1308
- #: classes/Settings/Column/Image.php:37
1309
  msgid "Width in pixels"
1310
  msgstr ""
1311
 
1312
- #: classes/Settings/Column/Image.php:43
1313
  msgid "Height in pixels"
1314
  msgstr ""
1315
 
1316
- #: classes/Settings/Column/Image.php:50
1317
  msgid "Image Size"
1318
  msgstr ""
1319
 
1320
- #: classes/Settings/Column/Image.php:69
1321
  msgid "Thumbnail"
1322
  msgstr ""
1323
 
1324
- #: classes/Settings/Column/Image.php:70
1325
  msgid "Medium"
1326
  msgstr ""
1327
 
1328
- #: classes/Settings/Column/Image.php:71
1329
  msgid "Large"
1330
  msgstr ""
1331
 
1332
- #: classes/Settings/Column/Image.php:85
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
18
+ #: classes/Admin.php:126
19
+ msgid "Admin Columns Settings"
20
+ msgstr ""
21
+
22
+ #: classes/Admin.php:126, classes/Check/Review.php:124, classes/Plugin/Updater.php:106, classes/Plugin/Updater.php:119, classes/Admin/Page/Columns.php:31
23
+ msgid "Admin Columns"
24
+ msgstr ""
25
+
26
+ #: classes/AdminColumns.php:142, classes/Admin/Page/Settings.php:19
27
  msgid "Settings"
28
  msgstr ""
29
 
30
+ #: classes/Dependencies.php:117
31
+ msgid "version %s or later"
32
  msgstr ""
33
 
34
+ #: classes/Dependencies.php:120
35
+ msgid "%s needs to be installed and activated."
36
  msgstr ""
37
 
38
+ #: classes/Dependencies.php:158
39
+ msgid "This plugin requires at least PHP %s to function properly."
40
  msgstr ""
41
 
42
+ #: classes/Dependencies.php:159
43
+ msgid "Your server currently runs PHP %s."
44
  msgstr ""
45
 
46
+ #: classes/Dependencies.php:160
47
+ msgid "Read more about <a href=\"%s\" target=\"_blank\">requirements</a>a> in our documentation."
48
  msgstr ""
49
 
50
+ #: classes/Dependencies.php:193
51
+ msgid "This plugin failed to load:"
52
  msgstr ""
53
 
54
+ #: classes/ListScreen.php:714
55
  msgid "No columns settings available."
56
  msgstr ""
57
 
58
+ #: classes/ListScreenGroups.php:13, classes/Settings/Column/CustomFieldType.php:83, classes/Settings/Column/PostType.php:25
59
+ msgid "Post Type"
60
  msgstr ""
61
 
62
+ #: classes/Admin/Addon.php:274
63
+ msgid "Display and edit %s fields in the posts overview in seconds!"
64
  msgstr ""
65
 
66
+ #: classes/Admin/Promo.php:132, classes/Admin/Page/Columns.php:574
67
+ msgid "Get %s Off!"
68
  msgstr ""
69
 
70
+ #: classes/Admin/Promo.php:135
71
+ msgid "Discount is valid until %s"
72
  msgstr ""
73
 
74
+ #: classes/Check/AddonAvailable.php:82
75
+ msgid "Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!"
76
  msgstr ""
77
 
78
+ #: classes/Check/AddonAvailable.php:82
79
+ msgid "the addons page"
80
  msgstr ""
81
 
82
+ #: classes/Check/Review.php:123, classes/Admin/Page/Addons.php:58
83
+ msgid "Admin Columns Pro"
84
  msgstr ""
85
 
86
+ #: classes/Check/Review.php:132
87
+ 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."
88
  msgstr ""
89
 
90
+ #: classes/Check/Review.php:136
91
+ msgid "click here"
92
  msgstr ""
93
 
94
+ #: classes/Check/Review.php:140
95
+ msgid "Leave a review!"
96
  msgstr ""
97
 
98
+ #: classes/Check/Review.php:141
99
+ msgid "Permanently hide notice"
100
  msgstr ""
101
 
102
+ #: classes/Check/Review.php:150
103
+ 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."
104
  msgstr ""
105
 
106
+ #: classes/Check/Review.php:152
107
+ msgid "documentation page"
108
  msgstr ""
109
 
110
+ #: classes/Check/Review.php:157
111
+ msgid "You can also use your admincolumns.com account to access support through %s!"
112
  msgstr ""
113
 
114
+ #: classes/Check/Review.php:158
115
+ msgid "our forum"
116
  msgstr ""
117
 
118
+ #: classes/Check/Review.php:162
119
+ msgid "You can also find help on the %s, and %s."
120
  msgstr ""
121
 
122
+ #: classes/Check/Review.php:163
123
+ msgid "Admin Columns forum on WordPress.org"
124
  msgstr ""
125
 
126
+ #: classes/Check/Review.php:164
127
+ msgid "find answers to frequently asked questions"
128
  msgstr ""
129
 
130
+ #: classes/Column/Actions.php:20
131
+ msgid "Actions"
132
  msgstr ""
133
 
134
+ #: classes/Column/CustomField.php:21
135
+ msgid "Custom Field"
136
  msgstr ""
137
 
138
+ #: classes/Column/Menu.php:18
139
+ msgid "Menu"
140
  msgstr ""
141
 
142
+ #: classes/Column/Placeholder.php:36
143
+ msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
144
  msgstr ""
145
 
146
+ #: classes/Column/Placeholder.php:40
147
+ msgid "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>."
148
  msgstr ""
149
 
150
+ #: classes/Column/Placeholder.php:44
151
+ msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
152
  msgstr ""
153
 
154
+ #: classes/Column/Placeholder.php:46
155
+ msgid "Find out more"
156
  msgstr ""
157
 
158
+ #: classes/Column/Taxonomy.php:18, classes/Settings/Column/Taxonomy.php:31
159
+ msgid "Taxonomy"
160
  msgstr ""
161
 
162
+ #: classes/Helper/Html.php:396
163
+ msgid "Show %s more"
164
  msgstr ""
165
 
166
+ #: classes/Helper/Html.php:400
167
+ msgid "Hide"
168
  msgstr ""
169
 
170
+ #: classes/Helper/Strings.php:290
171
+ msgid " or "
172
  msgstr ""
173
 
174
+ #: classes/Plugin/Updater.php:107
175
+ msgid "Your database is up to date. You are awesome."
176
  msgstr ""
177
 
178
+ #: classes/Plugin/Updater.php:120
179
+ msgid "We need to update your database to the latest version."
180
  msgstr ""
181
 
182
+ #: classes/Plugin/Updater.php:122
183
+ msgid "Run the updater"
184
  msgstr ""
185
 
186
+ #: classes/Table/Screen.php:45
187
+ msgid "Invalid item ID."
188
  msgstr ""
189
 
190
+ #: classes/Table/Screen.php:51
191
+ msgid "Invalid list screen."
192
  msgstr ""
193
 
194
+ #: classes/Table/Screen.php:57
195
+ msgid "Invalid column."
196
+ msgstr ""
197
+
198
+ #: classes/Table/Screen.php:61
199
+ msgid "Invalid method."
200
+ msgstr ""
201
+
202
+ #: classes/Table/Screen.php:122, classes/Table/Screen.php:124
203
+ msgid "Download"
204
+ msgstr ""
205
+
206
+ #: classes/Table/Screen.php:200, classes/Admin/Page/Settings.php:185
207
+ msgid "Edit columns"
208
  msgstr ""
209
 
210
+ #: templates/settings/section.php:23
211
  msgid "View more"
212
  msgstr ""
213
 
214
+ #: classes/Admin/Addon/ACF.php:13
215
  msgid "Advanced Custom Fields"
216
  msgstr ""
217
 
218
+ #: classes/Admin/Addon/BuddyPress.php:17
219
  msgid "Display any of your Profile Fields for BuddyPress on your users overview."
220
  msgstr ""
221
 
222
+ #: classes/Admin/Addon/BuddyPress.php:13
223
  msgid "BuddyPress"
224
  msgstr ""
225
 
226
+ #: classes/Admin/Addon/EventsCalendar.php:17
227
+ msgid "Manage columns for your event, organizer or venue overviews."
228
+ msgstr ""
229
+
230
+ #: classes/Admin/Addon/EventsCalendar.php:13
231
  msgid "The Events Calendar"
232
  msgstr ""
233
 
234
+ #: classes/Admin/Addon/NinjaForms.php:17
235
+ msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
236
+ msgstr ""
237
+
238
+ #: classes/Admin/Addon/NinjaForms.php:13
239
  msgid "Ninja Forms"
240
  msgstr ""
241
 
242
+ #: classes/Admin/Addon/Pods.php:13
243
  msgid "Pods"
244
  msgstr ""
245
 
246
+ #: classes/Admin/Addon/Types.php:13
247
  msgid "Toolset Types"
248
  msgstr ""
249
 
250
+ #: classes/Admin/Addon/WooCommerce.php:15
251
  msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
252
  msgstr ""
253
 
254
+ #: classes/Admin/Addon/WooCommerce.php:14
255
  msgid "WooCommerce"
256
  msgstr ""
257
 
258
+ #: classes/Admin/Help/Basics.php:10
259
  msgid "Basics"
260
  msgstr ""
261
 
262
+ #: classes/Admin/Help/Basics.php:17
263
  msgid "Change order"
264
  msgstr ""
265
 
266
+ #: classes/Admin/Help/Basics.php:19
267
  msgid "By dragging the columns you can change the order which they will appear in."
268
  msgstr ""
269
 
270
+ #: classes/Admin/Help/Basics.php:22
271
  msgid "Change label"
272
  msgstr ""
273
 
274
+ #: classes/Admin/Help/Basics.php:24
275
  msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
276
  msgstr ""
277
 
278
+ #: classes/Admin/Help/Basics.php:27
279
  msgid "Change column width"
280
  msgstr ""
281
 
282
+ #: classes/Admin/Help/Basics.php:29
283
  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."
284
  msgstr ""
285
 
286
+ #: classes/Admin/Help/CustomField.php:10, classes/Settings/Column/Type.php:74
287
+ msgid "Custom Fields"
288
  msgstr ""
289
 
290
+ #: classes/Admin/Help/CustomField.php:18
291
+ msgid "The custom field column uses the custom fields from posts and users. There are 14 types which you can set."
292
  msgstr ""
293
 
294
+ #: classes/Admin/Help/CustomField.php:22, classes/Settings/Column/CustomFieldType.php:171, classes/Settings/Column/Image.php:72, classes/Settings/Column/Separator.php:25, classes/Settings/Column/Type.php:72
295
+ msgid "Default"
296
  msgstr ""
297
 
298
  #: classes/Admin/Help/CustomField.php:23
299
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by commas."
300
  msgstr ""
301
 
302
+ #: classes/Admin/Help/CustomField.php:26, classes/Settings/Column/CustomFieldType.php:103
303
  msgid "Color"
304
  msgstr ""
305
 
306
  #: classes/Admin/Help/CustomField.php:27
307
+ msgid "Value: Hex value color, such as #808080."
308
  msgstr ""
309
 
310
  #: classes/Admin/Help/CustomField.php:30
315
  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."
316
  msgstr ""
317
 
318
+ #: classes/Admin/Help/CustomField.php:34, classes/Settings/Column/CustomFieldType.php:104
319
  msgid "Date"
320
  msgstr ""
321
 
323
  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."
324
  msgstr ""
325
 
326
+ #: classes/Admin/Help/CustomField.php:38, classes/Column/Post/Excerpt.php:15, classes/Settings/Column/CustomFieldType.php:105
327
  msgid "Excerpt"
328
  msgstr ""
329
 
331
  msgid "Value: This will show the first 20 words of the Post content."
332
  msgstr ""
333
 
334
+ #: classes/Admin/Help/CustomField.php:42, classes/Settings/Column/CustomFieldType.php:111
335
+ msgid "Has Content"
336
  msgstr ""
337
 
338
  #: classes/Admin/Help/CustomField.php:43
339
+ msgid "Value: This will show if the field has content or not."
340
  msgstr ""
341
 
342
+ #: classes/Admin/Help/CustomField.php:46, classes/Settings/Column/CustomFieldType.php:106
343
+ msgid "Image"
344
  msgstr ""
345
 
346
  #: classes/Admin/Help/CustomField.php:47
347
+ msgid "Value: Should contain one or more Image URLs or Attachment IDs, separated by commas."
348
  msgstr ""
349
 
350
+ #: classes/Admin/Help/CustomField.php:50, classes/Settings/Column/CustomFieldType.php:115
351
+ msgid "Media"
352
  msgstr ""
353
 
354
  #: classes/Admin/Help/CustomField.php:51
355
+ msgid "Value: Should contain one or more Attachment IDs, separated by commas."
356
  msgstr ""
357
 
358
+ #: classes/Admin/Help/CustomField.php:54, classes/Settings/Column/CustomFieldType.php:121
359
+ msgid "Multiple Values"
360
  msgstr ""
361
 
362
  #: classes/Admin/Help/CustomField.php:55
363
+ msgid "Value: Should be an array. This will flatten any ( multi dimensional ) array."
364
  msgstr ""
365
 
366
+ #: classes/Admin/Help/CustomField.php:58, classes/Settings/Column/CustomFieldType.php:108
367
+ msgid "Number"
368
  msgstr ""
369
 
370
  #: classes/Admin/Help/CustomField.php:59
371
+ 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."
372
  msgstr ""
373
 
374
+ #: classes/Admin/Help/CustomField.php:62, classes/Column/Comment/Post.php:15, classes/Settings/Column/CustomFieldType.php:116
375
+ msgid "Post"
376
  msgstr ""
377
 
378
  #: classes/Admin/Help/CustomField.php:63
379
+ msgid "Value: Should contain one or more Post IDs, separated by commas."
380
  msgstr ""
381
 
382
+ #: classes/Admin/Help/CustomField.php:66, classes/Settings/Column/CustomFieldType.php:112
383
+ msgid "True / False"
384
  msgstr ""
385
 
386
+ #: classes/Admin/Help/CustomField.php:67
387
+ msgid "Value: Should be a 1 (one) or 0 (zero)."
388
  msgstr ""
389
 
390
+ #: classes/Admin/Help/CustomField.php:70, classes/Settings/Column/CustomFieldType.php:107
391
+ msgid "URL"
392
+ msgstr ""
393
+
394
+ #: classes/Admin/Help/CustomField.php:71
395
+ msgid "Value: Should contain a URL."
396
  msgstr ""
397
 
398
+ #: classes/Admin/Help/CustomField.php:74, classes/Column/Comment/User.php:15, classes/Settings/Column/CustomFieldType.php:87, classes/Settings/Column/CustomFieldType.php:117
399
+ msgid "User"
400
+ msgstr ""
401
+
402
+ #: classes/Admin/Help/CustomField.php:75
403
+ msgid "Value: Should contain one or more User IDs, separated by commas."
404
  msgstr ""
405
 
406
+ #: classes/Admin/Help/Introduction.php:10
407
+ msgid "Overview"
408
+ msgstr ""
409
+
410
+ #: classes/Admin/Help/Introduction.php:18
411
+ 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."
412
  msgstr ""
413
 
414
+ #: classes/Admin/Page/Addons.php:16
415
+ msgid "Add-ons"
416
  msgstr ""
417
 
418
+ #: classes/Admin/Page/Addons.php:58
419
  msgid "%s add-on requires %s."
420
  msgid_plural "%s add-ons requires %s."
421
  msgstr[0] ""
422
  msgstr[1] ""
423
 
424
+ #: classes/Admin/Page/Addons.php:102
425
+ msgid "%s successfully activated."
426
  msgstr ""
427
 
428
+ #: classes/Admin/Page/Addons.php:105
429
+ msgid "%s could not be activated."
430
  msgstr ""
431
 
432
+ #: classes/Admin/Page/Addons.php:105
433
+ msgid "Please visit the %s page."
434
  msgstr ""
435
 
436
+ #: classes/Admin/Page/Addons.php:114
437
  msgid "%s successfully deactivated."
438
  msgstr ""
439
 
440
+ #: classes/Admin/Page/Addons.php:124
441
+ msgid "%s needs to be installed for the add-on to work."
442
  msgstr ""
443
 
444
+ #: classes/Admin/Page/Addons.php:127
445
+ msgid "Install %s here."
446
  msgstr ""
447
 
448
+ #: classes/Admin/Page/Addons.php:130
449
+ msgid "%s is installed, but not active."
450
  msgstr ""
451
 
452
+ #: classes/Admin/Page/Addons.php:133
453
+ msgid "Activate %s here."
454
  msgstr ""
455
 
456
+ #: classes/Admin/Page/Addons.php:165
457
  msgid "Addon does not exist."
458
  msgstr ""
459
 
460
+ #: classes/Admin/Page/Addons.php:167
461
  msgid "You need Admin Columns Pro."
462
  msgstr ""
463
 
464
+ #: classes/Admin/Page/Addons.php:240
465
  msgid "Installed"
466
  msgstr ""
467
 
468
+ #: classes/Admin/Page/Addons.php:241
469
  msgid "Recommended"
470
  msgstr ""
471
 
472
+ #: classes/Admin/Page/Addons.php:242
473
  msgid "Available"
474
  msgstr ""
475
 
476
+ #: classes/Admin/Page/Addons.php:354
477
  msgid "Active"
478
  msgstr ""
479
 
480
+ #: classes/Admin/Page/Addons.php:357
481
  msgid "Deactivate"
482
  msgstr ""
483
 
484
+ #: classes/Admin/Page/Addons.php:361
485
  msgid "Activate"
486
  msgstr ""
487
 
488
+ #: classes/Admin/Page/Addons.php:367
489
  msgid "Download & Install"
490
  msgstr ""
491
 
492
+ #: classes/Admin/Page/Addons.php:369
493
  msgid "Get this add-on"
494
  msgstr ""
495
 
496
+ #: classes/Admin/Page/Columns.php:81, classes/Admin/Page/Columns.php:244
497
  msgid "%s column is already present and can not be duplicated."
498
  msgstr ""
499
 
500
+ #: classes/Admin/Page/Columns.php:82
501
  msgid "Invalid response."
502
  msgstr ""
503
 
504
+ #: classes/Admin/Page/Columns.php:143
505
  msgid "Settings for %s restored successfully."
506
  msgstr ""
507
 
508
+ #: classes/Admin/Page/Columns.php:217
509
  msgid "Please visit the %s screen once to load all available columns"
510
  msgstr ""
511
 
512
+ #: classes/Admin/Page/Columns.php:297
513
  msgid "You need at least one column"
514
  msgstr ""
515
 
516
+ #: classes/Admin/Page/Columns.php:304
517
  msgid "View %s screen"
518
  msgstr ""
519
 
520
+ #: classes/Admin/Page/Columns.php:311
521
  msgid "You are trying to store the same settings for %s."
522
  msgstr ""
523
 
524
+ #: classes/Admin/Page/Columns.php:324
525
  msgid "Settings for %s updated successfully."
526
  msgstr ""
527
 
528
+ #: classes/Admin/Page/Columns.php:427
529
  msgid "The columns for %s are set up via PHP and can therefore not be edited."
530
  msgstr ""
531
 
532
+ #: classes/Admin/Page/Columns.php:447
533
  msgid "Select type"
534
  msgstr ""
535
 
536
+ #: classes/Admin/Page/Columns.php:459
537
  msgid "View"
538
  msgstr ""
539
 
540
+ #: classes/Admin/Page/Columns.php:473
541
  msgid "Store settings"
542
  msgstr ""
543
 
544
+ #: classes/Admin/Page/Columns.php:495
545
  msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
546
  msgstr ""
547
 
548
+ #: classes/Admin/Page/Columns.php:496
549
  msgid "Restore columns"
550
  msgstr ""
551
 
552
+ #: classes/Admin/Page/Columns.php:515
553
  msgid "Upgrade to"
554
  msgstr ""
555
 
556
+ #: classes/Admin/Page/Columns.php:515
557
  msgid "Pro"
558
  msgstr ""
559
 
560
+ #: classes/Admin/Page/Columns.php:520
561
  msgid "Take Admin Columns to the next level:"
562
  msgstr ""
563
 
564
+ #: classes/Admin/Page/Columns.php:525
565
  msgid "Add sortable columns"
566
  msgstr ""
567
 
568
+ #: classes/Admin/Page/Columns.php:526
569
  msgid "Add filterable columns"
570
  msgstr ""
571
 
572
+ #: classes/Admin/Page/Columns.php:527
573
  msgid "Edit your column content directly"
574
  msgstr ""
575
 
576
+ #: classes/Admin/Page/Columns.php:528
577
  msgid "Create multiple columns sets"
578
  msgstr ""
579
 
580
+ #: classes/Admin/Page/Columns.php:529
581
  msgid "Import &amp; Export settings"
582
  msgstr ""
583
 
584
+ #: classes/Admin/Page/Columns.php:541
585
  msgid "Extra Columns for:"
586
  msgstr ""
587
 
588
+ #: classes/Admin/Page/Columns.php:552
589
  msgid "Prices starting from %s"
590
  msgstr ""
591
 
592
+ #: classes/Admin/Page/Columns.php:557
593
  msgid "Learn more about Pro"
594
  msgstr ""
595
 
596
+ #: classes/Admin/Page/Columns.php:578
597
  msgid "Submit your email and we'll send you a discount for %s off."
598
  msgstr ""
599
 
600
+ #: classes/Admin/Page/Columns.php:585
601
  msgid "Your Email"
602
  msgstr ""
603
 
604
+ #: classes/Admin/Page/Columns.php:586
605
  msgid "Your First Name"
606
  msgstr ""
607
 
608
+ #: classes/Admin/Page/Columns.php:587
609
  msgid "Send me the discount"
610
  msgstr ""
611
 
612
+ #: classes/Admin/Page/Columns.php:598
613
  msgid "Are you happy with Admin Columns?"
614
  msgstr ""
615
 
616
+ #: classes/Admin/Page/Columns.php:608
617
  msgid "What's wrong? Need help? Let us know!"
618
  msgstr ""
619
 
620
+ #: classes/Admin/Page/Columns.php:611
621
  msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
622
  msgstr ""
623
 
624
+ #: classes/Admin/Page/Columns.php:616
625
  msgid "Docs"
626
  msgstr ""
627
 
628
+ #: classes/Admin/Page/Columns.php:621
629
  msgid "Forums"
630
  msgstr ""
631
 
632
+ #: classes/Admin/Page/Columns.php:631
633
  msgid "Woohoo! We're glad to hear that!"
634
  msgstr ""
635
 
636
+ #: classes/Admin/Page/Columns.php:634
637
  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!"
638
  msgstr ""
639
 
640
+ #: classes/Admin/Page/Columns.php:639
641
  msgid "Rate"
642
  msgstr ""
643
 
644
+ #: classes/Admin/Page/Columns.php:644
645
  msgid "I'm using Admin Columns for WordPress!"
646
  msgstr ""
647
 
648
+ #: classes/Admin/Page/Columns.php:645
649
  msgid "Tweet"
650
  msgstr ""
651
 
652
+ #: classes/Admin/Page/Columns.php:651
653
  msgid "Buy Pro"
654
  msgstr ""
655
 
656
+ #: classes/Admin/Page/Columns.php:663
657
  msgid "Support"
658
  msgstr ""
659
 
660
+ #: classes/Admin/Page/Columns.php:668
661
  msgid "Check the <strong>Help</strong> section in the top-right screen."
662
  msgstr ""
663
 
664
+ #: classes/Admin/Page/Columns.php:672
665
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
666
  msgstr ""
667
 
668
  #: classes/Admin/Page/Columns.php:726
693
  msgid "Remove"
694
  msgstr ""
695
 
696
+ #: classes/Admin/Page/Columns.php:918
697
  msgid "Do you like Admin Columns?"
698
  msgstr ""
699
 
700
+ #: classes/Admin/Page/Columns.php:925
701
  msgid "Upgrade to PRO, and take Admin Columns to the next level:"
702
  msgstr ""
703
 
704
+ #: classes/Admin/Page/Columns.php:928
705
  msgid "Sort & Filter on all your content"
706
  msgstr ""
707
 
708
+ #: classes/Admin/Page/Columns.php:929
709
  msgid "Directly edit your content from the overview"
710
  msgstr ""
711
 
712
+ #: classes/Admin/Page/Columns.php:930
713
  msgid "Export all column data to CSV"
714
  msgstr ""
715
 
716
+ #: classes/Admin/Page/Columns.php:931
717
  msgid "Create multiple column groups per overview"
718
  msgstr ""
719
 
720
+ #: classes/Admin/Page/Columns.php:932
721
  msgid "Get add-ons for ACF, WooCommerce and many more"
722
  msgstr ""
723
 
724
+ #: classes/Admin/Page/Columns.php:936
725
  msgid "Upgrade"
726
  msgstr ""
727
 
728
+ #: classes/Admin/Page/Columns.php:937
729
  msgid "Only %s for 1 site"
730
  msgstr ""
731
 
732
+ #: classes/Admin/Page/Help.php:40, classes/Admin/Page/Help.php:327
733
  msgid "Help"
734
  msgstr ""
735
 
736
+ #: classes/Admin/Page/Help.php:177
737
  msgid "Deprecated Filters"
738
  msgstr ""
739
 
740
+ #: classes/Admin/Page/Help.php:178
741
  msgid "Deprecated Actions"
742
  msgstr ""
743
 
744
+ #: classes/Admin/Page/Help.php:191
745
  msgid "The filter %s used on this website is deprecated since %s."
746
  msgstr ""
747
 
748
+ #: classes/Admin/Page/Help.php:209
749
  msgid "The action %s used on this website is deprecated since %s."
750
  msgstr ""
751
 
752
+ #: classes/Admin/Page/Help.php:264
753
  msgid "View documentation"
754
  msgstr ""
755
 
756
+ #: classes/Admin/Page/Help.php:319
757
  msgid "The callback used is %s."
758
+ msgid_plural "The callbacks used are %s."
759
  msgstr[0] ""
760
  msgstr[1] ""
761
 
762
+ #: classes/Admin/Page/Help.php:329
763
  msgid "The Admin Columns plugin has undergone some major changes in version 4."
764
  msgstr ""
765
 
766
+ #: classes/Admin/Page/Help.php:331
767
  msgid "This site is using some actions or filters that have changed. Please read %s to resolve them."
768
  msgstr ""
769
 
770
+ #: classes/Admin/Page/Help.php:331
771
  msgid "our documentation"
772
  msgstr ""
773
 
774
+ #: classes/Admin/Page/Settings.php:114
775
+ msgid "Default settings successfully restored."
776
  msgstr ""
777
 
778
+ #: classes/Admin/Page/Settings.php:141
779
  msgid "Instructions"
780
  msgstr ""
781
 
782
+ #: classes/Admin/Page/Settings.php:147
783
  msgid "Notice"
784
  msgstr ""
785
 
786
+ #: classes/Admin/Page/Settings.php:160
787
  msgid "off"
788
  msgstr ""
789
 
790
+ #: classes/Admin/Page/Settings.php:163
791
  msgid "on"
792
  msgstr ""
793
 
794
+ #: classes/Admin/Page/Settings.php:166
795
  msgid "Default is %s."
796
  msgstr ""
797
 
798
+ #: classes/Admin/Page/Settings.php:174
799
  msgid "General Settings"
800
  msgstr ""
801
 
802
+ #: classes/Admin/Page/Settings.php:175
803
  msgid "Customize your Admin Columns settings."
804
  msgstr ""
805
 
806
+ #: classes/Admin/Page/Settings.php:185
807
  msgid "Show %s button on table screen."
808
  msgstr ""
809
 
810
+ #: classes/Admin/Page/Settings.php:234
811
  msgid "Restore Settings"
812
  msgstr ""
813
 
814
+ #: classes/Admin/Page/Settings.php:235
815
  msgid "This will delete all column settings and restore the default settings."
816
  msgstr ""
817
 
818
+ #: classes/Admin/Page/Settings.php:243
819
  msgid "Restore default settings"
820
  msgstr ""
821
 
822
+ #: classes/Admin/Page/Settings.php:243
823
  msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
824
  msgstr ""
825
 
826
+ #: classes/Column/Comment/Agent.php:14
827
  msgid "Agent"
828
  msgstr ""
829
 
830
+ #: classes/Column/Comment/Approved.php:14, classes/Settings/Column/CommentCount.php:47
831
  msgid "Approved"
832
  msgstr ""
833
 
834
+ #: classes/Column/Comment/AuthorAvatar.php:14
835
  msgid "Avatar"
836
  msgstr ""
837
 
838
+ #: classes/Column/Comment/AuthorEmail.php:14
839
  msgid "Author Email"
840
  msgstr ""
841
 
842
+ #: classes/Column/Comment/AuthorIP.php:11
843
  msgid "Author IP"
844
  msgstr ""
845
 
846
+ #: classes/Column/Comment/AuthorName.php:14
847
  msgid "Author Name"
848
  msgstr ""
849
 
850
+ #: classes/Column/Comment/AuthorUrl.php:14
851
+ msgid "Author URL"
852
  msgstr ""
853
 
854
+ #: classes/Column/Comment/DateGmt.php:14
855
  msgid "Date GMT"
856
  msgstr ""
857
 
858
+ #: classes/Column/Comment/DateGmt.php:20
859
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
860
  msgstr ""
861
 
862
+ #: classes/Column/Comment/Excerpt.php:15, classes/Column/Post/Content.php:15
863
  msgid "Content"
864
  msgstr ""
865
 
866
+ #: classes/Column/Comment/ID.php:14, classes/Column/Media/ID.php:14, classes/Column/Post/ID.php:15
867
  msgid "ID"
868
  msgstr ""
869
 
870
+ #: classes/Column/Comment/ReplyTo.php:14
 
 
 
 
871
  msgid "In Reply To"
872
  msgstr ""
873
 
874
+ #: classes/Column/Comment/Status.php:14, classes/Column/Post/Status.php:12
875
  msgid "Status"
876
  msgstr ""
877
 
878
+ #: classes/Column/Comment/Type.php:14, classes/Settings/Column/CustomFieldType.php:59, classes/Settings/Column/Type.php:33, classes/Settings/Column/Type.php:42
879
  msgid "Type"
880
  msgstr ""
881
 
882
+ #: classes/Column/Comment/WordCount.php:14, classes/Column/Post/WordCount.php:14
 
 
 
 
883
  msgid "Word Count"
884
  msgstr ""
885
 
886
+ #: classes/Column/Media/AlternateText.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
887
  msgid "Alternative Text"
888
  msgstr ""
889
 
890
+ #: classes/Column/Media/AvailableSizes.php:17
891
  msgid "Available Sizes"
892
  msgstr ""
893
 
894
+ #: classes/Column/Media/AvailableSizes.php:36
895
  msgid "original"
896
  msgstr ""
897
 
898
+ #: classes/Column/Media/AvailableSizes.php:52
899
  msgid "Missing image file for size %s."
900
  msgstr ""
901
 
902
+ #: classes/Column/Media/Caption.php:14, classes/Settings/Column/ExifData.php:76
903
  msgid "Caption"
904
  msgstr ""
905
 
906
+ #: classes/Column/Media/Description.php:16, classes/Column/User/Description.php:15
907
+ msgid "Description"
908
+ msgstr ""
909
+
910
+ #: classes/Column/Media/Dimensions.php:16
911
  msgid "Dimensions"
912
  msgstr ""
913
 
914
+ #: classes/Column/Media/Dimensions.php:28
915
  msgid "Width : %s px"
916
  msgstr ""
917
 
918
+ #: classes/Column/Media/Dimensions.php:28
919
  msgid "Height : %s px"
920
  msgstr ""
921
 
922
+ #: classes/Column/Media/ExifData.php:17
923
  msgid "EXIF Data"
924
  msgstr ""
925
 
926
+ #: classes/Column/Media/FileName.php:14
927
  msgid "Filename"
928
  msgstr ""
929
 
930
+ #: classes/Column/Media/FileSize.php:14
931
  msgid "File Size"
932
  msgstr ""
933
 
934
+ #: classes/Column/Media/FullPath.php:15, classes/Column/Post/Path.php:16
935
  msgid "Path"
936
  msgstr ""
937
 
938
+ #: classes/Column/Media/Height.php:16, classes/Settings/Column/Image.php:47
939
  msgid "Height"
940
  msgstr ""
941
 
942
+ #: classes/Column/Media/MimeType.php:14
943
  msgid "Mime Type"
944
  msgstr ""
945
 
946
+ #: classes/Column/Media/Width.php:16, classes/Settings/Column/Image.php:41, classes/Settings/Column/Width.php:53
947
  msgid "Width"
948
  msgstr ""
949
 
950
+ #: classes/Column/Post/Attachment.php:15
951
  msgid "Attachments"
952
  msgstr ""
953
 
954
+ #: classes/Column/Post/AuthorName.php:19
955
  msgid "Author"
956
  msgstr ""
957
 
958
+ #: classes/Column/Post/BeforeMoreTag.php:15
959
  msgid "More Tag"
960
  msgstr ""
961
 
962
+ #: classes/Column/Post/CommentCount.php:18, classes/Column/User/CommentCount.php:14
963
  msgid "Comment Count"
964
  msgstr ""
965
 
966
+ #: classes/Column/Post/CommentStatus.php:17
967
  msgid "Allow Comments"
968
  msgstr ""
969
 
970
+ #: classes/Column/Post/DatePublished.php:15
971
  msgid "Date Published"
972
  msgstr ""
973
 
974
+ #: classes/Column/Post/Depth.php:16
975
  msgid "Depth"
976
  msgstr ""
977
 
978
+ #: classes/Column/Post/EstimatedReadingTime.php:15
979
  msgid "Estimated Reading Time"
980
  msgstr ""
981
 
982
+ #: classes/Column/Post/FeaturedImage.php:15
983
  msgid "Featured Image"
984
  msgstr ""
985
 
986
+ #: classes/Column/Post/Formats.php:15
987
  msgid "Post Format"
988
  msgstr ""
989
 
990
+ #: classes/Column/Post/LastModifiedAuthor.php:18
991
  msgid "Last Modified Author"
992
  msgstr ""
993
 
994
+ #: classes/Column/Post/Modified.php:15
995
  msgid "Last Modified"
996
  msgstr ""
997
 
998
+ #: classes/Column/Post/Order.php:14
999
  msgid "Order"
1000
  msgstr ""
1001
 
1002
+ #: classes/Column/Post/PageTemplate.php:14
1003
  msgid "Page Template"
1004
  msgstr ""
1005
 
1006
+ #: classes/Column/Post/Permalink.php:16
 
 
 
 
1007
  msgid "Permalink"
1008
  msgstr ""
1009
 
1010
+ #: classes/Column/Post/PingStatus.php:14
1011
  msgid "Ping Status"
1012
  msgstr ""
1013
 
1014
+ #: classes/Column/Post/PostParent.php:14
1015
+ msgid "Parent"
1016
+ msgstr ""
1017
+
1018
+ #: classes/Column/Post/Shortcodes.php:16
1019
  msgid "Shortcodes"
1020
  msgstr ""
1021
 
1022
+ #: classes/Column/Post/Shortlink.php:14
1023
  msgid "Shortlink"
1024
  msgstr ""
1025
 
1026
+ #: classes/Column/Post/Slug.php:14
1027
  msgid "Slug"
1028
  msgstr ""
1029
 
1030
+ #: classes/Column/Post/Sticky.php:16
1031
  msgid "Sticky"
1032
  msgstr ""
1033
 
1034
+ #: classes/Column/Post/TitleRaw.php:15
1035
  msgid "Title Only"
1036
  msgstr ""
1037
 
1038
+ #: classes/Column/User/DisplayName.php:14, classes/Settings/Column/User.php:64
1039
  msgid "Display Name"
1040
  msgstr ""
1041
 
1042
+ #: classes/Column/User/FirstName.php:14, classes/Settings/Column/User.php:65
1043
  msgid "First Name"
1044
  msgstr ""
1045
 
1046
+ #: classes/Column/User/ID.php:14, classes/Settings/Column/User.php:70
1047
  msgid "User ID"
1048
  msgstr ""
1049
 
1050
+ #: classes/Column/User/LastName.php:14, classes/Settings/Column/User.php:66
1051
  msgid "Last Name"
1052
  msgstr ""
1053
 
1054
+ #: classes/Column/User/Nickname.php:14, classes/Settings/Column/User.php:67
1055
  msgid "Nickname"
1056
  msgstr ""
1057
 
1058
+ #: classes/Column/User/PostCount.php:15
1059
  msgid "Post Count"
1060
  msgstr ""
1061
 
1062
+ #: classes/Column/User/Registered.php:15
1063
  msgid "Registered"
1064
  msgstr ""
1065
 
1066
+ #: classes/Column/User/RichEditing.php:11
1067
  msgid "Visual Editor"
1068
  msgstr ""
1069
 
1070
+ #: classes/Column/User/ShowToolbar.php:14
1071
  msgid "Show Toolbar"
1072
  msgstr ""
1073
 
1074
+ #: classes/Column/User/Url.php:14
1075
  msgid "Website"
1076
  msgstr ""
1077
 
1078
+ #: classes/Settings/Column/ActionIcons.php:27
1079
  msgid "Use icons?"
1080
  msgstr ""
1081
 
1082
+ #: classes/Settings/Column/ActionIcons.php:28
1083
  msgid "Use icons instead of text for displaying the actions."
1084
  msgstr ""
1085
 
1086
+ #: classes/Settings/Column/AttachmentDisplay.php:37
1087
  msgid "Thumbnails"
1088
  msgstr ""
1089
 
1090
+ #: classes/Settings/Column/AttachmentDisplay.php:38
1091
  msgid "Count"
1092
  msgstr ""
1093
 
1094
+ #: classes/Settings/Column/AttachmentDisplay.php:42, classes/Settings/Column/Comment.php:102, classes/Settings/Column/Post.php:75, classes/Settings/Column/Term.php:34, classes/Settings/Column/User.php:42
1095
  msgid "Display"
1096
  msgstr ""
1097
 
1098
+ #: classes/Settings/Column/BeforeAfter.php:62
1099
  msgid "Before"
1100
  msgstr ""
1101
 
1102
+ #: classes/Settings/Column/BeforeAfter.php:63
1103
  msgid "This text will appear before the column value."
1104
  msgstr ""
1105
 
1106
+ #: classes/Settings/Column/BeforeAfter.php:71
1107
  msgid "After"
1108
  msgstr ""
1109
 
1110
+ #: classes/Settings/Column/BeforeAfter.php:72
1111
  msgid "This text will appear after the column value."
1112
  msgstr ""
1113
 
1114
+ #: classes/Settings/Column/BeforeAfter.php:78
1115
  msgid "Display Options"
1116
  msgstr ""
1117
 
1118
+ #: classes/Settings/Column/CharacterLimit.php:28, classes/Settings/Column/StringLimit.php:36
1119
  msgid "Character Limit"
1120
  msgstr ""
1121
 
1122
+ #: classes/Settings/Column/CharacterLimit.php:29
1123
  msgid "Maximum number of characters"
1124
  msgstr ""
1125
 
1126
+ #: classes/Settings/Column/CharacterLimit.php:29, classes/Settings/Column/NumberOfItems.php:31, classes/Settings/Column/WordLimit.php:35
1127
  msgid "Leave empty for no limit"
1128
  msgstr ""
1129
 
1130
+ #: classes/Settings/Column/CommentCount.php:34
1131
  msgid "Comment status"
1132
  msgstr ""
1133
 
1134
+ #: classes/Settings/Column/CommentCount.php:35
1135
  msgid "Select which comment status you like to display."
1136
  msgstr ""
1137
 
1138
+ #: classes/Settings/Column/CommentCount.php:48
1139
  msgid "Pending"
1140
  msgstr ""
1141
 
1142
+ #: classes/Settings/Column/CommentCount.php:49
1143
  msgid "Spam"
1144
  msgstr ""
1145
 
1146
+ #: classes/Settings/Column/CommentCount.php:50
1147
  msgid "Trash"
1148
  msgstr ""
1149
 
1150
+ #: classes/Settings/Column/CommentCount.php:56
1151
  msgid "Total"
1152
  msgstr ""
1153
 
1154
+ #: classes/Settings/Column/CustomField.php:18
1155
  msgid "Custom field key"
1156
  msgstr ""
1157
 
1158
+ #: classes/Settings/Column/CustomField.php:22
1159
  msgid "No custom fields available."
1160
  msgstr ""
1161
 
1162
+ #: classes/Settings/Column/CustomField.php:22
1163
  msgid "Please create a %s item first."
1164
  msgstr ""
1165
 
1166
+ #: classes/Settings/Column/CustomFieldType.php:56
1167
  msgid "This will determine how the value will be displayed."
1168
  msgstr ""
1169
 
1170
+ #: classes/Settings/Column/CustomFieldType.php:63
1171
  msgid "Field Type"
1172
  msgstr ""
1173
 
1174
+ #: classes/Settings/Column/CustomFieldType.php:72
1175
+ msgid "Uses one or more %s IDs to display information about it."
 
 
 
 
1176
  msgstr ""
1177
 
1178
+ #: classes/Settings/Column/CustomFieldType.php:73
1179
+ msgid "Multiple IDs should be separated by commas."
1180
  msgstr ""
1181
 
1182
+ #: classes/Settings/Column/CustomFieldType.php:120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1183
  msgid "Number of Fields"
1184
  msgstr ""
1185
 
1186
+ #: classes/Settings/Column/CustomFieldType.php:152
1187
  msgid "Basic"
1188
  msgstr ""
1189
 
1190
+ #: classes/Settings/Column/CustomFieldType.php:153
1191
  msgid "Relational"
1192
  msgstr ""
1193
 
1194
+ #: classes/Settings/Column/CustomFieldType.php:154
1195
  msgid "Choice"
1196
  msgstr ""
1197
 
1198
+ #: classes/Settings/Column/CustomFieldType.php:155
1199
  msgid "Multiple"
1200
  msgstr ""
1201
 
1202
+ #: classes/Settings/Column/CustomFieldType.php:156, classes/Settings/Column/Image.php:112, classes/Settings/Column/Type.php:75
1203
+ msgid "Custom"
1204
+ msgstr ""
1205
+
1206
+ #: classes/Settings/Column/Date.php:10
1207
  msgid "The difference is returned in a human readable format."
1208
  msgstr ""
1209
 
1210
+ #: classes/Settings/Column/Date.php:11
1211
  msgid "For example: %s."
1212
  msgstr ""
1213
 
1214
+ #: classes/Settings/Column/Date.php:13
1215
  msgid "or"
1216
  msgstr ""
1217
 
1218
+ #: classes/Settings/Column/Date.php:17
1219
  msgid "Time Difference"
1220
  msgstr ""
1221
 
1222
+ #: classes/Settings/Column/Date.php:23
1223
  msgid "WordPress Date Format"
1224
  msgstr ""
1225
 
1226
+ #: classes/Settings/Column/Date.php:78
1227
  msgid "in %s"
1228
  msgstr ""
1229
 
1230
+ #: classes/Settings/Column/DateTimeFormat.php:40
1231
  msgid "The %s can be changed in %s."
1232
  msgstr ""
1233
 
1234
+ #: classes/Settings/Column/DateTimeFormat.php:55
1235
  msgid "Date Format"
1236
  msgstr ""
1237
 
1238
+ #: classes/Settings/Column/DateTimeFormat.php:56
1239
  msgid "This will determine how the date will be displayed."
1240
  msgstr ""
1241
 
1242
+ #: classes/Settings/Column/DateTimeFormat.php:108
1243
  msgid "Custom:"
1244
  msgstr ""
1245
 
1246
+ #: classes/Settings/Column/DateTimeFormat.php:110
1247
  msgid "Learn more about %s."
1248
  msgstr ""
1249
 
1250
+ #: classes/Settings/Column/DateTimeFormat.php:110
1251
  msgid "date and time formatting"
1252
  msgstr ""
1253
 
1254
+ #: classes/Settings/Column/ExifData.php:73
1255
  msgid "Aperture"
1256
  msgstr ""
1257
 
1258
+ #: classes/Settings/Column/ExifData.php:74
1259
  msgid "Credit"
1260
  msgstr ""
1261
 
1262
+ #: classes/Settings/Column/ExifData.php:75
1263
  msgid "Camera"
1264
  msgstr ""
1265
 
1266
+ #: classes/Settings/Column/ExifData.php:77
1267
  msgid "Timestamp"
1268
  msgstr ""
1269
 
1270
+ #: classes/Settings/Column/ExifData.php:78
1271
  msgid "Copyright"
1272
  msgstr ""
1273
 
1274
+ #: classes/Settings/Column/ExifData.php:79
1275
  msgid "Focal Length"
1276
  msgstr ""
1277
 
1278
+ #: classes/Settings/Column/ExifData.php:80
1279
  msgid "ISO"
1280
  msgstr ""
1281
 
1282
+ #: classes/Settings/Column/ExifData.php:81
1283
  msgid "Shutter Speed"
1284
  msgstr ""
1285
 
1286
+ #: classes/Settings/Column/ExifData.php:82
1287
  msgid "Title"
1288
  msgstr ""
1289
 
1290
+ #: classes/Settings/Column/ExifData.php:83
1291
  msgid "Orientation"
1292
  msgstr ""
1293
 
1294
+ #: classes/Settings/Column/ExifData.php:84
1295
  msgid "Keywords"
1296
  msgstr ""
1297
 
1298
+ #: classes/Settings/Column/Image.php:42
1299
  msgid "Width in pixels"
1300
  msgstr ""
1301
 
1302
+ #: classes/Settings/Column/Image.php:48
1303
  msgid "Height in pixels"
1304
  msgstr ""
1305
 
1306
+ #: classes/Settings/Column/Image.php:55
1307
  msgid "Image Size"
1308
  msgstr ""
1309
 
1310
+ #: classes/Settings/Column/Image.php:74
1311
  msgid "Thumbnail"
1312
  msgstr ""
1313
 
1314
+ #: classes/Settings/Column/Image.php:75
1315
  msgid "Medium"
1316
  msgstr ""
1317
 
1318
+ #: classes/Settings/Column/Image.php:76
1319
  msgid "Large"
1320
  msgstr ""
1321
 
1322
+ #: classes/Settings/Column/Image.ph