Version Description
Release Date: February 18th, 2019
- [Improved] Minor improvements in banners, missing links, etc
Download this release
Release Info
Developer | tschutter |
Plugin | Admin Columns |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.4.1
- api.php +20 -0
- assets/css/admin-general.css +1 -1
- assets/css/admin-page-columns.css +1 -1
- assets/css/admin-welcome.css +1 -1
- assets/css/table.css +1 -1
- assets/fonts/template.scss +0 -38
- assets/js/admin-general.js +1 -1
- assets/js/admin-page-columns.js +1 -1
- assets/js/admin-page-columns.js.map +1 -1
- assets/js/message-review.js +1 -1
- assets/js/notice-dismissible.js +1 -1
- assets/js/table.js +1 -1
- classes/Admin.php +131 -97
- classes/Admin/AdminFactory.php +22 -0
- classes/Admin/GeneralSectionFactory.php +23 -0
- classes/Admin/Help.php +0 -41
- classes/Admin/HelpTab.php +23 -0
- classes/Admin/{Help → HelpTab}/Basics.php +3 -3
- classes/Admin/{Help → HelpTab}/CustomField.php +3 -3
- classes/Admin/{Help → HelpTab}/Introduction.php +3 -4
- classes/Admin/Helpable.php +11 -0
- classes/Admin/MenuItem.php +42 -0
- classes/Admin/Page.php +12 -100
- classes/Admin/Page/Addons.php +74 -111
- classes/Admin/Page/Columns.php +213 -728
- classes/Admin/Page/Help.php +84 -266
- classes/Admin/Page/Settings.php +30 -209
- classes/Admin/Pages.php +0 -104
- classes/Admin/Parts/Banner.php +76 -0
- classes/Admin/Request/Column.php +74 -0
- classes/Admin/Request/Column/Refresh.php +28 -0
- classes/Admin/Request/Column/Save.php +67 -0
- classes/Admin/Request/Column/Select.php +17 -0
- classes/Admin/Request/Handler.php +22 -0
- classes/Admin/Section.php +61 -0
- classes/Admin/Section/Custom.php +54 -0
- classes/Admin/Section/General.php +50 -0
- classes/Admin/Section/Restore.php +55 -0
- classes/Admin/Tooltip.php +133 -0
- classes/AdminColumns.php +132 -50
- classes/Ajax/Handler.php +52 -4
- classes/Check/AddonAvailable.php +1 -1
- classes/Column.php +0 -2
- classes/Column/Comment/ReplyTo.php +8 -11
- classes/Column/Comment/Status.php +10 -3
- classes/Column/Comment/Type.php +10 -6
- classes/Column/Placeholder.php +1 -1
- classes/Deprecated/Counter.php +21 -0
- classes/Deprecated/Hook.php +85 -0
- classes/Deprecated/Hook/Action.php +13 -0
- classes/Deprecated/Hook/Filter.php +13 -0
- classes/Deprecated/Hooks.php +166 -0
- classes/Exception/Request.php +13 -0
- classes/Form/Element/MultiSelect.php +17 -0
- classes/Form/Element/Select.php +25 -2
- classes/Helper/Image.php +1 -1
- classes/Helper/Strings.php +1 -1
- classes/Integration.php +1 -1
- classes/Integration/ACF.php +2 -1
- classes/Integration/WooCommerce.php +1 -1
- classes/ListScreen.php +15 -2
- classes/ListScreenFactory.php +12 -1
- classes/Plugin/Updater.php +2 -1
- classes/Request.php +37 -62
- classes/Request/Parameters.php +92 -0
- classes/Response/Json.php +84 -0
- classes/Screen.php +10 -3
- classes/Screen/QuickEdit.php +2 -1
- classes/ScreenController.php +74 -0
- classes/Settings.php +17 -0
- classes/Settings/Admin.php +18 -0
- classes/Settings/Admin/General.php +23 -0
- classes/Settings/Admin/General/ShowEditButton.php +43 -0
- classes/Settings/Column/DateTimeFormat.php +5 -1
- classes/Settings/General.php +69 -0
- classes/Storage/KeyValuePair.php +14 -1
- classes/Storage/Option.php +14 -4
- classes/Storage/SiteOption.php +12 -2
- classes/Storage/Timestamp.php +12 -5
- classes/Storage/Transaction.php +86 -0
- classes/Storage/UserMeta.php +14 -7
- classes/Table/Screen.php +9 -84
- classes/ThirdParty/ACF.php +4 -2
- classes/ThirdParty/NinjaForms.php +4 -2
- classes/ThirdParty/WPML.php +4 -2
- classes/ThirdParty/WooCommerce.php +4 -2
- classes/View.php +1 -1
- codepress-admin-columns.php +3 -3
- languages/codepress-admin-columns-ar_AR.mo +0 -0
- languages/codepress-admin-columns-ar_AR.po +173 -199
- languages/codepress-admin-columns-bt_BR.mo +0 -0
- languages/codepress-admin-columns-bt_BR.po +171 -193
- languages/codepress-admin-columns-da_DK.po +171 -193
- languages/codepress-admin-columns-de_DE.po +171 -193
- languages/codepress-admin-columns-en_NZ.po +171 -193
- languages/codepress-admin-columns-es_ES.mo +0 -0
- languages/codepress-admin-columns-es_ES.po +175 -197
- languages/codepress-admin-columns-fa_IR.po +171 -192
- languages/codepress-admin-columns-fr_FR.mo +0 -0
- languages/codepress-admin-columns-fr_FR.po +181 -203
- languages/codepress-admin-columns-he_IL.po +171 -193
- languages/codepress-admin-columns-hu_HU.po +171 -193
- languages/codepress-admin-columns-it_IT.po +171 -193
- languages/codepress-admin-columns-ja_JA.po +171 -192
- languages/codepress-admin-columns-nl_NL.mo +0 -0
- languages/codepress-admin-columns-nl_NL.po +171 -193
- languages/codepress-admin-columns-pl_PL.mo +0 -0
- languages/codepress-admin-columns-pl_PL.po +84 -107
api.php
CHANGED
@@ -98,4 +98,24 @@ function ac_helper() {
|
|
98 |
*/
|
99 |
function ac_register_columns( $list_screen_keys, $column_data ) {
|
100 |
AC()->api()->load_columndata( $list_screen_keys, $column_data );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
}
|
98 |
*/
|
99 |
function ac_register_columns( $list_screen_keys, $column_data ) {
|
100 |
AC()->api()->load_columndata( $list_screen_keys, $column_data );
|
101 |
+
}
|
102 |
+
|
103 |
+
/**
|
104 |
+
* @param string $slug Page slug
|
105 |
+
*
|
106 |
+
* @return string
|
107 |
+
*/
|
108 |
+
function ac_get_admin_url( $slug = null ) {
|
109 |
+
if ( null === $slug ) {
|
110 |
+
$slug = 'columns';
|
111 |
+
}
|
112 |
+
|
113 |
+
return AC()->admin()->get_url( $slug );
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* @return int
|
118 |
+
*/
|
119 |
+
function ac_get_lowest_price() {
|
120 |
+
return 49;
|
121 |
}
|
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:""}.cpacicon-segment::before{content:""}.ac-modal{position:fixed;overflow:auto;z-index:100000;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.5);display:none}.ac-modal.-active{display:flex;align-items:center;justify-content:center}.ac-modal__dialog{border:1px solid #C8C8C8;background:#fff;position:fixed;width:650px;max-width:90%}.ac-modal__dialog__header{background:#f5f5f5;font-size:18px;line-height: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;max-height:calc(100vh - 200px);overflow:scroll}.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}@media only screen and (max-width: 720px){.ac-modal__dialog__footer__content{display:block}.ac-modal__dialog__footer .button{margin-left:0;margin-top:10px}}#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}.ac-wp-pointer img{max-width:calc(100% - 20px);height:auto;margin:10px;margin-top:0}
|
1 |
+
@font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2"),url("../fonts/cpac_icons.woff") format("woff");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:""}.cpacicon-segment::before{content:""}.ac-modal{position:fixed;overflow:auto;z-index:100000;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.5);display:none}.ac-modal.-active{display:flex;align-items:center;justify-content:center}.ac-modal__dialog{border:1px solid #C8C8C8;background:#fff;position:fixed;width:650px;max-width:90%}.ac-modal__dialog__header{background:#f5f5f5;font-size:18px;line-height: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;max-height:calc(100vh - 200px);overflow:scroll}.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}@media only screen and (max-width: 720px){.ac-modal__dialog__footer__content{display:block}.ac-modal__dialog__footer .button{margin-left:0;margin-top:10px}}#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}.ac-wp-pointer img{max-width:calc(100% - 20px);height:auto;margin:10px;margin-top:0}
|
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:""}.cpacicon-segment::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-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.disabled,.boxes.disabled .ac-column{opacity:0.7}.ac-column.disabled a.remove-button,.ac-column.disabled a.clone-button,.ac-column.disabled .column_action,.boxes.disabled .ac-column a.remove-button,.boxes.disabled .ac-column a.clone-button,.boxes.disabled .ac-column .column_action{display:none !important}.ac-column.disabled .column-meta td.column_sort,.boxes.disabled .ac-column .column-meta td.column_sort{display:none}.ac-column.disabled .column-meta td.column_label,.boxes.disabled .ac-column .column-meta td.column_label{padding-left:10px}.ac-column.disabled .meta span,.boxes.disabled .ac-column .meta span{cursor:default !important;opacity:0.45}.ac-column.disabled .meta span:before,.boxes.disabled .ac-column .meta span:before{color:#808080 !important}.ac-column.disabled .meta span.on,.boxes.disabled .ac-column .meta span.on{opacity:1}.ac-column.disabled .column-footer,.boxes.disabled .ac-column .column-footer{display:none}.ac-column.disabled .ac-column-body:before,.boxes.disabled .ac-column .ac-column-body:before{content:'';position:absolute;width:100%;height:100%;background:#FFF;z-index:100;opacity:0.3;cursor:not-allowed}.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-column-setting--label .ac-setting-input__container{position:relative}.ac-column-setting--label .ac-setting-input__container input{height:28px;line-height:28px;padding-right:34px}.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon{background:#fff;position:absolute;top:4px;height:22px;color:#ccc;right:0;border:none;cursor:pointer;outline:none !important;transition:color .5s}.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon:hover,.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon:focus{color:#999}.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon:active{color:#21759B}.ac-ipicker__modal{background:#fff;max-width:90%;width:770px;height:450px;display:flex;padding:20px}.ac-ipicker.fixed{position:fixed;z-index:99999;background:rgba(0,0,0,0.8);display:flex;top:0;right:0;bottom:0;left:0;height:auto;align-items:center;justify-content:center}.ac-ipicker__icons{flex:1 1 auto}.ac-ipicker__icons__group{display:block;clear:both;padding-top:15px;margin-top:20px;margin-bottom:10px;font-size:16px;font-weight:normal}.ac-ipicker__icons__group:first-child{border-top:none;padding-top:0;margin-top:0}.ac-ipicker__icon{display:inline-block;width:49px;height:49px;text-align:center;white-space:nowrap;cursor:pointer}.ac-ipicker__icon .dashicons{width:49px;height:49px;line-height:49px;font-size:28px}.ac-ipicker__icon:hover,.ac-ipicker__icon:focus{color:#21759B}.ac-ipicker__icon.active{background:#21759B;color:#fff}.ac-ipicker__handles{flex:0 0 100px;text-align:center;padding-top:20px}.ac-modal.-pro .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.-pro .ac-modal__dialog__list li:before{content:'\f147';font-family:Dashicons;position:absolute;left:0;top:0;color:#3D4350}.ac-modal.-pro .ac-modal__dialog__list li:nth-child(2n){color:#e9426e}.ac-modal.-pro .ac-modal__dialog__mascot{position:absolute;right:20px;bottom:20px;width:150px;height:225px;z-index:4}.ac-modal.-pro .ac-modal__dialog__footer .button{margin-left:0;padding-left:15px;padding-right:15px}.ac-modal.-pro .ac-modal__dialog__footer span{display:inline-block;margin-top:4px;margin-left:10px;font-size:14px}.ac-modal.-setting .ac-modal__dialog{width:970px}.ac-modal.-setting .ac-modal__dialog__content{max-height:400px}.ac-modal.-setting .ac-modal__dialog__footer{text-align:right;padding:0 15px}.ac-modal.-setting .ac-modal__dialog__footer .button{display:inline-block;vertical-align:middle;padding-left:30px;padding-right:30px}.ac-modal.-setting .ac-modal__dialog__footer .ac-ipicker__selection{display:inline-block;vertical-align:middle;text-align:center;width:68px;height:68px;line-height:58px;background:#E5E5E5;margin-right:15px;color:#404040}.ac-modal.-setting .ac-modal__dialog__footer .ac-ipicker__selection .dashicons{width:68px;height:68px;line-height:68px;font-size:30px}.ac-modal.-iconpicker .ac-modal__dialog__content{overflow:hidden;overflow-y:scroll}
|
1 |
+
@font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2"),url("../fonts/cpac_icons.woff") format("woff");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:""}.cpacicon-segment::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-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.disabled,.boxes.disabled .ac-column{opacity:0.7}.ac-column.disabled a.remove-button,.ac-column.disabled a.clone-button,.ac-column.disabled .column_action,.boxes.disabled .ac-column a.remove-button,.boxes.disabled .ac-column a.clone-button,.boxes.disabled .ac-column .column_action{display:none !important}.ac-column.disabled .column-meta td.column_sort,.boxes.disabled .ac-column .column-meta td.column_sort{display:none}.ac-column.disabled .column-meta td.column_label,.boxes.disabled .ac-column .column-meta td.column_label{padding-left:10px}.ac-column.disabled .meta span,.boxes.disabled .ac-column .meta span{cursor:default !important;opacity:0.45}.ac-column.disabled .meta span:before,.boxes.disabled .ac-column .meta span:before{color:#808080 !important}.ac-column.disabled .meta span.on,.boxes.disabled .ac-column .meta span.on{opacity:1}.ac-column.disabled .column-footer,.boxes.disabled .ac-column .column-footer{display:none}.ac-column.disabled .ac-column-body:before,.boxes.disabled .ac-column .ac-column-body:before{content:'';position:absolute;width:100%;height:100%;background:#FFF;z-index:100;opacity:0.3;cursor:not-allowed}.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{margin:8px 0 0;font-style:italic}#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{color:#FFEE85}#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-column-setting--label .ac-setting-input__container{position:relative}.ac-column-setting--label .ac-setting-input__container input{height:28px;line-height:28px;padding-right:34px}.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon{background:#fff;position:absolute;top:4px;height:22px;color:#ccc;right:0;border:none;cursor:pointer;outline:none !important;transition:color .5s}.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon:hover,.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon:focus{color:#999}.ac-column-setting--label .ac-setting-input__container .ac-setting-label-icon:active{color:#21759B}.ac-ipicker__modal{background:#fff;max-width:90%;width:770px;height:450px;display:flex;padding:20px}.ac-ipicker.fixed{position:fixed;z-index:99999;background:rgba(0,0,0,0.8);display:flex;top:0;right:0;bottom:0;left:0;height:auto;align-items:center;justify-content:center}.ac-ipicker__icons{flex:1 1 auto}.ac-ipicker__icons__group{display:block;clear:both;padding-top:15px;margin-top:20px;margin-bottom:10px;font-size:16px;font-weight:normal}.ac-ipicker__icons__group:first-child{border-top:none;padding-top:0;margin-top:0}.ac-ipicker__icon{display:inline-block;width:49px;height:49px;text-align:center;white-space:nowrap;cursor:pointer}.ac-ipicker__icon .dashicons{width:49px;height:49px;line-height:49px;font-size:28px}.ac-ipicker__icon:hover,.ac-ipicker__icon:focus{color:#21759B}.ac-ipicker__icon.active{background:#21759B;color:#fff}.ac-ipicker__handles{flex:0 0 100px;text-align:center;padding-top:20px}.ac-modal.-pro .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.-pro .ac-modal__dialog__list li:before{content:'\f147';font-family:Dashicons;position:absolute;left:0;top:0;color:#3D4350}.ac-modal.-pro .ac-modal__dialog__list li:nth-child(2n){color:#e9426e}.ac-modal.-pro .ac-modal__dialog__mascot{position:absolute;right:20px;bottom:20px;width:150px;height:225px;z-index:4}.ac-modal.-pro .ac-modal__dialog__footer .button{margin-left:0;padding-left:15px;padding-right:15px}.ac-modal.-pro .ac-modal__dialog__footer span{display:inline-block;margin-top:4px;margin-left:10px;font-size:14px}.ac-modal.-setting .ac-modal__dialog{width:970px}.ac-modal.-setting .ac-modal__dialog__content{max-height:400px}.ac-modal.-setting .ac-modal__dialog__footer{text-align:right;padding:0 15px}.ac-modal.-setting .ac-modal__dialog__footer .button{display:inline-block;vertical-align:middle;padding-left:30px;padding-right:30px}.ac-modal.-setting .ac-modal__dialog__footer .ac-ipicker__selection{display:inline-block;vertical-align:middle;text-align:center;width:68px;height:68px;line-height:58px;background:#E5E5E5;margin-right:15px;color:#404040}.ac-modal.-setting .ac-modal__dialog__footer .ac-ipicker__selection .dashicons{width:68px;height:68px;line-height:68px;font-size:30px}.ac-modal.-iconpicker .ac-modal__dialog__content{overflow:hidden;overflow-y:scroll}
|
assets/css/admin-welcome.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:""}.cpacicon-segment::before{content:""}.cpac-content-body hr{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:none repeat scroll 0 0 transparent;border-color:#DFDFDF;border-image:none;border-style:solid;border-width:1px 0 0;clear:both;margin:30px 0;opacity:0.2}#cpac-welcome.about-wrap div.error{display:block !important}.cpac-alert{display:inline-block;background:none repeat scroll 0 0 #FCF8E3;border:1px solid #FBEED5;border-radius:4px 4px 4px 4px;color:#C09853;margin:20px 0;padding:16px 14px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.cpac-alert p{margin:0}.cpac-alert.cpac-alert-success{background-color:#DFF0D8;border-color:#D6E9C6;color:#468847}.cpac-alert.cpac-alert-error{background-color:#F2DEDE;border-color:#EED3D7;color:#B94A48}.cpac-alert a.button-primary{height:28px;line-height:28px;display:inline-block}#cpac-download-add-ons-table{max-width:600px}.wp-core-ui .button-large{height:40px;line-height:40px;font-size:16px;padding:0 15px;text-shadow:0 1px 0 rgba(0,0,0,0.5)}
|
1 |
+
@font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2"),url("../fonts/cpac_icons.woff") format("woff");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:""}.cpacicon-segment::before{content:""}.cpac-content-body hr{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:none repeat scroll 0 0 transparent;border-color:#DFDFDF;border-image:none;border-style:solid;border-width:1px 0 0;clear:both;margin:30px 0;opacity:0.2}#cpac-welcome.about-wrap div.error{display:block !important}.cpac-alert{display:inline-block;background:none repeat scroll 0 0 #FCF8E3;border:1px solid #FBEED5;border-radius:4px 4px 4px 4px;color:#C09853;margin:20px 0;padding:16px 14px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.cpac-alert p{margin:0}.cpac-alert.cpac-alert-success{background-color:#DFF0D8;border-color:#D6E9C6;color:#468847}.cpac-alert.cpac-alert-error{background-color:#F2DEDE;border-color:#EED3D7;color:#B94A48}.cpac-alert a.button-primary{height:28px;line-height:28px;display:inline-block}#cpac-download-add-ons-table{max-width:600px}.wp-core-ui .button-large{height:40px;line-height:40px;font-size:16px;padding:0 15px;text-shadow:0 1px 0 rgba(0,0,0,0.5)}
|
assets/css/table.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:""}.cpacicon-segment::before{content:""}.ac-modal{position:fixed;overflow:auto;z-index:100000;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.5);display:none}.ac-modal.-active{display:flex;align-items:center;justify-content:center}.ac-modal__dialog{border:1px solid #C8C8C8;background:#fff;position:fixed;width:650px;max-width:90%}.ac-modal__dialog__header{background:#f5f5f5;font-size:18px;line-height: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;max-height:calc(100vh - 200px);overflow:scroll}.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}@media only screen and (max-width: 720px){.ac-modal__dialog__footer__content{display:block}.ac-modal__dialog__footer .button{margin-left:0;margin-top:10px}}.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}.ac-table-actions{display:none;position:relative;z-index:20;float:left;white-space:nowrap;margin-right:5px;margin-left:1px;margin-top:3px;margin-bottom:5px}.ac-table-actions.-init{display:block}.ac-table-actions .ac-table-actions-buttons{white-space:nowrap;display:inline-block;vertical-align:top}.ac-table-actions .ac-table-actions-buttons .ac-table-button{float:left;border-radius:0;border-right:none}.ac-table-actions .ac-table-actions-buttons .ac-table-button:first-child{border-radius:3px 0 0 3px}.ac-table-actions .ac-table-actions-buttons .ac-table-button:last-child,.ac-table-actions .ac-table-actions-buttons .ac-table-button.last{border-radius:0 3px 3px 0;border-right:1px solid #ccc}.ac-table-actions .ac-table-actions-buttons .ac-table-button:last-child.active,.ac-table-actions .ac-table-actions-buttons .ac-table-button.last.active{border-right:1px solid #008EC2}.ac-table-actions .ac-table-actions-buttons .ac-table-button:last-child:first-child,.ac-table-actions .ac-table-actions-buttons .ac-table-button.last:first-child{border-radius:3px}.ac-table-actions .ac-table-button{display:inline-block;padding:2px 12px;cursor:pointer;color:#555;background:#f7f7f7;text-decoration:none;font-size:13px;height:24px;line-height:24px;text-align:center;border:1px solid #CCCCCC;transform:translateX(-1px);border-radius:3px}.ac-table-actions .ac-table-button:focus,.ac-table-actions .ac-table-button:active{outline:none;box-shadow:none}.ac-table-actions .ac-table-button:hover{background:#ddd;color:#4d4d4d}.ac-table-actions .ac-table-button .dashicons{font-size:14px;width:14px;height:14px;line-height:24px}.ac-table-actions .ac-table-button.disabled{background:#ddd;color:#aaa;cursor:not-allowed}.ac-table-actions .ac-table-button.active{background:#00A0D2;border:1px solid #008EC2;color:#fff}.ac-table-actions .ac-table-button.active+.ac-table-button{border-left:none}.ac-table-actions .ac-table-button.-inline-edit .dashicons{font-size:18px;margin-left:-2px}.ac-table-actions .ac-table-button.-toggle{background:none;border:1px solid transparent;padding-left:4px;padding-right:4px;transform:translateY(-1px)}.ac-table-actions .ac-table-button.-toggle .ac-toggle__switch{vertical-align:middle;margin-top:-3px;margin-right:1px;color:#888}.ac-table-actions .ac-table-button__caret{display:inline-block;vertical-align:middle;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #6F6F6F;transition:transform .2s}.ac-table-actions .ac-table-button.-open{color:#0072AA}.ac-table-actions .ac-table-button.-open .ac-table-button__caret{transform:rotate(180deg)}.ac-toggle{display:inline-block;white-space:nowrap}.ac-toggle input{position:absolute;left:-3000em}.ac-toggle__switch{display:inline-block;background:#ccc;border-radius:8px;width:30px;height:16px;position:relative;transition:background-color .3s}.ac-toggle__switch__on,.ac-toggle__switch__off{font-size:11px;font-weight:bold;color:#fff;position:absolute;top:5px;line-height:11px}.ac-toggle__switch__off{right:6px;color:#555}.ac-toggle__switch__on{left:8px}.ac-toggle__switch__track{border-radius:50%;display:inline-block;background:#fff;position:absolute;left:3px;top:3px;height:10px;width:10px;transition:all .1s}.ac-toggle input:checked+.ac-toggle__switch{background:#1e8cbe}.ac-toggle input:checked+.ac-toggle__switch .ac-toggle__switch__track{left:calc(100% - 13px)}
|
1 |
+
@font-face{font-family:"cpac_icons";src:url("../fonts/cpac_icons.woff2") format("woff2"),url("../fonts/cpac_icons.woff") format("woff");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:""}.cpacicon-segment::before{content:""}.ac-modal{position:fixed;overflow:auto;z-index:100000;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.5);display:none}.ac-modal.-active{display:flex;align-items:center;justify-content:center}.ac-modal__dialog{border:1px solid #C8C8C8;background:#fff;position:fixed;width:650px;max-width:90%}.ac-modal__dialog__header{background:#f5f5f5;font-size:18px;line-height: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;max-height:calc(100vh - 200px);overflow:scroll}.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}@media only screen and (max-width: 720px){.ac-modal__dialog__footer__content{display:block}.ac-modal__dialog__footer .button{margin-left:0;margin-top:10px}}.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+.hidden+.row-actions>span a,.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+.hidden+.row-actions>span a: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+.hidden+.row-actions>span,.column-actions .cpac_use_icons+.row-actions>span{color:transparent;margin-right:-8px}.column-actions .cpac_use_icons+.hidden+.row-actions>span a,.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+.hidden+.row-actions>span a:before,.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+.hidden+.row-actions>span.edit a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.inline a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.trash a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.view a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.quickedit a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.approve a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unapprove a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.spam a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.untrash a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unspam a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.reply a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.delete a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.backend a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.visit a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.deactivate a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.archive a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unarchive a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.activate a,.column-actions .cpac_use_icons+.hidden+.row-actions>span.download a,.column-actions .cpac_use_icons+.row-actions>span.edit a,.column-actions .cpac_use_icons+.row-actions>span.inline a,.column-actions .cpac_use_icons+.row-actions>span.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+.hidden+.row-actions>span.edit a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.inline a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.trash a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.view a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.quickedit a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.approve a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unapprove a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.spam a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.untrash a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unspam a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.reply a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.delete a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.backend a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.visit a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.deactivate a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.archive a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unarchive a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.activate a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.download a:before,.column-actions .cpac_use_icons+.row-actions>span.edit a:before,.column-actions .cpac_use_icons+.row-actions>span.inline a:before,.column-actions .cpac_use_icons+.row-actions>span.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+.hidden+.row-actions>span.edit a:before,.column-actions .cpac_use_icons+.row-actions>span.edit a:before{content:"\f464"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.inline a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.quickedit a:before,.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+.hidden+.row-actions>span.trash a,.column-actions .cpac_use_icons+.row-actions>span.trash a{border-radius:3px;border:1px solid #ccc}.column-actions .cpac_use_icons+.hidden+.row-actions>span.trash a:before,.column-actions .cpac_use_icons+.row-actions>span.trash a:before{content:"\f182"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.trash a:hover,.column-actions .cpac_use_icons+.row-actions>span.trash a:hover{border-color:#999}.column-actions .cpac_use_icons+.hidden+.row-actions>span.view a:before,.column-actions .cpac_use_icons+.row-actions>span.view a:before{content:"\f177"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.unapprove a:before,.column-actions .cpac_use_icons+.row-actions>span.unapprove a:before{content:"\f158"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.approve a:before,.column-actions .cpac_use_icons+.row-actions>span.approve a:before{content:"\f147"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.spam a:before,.column-actions .cpac_use_icons+.row-actions>span.spam a:before{content:"\f117"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.reply a:before,.column-actions .cpac_use_icons+.row-actions>span.reply a:before{content:"\f473"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.untrash a:before,.column-actions .cpac_use_icons+.hidden+.row-actions>span.unspam a:before,.column-actions .cpac_use_icons+.row-actions>span.untrash a:before,.column-actions .cpac_use_icons+.row-actions>span.unspam a:before{content:"\f171"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.delete a:before,.column-actions .cpac_use_icons+.row-actions>span.delete a:before{content:"\f182"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.backend a:before,.column-actions .cpac_use_icons+.row-actions>span.backend a:before{content:"\f226"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.visit a:before,.column-actions .cpac_use_icons+.row-actions>span.visit a:before{content:"\f115"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.deactivate a:before,.column-actions .cpac_use_icons+.row-actions>span.deactivate a:before{content:"\f530"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.archive a:before,.column-actions .cpac_use_icons+.row-actions>span.archive a:before{content:"\f480"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.unarchive a:before,.column-actions .cpac_use_icons+.row-actions>span.unarchive a:before{content:"\f322"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.activate a:before,.column-actions .cpac_use_icons+.row-actions>span.activate a:before{content:"\f177"}.column-actions .cpac_use_icons+.hidden+.row-actions>span.download a:before,.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}.ac-table-actions{display:none;position:relative;z-index:20;float:left;white-space:nowrap;margin-right:5px;margin-left:1px;margin-top:3px;margin-bottom:5px}.ac-table-actions.-init{display:block}.ac-table-actions .ac-table-actions-buttons{white-space:nowrap;display:inline-block;vertical-align:top}.ac-table-actions .ac-table-actions-buttons .ac-table-button{float:left;border-radius:0;border-right:none}.ac-table-actions .ac-table-actions-buttons .ac-table-button:first-child{border-radius:3px 0 0 3px}.ac-table-actions .ac-table-actions-buttons .ac-table-button:last-child,.ac-table-actions .ac-table-actions-buttons .ac-table-button.last{border-radius:0 3px 3px 0;border-right:1px solid #ccc}.ac-table-actions .ac-table-actions-buttons .ac-table-button:last-child.active,.ac-table-actions .ac-table-actions-buttons .ac-table-button.last.active{border-right:1px solid #008EC2}.ac-table-actions .ac-table-actions-buttons .ac-table-button:last-child:first-child,.ac-table-actions .ac-table-actions-buttons .ac-table-button.last:first-child{border-radius:3px}.ac-table-actions .ac-table-button{display:inline-block;padding:2px 12px;cursor:pointer;color:#555;background:#f7f7f7;text-decoration:none;font-size:13px;height:24px;line-height:24px;text-align:center;border:1px solid #CCCCCC;transform:translateX(-1px);border-radius:3px}.ac-table-actions .ac-table-button:focus,.ac-table-actions .ac-table-button:active{outline:none;box-shadow:none}.ac-table-actions .ac-table-button:hover{background:#ddd;color:#4d4d4d}.ac-table-actions .ac-table-button .dashicons{font-size:14px;width:14px;height:14px;line-height:24px}.ac-table-actions .ac-table-button.disabled{background:#ddd;color:#aaa;cursor:not-allowed}.ac-table-actions .ac-table-button.active{background:#00A0D2;border:1px solid #008EC2;color:#fff}.ac-table-actions .ac-table-button.active+.ac-table-button{border-left:none}.ac-table-actions .ac-table-button.-inline-edit .dashicons{font-size:18px;margin-left:-2px}.ac-table-actions .ac-table-button.-toggle{background:none;border:1px solid transparent;padding-left:4px;padding-right:4px;transform:translateY(-1px)}.ac-table-actions .ac-table-button.-toggle .ac-toggle__switch{vertical-align:middle;margin-top:-3px;margin-right:1px;color:#888}.ac-table-actions .ac-table-button__caret{display:inline-block;vertical-align:middle;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #6F6F6F;transition:transform .2s}.ac-table-actions .ac-table-button.-open{color:#0072AA}.ac-table-actions .ac-table-button.-open .ac-table-button__caret{transform:rotate(180deg)}.ac-toggle{display:inline-block;white-space:nowrap}.ac-toggle input{position:absolute;left:-3000em}.ac-toggle__switch{display:inline-block;background:#ccc;border-radius:8px;width:30px;height:16px;position:relative;transition:background-color .3s}.ac-toggle__switch__on,.ac-toggle__switch__off{font-size:11px;font-weight:bold;color:#fff;position:absolute;top:5px;line-height:11px}.ac-toggle__switch__off{right:6px;color:#555}.ac-toggle__switch__on{left:8px}.ac-toggle__switch__track{border-radius:50%;display:inline-block;background:#fff;position:absolute;left:3px;top:3px;height:10px;width:10px;transition:all .1s}.ac-toggle input:checked+.ac-toggle__switch{background:#1e8cbe}.ac-toggle input:checked+.ac-toggle__switch .ac-toggle__switch__track{left:calc(100% - 13px)}.hide-column-tog+span .dashicons{transform:translateY(5px);margin-left:3px}
|
assets/fonts/template.scss
DELETED
@@ -1,38 +0,0 @@
|
|
1 |
-
$cpac_icons-draft: "\ea01";
|
2 |
-
$cpac_icons-move: "\ea02";
|
3 |
-
$cpac_icons-segment: "\ea03";
|
4 |
-
|
5 |
-
@font-face {
|
6 |
-
font-family: "cpac_icons";
|
7 |
-
src: url("./cpac_icons.woff2") format("woff2");
|
8 |
-
font-style: normal;
|
9 |
-
font-weight: 400;
|
10 |
-
}
|
11 |
-
|
12 |
-
%cpac_icons, [class^="cpac_icons-"], [class*=" cpac_icons-"] {
|
13 |
-
display: inline-block;
|
14 |
-
transform: translate(0, 0);
|
15 |
-
text-rendering: auto;
|
16 |
-
font: normal normal 400 14px/1 cpac_icons;
|
17 |
-
font-size: inherit;
|
18 |
-
-moz-osx-font-smoothing: grayscale;
|
19 |
-
-webkit-font-smoothing: antialiased;
|
20 |
-
}
|
21 |
-
|
22 |
-
.cpac_icons {
|
23 |
-
@extend %cpac_icons;
|
24 |
-
}
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
.cpac_icons-draft::before {
|
29 |
-
content: $cpac_icons-draft;
|
30 |
-
}
|
31 |
-
|
32 |
-
.cpac_icons-move::before {
|
33 |
-
content: $cpac_icons-move;
|
34 |
-
}
|
35 |
-
|
36 |
-
.cpac_icons-segment::before {
|
37 |
-
content: $cpac_icons-segment;
|
38 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/admin-general.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=
|
1 |
+
!function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=68)}({68:function(t,e,n){"use strict";jQuery(document).ready(function(t){if(0===t("#cpac").length)return!1;!function(t){t(".ac-pointer").each(function(){!function(t){var e=t,n=jQuery,r=e.attr("rel"),o=e.attr("data-pos"),i=e.attr("data-width"),a=e.attr("data-noclick"),c={at:"left top",my:"right top",edge:"right"},l=i||250;"right"===o&&(c={at:"right middle",my:"left middle",edge:"left"});"left"===o&&(c={at:"left middle",my:"right middle",edge:"right"});e.pointer({content:n("#"+r).html(),position:c,pointerWidth:l,pointerClass:"ac-wp-pointer wp-pointer wp-pointer-"+c.edge+(a?" noclick":"")}),a||e.click(function(){e.hasClass("open")?e.removeClass("open"):e.addClass("open")});e.hover(function(){n(this).pointer("open")},function(){var t=n(this);setTimeout(function(){t.hasClass("open")||0!=n(".ac-wp-pointer.hover").length||t.pointer("close")},100)}).on("close",function(){e.hasClass("open")||0!=n(".ac-wp-pointer.hover").length||e.pointer("close")})}(t(this))}),t(".ac-wp-pointer").hover(function(){t(this).addClass("hover")},function(){t(this).removeClass("hover"),t(".ac-pointer").trigger("close")})}(t),function(t){t("a.help").click(function(e){e.preventDefault();var n=t("#contextual-help-wrap");n.parent().show(),t('a[href="#tab-panel-cpac-'+t(this).attr("data-help")+'"]',n).trigger("click"),n.slideDown("fast",function(){n.focus()})})}(t)})}});
|
assets/js/admin-page-columns.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=68)}([function(t,e,n){var i=n(26)("wks"),r=n(12),o=n(1).Symbol,a="function"==typeof o;(t.exports=function(t){return i[t]||(i[t]=a&&o[t]||(a?o:r)("Symbol."+t))}).store=i},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){t.exports=!n(6)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,n){"use strict";var i=n(14),r=n(37)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),i(i.P+i.F*o,"Array",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(28)("find")},function(t,e,n){var i=n(7),r=n(19);t.exports=n(3)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var i=n(9),r=n(32),o=n(33),a=Object.defineProperty;e.f=n(3)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return a(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(1),r=n(5),o=n(11),a=n(12)("src"),u=Function.toString,c=(""+u).split("toString");n(10).inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,u){var s="function"==typeof n;s&&(o(n,"name")||r(n,"name",e)),t[e]!==n&&(s&&(o(n,a)||r(n,a,t[e]?""+t[e]:c.join(String(e)))),t===i?t[e]=n:u?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||u.call(this)})},function(t,e,n){var i=n(2);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},function(t,e,n){var i=n(36);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(1),r=n(10),o=n(5),a=n(8),u=n(13),c=function(t,e,n){var s,l,f,d,h=t&c.F,v=t&c.G,p=t&c.S,m=t&c.P,g=t&c.B,y=v?i:p?i[e]||(i[e]={}):(i[e]||{}).prototype,b=v?r:r[e]||(r[e]={}),_=b.prototype||(b.prototype={});for(s in v&&(n=e),n)f=((l=!h&&y&&void 0!==y[s])?y:n)[s],d=g&&l?u(f,i):m&&"function"==typeof f?u(Function.call,f):f,y&&a(y,s,f,t&c.U),b[s]!=f&&o(b,s,d),m&&_[s]!=f&&(_[s]=f)};i.core=r,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,t.exports=c},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(17);t.exports=function(t){return Object(i(t))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports={}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var i=n(25),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(24),r=n(17);t.exports=function(t){return i(r(t))}},function(t,e,n){for(var i=n(29),r=n(30),o=n(8),a=n(1),u=n(5),c=n(18),s=n(0),l=s("iterator"),f=s("toStringTag"),d=c.Array,h={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},v=r(h),p=0;p<v.length;p++){var m,g=v[p],y=h[g],b=a[g],_=b&&b.prototype;if(_&&(_[l]||u(_,l,d),_[f]||u(_,f,g),c[g]=d,y))for(m in i)_[m]||o(_,m,i[m],!0)}},function(t,e,n){var i=n(2),r=n(1).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){var i=n(15);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(10),r=n(1),o=r["__core-js_shared__"]||(r["__core-js_shared__"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:i.version,mode:n(27)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=!1},function(t,e,n){var i=n(0)("unscopables"),r=Array.prototype;void 0==r[i]&&n(5)(r,i,{}),t.exports=function(t){r[i][t]=!0}},function(t,e,n){"use strict";var i=n(28),r=n(42),o=n(18),a=n(21);t.exports=n(43)(Array,"Array",function(t,e){this._t=a(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):r(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(t,e,n){var i=n(45),r=n(34);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e,n){var i=n(26)("keys"),r=n(12);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){t.exports=!n(3)&&!n(6)(function(){return 7!=Object.defineProperty(n(23)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var i=n(2);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var i=n(7).f,r=n(11),o=n(0)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,n){var i=n(13),r=n(24),o=n(16),a=n(20),u=n(38);t.exports=function(t,e){var n=1==t,c=2==t,s=3==t,l=4==t,f=6==t,d=5==t||f,h=e||u;return function(e,u,v){for(var p,m,g=o(e),y=r(g),b=i(u,v,3),_=a(y.length),k=0,C=n?h(e,_):c?h(e,0):void 0;_>k;k++)if((d||k in y)&&(m=b(p=y[k],k,g),t))if(n)C[k]=m;else if(m)switch(t){case 3:return!0;case 5:return p;case 6:return k;case 2:C.push(p)}else if(l)return!1;return f?-1:s||l?l:C}}},function(t,e,n){var i=n(39);t.exports=function(t,e){return new(i(t))(e)}},function(t,e,n){var i=n(2),r=n(40),o=n(0)("species");t.exports=function(t){var e;return r(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!r(e.prototype)||(e=void 0),i(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var i=n(15);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var r=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.modals=[],this.number=1}return function(t,e,n){e&&i(t.prototype,e),n&&i(t,n)}(t,[{key:"register",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return e||(e="m"+this.number),this.modals[e]=t,this.number++,t}},{key:"get",value:function(t){return!!this.modals[t]&&this.modals[t]}}],[{key:"init",value:function(){return void 0===AdminColumns.Modals&&(AdminColumns.Modals=new this),AdminColumns.Modals}}]),t}();t.exports=r},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){"use strict";var i=n(27),r=n(14),o=n(8),a=n(5),u=n(18),c=n(50),s=n(35),l=n(55),f=n(0)("iterator"),d=!([].keys&&"next"in[].keys()),h=function(){return this};t.exports=function(t,e,n,v,p,m,g){c(n,e,v);var y,b,_,k=function(t){if(!d&&t in j)return j[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},C=e+" Iterator",x="values"==p,w=!1,j=t.prototype,S=j[f]||j["@@iterator"]||p&&j[p],E=S||k(p),A=p?x?k("entries"):E:void 0,$="Array"==e&&j.entries||S;if($&&(_=l($.call(new t)))!==Object.prototype&&_.next&&(s(_,C,!0),i||"function"==typeof _[f]||a(_,f,h)),x&&S&&"values"!==S.name&&(w=!0,E=function(){return S.call(this)}),i&&!g||!d&&!w&&j[f]||a(j,f,E),u[e]=E,u[C]=h,p)if(y={values:x?E:k("values"),keys:m?E:k("keys"),entries:A},g)for(b in y)b in j||o(j,b,y[b]);else r(r.P+r.F*(d||w),e,y);return y}},function(t,e,n){var i=n(9),r=n(51),o=n(34),a=n(31)("IE_PROTO"),u=function(){},c=function(){var t,e=n(23)("iframe"),i=o.length;for(e.style.display="none",n(54).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),c=t.F;i--;)delete c.prototype[o[i]];return c()};t.exports=Object.create||function(t,e){var n;return null!==t?(u.prototype=i(t),n=new u,u.prototype=null,n[a]=t):n=c(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(11),r=n(21),o=n(52)(!1),a=n(31)("IE_PROTO");t.exports=function(t,e){var n,u=r(t),c=0,s=[];for(n in u)n!=a&&i(u,n)&&s.push(n);for(;e.length>c;)i(u,n=e[c++])&&(~o(s,n)||s.push(n));return s}},function(t,e,n){var i=n(16),r=n(30);n(56)("keys",function(){return function(t){return r(i(t))}})},function(t,e,n){n(48)("replace",2,function(t,e,n){return[function(i,r){"use strict";var o=t(this),a=void 0==i?void 0:i[e];return void 0!==a?a.call(i,o,r):n.call(String(o),i,r)},n]})},function(t,e,n){"use strict";var i=n(5),r=n(8),o=n(6),a=n(17),u=n(0);t.exports=function(t,e,n){var c=u(t),s=n(a,c,""[t]),l=s[0],f=s[1];o(function(){var e={};return e[c]=function(){return 7},7!=""[t](e)})&&(r(String.prototype,t,l),i(RegExp.prototype,c,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var i=n(7).f,r=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in r||n(3)&&i(r,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(t){return""}}})},function(t,e,n){"use strict";var i=n(44),r=n(19),o=n(35),a={};n(5)(a,n(0)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(a,{next:r(1,n)}),o(t,e+" Iterator")}},function(t,e,n){var i=n(7),r=n(9),o=n(30);t.exports=n(3)?Object.defineProperties:function(t,e){r(t);for(var n,a=o(e),u=a.length,c=0;u>c;)i.f(t,n=a[c++],e[n]);return t}},function(t,e,n){var i=n(21),r=n(20),o=n(53);t.exports=function(t){return function(e,n,a){var u,c=i(e),s=r(c.length),l=o(a,s);if(t&&n!=n){for(;s>l;)if((u=c[l++])!=u)return!0}else for(;s>l;l++)if((t||l in c)&&c[l]===n)return t||l||0;return!t&&-1}}},function(t,e,n){var i=n(25),r=Math.max,o=Math.min;t.exports=function(t,e){return(t=i(t))<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(1).document;t.exports=i&&i.documentElement},function(t,e,n){var i=n(11),r=n(16),o=n(31)("IE_PROTO"),a=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},function(t,e,n){var i=n(14),r=n(10),o=n(6);t.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],a={};a[t]=e(n),i(i.S+i.F*o(function(){n(1)}),"Object",a)}},,function(t,e,n){"use strict";n(22);var i=function(t){return t&&t.__esModule?t:{default:t}}(n(41));function r(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),e&&(this.el=e,this.dialog=e.querySelector(".ac-modal__dialog"),this.initEvents())}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"initEvents",value:function(){var e=this,n=this;document.addEventListener("keydown",function(t){var n=event.key;e.isOpen()&&"Escape"===n&&e.close()});var i=this.el.querySelectorAll('[data-dismiss="modal"], .ac-modal__dialog__close');i.length>0&&i.forEach(function(t){t.addEventListener("click",function(t){t.preventDefault(),n.close()})}),this.el.addEventListener("click",function(){n.close()}),this.el.querySelector(".ac-modal__dialog").addEventListener("click",function(t){t.stopPropagation()}),void 0===document.querySelector("body").dataset.ac_modal_init&&(t.initGlobalEvents(),document.querySelector("body").dataset.ac_modal_init=1),this.el.AC_MODAL=n}},{key:"isOpen",value:function(){return this.el.classList.contains("-active")}},{key:"close",value:function(){this.onClose(),this.el.classList.remove("-active")}},{key:"open",value:function(){this.onOpen(),this.el.classList.add("-active")}},{key:"onClose",value:function(){}},{key:"onOpen",value:function(){}}],[{key:"initGlobalEvents",value:function(){jQuery(document).on("click","[data-ac-open-modal]",function(t){t.preventDefault();var e=t.target.dataset.acOpenModal,n=document.querySelector(e);n&&n.AC_MODAL&&n.AC_MODAL.open()}),jQuery(document).on("click","[data-ac-modal]",function(t){t.preventDefault();var e=jQuery(this).data("ac-modal");i.default.init().get(e)&&i.default.init().get(e).open()})}}]),t}();t.exports=o},,,,,,,,,,function(t,e,n){t.exports=n(69)},function(t,e,n){"use strict";var i=x(n(70)),r=x(n(41)),o=x(n(72)),a=x(n(58)),u=x(n(73)),c=x(n(74)),s=x(n(75)),l=x(n(76)),f=x(n(77)),d=x(n(78)),h=x(n(79)),v=x(n(80)),p=x(n(81)),m=x(n(82)),g=x(n(83)),y=x(n(84)),b=x(n(85)),_=x(n(86)),k=x(n(87)),C=x(n(88));function x(t){return t&&t.__esModule?t:{default:t}}var w=$=n(89);AC.Column=new o.default,AdminColumns.Column=AC.Column,w(document).on("AC_Form_Loaded",function(){AdminColumns.Column.registerEvent("toggle",s.default).registerEvent("remove",l.default).registerEvent("clone",f.default).registerEvent("refresh",d.default).registerEvent("type_selector",h.default).registerEvent("indicator",v.default).registerEvent("label",p.default.label).registerEvent("label_setting",p.default.setting).registerEvent("addons",m.default).registerSetting("date",b.default).registerSetting("image_size",g.default).registerSetting("pro",_.default).registerSetting("sub_setting_toggle",y.default).registerSetting("width",k.default).registerSetting("label",C.default)}),w(document).ready(function(){AC.Form=new i.default("#cpac .ac-columns form"),r.default.init().register(new a.default(document.querySelector("#ac-modal-pro")),"pro"),(new u.default).init(),new c.default(".sidebox#direct-feedback")})},function(t,e,n){"use strict";n(49),n(4),n(29),n(46),n(22);var i=function(t){return t&&t.__esModule?t:{default:t}}(n(71));function r(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.$form=jQuery(e),this.$container=jQuery("#cpac .ac-admin"),this.columns={},jQuery(document).trigger("AC_Form_Loaded"),this.init()}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"init",value:function(){this.initColumns(),this.bindFormEvents(),this.bindOrdering(),jQuery(document).trigger("AC_Form_Ready")}},{key:"bindOrdering",value:function(){this.$form.hasClass("ui-sortable")?this.$form.sortable("refresh"):this.$form.sortable({items:".ac-column",handle:".column_sort"})}},{key:"originalColumns",value:function(){var t=this,e=[];return Object.keys(t.columns).forEach(function(n){var i=t.columns[n];i.isOriginal()&&e.push(i.type)}),e}},{key:"bindFormEvents",value:function(){var t=this,e=jQuery(".sidebox a.submit, .column-footer a.submit");e.on("click",function(){e.attr("disabled","disabled"),t.submitForm().always(function(){e.removeAttr("disabled","disabled")})}),t.$container.find(".add_column").on("click",function(){t.addColumn()});var n=jQuery("#cpac .ac-boxes");n.hasClass("disabled")&&n.find(".ac-column").each(function(t,e){jQuery(e).data("column").disable(),jQuery(e).find("input, select").prop("disabled",!0)}),jQuery("a[data-clear-columns]").on("click",function(){t.resetColumns()})}},{key:"initColumns",value:function(){var t=this;t.columns=[],this.$form.find(".ac-column").each(function(){var e=jQuery(this),n=new i.default(e);n.bindEvents(),e.data("column",n),t.columns[n.name]=n})}},{key:"reindexColumns",value:function(){var t=this;t.columns=[],this.$form.find(".ac-column").each(function(){var e=jQuery(this).data("column");t.columns[e.name]=e})}},{key:"resetColumns",value:function(){var t=this;Object.keys(this.columns).forEach(function(e){t.columns[e].destroy()})}},{key:"serialize",value:function(){return this.$form.serialize()}},{key:"submitForm",value:function(){var t=this,e=jQuery.post(ajaxurl,{action:"ac_columns_save",data:this.serialize(),_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,original_columns:AC.original_columns},function(e){e&&(e.success?(t.showMessage(e.data,"updated"),t.$container.addClass("stored")):e.data&&t.showMessage(e.data.message,"notice notice-warning"))},"json");return e.fail(function(t){}),jQuery(document).trigger("AC_Form_AfterUpdate",[t.$container]),e}},{key:"showMessage",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"updated",n=jQuery('<div class="ac-message hidden '+e+'"><p>'+t+"</p></div>");this.$container.find(".ac-message").stop().remove(),this.$container.find(".ac-boxes").before(n),n.slideDown()}},{key:"cloneColumn",value:function(t){return this._addColumnToForm(new i.default(t).clone(),t.hasClass("opened"))}},{key:"addColumn",value:function(){var t=jQuery("#add-new-column-template").find(".ac-column").clone(),e=new i.default(t).create();return this._addColumnToForm(e)}},{key:"removeColumn",value:function(t){this.columns[t]&&(this.columns[t].remove(),delete this.columns[t])}},{key:"_addColumnToForm",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return this.columns[t.name]=t,this.$form.append(t.$el),e&&t.open(),t.$el.hide().slideDown(),jQuery("html, body").animate({scrollTop:t.$el.offset().top-58},300),jQuery(document).trigger("AC_Column_Added",[t]),t}}]),t}();t.exports=o},function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}n(29),n(46),n(22),n(47),n(4),n(49);var r=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.$el=e,this.el=e[0],this.settings=[],this._type=this.$el.data("type")}return function(t,e,n){e&&i(t.prototype,e),n&&i(t,n)}(t,[{key:"isOriginal",value:function(){return 1===this.$el.data("original")}},{key:"isDisabled",value:function(){return this.$el.hasClass("disabled")}},{key:"disable",value:function(){return this.$el.addClass("disabled"),this}},{key:"enable",value:function(){return this.$el.removeClass("disabled"),this}},{key:"initNewInstance",value:function(){var t="_new_column_"+AC.Column.getNewIncementalName(),e=this.name;return this.$el.find("input, select, label").each(function(n,i){var r=jQuery(i);r.attr("name")&&r.attr("name",r.attr("name").replace("columns[".concat(e,"]"),"columns[".concat(t,"]"))),r.attr("id")&&r.attr("id",r.attr("id").replace("-".concat(e,"-"),"-".concat(t,"-")))}),this.name=t,AC.incremental_column_name++,this}},{key:"bindEvents",value:function(){var t=this;return t.$el.data("column",t),Object.keys(AC.Column.events).forEach(function(e){t.isBound(e)||(AC.Column.events[e](t),t.bind(e))}),this.bindSettings(),jQuery(document).trigger("AC_Column_InitSettings",[t]),this}},{key:"bindSettings",value:function(){var t=this;Object.keys(AC.Column.settings).forEach(function(e){t.isBound(e)||(AC.Column.settings[e](t),t.bind(e))})}},{key:"isBound",value:function(t){return this.$el.data(t)}},{key:"bind",value:function(t){this.$el.data(t,!0)}},{key:"destroy",value:function(){this.$el.remove()}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:350,e=this;this.$el.addClass("deleting").animate({opacity:0,height:0},t,function(){e.destroy()})}},{key:"toggle",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:150;this.$el.hasClass("opened")?this.close(t):this.open(t)}},{key:"close",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.$el.removeClass("opened").find(".ac-column-body").slideUp(t)}},{key:"open",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.$el.addClass("opened").find(".ac-column-body").slideDown(t)}},{key:"showMessage",value:function(t){this.$el.find(".ac-column-setting--type .msg").html(t).show()}},{key:"switchToType",value:function(t){var e=this;return jQuery.ajax({url:ajaxurl,method:"post",dataType:"json",data:{action:"ac_column_select",type:t,current_original_columns:AC.Form.originalColumns(),original_columns:AC.original_columns,list_screen:AC.list_screen,layout:AC.layout,_ajax_nonce:AC._ajax_nonce},success:function(n){if(!0===n.success){var i=jQuery(n.data);e.$el.replaceWith(i),e.$el=i,e.el=i[0],e._type=t,e.initNewInstance(),e.bindEvents(),e.open(),jQuery(document).trigger("AC_Column_Change",[e])}else e.showMessage(n.data.error)}})}},{key:"refresh",value:function(){var t=this,e=this.$el.find(":input").serializeArray(),n={action:"ac_column_refresh",_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,column_name:this.name,original_columns:AC.original_columns};return jQuery.each(n,function(t,n){e.push({name:t,value:n})}),jQuery.ajax({type:"post",url:ajaxurl,data:e,success:function(e){if(!0===e.success){var n=jQuery(e.data);t.$el.replaceWith(n),t.$el=n,t.el=n[0],t.bindEvents(),t.open(),jQuery(document).trigger("AC_Column_Refresh",[t])}}})}},{key:"create",value:function(){return this.initNewInstance(),this.bindEvents(),jQuery(document).trigger("AC_Column_Created",[self]),this}},{key:"clone",value:function(){var e=this.$el.clone();e.data("column-name",this.$el.data("column-name"));var n=new t(e);return n.initNewInstance(),n.bindEvents(),n}},{key:"name",get:function(){return this.$el.data("column-name")},set:function(t){this.$el.data("column-name",t)}},{key:"type",get:function(){return this._type},set:function(t){this.$el.data("type",t)}}]),t}();t.exports=r},function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var r=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.events={},this.settings={},this.incremental_name=0}return function(t,e,n){e&&i(t.prototype,e),n&&i(t,n)}(t,[{key:"registerSetting",value:function(t,e){var n="s_"+t;return this.settings[n]&&console.error("Setting key already exists: "+t),this.settings[n]=e,this}},{key:"registerEvent",value:function(t,e){var n="e_"+t;return this.settings[n]&&console.error("Event key already exists: "+n),this.events[n]=e,this}},{key:"getNewIncementalName",value:function(){var t=this.incremental_name;return this.incremental_name++,t}}]),t}();t.exports=r},function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var r=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}return function(t,e,n){e&&i(t.prototype,e),n&&i(t,n)}(t,[{key:"init",value:function(){var t=jQuery;t("#ac_list_screen").on("change",function(){t(".view-link").hide(),t(this).parents("form").submit(),t(this).prop("disabled",!0).next(".spinner").css("display","inline-block")})}}]),t}();t.exports=r},function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}n(4);var r=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.$el=jQuery(e),this.init()}return function(t,e,n){e&&i(t.prototype,e),n&&i(t,n)}(t,[{key:"init",value:function(){var t=this.$el;t.find("#feedback-choice a.no").click(function(e){e.preventDefault(),t.find("#feedback-choice").slideUp(),t.find("#feedback-support").slideDown()}),t.find("#feedback-choice a.yes").click(function(e){e.preventDefault(),t.find("#feedback-choice").slideUp(),t.find("#feedback-rate").slideDown()})}}]),t}();t.exports=r},function(t,e,n){"use strict";n(4);t.exports=function(t){t.$el.find('[data-toggle="column"]').click(function(e){e.preventDefault(),t.toggle()}).css("cursor","pointer")}},function(t,e,n){"use strict";n(49),n(4);t.exports=function(t){t.$el.find(".remove-button").click(function(e){e.preventDefault(),AC.Form.removeColumn(t.name)})}},function(t,e,n){"use strict";n(4);t.exports=function(t){t.$el.find(".clone-button").click(function(e){e.preventDefault(),t.isOriginal()||AC.Form.cloneColumn(t.$el)})}},function(t,e,n){"use strict";n(4);t.exports=function(t){var e=jQuery;t.$el.find('[data-refresh="column"]').on("change",function(){e(document).trigger("AC.column.prerefresh",t.$el),t.$el.addClass("loading"),setTimeout(function(){t.refresh().always(function(){t.$el.removeClass("loading")})},200)})}},function(t,e,n){"use strict";n(4);t.exports=function(t){var e=jQuery;t.$el.find("select.ac-setting-input_type").change(function(){t.$el.addClass("loading"),t.switchToType(e(this).val()).always(function(){t.$el.removeClass("loading"),AC.Form.reindexColumns()})})}},function(t,e,n){"use strict";n(4);t.exports=function(t){var e=t.$el;e.find(".ac-column-header [data-indicator-toggle]").each(function(){var t=jQuery,n=t(this),i=t(this).data("setting"),r=e.find(".ac-column-setting[data-setting="+i+"]").find(".col-input:first .ac-setting-input:first input[type=radio]");n.unbind("click").on("click",function(i){i.preventDefault(),e.hasClass("disabled")||(n.toggleClass("on"),t(this).hasClass("on")?r.filter("[value=on]").prop("checked",!0).trigger("click").trigger("change"):r.filter("[value=off]").prop("checked",!0).trigger("click").trigger("change"))}),r.on("change",function(){e.hasClass("disabled")||("on"===r.filter(":checked").val()?n.addClass("on"):n.removeClass("on"))})})}},function(t,e,n){"use strict";n(4);t.exports={label:function(t){var e=t.$el;e.find('select[data-label="update"]').change(function(){var t=e.find("input.ac-setting-input_label"),n=jQuery(this).find("option:selected").text();t.val(n),t.trigger("change")}),setTimeout(function(){var t=e.find(".column_label .toggle");jQuery.trim(t.html())&&t.width()<1&&t.html(e.find(".column_type .inner").html())},50)},setting:function(t){var e=t.$el;e.find(".ac-column-setting--label input").bind("keyup change",function(){var t=jQuery(this).val();jQuery(this).closest(".ac-column").find("td.column_label .inner > a.toggle").html(t)}).trigger("change"),e.find(".ac-column-body .col-label .label").hover(function(){jQuery(this).parents(".col-label").find("div.tooltip").show()},function(){jQuery(this).parents(".col-label").find("div.tooltip").hide()})}}},function(t,e,n){"use strict";n(4);t.exports=function(t){var e=jQuery,n=t.$el;n.find("[data-trigger] label").on("click",function(){var t=e(this).closest("td.input").data("trigger"),i=e("input",this).val(),r=n.find('[data-indicator-id="'+t+'"]').removeClass("on");"on"===i&&r.addClass("on");var o=n.find('[data-handle="'+t+'"]').addClass("hide");"on"===i&&o.removeClass("hide")}),n.find("[data-trigger]").each(function(){var t=e(this).data("trigger"),i=n.find('[data-handle="'+t+'"]').addClass("hide");"on"===e("input:checked",this).val()&&i.removeClass("hide")})}},function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var r=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.column=e,this.setting=e.$el[0].querySelector(".ac-column-setting--image"),this.setting&&(this.field=this.setting.querySelector(".ac-setting-input select"),this.initState(),this.bindEvents())}return function(t,e,n){e&&i(t.prototype,e),n&&i(t,n)}(t,[{key:"getValue",value:function(){return this.field.value}},{key:"bindEvents",value:function(){var t=this;this.field.addEventListener("change",function(e){t.initState()})}},{key:"initState",value:function(){"cpac-custom"===this.getValue()?this.showSubsettings():this.hideSubsettings()}},{key:"hideSubsettings",value:function(){for(var t=this.setting.querySelectorAll(".ac-column-setting"),e=0;e<t.length;++e)t[e].style.display="none"}},{key:"showSubsettings",value:function(){for(var t=this.setting.querySelectorAll(".ac-column-setting"),e=0;e<t.length;++e)t[e].style.display="table"}},{key:"setValue",value:function(t){return this.field.value=t,this.trigger(this.field,"change"),this}},{key:"setWidth",value:function(t){var e=this.setting.querySelector('.ac-column-setting [name*="image_size_w"]');return e.value=t,this.trigger(e,"change"),this}},{key:"setHeight",value:function(t){var e=this.setting.querySelector('.ac-column-setting [name*="image_size_h"]');return e.value=t,this.trigger(e,"change"),this}},{key:"setSize",value:function(t,e){return this.setWidth(t),this.setHeight(e),this}},{key:"trigger",value:function(t,e){return t.dispatchEvent(new Event(e)),this}}]),t}();t.exports=function(t){t.settings.image=new r(t)}},function(t,e,n){"use strict";n(4);t.exports=function(t){var e=jQuery,n={value_show:"on",subfield:".ac-column-setting"};function i(t,e){var i=e.filter(":checked").val(),r=t.find(n.subfield);n.value_show===i?r.show():r.hide()}t.$el.find(".ac-column-setting--filter,.ac-column-setting--sort,.ac-column-setting--edit").each(function(){var t=e(this),n=e(this).find('.ac-setting-input input[type="radio"]');i(t,n),n.on("change",function(){i(t,n)})})}},function(t,e,n){"use strict";n(4);t.exports=function(t){var e=jQuery;t.$el.find(".ac-column-setting--date").each(function(){var t=e(this),n=t.find("input.custom"),i=t.find(".ac-setting-input-date__custom"),r=t.find(".ac-setting-input-date__value"),o=t.find(".ac-setting-input-date__example"),a=t.find("input[type=radio]:checked"),u=t.find(".help-msg");t.find("input[type=radio]").on("change",function(){var t=e(this),n=t.closest("label"),a=n.find("code").text(),c=n.find(".ac-setting-input-date__more").html();a&&i.val(a).trigger("change"),t.hasClass("diff")&&(i.val(""),o.text("")),i.prop("disabled",!0),t.hasClass("custom")&&(t.val(i.val()),i.prop("disabled",!1),u.show()),u.hide(),c&&u.html(c).show(),r.val(t.val())}),i.on("change",function(){o.html('<span class="spinner is-active"></span>'),n.val(i.val());var t=e(this).val();t?(e.ajax({url:ajaxurl,method:"post",data:{action:"date_format",date:t}}).done(function(t){o.text(t)}),r.val(t)):o.text("")}),a.trigger("change"),0===a.length&&n.trigger("click")})}},function(t,e,n){"use strict";n(4);t.exports=function(t){t.$el.find(".ac-column-setting--pro").each(function(){var t=jQuery(this);t.find("input").on("click",function(e){e.preventDefault(),t.find("[data-ac-open-modal]").trigger("click")})})}},function(t,e,n){"use strict";n(47),n(4),jQuery.fn.column_width_slider=function(){var t=jQuery,e=t(this).find(".ac-setting-input-width"),n=e.find(".description input"),i=e.find(".unit-select input").filter(":checked").val(),r=n.val(),o=e.find(".width-slider"),a=t(this).find(".ac-column-header .ac-column-heading-setting--width");"%"===i&&r>100&&(r=100),n.val(r),o.slider({range:"min",min:0,max:"%"===i?100:500,value:r,slide:function(t,e){n.val(e.value),a.trigger("update"),n.trigger("validate")}})};t.exports=function(t){var e=t.$el;e.find(".ac-column-setting--width").each(function(){e.column_width_slider();var t=e.find(".ac-column-header .ac-column-heading-setting--width");t.on("update",function(){var t=e.find(".ac-setting-input-width .description input").val(),n=e.find(".ac-setting-input-width .description .unit").text();t>0?$(this).text(t+n):$(this).text("")}),e.find(".ac-setting-input-width .unit-select label").on("click",function(){e.find("span.unit").text($(this).find("input").val()),e.column_width_slider(),t.trigger("update")});var n=e.find(".ac-setting-input-width .description input").on("keyup",function(){e.column_width_slider(),$(this).trigger("validate"),t.trigger("update")}).on("validate",function(){var t=n.val(),e=$.trim(t);$.isNumeric(e)||(e=e.replace(/\D/g,"")),e.length>3&&(e=e.substring(0,3)),e<=0&&(e=""),e!==t&&n.val(e)})})}},function(t,e,n){"use strict";n(22);var i=o(n(41)),r=o(n(58));function o(t){return t&&t.__esModule?t:{default:t}}function a(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var u=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.column=e,this.setting=e.el.querySelector(".ac-column-setting--label"),this.iconpicker=this.setting.querySelector(".-iconpicker"),this.iconpicker&&(this._dashicon=!1,this.modal=i.default.init().register(new r.default(this.setting.querySelector(".-iconpicker"))),this.field=this.setting.querySelector(".ac-setting-input_label"),this.initValue(),this.bindEvents())}return function(t,e,n){e&&a(t.prototype,e),n&&a(t,n)}(t,[{key:"initValue",value:function(){var t=this,e=document.createRange().createContextualFragment(this.getValue()).querySelector(".dashicons");e?e.classList.forEach(function(e){if(-1!==e.indexOf("dashicons-")){var n="."+e,i=t.iconpicker.querySelector(n);i&&(i.parentElement.classList.add("active"),t.setIconSelection(i.parentElement.dataset.dashicon))}}):t.setIconSelection(!1)}},{key:"bindEvents",value:function(){var t=this;this.setting.querySelector(".ac-setting-label-icon").addEventListener("click",function(e){e.preventDefault(),t.modal.open()}),this.setting.querySelector('[data-action="submit"]').addEventListener("click",function(e){e.preventDefault(),t.getIconSelection()&&t.setDashicon(t.getIconSelection()),t.modal.close()}),this.iconpicker.querySelectorAll(".ac-ipicker__icon").forEach(function(e){e.addEventListener("click",function(n){n.preventDefault();var i=this.dataset.dashicon;i&&t.setIconSelection(i),t.setting.querySelectorAll(".ac-ipicker__icon").forEach(function(t){t.classList.remove("active")}),e.classList.add("active")})})}},{key:"getValue",value:function(){return this.field.value}},{key:"setValue",value:function(t){this.field.value=t;var e=new Event("change");this.field.dispatchEvent(e)}},{key:"setIconSelection",value:function(t){var e=this.setting.querySelector(".ac-ipicker__selection");this._dashicon=t,e.innerHTML='<span class="dashicons dashicons-'.concat(t,'"></span>'),e.style.visibility=t?"visible":"hidden"}},{key:"getIconSelection",value:function(){return this._dashicon}},{key:"setDashicon",value:function(t){this.setValue('<span class="dashicons dashicons-'.concat(t,'"></span>'))}}]),t}();t.exports=function(t){t.settings.label=new u(t)}},function(t,e){t.exports=jQuery}]);
|
1 |
+
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=69)}([function(e,t,n){var i=n(26)("wks"),r=n(12),o=n(1).Symbol,a="function"==typeof o;(e.exports=function(e){return i[e]||(i[e]=a&&o[e]||(a?o:r)("Symbol."+e))}).store=i},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t,n){e.exports=!n(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){"use strict";var i=n(15),r=n(39)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),i(i.P+i.F*o,"Array",{find:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}}),n(28)("find")},function(e,t,n){var i=n(6),r=n(20);e.exports=n(2)?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var i=n(9),r=n(32),o=n(33),a=Object.defineProperty;t.f=n(2)?Object.defineProperty:function(e,t,n){if(i(e),t=o(t,!0),i(n),r)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,n){var i=n(1),r=n(5),o=n(11),a=n(12)("src"),u=Function.toString,c=(""+u).split("toString");n(10).inspectSource=function(e){return u.call(e)},(e.exports=function(e,t,n,u){var s="function"==typeof n;s&&(o(n,"name")||r(n,"name",t)),e[t]!==n&&(s&&(o(n,a)||r(n,a,e[t]?""+e[t]:c.join(String(t)))),e===i?e[t]=n:u?e[t]?e[t]=n:r(e,t,n):(delete e[t],r(e,t,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||u.call(this)})},function(e,t,n){var i=n(3);e.exports=function(e){if(!i(e))throw TypeError(e+" is not an object!");return e}},function(e,t){var n=e.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){var n=0,i=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+i).toString(36))}},function(e,t,n){var i=n(38);e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){for(var i=n(29),r=n(30),o=n(8),a=n(1),u=n(5),c=n(19),s=n(0),l=s("iterator"),f=s("toStringTag"),d=c.Array,h={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},v=r(h),p=0;p<v.length;p++){var m,g=v[p],y=h[g],b=a[g],_=b&&b.prototype;if(_&&(_[l]||u(_,l,d),_[f]||u(_,f,g),c[g]=d,y))for(m in i)_[m]||o(_,m,i[m],!0)}},function(e,t,n){var i=n(1),r=n(10),o=n(5),a=n(8),u=n(13),c=function(e,t,n){var s,l,f,d,h=e&c.F,v=e&c.G,p=e&c.S,m=e&c.P,g=e&c.B,y=v?i:p?i[t]||(i[t]={}):(i[t]||{}).prototype,b=v?r:r[t]||(r[t]={}),_=b.prototype||(b.prototype={});for(s in v&&(n=t),n)f=((l=!h&&y&&void 0!==y[s])?y:n)[s],d=g&&l?u(f,i):m&&"function"==typeof f?u(Function.call,f):f,y&&a(y,s,f,e&c.U),b[s]!=f&&o(b,s,d),m&&_[s]!=f&&(_[s]=f)};i.core=r,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var i=n(18);e.exports=function(e){return Object(i(e))}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){e.exports={}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,n){var i=n(25),r=Math.min;e.exports=function(e){return e>0?r(i(e),9007199254740991):0}},function(e,t,n){var i=n(24),r=n(18);e.exports=function(e){return i(r(e))}},function(e,t,n){var i=n(3),r=n(1).document,o=i(r)&&i(r.createElement);e.exports=function(e){return o?r.createElement(e):{}}},function(e,t,n){var i=n(16);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==i(e)?e.split(""):Object(e)}},function(e,t){var n=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:n)(e)}},function(e,t,n){var i=n(10),r=n(1),o=r["__core-js_shared__"]||(r["__core-js_shared__"]={});(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:i.version,mode:n(27)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(e,t){e.exports=!1},function(e,t,n){var i=n(0)("unscopables"),r=Array.prototype;void 0==r[i]&&n(5)(r,i,{}),e.exports=function(e){r[i][e]=!0}},function(e,t,n){"use strict";var i=n(28),r=n(44),o=n(19),a=n(22);e.exports=n(45)(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(e,t,n){var i=n(47),r=n(34);e.exports=Object.keys||function(e){return i(e,r)}},function(e,t,n){var i=n(26)("keys"),r=n(12);e.exports=function(e){return i[e]||(i[e]=r(e))}},function(e,t,n){e.exports=!n(2)&&!n(7)(function(){return 7!=Object.defineProperty(n(23)("div"),"a",{get:function(){return 7}}).a})},function(e,t,n){var i=n(3);e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if("function"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError("Can't convert object to primitive value")}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var i=n(6).f,r=n(11),o=n(0)("toStringTag");e.exports=function(e,t,n){e&&!r(e=n?e:e.prototype,o)&&i(e,o,{configurable:!0,value:t})}},function(e,t,n){"use strict";var i=function(e){return e&&e.__esModule?e:{default:e}}(n(43));function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var o=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.modals=[],this.number=1}return function(e,t,n){t&&r(e.prototype,t),n&&r(e,n)}(e,[{key:"register",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return t||(t="m"+this.number),this.modals[t]=e,this.number++,e}},{key:"get",value:function(e){return!!this.modals[e]&&this.modals[e]}}],[{key:"init",value:function(){return void 0===AdminColumns.Modals&&(AdminColumns.Modals=new this,AdminColumns.Modals._abstract={modal:i.default}),AdminColumns.Modals}}]),e}();e.exports=o},function(e,t,n){var i=n(6).f,r=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in r||n(2)&&i(r,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(e){return""}}})},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){var i=n(13),r=n(24),o=n(17),a=n(21),u=n(40);e.exports=function(e,t){var n=1==e,c=2==e,s=3==e,l=4==e,f=6==e,d=5==e||f,h=t||u;return function(t,u,v){for(var p,m,g=o(t),y=r(g),b=i(u,v,3),_=a(y.length),k=0,C=n?h(t,_):c?h(t,0):void 0;_>k;k++)if((d||k in y)&&(m=b(p=y[k],k,g),e))if(n)C[k]=m;else if(m)switch(e){case 3:return!0;case 5:return p;case 6:return k;case 2:C.push(p)}else if(l)return!1;return f?-1:s||l?l:C}}},function(e,t,n){var i=n(41);e.exports=function(e,t){return new(i(e))(t)}},function(e,t,n){var i=n(3),r=n(42),o=n(0)("species");e.exports=function(e){var t;return r(e)&&("function"!=typeof(t=e.constructor)||t!==Array&&!r(t.prototype)||(t=void 0),i(t)&&null===(t=t[o])&&(t=void 0)),void 0===t?Array:t}},function(e,t,n){var i=n(16);e.exports=Array.isArray||function(e){return"Array"==i(e)}},function(e,t,n){"use strict";n(14);var i=function(e){return e&&e.__esModule?e:{default:e}}(n(36));function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var o=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),t&&(this.el=t,this.dialog=t.querySelector(".ac-modal__dialog"),this.initEvents())}return function(e,t,n){t&&r(e.prototype,t),n&&r(e,n)}(e,[{key:"initEvents",value:function(){var t=this,n=this;document.addEventListener("keydown",function(e){var n=event.key;t.isOpen()&&"Escape"===n&&t.close()});var i=this.el.querySelectorAll('[data-dismiss="modal"], .ac-modal__dialog__close');i.length>0&&i.forEach(function(e){e.addEventListener("click",function(e){e.preventDefault(),n.close()})}),this.el.addEventListener("click",function(){n.close()}),this.el.querySelector(".ac-modal__dialog").addEventListener("click",function(e){e.stopPropagation()}),void 0===document.querySelector("body").dataset.ac_modal_init&&(e.initGlobalEvents(),document.querySelector("body").dataset.ac_modal_init=1),this.el.AC_MODAL=n}},{key:"isOpen",value:function(){return this.el.classList.contains("-active")}},{key:"close",value:function(){this.onClose(),this.el.classList.remove("-active")}},{key:"open",value:function(){this.onOpen(),this.el.classList.add("-active")}},{key:"destroy",value:function(){this.el.remove()}},{key:"onClose",value:function(){}},{key:"onOpen",value:function(){}}],[{key:"initGlobalEvents",value:function(){jQuery(document).on("click","[data-ac-open-modal]",function(e){e.preventDefault();var t=e.target.dataset.acOpenModal,n=document.querySelector(t);n&&n.AC_MODAL&&n.AC_MODAL.open()}),jQuery(document).on("click","[data-ac-modal]",function(e){e.preventDefault();var t=jQuery(this).data("ac-modal");i.default.init().get(t)&&i.default.init().get(t).open()})}}]),e}();e.exports=o},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){"use strict";var i=n(27),r=n(15),o=n(8),a=n(5),u=n(19),c=n(51),s=n(35),l=n(56),f=n(0)("iterator"),d=!([].keys&&"next"in[].keys()),h=function(){return this};e.exports=function(e,t,n,v,p,m,g){c(n,t,v);var y,b,_,k=function(e){if(!d&&e in j)return j[e];switch(e){case"keys":case"values":return function(){return new n(this,e)}}return function(){return new n(this,e)}},C=t+" Iterator",x="values"==p,w=!1,j=e.prototype,S=j[f]||j["@@iterator"]||p&&j[p],E=S||k(p),A=p?x?k("entries"):E:void 0,O="Array"==t&&j.entries||S;if(O&&(_=l(O.call(new e)))!==Object.prototype&&_.next&&(s(_,C,!0),i||"function"==typeof _[f]||a(_,f,h)),x&&S&&"values"!==S.name&&(w=!0,E=function(){return S.call(this)}),i&&!g||!d&&!w&&j[f]||a(j,f,E),u[t]=E,u[C]=h,p)if(y={values:x?E:k("values"),keys:m?E:k("keys"),entries:A},g)for(b in y)b in j||o(j,b,y[b]);else r(r.P+r.F*(d||w),t,y);return y}},function(e,t,n){var i=n(9),r=n(52),o=n(34),a=n(31)("IE_PROTO"),u=function(){},c=function(){var e,t=n(23)("iframe"),i=o.length;for(t.style.display="none",n(55).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),c=e.F;i--;)delete c.prototype[o[i]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(u.prototype=i(e),n=new u,u.prototype=null,n[a]=e):n=c(),void 0===t?n:r(n,t)}},function(e,t,n){var i=n(11),r=n(22),o=n(53)(!1),a=n(31)("IE_PROTO");e.exports=function(e,t){var n,u=r(e),c=0,s=[];for(n in u)n!=a&&i(u,n)&&s.push(n);for(;t.length>c;)i(u,n=t[c++])&&(~o(s,n)||s.push(n));return s}},function(e,t,n){var i=n(17),r=n(30);n(57)("keys",function(){return function(e){return r(i(e))}})},function(e,t,n){n(50)("replace",2,function(e,t,n){return[function(i,r){"use strict";var o=e(this),a=void 0==i?void 0:i[t];return void 0!==a?a.call(i,o,r):n.call(String(o),i,r)},n]})},function(e,t,n){"use strict";var i=n(5),r=n(8),o=n(7),a=n(18),u=n(0);e.exports=function(e,t,n){var c=u(e),s=n(a,c,""[e]),l=s[0],f=s[1];o(function(){var t={};return t[c]=function(){return 7},7!=""[e](t)})&&(r(String.prototype,e,l),i(RegExp.prototype,c,2==t?function(e,t){return f.call(e,this,t)}:function(e){return f.call(e,this)}))}},function(e,t,n){"use strict";var i=n(46),r=n(20),o=n(35),a={};n(5)(a,n(0)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=i(a,{next:r(1,n)}),o(e,t+" Iterator")}},function(e,t,n){var i=n(6),r=n(9),o=n(30);e.exports=n(2)?Object.defineProperties:function(e,t){r(e);for(var n,a=o(t),u=a.length,c=0;u>c;)i.f(e,n=a[c++],t[n]);return e}},function(e,t,n){var i=n(22),r=n(21),o=n(54);e.exports=function(e){return function(t,n,a){var u,c=i(t),s=r(c.length),l=o(a,s);if(e&&n!=n){for(;s>l;)if((u=c[l++])!=u)return!0}else for(;s>l;l++)if((e||l in c)&&c[l]===n)return e||l||0;return!e&&-1}}},function(e,t,n){var i=n(25),r=Math.max,o=Math.min;e.exports=function(e,t){return(e=i(e))<0?r(e+t,0):o(e,t)}},function(e,t,n){var i=n(1).document;e.exports=i&&i.documentElement},function(e,t,n){var i=n(11),r=n(17),o=n(31)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=r(e),i(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,n){var i=n(15),r=n(10),o=n(7);e.exports=function(e,t){var n=(r.Object||{})[e]||Object[e],a={};a[e]=t(n),i(i.S+i.F*o(function(){n(1)}),"Object",a)}},,,,,,,,,,,,function(e,t,n){e.exports=n(70)},function(e,t,n){"use strict";var i=x(n(71)),r=x(n(36)),o=x(n(73)),a=x(n(43)),u=x(n(74)),c=x(n(75)),s=x(n(76)),l=x(n(77)),f=x(n(78)),d=x(n(79)),h=x(n(80)),v=x(n(81)),p=x(n(82)),m=x(n(83)),g=x(n(84)),y=x(n(85)),b=x(n(86)),_=x(n(87)),k=x(n(88)),C=x(n(89));function x(e){return e&&e.__esModule?e:{default:e}}var w=$=n(90);AC.Column=new o.default,AdminColumns.Column=AC.Column,w(document).on("AC_Form_Loaded",function(){AdminColumns.Column.registerEvent("toggle",s.default).registerEvent("remove",l.default).registerEvent("clone",f.default).registerEvent("refresh",d.default).registerEvent("type_selector",h.default).registerEvent("indicator",v.default).registerEvent("label",p.default.label).registerEvent("label_setting",p.default.setting).registerEvent("addons",m.default).registerSetting("date",b.default).registerSetting("image_size",g.default).registerSetting("pro",_.default).registerSetting("sub_setting_toggle",y.default).registerSetting("width",k.default).registerSetting("label",C.default)}),w(document).ready(function(){AC.Form=new i.default("#cpac .ac-columns form"),r.default.init().register(new a.default(document.querySelector("#ac-modal-pro")),"pro"),(new u.default).init(),new c.default(".sidebox#direct-feedback")})},function(e,t,n){"use strict";n(37),n(4),n(29),n(48),n(14);var i=function(e){return e&&e.__esModule?e:{default:e}}(n(72));function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var o=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.$form=jQuery(t),this.$container=jQuery("#cpac .ac-admin"),this.columns={},jQuery(document).trigger("AC_Form_Loaded"),this.init()}return function(e,t,n){t&&r(e.prototype,t),n&&r(e,n)}(e,[{key:"init",value:function(){this.initColumns(),this.bindFormEvents(),this.bindOrdering(),jQuery(document).trigger("AC_Form_Ready")}},{key:"bindOrdering",value:function(){this.$form.hasClass("ui-sortable")?this.$form.sortable("refresh"):this.$form.sortable({items:".ac-column",handle:".column_sort"})}},{key:"originalColumns",value:function(){var e=this,t=[];return Object.keys(e.columns).forEach(function(n){var i=e.columns[n];i.isOriginal()&&t.push(i.type)}),t}},{key:"bindFormEvents",value:function(){var e=this,t=jQuery(".sidebox a.submit, .column-footer a.submit");t.on("click",function(){t.attr("disabled","disabled"),e.submitForm().always(function(){t.removeAttr("disabled","disabled")})}),e.$container.find(".add_column").on("click",function(){e.addColumn()});var n=jQuery("#cpac .ac-boxes");n.hasClass("disabled")&&n.find(".ac-column").each(function(e,t){jQuery(t).data("column").disable(),jQuery(t).find("input, select").prop("disabled",!0)}),jQuery("a[data-clear-columns]").on("click",function(){e.resetColumns()})}},{key:"initColumns",value:function(){var e=this;e.columns=[],this.$form.find(".ac-column").each(function(){var t=jQuery(this),n=new i.default(t);n.bindEvents(),t.data("column",n),e.columns[n.name]=n})}},{key:"reindexColumns",value:function(){var e=this;e.columns=[],this.$form.find(".ac-column").each(function(){var t=jQuery(this).data("column");e.columns[t.name]=t})}},{key:"resetColumns",value:function(){var e=this;Object.keys(this.columns).forEach(function(t){e.columns[t].destroy()})}},{key:"serialize",value:function(){return this.$form.serialize()}},{key:"submitForm",value:function(){var e=this,t=jQuery.post(ajaxurl,{action:"ac-columns",id:"save",data:this.serialize(),_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,original_columns:AC.original_columns},function(t){t&&(t.success?(e.showMessage(t.data,"updated"),e.$container.addClass("stored")):t.data&&e.showMessage(t.data.message,"notice notice-warning"))},"json");return t.fail(function(e){}),jQuery(document).trigger("AC_Form_AfterUpdate",[e.$container]),t}},{key:"showMessage",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"updated",n=jQuery('<div class="ac-message hidden '+t+'"><p>'+e+"</p></div>");this.$container.find(".ac-message").stop().remove(),this.$container.find(".ac-boxes").before(n),n.slideDown()}},{key:"cloneColumn",value:function(e){return this._addColumnToForm(new i.default(e).clone(),e.hasClass("opened"))}},{key:"addColumn",value:function(){var e=jQuery("#add-new-column-template").find(".ac-column").clone(),t=new i.default(e).create();return this._addColumnToForm(t)}},{key:"removeColumn",value:function(e){this.columns[e]&&(this.columns[e].remove(),delete this.columns[e])}},{key:"_addColumnToForm",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return this.columns[e.name]=e,this.$form.append(e.$el),t&&e.open(),e.$el.hide().slideDown(),jQuery("html, body").animate({scrollTop:e.$el.offset().top-58},300),jQuery(document).trigger("AC_Column_Added",[e]),e}}]),e}();e.exports=o},function(e,t,n){"use strict";function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n(29),n(48),n(14),n(49),n(4),n(37);var r=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.$el=t,this.el=t[0],this.settings=[],this._type=this.$el.data("type")}return function(e,t,n){t&&i(e.prototype,t),n&&i(e,n)}(e,[{key:"isOriginal",value:function(){return 1===this.$el.data("original")}},{key:"isDisabled",value:function(){return this.$el.hasClass("disabled")}},{key:"disable",value:function(){return this.$el.addClass("disabled"),this}},{key:"enable",value:function(){return this.$el.removeClass("disabled"),this}},{key:"initNewInstance",value:function(){var e="_new_column_"+AC.Column.getNewIncementalName(),t=this.name;return this.$el.find("input, select, label").each(function(n,i){var r=jQuery(i);r.attr("name")&&r.attr("name",r.attr("name").replace("columns[".concat(t,"]"),"columns[".concat(e,"]"))),r.attr("id")&&r.attr("id",r.attr("id").replace("-".concat(t,"-"),"-".concat(e,"-")))}),this.name=e,AC.incremental_column_name++,this}},{key:"bindEvents",value:function(){var e=this;return e.$el.data("column",e),Object.keys(AC.Column.events).forEach(function(t){e.isBound(t)||(AC.Column.events[t](e),e.bind(t))}),this.bindSettings(),jQuery(document).trigger("AC_Column_InitSettings",[e]),this}},{key:"bindSettings",value:function(){var e=this;Object.keys(AC.Column.settings).forEach(function(t){e.isBound(t)||(AC.Column.settings[t](e),e.bind(t))})}},{key:"isBound",value:function(e){return this.$el.data(e)}},{key:"bind",value:function(e){this.$el.data(e,!0)}},{key:"destroy",value:function(){this.$el.remove()}},{key:"remove",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:350,t=this;this.$el.addClass("deleting").animate({opacity:0,height:0},e,function(){t.destroy()})}},{key:"toggle",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:150;this.$el.hasClass("opened")?this.close(e):this.open(e)}},{key:"close",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.$el.removeClass("opened").find(".ac-column-body").slideUp(e)}},{key:"open",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.$el.addClass("opened").find(".ac-column-body").slideDown(e)}},{key:"showMessage",value:function(e){this.$el.find(".ac-column-setting--type .msg").html(e).show()}},{key:"switchToType",value:function(e){var t=this;return jQuery.ajax({url:ajaxurl,method:"post",dataType:"json",data:{action:"ac-columns",id:"select",type:e,current_original_columns:AC.Form.originalColumns(),original_columns:AC.original_columns,list_screen:AC.list_screen,layout:AC.layout,_ajax_nonce:AC._ajax_nonce},success:function(n){if(!0===n.success){var i=jQuery(n.data);t.$el.replaceWith(i),t.$el=i,t.el=i[0],t._type=e,t.initNewInstance(),t.bindEvents(),t.open(),jQuery(document).trigger("AC_Column_Change",[t])}else t.showMessage(n.data.error)}})}},{key:"refresh",value:function(){var e=this,t=this.$el.find(":input").serializeArray(),n={action:"ac-columns",id:"refresh",_ajax_nonce:AC._ajax_nonce,list_screen:AC.list_screen,layout:AC.layout,column_name:this.name,original_columns:AC.original_columns};return jQuery.each(n,function(e,n){t.push({name:e,value:n})}),jQuery.ajax({type:"post",url:ajaxurl,data:t,success:function(t){if(!0===t.success){var n=jQuery(t.data);e.$el.replaceWith(n),e.$el=n,e.el=n[0],e.bindEvents(),e.open(),jQuery(document).trigger("AC_Column_Refresh",[e])}}})}},{key:"create",value:function(){return this.initNewInstance(),this.bindEvents(),jQuery(document).trigger("AC_Column_Created",[self]),this}},{key:"clone",value:function(){var t=this.$el.clone();t.data("column-name",this.$el.data("column-name"));var n=new e(t);return n.initNewInstance(),n.bindEvents(),n}},{key:"name",get:function(){return this.$el.data("column-name")},set:function(e){this.$el.data("column-name",e)}},{key:"type",get:function(){return this._type},set:function(e){this.$el.data("type",e)}}]),e}();e.exports=r},function(e,t,n){"use strict";function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var r=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.events={},this.settings={},this.incremental_name=0}return function(e,t,n){t&&i(e.prototype,t),n&&i(e,n)}(e,[{key:"registerSetting",value:function(e,t){var n="s_"+e;return this.settings[n]&&console.error("Setting key already exists: "+e),this.settings[n]=t,this}},{key:"registerEvent",value:function(e,t){var n="e_"+e;return this.settings[n]&&console.error("Event key already exists: "+n),this.events[n]=t,this}},{key:"getNewIncementalName",value:function(){var e=this.incremental_name;return this.incremental_name++,e}}]),e}();e.exports=r},function(e,t,n){"use strict";function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var r=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return function(e,t,n){t&&i(e.prototype,t),n&&i(e,n)}(e,[{key:"init",value:function(){var e=jQuery;e("#ac_list_screen").on("change",function(){e(".view-link").hide(),e(this).parents("form").submit(),e(this).prop("disabled",!0).next(".spinner").css("display","inline-block")})}}]),e}();e.exports=r},function(e,t,n){"use strict";function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n(4);var r=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.$el=jQuery(t),this.init()}return function(e,t,n){t&&i(e.prototype,t),n&&i(e,n)}(e,[{key:"init",value:function(){var e=this.$el;e.find("#feedback-choice a.no").click(function(t){t.preventDefault(),e.find("#feedback-choice").slideUp(),e.find("#feedback-support").slideDown()}),e.find("#feedback-choice a.yes").click(function(t){t.preventDefault(),e.find("#feedback-choice").slideUp(),e.find("#feedback-rate").slideDown()})}}]),e}();e.exports=r},function(e,t,n){"use strict";n(4);e.exports=function(e){e.$el.find('[data-toggle="column"]').click(function(t){t.preventDefault(),e.toggle()}).css("cursor","pointer")}},function(e,t,n){"use strict";n(37),n(4);e.exports=function(e){e.$el.find(".remove-button").click(function(t){t.preventDefault(),AC.Form.removeColumn(e.name)})}},function(e,t,n){"use strict";n(4);e.exports=function(e){e.$el.find(".clone-button").click(function(t){t.preventDefault(),e.isOriginal()||AC.Form.cloneColumn(e.$el)})}},function(e,t,n){"use strict";n(4);e.exports=function(e){var t=jQuery;e.$el.find('[data-refresh="column"]').on("change",function(){t(document).trigger("AC.column.prerefresh",e.$el),e.$el.addClass("loading"),setTimeout(function(){e.refresh().always(function(){e.$el.removeClass("loading")})},200)})}},function(e,t,n){"use strict";n(4);e.exports=function(e){var t=jQuery;e.$el.find("select.ac-setting-input_type").change(function(){e.$el.addClass("loading"),e.switchToType(t(this).val()).always(function(){e.$el.removeClass("loading"),AC.Form.reindexColumns()})})}},function(e,t,n){"use strict";n(4);e.exports=function(e){var t=e.$el;t.find(".ac-column-header [data-indicator-toggle]").each(function(){var e=jQuery,n=e(this),i=e(this).data("setting"),r=t.find(".ac-column-setting[data-setting="+i+"]").find(".col-input:first .ac-setting-input:first input[type=radio]");n.unbind("click").on("click",function(i){i.preventDefault(),t.hasClass("disabled")||(n.toggleClass("on"),e(this).hasClass("on")?r.filter("[value=on]").prop("checked",!0).trigger("click").trigger("change"):r.filter("[value=off]").prop("checked",!0).trigger("click").trigger("change"))}),r.on("change",function(){t.hasClass("disabled")||("on"===r.filter(":checked").val()?n.addClass("on"):n.removeClass("on"))})})}},function(e,t,n){"use strict";n(4);e.exports={label:function(e){var t=e.$el;t.find('select[data-label="update"]').change(function(){var e=t.find("input.ac-setting-input_label"),n=jQuery(this).find("option:selected").text();e.val(n),e.trigger("change")}),setTimeout(function(){var e=t.find(".column_label .toggle");jQuery.trim(e.html())&&e.width()<1&&e.html(t.find(".column_type .inner").html())},50)},setting:function(e){var t=e.$el;t.find(".ac-column-setting--label input").bind("keyup change",function(){var e=jQuery(this).val();jQuery(this).closest(".ac-column").find("td.column_label .inner > a.toggle").html(e)}).trigger("change"),t.find(".ac-column-body .col-label .label").hover(function(){jQuery(this).parents(".col-label").find("div.tooltip").show()},function(){jQuery(this).parents(".col-label").find("div.tooltip").hide()})}}},function(e,t,n){"use strict";n(4);e.exports=function(e){var t=jQuery,n=e.$el;n.find("[data-trigger] label").on("click",function(){var e=t(this).closest("td.input").data("trigger"),i=t("input",this).val(),r=n.find('[data-indicator-id="'+e+'"]').removeClass("on");"on"===i&&r.addClass("on");var o=n.find('[data-handle="'+e+'"]').addClass("hide");"on"===i&&o.removeClass("hide")}),n.find("[data-trigger]").each(function(){var e=t(this).data("trigger"),i=n.find('[data-handle="'+e+'"]').addClass("hide");"on"===t("input:checked",this).val()&&i.removeClass("hide")})}},function(e,t,n){"use strict";function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var r=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.column=t,this.setting=t.$el[0].querySelector(".ac-column-setting--image"),this.setting&&(this.field=this.setting.querySelector(".ac-setting-input select"),this.initState(),this.bindEvents())}return function(e,t,n){t&&i(e.prototype,t),n&&i(e,n)}(e,[{key:"getValue",value:function(){return this.field.value}},{key:"bindEvents",value:function(){var e=this;this.field.addEventListener("change",function(t){e.initState()})}},{key:"initState",value:function(){"cpac-custom"===this.getValue()?this.showSubsettings():this.hideSubsettings()}},{key:"hideSubsettings",value:function(){for(var e=this.setting.querySelectorAll(".ac-column-setting"),t=0;t<e.length;++t)e[t].style.display="none"}},{key:"showSubsettings",value:function(){for(var e=this.setting.querySelectorAll(".ac-column-setting"),t=0;t<e.length;++t)e[t].style.display="table"}},{key:"setValue",value:function(e){return this.field.value=e,this.trigger(this.field,"change"),this}},{key:"setWidth",value:function(e){var t=this.setting.querySelector('.ac-column-setting [name*="image_size_w"]');return t.value=e,this.trigger(t,"change"),this}},{key:"setHeight",value:function(e){var t=this.setting.querySelector('.ac-column-setting [name*="image_size_h"]');return t.value=e,this.trigger(t,"change"),this}},{key:"setSize",value:function(e,t){return this.setWidth(e),this.setHeight(t),this}},{key:"trigger",value:function(e,t){return e.dispatchEvent(new Event(t)),this}}]),e}();e.exports=function(e){e.settings.image=new r(e)}},function(e,t,n){"use strict";n(4);e.exports=function(e){var t=jQuery,n={value_show:"on",subfield:".ac-column-setting"};function i(e,t){var i=t.filter(":checked").val(),r=e.find(n.subfield);n.value_show===i?r.show():r.hide()}e.$el.find(".ac-column-setting--filter,.ac-column-setting--sort,.ac-column-setting--edit").each(function(){var e=t(this),n=t(this).find('.ac-setting-input input[type="radio"]');i(e,n),n.on("change",function(){i(e,n)})})}},function(e,t,n){"use strict";n(4);e.exports=function(e){var t=jQuery;e.$el.find(".ac-column-setting--date").each(function(){var e=t(this),n=e.find("input.custom"),i=e.find(".ac-setting-input-date__custom"),r=e.find(".ac-setting-input-date__value"),o=e.find(".ac-setting-input-date__example"),a=e.find("input[type=radio]:checked"),u=e.find(".help-msg");e.find("input[type=radio]").on("change",function(){var e=t(this),n=e.closest("label"),a=n.find("code").text(),c=n.find(".ac-setting-input-date__more").html();a&&i.val(a).trigger("change"),e.hasClass("diff")&&(i.val(""),o.text("")),i.prop("disabled",!0),e.hasClass("custom")&&(e.val(i.val()),i.prop("disabled",!1),u.show()),u.hide(),c&&u.html(c).show(),r.val(e.val())}),i.on("change",function(){o.html('<span class="spinner is-active"></span>'),n.val(i.val());var e=t(this).val();e?(t.ajax({url:ajaxurl,method:"post",data:{action:"date_format",date:e}}).done(function(e){o.text(e)}),r.val(e)):o.text("")}),a.trigger("change"),0===a.length&&n.trigger("click")})}},function(e,t,n){"use strict";n(4);e.exports=function(e){e.$el.find(".ac-column-setting--pro").each(function(){var e=jQuery(this);e.find("input").on("click",function(t){t.preventDefault(),e.find("[data-ac-open-modal]").trigger("click")})})}},function(e,t,n){"use strict";n(49),n(4),jQuery.fn.column_width_slider=function(){var e=jQuery,t=e(this).find(".ac-setting-input-width"),n=t.find(".description input"),i=t.find(".unit-select input").filter(":checked").val(),r=n.val(),o=t.find(".width-slider"),a=e(this).find(".ac-column-header .ac-column-heading-setting--width");"%"===i&&r>100&&(r=100),n.val(r),o.slider({range:"min",min:0,max:"%"===i?100:500,value:r,slide:function(e,t){n.val(t.value),a.trigger("update"),n.trigger("validate")}})};e.exports=function(e){var t=jQuery,n=e.$el;n.find(".ac-column-setting--width").each(function(){n.column_width_slider();var e=n.find(".ac-column-header .ac-column-heading-setting--width");e.on("update",function(){var e=n.find(".ac-setting-input-width .description input").val(),t=n.find(".ac-setting-input-width .description .unit").text();e>0?jQuery(this).text(e+t):jQuery(this).text("")}),n.find(".ac-setting-input-width .unit-select label").on("click",function(){n.find("span.unit").text(t(this).find("input").val()),n.column_width_slider(),e.trigger("update")});var i=n.find(".ac-setting-input-width .description input").on("keyup",function(){n.column_width_slider(),jQuery(this).trigger("validate"),e.trigger("update")}).on("validate",function(){var e=i.val(),n=t.trim(e);jQuery.isNumeric(n)||(n=n.replace(/\D/g,"")),n.length>3&&(n=n.substring(0,3)),n<=0&&(n=""),n!==e&&i.val(n)})})}},function(e,t,n){"use strict";n(14);var i=o(n(36)),r=o(n(43));function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var u=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.column=t,this.setting=t.el.querySelector(".ac-column-setting--label"),this.iconpicker=this.setting.querySelector(".-iconpicker"),this.iconpicker&&(this._dashicon=!1,this.modal=i.default.init().register(new r.default(this.setting.querySelector(".-iconpicker"))),this.field=this.setting.querySelector(".ac-setting-input_label"),this.initValue(),this.bindEvents())}return function(e,t,n){t&&a(e.prototype,t),n&&a(e,n)}(e,[{key:"initValue",value:function(){var e=this,t=document.createRange().createContextualFragment(this.getValue()).querySelector(".dashicons");t?t.classList.forEach(function(t){if(-1!==t.indexOf("dashicons-")){var n="."+t,i=e.iconpicker.querySelector(n);i&&(i.parentElement.classList.add("active"),e.setIconSelection(i.parentElement.dataset.dashicon))}}):e.setIconSelection(!1)}},{key:"bindEvents",value:function(){var e=this;this.setting.querySelector(".ac-setting-label-icon").addEventListener("click",function(t){t.preventDefault(),e.modal.open()}),this.setting.querySelector('[data-action="submit"]').addEventListener("click",function(t){t.preventDefault(),e.getIconSelection()&&e.setDashicon(e.getIconSelection()),e.modal.close()}),this.iconpicker.querySelectorAll(".ac-ipicker__icon").forEach(function(t){t.addEventListener("click",function(n){n.preventDefault();var i=this.dataset.dashicon;i&&e.setIconSelection(i),e.setting.querySelectorAll(".ac-ipicker__icon").forEach(function(e){e.classList.remove("active")}),t.classList.add("active")})})}},{key:"getValue",value:function(){return this.field.value}},{key:"setValue",value:function(e){this.field.value=e;var t=new Event("change");this.field.dispatchEvent(t)}},{key:"setIconSelection",value:function(e){var t=this.setting.querySelector(".ac-ipicker__selection");this._dashicon=e,t.innerHTML='<span class="dashicons dashicons-'.concat(e,'"></span>'),t.style.visibility=e?"visible":"hidden"}},{key:"getIconSelection",value:function(){return this._dashicon}},{key:"setDashicon",value:function(e){this.setValue('<span class="dashicons dashicons-'.concat(e,'"></span>'))}}]),e}();e.exports=function(e){e.settings.label=new u(e)}},function(e,t){e.exports=jQuery}]);
|
assets/js/admin-page-columns.js.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./js/admin-page-columns.js","webpack:///./js/admin/columns/column.js","webpack:///./js/admin/columns/events/addons.js","webpack:///./js/admin/columns/events/clone.js","webpack:///./js/admin/columns/events/indicator.js","webpack:///./js/admin/columns/events/label.js","webpack:///./js/admin/columns/events/refresh.js","webpack:///./js/admin/columns/events/remove.js","webpack:///./js/admin/columns/events/toggle.js","webpack:///./js/admin/columns/events/type-selector.js","webpack:///./js/admin/columns/feedback.js","webpack:///./js/admin/columns/form.js","webpack:///./js/admin/columns/initiator.js","webpack:///./js/admin/columns/menu.js","webpack:///./js/admin/columns/settings/date.js","webpack:///./js/admin/columns/settings/image-size.js","webpack:///./js/admin/columns/settings/label.js","webpack:///./js/admin/columns/settings/pro.js","webpack:///./js/admin/columns/settings/sub-setting-toggle.js","webpack:///./js/admin/columns/settings/width.js","webpack:///./js/modules/modal.js","webpack:///./js/modules/modals.js","webpack:///./node_modules/core-js/modules/_a-function.js","webpack:///./node_modules/core-js/modules/_add-to-unscopables.js","webpack:///./node_modules/core-js/modules/_an-object.js","webpack:///./node_modules/core-js/modules/_array-includes.js","webpack:///./node_modules/core-js/modules/_array-methods.js","webpack:///./node_modules/core-js/modules/_array-species-constructor.js","webpack:///./node_modules/core-js/modules/_array-species-create.js","webpack:///./node_modules/core-js/modules/_cof.js","webpack:///./node_modules/core-js/modules/_core.js","webpack:///./node_modules/core-js/modules/_ctx.js","webpack:///./node_modules/core-js/modules/_defined.js","webpack:///./node_modules/core-js/modules/_descriptors.js","webpack:///./node_modules/core-js/modules/_dom-create.js","webpack:///./node_modules/core-js/modules/_enum-bug-keys.js","webpack:///./node_modules/core-js/modules/_export.js","webpack:///./node_modules/core-js/modules/_fails.js","webpack:///./node_modules/core-js/modules/_fix-re-wks.js","webpack:///./node_modules/core-js/modules/_global.js","webpack:///./node_modules/core-js/modules/_has.js","webpack:///./node_modules/core-js/modules/_hide.js","webpack:///./node_modules/core-js/modules/_html.js","webpack:///./node_modules/core-js/modules/_ie8-dom-define.js","webpack:///./node_modules/core-js/modules/_iobject.js","webpack:///./node_modules/core-js/modules/_is-array.js","webpack:///./node_modules/core-js/modules/_is-object.js","webpack:///./node_modules/core-js/modules/_iter-create.js","webpack:///./node_modules/core-js/modules/_iter-define.js","webpack:///./node_modules/core-js/modules/_iter-step.js","webpack:///./node_modules/core-js/modules/_iterators.js","webpack:///./node_modules/core-js/modules/_library.js","webpack:///./node_modules/core-js/modules/_object-create.js","webpack:///./node_modules/core-js/modules/_object-dp.js","webpack:///./node_modules/core-js/modules/_object-dps.js","webpack:///./node_modules/core-js/modules/_object-gpo.js","webpack:///./node_modules/core-js/modules/_object-keys-internal.js","webpack:///./node_modules/core-js/modules/_object-keys.js","webpack:///./node_modules/core-js/modules/_object-sap.js","webpack:///./node_modules/core-js/modules/_property-desc.js","webpack:///./node_modules/core-js/modules/_redefine.js","webpack:///./node_modules/core-js/modules/_set-to-string-tag.js","webpack:///./node_modules/core-js/modules/_shared-key.js","webpack:///./node_modules/core-js/modules/_shared.js","webpack:///./node_modules/core-js/modules/_to-absolute-index.js","webpack:///./node_modules/core-js/modules/_to-integer.js","webpack:///./node_modules/core-js/modules/_to-iobject.js","webpack:///./node_modules/core-js/modules/_to-length.js","webpack:///./node_modules/core-js/modules/_to-object.js","webpack:///./node_modules/core-js/modules/_to-primitive.js","webpack:///./node_modules/core-js/modules/_uid.js","webpack:///./node_modules/core-js/modules/_wks.js","webpack:///./node_modules/core-js/modules/es6.array.find.js","webpack:///./node_modules/core-js/modules/es6.array.iterator.js","webpack:///./node_modules/core-js/modules/es6.function.name.js","webpack:///./node_modules/core-js/modules/es6.object.keys.js","webpack:///./node_modules/core-js/modules/es6.regexp.replace.js","webpack:///./node_modules/core-js/modules/web.dom.iterable.js","webpack:///external \"jQuery\""],"names":["jQuery","$","require","AC","Column","Initiator","AdminColumns","document","on","registerEvent","EventToggle","EventRemove","EventClone","EventRefresh","EventTypeSelector","EventIndicator","EventLabel","label","setting","EventAddons","registerSetting","SettingDate","SettingImageSize","SettingPro","SettingSubSettingToggle","SettingWidth","SettingLabel","ready","Form","Modals","init","register","Modal","querySelector","Menu","Feedback","$el","el","settings","_type","data","hasClass","addClass","removeClass","temp_column_name","getNewIncementalName","original_column_name","name","find","each","i","v","$input","attr","replace","incremental_column_name","column","Object","keys","events","forEach","key","isBound","bind","bindSettings","trigger","remove","duration","self","animate","opacity","height","destroy","close","open","slideUp","slideDown","message","html","show","type","ajax","url","ajaxurl","method","dataType","action","current_original_columns","originalColumns","original_columns","list_screen","layout","_ajax_nonce","success","response","replaceWith","initNewInstance","bindEvents","showMessage","error","serializeArray","request_data","column_name","value","push","$clone","clone","module","exports","addons","$column","inputs","id","closest","state","val","additional","click","e","preventDefault","isOriginal","cloneColumn","indicator","$indicator","$setting","unbind","toggleClass","filter","prop","change","$label","field_label","text","setTimeout","column_label","trim","width","settingLabel","hover","parents","hide","refresh","always","removeColumn","toggle","css","selector","switchToType","reindexColumns","$box","$form","$container","columns","initColumns","bindFormEvents","bindOrdering","sortable","items","handle","$buttons","submitForm","removeAttr","addColumn","$boxes","col","disable","resetColumns","serialize","xhr","post","fail","attr_class","$msg","stop","before","_addColumnToForm","create","append","scrollTop","offset","top","incremental_name","k","console","event","oldName","submit","next","date","$radio_custom","$input_custom","$input_value","$example_custom","$selected","$help_msg","$input_container","date_format","description","$custom_value","done","length","Image","field","initState","addEventListener","getValue","showSubsettings","hideSubsettings","subsetting","querySelectorAll","style","display","setWidth","setHeight","dispatchEvent","Event","image","Label","iconpicker","_dashicon","modal","initValue","createRange","createContextualFragment","dashicon","classList","cls","indexOf","icon","parentElement","add","setIconSelection","dataset","getIconSelection","setDashicon","icons","selection","innerHTML","visibility","setValue","pro","value_show","subfield","$subfields","$settings","fn","column_width_slider","$column_width","input_width","input_unit","unit","slider","range","min","max","slide","ui","$width_indicator","_width","_unit","width_unit_select","width_input","_new_width","isNumeric","substring","dialog","initEvents","keyName","isOpen","dismissButtons","b","stopPropagation","ac_modal_init","initGlobalEvents","AC_MODAL","contains","onClose","onOpen","target","acOpenModal","modal_key","get","modals","number"],"mappings":"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AAa7N,GAAb,CAAP;AACA;;AAED,aAAO,KAAP;AACA,K,CAED;;;;2BACc;AACb,UAAK,OAAOvD,aAAauB,MAApB,KAA+B,WAApC,EAAkD;AACjDvB,qBAAauB,MAAb,GAAsB,IAAI,IAAJ,EAAtB;AACA;;AAED,aAAOvB,aAAauB,MAApB;AACA;;;;;;AAIF8E,OAAOC,OAAP,GAAiB/E,MAAjB,C;;;;;;;;;;;ACrCA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA,mJAAwF;AACxF;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,YAAY,eAAe;AAChC;AACA,KAAK;AACL;AACA;;;;;;;;;;;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,eAAe;AACzB;AACA;AACA;AACA,wCAAwC;AACxC;AACA,8BAA8B;AAC9B,6BAA6B;AAC7B,+BAA+B;AAC/B,mCAAmC;AACnC,SAAS,iCAAiC;AAC1C;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC3CA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACfA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;ACLA,iBAAiB;;AAEjB;AACA;AACA;;;;;;;;;;;;ACJA,6BAA6B;AAC7B,uCAAuC;;;;;;;;;;;;ACDvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA,iCAAiC,QAAQ,mBAAmB,UAAU,EAAE,EAAE;AAC1E,CAAC;;;;;;;;;;;;ACHD;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,kFAAkF,uBAAuB;AACzG,iEAAiE;AACjE,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,eAAe;AACf,eAAe;AACf,eAAe;AACf,gBAAgB;AAChB;;;;;;;;;;;;AC1CA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,UAAU;AACvC;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,gCAAgC,qCAAqC;AACrE;AACA;AACA,2BAA2B,gCAAgC;AAC3D;AACA;AACA;;;;;;;;;;;;AC3BA;AACA;AACA;AACA;AACA;AACA,yCAAyC;;;;;;;;;;;;ACLzC,uBAAuB;AACvB;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;;;;;;;;;;;;ACPA;AACA;;;;;;;;;;;;ACDA;AACA,uIAAsE,mBAAmB,UAAU,EAAE,EAAE;AACvG,CAAC;;;;;;;;;;;;ACFD;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;;AAEA;AACA,uMAAkF,aAAa,EAAE;;AAEjG;AACA,qDAAqD,4BAA4B;AACjF;AACA;;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;;AAEA,8BAA8B,aAAa;;AAE3C;AACA;AACA;AACA;AACA;AACA,yCAAyC,oCAAoC;AAC7E,6CAA6C,oCAAoC;AACjF,KAAK,4BAA4B,oCAAoC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,mBAAmB;AACnC;AACA;AACA,kCAAkC,2BAA2B;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;;;;ACpEA;AACA,UAAU;AACV;;;;;;;;;;;;ACFA;;;;;;;;;;;;ACAA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;;;;;;;;;;;ACxCA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG,YAAY;AACf;AACA;AACA;AACA;;;;;;;;;;;;ACfA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACZA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,qDAAqD,OAAO,EAAE;AAC9D;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;;;;;;;;;;;;AC9BD;AACA;AACA;;AAEA;AACA,oEAAoE,iCAAiC;AACrG;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA,kDAAkD;;AAElD;AACA,qEAAqE;AACrE,CAAC;AACD;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACXD;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA,2DAA2D;AAC3D;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,gBAAgB,EAAE;AAC5D;AACA;AACA;AACA;AACA,CAAC;AACD;;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC,cAAc;AACd,iBAAiB;AACjB;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;ACjCA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACfD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACRD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,CAAC;;;;;;;;;;;;ACXD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oDAAoD,wBAAwB;AAC5E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;;ACzDA,wB","file":"admin-page-columns.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 0);\n","/**\r\n * AC variables. Defined in DOM.\r\n * @param AdminColumns {Object}\r\n * @param AC {Object}\r\n * @param AC.list_screen {String}\r\n * @param AC.layout {String}\r\n * @param AC.i81n {String}\r\n */\r\nimport Form from \"./admin/columns/form\";\r\nimport Modals from \"./modules/modals\";\r\nimport Initiator from \"./admin/columns/initiator\";\r\nimport Modal from \"./modules/modal\";\r\nimport Menu from \"./admin/columns/menu\";\r\nimport Feedback from \"./admin/columns/feedback\";\r\n/** Events */\r\nimport EventToggle from './admin/columns/events/toggle';\r\nimport EventRemove from './admin/columns/events/remove';\r\nimport EventClone from './admin/columns/events/clone';\r\nimport EventRefresh from './admin/columns/events/refresh';\r\nimport EventTypeSelector from './admin/columns/events/type-selector';\r\nimport EventIndicator from './admin/columns/events/indicator';\r\nimport EventLabel from './admin/columns/events/label';\r\nimport EventAddons from './admin/columns/events/addons';\r\n/** Settings */\r\nimport SettingImageSize from './admin/columns/settings/image-size';\r\nimport SettingSubSettingToggle from './admin/columns/settings/sub-setting-toggle';\r\nimport SettingDate from './admin/columns/settings/date';\r\nimport SettingPro from './admin/columns/settings/pro';\r\nimport SettingWidth from './admin/columns/settings/width';\r\nimport SettingLabel from './admin/columns/settings/label';\r\n\r\nlet jQuery = $ = require( 'jquery' );\r\n\r\nAC.Column = new Initiator(); // Todo remove from\r\nAdminColumns.Column = AC.Column;\r\n\r\njQuery( document ).on( 'AC_Form_Loaded', function() {\r\n\r\n\t/** Register Events **/\r\n\tAdminColumns.Column\r\n\t\t.registerEvent( 'toggle', EventToggle )\r\n\t\t.registerEvent( 'remove', EventRemove )\r\n\t\t.registerEvent( 'clone', EventClone )\r\n\t\t.registerEvent( 'refresh', EventRefresh )\r\n\t\t.registerEvent( 'type_selector', EventTypeSelector )\r\n\t\t.registerEvent( 'indicator', EventIndicator )\r\n\t\t.registerEvent( 'label', EventLabel.label )\r\n\t\t.registerEvent( 'label_setting', EventLabel.setting )\r\n\t\t.registerEvent( 'addons', EventAddons )\r\n\r\n\t\t/** Register Settings **/\r\n\t\t.registerSetting( 'date', SettingDate )\r\n\t\t.registerSetting( 'image_size', SettingImageSize )\r\n\t\t.registerSetting( 'pro', SettingPro )\r\n\t\t.registerSetting( 'sub_setting_toggle', SettingSubSettingToggle )\r\n\t\t.registerSetting( 'width', SettingWidth )\r\n\t\t.registerSetting( 'label', SettingLabel );\r\n} );\r\n\r\njQuery( document ).ready( function() {\r\n\tAC.Form = new Form( '#cpac .ac-columns form' );\r\n\tModals.init().register( new Modal( document.querySelector( '#ac-modal-pro' ) ), 'pro' );\r\n\r\n\tnew Menu().init();\r\n\tnew Feedback( '.sidebox#direct-feedback' );\r\n} );","class Column {\r\n\r\n\tconstructor( $el ) {\r\n\t\tthis.$el = $el;\r\n\t\tthis.el = $el[ 0 ];\r\n\t\tthis.settings = [];\r\n\r\n\t\tthis._type = this.$el.data( 'type' );\r\n\t}\r\n\r\n\tget name() {\r\n\t\treturn this.$el.data( 'column-name' );\r\n\t}\r\n\r\n\tset name( name ) {\r\n\t\tthis.$el.data( 'column-name', name );\r\n\t}\r\n\r\n\tget type() {\r\n\t\treturn this._type;\r\n\t}\r\n\r\n\tset type( type ) {\r\n\t\tthis.$el.data( 'type', type );\r\n\t}\r\n\r\n\tisOriginal() {\r\n\t\treturn (1 === this.$el.data( 'original' ));\r\n\t}\r\n\r\n\tisDisabled() {\r\n\t\treturn this.$el.hasClass( 'disabled' );\r\n\t}\r\n\r\n\tdisable() {\r\n\t\tthis.$el.addClass( 'disabled' );\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\tenable() {\r\n\t\tthis.$el.removeClass( 'disabled' );\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\tinitNewInstance() {\r\n\t\tlet temp_column_name = '_new_column_' + AC.Column.getNewIncementalName();\r\n\t\tlet original_column_name = this.name;\r\n\r\n\t\tthis.$el.find( 'input, select, label' ).each( function( i, v ) {\r\n\t\t\tlet $input = jQuery( v );\r\n\r\n\t\t\t// name attributes\r\n\t\t\tif ( $input.attr( 'name' ) ) {\r\n\t\t\t\t$input.attr( 'name', $input.attr( 'name' ).replace( `columns[${original_column_name}]`, `columns[${temp_column_name}]` ) );\r\n\t\t\t}\r\n\r\n\t\t\t// id attributes\r\n\t\t\tif ( $input.attr( 'id' ) ) {\r\n\t\t\t\t$input.attr( 'id', $input.attr( 'id' ).replace( `-${original_column_name}-`, `-${temp_column_name}-` ) );\r\n\t\t\t}\r\n\r\n\t\t} );\r\n\r\n\t\tthis.name = temp_column_name;\r\n\r\n\t\tAC.incremental_column_name++;\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\t/**\r\n\t *\r\n\t * @returns {Column}\r\n\t */\r\n\tbindEvents() {\r\n\t\tlet column = this;\r\n\t\tcolumn.$el.data( 'column', column );\r\n\r\n\t\tObject.keys( AC.Column.events ).forEach( function( key ) {\r\n\t\t\tif ( !column.isBound( key ) ) {\r\n\t\t\t\tAC.Column.events[ key ]( column );\r\n\t\t\t\tcolumn.bind( key );\r\n\t\t\t}\r\n\t\t} );\r\n\r\n\t\tthis.bindSettings();\r\n\r\n\t\tjQuery( document ).trigger( 'AC_Column_InitSettings', [ column ] );\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\tbindSettings() {\r\n\t\tlet column = this;\r\n\r\n\t\tObject.keys( AC.Column.settings ).forEach( function( key ) {\r\n\t\t\tif ( !column.isBound( key ) ) {\r\n\t\t\t\tAC.Column.settings[ key ]( column );\r\n\t\t\t\tcolumn.bind( key );\r\n\t\t\t}\r\n\t\t} );\r\n\t}\r\n\r\n\t/**\r\n\t *\r\n\t * @param key\r\n\t * @returns {bool}\r\n\t */\r\n\tisBound( key ) {\r\n\t\treturn this.$el.data( key );\r\n\t}\r\n\r\n\tbind( key ) {\r\n\t\tthis.$el.data( key, true );\r\n\t}\r\n\r\n\tdestroy() {\r\n\t\tthis.$el.remove();\r\n\t}\r\n\r\n\tremove( duration = 350 ) {\r\n\t\tlet self = this;\r\n\r\n\t\tthis.$el.addClass( 'deleting' ).animate( { opacity : 0, height : 0 }, duration, function() {\r\n\t\t\tself.destroy();\r\n\t\t} );\r\n\t}\r\n\r\n\ttoggle( duration = 150 ) {\r\n\t\tif ( this.$el.hasClass( 'opened' ) ) {\r\n\t\t\tthis.close( duration );\r\n\t\t} else {\r\n\t\t\tthis.open( duration );\r\n\t\t}\r\n\t}\r\n\r\n\tclose( duration = 0 ) {\r\n\t\tthis.$el.removeClass( 'opened' ).find( '.ac-column-body' ).slideUp( duration );\r\n\t}\r\n\r\n\topen( duration = 0 ) {\r\n\t\tthis.$el.addClass( 'opened' ).find( '.ac-column-body' ).slideDown( duration );\r\n\t}\r\n\r\n\tshowMessage( message ) {\r\n\t\tthis.$el.find( '.ac-column-setting--type .msg' ).html( message ).show();\r\n\t}\r\n\r\n\tswitchToType( type ) {\r\n\t\tlet self = this;\r\n\r\n\t\treturn jQuery.ajax( {\r\n\t\t\turl : ajaxurl,\r\n\t\t\tmethod : 'post',\r\n\t\t\tdataType : 'json',\r\n\t\t\tdata : {\r\n\t\t\t\taction : 'ac_column_select',\r\n\t\t\t\ttype : type,\r\n\t\t\t\tcurrent_original_columns : AC.Form.originalColumns(),\r\n\t\t\t\toriginal_columns : AC.original_columns,\r\n\t\t\t\tlist_screen : AC.list_screen,\r\n\t\t\t\tlayout : AC.layout,\r\n\t\t\t\t_ajax_nonce : AC._ajax_nonce,\r\n\t\t\t},\r\n\t\t\tsuccess : function( response ) {\r\n\t\t\t\tif ( true === response.success ) {\r\n\t\t\t\t\tlet column = jQuery( response.data );\r\n\r\n\t\t\t\t\tself.$el.replaceWith( column );\r\n\t\t\t\t\tself.$el = column;\r\n\t\t\t\t\tself.el = column[ 0 ];\r\n\t\t\t\t\tself._type = type;\r\n\t\t\t\t\tself.initNewInstance();\r\n\t\t\t\t\tself.bindEvents();\r\n\t\t\t\t\tself.open();\r\n\r\n\t\t\t\t\tjQuery( document ).trigger( 'AC_Column_Change', [ self ] );\r\n\t\t\t\t} else {\r\n\t\t\t\t\tself.showMessage( response.data.error )\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t} );\r\n\t}\r\n\r\n\trefresh() {\r\n\r\n\t\tlet self = this;\r\n\t\tlet data = this.$el.find( ':input' ).serializeArray();\r\n\t\tlet request_data = {\r\n\t\t\taction : 'ac_column_refresh',\r\n\t\t\t_ajax_nonce : AC._ajax_nonce,\r\n\t\t\tlist_screen : AC.list_screen,\r\n\t\t\tlayout : AC.layout,\r\n\t\t\tcolumn_name : this.name,\r\n\t\t\toriginal_columns : AC.original_columns\r\n\t\t};\r\n\r\n\t\tjQuery.each( request_data, function( name, value ) {\r\n\t\t\tdata.push( {\r\n\t\t\t\tname : name,\r\n\t\t\t\tvalue : value\r\n\t\t\t} );\r\n\t\t} );\r\n\r\n\t\treturn jQuery.ajax( {\r\n\t\t\ttype : 'post',\r\n\t\t\turl : ajaxurl,\r\n\t\t\tdata : data,\r\n\r\n\t\t\tsuccess : function( response ) {\r\n\t\t\t\tif ( true === response.success ) {\r\n\t\t\t\t\tlet column = jQuery( response.data );\r\n\r\n\t\t\t\t\tself.$el.replaceWith( column );\r\n\t\t\t\t\tself.$el = column;\r\n\t\t\t\t\tself.el = column[ 0 ];\r\n\r\n\t\t\t\t\tself.bindEvents();\r\n\t\t\t\t\tself.open();\r\n\r\n\t\t\t\t\tjQuery( document ).trigger( 'AC_Column_Refresh', [ self ] );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t} );\r\n\t}\r\n\r\n\t/**\r\n\t * @returns {Column}\r\n\t */\r\n\tcreate() {\r\n\t\tthis.initNewInstance();\r\n\t\tthis.bindEvents();\r\n\r\n\t\tjQuery( document ).trigger( 'AC_Column_Created', [ self ] );\r\n\t\treturn this;\r\n\t}\r\n\r\n\t/**\r\n\t * @returns {Column}\r\n\t */\r\n\tclone() {\r\n\t\tlet $clone = this.$el.clone();\r\n\t\t$clone.data( 'column-name', this.$el.data( 'column-name' ) );\r\n\r\n\t\tlet clone = new Column( $clone );\r\n\r\n\t\tclone.initNewInstance();\r\n\t\tclone.bindEvents();\r\n\r\n\t\treturn clone;\r\n\t}\r\n}\r\n\r\nmodule.exports = Column;","/*\n * Optional Radio Click events\n * TODO: Is not used anymore?\n */\n\nlet addons = function( column ) {\n\tlet $ = jQuery;\n\tlet $column = column.$el;\n\tlet inputs = $column.find( '[data-trigger] label' );\n\n\tinputs.on( 'click', function() {\n\n\t\tlet id = $( this ).closest( 'td.input' ).data( 'trigger' );\n\t\tlet state = $( 'input', this ).val();\n\n\t\t// Toggle indicator icon\n\t\tlet label = $column.find( '[data-indicator-id=\"' + id + '\"]' ).removeClass( 'on' );\n\t\tif ( 'on' === state ) {\n\t\t\tlabel.addClass( 'on' );\n\t\t}\n\n\t\t// Toggle additional options\n\t\tlet additional = $column.find( '[data-handle=\"' + id + '\"]' ).addClass( 'hide' );\n\t\tif ( 'on' === state ) {\n\t\t\tadditional.removeClass( 'hide' );\n\t\t}\n\t} );\n\n\t// On load\n\t$column.find( '[data-trigger]' ).each( function() {\n\n\t\tlet trigger = $( this ).data( 'trigger' );\n\n\t\t// Hide additional column settings\n\t\tlet additional = $column.find( '[data-handle=\"' + trigger + '\"]' ).addClass( 'hide' );\n\t\tif ( 'on' === $( 'input:checked', this ).val() ) {\n\t\t\tadditional.removeClass( 'hide' );\n\t\t}\n\t} );\n\n};\n\nmodule.exports = addons;","/*\n* Column: bind clone events\n*\n* @since 2.0\n*/\nlet clone = function( column ) {\n\tcolumn.$el.find( '.clone-button' ).click( function( e ) {\n\t\te.preventDefault();\n\n\t\tif ( column.isOriginal() ) {\n\t\t\treturn;\n\t\t}\n\n\t\tAC.Form.cloneColumn( column.$el );\n\t} );\n};\n\nmodule.exports = clone;","let indicator = function( column ) {\r\n\tlet $column = column.$el;\r\n\r\n\t$column.find( '.ac-column-header [data-indicator-toggle]' ).each( function() {\r\n\t\tlet $ = jQuery;\r\n\t\tlet $indicator = $( this );\r\n\t\tlet setting = $( this ).data( 'setting' );\r\n\t\tlet $setting = $column.find( '.ac-column-setting[data-setting=' + setting + ']' );\r\n\t\tlet $input = $setting.find( '.col-input:first .ac-setting-input:first input[type=radio]' );\r\n\r\n\t\t$indicator.unbind( 'click' ).on( 'click', function( e ) {\r\n\t\t\te.preventDefault();\r\n\r\n\t\t\tif ( $column.hasClass( 'disabled' ) ) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\t$indicator.toggleClass( 'on' );\r\n\t\t\tif ( $( this ).hasClass( 'on' ) ) {\r\n\t\t\t\t$input.filter( '[value=on]' ).prop( 'checked', true ).trigger( 'click' ).trigger( 'change' );\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\t$input.filter( '[value=off]' ).prop( 'checked', true ).trigger( 'click' ).trigger( 'change' );\r\n\t\t\t}\r\n\t\t} );\r\n\r\n\t\t$input.on( 'change', function() {\r\n\t\t\tif ( $column.hasClass( 'disabled' ) ) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tlet value = $input.filter( ':checked' ).val();\r\n\t\t\tif ( 'on' === value ) {\r\n\t\t\t\t$indicator.addClass( 'on' );\r\n\t\t\t} else {\r\n\t\t\t\t$indicator.removeClass( 'on' );\r\n\t\t\t}\r\n\t\t} );\r\n\t} );\r\n};\r\n\r\nmodule.exports = indicator;","let label = function( column ) {\n\tlet $column = column.$el;\n\n\t/**\n\t * Populates the main Label with the selected label from the dropdown,\n\t */\n\t$column.find( 'select[data-label=\"update\"]' ).change( function() {\n\t\tlet $label = $column.find( 'input.ac-setting-input_label' );\n\t\tlet field_label = jQuery( this ).find( 'option:selected' ).text();\n\n\t\t// Set new label\n\t\t$label.val( field_label );\n\t\t$label.trigger( 'change' );\n\t} );\n\n\t/** When an label contains an icon or span, the displayed label can appear empty. In this case we show the \"type\" label. */\n\tsetTimeout( function() {\n\t\tlet column_label = $column.find( '.column_label .toggle' );\n\n\t\tif ( jQuery.trim( column_label.html() ) && column_label.width() < 1 ) {\n\t\t\tcolumn_label.html( $column.find( '.column_type .inner' ).html() );\n\t\t}\n\t}, 50 );\n};\n\nlet settingLabel = function( column ) {\n\tlet $column = column.$el;\n\n\t/** change label */\n\t$column.find( '.ac-column-setting--label input' ).bind( 'keyup change', function() {\n\t\tlet value = jQuery( this ).val();\n\t\tjQuery( this ).closest( '.ac-column' ).find( 'td.column_label .inner > a.toggle' ).html( value );\n\t} ).trigger( 'change' );\n\n\t/** tooltip */\n\t$column.find( '.ac-column-body .col-label .label' ).hover( function() {\n\t\tjQuery( this ).parents( '.col-label' ).find( 'div.tooltip' ).show();\n\t}, function() {\n\t\tjQuery( this ).parents( '.col-label' ).find( 'div.tooltip' ).hide();\n\t} );\n};\n\nmodule.exports = {\n\tlabel : label,\n\tsetting : settingLabel\n};","let refresh = function( column ) {\n\tlet $ = jQuery;\n\t\n\tcolumn.$el.find( '[data-refresh=\"column\"]' ).on( 'change', function() {\n\t\t// Allow plugins to hook into this event\n\t\t$( document ).trigger( 'AC.column.prerefresh', column.$el );\n\t\tcolumn.$el.addClass( 'loading' );\n\n\t\tsetTimeout( function() {\n\t\t\tcolumn.refresh().always( function() {\n\t\t\t\tcolumn.$el.removeClass( 'loading' );\n\t\t\t} );\n\t\t}, 200 );\n\n\t} );\n};\n\nmodule.exports = refresh;","/*\n * Column: bind remove events\n *\n * @since 2.0\n */\nlet remove = function( column ) {\n\tcolumn.$el.find( '.remove-button' ).click( function( e ) {\n\t\te.preventDefault();\n\n\t\tAC.Form.removeColumn( column.name );\n\t} );\n};\n\nmodule.exports = remove;","/*\n * Column: bind toggle events\n *\n * For performance we bind all other events after the click event.\n *\n * @since 2.0\n */\nlet toggle = function( column ) {\n\tcolumn.$el.find( '[data-toggle=\"column\"]' ).click( function( e ) {\n\t\te.preventDefault();\n\n\t\tcolumn.toggle();\n\t} ).css( 'cursor', 'pointer' );\n};\n\nmodule.exports = toggle;","let selector = function( column ) {\n\tlet $ = jQuery;\n\tcolumn.$el.find( 'select.ac-setting-input_type' ).change( function() {\n\t\tcolumn.$el.addClass( 'loading' );\n\t\tcolumn.switchToType( $( this ).val() ).always( function() {\n\t\t\tcolumn.$el.removeClass( 'loading' );\n\n\t\t\tAC.Form.reindexColumns();\n\t\t} );\n\t} );\n};\n\nmodule.exports = selector;","class Feedback {\n\n\tconstructor( $el ) {\n\t\tthis.$el = jQuery( $el );\n\t\tthis.init();\n\t}\n\n\tinit() {\n\t\tlet $box = this.$el;\n\n\t\t$box.find( '#feedback-choice a.no' ).click( function( e ) {\n\t\t\te.preventDefault();\n\n\t\t\t$box.find( '#feedback-choice' ).slideUp();\n\t\t\t$box.find( '#feedback-support' ).slideDown();\n\t\t} );\n\n\t\t$box.find( '#feedback-choice a.yes' ).click( function( e ) {\n\t\t\te.preventDefault();\n\n\t\t\t$box.find( '#feedback-choice' ).slideUp();\n\t\t\t$box.find( '#feedback-rate' ).slideDown();\n\t\t} );\n\t};\n\n}\n\nmodule.exports = Feedback;","import Column from \"./column\";\n\nclass Form {\n\n\tconstructor( el ) {\n\t\tthis.$form = jQuery( el );\n\t\tthis.$container = jQuery( '#cpac .ac-admin' );\n\t\tthis.columns = {};\n\n\t\tjQuery( document ).trigger( 'AC_Form_Loaded' );\n\n\t\tthis.init();\n\t}\n\n\tinit() {\n\t\tthis.initColumns();\n\t\tthis.bindFormEvents();\n\t\tthis.bindOrdering();\n\n\t\tjQuery( document ).trigger( 'AC_Form_Ready' );\n\t}\n\n\tbindOrdering() {\n\n\t\tif ( this.$form.hasClass( 'ui-sortable' ) ) {\n\t\t\tthis.$form.sortable( 'refresh' );\n\t\t}\n\t\telse {\n\t\t\tthis.$form.sortable( {\n\t\t\t\titems : '.ac-column',\n\t\t\t\thandle : '.column_sort'\n\t\t\t} );\n\t\t}\n\n\t}\n\n\toriginalColumns() {\n\t\tlet self = this;\n\t\tlet columns = [];\n\n\t\tObject.keys( self.columns ).forEach( function( key ) {\n\t\t\tlet column = self.columns[ key ];\n\t\t\tif ( column.isOriginal() ) {\n\t\t\t\tcolumns.push( column.type );\n\t\t\t}\n\t\t} );\n\n\t\treturn columns;\n\t}\n\n\tbindFormEvents() {\n\t\tlet self = this;\n\t\tlet $buttons = jQuery( '.sidebox a.submit, .column-footer a.submit' );\n\n\t\t$buttons.on( 'click', function() {\n\t\t\t$buttons.attr( 'disabled', 'disabled' );\n\t\t\tself.submitForm().always( function() {\n\t\t\t\t$buttons.removeAttr( 'disabled', 'disabled' );\n\t\t\t} )\n\t\t} );\n\n\t\tself.$container.find( '.add_column' ).on( 'click', function() {\n\t\t\tself.addColumn();\n\t\t} );\n\n\t\tlet $boxes = jQuery( '#cpac .ac-boxes' );\n\t\tif ( $boxes.hasClass( 'disabled' ) ) {\n\t\t\t$boxes.find( '.ac-column' ).each( function( i, col ) {\n\t\t\t\tjQuery( col ).data( 'column' ).disable();\n\t\t\t\tjQuery( col ).find( 'input, select' ).prop( 'disabled', true );\n\t\t\t} );\n\t\t}\n\n\t\tjQuery( 'a[data-clear-columns]' ).on( 'click', function() {\n\t\t\tself.resetColumns();\n\t\t} );\n\t}\n\n\tinitColumns() {\n\t\tlet self = this;\n\t\tself.columns = [];\n\n\t\tthis.$form.find( '.ac-column' ).each( function() {\n\t\t\tlet $el = jQuery( this );\n\t\t\tlet column = new Column( $el );\n\n\t\t\tcolumn.bindEvents();\n\n\t\t\t$el.data( 'column', column );\n\t\t\tself.columns[ column.name ] = column;\n\t\t} );\n\t}\n\n\treindexColumns() {\n\t\tlet self = this;\n\t\tself.columns = [];\n\n\t\tthis.$form.find( '.ac-column' ).each( function() {\n\t\t\tlet column = jQuery( this ).data( 'column' );\n\n\t\t\tself.columns[ column.name ] = column;\n\t\t} );\n\t}\n\n\tresetColumns() {\n\t\tObject.keys( this.columns ).forEach( ( key ) => {\n\t\t\tlet column = this.columns[ key ];\n\n\t\t\tcolumn.destroy();\n\t\t} );\n\n\t}\n\n\tserialize() {\n\t\treturn this.$form.serialize();\n\t}\n\n\tsubmitForm() {\n\t\tlet self = this;\n\n\t\tlet xhr = jQuery.post( ajaxurl, {\n\t\t\t\taction : 'ac_columns_save',\n\t\t\t\tdata : this.serialize(),\n\t\t\t\t_ajax_nonce : AC._ajax_nonce,\n\t\t\t\tlist_screen : AC.list_screen,\n\t\t\t\tlayout : AC.layout,\n\t\t\t\toriginal_columns : AC.original_columns\n\t\t\t},\n\n\t\t\tfunction( response ) {\n\t\t\t\tif ( response ) {\n\t\t\t\t\tif ( response.success ) {\n\t\t\t\t\t\tself.showMessage( response.data, 'updated' );\n\n\t\t\t\t\t\tself.$container.addClass( 'stored' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Error message\n\t\t\t\t\telse if ( response.data ) {\n\t\t\t\t\t\tself.showMessage( response.data.message, 'notice notice-warning' );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}, 'json' );\n\n\t\t// No JSON\n\t\txhr.fail( function( error ) {\n\t\t\t// We choose not to notify the user of errors, because the settings will have\n\t\t\t// been saved correctly despite of PHP notices/errors from plugin or themes.\n\t\t} );\n\n\t\t//document.dispatchEvent( new CustomEvent( 'AC_Form_AfterUpdate', { detail : { container : self.$container } } ) );\n\t\tjQuery( document ).trigger( 'AC_Form_AfterUpdate', [ self.$container ] );\n\n\t\treturn xhr;\n\t}\n\n\tshowMessage( message, attr_class = 'updated' ) {\n\t\tlet $msg = jQuery( '<div class=\"ac-message hidden ' + attr_class + '\"><p>' + message + '</p></div>' );\n\n\t\tthis.$container.find( '.ac-message' ).stop().remove();\n\t\tthis.$container.find( '.ac-boxes' ).before( $msg );\n\n\t\t$msg.slideDown();\n\t}\n\n\tcloneColumn( $el ) {\n\t\treturn this._addColumnToForm( new Column( $el ).clone(), $el.hasClass( 'opened' ) );\n\t}\n\n\taddColumn() {\n\t\tlet $clone = jQuery( '#add-new-column-template' ).find( '.ac-column' ).clone();\n\t\tlet column = new Column( $clone ).create();\n\n\t\treturn this._addColumnToForm( column );\n\t}\n\n\tremoveColumn( name ) {\n\t\tif ( this.columns[ name ] ) {\n\t\t\tthis.columns[ name ].remove();\n\t\t\tdelete this.columns[ name ];\n\t\t}\n\t}\n\n\t_addColumnToForm( column, open = true ) {\n\t\tthis.columns[ column.name ] = column;\n\t\tthis.$form.append( column.$el );\n\n\t\tif ( open ) {\n\t\t\tcolumn.open();\n\t\t}\n\n\t\tcolumn.$el.hide().slideDown();\n\n\t\tjQuery( 'html, body' ).animate( { scrollTop : column.$el.offset().top - 58 }, 300 );\n\n\t\tjQuery( document ).trigger( 'AC_Column_Added', [ column ] );\n\n\t\treturn column;\n\t}\n\n}\n\nmodule.exports = Form;","class Initiator {\n\n\tconstructor() {\n\t\tthis.events = {};\n\t\tthis.settings = {};\n\t\tthis.incremental_name = 0;\n\t}\n\n\tregisterSetting( k, setting ) {\n\t\tlet key = 's_' + k;\n\n\t\tif ( this.settings[ key ] ) {\n\t\t\tconsole.error( 'Setting key already exists: ' + k );\n\t\t}\n\n\t\tthis.settings[ key ] = setting;\n\n\t\treturn this;\n\t}\n\n\tregisterEvent( k, event ) {\n\t\tlet key = 'e_' + k;\n\t\tif ( this.settings[ key ] ) {\n\t\t\tconsole.error( 'Event key already exists: ' + key );\n\t\t}\n\n\t\tthis.events[ key ] = event;\n\n\t\treturn this;\n\t}\n\n\tgetNewIncementalName() {\n\t\tlet oldName = this.incremental_name;\n\t\tthis.incremental_name++;\n\n\t\treturn oldName;\n\t}\n}\n\nmodule.exports = Initiator;","class Menu {\n\n\tinit() {\n\t\tlet $ = jQuery;\n\n\t\t$( '#ac_list_screen' ).on( 'change', function() {\n\t\t\t$( '.view-link' ).hide();\n\t\t\t$( this ).parents( 'form' ).submit();\n\n\t\t\t$( this ).prop( 'disabled', true ).next( '.spinner' ).css( 'display', 'inline-block' );\n\t\t} );\n\n\t}\n\n}\n\nmodule.exports = Menu;","let date = function( column ) {\n\tlet $ = jQuery;\n\tlet $column = column.$el;\n\tlet $setting = $column.find( '.ac-column-setting--date' );\n\n\t$setting.each( function() {\n\n\t\tlet $container = $( this );\n\n\t\t// Custom input\n\t\tlet $radio_custom = $container.find( 'input.custom' );\n\t\tlet $input_custom = $container.find( '.ac-setting-input-date__custom' );\n\t\tlet $input_value = $container.find( '.ac-setting-input-date__value' );\n\t\tlet $example_custom = $container.find( '.ac-setting-input-date__example' );\n\t\tlet $selected = $container.find( 'input[type=radio]:checked' );\n\t\tlet $help_msg = $container.find( '.help-msg' );\n\n\t\t// Click Event\n\t\t$container.find( 'input[type=radio]' ).on( 'change', function() {\n\n\t\t\tlet $input = $( this );\n\t\t\tlet $input_container = $input.closest( 'label' );\n\t\t\tlet date_format = $input_container.find( 'code' ).text();\n\t\t\tlet description = $input_container.find( '.ac-setting-input-date__more' ).html();\n\n\t\t\tif ( date_format ) {\n\t\t\t\t$input_custom.val( date_format ).trigger( 'change' );\n\t\t\t}\n\n\t\t\tif ( $input.hasClass( 'diff' ) ) {\n\t\t\t\t$input_custom.val( '' );\n\t\t\t\t$example_custom.text( '' );\n\t\t\t}\n\n\t\t\t$input_custom.prop( 'disabled', true );\n\n\t\t\t// Custom input selected\n\t\t\tif ( $input.hasClass( 'custom' ) ) {\n\t\t\t\t$input.val( $input_custom.val() );\n\t\t\t\t$input_custom.prop( 'disabled', false );\n\t\t\t\t$help_msg.show();\n\t\t\t}\n\n\t\t\t// Show more description\n\t\t\t$help_msg.hide();\n\t\t\tif ( description ) {\n\t\t\t\t$help_msg.html( description ).show();\n\t\t\t}\n\n\t\t\t$input_value.val( $input.val() );\n\t\t} );\n\n\t\t// Custom input\n\t\t$input_custom.on( 'change', function() {\n\n\t\t\t$example_custom.html( '<span class=\"spinner is-active\"></span>' );\n\t\t\t$radio_custom.val( $input_custom.val() );\n\n\t\t\tlet $custom_value = $( this ).val();\n\n\t\t\tif ( !$custom_value ) {\n\t\t\t\t$example_custom.text( '' );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$.ajax( {\n\t\t\t\turl : ajaxurl,\n\t\t\t\tmethod : 'post',\n\t\t\t\tdata : {\n\t\t\t\t\taction : 'date_format',\n\t\t\t\t\tdate : $custom_value\n\t\t\t\t}\n\t\t\t} ).done( function( date ) {\n\t\t\t\t$example_custom.text( date );\n\t\t\t} );\n\n\t\t\t$input_value.val( $custom_value );\n\t\t} );\n\n\t\t// Update date example box\n\t\t$selected.trigger( 'change' );\n\n\t\t// Select custom input as a default\n\t\tif ( 0 === $selected.length ) {\n\t\t\t$radio_custom.trigger( 'click' );\n\t\t}\n\n\t} );\n};\n\nmodule.exports = date;","class Image {\n\n\tconstructor( column ) {\n\t\tthis.column = column;\n\t\tthis.setting = column.$el[ 0 ].querySelector( '.ac-column-setting--image' );\n\n\t\tif ( !this.setting ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.field = this.setting.querySelector( '.ac-setting-input select' );\n\n\t\tthis.initState();\n\t\tthis.bindEvents();\n\t}\n\n\tgetValue() {\n\t\treturn this.field.value;\n\t}\n\n\tbindEvents() {\n\t\tlet self = this;\n\n\t\tthis.field.addEventListener( 'change', function( e ) {\n\t\t\tself.initState();\n\t\t} );\n\t}\n\n\tinitState() {\n\t\tif ( 'cpac-custom' === this.getValue() ) {\n\t\t\tthis.showSubsettings();\n\t\t} else {\n\t\t\tthis.hideSubsettings();\n\t\t}\n\t}\n\n\thideSubsettings() {\n\t\tlet subsetting = this.setting.querySelectorAll( '.ac-column-setting' );\n\n\t\tfor ( let i = 0; i < subsetting.length; ++i ) {\n\t\t\tsubsetting[ i ].style.display = 'none';\n\t\t}\n\n\t}\n\n\tshowSubsettings() {\n\t\tlet subsetting = this.setting.querySelectorAll( '.ac-column-setting' );\n\n\t\tfor ( let i = 0; i < subsetting.length; ++i ) {\n\t\t\tsubsetting[ i ].style.display = 'table';\n\t\t}\n\t}\n\n\tsetValue( value ) {\n\t\tthis.field.value = value;\n\n\t\tthis.trigger( this.field, 'change' );\n\n\t\treturn this;\n\t}\n\n\tsetWidth( width ) {\n\t\tlet field = this.setting.querySelector( '.ac-column-setting [name*=\"image_size_w\"]' );\n\n\t\tfield.value = width;\n\t\tthis.trigger( field, 'change' );\n\n\t\treturn this;\n\t}\n\n\tsetHeight( height ) {\n\t\tlet field = this.setting.querySelector( '.ac-column-setting [name*=\"image_size_h\"]' );\n\t\tfield.value = height;\n\n\t\tthis.trigger( field, 'change' );\n\n\t\treturn this;\n\t}\n\n\tsetSize( width, height ) {\n\t\tthis.setWidth( width );\n\t\tthis.setHeight( height );\n\n\t\treturn this;\n\t}\n\n\ttrigger( el, event ) {\n\t\tel.dispatchEvent( new Event( event ) );\n\n\t\treturn this;\n\t}\n\n}\n\nlet image = function( column ) {\n\tcolumn.settings.image = new Image( column );\n};\n\nmodule.exports = image;","import Modals from \"../../../modules/modals\";\nimport Modal from \"../../../modules/modal\";\n\nclass Label {\n\tconstructor( column ) {\n\t\tthis.column = column;\n\n\t\tthis.setting = column.el.querySelector( '.ac-column-setting--label' );\n\t\tthis.iconpicker = this.setting.querySelector( '.-iconpicker' );\n\n\t\tif ( !this.iconpicker ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._dashicon = false;\n\t\tthis.modal = Modals.init().register( new Modal( this.setting.querySelector( '.-iconpicker' ) ) );\n\t\tthis.field = this.setting.querySelector( '.ac-setting-input_label' );\n\n\t\tthis.initValue();\n\t\tthis.bindEvents();\n\t}\n\n\tinitValue() {\n\t\tlet self = this;\n\t\tlet html = document.createRange().createContextualFragment( this.getValue() );\n\t\tlet dashicon = html.querySelector( '.dashicons' );\n\n\t\tif ( dashicon ) {\n\t\t\tlet classList = dashicon.classList;\n\n\t\t\tclassList.forEach( cls => {\n\t\t\t\tif ( cls.indexOf( 'dashicons-' ) !== -1 ) {\n\t\t\t\t\tlet selector = '.' + cls;\n\t\t\t\t\tlet icon = self.iconpicker.querySelector( selector );\n\n\t\t\t\t\tif ( icon ) {\n\t\t\t\t\t\ticon.parentElement.classList.add( 'active' );\n\t\t\t\t\t\tself.setIconSelection( icon.parentElement.dataset.dashicon );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t} else {\n\t\t\tself.setIconSelection( false );\n\t\t}\n\n\t}\n\n\tbindEvents() {\n\t\tlet self = this;\n\n\t\tthis.setting.querySelector( '.ac-setting-label-icon' ).addEventListener( 'click', function( e ) {\n\t\t\te.preventDefault();\n\t\t\tself.modal.open();\n\t\t} );\n\n\t\tthis.setting.querySelector( '[data-action=\"submit\"]' ).addEventListener( 'click', function( e ) {\n\n\t\t\te.preventDefault();\n\t\t\tif ( self.getIconSelection() ) {\n\t\t\t\tself.setDashicon( self.getIconSelection() );\n\t\t\t}\n\n\t\t\tself.modal.close();\n\t\t} );\n\n\t\tlet icons = this.iconpicker.querySelectorAll( '.ac-ipicker__icon' );\n\t\ticons.forEach( icon => {\n\t\t\ticon.addEventListener( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\n\t\t\t\tlet dashicon = this.dataset.dashicon;\n\t\t\t\tif ( dashicon ) {\n\t\t\t\t\tself.setIconSelection( dashicon );\n\t\t\t\t}\n\n\t\t\t\tlet icons = self.setting.querySelectorAll( '.ac-ipicker__icon' );\n\t\t\t\ticons.forEach( icon => {\n\t\t\t\t\ticon.classList.remove( 'active' );\n\t\t\t\t} );\n\n\t\t\t\ticon.classList.add( 'active' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\tgetValue() {\n\t\treturn this.field.value;\n\t}\n\n\tsetValue( value ) {\n\t\tthis.field.value = value;\n\n\t\tlet event = new Event( 'change' );\n\t\tthis.field.dispatchEvent( event );\n\t}\n\n\tsetIconSelection( dashicon ) {\n\t\tlet selection = this.setting.querySelector( '.ac-ipicker__selection' );\n\t\tthis._dashicon = dashicon;\n\t\tselection.innerHTML = `<span class=\"dashicons dashicons-${dashicon}\"></span>`;\n\n\t\tif ( !dashicon ) {\n\t\t\tselection.style.visibility = 'hidden';\n\t\t} else {\n\t\t\tselection.style.visibility = 'visible';\n\t\t}\n\t}\n\n\tgetIconSelection() {\n\t\treturn this._dashicon;\n\t}\n\n\tsetDashicon( dashicon ) {\n\t\tthis.setValue( `<span class=\"dashicons dashicons-${dashicon}\"></span>` );\n\t}\n\n}\n\nlet label = function( column ) {\n\tcolumn.settings.label = new Label( column );\n};\n\nmodule.exports = label;","let pro = function( column ) {\n\tlet $column = column.$el;\n\tlet $setting = $column.find( '.ac-column-setting--pro' );\n\n\t$setting.each( function() {\n\t\tlet $container = jQuery( this );\n\n\t\t$container.find( 'input' ).on( 'click', function( e ) {\n\t\t\te.preventDefault();\n\n\t\t\t$container.find( '[data-ac-open-modal]' ).trigger( 'click' );\n\t\t} )\n\n\t} );\n};\n\nmodule.exports = pro;","let subsetting = function( column ) {\n\tlet $ = jQuery;\n\tlet settings = {\n\t\tvalue_show : \"on\",\n\t\tsubfield : '.ac-column-setting'\n\t};\n\n\tfunction initState( $setting, $input ) {\n\t\tlet value = $input.filter( ':checked' ).val();\n\t\tlet $subfields = $setting.find( settings.subfield );\n\n\t\tif ( settings.value_show === value ) {\n\t\t\t$subfields.show();\n\t\t} else {\n\t\t\t$subfields.hide();\n\t\t}\n\t}\n\n\tlet $column = column.$el;\n\tlet $settings = $column.find( '.ac-column-setting--filter,.ac-column-setting--sort,.ac-column-setting--edit' );\n\n\t$settings.each( function() {\n\t\tlet $setting = $( this );\n\t\tlet $input = $( this ).find( '.ac-setting-input input[type=\"radio\"]' );\n\n\t\tinitState( $setting, $input );\n\t\t$input.on( 'change', function() {\n\t\t\tinitState( $setting, $input );\n\t\t} );\n\n\t} );\n};\n\nmodule.exports = subsetting;","// Settings fields: Width\njQuery.fn.column_width_slider = function() {\n\tlet $ = jQuery;\n\tlet $column_width = $( this ).find( '.ac-setting-input-width' );\n\tlet input_width = $column_width.find( '.description input' ),\n\t\tinput_unit = $column_width.find( '.unit-select input' ),\n\t\tunit = input_unit.filter( ':checked' ).val(),\n\t\twidth = input_width.val(),\n\t\tslider = $column_width.find( '.width-slider' ),\n\t\tindicator = $( this ).find( '.ac-column-header .ac-column-heading-setting--width' );\n\n\t// width\n\tif ( '%' === unit && width > 100 ) {\n\t\twidth = 100;\n\t}\n\n\tinput_width.val( width );\n\n\tslider.slider( {\n\t\trange : 'min',\n\t\tmin : 0,\n\t\tmax : '%' === unit ? 100 : 500,\n\t\tvalue : width,\n\t\tslide : function( event, ui ) {\n\t\t\tinput_width.val( ui.value );\n\t\t\tindicator.trigger( 'update' );\n\t\t\tinput_width.trigger( 'validate' );\n\t\t}\n\t} );\n};\n\nlet width = function( column ) {\n\tlet $column = column.$el;\n\n\t$column.find( '.ac-column-setting--width' ).each( function() {\n\t\t$column.column_width_slider();\n\n\t\t// indicator\n\t\tlet $width_indicator = $column.find( '.ac-column-header .ac-column-heading-setting--width' );\n\n\t\t$width_indicator.on( 'update', function() {\n\t\t\tlet _width = $column.find( '.ac-setting-input-width .description input' ).val();\n\t\t\tlet _unit = $column.find( '.ac-setting-input-width .description .unit' ).text();\n\t\t\tif ( _width > 0 ) {\n\t\t\t\t$( this ).text( _width + _unit );\n\t\t\t} else {\n\t\t\t\t$( this ).text( '' );\n\t\t\t}\n\t\t} );\n\n\t\t// unit selector\n\t\tlet width_unit_select = $column.find( '.ac-setting-input-width .unit-select label' );\n\t\twidth_unit_select.on( 'click', function() {\n\n\t\t\t$column.find( 'span.unit' ).text( $( this ).find( 'input' ).val() );\n\t\t\t$column.column_width_slider(); // re-init slider\n\t\t\t$width_indicator.trigger( 'update' ); // update indicator\n\t\t} );\n\n\t\t// width_input\n\t\tlet width_input = $column.find( '.ac-setting-input-width .description input' )\n\t\t\t.on( 'keyup', function() {\n\t\t\t\t$column.column_width_slider(); // re-init slider\n\t\t\t\t$( this ).trigger( 'validate' ); // validate input\n\t\t\t\t$width_indicator.trigger( 'update' ); // update indicator\n\t\t\t} )\n\n\t\t\t// width_input:validate\n\t\t\t.on( 'validate', function() {\n\t\t\t\tlet _width = width_input.val();\n\t\t\t\tlet _new_width = $.trim( _width );\n\n\t\t\t\tif ( !$.isNumeric( _new_width ) ) {\n\t\t\t\t\t_new_width = _new_width.replace( /\\D/g, '' );\n\t\t\t\t}\n\t\t\t\tif ( _new_width.length > 3 ) {\n\t\t\t\t\t_new_width = _new_width.substring( 0, 3 );\n\t\t\t\t}\n\t\t\t\tif ( _new_width <= 0 ) {\n\t\t\t\t\t_new_width = '';\n\t\t\t\t}\n\t\t\t\tif ( _new_width !== _width ) {\n\t\t\t\t\twidth_input.val( _new_width );\n\t\t\t\t}\n\t\t\t} );\n\n\t} );\n};\n\nmodule.exports = width;","import Modals from './modals'\n\nclass Modal {\n\tconstructor( el ) {\n\t\tif ( !el ) {\n\t\t\treturn;\n\t\t}\n\t\tthis.el = el;\n\t\tthis.dialog = el.querySelector( '.ac-modal__dialog' );\n\n\t\tthis.initEvents();\n\t}\n\n\tstatic initGlobalEvents() {\n\n\t\tjQuery( document ).on( 'click', '[data-ac-open-modal]', function( e ) {\n\t\t\te.preventDefault();\n\t\t\tlet target = e.target.dataset.acOpenModal;\n\t\t\tlet el = document.querySelector( target );\n\n\t\t\tif ( el && el.AC_MODAL ) {\n\t\t\t\tel.AC_MODAL.open();\n\t\t\t}\n\t\t} );\n\n\t\tjQuery( document ).on( 'click', '[data-ac-modal]', function( e ) {\n\t\t\te.preventDefault();\n\t\t\tlet modal_key = jQuery( this ).data( 'ac-modal' );\n\n\t\t\tif ( Modals.init().get( modal_key ) ) {\n\t\t\t\tModals.init().get( modal_key ).open();\n\t\t\t}\n\t\t} );\n\n\t}\n\n\tinitEvents() {\n\t\tlet self = this;\n\n\t\tdocument.addEventListener( 'keydown', ( e ) => {\n\t\t\tconst keyName = event.key;\n\n\t\t\tif ( !this.isOpen() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( 'Escape' === keyName ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\t\t} );\n\n\t\tlet dismissButtons = this.el.querySelectorAll( '[data-dismiss=\"modal\"], .ac-modal__dialog__close' );\n\t\tif ( dismissButtons.length > 0 ) {\n\t\t\tdismissButtons.forEach( ( b ) => {\n\t\t\t\tb.addEventListener( 'click', ( e ) => {\n\t\t\t\t\te.preventDefault();\n\t\t\t\t\tself.close();\n\t\t\t\t} );\n\t\t\t} );\n\t\t}\n\n\t\tthis.el.addEventListener( 'click', () => {\n\t\t\tself.close();\n\t\t} );\n\n\t\tthis.el.querySelector( '.ac-modal__dialog' ).addEventListener( 'click', ( e ) => {\n\t\t\te.stopPropagation();\n\t\t} );\n\n\t\tif ( typeof document.querySelector( 'body' ).dataset.ac_modal_init === 'undefined' ) {\n\t\t\tModal.initGlobalEvents();\n\t\t\tdocument.querySelector( 'body' ).dataset.ac_modal_init = 1;\n\t\t}\n\n\t\tthis.el.AC_MODAL = self;\n\t}\n\n\tisOpen() {\n\t\treturn this.el.classList.contains( '-active' );\n\t}\n\n\tclose() {\n\t\tthis.onClose();\n\t\tthis.el.classList.remove( '-active' );\n\t}\n\n\topen() {\n\t\tthis.onOpen();\n\t\tthis.el.classList.add( '-active' );\n\t}\n\n\tonClose() {}\n\n\tonOpen() {}\n\n}\n\nmodule.exports = Modal;","class Modals {\n\n\tconstructor() {\n\t\tthis.modals = [];\n\t\tthis.number = 1;\n\t}\n\n\tregister( modal, key = '' ) {\n\t\tif ( !key ) {\n\t\t\tkey = 'm' + this.number;\n\t\t}\n\n\t\tthis.modals[ key ] = modal;\n\t\tthis.number++;\n\n\t\treturn modal;\n\t}\n\n\tget( key ) {\n\t\tif ( this.modals[ key ] ) {\n\t\t\treturn this.modals[ key ];\n\t\t}\n\n\t\treturn false;\n\t}\n\n\t// Bind self to global AdminColumns if exist\n\tstatic init() {\n\t\tif ( typeof AdminColumns.Modals === 'undefined' ) {\n\t\t\tAdminColumns.Modals = new this();\n\t\t}\n\n\t\treturn AdminColumns.Modals;\n\t}\n\n}\n\nmodule.exports = Modals;","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","// 0 -> Array#forEach\n// 1 -> Array#map\n// 2 -> Array#filter\n// 3 -> Array#some\n// 4 -> Array#every\n// 5 -> Array#find\n// 6 -> Array#findIndex\nvar ctx = require('./_ctx');\nvar IObject = require('./_iobject');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar asc = require('./_array-species-create');\nmodule.exports = function (TYPE, $create) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n var create = $create || asc;\n return function ($this, callbackfn, that) {\n var O = toObject($this);\n var self = IObject(O);\n var f = ctx(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var val, res;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n val = self[index];\n res = f(val, index, O);\n if (TYPE) {\n if (IS_MAP) result[index] = res; // map\n else if (res) switch (TYPE) {\n case 3: return true; // some\n case 5: return val; // find\n case 6: return index; // findIndex\n case 2: result.push(val); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n };\n};\n","var isObject = require('./_is-object');\nvar isArray = require('./_is-array');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (original) {\n var C;\n if (isArray(original)) {\n C = original.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return C === undefined ? Array : C;\n};\n","// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\nvar speciesConstructor = require('./_array-species-constructor');\n\nmodule.exports = function (original, length) {\n return new (speciesConstructor(original))(length);\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = {};\n","module.exports = false;\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","'use strict';\n// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(5);\nvar KEY = 'find';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","var dP = require('./_object-dp').f;\nvar FProto = Function.prototype;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name';\n\n// 19.2.4.2 name\nNAME in FProto || require('./_descriptors') && dP(FProto, NAME, {\n configurable: true,\n get: function () {\n try {\n return ('' + this).match(nameRE)[1];\n } catch (e) {\n return '';\n }\n }\n});\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","module.exports = jQuery;"],"sourceRoot":""}
|
1 |
+
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./js/admin-page-columns.js","webpack:///./js/admin/columns/column.js","webpack:///./js/admin/columns/events/addons.js","webpack:///./js/admin/columns/events/clone.js","webpack:///./js/admin/columns/events/indicator.js","webpack:///./js/admin/columns/events/label.js","webpack:///./js/admin/columns/events/refresh.js","webpack:///./js/admin/columns/events/remove.js","webpack:///./js/admin/columns/events/toggle.js","webpack:///./js/admin/columns/events/type-selector.js","webpack:///./js/admin/columns/feedback.js","webpack:///./js/admin/columns/form.js","webpack:///./js/admin/columns/initiator.js","webpack:///./js/admin/columns/menu.js","webpack:///./js/admin/columns/settings/date.js","webpack:///./js/admin/columns/settings/image-size.js","webpack:///./js/admin/columns/settings/label.js","webpack:///./js/admin/columns/settings/pro.js","webpack:///./js/admin/columns/settings/sub-setting-toggle.js","webpack:///./js/admin/columns/settings/width.js","webpack:///./js/modules/modal.js","webpack:///./js/modules/modals.js","webpack:///./node_modules/core-js/modules/_a-function.js","webpack:///./node_modules/core-js/modules/_add-to-unscopables.js","webpack:///./node_modules/core-js/modules/_an-object.js","webpack:///./node_modules/core-js/modules/_array-includes.js","webpack:///./node_modules/core-js/modules/_array-methods.js","webpack:///./node_modules/core-js/modules/_array-species-constructor.js","webpack:///./node_modules/core-js/modules/_array-species-create.js","webpack:///./node_modules/core-js/modules/_cof.js","webpack:///./node_modules/core-js/modules/_core.js","webpack:///./node_modules/core-js/modules/_ctx.js","webpack:///./node_modules/core-js/modules/_defined.js","webpack:///./node_modules/core-js/modules/_descriptors.js","webpack:///./node_modules/core-js/modules/_dom-create.js","webpack:///./node_modules/core-js/modules/_enum-bug-keys.js","webpack:///./node_modules/core-js/modules/_export.js","webpack:///./node_modules/core-js/modules/_fails.js","webpack:///./node_modules/core-js/modules/_fix-re-wks.js","webpack:///./node_modules/core-js/modules/_global.js","webpack:///./node_modules/core-js/modules/_has.js","webpack:///./node_modules/core-js/modules/_hide.js","webpack:///./node_modules/core-js/modules/_html.js","webpack:///./node_modules/core-js/modules/_ie8-dom-define.js","webpack:///./node_modules/core-js/modules/_iobject.js","webpack:///./node_modules/core-js/modules/_is-array.js","webpack:///./node_modules/core-js/modules/_is-object.js","webpack:///./node_modules/core-js/modules/_iter-create.js","webpack:///./node_modules/core-js/modules/_iter-define.js","webpack:///./node_modules/core-js/modules/_iter-step.js","webpack:///./node_modules/core-js/modules/_iterators.js","webpack:///./node_modules/core-js/modules/_library.js","webpack:///./node_modules/core-js/modules/_object-create.js","webpack:///./node_modules/core-js/modules/_object-dp.js","webpack:///./node_modules/core-js/modules/_object-dps.js","webpack:///./node_modules/core-js/modules/_object-gpo.js","webpack:///./node_modules/core-js/modules/_object-keys-internal.js","webpack:///./node_modules/core-js/modules/_object-keys.js","webpack:///./node_modules/core-js/modules/_object-sap.js","webpack:///./node_modules/core-js/modules/_property-desc.js","webpack:///./node_modules/core-js/modules/_redefine.js","webpack:///./node_modules/core-js/modules/_set-to-string-tag.js","webpack:///./node_modules/core-js/modules/_shared-key.js","webpack:///./node_modules/core-js/modules/_shared.js","webpack:///./node_modules/core-js/modules/_to-absolute-index.js","webpack:///./node_modules/core-js/modules/_to-integer.js","webpack:///./node_modules/core-js/modules/_to-iobject.js","webpack:///./node_modules/core-js/modules/_to-length.js","webpack:///./node_modules/core-js/modules/_to-object.js","webpack:///./node_modules/core-js/modules/_to-primitive.js","webpack:///./node_modules/core-js/modules/_uid.js","webpack:///./node_modules/core-js/modules/_wks.js","webpack:///./node_modules/core-js/modules/es6.array.find.js","webpack:///./node_modules/core-js/modules/es6.array.iterator.js","webpack:///./node_modules/core-js/modules/es6.function.name.js","webpack:///./node_modules/core-js/modules/es6.object.keys.js","webpack:///./node_modules/core-js/modules/es6.regexp.replace.js","webpack:///./node_modules/core-js/modules/web.dom.iterable.js","webpack:///external \"jQuery\""],"names":["jQuery","$","require","AC","Column","Initiator","AdminColumns","document","on","registerEvent","EventToggle","EventRemove","EventClone","EventRefresh","EventTypeSelector","EventIndicator","EventLabel","label","setting","EventAddons","registerSetting","SettingDate","SettingImageSize","SettingPro","SettingSubSettingToggle","SettingWidth","SettingLabel","ready","Form","Modals","init","register","Modal","querySelector","Menu","Feedback","$el","el","settings","_type","data","hasClass","addClass","removeClass","temp_column_name","getNewIncementalName","original_column_name","name","find","each","i","v","$input","attr","replace","incremental_column_name","column","Object","keys","events","forEach","key","isBound","bind","bindSettings","trigger","remove","duration","self","animate","opacity","height","destroy","close","open","slideUp","slideDown","message","html","show","type","ajax","url","ajaxurl","method","dataType","action","id","current_original_columns","originalColumns","original_columns","list_screen","layout","_ajax_nonce","success","response","replaceWith","initNewInstance","bindEvents","showMessage","error","serializeArray","request_data","column_name","value","push","$clone","clone","module","exports","addons","$column","inputs","closest","state","val","additional","click","e","preventDefault","isOriginal","cloneColumn","indicator","$indicator","$setting","unbind","toggleClass","filter","prop","change","$label","field_label","text","setTimeout","column_label","trim","width","settingLabel","hover","parents","hide","refresh","always","removeColumn","toggle","css","selector","switchToType","reindexColumns","$box","$form","$container","columns","initColumns","bindFormEvents","bindOrdering","sortable","items","handle","$buttons","submitForm","removeAttr","addColumn","$boxes","col","disable","resetColumns","serialize","xhr","post","fail","attr_class","$msg","stop","before","_addColumnToForm","create","append","scrollTop","offset","top","incremental_name","k","console","event","oldName","submit","next","date","$radio_custom","$input_custom","$input_value","$example_custom","$selected","$help_msg","$input_container","date_format","description","$custom_value","done","length","Image","field","initState","addEventListener","getValue","showSubsettings","hideSubsettings","subsetting","querySelectorAll","style","display","setWidth","setHeight","dispatchEvent","Event","image","Label","iconpicker","_dashicon","modal","initValue","createRange","createContextualFragment","dashicon","classList","cls","indexOf","icon","parentElement","add","setIconSelection","dataset","getIconSelection","setDashicon","icons","selection","innerHTML","visibility","setValue","pro","value_show","subfield","$subfields","$settings","fn","column_width_slider","$column_width","input_width","input_unit","unit","slider","range","min","max","slide","ui","$width_indicator","_width","_unit","width_unit_select","width_input","_new_width","isNumeric","substring","dialog","initEvents","keyName","isOpen","dismissButtons","b","stopPropagation","ac_modal_init","initGlobalEvents","AC_MODAL","contains","onClose","onOpen","target","acOpenModal","modal_key","get","modals","number","_abstract"],"mappings":"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CA,WAAK+D,MAAL;AAEA,aAAO/D,KAAP;AACA;;;wBAEI/J,G,EAAM;AACV,UAAK,KAAK6N,MAAL,CAAa7N,GAAb,CAAL,EAA0B;AACzB,eAAO,KAAK6N,MAAL,CAAa7N,GAAb,CAAP;AACA;;AAED,aAAO,KAAP;AACA,K,CAED;;;;2BACc;AACb,UAAK,OAAOvD,aAAauB,MAApB,KAA+B,WAApC,EAAkD;AACjDvB,qBAAauB,MAAb,GAAsB,IAAI,IAAJ,EAAtB;AACAvB,qBAAauB,MAAb,CAAoB+P,SAApB,GAAgC;AAC/BhE,iBAAQ5L;AADuB,SAAhC;AAGA;;AAED,aAAO1B,aAAauB,MAApB;AACA;;;;;;AAIF+E,OAAOC,OAAP,GAAiBhF,MAAjB,C;;;;;;;;;;;AC1CA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA,mJAAwF;AACxF;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,YAAY,eAAe;AAChC;AACA,KAAK;AACL;AACA;;;;;;;;;;;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,eAAe;AACzB;AACA;AACA;AACA,wCAAwC;AACxC;AACA,8BAA8B;AAC9B,6BAA6B;AAC7B,+BAA+B;AAC/B,mCAAmC;AACnC,SAAS,iCAAiC;AAC1C;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC3CA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACfA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;ACLA,iBAAiB;;AAEjB;AACA;AACA;;;;;;;;;;;;ACJA,6BAA6B;AAC7B,uCAAuC;;;;;;;;;;;;ACDvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA,iCAAiC,QAAQ,mBAAmB,UAAU,EAAE,EAAE;AAC1E,CAAC;;;;;;;;;;;;ACHD;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,kFAAkF,uBAAuB;AACzG,iEAAiE;AACjE,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,eAAe;AACf,eAAe;AACf,eAAe;AACf,gBAAgB;AAChB;;;;;;;;;;;;AC1CA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,UAAU;AACvC;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,gCAAgC,qCAAqC;AACrE;AACA;AACA,2BAA2B,gCAAgC;AAC3D;AACA;AACA;;;;;;;;;;;;AC3BA;AACA;AACA;AACA;AACA;AACA,yCAAyC;;;;;;;;;;;;ACLzC,uBAAuB;AACvB;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;;;;;;;;;;;;ACPA;AACA;;;;;;;;;;;;ACDA;AACA,uIAAsE,mBAAmB,UAAU,EAAE,EAAE;AACvG,CAAC;;;;;;;;;;;;ACFD;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;;AAEA;AACA,uMAAkF,aAAa,EAAE;;AAEjG;AACA,qDAAqD,4BAA4B;AACjF;AACA;;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;;AAEA,8BAA8B,aAAa;;AAE3C;AACA;AACA;AACA;AACA;AACA,yCAAyC,oCAAoC;AAC7E,6CAA6C,oCAAoC;AACjF,KAAK,4BAA4B,oCAAoC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,mBAAmB;AACnC;AACA;AACA,kCAAkC,2BAA2B;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;;;;ACpEA;AACA,UAAU;AACV;;;;;;;;;;;;ACFA;;;;;;;;;;;;ACAA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;;;;;;;;;;;ACxCA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG,YAAY;AACf;AACA;AACA;AACA;;;;;;;;;;;;ACfA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACZA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,qDAAqD,OAAO,EAAE;AAC9D;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;;;;;;;;;;;;AC9BD;AACA;AACA;;AAEA;AACA,oEAAoE,iCAAiC;AACrG;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA,kDAAkD;;AAElD;AACA,qEAAqE;AACrE,CAAC;AACD;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACXD;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA,2DAA2D;AAC3D;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,gBAAgB,EAAE;AAC5D;AACA;AACA;AACA;AACA,CAAC;AACD;;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC,cAAc;AACd,iBAAiB;AACjB;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;ACjCA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACfD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACRD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,CAAC;;;;;;;;;;;;ACXD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oDAAoD,wBAAwB;AAC5E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;;ACzDA,wB","file":"admin-page-columns.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 0);\n","/**\r\n * AC variables. Defined in DOM.\r\n * @param AdminColumns {Object}\r\n * @param AC {Object}\r\n * @param AC.list_screen {String}\r\n * @param AC.layout {String}\r\n * @param AC.i81n {String}\r\n */\r\nimport Form from \"./admin/columns/form\";\r\nimport Modals from \"./modules/modals\";\r\nimport Initiator from \"./admin/columns/initiator\";\r\nimport Modal from \"./modules/modal\";\r\nimport Menu from \"./admin/columns/menu\";\r\nimport Feedback from \"./admin/columns/feedback\";\r\n/** Events */\r\nimport EventToggle from './admin/columns/events/toggle';\r\nimport EventRemove from './admin/columns/events/remove';\r\nimport EventClone from './admin/columns/events/clone';\r\nimport EventRefresh from './admin/columns/events/refresh';\r\nimport EventTypeSelector from './admin/columns/events/type-selector';\r\nimport EventIndicator from './admin/columns/events/indicator';\r\nimport EventLabel from './admin/columns/events/label';\r\nimport EventAddons from './admin/columns/events/addons';\r\n/** Settings */\r\nimport SettingImageSize from './admin/columns/settings/image-size';\r\nimport SettingSubSettingToggle from './admin/columns/settings/sub-setting-toggle';\r\nimport SettingDate from './admin/columns/settings/date';\r\nimport SettingPro from './admin/columns/settings/pro';\r\nimport SettingWidth from './admin/columns/settings/width';\r\nimport SettingLabel from './admin/columns/settings/label';\r\n\r\nlet jQuery = $ = require( 'jquery' );\r\n\r\nAC.Column = new Initiator(); // Todo remove from\r\nAdminColumns.Column = AC.Column;\r\n\r\njQuery( document ).on( 'AC_Form_Loaded', function() {\r\n\r\n\t/** Register Events **/\r\n\tAdminColumns.Column\r\n\t\t.registerEvent( 'toggle', EventToggle )\r\n\t\t.registerEvent( 'remove', EventRemove )\r\n\t\t.registerEvent( 'clone', EventClone )\r\n\t\t.registerEvent( 'refresh', EventRefresh )\r\n\t\t.registerEvent( 'type_selector', EventTypeSelector )\r\n\t\t.registerEvent( 'indicator', EventIndicator )\r\n\t\t.registerEvent( 'label', EventLabel.label )\r\n\t\t.registerEvent( 'label_setting', EventLabel.setting )\r\n\t\t.registerEvent( 'addons', EventAddons )\r\n\r\n\t\t/** Register Settings **/\r\n\t\t.registerSetting( 'date', SettingDate )\r\n\t\t.registerSetting( 'image_size', SettingImageSize )\r\n\t\t.registerSetting( 'pro', SettingPro )\r\n\t\t.registerSetting( 'sub_setting_toggle', SettingSubSettingToggle )\r\n\t\t.registerSetting( 'width', SettingWidth )\r\n\t\t.registerSetting( 'label', SettingLabel );\r\n} );\r\n\r\njQuery( document ).ready( function() {\r\n\tAC.Form = new Form( '#cpac .ac-columns form' );\r\n\tModals.init().register( new Modal( document.querySelector( '#ac-modal-pro' ) ), 'pro' );\r\n\r\n\tnew Menu().init();\r\n\tnew Feedback( '.sidebox#direct-feedback' );\r\n} );","class Column {\r\n\r\n\tconstructor( $el ) {\r\n\t\tthis.$el = $el;\r\n\t\tthis.el = $el[ 0 ];\r\n\t\tthis.settings = [];\r\n\r\n\t\tthis._type = this.$el.data( 'type' );\r\n\t}\r\n\r\n\tget name() {\r\n\t\treturn this.$el.data( 'column-name' );\r\n\t}\r\n\r\n\tset name( name ) {\r\n\t\tthis.$el.data( 'column-name', name );\r\n\t}\r\n\r\n\tget type() {\r\n\t\treturn this._type;\r\n\t}\r\n\r\n\tset type( type ) {\r\n\t\tthis.$el.data( 'type', type );\r\n\t}\r\n\r\n\tisOriginal() {\r\n\t\treturn (1 === this.$el.data( 'original' ));\r\n\t}\r\n\r\n\tisDisabled() {\r\n\t\treturn this.$el.hasClass( 'disabled' );\r\n\t}\r\n\r\n\tdisable() {\r\n\t\tthis.$el.addClass( 'disabled' );\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\tenable() {\r\n\t\tthis.$el.removeClass( 'disabled' );\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\tinitNewInstance() {\r\n\t\tlet temp_column_name = '_new_column_' + AC.Column.getNewIncementalName();\r\n\t\tlet original_column_name = this.name;\r\n\r\n\t\tthis.$el.find( 'input, select, label' ).each( function( i, v ) {\r\n\t\t\tlet $input = jQuery( v );\r\n\r\n\t\t\t// name attributes\r\n\t\t\tif ( $input.attr( 'name' ) ) {\r\n\t\t\t\t$input.attr( 'name', $input.attr( 'name' ).replace( `columns[${original_column_name}]`, `columns[${temp_column_name}]` ) );\r\n\t\t\t}\r\n\r\n\t\t\t// id attributes\r\n\t\t\tif ( $input.attr( 'id' ) ) {\r\n\t\t\t\t$input.attr( 'id', $input.attr( 'id' ).replace( `-${original_column_name}-`, `-${temp_column_name}-` ) );\r\n\t\t\t}\r\n\r\n\t\t} );\r\n\r\n\t\tthis.name = temp_column_name;\r\n\r\n\t\tAC.incremental_column_name++;\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\t/**\r\n\t *\r\n\t * @returns {Column}\r\n\t */\r\n\tbindEvents() {\r\n\t\tlet column = this;\r\n\t\tcolumn.$el.data( 'column', column );\r\n\r\n\t\tObject.keys( AC.Column.events ).forEach( function( key ) {\r\n\t\t\tif ( !column.isBound( key ) ) {\r\n\t\t\t\tAC.Column.events[ key ]( column );\r\n\t\t\t\tcolumn.bind( key );\r\n\t\t\t}\r\n\t\t} );\r\n\r\n\t\tthis.bindSettings();\r\n\r\n\t\tjQuery( document ).trigger( 'AC_Column_InitSettings', [ column ] );\r\n\r\n\t\treturn this;\r\n\t}\r\n\r\n\tbindSettings() {\r\n\t\tlet column = this;\r\n\r\n\t\tObject.keys( AC.Column.settings ).forEach( function( key ) {\r\n\t\t\tif ( !column.isBound( key ) ) {\r\n\t\t\t\tAC.Column.settings[ key ]( column );\r\n\t\t\t\tcolumn.bind( key );\r\n\t\t\t}\r\n\t\t} );\r\n\t}\r\n\r\n\t/**\r\n\t *\r\n\t * @param key\r\n\t * @returns {bool}\r\n\t */\r\n\tisBound( key ) {\r\n\t\treturn this.$el.data( key );\r\n\t}\r\n\r\n\tbind( key ) {\r\n\t\tthis.$el.data( key, true );\r\n\t}\r\n\r\n\tdestroy() {\r\n\t\tthis.$el.remove();\r\n\t}\r\n\r\n\tremove( duration = 350 ) {\r\n\t\tlet self = this;\r\n\r\n\t\tthis.$el.addClass( 'deleting' ).animate( { opacity : 0, height : 0 }, duration, function() {\r\n\t\t\tself.destroy();\r\n\t\t} );\r\n\t}\r\n\r\n\ttoggle( duration = 150 ) {\r\n\t\tif ( this.$el.hasClass( 'opened' ) ) {\r\n\t\t\tthis.close( duration );\r\n\t\t} else {\r\n\t\t\tthis.open( duration );\r\n\t\t}\r\n\t}\r\n\r\n\tclose( duration = 0 ) {\r\n\t\tthis.$el.removeClass( 'opened' ).find( '.ac-column-body' ).slideUp( duration );\r\n\t}\r\n\r\n\topen( duration = 0 ) {\r\n\t\tthis.$el.addClass( 'opened' ).find( '.ac-column-body' ).slideDown( duration );\r\n\t}\r\n\r\n\tshowMessage( message ) {\r\n\t\tthis.$el.find( '.ac-column-setting--type .msg' ).html( message ).show();\r\n\t}\r\n\r\n\tswitchToType( type ) {\r\n\t\tlet self = this;\r\n\r\n\t\treturn jQuery.ajax( {\r\n\t\t\turl : ajaxurl,\r\n\t\t\tmethod : 'post',\r\n\t\t\tdataType : 'json',\r\n\t\t\tdata : {\r\n\t\t\t\taction : 'ac-columns',\r\n\t\t\t\tid : 'select',\r\n\t\t\t\ttype : type,\r\n\t\t\t\tcurrent_original_columns : AC.Form.originalColumns(),\r\n\t\t\t\toriginal_columns : AC.original_columns,\r\n\t\t\t\tlist_screen : AC.list_screen,\r\n\t\t\t\tlayout : AC.layout,\r\n\t\t\t\t_ajax_nonce : AC._ajax_nonce,\r\n\t\t\t},\r\n\t\t\tsuccess : function( response ) {\r\n\t\t\t\tif ( true === response.success ) {\r\n\t\t\t\t\tlet column = jQuery( response.data );\r\n\r\n\t\t\t\t\tself.$el.replaceWith( column );\r\n\t\t\t\t\tself.$el = column;\r\n\t\t\t\t\tself.el = column[ 0 ];\r\n\t\t\t\t\tself._type = type;\r\n\t\t\t\t\tself.initNewInstance();\r\n\t\t\t\t\tself.bindEvents();\r\n\t\t\t\t\tself.open();\r\n\r\n\t\t\t\t\tjQuery( document ).trigger( 'AC_Column_Change', [ self ] );\r\n\t\t\t\t} else {\r\n\t\t\t\t\tself.showMessage( response.data.error )\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t} );\r\n\t}\r\n\r\n\trefresh() {\r\n\r\n\t\tlet self = this;\r\n\t\tlet data = this.$el.find( ':input' ).serializeArray();\r\n\t\tlet request_data = {\r\n\t\t\taction : 'ac-columns',\r\n\t\t\tid : 'refresh',\r\n\t\t\t_ajax_nonce : AC._ajax_nonce,\r\n\t\t\tlist_screen : AC.list_screen,\r\n\t\t\tlayout : AC.layout,\r\n\t\t\tcolumn_name : this.name,\r\n\t\t\toriginal_columns : AC.original_columns\r\n\t\t};\r\n\r\n\t\tjQuery.each( request_data, function( name, value ) {\r\n\t\t\tdata.push( {\r\n\t\t\t\tname : name,\r\n\t\t\t\tvalue : value\r\n\t\t\t} );\r\n\t\t} );\r\n\r\n\t\treturn jQuery.ajax( {\r\n\t\t\ttype : 'post',\r\n\t\t\turl : ajaxurl,\r\n\t\t\tdata : data,\r\n\r\n\t\t\tsuccess : function( response ) {\r\n\t\t\t\tif ( true === response.success ) {\r\n\t\t\t\t\tlet column = jQuery( response.data );\r\n\r\n\t\t\t\t\tself.$el.replaceWith( column );\r\n\t\t\t\t\tself.$el = column;\r\n\t\t\t\t\tself.el = column[ 0 ];\r\n\r\n\t\t\t\t\tself.bindEvents();\r\n\t\t\t\t\tself.open();\r\n\r\n\t\t\t\t\tjQuery( document ).trigger( 'AC_Column_Refresh', [ self ] );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t} );\r\n\t}\r\n\r\n\t/**\r\n\t * @returns {Column}\r\n\t */\r\n\tcreate() {\r\n\t\tthis.initNewInstance();\r\n\t\tthis.bindEvents();\r\n\r\n\t\tjQuery( document ).trigger( 'AC_Column_Created', [ self ] );\r\n\t\treturn this;\r\n\t}\r\n\r\n\t/**\r\n\t * @returns {Column}\r\n\t */\r\n\tclone() {\r\n\t\tlet $clone = this.$el.clone();\r\n\t\t$clone.data( 'column-name', this.$el.data( 'column-name' ) );\r\n\r\n\t\tlet clone = new Column( $clone );\r\n\r\n\t\tclone.initNewInstance();\r\n\t\tclone.bindEvents();\r\n\r\n\t\treturn clone;\r\n\t}\r\n}\r\n\r\nmodule.exports = Column;","/*\n * Optional Radio Click events\n * TODO: Is not used anymore?\n */\n\nlet addons = function( column ) {\n\tlet $ = jQuery;\n\tlet $column = column.$el;\n\tlet inputs = $column.find( '[data-trigger] label' );\n\n\tinputs.on( 'click', function() {\n\n\t\tlet id = $( this ).closest( 'td.input' ).data( 'trigger' );\n\t\tlet state = $( 'input', this ).val();\n\n\t\t// Toggle indicator icon\n\t\tlet label = $column.find( '[data-indicator-id=\"' + id + '\"]' ).removeClass( 'on' );\n\t\tif ( 'on' === state ) {\n\t\t\tlabel.addClass( 'on' );\n\t\t}\n\n\t\t// Toggle additional options\n\t\tlet additional = $column.find( '[data-handle=\"' + id + '\"]' ).addClass( 'hide' );\n\t\tif ( 'on' === state ) {\n\t\t\tadditional.removeClass( 'hide' );\n\t\t}\n\t} );\n\n\t// On load\n\t$column.find( '[data-trigger]' ).each( function() {\n\n\t\tlet trigger = $( this ).data( 'trigger' );\n\n\t\t// Hide additional column settings\n\t\tlet additional = $column.find( '[data-handle=\"' + trigger + '\"]' ).addClass( 'hide' );\n\t\tif ( 'on' === $( 'input:checked', this ).val() ) {\n\t\t\tadditional.removeClass( 'hide' );\n\t\t}\n\t} );\n\n};\n\nmodule.exports = addons;","/*\n* Column: bind clone events\n*\n* @since 2.0\n*/\nlet clone = function( column ) {\n\tcolumn.$el.find( '.clone-button' ).click( function( e ) {\n\t\te.preventDefault();\n\n\t\tif ( column.isOriginal() ) {\n\t\t\treturn;\n\t\t}\n\n\t\tAC.Form.cloneColumn( column.$el );\n\t} );\n};\n\nmodule.exports = clone;","let indicator = function( column ) {\r\n\tlet $column = column.$el;\r\n\r\n\t$column.find( '.ac-column-header [data-indicator-toggle]' ).each( function() {\r\n\t\tlet $ = jQuery;\r\n\t\tlet $indicator = $( this );\r\n\t\tlet setting = $( this ).data( 'setting' );\r\n\t\tlet $setting = $column.find( '.ac-column-setting[data-setting=' + setting + ']' );\r\n\t\tlet $input = $setting.find( '.col-input:first .ac-setting-input:first input[type=radio]' );\r\n\r\n\t\t$indicator.unbind( 'click' ).on( 'click', function( e ) {\r\n\t\t\te.preventDefault();\r\n\r\n\t\t\tif ( $column.hasClass( 'disabled' ) ) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\t$indicator.toggleClass( 'on' );\r\n\t\t\tif ( $( this ).hasClass( 'on' ) ) {\r\n\t\t\t\t$input.filter( '[value=on]' ).prop( 'checked', true ).trigger( 'click' ).trigger( 'change' );\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\t$input.filter( '[value=off]' ).prop( 'checked', true ).trigger( 'click' ).trigger( 'change' );\r\n\t\t\t}\r\n\t\t} );\r\n\r\n\t\t$input.on( 'change', function() {\r\n\t\t\tif ( $column.hasClass( 'disabled' ) ) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tlet value = $input.filter( ':checked' ).val();\r\n\t\t\tif ( 'on' === value ) {\r\n\t\t\t\t$indicator.addClass( 'on' );\r\n\t\t\t} else {\r\n\t\t\t\t$indicator.removeClass( 'on' );\r\n\t\t\t}\r\n\t\t} );\r\n\t} );\r\n};\r\n\r\nmodule.exports = indicator;","let label = function( column ) {\n\tlet $column = column.$el;\n\n\t/**\n\t * Populates the main Label with the selected label from the dropdown,\n\t */\n\t$column.find( 'select[data-label=\"update\"]' ).change( function() {\n\t\tlet $label = $column.find( 'input.ac-setting-input_label' );\n\t\tlet field_label = jQuery( this ).find( 'option:selected' ).text();\n\n\t\t// Set new label\n\t\t$label.val( field_label );\n\t\t$label.trigger( 'change' );\n\t} );\n\n\t/** When an label contains an icon or span, the displayed label can appear empty. In this case we show the \"type\" label. */\n\tsetTimeout( function() {\n\t\tlet column_label = $column.find( '.column_label .toggle' );\n\n\t\tif ( jQuery.trim( column_label.html() ) && column_label.width() < 1 ) {\n\t\t\tcolumn_label.html( $column.find( '.column_type .inner' ).html() );\n\t\t}\n\t}, 50 );\n};\n\nlet settingLabel = function( column ) {\n\tlet $column = column.$el;\n\n\t/** change label */\n\t$column.find( '.ac-column-setting--label input' ).bind( 'keyup change', function() {\n\t\tlet value = jQuery( this ).val();\n\t\tjQuery( this ).closest( '.ac-column' ).find( 'td.column_label .inner > a.toggle' ).html( value );\n\t} ).trigger( 'change' );\n\n\t/** tooltip */\n\t$column.find( '.ac-column-body .col-label .label' ).hover( function() {\n\t\tjQuery( this ).parents( '.col-label' ).find( 'div.tooltip' ).show();\n\t}, function() {\n\t\tjQuery( this ).parents( '.col-label' ).find( 'div.tooltip' ).hide();\n\t} );\n};\n\nmodule.exports = {\n\tlabel : label,\n\tsetting : settingLabel\n};","let refresh = function( column ) {\n\tlet $ = jQuery;\n\t\n\tcolumn.$el.find( '[data-refresh=\"column\"]' ).on( 'change', function() {\n\t\t// Allow plugins to hook into this event\n\t\t$( document ).trigger( 'AC.column.prerefresh', column.$el );\n\t\tcolumn.$el.addClass( 'loading' );\n\n\t\tsetTimeout( function() {\n\t\t\tcolumn.refresh().always( function() {\n\t\t\t\tcolumn.$el.removeClass( 'loading' );\n\t\t\t} );\n\t\t}, 200 );\n\n\t} );\n};\n\nmodule.exports = refresh;","/*\n * Column: bind remove events\n *\n * @since 2.0\n */\nlet remove = function( column ) {\n\tcolumn.$el.find( '.remove-button' ).click( function( e ) {\n\t\te.preventDefault();\n\n\t\tAC.Form.removeColumn( column.name );\n\t} );\n};\n\nmodule.exports = remove;","/*\n * Column: bind toggle events\n *\n * For performance we bind all other events after the click event.\n *\n * @since 2.0\n */\nlet toggle = function( column ) {\n\tcolumn.$el.find( '[data-toggle=\"column\"]' ).click( function( e ) {\n\t\te.preventDefault();\n\n\t\tcolumn.toggle();\n\t} ).css( 'cursor', 'pointer' );\n};\n\nmodule.exports = toggle;","let selector = function( column ) {\n\tlet $ = jQuery;\n\tcolumn.$el.find( 'select.ac-setting-input_type' ).change( function() {\n\t\tcolumn.$el.addClass( 'loading' );\n\t\tcolumn.switchToType( $( this ).val() ).always( function() {\n\t\t\tcolumn.$el.removeClass( 'loading' );\n\n\t\t\tAC.Form.reindexColumns();\n\t\t} );\n\t} );\n};\n\nmodule.exports = selector;","class Feedback {\n\n\tconstructor( $el ) {\n\t\tthis.$el = jQuery( $el );\n\t\tthis.init();\n\t}\n\n\tinit() {\n\t\tlet $box = this.$el;\n\n\t\t$box.find( '#feedback-choice a.no' ).click( function( e ) {\n\t\t\te.preventDefault();\n\n\t\t\t$box.find( '#feedback-choice' ).slideUp();\n\t\t\t$box.find( '#feedback-support' ).slideDown();\n\t\t} );\n\n\t\t$box.find( '#feedback-choice a.yes' ).click( function( e ) {\n\t\t\te.preventDefault();\n\n\t\t\t$box.find( '#feedback-choice' ).slideUp();\n\t\t\t$box.find( '#feedback-rate' ).slideDown();\n\t\t} );\n\t};\n\n}\n\nmodule.exports = Feedback;","import Column from \"./column\";\n\nclass Form {\n\n\tconstructor( el ) {\n\t\tthis.$form = jQuery( el );\n\t\tthis.$container = jQuery( '#cpac .ac-admin' );\n\t\tthis.columns = {};\n\n\t\tjQuery( document ).trigger( 'AC_Form_Loaded' );\n\n\t\tthis.init();\n\t}\n\n\tinit() {\n\t\tthis.initColumns();\n\t\tthis.bindFormEvents();\n\t\tthis.bindOrdering();\n\n\t\tjQuery( document ).trigger( 'AC_Form_Ready' );\n\t}\n\n\tbindOrdering() {\n\n\t\tif ( this.$form.hasClass( 'ui-sortable' ) ) {\n\t\t\tthis.$form.sortable( 'refresh' );\n\t\t}\n\t\telse {\n\t\t\tthis.$form.sortable( {\n\t\t\t\titems : '.ac-column',\n\t\t\t\thandle : '.column_sort'\n\t\t\t} );\n\t\t}\n\n\t}\n\n\toriginalColumns() {\n\t\tlet self = this;\n\t\tlet columns = [];\n\n\t\tObject.keys( self.columns ).forEach( function( key ) {\n\t\t\tlet column = self.columns[ key ];\n\t\t\tif ( column.isOriginal() ) {\n\t\t\t\tcolumns.push( column.type );\n\t\t\t}\n\t\t} );\n\n\t\treturn columns;\n\t}\n\n\tbindFormEvents() {\n\t\tlet self = this;\n\t\tlet $buttons = jQuery( '.sidebox a.submit, .column-footer a.submit' );\n\n\t\t$buttons.on( 'click', function() {\n\t\t\t$buttons.attr( 'disabled', 'disabled' );\n\t\t\tself.submitForm().always( function() {\n\t\t\t\t$buttons.removeAttr( 'disabled', 'disabled' );\n\t\t\t} )\n\t\t} );\n\n\t\tself.$container.find( '.add_column' ).on( 'click', function() {\n\t\t\tself.addColumn();\n\t\t} );\n\n\t\tlet $boxes = jQuery( '#cpac .ac-boxes' );\n\t\tif ( $boxes.hasClass( 'disabled' ) ) {\n\t\t\t$boxes.find( '.ac-column' ).each( function( i, col ) {\n\t\t\t\tjQuery( col ).data( 'column' ).disable();\n\t\t\t\tjQuery( col ).find( 'input, select' ).prop( 'disabled', true );\n\t\t\t} );\n\t\t}\n\n\t\tjQuery( 'a[data-clear-columns]' ).on( 'click', function() {\n\t\t\tself.resetColumns();\n\t\t} );\n\t}\n\n\tinitColumns() {\n\t\tlet self = this;\n\t\tself.columns = [];\n\n\t\tthis.$form.find( '.ac-column' ).each( function() {\n\t\t\tlet $el = jQuery( this );\n\t\t\tlet column = new Column( $el );\n\n\t\t\tcolumn.bindEvents();\n\n\t\t\t$el.data( 'column', column );\n\t\t\tself.columns[ column.name ] = column;\n\t\t} );\n\t}\n\n\treindexColumns() {\n\t\tlet self = this;\n\t\tself.columns = [];\n\n\t\tthis.$form.find( '.ac-column' ).each( function() {\n\t\t\tlet column = jQuery( this ).data( 'column' );\n\n\t\t\tself.columns[ column.name ] = column;\n\t\t} );\n\t}\n\n\tresetColumns() {\n\t\tObject.keys( this.columns ).forEach( ( key ) => {\n\t\t\tlet column = this.columns[ key ];\n\n\t\t\tcolumn.destroy();\n\t\t} );\n\n\t}\n\n\tserialize() {\n\t\treturn this.$form.serialize();\n\t}\n\n\tsubmitForm() {\n\t\tlet self = this;\n\n\t\tlet xhr = jQuery.post( ajaxurl, {\n\t\t\t\taction : 'ac-columns',\n\t\t\t\tid : 'save',\n\t\t\t\tdata : this.serialize(),\n\t\t\t\t_ajax_nonce : AC._ajax_nonce,\n\t\t\t\tlist_screen : AC.list_screen,\n\t\t\t\tlayout : AC.layout,\n\t\t\t\toriginal_columns : AC.original_columns\n\t\t\t},\n\n\t\t\tfunction( response ) {\n\t\t\t\tif ( response ) {\n\t\t\t\t\tif ( response.success ) {\n\t\t\t\t\t\tself.showMessage( response.data, 'updated' );\n\n\t\t\t\t\t\tself.$container.addClass( 'stored' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Error message\n\t\t\t\t\telse if ( response.data ) {\n\t\t\t\t\t\tself.showMessage( response.data.message, 'notice notice-warning' );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}, 'json' );\n\n\t\t// No JSON\n\t\txhr.fail( function( error ) {\n\t\t\t// We choose not to notify the user of errors, because the settings will have\n\t\t\t// been saved correctly despite of PHP notices/errors from plugin or themes.\n\t\t} );\n\n\t\t//document.dispatchEvent( new CustomEvent( 'AC_Form_AfterUpdate', { detail : { container : self.$container } } ) );\n\t\tjQuery( document ).trigger( 'AC_Form_AfterUpdate', [ self.$container ] );\n\n\t\treturn xhr;\n\t}\n\n\tshowMessage( message, attr_class = 'updated' ) {\n\t\tlet $msg = jQuery( '<div class=\"ac-message hidden ' + attr_class + '\"><p>' + message + '</p></div>' );\n\n\t\tthis.$container.find( '.ac-message' ).stop().remove();\n\t\tthis.$container.find( '.ac-boxes' ).before( $msg );\n\n\t\t$msg.slideDown();\n\t}\n\n\tcloneColumn( $el ) {\n\t\treturn this._addColumnToForm( new Column( $el ).clone(), $el.hasClass( 'opened' ) );\n\t}\n\n\taddColumn() {\n\t\tlet $clone = jQuery( '#add-new-column-template' ).find( '.ac-column' ).clone();\n\t\tlet column = new Column( $clone ).create();\n\n\t\treturn this._addColumnToForm( column );\n\t}\n\n\tremoveColumn( name ) {\n\t\tif ( this.columns[ name ] ) {\n\t\t\tthis.columns[ name ].remove();\n\t\t\tdelete this.columns[ name ];\n\t\t}\n\t}\n\n\t_addColumnToForm( column, open = true ) {\n\t\tthis.columns[ column.name ] = column;\n\t\tthis.$form.append( column.$el );\n\n\t\tif ( open ) {\n\t\t\tcolumn.open();\n\t\t}\n\n\t\tcolumn.$el.hide().slideDown();\n\n\t\tjQuery( 'html, body' ).animate( { scrollTop : column.$el.offset().top - 58 }, 300 );\n\n\t\tjQuery( document ).trigger( 'AC_Column_Added', [ column ] );\n\n\t\treturn column;\n\t}\n\n}\n\nmodule.exports = Form;","class Initiator {\n\n\tconstructor() {\n\t\tthis.events = {};\n\t\tthis.settings = {};\n\t\tthis.incremental_name = 0;\n\t}\n\n\tregisterSetting( k, setting ) {\n\t\tlet key = 's_' + k;\n\n\t\tif ( this.settings[ key ] ) {\n\t\t\tconsole.error( 'Setting key already exists: ' + k );\n\t\t}\n\n\t\tthis.settings[ key ] = setting;\n\n\t\treturn this;\n\t}\n\n\tregisterEvent( k, event ) {\n\t\tlet key = 'e_' + k;\n\t\tif ( this.settings[ key ] ) {\n\t\t\tconsole.error( 'Event key already exists: ' + key );\n\t\t}\n\n\t\tthis.events[ key ] = event;\n\n\t\treturn this;\n\t}\n\n\tgetNewIncementalName() {\n\t\tlet oldName = this.incremental_name;\n\t\tthis.incremental_name++;\n\n\t\treturn oldName;\n\t}\n}\n\nmodule.exports = Initiator;","class Menu {\n\n\tinit() {\n\t\tlet $ = jQuery;\n\n\t\t$( '#ac_list_screen' ).on( 'change', function() {\n\t\t\t$( '.view-link' ).hide();\n\t\t\t$( this ).parents( 'form' ).submit();\n\n\t\t\t$( this ).prop( 'disabled', true ).next( '.spinner' ).css( 'display', 'inline-block' );\n\t\t} );\n\n\t}\n\n}\n\nmodule.exports = Menu;","let date = function( column ) {\n\tlet $ = jQuery;\n\tlet $column = column.$el;\n\tlet $setting = $column.find( '.ac-column-setting--date' );\n\n\t$setting.each( function() {\n\n\t\tlet $container = $( this );\n\n\t\t// Custom input\n\t\tlet $radio_custom = $container.find( 'input.custom' );\n\t\tlet $input_custom = $container.find( '.ac-setting-input-date__custom' );\n\t\tlet $input_value = $container.find( '.ac-setting-input-date__value' );\n\t\tlet $example_custom = $container.find( '.ac-setting-input-date__example' );\n\t\tlet $selected = $container.find( 'input[type=radio]:checked' );\n\t\tlet $help_msg = $container.find( '.help-msg' );\n\n\t\t// Click Event\n\t\t$container.find( 'input[type=radio]' ).on( 'change', function() {\n\n\t\t\tlet $input = $( this );\n\t\t\tlet $input_container = $input.closest( 'label' );\n\t\t\tlet date_format = $input_container.find( 'code' ).text();\n\t\t\tlet description = $input_container.find( '.ac-setting-input-date__more' ).html();\n\n\t\t\tif ( date_format ) {\n\t\t\t\t$input_custom.val( date_format ).trigger( 'change' );\n\t\t\t}\n\n\t\t\tif ( $input.hasClass( 'diff' ) ) {\n\t\t\t\t$input_custom.val( '' );\n\t\t\t\t$example_custom.text( '' );\n\t\t\t}\n\n\t\t\t$input_custom.prop( 'disabled', true );\n\n\t\t\t// Custom input selected\n\t\t\tif ( $input.hasClass( 'custom' ) ) {\n\t\t\t\t$input.val( $input_custom.val() );\n\t\t\t\t$input_custom.prop( 'disabled', false );\n\t\t\t\t$help_msg.show();\n\t\t\t}\n\n\t\t\t// Show more description\n\t\t\t$help_msg.hide();\n\t\t\tif ( description ) {\n\t\t\t\t$help_msg.html( description ).show();\n\t\t\t}\n\n\t\t\t$input_value.val( $input.val() );\n\t\t} );\n\n\t\t// Custom input\n\t\t$input_custom.on( 'change', function() {\n\n\t\t\t$example_custom.html( '<span class=\"spinner is-active\"></span>' );\n\t\t\t$radio_custom.val( $input_custom.val() );\n\n\t\t\tlet $custom_value = $( this ).val();\n\n\t\t\tif ( !$custom_value ) {\n\t\t\t\t$example_custom.text( '' );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$.ajax( {\n\t\t\t\turl : ajaxurl,\n\t\t\t\tmethod : 'post',\n\t\t\t\tdata : {\n\t\t\t\t\taction : 'date_format',\n\t\t\t\t\tdate : $custom_value\n\t\t\t\t}\n\t\t\t} ).done( function( date ) {\n\t\t\t\t$example_custom.text( date );\n\t\t\t} );\n\n\t\t\t$input_value.val( $custom_value );\n\t\t} );\n\n\t\t// Update date example box\n\t\t$selected.trigger( 'change' );\n\n\t\t// Select custom input as a default\n\t\tif ( 0 === $selected.length ) {\n\t\t\t$radio_custom.trigger( 'click' );\n\t\t}\n\n\t} );\n};\n\nmodule.exports = date;","class Image {\n\n\tconstructor( column ) {\n\t\tthis.column = column;\n\t\tthis.setting = column.$el[ 0 ].querySelector( '.ac-column-setting--image' );\n\n\t\tif ( !this.setting ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.field = this.setting.querySelector( '.ac-setting-input select' );\n\n\t\tthis.initState();\n\t\tthis.bindEvents();\n\t}\n\n\tgetValue() {\n\t\treturn this.field.value;\n\t}\n\n\tbindEvents() {\n\t\tlet self = this;\n\n\t\tthis.field.addEventListener( 'change', function( e ) {\n\t\t\tself.initState();\n\t\t} );\n\t}\n\n\tinitState() {\n\t\tif ( 'cpac-custom' === this.getValue() ) {\n\t\t\tthis.showSubsettings();\n\t\t} else {\n\t\t\tthis.hideSubsettings();\n\t\t}\n\t}\n\n\thideSubsettings() {\n\t\tlet subsetting = this.setting.querySelectorAll( '.ac-column-setting' );\n\n\t\tfor ( let i = 0; i < subsetting.length; ++i ) {\n\t\t\tsubsetting[ i ].style.display = 'none';\n\t\t}\n\n\t}\n\n\tshowSubsettings() {\n\t\tlet subsetting = this.setting.querySelectorAll( '.ac-column-setting' );\n\n\t\tfor ( let i = 0; i < subsetting.length; ++i ) {\n\t\t\tsubsetting[ i ].style.display = 'table';\n\t\t}\n\t}\n\n\tsetValue( value ) {\n\t\tthis.field.value = value;\n\n\t\tthis.trigger( this.field, 'change' );\n\n\t\treturn this;\n\t}\n\n\tsetWidth( width ) {\n\t\tlet field = this.setting.querySelector( '.ac-column-setting [name*=\"image_size_w\"]' );\n\n\t\tfield.value = width;\n\t\tthis.trigger( field, 'change' );\n\n\t\treturn this;\n\t}\n\n\tsetHeight( height ) {\n\t\tlet field = this.setting.querySelector( '.ac-column-setting [name*=\"image_size_h\"]' );\n\t\tfield.value = height;\n\n\t\tthis.trigger( field, 'change' );\n\n\t\treturn this;\n\t}\n\n\tsetSize( width, height ) {\n\t\tthis.setWidth( width );\n\t\tthis.setHeight( height );\n\n\t\treturn this;\n\t}\n\n\ttrigger( el, event ) {\n\t\tel.dispatchEvent( new Event( event ) );\n\n\t\treturn this;\n\t}\n\n}\n\nlet image = function( column ) {\n\tcolumn.settings.image = new Image( column );\n};\n\nmodule.exports = image;","import Modals from \"../../../modules/modals\";\nimport Modal from \"../../../modules/modal\";\n\nclass Label {\n\tconstructor( column ) {\n\t\tthis.column = column;\n\n\t\tthis.setting = column.el.querySelector( '.ac-column-setting--label' );\n\t\tthis.iconpicker = this.setting.querySelector( '.-iconpicker' );\n\n\t\tif ( !this.iconpicker ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._dashicon = false;\n\t\tthis.modal = Modals.init().register( new Modal( this.setting.querySelector( '.-iconpicker' ) ) );\n\t\tthis.field = this.setting.querySelector( '.ac-setting-input_label' );\n\n\t\tthis.initValue();\n\t\tthis.bindEvents();\n\t}\n\n\tinitValue() {\n\t\tlet self = this;\n\t\tlet html = document.createRange().createContextualFragment( this.getValue() );\n\t\tlet dashicon = html.querySelector( '.dashicons' );\n\n\t\tif ( dashicon ) {\n\t\t\tlet classList = dashicon.classList;\n\n\t\t\tclassList.forEach( cls => {\n\t\t\t\tif ( cls.indexOf( 'dashicons-' ) !== -1 ) {\n\t\t\t\t\tlet selector = '.' + cls;\n\t\t\t\t\tlet icon = self.iconpicker.querySelector( selector );\n\n\t\t\t\t\tif ( icon ) {\n\t\t\t\t\t\ticon.parentElement.classList.add( 'active' );\n\t\t\t\t\t\tself.setIconSelection( icon.parentElement.dataset.dashicon );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t} else {\n\t\t\tself.setIconSelection( false );\n\t\t}\n\n\t}\n\n\tbindEvents() {\n\t\tlet self = this;\n\n\t\tthis.setting.querySelector( '.ac-setting-label-icon' ).addEventListener( 'click', function( e ) {\n\t\t\te.preventDefault();\n\t\t\tself.modal.open();\n\t\t} );\n\n\t\tthis.setting.querySelector( '[data-action=\"submit\"]' ).addEventListener( 'click', function( e ) {\n\n\t\t\te.preventDefault();\n\t\t\tif ( self.getIconSelection() ) {\n\t\t\t\tself.setDashicon( self.getIconSelection() );\n\t\t\t}\n\n\t\t\tself.modal.close();\n\t\t} );\n\n\t\tlet icons = this.iconpicker.querySelectorAll( '.ac-ipicker__icon' );\n\t\ticons.forEach( icon => {\n\t\t\ticon.addEventListener( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\n\t\t\t\tlet dashicon = this.dataset.dashicon;\n\t\t\t\tif ( dashicon ) {\n\t\t\t\t\tself.setIconSelection( dashicon );\n\t\t\t\t}\n\n\t\t\t\tlet icons = self.setting.querySelectorAll( '.ac-ipicker__icon' );\n\t\t\t\ticons.forEach( icon => {\n\t\t\t\t\ticon.classList.remove( 'active' );\n\t\t\t\t} );\n\n\t\t\t\ticon.classList.add( 'active' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\tgetValue() {\n\t\treturn this.field.value;\n\t}\n\n\tsetValue( value ) {\n\t\tthis.field.value = value;\n\n\t\tlet event = new Event( 'change' );\n\t\tthis.field.dispatchEvent( event );\n\t}\n\n\tsetIconSelection( dashicon ) {\n\t\tlet selection = this.setting.querySelector( '.ac-ipicker__selection' );\n\t\tthis._dashicon = dashicon;\n\t\tselection.innerHTML = `<span class=\"dashicons dashicons-${dashicon}\"></span>`;\n\n\t\tif ( !dashicon ) {\n\t\t\tselection.style.visibility = 'hidden';\n\t\t} else {\n\t\t\tselection.style.visibility = 'visible';\n\t\t}\n\t}\n\n\tgetIconSelection() {\n\t\treturn this._dashicon;\n\t}\n\n\tsetDashicon( dashicon ) {\n\t\tthis.setValue( `<span class=\"dashicons dashicons-${dashicon}\"></span>` );\n\t}\n\n}\n\nlet label = function( column ) {\n\tcolumn.settings.label = new Label( column );\n};\n\nmodule.exports = label;","let pro = function( column ) {\n\tlet $column = column.$el;\n\tlet $setting = $column.find( '.ac-column-setting--pro' );\n\n\t$setting.each( function() {\n\t\tlet $container = jQuery( this );\n\n\t\t$container.find( 'input' ).on( 'click', function( e ) {\n\t\t\te.preventDefault();\n\n\t\t\t$container.find( '[data-ac-open-modal]' ).trigger( 'click' );\n\t\t} )\n\n\t} );\n};\n\nmodule.exports = pro;","let subsetting = function( column ) {\n\tlet $ = jQuery;\n\tlet settings = {\n\t\tvalue_show : \"on\",\n\t\tsubfield : '.ac-column-setting'\n\t};\n\n\tfunction initState( $setting, $input ) {\n\t\tlet value = $input.filter( ':checked' ).val();\n\t\tlet $subfields = $setting.find( settings.subfield );\n\n\t\tif ( settings.value_show === value ) {\n\t\t\t$subfields.show();\n\t\t} else {\n\t\t\t$subfields.hide();\n\t\t}\n\t}\n\n\tlet $column = column.$el;\n\tlet $settings = $column.find( '.ac-column-setting--filter,.ac-column-setting--sort,.ac-column-setting--edit' );\n\n\t$settings.each( function() {\n\t\tlet $setting = $( this );\n\t\tlet $input = $( this ).find( '.ac-setting-input input[type=\"radio\"]' );\n\n\t\tinitState( $setting, $input );\n\t\t$input.on( 'change', function() {\n\t\t\tinitState( $setting, $input );\n\t\t} );\n\n\t} );\n};\n\nmodule.exports = subsetting;","// Settings fields: Width\njQuery.fn.column_width_slider = function() {\n\tlet $ = jQuery;\n\tlet $column_width = $( this ).find( '.ac-setting-input-width' );\n\tlet input_width = $column_width.find( '.description input' ),\n\t\tinput_unit = $column_width.find( '.unit-select input' ),\n\t\tunit = input_unit.filter( ':checked' ).val(),\n\t\twidth = input_width.val(),\n\t\tslider = $column_width.find( '.width-slider' ),\n\t\tindicator = $( this ).find( '.ac-column-header .ac-column-heading-setting--width' );\n\n\t// width\n\tif ( '%' === unit && width > 100 ) {\n\t\twidth = 100;\n\t}\n\n\tinput_width.val( width );\n\n\tslider.slider( {\n\t\trange : 'min',\n\t\tmin : 0,\n\t\tmax : '%' === unit ? 100 : 500,\n\t\tvalue : width,\n\t\tslide : function( event, ui ) {\n\t\t\tinput_width.val( ui.value );\n\t\t\tindicator.trigger( 'update' );\n\t\t\tinput_width.trigger( 'validate' );\n\t\t}\n\t} );\n};\n\nlet width = function( column ) {\n\tlet $ = jQuery;\n\tlet $column = column.$el;\n\n\t$column.find( '.ac-column-setting--width' ).each( function() {\n\t\t$column.column_width_slider();\n\n\t\t// indicator\n\t\tlet $width_indicator = $column.find( '.ac-column-header .ac-column-heading-setting--width' );\n\n\t\t$width_indicator.on( 'update', function() {\n\t\t\tlet _width = $column.find( '.ac-setting-input-width .description input' ).val();\n\t\t\tlet _unit = $column.find( '.ac-setting-input-width .description .unit' ).text();\n\t\t\tif ( _width > 0 ) {\n\t\t\t\tjQuery( this ).text( _width + _unit );\n\t\t\t} else {\n\t\t\t\tjQuery( this ).text( '' );\n\t\t\t}\n\t\t} );\n\n\t\t// unit selector\n\t\tlet width_unit_select = $column.find( '.ac-setting-input-width .unit-select label' );\n\t\twidth_unit_select.on( 'click', function() {\n\n\t\t\t$column.find( 'span.unit' ).text( $( this ).find( 'input' ).val() );\n\t\t\t$column.column_width_slider(); // re-init slider\n\t\t\t$width_indicator.trigger( 'update' ); // update indicator\n\t\t} );\n\n\t\t// width_input\n\t\tlet width_input = $column.find( '.ac-setting-input-width .description input' )\n\t\t\t.on( 'keyup', function() {\n\t\t\t\t$column.column_width_slider(); // re-init slider\n\t\t\t\tjQuery( this ).trigger( 'validate' ); // validate input\n\t\t\t\t$width_indicator.trigger( 'update' ); // update indicator\n\t\t\t} )\n\n\t\t\t// width_input:validate\n\t\t\t.on( 'validate', function() {\n\t\t\t\tlet _width = width_input.val();\n\t\t\t\tlet _new_width = $.trim( _width );\n\n\t\t\t\tif ( !jQuery.isNumeric( _new_width ) ) {\n\t\t\t\t\t_new_width = _new_width.replace( /\\D/g, '' );\n\t\t\t\t}\n\t\t\t\tif ( _new_width.length > 3 ) {\n\t\t\t\t\t_new_width = _new_width.substring( 0, 3 );\n\t\t\t\t}\n\t\t\t\tif ( _new_width <= 0 ) {\n\t\t\t\t\t_new_width = '';\n\t\t\t\t}\n\t\t\t\tif ( _new_width !== _width ) {\n\t\t\t\t\twidth_input.val( _new_width );\n\t\t\t\t}\n\t\t\t} );\n\n\t} );\n};\n\nmodule.exports = width;","import Modals from './modals'\n\nclass Modal {\n\tconstructor( el ) {\n\t\tif ( !el ) {\n\t\t\treturn;\n\t\t}\n\t\tthis.el = el;\n\t\tthis.dialog = el.querySelector( '.ac-modal__dialog' );\n\n\t\tthis.initEvents();\n\t}\n\n\tstatic initGlobalEvents() {\n\n\t\tjQuery( document ).on( 'click', '[data-ac-open-modal]', function( e ) {\n\t\t\te.preventDefault();\n\t\t\tlet target = e.target.dataset.acOpenModal;\n\t\t\tlet el = document.querySelector( target );\n\n\t\t\tif ( el && el.AC_MODAL ) {\n\t\t\t\tel.AC_MODAL.open();\n\t\t\t}\n\t\t} );\n\n\t\tjQuery( document ).on( 'click', '[data-ac-modal]', function( e ) {\n\t\t\te.preventDefault();\n\t\t\tlet modal_key = jQuery( this ).data( 'ac-modal' );\n\n\t\t\tif ( Modals.init().get( modal_key ) ) {\n\t\t\t\tModals.init().get( modal_key ).open();\n\t\t\t}\n\t\t} );\n\n\t}\n\n\tinitEvents() {\n\t\tlet self = this;\n\n\t\tdocument.addEventListener( 'keydown', ( e ) => {\n\t\t\tconst keyName = event.key;\n\n\t\t\tif ( !this.isOpen() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( 'Escape' === keyName ) {\n\t\t\t\tthis.close();\n\t\t\t}\n\t\t} );\n\n\t\tlet dismissButtons = this.el.querySelectorAll( '[data-dismiss=\"modal\"], .ac-modal__dialog__close' );\n\t\tif ( dismissButtons.length > 0 ) {\n\t\t\tdismissButtons.forEach( ( b ) => {\n\t\t\t\tb.addEventListener( 'click', ( e ) => {\n\t\t\t\t\te.preventDefault();\n\t\t\t\t\tself.close();\n\t\t\t\t} );\n\t\t\t} );\n\t\t}\n\n\t\tthis.el.addEventListener( 'click', () => {\n\t\t\tself.close();\n\t\t} );\n\n\t\tthis.el.querySelector( '.ac-modal__dialog' ).addEventListener( 'click', ( e ) => {\n\t\t\te.stopPropagation();\n\t\t} );\n\n\t\tif ( typeof document.querySelector( 'body' ).dataset.ac_modal_init === 'undefined' ) {\n\t\t\tModal.initGlobalEvents();\n\t\t\tdocument.querySelector( 'body' ).dataset.ac_modal_init = 1;\n\t\t}\n\n\t\tthis.el.AC_MODAL = self;\n\t}\n\n\tisOpen() {\n\t\treturn this.el.classList.contains( '-active' );\n\t}\n\n\tclose() {\n\t\tthis.onClose();\n\t\tthis.el.classList.remove( '-active' );\n\t}\n\n\topen() {\n\t\tthis.onOpen();\n\t\tthis.el.classList.add( '-active' );\n\t}\n\n\tdestroy(){\n\t\tthis.el.remove();\n\t}\n\n\tonClose() {}\n\n\tonOpen() {}\n\n}\n\nmodule.exports = Modal;","import Modal from './modal';\n\nclass Modals {\n\n\tconstructor() {\n\t\tthis.modals = [];\n\t\tthis.number = 1;\n\t}\n\n\tregister( modal, key = '' ) {\n\t\tif ( !key ) {\n\t\t\tkey = 'm' + this.number;\n\t\t}\n\n\t\tthis.modals[ key ] = modal;\n\t\tthis.number++;\n\n\t\treturn modal;\n\t}\n\n\tget( key ) {\n\t\tif ( this.modals[ key ] ) {\n\t\t\treturn this.modals[ key ];\n\t\t}\n\n\t\treturn false;\n\t}\n\n\t// Bind self to global AdminColumns if exist\n\tstatic init() {\n\t\tif ( typeof AdminColumns.Modals === 'undefined' ) {\n\t\t\tAdminColumns.Modals = new this();\n\t\t\tAdminColumns.Modals._abstract = {\n\t\t\t\tmodal : Modal\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn AdminColumns.Modals;\n\t}\n\n}\n\nmodule.exports = Modals;","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","// 0 -> Array#forEach\n// 1 -> Array#map\n// 2 -> Array#filter\n// 3 -> Array#some\n// 4 -> Array#every\n// 5 -> Array#find\n// 6 -> Array#findIndex\nvar ctx = require('./_ctx');\nvar IObject = require('./_iobject');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar asc = require('./_array-species-create');\nmodule.exports = function (TYPE, $create) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n var create = $create || asc;\n return function ($this, callbackfn, that) {\n var O = toObject($this);\n var self = IObject(O);\n var f = ctx(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var val, res;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n val = self[index];\n res = f(val, index, O);\n if (TYPE) {\n if (IS_MAP) result[index] = res; // map\n else if (res) switch (TYPE) {\n case 3: return true; // some\n case 5: return val; // find\n case 6: return index; // findIndex\n case 2: result.push(val); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n };\n};\n","var isObject = require('./_is-object');\nvar isArray = require('./_is-array');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (original) {\n var C;\n if (isArray(original)) {\n C = original.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return C === undefined ? Array : C;\n};\n","// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\nvar speciesConstructor = require('./_array-species-constructor');\n\nmodule.exports = function (original, length) {\n return new (speciesConstructor(original))(length);\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = {};\n","module.exports = false;\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","'use strict';\n// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(5);\nvar KEY = 'find';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","var dP = require('./_object-dp').f;\nvar FProto = Function.prototype;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name';\n\n// 19.2.4.2 name\nNAME in FProto || require('./_descriptors') && dP(FProto, NAME, {\n configurable: true,\n get: function () {\n try {\n return ('' + this).match(nameRE)[1];\n } catch (e) {\n return '';\n }\n }\n});\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","module.exports = jQuery;"],"sourceRoot":""}
|
assets/js/message-review.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(n){var t={};function r(e){if(t[e])return t[e].exports;var o=t[e]={i:e,l:!1,exports:{}};return n[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=n,r.c=t,r.d=function(n,t,e){r.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:e})},r.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},r.t=function(n,t){if(1&t&&(n=r(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var o in n)r.d(e,o,function(t){return n[t]}.bind(null,o));return e},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="",r(r.s=
|
1 |
+
!function(n){var t={};function r(e){if(t[e])return t[e].exports;var o=t[e]={i:e,l:!1,exports:{}};return n[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=n,r.c=t,r.d=function(n,t,e){r.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:e})},r.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},r.t=function(n,t){if(1&t&&(n=r(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var o in n)r.d(e,o,function(t){return n[t]}.bind(null,o));return e},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="",r(r.s=91)}([function(n,t,r){var e=r(26)("wks"),o=r(12),i=r(1).Symbol,u="function"==typeof i;(n.exports=function(n){return e[n]||(e[n]=u&&i[n]||(u?i:o)("Symbol."+n))}).store=e},function(n,t){var r=n.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(n,t,r){n.exports=!r(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(n,t){n.exports=function(n){return"object"==typeof n?null!==n:"function"==typeof n}},function(n,t,r){"use strict";var e=r(15),o=r(39)(5),i=!0;"find"in[]&&Array(1).find(function(){i=!1}),e(e.P+e.F*i,"Array",{find:function(n){return o(this,n,arguments.length>1?arguments[1]:void 0)}}),r(28)("find")},function(n,t,r){var e=r(6),o=r(20);n.exports=r(2)?function(n,t,r){return e.f(n,t,o(1,r))}:function(n,t,r){return n[t]=r,n}},function(n,t,r){var e=r(9),o=r(32),i=r(33),u=Object.defineProperty;t.f=r(2)?Object.defineProperty:function(n,t,r){if(e(n),t=i(t,!0),e(r),o)try{return u(n,t,r)}catch(n){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(n[t]=r.value),n}},function(n,t){n.exports=function(n){try{return!!n()}catch(n){return!0}}},function(n,t,r){var e=r(1),o=r(5),i=r(11),u=r(12)("src"),c=Function.toString,f=(""+c).split("toString");r(10).inspectSource=function(n){return c.call(n)},(n.exports=function(n,t,r,c){var a="function"==typeof r;a&&(i(r,"name")||o(r,"name",t)),n[t]!==r&&(a&&(i(r,u)||o(r,u,n[t]?""+n[t]:f.join(String(t)))),n===e?n[t]=r:c?n[t]?n[t]=r:o(n,t,r):(delete n[t],o(n,t,r)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[u]||c.call(this)})},function(n,t,r){var e=r(3);n.exports=function(n){if(!e(n))throw TypeError(n+" is not an object!");return n}},function(n,t){var r=n.exports={version:"2.5.7"};"number"==typeof __e&&(__e=r)},function(n,t){var r={}.hasOwnProperty;n.exports=function(n,t){return r.call(n,t)}},function(n,t){var r=0,e=Math.random();n.exports=function(n){return"Symbol(".concat(void 0===n?"":n,")_",(++r+e).toString(36))}},function(n,t,r){var e=r(38);n.exports=function(n,t,r){if(e(n),void 0===t)return n;switch(r){case 1:return function(r){return n.call(t,r)};case 2:return function(r,e){return n.call(t,r,e)};case 3:return function(r,e,o){return n.call(t,r,e,o)}}return function(){return n.apply(t,arguments)}}},,function(n,t,r){var e=r(1),o=r(10),i=r(5),u=r(8),c=r(13),f=function(n,t,r){var a,s,p,l,v=n&f.F,d=n&f.G,y=n&f.S,h=n&f.P,b=n&f.B,x=d?e:y?e[t]||(e[t]={}):(e[t]||{}).prototype,g=d?o:o[t]||(o[t]={}),m=g.prototype||(g.prototype={});for(a in d&&(r=t),r)p=((s=!v&&x&&void 0!==x[a])?x:r)[a],l=b&&s?c(p,e):h&&"function"==typeof p?c(Function.call,p):p,x&&u(x,a,p,n&f.U),g[a]!=p&&i(g,a,l),h&&m[a]!=p&&(m[a]=p)};e.core=o,f.F=1,f.G=2,f.S=4,f.P=8,f.B=16,f.W=32,f.U=64,f.R=128,n.exports=f},function(n,t){var r={}.toString;n.exports=function(n){return r.call(n).slice(8,-1)}},function(n,t,r){var e=r(18);n.exports=function(n){return Object(e(n))}},function(n,t){n.exports=function(n){if(void 0==n)throw TypeError("Can't call method on "+n);return n}},,function(n,t){n.exports=function(n,t){return{enumerable:!(1&n),configurable:!(2&n),writable:!(4&n),value:t}}},function(n,t,r){var e=r(25),o=Math.min;n.exports=function(n){return n>0?o(e(n),9007199254740991):0}},,function(n,t,r){var e=r(3),o=r(1).document,i=e(o)&&e(o.createElement);n.exports=function(n){return i?o.createElement(n):{}}},function(n,t,r){var e=r(16);n.exports=Object("z").propertyIsEnumerable(0)?Object:function(n){return"String"==e(n)?n.split(""):Object(n)}},function(n,t){var r=Math.ceil,e=Math.floor;n.exports=function(n){return isNaN(n=+n)?0:(n>0?e:r)(n)}},function(n,t,r){var e=r(10),o=r(1),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(n.exports=function(n,t){return i[n]||(i[n]=void 0!==t?t:{})})("versions",[]).push({version:e.version,mode:r(27)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(n,t){n.exports=!1},function(n,t,r){var e=r(0)("unscopables"),o=Array.prototype;void 0==o[e]&&r(5)(o,e,{}),n.exports=function(n){o[e][n]=!0}},,,,function(n,t,r){n.exports=!r(2)&&!r(7)(function(){return 7!=Object.defineProperty(r(23)("div"),"a",{get:function(){return 7}}).a})},function(n,t,r){var e=r(3);n.exports=function(n,t){if(!e(n))return n;var r,o;if(t&&"function"==typeof(r=n.toString)&&!e(o=r.call(n)))return o;if("function"==typeof(r=n.valueOf)&&!e(o=r.call(n)))return o;if(!t&&"function"==typeof(r=n.toString)&&!e(o=r.call(n)))return o;throw TypeError("Can't convert object to primitive value")}},,,,,function(n,t){n.exports=function(n){if("function"!=typeof n)throw TypeError(n+" is not a function!");return n}},function(n,t,r){var e=r(13),o=r(24),i=r(17),u=r(21),c=r(40);n.exports=function(n,t){var r=1==n,f=2==n,a=3==n,s=4==n,p=6==n,l=5==n||p,v=t||c;return function(t,c,d){for(var y,h,b=i(t),x=o(b),g=e(c,d,3),m=u(x.length),_=0,j=r?v(t,m):f?v(t,0):void 0;m>_;_++)if((l||_ in x)&&(h=g(y=x[_],_,b),n))if(r)j[_]=h;else if(h)switch(n){case 3:return!0;case 5:return y;case 6:return _;case 2:j.push(y)}else if(s)return!1;return p?-1:a||s?s:j}}},function(n,t,r){var e=r(41);n.exports=function(n,t){return new(e(n))(t)}},function(n,t,r){var e=r(3),o=r(42),i=r(0)("species");n.exports=function(n){var t;return o(n)&&("function"!=typeof(t=n.constructor)||t!==Array&&!o(t.prototype)||(t=void 0),e(t)&&null===(t=t[i])&&(t=void 0)),void 0===t?Array:t}},function(n,t,r){var e=r(16);n.exports=Array.isArray||function(n){return"Array"==e(n)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(n,t,r){"use strict";r(4),jQuery(function(n){n(document).on("click","a.hide-review-notice-soft",function(t){t.preventDefault();var r=n(this).closest(".ac-notice");r.find(".info").slideUp(),r.find(".help").slideDown(),n.post(ajaxurl,r.data("dismissible-callback"))}),n(document).on("click","a.hide-review-notice",function(t){t.preventDefault(),n(this).closest(".ac-notice").find(".notice-dismiss").trigger("click")})})}]);
|
assets/js/notice-dismissible.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=
|
1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=92)}({92:function(e,t,n){"use strict";jQuery(function(e){e(".ac-notice").on("click",".ac-notice__dismiss, [data-dismiss], .notice-dismiss",function(t){t.preventDefault();var n=e(this).closest(".ac-notice").data("dismissible-callback");n&&e.post(ajaxurl,n)})})}});
|
assets/js/table.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(t){var n={};function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)e.d(r,o,function(n){return t[n]}.bind(null,o));return r},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="",e(e.s=92)}([function(t,n,e){var r=e(26)("wks"),o=e(12),i=e(1).Symbol,u="function"==typeof i;(t.exports=function(t){return r[t]||(r[t]=u&&i[t]||(u?i:o)("Symbol."+t))}).store=r},function(t,n){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,e){t.exports=!e(6)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,n,e){"use strict";var r=e(14),o=e(37)(5),i=!0;"find"in[]&&Array(1).find(function(){i=!1}),r(r.P+r.F*i,"Array",{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),e(28)("find")},function(t,n,e){var r=e(7),o=e(19);t.exports=e(3)?function(t,n,e){return r.f(t,n,o(1,e))}:function(t,n,e){return t[n]=e,t}},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,e){var r=e(9),o=e(32),i=e(33),u=Object.defineProperty;n.f=e(3)?Object.defineProperty:function(t,n,e){if(r(t),n=i(n,!0),r(e),o)try{return u(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported!");return"value"in e&&(t[n]=e.value),t}},function(t,n,e){var r=e(1),o=e(5),i=e(11),u=e(12)("src"),c=Function.toString,a=(""+c).split("toString");e(10).inspectSource=function(t){return c.call(t)},(t.exports=function(t,n,e,c){var s="function"==typeof e;s&&(i(e,"name")||o(e,"name",n)),t[n]!==e&&(s&&(i(e,u)||o(e,u,t[n]?""+t[n]:a.join(String(n)))),t===r?t[n]=e:c?t[n]?t[n]=e:o(t,n,e):(delete t[n],o(t,n,e)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[u]||c.call(this)})},function(t,n,e){var r=e(2);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,n){var e=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=e)},function(t,n){var e={}.hasOwnProperty;t.exports=function(t,n){return e.call(t,n)}},function(t,n){var e=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++e+r).toString(36))}},function(t,n,e){var r=e(36);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,o){return t.call(n,e,r,o)}}return function(){return t.apply(n,arguments)}}},function(t,n,e){var r=e(1),o=e(10),i=e(5),u=e(8),c=e(13),a=function(t,n,e){var s,f,l,p,v=t&a.F,d=t&a.G,h=t&a.S,y=t&a.P,g=t&a.B,m=d?r:h?r[n]||(r[n]={}):(r[n]||{}).prototype,b=d?o:o[n]||(o[n]={}),_=b.prototype||(b.prototype={});for(s in d&&(e=n),e)l=((f=!v&&m&&void 0!==m[s])?m:e)[s],p=g&&f?c(l,r):y&&"function"==typeof l?c(Function.call,l):l,m&&u(m,s,l,t&a.U),b[s]!=l&&i(b,s,p),y&&_[s]!=l&&(_[s]=l)};r.core=o,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,n){var e={}.toString;t.exports=function(t){return e.call(t).slice(8,-1)}},function(t,n,e){var r=e(17);t.exports=function(t){return Object(r(t))}},function(t,n){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,n){t.exports={}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n,e){var r=e(25),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,n,e){var r=e(24),o=e(17);t.exports=function(t){return r(o(t))}},function(t,n,e){for(var r=e(29),o=e(30),i=e(8),u=e(1),c=e(5),a=e(18),s=e(0),f=s("iterator"),l=s("toStringTag"),p=a.Array,v={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=o(v),h=0;h<d.length;h++){var y,g=d[h],m=v[g],b=u[g],_=b&&b.prototype;if(_&&(_[f]||c(_,f,p),_[l]||c(_,l,g),a[g]=p,m))for(y in r)_[y]||i(_,y,r[y],!0)}},function(t,n,e){var r=e(2),o=e(1).document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,e){var r=e(15);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,n){var e=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:e)(t)}},function(t,n,e){var r=e(10),o=e(1),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(t.exports=function(t,n){return i[t]||(i[t]=void 0!==n?n:{})})("versions",[]).push({version:r.version,mode:e(27)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,n){t.exports=!1},function(t,n,e){var r=e(0)("unscopables"),o=Array.prototype;void 0==o[r]&&e(5)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,n,e){"use strict";var r=e(28),o=e(42),i=e(18),u=e(21);t.exports=e(43)(Array,"Array",function(t,n){this._t=u(t),this._i=0,this._k=n},function(){var t=this._t,n=this._k,e=this._i++;return!t||e>=t.length?(this._t=void 0,o(1)):o(0,"keys"==n?e:"values"==n?t[e]:[e,t[e]])},"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(t,n,e){var r=e(45),o=e(34);t.exports=Object.keys||function(t){return r(t,o)}},function(t,n,e){var r=e(26)("keys"),o=e(12);t.exports=function(t){return r[t]||(r[t]=o(t))}},function(t,n,e){t.exports=!e(3)&&!e(6)(function(){return 7!=Object.defineProperty(e(23)("div"),"a",{get:function(){return 7}}).a})},function(t,n,e){var r=e(2);t.exports=function(t,n){if(!r(t))return t;var e,o;if(n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;if("function"==typeof(e=t.valueOf)&&!r(o=e.call(t)))return o;if(!n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,n,e){var r=e(7).f,o=e(11),i=e(0)("toStringTag");t.exports=function(t,n,e){t&&!o(t=e?t:t.prototype,i)&&r(t,i,{configurable:!0,value:n})}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,n,e){var r=e(13),o=e(24),i=e(16),u=e(20),c=e(38);t.exports=function(t,n){var e=1==t,a=2==t,s=3==t,f=4==t,l=6==t,p=5==t||l,v=n||c;return function(n,c,d){for(var h,y,g=i(n),m=o(g),b=r(c,d,3),_=u(m.length),x=0,w=e?v(n,_):a?v(n,0):void 0;_>x;x++)if((p||x in m)&&(y=b(h=m[x],x,g),t))if(e)w[x]=y;else if(y)switch(t){case 3:return!0;case 5:return h;case 6:return x;case 2:w.push(h)}else if(f)return!1;return l?-1:s||f?f:w}}},function(t,n,e){var r=e(39);t.exports=function(t,n){return new(r(t))(n)}},function(t,n,e){var r=e(2),o=e(40),i=e(0)("species");t.exports=function(t){var n;return o(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)||(n=void 0),r(n)&&null===(n=n[i])&&(n=void 0)),void 0===n?Array:n}},function(t,n,e){var r=e(15);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var o=function(){function t(){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.modals=[],this.number=1}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,[{key:"register",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return n||(n="m"+this.number),this.modals[n]=t,this.number++,t}},{key:"get",value:function(t){return!!this.modals[t]&&this.modals[t]}}],[{key:"init",value:function(){return void 0===AdminColumns.Modals&&(AdminColumns.Modals=new this),AdminColumns.Modals}}]),t}();t.exports=o},function(t,n){t.exports=function(t,n){return{value:n,done:!!t}}},function(t,n,e){"use strict";var r=e(27),o=e(14),i=e(8),u=e(5),c=e(18),a=e(50),s=e(35),f=e(55),l=e(0)("iterator"),p=!([].keys&&"next"in[].keys()),v=function(){return this};t.exports=function(t,n,e,d,h,y,g){a(e,n,d);var m,b,_,x=function(t){if(!p&&t in C)return C[t];switch(t){case"keys":case"values":return function(){return new e(this,t)}}return function(){return new e(this,t)}},w=n+" Iterator",E="values"==h,k=!1,C=t.prototype,j=C[l]||C["@@iterator"]||h&&C[h],O=j||x(h),S=h?E?x("entries"):O:void 0,T="Array"==n&&C.entries||j;if(T&&(_=f(T.call(new t)))!==Object.prototype&&_.next&&(s(_,w,!0),r||"function"==typeof _[l]||u(_,l,v)),E&&j&&"values"!==j.name&&(k=!0,O=function(){return j.call(this)}),r&&!g||!p&&!k&&C[l]||u(C,l,O),c[n]=O,c[w]=v,h)if(m={values:E?O:x("values"),keys:y?O:x("keys"),entries:S},g)for(b in m)b in C||i(C,b,m[b]);else o(o.P+o.F*(p||k),n,m);return m}},function(t,n,e){var r=e(9),o=e(51),i=e(34),u=e(31)("IE_PROTO"),c=function(){},a=function(){var t,n=e(23)("iframe"),r=i.length;for(n.style.display="none",e(54).appendChild(n),n.src="javascript:",(t=n.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),a=t.F;r--;)delete a.prototype[i[r]];return a()};t.exports=Object.create||function(t,n){var e;return null!==t?(c.prototype=r(t),e=new c,c.prototype=null,e[u]=t):e=a(),void 0===n?e:o(e,n)}},function(t,n,e){var r=e(11),o=e(21),i=e(52)(!1),u=e(31)("IE_PROTO");t.exports=function(t,n){var e,c=o(t),a=0,s=[];for(e in c)e!=u&&r(c,e)&&s.push(e);for(;n.length>a;)r(c,e=n[a++])&&(~i(s,e)||s.push(e));return s}},function(t,n,e){var r=e(16),o=e(30);e(56)("keys",function(){return function(t){return o(r(t))}})},function(t,n,e){e(48)("replace",2,function(t,n,e){return[function(r,o){"use strict";var i=t(this),u=void 0==r?void 0:r[n];return void 0!==u?u.call(r,i,o):e.call(String(i),r,o)},e]})},function(t,n,e){"use strict";var r=e(5),o=e(8),i=e(6),u=e(17),c=e(0);t.exports=function(t,n,e){var a=c(t),s=e(u,a,""[t]),f=s[0],l=s[1];i(function(){var n={};return n[a]=function(){return 7},7!=""[t](n)})&&(o(String.prototype,t,f),r(RegExp.prototype,a,2==n?function(t,n){return l.call(t,this,n)}:function(t){return l.call(t,this)}))}},,function(t,n,e){"use strict";var r=e(44),o=e(19),i=e(35),u={};e(5)(u,e(0)("iterator"),function(){return this}),t.exports=function(t,n,e){t.prototype=r(u,{next:o(1,e)}),i(t,n+" Iterator")}},function(t,n,e){var r=e(7),o=e(9),i=e(30);t.exports=e(3)?Object.defineProperties:function(t,n){o(t);for(var e,u=i(n),c=u.length,a=0;c>a;)r.f(t,e=u[a++],n[e]);return t}},function(t,n,e){var r=e(21),o=e(20),i=e(53);t.exports=function(t){return function(n,e,u){var c,a=r(n),s=o(a.length),f=i(u,s);if(t&&e!=e){for(;s>f;)if((c=a[f++])!=c)return!0}else for(;s>f;f++)if((t||f in a)&&a[f]===e)return t||f||0;return!t&&-1}}},function(t,n,e){var r=e(25),o=Math.max,i=Math.min;t.exports=function(t,n){return(t=r(t))<0?o(t+n,0):i(t,n)}},function(t,n,e){var r=e(1).document;t.exports=r&&r.documentElement},function(t,n,e){var r=e(11),o=e(16),i=e(31)("IE_PROTO"),u=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},function(t,n,e){var r=e(14),o=e(10),i=e(6);t.exports=function(t,n){var e=(o.Object||{})[t]||Object[t],u={};u[t]=n(e),r(r.S+r.F*i(function(){e(1)}),"Object",u)}},function(t,n,e){"use strict";var r=e(9);t.exports=function(){var t=r(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},,function(t,n,e){var r=e(2),o=e(15),i=e(0)("match");t.exports=function(t){var n;return r(t)&&(void 0!==(n=t[i])?!!n:"RegExp"==o(t))}},function(t,n,e){var r=e(8);t.exports=function(t,n,e){for(var o in n)r(t,o,n[o],e);return t}},function(t,n){t.exports=function(t,n,e,r){if(!(t instanceof n)||void 0!==r&&r in t)throw TypeError(e+": incorrect invocation!");return t}},function(t,n,e){var r=e(13),o=e(102),i=e(103),u=e(9),c=e(20),a=e(104),s={},f={};(n=t.exports=function(t,n,e,l,p){var v,d,h,y,g=p?function(){return t}:a(t),m=r(e,l,n?2:1),b=0;if("function"!=typeof g)throw TypeError(t+" is not iterable!");if(i(g)){for(v=c(t.length);v>b;b++)if((y=n?m(u(d=t[b])[0],d[1]):m(t[b]))===s||y===f)return y}else for(h=g.call(t);!(d=h.next()).done;)if((y=o(h,m,d.value,n))===s||y===f)return y}).BREAK=s,n.RETURN=f},function(t,n,e){"use strict";var r=e(1),o=e(7),i=e(3),u=e(0)("species");t.exports=function(t){var n=r[t];i&&n&&!n[u]&&o.f(n,u,{configurable:!0,get:function(){return this}})}},function(t,n,e){var r=e(12)("meta"),o=e(2),i=e(11),u=e(7).f,c=0,a=Object.isExtensible||function(){return!0},s=!e(6)(function(){return a(Object.preventExtensions({}))}),f=function(t){u(t,r,{value:{i:"O"+ ++c,w:{}}})},l=t.exports={KEY:r,NEED:!1,fastKey:function(t,n){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,r)){if(!a(t))return"F";if(!n)return"E";f(t)}return t[r].i},getWeak:function(t,n){if(!i(t,r)){if(!a(t))return!0;if(!n)return!1;f(t)}return t[r].w},onFreeze:function(t){return s&&l.NEED&&a(t)&&!i(t,r)&&f(t),t}}},function(t,n,e){var r=e(2);t.exports=function(t,n){if(!r(t)||t._t!==n)throw TypeError("Incompatible receiver, "+n+" required!");return t}},function(t,n,e){var r=e(2),o=e(108).set;t.exports=function(t,n,e){var i,u=n.constructor;return u!==e&&"function"==typeof u&&(i=u.prototype)!==e.prototype&&r(i)&&o&&o(t,i),t}},,,,,,,,,,,,,,,,,,,,,,,,,,function(t,n,e){"use strict";(function(t){e(4);var n=o(e(94)),r=o(e(116));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){t(".ac-more-link-show").click(function(n){n.preventDefault(),t(this).hide().closest("td").find(".ac-show-more-block").show()}),t(".ac-more-link-hide").click(function(n){n.preventDefault();var e=t(this).closest("td");e.find(".ac-more-link-show").show(),e.find(".ac-show-more-block").hide()})}function u(t,n){t(n).each(function(){var n=t(this);n.find(".cpac_use_icons").length>0&&n.addClass("cpac_use_icons")}),t(n).find(".cpac_use_icons + .hidden + .row-actions > span").each(function(){var n=t(this).find("a");n.attr("data-ac-tip",n.text()).addClass("ac-tip")})}o(e(41)).default.init(),jQuery(document).ready(function(t){!function(t){t(document).ajaxComplete(function(n,e){var r=document.implementation.createHTMLDocument("quickeditevents"),o=t("<div>",r);if(o.append(e.responseText),1===o.find("tr.iedit").length){var i=o.find("tr.iedit").attr("id");t("tr#"+i).trigger("updated")}})}(t),u(t,t(".column-actions")),i(t),function(t){t(".ac-toggle-box-link").click(function(n){n.preventDefault(),t(this).next(".ac-toggle-box-contents").toggle()})}(t),function(t){var n=function(n){n.preventDefault(),t(this).next(".ac-toggle-box-contents-ajax").toggle()};t("a[data-ajax-populate=1]").bind("click",function e(r){r.preventDefault();var o=t(this),i={action:"ac_get_column_value",list_screen:AC.list_screen,layout:AC.layout,column:o.data("column"),pk:o.attr("data-item-id"),_ajax_nonce:AC.ajax_nonce};o.addClass("loading"),t.post(ajaxurl,i,function(r){r&&(o.after('<div class="ac-toggle-box-contents-ajax">'+r+"</div>"),o.unbind("click",e).bind("click",n),t(o.parent("td")).trigger("ajax_column_value_ready"),AdminColumns.Tooltips.init())}).always(function(){o.removeClass("loading")})})}(t),function(t){t(".row-actions a").qtip({content:{text:function(){return t(this).text()}},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}(t);var n=document.querySelector(AC.table_id);n&&ac_load_table(n.parentElement),AdminColumns.Tooltips=new r.default,t(".wp-list-table").on("updated","tr",function(){AdminColumns.Table.addCellClasses(),u(t,t(this).find(".column-actions")),i(t)})}),t.ac_load_table=function(t){AdminColumns.Table=new n.default(t),AC.Table=AdminColumns.Table},function(){if("function"==typeof window.CustomEvent)return!1;function t(t,n){n=n||{bubbles:!1,cancelable:!1,detail:void 0};var e=document.createEvent("CustomEvent");return e.initCustomEvent(t,n.bubbles,n.cancelable,n.detail),e}t.prototype=window.Event.prototype,window.CustomEvent=t}()}).call(this,e(93))},function(t,n){var e;e=function(){return this}();try{e=e||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(e=window)}t.exports=e},function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0,e(95),e(22);var r=a(e(96)),o=a(e(97)),i=a(e(111)),u=a(e(112)),c=a(e(113));function a(t){return t&&t.__esModule?t:{default:t}}function s(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var f=function(){function t(n){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.el=n,this.Helper=c.default,this.Columns=new i.default(n),this.Cells=new o.default,this.Actions=new r.default("ac-table-actions"),this.init()}return function(t,n,e){n&&s(t.prototype,n),e&&s(t,e)}(t,[{key:"init",value:function(){this._initTable(),this._addCellMethods(),this.addCellClasses(),document.dispatchEvent(new CustomEvent("AC_Table_Ready",{detail:{self:this}}))}},{key:"_initTable",value:function(){for(var t=this,n=this,e=this.el.getElementsByTagName("tbody")[0].getElementsByTagName("tr"),r=function(r){var o=e[r],i=t._getIDFromRow(o);o.dataset.id=i,n.Columns.getColumnNames().forEach(function(t){var e=o.querySelector(".column-".concat(t));e&&n.Cells.add(i,new u.default(i,t,e))})},o=0;o<e.length;o++)r(o)}},{key:"_addCellMethods",value:function(){this.Cells.getAll().forEach(function(t){t.el.getCell=function(){return t}})}},{key:"_getIDFromRow",value:function(t){var n=t.id,e=n.split("-"),r=e[e.length-1];if(t.classList.contains("no-items"))return 0;if(!r){var o=t.querySelector(".check-column input[type=checkbox]");o&&(r=(e=(n=o.id).split("_"))[e.length-1])}if(!r){var i=t.parentElement.querySelector(".edit a");if(i){var u=i.getAttribute("href");u&&(r=this.Helper.getParamFromUrl("id",u))}}return r}},{key:"addCellClasses",value:function(){var t=this;this.Columns.getColumnNames().forEach(function(n){var e=t.Columns.get(n).type;t.Cells.getByName(n).forEach(function(t){t.el.classList.add(e)})})}},{key:"getRow",value:function(t){return this.el.querySelector("tr#".concat(t))}}],[{key:"getTable",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t?t(this.el):this.el}}]),t}();n.default=f},function(t,n,e){e(48)("split",2,function(t,n,r){"use strict";var o=e(59),i=r,u=[].push;if("c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length){var c=void 0===/()??/.exec("")[1];r=function(t,n){var e=String(this);if(void 0===t&&0===n)return[];if(!o(t))return i.call(e,t,n);var r,a,s,f,l,p=[],v=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),d=0,h=void 0===n?4294967295:n>>>0,y=new RegExp(t.source,v+"g");for(c||(r=new RegExp("^"+y.source+"$(?!\\s)",v));(a=y.exec(e))&&!((s=a.index+a[0].length)>d&&(p.push(e.slice(d,a.index)),!c&&a.length>1&&a[0].replace(r,function(){for(l=1;l<arguments.length-2;l++)void 0===arguments[l]&&(a[l]=void 0)}),a.length>1&&a.index<e.length&&u.apply(p,a.slice(1)),f=a[0].length,d=s,p.length>=h));)y.lastIndex===a.index&&y.lastIndex++;return d===e.length?!f&&y.test("")||p.push(""):p.push(e.slice(d)),p.length>h?p.slice(0,h):p}}else"0".split(void 0,0).length&&(r=function(t,n){return void 0===t&&0===n?[]:i.call(this,t,n)});return[function(e,o){var i=t(this),u=void 0==e?void 0:e[n];return void 0!==u?u.call(e,i,o):r.call(String(i),e,o)},r]})},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0,e(4);var o=function(){function t(n){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.container=document.getElementById(n),this.buttons=this.container.querySelector(".ac-table-actions-buttons"),this.init()}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,[{key:"init",value:function(){var t=this;this.dropDownEvents(),jQuery(this.container).on("update",function(){t.refresh()}).insertAfter(jQuery(".tablenav.top .actions:last")).addClass("-init").trigger("update")}},{key:"refresh",value:function(){var t=jQuery(this.buttons);t.find("> a").removeClass("last"),t.find("> a:visible:last").addClass("last")}},{key:"dropDownEvents",value:function(){jQuery(this.buttons).on("click","[data-dropdown]",function(){var t=jQuery(this);t.toggleClass("-open"),t.hasClass("-open")?t[0].dispatchEvent(new CustomEvent("open")):t[0].dispatchEvent(new CustomEvent("closed"))})}}]),t}();n.default=o},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0,e(98),e(22),e(29),e(100);var o=function(){function t(){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this._cells=new Map}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,[{key:"add",value:function(t,n){this._cells.has(t)||this._cells.set(t,new Map),this._cells.get(t).set(n.getName(),n)}},{key:"getByID",value:function(t){var n=[],e=t.toString();return this._cells.has(e)?(this._cells.get(t.toString()).forEach(function(t){n.push(t)}),n):n}},{key:"getAll",value:function(){var t=[];return this._cells.forEach(function(n){n.forEach(function(n){t.push(n)})}),t}},{key:"getByName",value:function(t){var n=[];return this._cells.forEach(function(e){e.forEach(function(e,r){t===r&&n.push(e)})}),n}},{key:"get",value:function(t,n){var e=this._cells.get(t.toString());return!!e&&e.get(n)}}]),t}();n.default=o},function(t,n,e){"use strict";e(99);var r=e(9),o=e(57),i=e(3),u=/./.toString,c=function(t){e(8)(RegExp.prototype,"toString",t,!0)};e(6)(function(){return"/a/b"!=u.call({source:"a",flags:"b"})})?c(function(){var t=r(this);return"/".concat(t.source,"/","flags"in t?t.flags:!i&&t instanceof RegExp?o.call(t):void 0)}):"toString"!=u.name&&c(function(){return u.call(this)})},function(t,n,e){e(3)&&"g"!=/./g.flags&&e(7).f(RegExp.prototype,"flags",{configurable:!0,get:e(57)})},function(t,n,e){"use strict";var r=e(101),o=e(65);t.exports=e(106)("Map",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var n=r.getEntry(o(this,"Map"),t);return n&&n.v},set:function(t,n){return r.def(o(this,"Map"),0===t?0:t,n)}},r,!0)},function(t,n,e){"use strict";var r=e(7).f,o=e(44),i=e(60),u=e(13),c=e(61),a=e(62),s=e(43),f=e(42),l=e(63),p=e(3),v=e(64).fastKey,d=e(65),h=p?"_s":"size",y=function(t,n){var e,r=v(n);if("F"!==r)return t._i[r];for(e=t._f;e;e=e.n)if(e.k==n)return e};t.exports={getConstructor:function(t,n,e,s){var f=t(function(t,r){c(t,f,n,"_i"),t._t=n,t._i=o(null),t._f=void 0,t._l=void 0,t[h]=0,void 0!=r&&a(r,e,t[s],t)});return i(f.prototype,{clear:function(){for(var t=d(this,n),e=t._i,r=t._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete e[r.i];t._f=t._l=void 0,t[h]=0},delete:function(t){var e=d(this,n),r=y(e,t);if(r){var o=r.n,i=r.p;delete e._i[r.i],r.r=!0,i&&(i.n=o),o&&(o.p=i),e._f==r&&(e._f=o),e._l==r&&(e._l=i),e[h]--}return!!r},forEach:function(t){d(this,n);for(var e,r=u(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.n:this._f;)for(r(e.v,e.k,this);e&&e.r;)e=e.p},has:function(t){return!!y(d(this,n),t)}}),p&&r(f.prototype,"size",{get:function(){return d(this,n)[h]}}),f},def:function(t,n,e){var r,o,i=y(t,n);return i?i.v=e:(t._l=i={i:o=v(n,!0),k:n,v:e,p:r=t._l,n:void 0,r:!1},t._f||(t._f=i),r&&(r.n=i),t[h]++,"F"!==o&&(t._i[o]=i)),t},getEntry:y,setStrong:function(t,n,e){s(t,n,function(t,e){this._t=d(t,n),this._k=e,this._l=void 0},function(){for(var t=this._k,n=this._l;n&&n.r;)n=n.p;return this._t&&(this._l=n=n?n.n:this._t._f)?f(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(this._t=void 0,f(1))},e?"entries":"values",!e,!0),l(n)}}},function(t,n,e){var r=e(9);t.exports=function(t,n,e,o){try{return o?n(r(e)[0],e[1]):n(e)}catch(n){var i=t.return;throw void 0!==i&&r(i.call(t)),n}}},function(t,n,e){var r=e(18),o=e(0)("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||i[o]===t)}},function(t,n,e){var r=e(105),o=e(0)("iterator"),i=e(18);t.exports=e(10).getIteratorMethod=function(t){if(void 0!=t)return t[o]||t["@@iterator"]||i[r(t)]}},function(t,n,e){var r=e(15),o=e(0)("toStringTag"),i="Arguments"==r(function(){return arguments}());t.exports=function(t){var n,e,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),o))?e:i?r(n):"Object"==(u=r(n))&&"function"==typeof n.callee?"Arguments":u}},function(t,n,e){"use strict";var r=e(1),o=e(14),i=e(8),u=e(60),c=e(64),a=e(62),s=e(61),f=e(2),l=e(6),p=e(107),v=e(35),d=e(66);t.exports=function(t,n,e,h,y,g){var m=r[t],b=m,_=y?"set":"add",x=b&&b.prototype,w={},E=function(t){var n=x[t];i(x,t,"delete"==t?function(t){return!(g&&!f(t))&&n.call(this,0===t?0:t)}:"has"==t?function(t){return!(g&&!f(t))&&n.call(this,0===t?0:t)}:"get"==t?function(t){return g&&!f(t)?void 0:n.call(this,0===t?0:t)}:"add"==t?function(t){return n.call(this,0===t?0:t),this}:function(t,e){return n.call(this,0===t?0:t,e),this})};if("function"==typeof b&&(g||x.forEach&&!l(function(){(new b).entries().next()}))){var k=new b,C=k[_](g?{}:-0,1)!=k,j=l(function(){k.has(1)}),O=p(function(t){new b(t)}),S=!g&&l(function(){for(var t=new b,n=5;n--;)t[_](n,n);return!t.has(-0)});O||((b=n(function(n,e){s(n,b,t);var r=d(new m,n,b);return void 0!=e&&a(e,y,r[_],r),r})).prototype=x,x.constructor=b),(j||S)&&(E("delete"),E("has"),y&&E("get")),(S||C)&&E(_),g&&x.clear&&delete x.clear}else b=h.getConstructor(n,t,y,_),u(b.prototype,e),c.NEED=!0;return v(b,t),w[t]=b,o(o.G+o.W+o.F*(b!=m),w),g||h.setStrong(b,t,y),b}},function(t,n,e){var r=e(0)("iterator"),o=!1;try{var i=[7][r]();i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(t){}t.exports=function(t,n){if(!n&&!o)return!1;var e=!1;try{var i=[7],u=i[r]();u.next=function(){return{done:e=!0}},i[r]=function(){return u},t(i)}catch(t){}return e}},function(t,n,e){var r=e(2),o=e(9),i=function(t,n){if(o(t),!r(n)&&null!==n)throw TypeError(n+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,r){try{(r=e(13)(Function.call,e(109).f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,e){return i(t,e),n?t.__proto__=e:r(t,e),t}}({},!1):void 0),check:i}},function(t,n,e){var r=e(110),o=e(19),i=e(21),u=e(33),c=e(11),a=e(32),s=Object.getOwnPropertyDescriptor;n.f=e(3)?s:function(t,n){if(t=i(t),n=u(n,!0),a)try{return s(t,n)}catch(t){}if(c(t,n))return o(!r.f.call(t,n),t[n])}},function(t,n){n.f={}.propertyIsEnumerable},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0,e(22),e(29),e(46);var o=function(){function t(n){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.table=n,this._columns={},this.init()}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,[{key:"init",value:function(){for(var t=this.table.querySelector("thead").querySelectorAll("th"),n=0;n<t.length;n++){var e={};e.name=t[n].id,e.type=AC.column_types[e.name],this._columns[t[n].id]=e}}},{key:"getColumns",value:function(){return this._columns}},{key:"getColumnNames",value:function(){return Object.keys(this._columns)}},{key:"get",value:function(t){return!!this._columns[t]&&this._columns[t]}}]),t}();n.default=o},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=function(){function t(n,e,r){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this._object_id=n,this._column_name=e,this.el=r}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,[{key:"getObjectID",value:function(){return this._object_id}},{key:"getName",value:function(){return this._column_name}},{key:"getElement",value:function(){return this.el}},{key:"getRow",value:function(){return this.el.parentElement}},{key:"getSettings",value:function(){return AC.Table.Columns._types[this.getName()]}},{key:"setValue",value:function(t){return this.getElement().innerHTML=t,this}}]),t}();n.default=o},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0,e(114),e(47);var o=function(){function t(){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t)}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,null,[{key:"getParamFromUrl",value:function(t,n){if(!n)return null;t=t.replace(/[\[\]]/g,"\\$&");var e=new RegExp("[?&]"+t+"(=([^&#]*)|&|#|$)").exec(n);return e?e[2]?decodeURIComponent(e[2].replace(/\+/g," ")):"":null}}]),t}();n.default=o},function(t,n,e){var r=e(1),o=e(66),i=e(7).f,u=e(115).f,c=e(59),a=e(57),s=r.RegExp,f=s,l=s.prototype,p=/a/g,v=/a/g,d=new s(p)!==p;if(e(3)&&(!d||e(6)(function(){return v[e(0)("match")]=!1,s(p)!=p||s(v)==v||"/a/i"!=s(p,"i")}))){s=function(t,n){var e=this instanceof s,r=c(t),i=void 0===n;return!e&&r&&t.constructor===s&&i?t:o(d?new f(r&&!i?t.source:t,n):f((r=t instanceof s)?t.source:t,r&&i?a.call(t):n),e?this:l,s)};for(var h=function(t){t in s||i(s,t,{configurable:!0,get:function(){return f[t]},set:function(n){f[t]=n}})},y=u(f),g=0;y.length>g;)h(y[g++]);l.constructor=s,s.prototype=l,e(8)(r,"RegExp",s)}e(63)("RegExp")},function(t,n,e){var r=e(45),o=e(34).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,n,e){"use strict";function r(t,n){for(var e=0;e<n.length;e++){var r=n[e];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var o=function(){function t(){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.isEnabled=void 0!==jQuery.fn.qtip,this.init()}return function(t,n,e){n&&r(t.prototype,n),e&&r(t,e)}(t,[{key:"init",value:function(){this.isEnabled?jQuery("[data-ac-tip]").qtip({content:{attr:"data-ac-tip"},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}}):console.log("Tooltips not loaded!")}}]),t}();t.exports=o}]);
|
1 |
+
!function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=93)}([function(t,e,n){var r=n(26)("wks"),o=n(12),i=n(1).Symbol,u="function"==typeof i;(t.exports=function(t){return r[t]||(r[t]=u&&i[t]||(u?i:o)("Symbol."+t))}).store=r},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){t.exports=!n(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){"use strict";var r=n(15),o=n(39)(5),i=!0;"find"in[]&&Array(1).find(function(){i=!1}),r(r.P+r.F*i,"Array",{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),n(28)("find")},function(t,e,n){var r=n(6),o=n(20);t.exports=n(2)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(9),o=n(32),i=n(33),u=Object.defineProperty;e.f=n(2)?Object.defineProperty:function(t,e,n){if(r(t),e=i(e,!0),r(n),o)try{return u(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(1),o=n(5),i=n(11),u=n(12)("src"),a=Function.toString,c=(""+a).split("toString");n(10).inspectSource=function(t){return a.call(t)},(t.exports=function(t,e,n,a){var s="function"==typeof n;s&&(i(n,"name")||o(n,"name",e)),t[e]!==n&&(s&&(i(n,u)||o(n,u,t[e]?""+t[e]:c.join(String(e)))),t===r?t[e]=n:a?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[u]||a.call(this)})},function(t,e,n){var r=n(3);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e,n){var r=n(38);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){for(var r=n(29),o=n(30),i=n(8),u=n(1),a=n(5),c=n(19),s=n(0),l=s("iterator"),f=s("toStringTag"),p=c.Array,v={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=o(v),h=0;h<d.length;h++){var y,g=d[h],m=v[g],b=u[g],_=b&&b.prototype;if(_&&(_[l]||a(_,l,p),_[f]||a(_,f,g),c[g]=p,m))for(y in r)_[y]||i(_,y,r[y],!0)}},function(t,e,n){var r=n(1),o=n(10),i=n(5),u=n(8),a=n(13),c=function(t,e,n){var s,l,f,p,v=t&c.F,d=t&c.G,h=t&c.S,y=t&c.P,g=t&c.B,m=d?r:h?r[e]||(r[e]={}):(r[e]||{}).prototype,b=d?o:o[e]||(o[e]={}),_=b.prototype||(b.prototype={});for(s in d&&(n=e),n)f=((l=!v&&m&&void 0!==m[s])?m:n)[s],p=g&&l?a(f,r):y&&"function"==typeof f?a(Function.call,f):f,m&&u(m,s,f,t&c.U),b[s]!=f&&i(b,s,p),y&&_[s]!=f&&(_[s]=f)};r.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,t.exports=c},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(18);t.exports=function(t){return Object(r(t))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports={}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(25),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){var r=n(24),o=n(18);t.exports=function(t){return r(o(t))}},function(t,e,n){var r=n(3),o=n(1).document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,e,n){var r=n(16);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){var r=n(10),o=n(1),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(t.exports=function(t,e){return i[t]||(i[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n(27)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=!1},function(t,e,n){var r=n(0)("unscopables"),o=Array.prototype;void 0==o[r]&&n(5)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,e,n){"use strict";var r=n(28),o=n(44),i=n(19),u=n(22);t.exports=n(45)(Array,"Array",function(t,e){this._t=u(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,o(1)):o(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(t,e,n){var r=n(47),o=n(34);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(26)("keys"),o=n(12);t.exports=function(t){return r[t]||(r[t]=o(t))}},function(t,e,n){t.exports=!n(2)&&!n(7)(function(){return 7!=Object.defineProperty(n(23)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var r=n(3);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var r=n(6).f,o=n(11),i=n(0)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},function(t,e,n){"use strict";var r=function(t){return t&&t.__esModule?t:{default:t}}(n(43));function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var i=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.modals=[],this.number=1}return function(t,e,n){e&&o(t.prototype,e),n&&o(t,n)}(t,[{key:"register",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return e||(e="m"+this.number),this.modals[e]=t,this.number++,t}},{key:"get",value:function(t){return!!this.modals[t]&&this.modals[t]}}],[{key:"init",value:function(){return void 0===AdminColumns.Modals&&(AdminColumns.Modals=new this,AdminColumns.Modals._abstract={modal:r.default}),AdminColumns.Modals}}]),t}();t.exports=i},function(t,e,n){var r=n(6).f,o=Function.prototype,i=/^\s*function ([^ (]*)/;"name"in o||n(2)&&r(o,"name",{configurable:!0,get:function(){try{return(""+this).match(i)[1]}catch(t){return""}}})},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,n){var r=n(13),o=n(24),i=n(17),u=n(21),a=n(40);t.exports=function(t,e){var n=1==t,c=2==t,s=3==t,l=4==t,f=6==t,p=5==t||f,v=e||a;return function(e,a,d){for(var h,y,g=i(e),m=o(g),b=r(a,d,3),_=u(m.length),x=0,w=n?v(e,_):c?v(e,0):void 0;_>x;x++)if((p||x in m)&&(y=b(h=m[x],x,g),t))if(n)w[x]=y;else if(y)switch(t){case 3:return!0;case 5:return h;case 6:return x;case 2:w.push(h)}else if(l)return!1;return f?-1:s||l?l:w}}},function(t,e,n){var r=n(41);t.exports=function(t,e){return new(r(t))(e)}},function(t,e,n){var r=n(3),o=n(42),i=n(0)("species");t.exports=function(t){var e;return o(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!o(e.prototype)||(e=void 0),r(e)&&null===(e=e[i])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var r=n(16);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){"use strict";n(14);var r=function(t){return t&&t.__esModule?t:{default:t}}(n(36));function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var i=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),e&&(this.el=e,this.dialog=e.querySelector(".ac-modal__dialog"),this.initEvents())}return function(t,e,n){e&&o(t.prototype,e),n&&o(t,n)}(t,[{key:"initEvents",value:function(){var e=this,n=this;document.addEventListener("keydown",function(t){var n=event.key;e.isOpen()&&"Escape"===n&&e.close()});var r=this.el.querySelectorAll('[data-dismiss="modal"], .ac-modal__dialog__close');r.length>0&&r.forEach(function(t){t.addEventListener("click",function(t){t.preventDefault(),n.close()})}),this.el.addEventListener("click",function(){n.close()}),this.el.querySelector(".ac-modal__dialog").addEventListener("click",function(t){t.stopPropagation()}),void 0===document.querySelector("body").dataset.ac_modal_init&&(t.initGlobalEvents(),document.querySelector("body").dataset.ac_modal_init=1),this.el.AC_MODAL=n}},{key:"isOpen",value:function(){return this.el.classList.contains("-active")}},{key:"close",value:function(){this.onClose(),this.el.classList.remove("-active")}},{key:"open",value:function(){this.onOpen(),this.el.classList.add("-active")}},{key:"destroy",value:function(){this.el.remove()}},{key:"onClose",value:function(){}},{key:"onOpen",value:function(){}}],[{key:"initGlobalEvents",value:function(){jQuery(document).on("click","[data-ac-open-modal]",function(t){t.preventDefault();var e=t.target.dataset.acOpenModal,n=document.querySelector(e);n&&n.AC_MODAL&&n.AC_MODAL.open()}),jQuery(document).on("click","[data-ac-modal]",function(t){t.preventDefault();var e=jQuery(this).data("ac-modal");r.default.init().get(e)&&r.default.init().get(e).open()})}}]),t}();t.exports=i},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){"use strict";var r=n(27),o=n(15),i=n(8),u=n(5),a=n(19),c=n(51),s=n(35),l=n(56),f=n(0)("iterator"),p=!([].keys&&"next"in[].keys()),v=function(){return this};t.exports=function(t,e,n,d,h,y,g){c(n,e,d);var m,b,_,x=function(t){if(!p&&t in C)return C[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},w=e+" Iterator",k="values"==h,E=!1,C=t.prototype,j=C[f]||C["@@iterator"]||h&&C[h],O=j||x(h),S=h?k?x("entries"):O:void 0,T="Array"==e&&C.entries||j;if(T&&(_=l(T.call(new t)))!==Object.prototype&&_.next&&(s(_,w,!0),r||"function"==typeof _[f]||u(_,f,v)),k&&j&&"values"!==j.name&&(E=!0,O=function(){return j.call(this)}),r&&!g||!p&&!E&&C[f]||u(C,f,O),a[e]=O,a[w]=v,h)if(m={values:k?O:x("values"),keys:y?O:x("keys"),entries:S},g)for(b in m)b in C||i(C,b,m[b]);else o(o.P+o.F*(p||E),e,m);return m}},function(t,e,n){var r=n(9),o=n(52),i=n(34),u=n(31)("IE_PROTO"),a=function(){},c=function(){var t,e=n(23)("iframe"),r=i.length;for(e.style.display="none",n(55).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),c=t.F;r--;)delete c.prototype[i[r]];return c()};t.exports=Object.create||function(t,e){var n;return null!==t?(a.prototype=r(t),n=new a,a.prototype=null,n[u]=t):n=c(),void 0===e?n:o(n,e)}},function(t,e,n){var r=n(11),o=n(22),i=n(53)(!1),u=n(31)("IE_PROTO");t.exports=function(t,e){var n,a=o(t),c=0,s=[];for(n in a)n!=u&&r(a,n)&&s.push(n);for(;e.length>c;)r(a,n=e[c++])&&(~i(s,n)||s.push(n));return s}},function(t,e,n){var r=n(17),o=n(30);n(57)("keys",function(){return function(t){return o(r(t))}})},function(t,e,n){n(50)("replace",2,function(t,e,n){return[function(r,o){"use strict";var i=t(this),u=void 0==r?void 0:r[e];return void 0!==u?u.call(r,i,o):n.call(String(i),r,o)},n]})},function(t,e,n){"use strict";var r=n(5),o=n(8),i=n(7),u=n(18),a=n(0);t.exports=function(t,e,n){var c=a(t),s=n(u,c,""[t]),l=s[0],f=s[1];i(function(){var e={};return e[c]=function(){return 7},7!=""[t](e)})&&(o(String.prototype,t,l),r(RegExp.prototype,c,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){"use strict";var r=n(46),o=n(20),i=n(35),u={};n(5)(u,n(0)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(u,{next:o(1,n)}),i(t,e+" Iterator")}},function(t,e,n){var r=n(6),o=n(9),i=n(30);t.exports=n(2)?Object.defineProperties:function(t,e){o(t);for(var n,u=i(e),a=u.length,c=0;a>c;)r.f(t,n=u[c++],e[n]);return t}},function(t,e,n){var r=n(22),o=n(21),i=n(54);t.exports=function(t){return function(e,n,u){var a,c=r(e),s=o(c.length),l=i(u,s);if(t&&n!=n){for(;s>l;)if((a=c[l++])!=a)return!0}else for(;s>l;l++)if((t||l in c)&&c[l]===n)return t||l||0;return!t&&-1}}},function(t,e,n){var r=n(25),o=Math.max,i=Math.min;t.exports=function(t,e){return(t=r(t))<0?o(t+e,0):i(t,e)}},function(t,e,n){var r=n(1).document;t.exports=r&&r.documentElement},function(t,e,n){var r=n(11),o=n(17),i=n(31)("IE_PROTO"),u=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},function(t,e,n){var r=n(15),o=n(10),i=n(7);t.exports=function(t,e){var n=(o.Object||{})[t]||Object[t],u={};u[t]=e(n),r(r.S+r.F*i(function(){n(1)}),"Object",u)}},function(t,e,n){"use strict";var r=n(9);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){var r=n(3),o=n(16),i=n(0)("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[i])?!!e:"RegExp"==o(t))}},function(t,e,n){"use strict";var r=n(101),o=n(66);t.exports=n(106)("Map",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var e=r.getEntry(o(this,"Map"),t);return e&&e.v},set:function(t,e){return r.def(o(this,"Map"),0===t?0:t,e)}},r,!0)},function(t,e,n){var r=n(8);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var r=n(13),o=n(102),i=n(103),u=n(9),a=n(21),c=n(104),s={},l={};(e=t.exports=function(t,e,n,f,p){var v,d,h,y,g=p?function(){return t}:c(t),m=r(n,f,e?2:1),b=0;if("function"!=typeof g)throw TypeError(t+" is not iterable!");if(i(g)){for(v=a(t.length);v>b;b++)if((y=e?m(u(d=t[b])[0],d[1]):m(t[b]))===s||y===l)return y}else for(h=g.call(t);!(d=h.next()).done;)if((y=o(h,m,d.value,e))===s||y===l)return y}).BREAK=s,e.RETURN=l},function(t,e,n){"use strict";var r=n(1),o=n(6),i=n(2),u=n(0)("species");t.exports=function(t){var e=r[t];i&&e&&!e[u]&&o.f(e,u,{configurable:!0,get:function(){return this}})}},function(t,e,n){var r=n(12)("meta"),o=n(3),i=n(11),u=n(6).f,a=0,c=Object.isExtensible||function(){return!0},s=!n(7)(function(){return c(Object.preventExtensions({}))}),l=function(t){u(t,r,{value:{i:"O"+ ++a,w:{}}})},f=t.exports={KEY:r,NEED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,r)){if(!c(t))return"F";if(!e)return"E";l(t)}return t[r].i},getWeak:function(t,e){if(!i(t,r)){if(!c(t))return!0;if(!e)return!1;l(t)}return t[r].w},onFreeze:function(t){return s&&f.NEED&&c(t)&&!i(t,r)&&l(t),t}}},function(t,e,n){var r=n(3);t.exports=function(t,e){if(!r(t)||t._t!==e)throw TypeError("Incompatible receiver, "+e+" required!");return t}},function(t,e,n){var r=n(3),o=n(108).set;t.exports=function(t,e,n){var i,u=e.constructor;return u!==n&&"function"==typeof u&&(i=u.prototype)!==n.prototype&&r(i)&&o&&o(t,i),t}},,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){"use strict";(function(t){n(4);var e=u(n(95)),r=u(n(117)),o=u(n(36)),i=u(n(118));function u(t){return t&&t.__esModule?t:{default:t}}function a(t){t(".ac-more-link-show").click(function(e){e.preventDefault(),t(this).hide().closest("td").find(".ac-show-more-block").show()}),t(".ac-more-link-hide").click(function(e){e.preventDefault();var n=t(this).closest("td");n.find(".ac-more-link-show").show(),n.find(".ac-show-more-block").hide()})}function c(t,e){t(e).each(function(){var e=t(this);e.find(".cpac_use_icons").length>0&&e.addClass("cpac_use_icons")}),t(e).find(".cpac_use_icons + .hidden + .row-actions > span").each(function(){var e=t(this).find("a");e.attr("data-ac-tip",e.text()).addClass("ac-tip")})}o.default.init(),jQuery(document).ready(function(t){!function(t){t(document).ajaxComplete(function(e,n){var r=document.implementation.createHTMLDocument("quickeditevents"),o=t("<div>",r);if(o.append(n.responseText),1===o.find("tr.iedit").length){var i=o.find("tr.iedit").attr("id");t("tr#"+i).trigger("updated",{id:i})}})}(t),c(t,t(".column-actions")),a(t),function(t){t(".ac-toggle-box-link").click(function(e){e.preventDefault(),t(this).next(".ac-toggle-box-contents").toggle()})}(t),function(t){var e=function(e){e.preventDefault(),t(this).next(".ac-toggle-box-contents-ajax").toggle()};t("a[data-ajax-populate=1]").bind("click",function n(r){r.preventDefault();var o=t(this),i={action:"ac_get_column_value",list_screen:AC.list_screen,layout:AC.layout,column:o.data("column"),pk:o.attr("data-item-id"),_ajax_nonce:AC.ajax_nonce};o.addClass("loading"),t.post(ajaxurl,i,function(r){r&&(o.after('<div class="ac-toggle-box-contents-ajax">'+r+"</div>"),o.unbind("click",n).bind("click",e),t(o.parent("td")).trigger("ajax_column_value_ready"),AdminColumns.Tooltips.init())}).always(function(){o.removeClass("loading")})})}(t),function(t){t(".row-actions a").qtip({content:{text:function(){return t(this).text()}},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}(t);var e=document.querySelector(AC.table_id);e&&(ac_load_table(e.parentElement),AdminColumns.ScreenOptionsColumns=new i.default(AdminColumns.Table.Columns)),AdminColumns.Tooltips=new r.default,t(".wp-list-table").on("updated","tr",function(){AdminColumns.Table.addCellClasses(),c(t,t(this).find(".column-actions")),a(t)})}),t.ac_load_table=function(t){AdminColumns.Table=new e.default(t),AC.Table=AdminColumns.Table},function(){if("function"==typeof window.CustomEvent)return!1;function t(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),n}t.prototype=window.Event.prototype,window.CustomEvent=t}()}).call(this,n(94))},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(96),n(14);var r=s(n(97)),o=s(n(98)),i=s(n(111)),u=s(n(112)),a=s(n(113)),c=s(n(116));function s(t){return t&&t.__esModule?t:{default:t}}function l(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var f=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.el=e,this.Helper=a.default,this.Columns=new i.default(e),this.Cells=new o.default,this.Actions=new r.default("ac-table-actions"),this.Selection=new c.default(this),this._ids=[],this.init()}return function(t,e,n){e&&l(t.prototype,e),n&&l(t,n)}(t,[{key:"init",value:function(){this._initTable(),this.addCellClasses(),document.dispatchEvent(new CustomEvent("AC_Table_Ready",{detail:{self:this}}))}},{key:"updateRow",value:function(t){var e=this._getIDFromRow(t);t.dataset.id=e,this._setCellsForRow(t,e)}},{key:"addCellClasses",value:function(){var t=this;this.Columns.getColumnNames().forEach(function(e){var n=t.Columns.get(e).type;t.Cells.getByName(e).forEach(function(t){t.el.classList.add(n)})})}},{key:"_initTable",value:function(){for(var t=this.el.getElementsByTagName("tbody")[0].getElementsByTagName("tr"),e=0;e<t.length;e++){var n=t[e],r=this._getIDFromRow(n);this._ids.push(r),this.updateRow(n)}}},{key:"_setCellsForRow",value:function(t){var e=this,n=this._getIDFromRow(t);this.Columns.getColumnNames().forEach(function(r){var o=t.querySelector(".column-".concat(r));if(o){var i=new u.default(n,r,o);e.Cells.add(n,i),e._addColumnCellMethods(i)}})}},{key:"_addColumnCellMethods",value:function(t){t.el.getCell=function(){return t}}},{key:"_getIDFromRow",value:function(t){var e=t.id,n=e.split("-"),r=n[n.length-1];if(t.classList.contains("no-items"))return 0;if(!r){var o=t.querySelector(".check-column input[type=checkbox]");o&&(r=(n=(e=o.id).split("_"))[n.length-1])}if(!r){var i=t.parentElement.querySelector(".edit a");if(i){var u=i.getAttribute("href");u&&(r=this.Helper.getParamFromUrl("id",u))}}return r}},{key:"getRowCellByName",value:function(t,e){return t.querySelector(".column-".concat(e))}}],[{key:"getTable",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t?t(this.el):this.el}}]),t}();e.default=f},function(t,e,n){n(50)("split",2,function(t,e,r){"use strict";var o=n(59),i=r,u=[].push;if("c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length){var a=void 0===/()??/.exec("")[1];r=function(t,e){var n=String(this);if(void 0===t&&0===e)return[];if(!o(t))return i.call(n,t,e);var r,c,s,l,f,p=[],v=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),d=0,h=void 0===e?4294967295:e>>>0,y=new RegExp(t.source,v+"g");for(a||(r=new RegExp("^"+y.source+"$(?!\\s)",v));(c=y.exec(n))&&!((s=c.index+c[0].length)>d&&(p.push(n.slice(d,c.index)),!a&&c.length>1&&c[0].replace(r,function(){for(f=1;f<arguments.length-2;f++)void 0===arguments[f]&&(c[f]=void 0)}),c.length>1&&c.index<n.length&&u.apply(p,c.slice(1)),l=c[0].length,d=s,p.length>=h));)y.lastIndex===c.index&&y.lastIndex++;return d===n.length?!l&&y.test("")||p.push(""):p.push(n.slice(d)),p.length>h?p.slice(0,h):p}}else"0".split(void 0,0).length&&(r=function(t,e){return void 0===t&&0===e?[]:i.call(this,t,e)});return[function(n,o){var i=t(this),u=void 0==n?void 0:n[e];return void 0!==u?u.call(n,i,o):r.call(String(i),n,o)},r]})},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(4);var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.container=document.getElementById(e),this.buttons=this.container.querySelector(".ac-table-actions-buttons"),this.init()}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"init",value:function(){var t=this;this.dropDownEvents(),jQuery(this.container).on("update",function(){t.refresh()}).insertAfter(jQuery(".tablenav.top .actions:last")).addClass("-init").trigger("update")}},{key:"refresh",value:function(){var t=jQuery(this.buttons);t.find("> a").removeClass("last"),t.find("> a:visible:last").addClass("last")}},{key:"dropDownEvents",value:function(){jQuery(this.buttons).on("click","[data-dropdown]",function(){var t=jQuery(this);t.toggleClass("-open"),t.hasClass("-open")?t[0].dispatchEvent(new CustomEvent("open")):t[0].dispatchEvent(new CustomEvent("closed"))})}}]),t}();e.default=o},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(99),n(14),n(29),n(60);var o=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._cells=new Map}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"add",value:function(t,e){this._cells.has(t)||this._cells.set(t,new Map),this._cells.get(t).set(e.getName(),e)}},{key:"getByID",value:function(t){var e=[],n=t.toString();return this._cells.has(n)?(this._cells.get(t.toString()).forEach(function(t){e.push(t)}),e):e}},{key:"getAll",value:function(){var t=[];return this._cells.forEach(function(e){e.forEach(function(e){t.push(e)})}),t}},{key:"getByName",value:function(t){var e=[];return this._cells.forEach(function(n){n.forEach(function(n,r){t===r&&e.push(n)})}),e}},{key:"get",value:function(t,e){var n=this._cells.get(t.toString());return!!n&&n.get(e)}}]),t}();e.default=o},function(t,e,n){"use strict";n(100);var r=n(9),o=n(58),i=n(2),u=/./.toString,a=function(t){n(8)(RegExp.prototype,"toString",t,!0)};n(7)(function(){return"/a/b"!=u.call({source:"a",flags:"b"})})?a(function(){var t=r(this);return"/".concat(t.source,"/","flags"in t?t.flags:!i&&t instanceof RegExp?o.call(t):void 0)}):"toString"!=u.name&&a(function(){return u.call(this)})},function(t,e,n){n(2)&&"g"!=/./g.flags&&n(6).f(RegExp.prototype,"flags",{configurable:!0,get:n(58)})},function(t,e,n){"use strict";var r=n(6).f,o=n(46),i=n(61),u=n(13),a=n(62),c=n(63),s=n(45),l=n(44),f=n(64),p=n(2),v=n(65).fastKey,d=n(66),h=p?"_s":"size",y=function(t,e){var n,r=v(e);if("F"!==r)return t._i[r];for(n=t._f;n;n=n.n)if(n.k==e)return n};t.exports={getConstructor:function(t,e,n,s){var l=t(function(t,r){a(t,l,e,"_i"),t._t=e,t._i=o(null),t._f=void 0,t._l=void 0,t[h]=0,void 0!=r&&c(r,n,t[s],t)});return i(l.prototype,{clear:function(){for(var t=d(this,e),n=t._i,r=t._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];t._f=t._l=void 0,t[h]=0},delete:function(t){var n=d(this,e),r=y(n,t);if(r){var o=r.n,i=r.p;delete n._i[r.i],r.r=!0,i&&(i.n=o),o&&(o.p=i),n._f==r&&(n._f=o),n._l==r&&(n._l=i),n[h]--}return!!r},forEach:function(t){d(this,e);for(var n,r=u(t,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(t){return!!y(d(this,e),t)}}),p&&r(l.prototype,"size",{get:function(){return d(this,e)[h]}}),l},def:function(t,e,n){var r,o,i=y(t,e);return i?i.v=n:(t._l=i={i:o=v(e,!0),k:e,v:n,p:r=t._l,n:void 0,r:!1},t._f||(t._f=i),r&&(r.n=i),t[h]++,"F"!==o&&(t._i[o]=i)),t},getEntry:y,setStrong:function(t,e,n){s(t,e,function(t,n){this._t=d(t,e),this._k=n,this._l=void 0},function(){for(var t=this._k,e=this._l;e&&e.r;)e=e.p;return this._t&&(this._l=e=e?e.n:this._t._f)?l(0,"keys"==t?e.k:"values"==t?e.v:[e.k,e.v]):(this._t=void 0,l(1))},n?"entries":"values",!n,!0),f(e)}}},function(t,e,n){var r=n(9);t.exports=function(t,e,n,o){try{return o?e(r(n)[0],n[1]):e(n)}catch(e){var i=t.return;throw void 0!==i&&r(i.call(t)),e}}},function(t,e,n){var r=n(19),o=n(0)("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||i[o]===t)}},function(t,e,n){var r=n(105),o=n(0)("iterator"),i=n(19);t.exports=n(10).getIteratorMethod=function(t){if(void 0!=t)return t[o]||t["@@iterator"]||i[r(t)]}},function(t,e,n){var r=n(16),o=n(0)("toStringTag"),i="Arguments"==r(function(){return arguments}());t.exports=function(t){var e,n,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),o))?n:i?r(e):"Object"==(u=r(e))&&"function"==typeof e.callee?"Arguments":u}},function(t,e,n){"use strict";var r=n(1),o=n(15),i=n(8),u=n(61),a=n(65),c=n(63),s=n(62),l=n(3),f=n(7),p=n(107),v=n(35),d=n(67);t.exports=function(t,e,n,h,y,g){var m=r[t],b=m,_=y?"set":"add",x=b&&b.prototype,w={},k=function(t){var e=x[t];i(x,t,"delete"==t?function(t){return!(g&&!l(t))&&e.call(this,0===t?0:t)}:"has"==t?function(t){return!(g&&!l(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return g&&!l(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if("function"==typeof b&&(g||x.forEach&&!f(function(){(new b).entries().next()}))){var E=new b,C=E[_](g?{}:-0,1)!=E,j=f(function(){E.has(1)}),O=p(function(t){new b(t)}),S=!g&&f(function(){for(var t=new b,e=5;e--;)t[_](e,e);return!t.has(-0)});O||((b=e(function(e,n){s(e,b,t);var r=d(new m,e,b);return void 0!=n&&c(n,y,r[_],r),r})).prototype=x,x.constructor=b),(j||S)&&(k("delete"),k("has"),y&&k("get")),(S||C)&&k(_),g&&x.clear&&delete x.clear}else b=h.getConstructor(e,t,y,_),u(b.prototype,n),a.NEED=!0;return v(b,t),w[t]=b,o(o.G+o.W+o.F*(b!=m),w),g||h.setStrong(b,t,y),b}},function(t,e,n){var r=n(0)("iterator"),o=!1;try{var i=[7][r]();i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i=[7],u=i[r]();u.next=function(){return{done:n=!0}},i[r]=function(){return u},t(i)}catch(t){}return n}},function(t,e,n){var r=n(3),o=n(9),i=function(t,e){if(o(t),!r(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,r){try{(r=n(13)(Function.call,n(109).f(Object.prototype,"__proto__").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return i(t,n),e?t.__proto__=n:r(t,n),t}}({},!1):void 0),check:i}},function(t,e,n){var r=n(110),o=n(20),i=n(22),u=n(33),a=n(11),c=n(32),s=Object.getOwnPropertyDescriptor;e.f=n(2)?s:function(t,e){if(t=i(t),e=u(e,!0),c)try{return s(t,e)}catch(t){}if(a(t,e))return o(!r.f.call(t,e),t[e])}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(48),n(14),n(29),n(60);var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.table=e,this._columns={},this.init()}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"init",value:function(){for(var t=this.table.querySelector("thead").querySelectorAll("th"),e=0;e<t.length;e++){var n={};n.name=t[e].id,n.type=AC.column_types[n.name],n.label=this.sanitizeLabel(t[e]),this._columns[t[e].id]=n}}},{key:"getColumns",value:function(){return this._columns}},{key:"getColumnsMap",value:function(){var t=new Map,e=this.getColumns();return Object.keys(e).forEach(function(n){t.set(n,e[n])}),t}},{key:"getColumnNames",value:function(){return Object.keys(this._columns)}},{key:"get",value:function(t){return!!this._columns[t]&&this._columns[t]}},{key:"sanitizeLabel",value:function(t){var e=t.querySelector("a"),n=t.innerHTML;if(e){var r=e.getElementsByTagName("span");r.length>0&&(n=r[0].innerHTML)}return n}}]),t}();e.default=o},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=function(){function t(e,n,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._object_id=e,this._column_name=n,this.el=r}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"getObjectID",value:function(){return this._object_id}},{key:"getName",value:function(){return this._column_name}},{key:"getElement",value:function(){return this.el}},{key:"getRow",value:function(){return this.el.parentElement}},{key:"getSettings",value:function(){return AdminColumns.Table.Columns.get(this.getName())}},{key:"setValue",value:function(t){return this.getElement().innerHTML=t,this}}]),t}();e.default=o},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(114),n(49);var o=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,null,[{key:"getParamFromUrl",value:function(t,e){if(!e)return null;t=t.replace(/[\[\]]/g,"\\$&");var n=new RegExp("[?&]"+t+"(=([^&#]*)|&|#|$)").exec(e);return n?n[2]?decodeURIComponent(n[2].replace(/\+/g," ")):"":null}}]),t}();e.default=o},function(t,e,n){var r=n(1),o=n(67),i=n(6).f,u=n(115).f,a=n(59),c=n(58),s=r.RegExp,l=s,f=s.prototype,p=/a/g,v=/a/g,d=new s(p)!==p;if(n(2)&&(!d||n(7)(function(){return v[n(0)("match")]=!1,s(p)!=p||s(v)==v||"/a/i"!=s(p,"i")}))){s=function(t,e){var n=this instanceof s,r=a(t),i=void 0===e;return!n&&r&&t.constructor===s&&i?t:o(d?new l(r&&!i?t.source:t,e):l((r=t instanceof s)?t.source:t,r&&i?c.call(t):e),n?this:f,s)};for(var h=function(t){t in s||i(s,t,{configurable:!0,get:function(){return l[t]},set:function(e){l[t]=e}})},y=u(l),g=0;y.length>g;)h(y[g++]);f.constructor=s,s.prototype=f,n(8)(r,"RegExp",s)}n(64)("RegExp")},function(t,e,n){var r=n(47),o=n(34).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(14);var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.Table=e}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"getIDs",value:function(){var t=[],e=this.Table.el.querySelectorAll("tbody th.check-column input[type=checkbox]:checked");if(0===e.length)return t;for(var n=0;n<e.length;n++)t.push(e[n].value);return t}},{key:"getSelectedCells",value:function(t){var e=this,n=this.getIDs();if(0===n.length)return!1;var r=[];return n.forEach(function(n){var o=e.table.Cells.get(n,t);o&&r.push(o)}),r}},{key:"getCount",value:function(){return this.getIDs().length}},{key:"isAllSelected",value:function(){return!!this.Table.el.querySelector("thead #cb input:checked")}}]),t}();e.default=o},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var o=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.isEnabled=void 0!==jQuery.fn.qtip,this.init()}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,[{key:"init",value:function(){this.isEnabled?jQuery("[data-ac-tip]").qtip({content:{attr:"data-ac-tip"},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}}):console.log("Tooltips not loaded!")}}]),t}();t.exports=o},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(37),n(14);var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.columns=e,e.getColumnNames().forEach(function(n){var r=e.get(n),o=t.getInputByName(r.name);if(o&&0===o.parentElement.textContent.length){var i=document.createElement("span");i.innerHTML=r.label,o.parentElement.appendChild(i)}})}return function(t,e,n){e&&r(t.prototype,e),n&&r(t,n)}(t,null,[{key:"getInputByName",value:function(t){var e=document.querySelector("input[name='".concat(t,"-hide']"));return e||!1}}]),t}();e.default=o}]);
|
classes/Admin.php
CHANGED
@@ -1,166 +1,200 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
namespace AC;
|
4 |
|
5 |
-
use AC\Admin\
|
|
|
6 |
use AC\Admin\Page;
|
7 |
|
8 |
-
|
9 |
-
* @since 2.0
|
10 |
-
*/
|
11 |
-
class Admin {
|
12 |
|
13 |
-
const
|
14 |
|
15 |
-
/**
|
16 |
-
* Settings Page hook suffix
|
17 |
-
* @since 2.0
|
18 |
-
*/
|
19 |
private $hook_suffix;
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
/**
|
22 |
-
*
|
23 |
*/
|
24 |
-
|
|
|
|
|
25 |
|
26 |
/**
|
27 |
-
* @
|
|
|
|
|
28 |
*/
|
29 |
-
public function
|
30 |
-
$this->pages =
|
31 |
-
|
32 |
-
|
33 |
-
->register_page( new Page\Settings() )
|
34 |
-
->register_page( new Page\Addons() )
|
35 |
-
->register_page( new Page\Help() );
|
36 |
}
|
37 |
|
38 |
/**
|
39 |
-
*
|
40 |
*/
|
41 |
-
public function
|
42 |
-
$this->
|
43 |
-
|
44 |
-
add_action( 'admin_menu', array( $this, 'settings_menu' ) );
|
45 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
46 |
}
|
47 |
|
48 |
/**
|
49 |
-
* @return
|
50 |
*/
|
51 |
-
public function
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
54 |
|
55 |
/**
|
56 |
-
*
|
57 |
*/
|
58 |
-
public function
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
return;
|
61 |
}
|
62 |
|
63 |
-
|
64 |
-
wp_enqueue_style( 'wp-pointer' );
|
65 |
-
wp_enqueue_style( 'ac-admin', AC()->get_url() . "assets/css/admin-general.css", array(), AC()->get_version() );
|
66 |
|
67 |
-
|
68 |
}
|
69 |
|
70 |
/**
|
71 |
-
* @param $
|
72 |
*
|
73 |
-
* @return
|
74 |
*/
|
75 |
-
public function
|
76 |
-
|
77 |
-
|
|
|
|
|
78 |
|
79 |
-
return $
|
80 |
}
|
81 |
|
82 |
/**
|
83 |
-
* @param $slug
|
84 |
*
|
85 |
-
* @return
|
86 |
*/
|
87 |
public function get_page( $slug ) {
|
88 |
-
|
89 |
-
|
|
|
90 |
|
91 |
-
|
92 |
-
* @param $slug
|
93 |
-
*
|
94 |
-
* @return false|string URL
|
95 |
-
*/
|
96 |
-
public function get_link( $slug ) {
|
97 |
-
return $this->get_pages()->get_page( $slug )->get_link();
|
98 |
}
|
99 |
|
100 |
/**
|
101 |
-
* @
|
102 |
*/
|
103 |
-
|
104 |
-
|
105 |
-
}
|
106 |
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
}
|
113 |
|
114 |
-
|
115 |
-
* @return string
|
116 |
-
*/
|
117 |
-
public function get_settings_url() {
|
118 |
-
return add_query_arg( array( 'page' => self::MENU_SLUG ), admin_url( $this->get_parent_slug() ) );
|
119 |
}
|
120 |
|
121 |
/**
|
122 |
-
* @
|
123 |
*/
|
124 |
-
public function
|
125 |
-
|
|
|
|
|
126 |
|
127 |
-
|
128 |
-
|
|
|
|
|
129 |
|
130 |
-
|
131 |
-
* Load help tabs
|
132 |
-
*/
|
133 |
-
public function load_help_tabs() {
|
134 |
-
new Help\Introduction();
|
135 |
-
new Help\Basics();
|
136 |
-
new Help\CustomField();
|
137 |
-
}
|
138 |
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
global $pagenow;
|
144 |
|
145 |
-
|
146 |
}
|
147 |
|
148 |
/**
|
149 |
-
*
|
150 |
-
*
|
151 |
-
* @return bool
|
152 |
*/
|
153 |
-
public function
|
154 |
-
|
|
|
|
|
155 |
|
156 |
-
|
157 |
}
|
158 |
|
159 |
/**
|
160 |
-
* @
|
161 |
*/
|
162 |
-
public function
|
163 |
-
|
|
|
|
|
164 |
}
|
165 |
|
166 |
}
|
1 |
<?php
|
|
|
2 |
namespace AC;
|
3 |
|
4 |
+
use AC\Admin\Helpable;
|
5 |
+
use AC\Admin\MenuItem;
|
6 |
use AC\Admin\Page;
|
7 |
|
8 |
+
class Admin implements Registrable {
|
|
|
|
|
|
|
9 |
|
10 |
+
const PLUGIN_PAGE = 'codepress-admin-columns';
|
11 |
|
12 |
+
/** @var string */
|
|
|
|
|
|
|
13 |
private $hook_suffix;
|
14 |
|
15 |
+
/** @var string */
|
16 |
+
private $parent_page;
|
17 |
+
|
18 |
+
/** @var Page */
|
19 |
+
private $page;
|
20 |
+
|
21 |
+
/** @var string */
|
22 |
+
private $url;
|
23 |
+
|
24 |
+
/** @var string */
|
25 |
+
private $menu_hook;
|
26 |
+
|
27 |
+
/** @var Page[] */
|
28 |
+
private $pages = array();
|
29 |
+
|
30 |
+
public function __construct( $parent_page, $menu_hook, $url ) {
|
31 |
+
$this->parent_page = $parent_page;
|
32 |
+
$this->menu_hook = $menu_hook;
|
33 |
+
$this->url = trailingslashit( $url );
|
34 |
+
}
|
35 |
+
|
36 |
/**
|
37 |
+
* Menu hook
|
38 |
*/
|
39 |
+
public function register() {
|
40 |
+
add_action( $this->menu_hook, array( $this, 'settings_menu' ) );
|
41 |
+
}
|
42 |
|
43 |
/**
|
44 |
+
* @param Page $page
|
45 |
+
*
|
46 |
+
* @return $this
|
47 |
*/
|
48 |
+
public function register_page( Page $page ) {
|
49 |
+
$this->pages[ $page->get_slug() ] = $page;
|
50 |
+
|
51 |
+
return $this;
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
/**
|
55 |
+
* @return string
|
56 |
*/
|
57 |
+
public function get_parent_page() {
|
58 |
+
return $this->parent_page;
|
|
|
|
|
|
|
59 |
}
|
60 |
|
61 |
/**
|
62 |
+
* @return void
|
63 |
*/
|
64 |
+
public function settings_menu() {
|
65 |
+
$this->hook_suffix = add_submenu_page(
|
66 |
+
$this->parent_page,
|
67 |
+
__( 'Admin Columns Settings', 'codepress-admin-columns' ),
|
68 |
+
__( 'Admin Columns', 'codepress-admin-columns' ),
|
69 |
+
Capabilities::MANAGE,
|
70 |
+
self::PLUGIN_PAGE,
|
71 |
+
function () {
|
72 |
+
}
|
73 |
+
);
|
74 |
+
|
75 |
+
add_action( "load-" . $this->hook_suffix, array( $this, 'on_load' ) );
|
76 |
+
add_action( "admin_print_scripts-" . $this->hook_suffix, array( $this, 'admin_scripts' ) );
|
77 |
}
|
78 |
|
79 |
/**
|
80 |
+
* @return void
|
81 |
*/
|
82 |
+
public function on_load() {
|
83 |
+
$tab = filter_input( INPUT_GET, 'tab' );
|
84 |
+
|
85 |
+
if ( ! $tab ) {
|
86 |
+
$tab = current( $this->get_menu_items() )->get_slug();
|
87 |
+
}
|
88 |
+
|
89 |
+
$page = $this->get_page( $tab );
|
90 |
+
|
91 |
+
if ( $page instanceof Registrable ) {
|
92 |
+
$page->register();
|
93 |
+
}
|
94 |
+
|
95 |
+
if ( $page instanceof Helpable ) {
|
96 |
+
foreach ( $page->get_help_tabs() as $help ) {
|
97 |
+
get_current_screen()->add_help_tab( array(
|
98 |
+
'id' => $help->get_id(),
|
99 |
+
'content' => $help->get_content(),
|
100 |
+
'title' => $help->get_title(),
|
101 |
+
) );
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
if ( ! $page ) {
|
106 |
return;
|
107 |
}
|
108 |
|
109 |
+
$this->page = $page;
|
|
|
|
|
110 |
|
111 |
+
add_action( $this->hook_suffix, array( $this, 'render' ) );
|
112 |
}
|
113 |
|
114 |
/**
|
115 |
+
* @param string $tab
|
116 |
*
|
117 |
+
* @return string
|
118 |
*/
|
119 |
+
public function get_url( $tab ) {
|
120 |
+
$args = array(
|
121 |
+
'tab' => $tab,
|
122 |
+
'page' => self::PLUGIN_PAGE,
|
123 |
+
);
|
124 |
|
125 |
+
return add_query_arg( $args, $this->url . $this->get_parent_page() );
|
126 |
}
|
127 |
|
128 |
/**
|
129 |
+
* @param string $slug
|
130 |
*
|
131 |
+
* @return Page|false
|
132 |
*/
|
133 |
public function get_page( $slug ) {
|
134 |
+
if ( ! array_key_exists( $slug, $this->pages ) ) {
|
135 |
+
return false;
|
136 |
+
}
|
137 |
|
138 |
+
return $this->pages[ $slug ];
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
}
|
140 |
|
141 |
/**
|
142 |
+
* @return MenuItem[]
|
143 |
*/
|
144 |
+
private function get_menu_items() {
|
145 |
+
$items = array();
|
|
|
146 |
|
147 |
+
foreach ( $this->pages as $page ) {
|
148 |
+
if ( $page && $page->show_in_menu() ) {
|
149 |
+
$items[] = new MenuItem( $page->get_slug(), $page->get_label(), $this->get_url( $page->get_slug() ) );
|
150 |
+
}
|
151 |
+
}
|
|
|
152 |
|
153 |
+
return $items;
|
|
|
|
|
|
|
|
|
154 |
}
|
155 |
|
156 |
/**
|
157 |
+
* @return void
|
158 |
*/
|
159 |
+
public function render() {
|
160 |
+
?>
|
161 |
+
<div id="cpac" class="wrap">
|
162 |
+
<?php
|
163 |
|
164 |
+
$menu = new View( array(
|
165 |
+
'items' => $this->get_menu_items(),
|
166 |
+
'current' => $this->page->get_slug(),
|
167 |
+
) );
|
168 |
|
169 |
+
echo $menu->set_template( 'admin/edit-tabmenu' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
|
171 |
+
$this->page->render();
|
172 |
+
?>
|
173 |
+
</div>
|
174 |
+
<?php
|
|
|
175 |
|
176 |
+
do_action( 'ac/admin/render', $this );
|
177 |
}
|
178 |
|
179 |
/**
|
180 |
+
* Scripts
|
181 |
+
* @return void
|
|
|
182 |
*/
|
183 |
+
public function admin_scripts() {
|
184 |
+
wp_enqueue_script( 'ac-admin-general', AC()->get_url() . "assets/js/admin-general.js", array( 'jquery', 'wp-pointer' ), AC()->get_version() );
|
185 |
+
wp_enqueue_style( 'wp-pointer' );
|
186 |
+
wp_enqueue_style( 'ac-admin', AC()->get_url() . "assets/css/admin-general.css", array(), AC()->get_version() );
|
187 |
|
188 |
+
do_action( 'ac/admin_scripts' );
|
189 |
}
|
190 |
|
191 |
/**
|
192 |
+
* @return string
|
193 |
*/
|
194 |
+
public function get_settings_url() {
|
195 |
+
_deprecated_function( __METHOD__, '3.4.1', 'Admin::get_url()' );
|
196 |
+
|
197 |
+
return $this->get_url( 'settings' );
|
198 |
}
|
199 |
|
200 |
}
|
classes/Admin/AdminFactory.php
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
use AC\Admin;
|
5 |
+
|
6 |
+
class AdminFactory {
|
7 |
+
|
8 |
+
/**
|
9 |
+
* @param bool $is_network
|
10 |
+
*
|
11 |
+
* @return Admin
|
12 |
+
*/
|
13 |
+
public function create( $is_network ) {
|
14 |
+
|
15 |
+
if ( $is_network ) {
|
16 |
+
return new Admin( 'settings.php', 'network_admin_menu', network_admin_url() );
|
17 |
+
} else {
|
18 |
+
return new Admin( 'options-general.php', 'admin_menu', admin_url() );
|
19 |
+
}
|
20 |
+
}
|
21 |
+
|
22 |
+
}
|
classes/Admin/GeneralSectionFactory.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
use AC\Admin\Section\General;
|
5 |
+
use AC\Settings\Admin\General\ShowEditButton;
|
6 |
+
|
7 |
+
class GeneralSectionFactory {
|
8 |
+
|
9 |
+
/** @var Section */
|
10 |
+
private static $section;
|
11 |
+
|
12 |
+
public static function create() {
|
13 |
+
if ( null === self::$section ) {
|
14 |
+
$general = new General();
|
15 |
+
$general->register_setting( new ShowEditButton() );
|
16 |
+
|
17 |
+
self::$section = $general;
|
18 |
+
}
|
19 |
+
|
20 |
+
return self::$section;
|
21 |
+
}
|
22 |
+
|
23 |
+
}
|
classes/Admin/Help.php
DELETED
@@ -1,41 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace AC\Admin;
|
4 |
-
|
5 |
-
abstract class Help {
|
6 |
-
|
7 |
-
abstract public function get_title();
|
8 |
-
|
9 |
-
abstract public function get_content();
|
10 |
-
|
11 |
-
public function __construct() {
|
12 |
-
$this->register_tab();
|
13 |
-
}
|
14 |
-
|
15 |
-
/**
|
16 |
-
* @return string Based on class name
|
17 |
-
*/
|
18 |
-
public function get_id() {
|
19 |
-
$parts = explode( '_', get_class( $this ) );
|
20 |
-
|
21 |
-
return sanitize_key( strtolower( end( $parts ) ) );
|
22 |
-
}
|
23 |
-
|
24 |
-
/**
|
25 |
-
* Register tabs on current screen
|
26 |
-
*/
|
27 |
-
public function register_tab() {
|
28 |
-
$wp_screen = get_current_screen();
|
29 |
-
|
30 |
-
if ( ! $wp_screen ) {
|
31 |
-
return;
|
32 |
-
}
|
33 |
-
|
34 |
-
$wp_screen->add_help_tab( array(
|
35 |
-
'id' => 'ac-tab-' . $this->get_id(),
|
36 |
-
'title' => $this->get_title(),
|
37 |
-
'content' => $this->get_content(),
|
38 |
-
) );
|
39 |
-
}
|
40 |
-
|
41 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/Admin/HelpTab.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
abstract class HelpTab {
|
5 |
+
|
6 |
+
/**
|
7 |
+
* @return string
|
8 |
+
*/
|
9 |
+
abstract public function get_content();
|
10 |
+
|
11 |
+
/**
|
12 |
+
* @return string
|
13 |
+
*/
|
14 |
+
abstract public function get_title();
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @return string
|
18 |
+
*/
|
19 |
+
public function get_id() {
|
20 |
+
return 'ac-tab-' . sanitize_key( get_called_class() );
|
21 |
+
}
|
22 |
+
|
23 |
+
}
|
classes/Admin/{Help → HelpTab}/Basics.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace AC\Admin\
|
4 |
|
5 |
-
use AC\Admin\
|
6 |
|
7 |
-
class Basics extends
|
8 |
|
9 |
public function get_title() {
|
10 |
return __( "Basics", 'codepress-admin-columns' );
|
1 |
<?php
|
2 |
|
3 |
+
namespace AC\Admin\HelpTab;
|
4 |
|
5 |
+
use AC\Admin\HelpTab;
|
6 |
|
7 |
+
class Basics extends HelpTab {
|
8 |
|
9 |
public function get_title() {
|
10 |
return __( "Basics", 'codepress-admin-columns' );
|
classes/Admin/{Help → HelpTab}/CustomField.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace AC\Admin\
|
4 |
|
5 |
-
use AC\Admin\
|
6 |
|
7 |
-
class CustomField extends
|
8 |
|
9 |
public function get_title() {
|
10 |
return __( "Custom Fields", 'codepress-admin-columns' );
|
1 |
<?php
|
2 |
|
3 |
+
namespace AC\Admin\HelpTab;
|
4 |
|
5 |
+
use AC\Admin\HelpTab;
|
6 |
|
7 |
+
class CustomField extends HelpTab {
|
8 |
|
9 |
public function get_title() {
|
10 |
return __( "Custom Fields", 'codepress-admin-columns' );
|
classes/Admin/{Help → HelpTab}/Introduction.php
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
namespace AC\Admin\
|
4 |
|
5 |
-
use AC\Admin\
|
6 |
|
7 |
-
class Introduction extends
|
8 |
|
9 |
public function get_title() {
|
10 |
return __( "Overview", 'codepress-admin-columns' );
|
@@ -19,7 +19,6 @@ class Introduction extends Help {
|
|
19 |
</p>
|
20 |
|
21 |
<?php
|
22 |
-
|
23 |
return ob_get_clean();
|
24 |
}
|
25 |
|
1 |
<?php
|
2 |
|
3 |
+
namespace AC\Admin\HelpTab;
|
4 |
|
5 |
+
use AC\Admin\HelpTab;
|
6 |
|
7 |
+
class Introduction extends HelpTab {
|
8 |
|
9 |
public function get_title() {
|
10 |
return __( "Overview", 'codepress-admin-columns' );
|
19 |
</p>
|
20 |
|
21 |
<?php
|
|
|
22 |
return ob_get_clean();
|
23 |
}
|
24 |
|
classes/Admin/Helpable.php
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
interface Helpable {
|
5 |
+
|
6 |
+
/**
|
7 |
+
* @return HelpTab[]
|
8 |
+
*/
|
9 |
+
public function get_help_tabs();
|
10 |
+
|
11 |
+
}
|
classes/Admin/MenuItem.php
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
class MenuItem {
|
5 |
+
|
6 |
+
/** @var string */
|
7 |
+
private $slug;
|
8 |
+
|
9 |
+
/** @var string */
|
10 |
+
private $label;
|
11 |
+
|
12 |
+
/** @var string */
|
13 |
+
private $url;
|
14 |
+
|
15 |
+
public function __construct( $slug, $label, $url ) {
|
16 |
+
$this->slug = $slug;
|
17 |
+
$this->label = $label;
|
18 |
+
$this->url = $url;
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @return string
|
23 |
+
*/
|
24 |
+
public function get_slug() {
|
25 |
+
return $this->slug;
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @return string
|
30 |
+
*/
|
31 |
+
public function get_label() {
|
32 |
+
return $this->label;
|
33 |
+
}
|
34 |
+
|
35 |
+
/**
|
36 |
+
* @return string
|
37 |
+
*/
|
38 |
+
public function get_url() {
|
39 |
+
return $this->url;
|
40 |
+
}
|
41 |
+
|
42 |
+
}
|
classes/Admin/Page.php
CHANGED
@@ -1,131 +1,43 @@
|
|
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
|
9 |
-
* @var bool
|
10 |
-
*/
|
11 |
-
private $default;
|
12 |
-
|
13 |
-
/**
|
14 |
-
* @var string
|
15 |
-
*/
|
16 |
private $slug;
|
17 |
|
18 |
-
/**
|
19 |
-
* @var string
|
20 |
-
*/
|
21 |
private $label;
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
|
28 |
/**
|
29 |
-
* Display pages
|
30 |
* @return void
|
31 |
*/
|
32 |
-
public
|
33 |
|
34 |
/**
|
35 |
-
*
|
36 |
-
* @return bool
|
37 |
*/
|
38 |
-
public function is_default() {
|
39 |
-
return (bool) $this->default;
|
40 |
-
}
|
41 |
-
|
42 |
-
public function set_default( $default ) {
|
43 |
-
$this->default = (bool) $default;
|
44 |
-
|
45 |
-
return $this;
|
46 |
-
}
|
47 |
-
|
48 |
public function get_slug() {
|
49 |
return $this->slug;
|
50 |
}
|
51 |
|
52 |
-
public function set_slug( $slug ) {
|
53 |
-
$this->slug = sanitize_key( $slug );
|
54 |
-
|
55 |
-
return $this;
|
56 |
-
}
|
57 |
-
|
58 |
-
public function show_in_menu() {
|
59 |
-
return $this->show_in_menu;
|
60 |
-
}
|
61 |
-
|
62 |
-
public function set_show_in_menu( $show ) {
|
63 |
-
$this->show_in_menu = (bool) $show;
|
64 |
-
|
65 |
-
return $this;
|
66 |
-
}
|
67 |
-
|
68 |
-
public function get_label() {
|
69 |
-
return $this->label;
|
70 |
-
}
|
71 |
-
|
72 |
-
public function set_label( $label ) {
|
73 |
-
$this->label = $label;
|
74 |
-
|
75 |
-
return $this;
|
76 |
-
}
|
77 |
-
|
78 |
-
/**
|
79 |
-
* @return string URL
|
80 |
-
*/
|
81 |
-
public function get_link() {
|
82 |
-
return add_query_arg( array( 'tab' => $this->slug ), AC()->admin()->get_settings_url() );
|
83 |
-
}
|
84 |
-
|
85 |
-
public function is_current_screen() {
|
86 |
-
return AC()->admin()->is_current_page( $this->get_slug() );
|
87 |
-
}
|
88 |
-
|
89 |
/**
|
90 |
-
* Cast page to an array
|
91 |
-
* @return array
|
92 |
-
*/
|
93 |
-
public function to_array() {
|
94 |
-
return array(
|
95 |
-
'slug' => $this->get_slug(),
|
96 |
-
'label' => $this->get_label(),
|
97 |
-
'default' => $this->is_default(),
|
98 |
-
);
|
99 |
-
}
|
100 |
-
|
101 |
-
/**
|
102 |
-
* Show the label of the page
|
103 |
* @return string
|
104 |
*/
|
105 |
-
public function
|
106 |
-
return $this->
|
107 |
}
|
108 |
|
109 |
/**
|
110 |
-
* @param string $action
|
111 |
-
*
|
112 |
* @return bool
|
113 |
*/
|
114 |
-
public function
|
115 |
-
return
|
116 |
-
}
|
117 |
-
|
118 |
-
/**
|
119 |
-
* Nonce Field
|
120 |
-
*
|
121 |
-
* @param string $action
|
122 |
-
*/
|
123 |
-
public function nonce_field( $action ) {
|
124 |
-
wp_nonce_field( $action, '_ac_nonce', false );
|
125 |
-
}
|
126 |
-
|
127 |
-
public function register() {
|
128 |
-
// Register Hooks
|
129 |
}
|
130 |
|
131 |
}
|
1 |
<?php
|
|
|
2 |
namespace AC\Admin;
|
3 |
|
4 |
abstract class Page {
|
5 |
|
6 |
+
/** @var string */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
private $slug;
|
8 |
|
9 |
+
/** @var string */
|
|
|
|
|
10 |
private $label;
|
11 |
|
12 |
+
public function __construct( $slug, $label ) {
|
13 |
+
$this->slug = $slug;
|
14 |
+
$this->label = $label;
|
15 |
+
}
|
16 |
|
17 |
/**
|
|
|
18 |
* @return void
|
19 |
*/
|
20 |
+
abstract public function render();
|
21 |
|
22 |
/**
|
23 |
+
* @return string
|
|
|
24 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
public function get_slug() {
|
26 |
return $this->slug;
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
* @return string
|
31 |
*/
|
32 |
+
public function get_label() {
|
33 |
+
return $this->label;
|
34 |
}
|
35 |
|
36 |
/**
|
|
|
|
|
37 |
* @return bool
|
38 |
*/
|
39 |
+
public function show_in_menu() {
|
40 |
+
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
|
43 |
}
|
classes/Admin/Page/Addons.php
CHANGED
@@ -7,27 +7,28 @@ use AC\Admin\Page;
|
|
7 |
use AC\Message\Notice;
|
8 |
use AC\PluginInformation;
|
9 |
|
10 |
-
class Addons extends Page
|
|
|
|
|
|
|
11 |
|
12 |
public function __construct() {
|
13 |
-
|
14 |
-
->set_slug( 'addons' )
|
15 |
-
->set_label( __( 'Add-ons', 'codepress-admin-columns' ) );
|
16 |
}
|
17 |
|
18 |
/**
|
19 |
* Register Hooks
|
20 |
*/
|
21 |
public function register() {
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
25 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
26 |
-
add_filter( 'wp_redirect', array( $this, 'redirect_after_status_change' ) );
|
27 |
}
|
28 |
|
29 |
public function page_notices() {
|
30 |
-
if ( ! current_user_can( AC\Capabilities::MANAGE )
|
31 |
return;
|
32 |
}
|
33 |
|
@@ -63,25 +64,17 @@ class Addons extends Page {
|
|
63 |
* @since 2.2
|
64 |
*/
|
65 |
public function handle_request() {
|
66 |
-
if ( !
|
67 |
return;
|
68 |
}
|
69 |
|
70 |
-
|
71 |
-
$slug = filter_input( INPUT_GET, 'plugin' );
|
72 |
-
$status = filter_input( INPUT_GET, 'status' );
|
73 |
-
|
74 |
-
if ( ! $slug || ! $status || ! wp_verify_nonce( $nonce, 'ac-plugin-status-change' ) ) {
|
75 |
-
return;
|
76 |
-
}
|
77 |
-
|
78 |
-
switch ( $status ) {
|
79 |
case 'activate' :
|
80 |
-
$this->show_activation_notice(
|
81 |
|
82 |
break;
|
83 |
case 'deactivate' :
|
84 |
-
$this->show_deactivation_notice(
|
85 |
|
86 |
break;
|
87 |
}
|
@@ -138,13 +131,15 @@ class Addons extends Page {
|
|
138 |
);
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
141 |
/**
|
142 |
* Admin scripts
|
143 |
*/
|
144 |
public function admin_scripts() {
|
145 |
-
|
146 |
-
wp_enqueue_style( 'ac-admin-page-addons', AC()->get_url() . 'assets/css/admin-page-addons.css', array(), AC()->get_version() );
|
147 |
-
}
|
148 |
}
|
149 |
|
150 |
/**
|
@@ -208,42 +203,6 @@ class Addons extends Page {
|
|
208 |
exit;
|
209 |
}
|
210 |
|
211 |
-
/**
|
212 |
-
* Redirect the user to the Admin Columns add-ons page after activation/deactivation of an add-on from the add-ons page
|
213 |
-
* @since 2.2
|
214 |
-
*
|
215 |
-
* @param $location
|
216 |
-
*
|
217 |
-
* @return string
|
218 |
-
*/
|
219 |
-
public function redirect_after_status_change( $location ) {
|
220 |
-
global $pagenow;
|
221 |
-
|
222 |
-
if ( 'plugins.php' !== $pagenow || ! is_admin() || ! filter_input( INPUT_GET, 'ac-redirect' ) || filter_input( INPUT_GET, 'error' ) ) {
|
223 |
-
return $location;
|
224 |
-
}
|
225 |
-
|
226 |
-
$status = filter_input( INPUT_GET, 'action' );
|
227 |
-
|
228 |
-
if ( ! $status ) {
|
229 |
-
return $location;
|
230 |
-
}
|
231 |
-
|
232 |
-
$integration = AC\IntegrationFactory::create( filter_input( INPUT_GET, 'plugin' ) );
|
233 |
-
|
234 |
-
if ( ! $integration ) {
|
235 |
-
return $location;
|
236 |
-
}
|
237 |
-
|
238 |
-
$location = add_query_arg( array(
|
239 |
-
'status' => $status,
|
240 |
-
'plugin' => $integration->get_slug(),
|
241 |
-
'_ac_nonce' => wp_create_nonce( 'ac-plugin-status-change' ),
|
242 |
-
), $this->get_link() );
|
243 |
-
|
244 |
-
return $location;
|
245 |
-
}
|
246 |
-
|
247 |
/**
|
248 |
* Addons are grouped into addon groups by providing the group an addon belongs to.
|
249 |
* @since 2.2
|
@@ -389,65 +348,69 @@ class Addons extends Page {
|
|
389 |
), wp_nonce_url( $this->get_link(), 'install-ac-addon' ) );
|
390 |
}
|
391 |
|
392 |
-
|
393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
|
395 |
-
foreach ( $this->get_grouped_addons() as $group_slug => $group ) : ?>
|
396 |
<div class="ac-addon group-<?php echo esc_attr( $group_slug ); ?>">
|
397 |
<h2><?php echo esc_html( $group['title'] ); ?></h2>
|
398 |
|
399 |
<ul>
|
400 |
<?php
|
401 |
-
foreach ( $group['addons'] as $addon )
|
402 |
-
/* @var AC\Integration $addon */
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
<h3><?php echo esc_html( $addon->get_title() ); ?></h3>
|
415 |
-
<p><?php echo esc_html( $addon->get_description() ); ?></p>
|
416 |
-
</div>
|
417 |
-
<div class="addon-actions">
|
418 |
-
<?php
|
419 |
-
|
420 |
-
// Installed..
|
421 |
-
if ( $this->get_plugin_info( $addon->get_basename() )->is_installed() ) :
|
422 |
-
|
423 |
-
// Active
|
424 |
-
if ( $this->get_plugin_info( $addon->get_basename() )->is_active() ) : ?>
|
425 |
-
<span class="active"><?php _e( 'Active', 'codepress-admin-columns' ); ?></span>
|
426 |
-
|
427 |
-
<?php if ( $user_has_rights ) : ?>
|
428 |
-
<a href="<?php echo esc_url( $this->get_deactivation_url( $addon->get_basename() ) ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
|
429 |
-
<?php endif;
|
430 |
-
// Not active
|
431 |
-
elseif ( $user_has_rights ) : ?>
|
432 |
-
<a href="<?php echo esc_url( $this->get_activation_url( $addon->get_basename() ) ); ?>" class="button button-primary right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
|
433 |
-
<?php endif;
|
434 |
-
|
435 |
-
// Not installed...
|
436 |
-
elseif ( ac_is_pro_active() && current_user_can( 'install_plugins' ) ) : ?>
|
437 |
-
<a href="<?php echo esc_url( $this->get_plugin_install_url( $addon->get_slug() ) ); ?>" class="button">
|
438 |
-
<?php esc_html_e( 'Download & Install', 'codepress-admin-columns' ); ?>
|
439 |
-
</a>
|
440 |
-
<?php else : ?>
|
441 |
-
<a target="_blank" href="<?php echo esc_url( $addon->get_link() ); ?>" class="button"><?php esc_html_e( 'Get this add-on', 'codepress-admin-columns' ); ?></a>
|
442 |
-
<?php endif;
|
443 |
-
|
444 |
-
?>
|
445 |
-
</div>
|
446 |
-
</li>
|
447 |
-
<?php endforeach; // addons ?>
|
448 |
</ul>
|
449 |
</div>
|
450 |
-
<?php endforeach;
|
451 |
}
|
452 |
|
453 |
}
|
7 |
use AC\Message\Notice;
|
8 |
use AC\PluginInformation;
|
9 |
|
10 |
+
class Addons extends Page
|
11 |
+
implements AC\Registrable {
|
12 |
+
|
13 |
+
const NAME = 'addons';
|
14 |
|
15 |
public function __construct() {
|
16 |
+
parent::__construct( self::NAME, __( 'Add-ons', 'codepress-admin-columns' ) );
|
|
|
|
|
17 |
}
|
18 |
|
19 |
/**
|
20 |
* Register Hooks
|
21 |
*/
|
22 |
public function register() {
|
23 |
+
$this->handle_request();
|
24 |
+
$this->handle_install_request();
|
25 |
+
$this->page_notices();
|
26 |
+
|
27 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
|
|
28 |
}
|
29 |
|
30 |
public function page_notices() {
|
31 |
+
if ( ! current_user_can( AC\Capabilities::MANAGE ) ) {
|
32 |
return;
|
33 |
}
|
34 |
|
64 |
* @since 2.2
|
65 |
*/
|
66 |
public function handle_request() {
|
67 |
+
if ( ! wp_verify_nonce( filter_input( INPUT_GET, '_ac_nonce' ), 'ac-plugin-status-change' ) ) {
|
68 |
return;
|
69 |
}
|
70 |
|
71 |
+
switch ( filter_input( INPUT_GET, 'status' ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
case 'activate' :
|
73 |
+
$this->show_activation_notice( filter_input( INPUT_GET, 'plugin' ) );
|
74 |
|
75 |
break;
|
76 |
case 'deactivate' :
|
77 |
+
$this->show_deactivation_notice( filter_input( INPUT_GET, 'plugin' ) );
|
78 |
|
79 |
break;
|
80 |
}
|
131 |
);
|
132 |
}
|
133 |
|
134 |
+
private function get_link() {
|
135 |
+
return ac_get_admin_url( $this->get_slug() );
|
136 |
+
}
|
137 |
+
|
138 |
/**
|
139 |
* Admin scripts
|
140 |
*/
|
141 |
public function admin_scripts() {
|
142 |
+
wp_enqueue_style( 'ac-admin-page-addons', AC()->get_url() . 'assets/css/admin-page-addons.css', array(), AC()->get_version() );
|
|
|
|
|
143 |
}
|
144 |
|
145 |
/**
|
203 |
exit;
|
204 |
}
|
205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
/**
|
207 |
* Addons are grouped into addon groups by providing the group an addon belongs to.
|
208 |
* @since 2.2
|
348 |
), wp_nonce_url( $this->get_link(), 'install-ac-addon' ) );
|
349 |
}
|
350 |
|
351 |
+
/**
|
352 |
+
* @param AC\Integration $addon
|
353 |
+
*
|
354 |
+
* @return string
|
355 |
+
*/
|
356 |
+
private function render_actions( AC\Integration $addon ) {
|
357 |
+
ob_start();
|
358 |
+
|
359 |
+
// Installed..
|
360 |
+
if ( $this->get_plugin_info( $addon->get_basename() )->is_installed() ) :
|
361 |
+
|
362 |
+
// Active
|
363 |
+
if ( $this->get_plugin_info( $addon->get_basename() )->is_active() ) : ?>
|
364 |
+
<span class="active"><?php _e( 'Active', 'codepress-admin-columns' ); ?></span>
|
365 |
+
|
366 |
+
<?php if ( current_user_can( 'activate_plugins' ) ) : ?>
|
367 |
+
<a href="<?php echo esc_url( $this->get_deactivation_url( $addon->get_basename() ) ); ?>" class="button right"><?php _e( 'Deactivate', 'codepress-admin-columns' ); ?></a>
|
368 |
+
<?php endif;
|
369 |
+
// Not active
|
370 |
+
elseif ( current_user_can( 'activate_plugins' ) ) : ?>
|
371 |
+
<a href="<?php echo esc_url( $this->get_activation_url( $addon->get_basename() ) ); ?>" class="button button-primary right"><?php _e( 'Activate', 'codepress-admin-columns' ); ?></a>
|
372 |
+
<?php endif;
|
373 |
+
|
374 |
+
// Not installed...
|
375 |
+
elseif ( ac_is_pro_active() && current_user_can( 'install_plugins' ) ) : ?>
|
376 |
+
<a href="<?php echo esc_url( $this->get_plugin_install_url( $addon->get_slug() ) ); ?>" class="button">
|
377 |
+
<?php esc_html_e( 'Download & Install', 'codepress-admin-columns' ); ?>
|
378 |
+
</a>
|
379 |
+
<?php else : ?>
|
380 |
+
<a target="_blank" href="<?php echo esc_url( $addon->get_link() ); ?>" class="button"><?php esc_html_e( 'Get this add-on', 'codepress-admin-columns' ); ?></a>
|
381 |
+
<?php endif;
|
382 |
+
|
383 |
+
return ob_get_clean();
|
384 |
+
}
|
385 |
+
|
386 |
+
/**
|
387 |
+
* @return void
|
388 |
+
*/
|
389 |
+
public function render() {
|
390 |
+
foreach ( $this->get_grouped_addons() as $group_slug => $group ) :
|
391 |
+
?>
|
392 |
|
|
|
393 |
<div class="ac-addon group-<?php echo esc_attr( $group_slug ); ?>">
|
394 |
<h2><?php echo esc_html( $group['title'] ); ?></h2>
|
395 |
|
396 |
<ul>
|
397 |
<?php
|
398 |
+
foreach ( $group['addons'] as $addon ) {
|
399 |
+
/* @var AC\Integration $addon */
|
400 |
+
|
401 |
+
$view = new AC\View( array(
|
402 |
+
'logo' => AC()->get_url() . $addon->get_logo(),
|
403 |
+
'title' => $addon->get_title(),
|
404 |
+
'description' => $addon->get_description(),
|
405 |
+
'actions' => $this->render_actions( $addon ),
|
406 |
+
) );
|
407 |
+
|
408 |
+
echo $view->set_template( 'admin/edit-addon' );
|
409 |
+
}
|
410 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
</ul>
|
412 |
</div>
|
413 |
+
<?php endforeach;
|
414 |
}
|
415 |
|
416 |
}
|
classes/Admin/Page/Columns.php
CHANGED
@@ -3,138 +3,76 @@
|
|
3 |
namespace AC\Admin\Page;
|
4 |
|
5 |
use AC\Admin;
|
6 |
-
use AC\
|
7 |
-
use AC\Admin\Promo;
|
8 |
-
use AC\Autoloader;
|
9 |
use AC\Capabilities;
|
10 |
use AC\Column;
|
11 |
-
use AC\Integrations;
|
12 |
use AC\ListScreen;
|
13 |
use AC\ListScreenFactory;
|
14 |
use AC\ListScreenGroups;
|
15 |
-
use AC\
|
16 |
use AC\Preferences;
|
17 |
-
use AC\
|
|
|
|
|
18 |
|
19 |
-
class Columns extends Page
|
|
|
20 |
|
21 |
-
|
22 |
-
* @var array
|
23 |
-
*/
|
24 |
-
private $notices;
|
25 |
|
26 |
/**
|
27 |
-
* @var
|
28 |
*/
|
29 |
-
private $
|
30 |
|
31 |
public function __construct() {
|
32 |
-
|
33 |
-
->set_label( __( 'Admin Columns', 'codepress-admin-columns' ) )
|
34 |
-
->set_default( true );
|
35 |
}
|
36 |
|
37 |
-
public function
|
38 |
-
|
39 |
-
add_action( 'admin_init', array( $this, 'handle_request' ) );
|
40 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
41 |
-
add_action( 'admin_footer', array( $this, 'display_modal' ) );
|
42 |
-
|
43 |
-
// Ajax calls
|
44 |
-
add_action( 'wp_ajax_ac_column_select', array( $this, 'ajax_column_select' ) );
|
45 |
-
add_action( 'wp_ajax_ac_column_refresh', array( $this, 'ajax_column_refresh' ) );
|
46 |
-
add_action( 'wp_ajax_ac_columns_save', array( $this, 'ajax_columns_save' ) );
|
47 |
}
|
48 |
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
public function admin_scripts() {
|
53 |
-
if ( ! $this->is_current_screen() ) {
|
54 |
-
return;
|
55 |
-
}
|
56 |
-
|
57 |
-
$list_screen = $this->get_current_list_screen();
|
58 |
-
|
59 |
-
if ( ! $list_screen ) {
|
60 |
-
return;
|
61 |
-
}
|
62 |
-
|
63 |
-
// Width slider
|
64 |
-
wp_enqueue_style( 'jquery-ui-lightness', AC()->get_url() . 'assets/ui-theme/jquery-ui-1.8.18.custom.css', array(), AC()->get_version() );
|
65 |
-
wp_enqueue_script( 'jquery-ui-slider' );
|
66 |
-
|
67 |
-
wp_enqueue_script( 'ac-admin-page-columns', AC()->get_url() . "assets/js/admin-page-columns.js", array(
|
68 |
-
'jquery',
|
69 |
-
'dashboard',
|
70 |
-
'jquery-ui-slider',
|
71 |
-
'jquery-ui-sortable',
|
72 |
-
'wp-pointer',
|
73 |
-
), AC()->get_version() );
|
74 |
-
|
75 |
-
wp_enqueue_style( 'ac-admin-page-columns-css', AC()->get_url() . 'assets/css/admin-page-columns.css', array(), AC()->get_version() );
|
76 |
-
|
77 |
-
wp_localize_script( 'ac-admin-page-columns', 'AC', array(
|
78 |
-
'_ajax_nonce' => wp_create_nonce( 'ac-settings' ),
|
79 |
-
'list_screen' => $list_screen->get_key(),
|
80 |
-
'layout' => $list_screen->get_layout_id(),
|
81 |
-
'original_columns' => $list_screen->get_original_columns(),
|
82 |
-
'i18n' => array(
|
83 |
-
'clone' => __( '%s column is already present and can not be duplicated.', 'codepress-admin-columns' ),
|
84 |
-
'error' => __( 'Invalid response.', 'codepress-admin-columns' ),
|
85 |
-
),
|
86 |
-
) );
|
87 |
|
88 |
-
|
89 |
}
|
90 |
|
91 |
-
|
92 |
-
|
93 |
-
return;
|
94 |
-
}
|
95 |
-
|
96 |
-
// User selected
|
97 |
-
$list_screen = ListScreenFactory::create( filter_input( INPUT_GET, 'list_screen' ) );
|
98 |
-
|
99 |
-
// Preference
|
100 |
-
if ( ! $list_screen ) {
|
101 |
-
$list_screen = ListScreenFactory::create( $this->preferences()->get( 'list_screen' ) );
|
102 |
-
}
|
103 |
|
104 |
-
|
105 |
-
|
106 |
-
$
|
|
|
|
|
107 |
}
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
$
|
|
|
|
|
112 |
}
|
113 |
-
|
114 |
-
$this->preferences()->set( 'list_screen', $list_screen->get_key() );
|
115 |
-
|
116 |
-
$this->current_list_screen = $list_screen;
|
117 |
-
|
118 |
-
do_action( 'ac/settings/list_screen', $list_screen );
|
119 |
}
|
120 |
|
121 |
/**
|
122 |
-
* @
|
|
|
|
|
123 |
*/
|
124 |
-
|
125 |
-
return $
|
126 |
}
|
127 |
|
128 |
-
|
129 |
-
|
130 |
-
*/
|
131 |
-
public function handle_request() {
|
132 |
-
if ( ! current_user_can( Capabilities::MANAGE ) || ! $this->is_current_screen() ) {
|
133 |
return;
|
134 |
}
|
135 |
|
136 |
-
|
137 |
-
switch ( filter_input( INPUT_POST, 'cpac_action' ) ) {
|
138 |
|
139 |
case 'restore_by_type' :
|
140 |
if ( $this->verify_nonce( 'restore-type' ) ) {
|
@@ -142,7 +80,8 @@ class Columns extends Page {
|
|
142 |
$list_screen = ListScreenFactory::create( filter_input( INPUT_POST, 'list_screen' ), filter_input( INPUT_POST, 'layout' ) );
|
143 |
$list_screen->delete();
|
144 |
|
145 |
-
$
|
|
|
146 |
}
|
147 |
break;
|
148 |
}
|
@@ -150,185 +89,122 @@ class Columns extends Page {
|
|
150 |
do_action( 'ac/settings/handle_request', $this );
|
151 |
}
|
152 |
|
153 |
-
|
154 |
-
|
155 |
-
*
|
156 |
-
* @param ListScreen $list_screen
|
157 |
-
*
|
158 |
-
* @return string $label
|
159 |
-
*/
|
160 |
-
private function get_list_screen_message_label( $list_screen ) {
|
161 |
-
return apply_filters( 'ac/settings/list_screen_message_label', $list_screen->get_label(), $list_screen );
|
162 |
-
}
|
163 |
-
|
164 |
-
/**
|
165 |
-
* @param string $message Message body
|
166 |
-
* @param string $type Updated or error
|
167 |
-
*/
|
168 |
-
|
169 |
-
public function notice( $message, $type = 'updated' ) {
|
170 |
-
$this->notices[] = '<div class="ac-message inline ' . esc_attr( $type ) . '"><p>' . $message . '</p></div>';
|
171 |
}
|
172 |
|
173 |
/**
|
174 |
-
*
|
175 |
-
*
|
176 |
-
* @return string
|
177 |
*/
|
178 |
-
|
179 |
-
|
180 |
|
181 |
-
|
|
|
182 |
|
183 |
-
|
184 |
-
|
|
|
|
|
|
|
|
|
|
|
185 |
|
186 |
-
|
187 |
-
* Check is the ajax request is valid and user is allowed to make it
|
188 |
-
* @since 3.0
|
189 |
-
* @return ListScreen
|
190 |
-
*/
|
191 |
-
private function ajax_validate_request() {
|
192 |
-
check_ajax_referer( 'ac-settings' );
|
193 |
|
194 |
-
|
195 |
-
wp_die();
|
196 |
-
}
|
197 |
|
198 |
-
$
|
|
|
|
|
199 |
|
200 |
-
|
201 |
-
wp_die();
|
202 |
-
}
|
203 |
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
|
209 |
-
|
210 |
-
}
|
211 |
|
212 |
-
|
213 |
-
* @param ListScreen $list_screen
|
214 |
-
*
|
215 |
-
* @return string
|
216 |
-
*/
|
217 |
-
private function get_error_message_visit_list_screen( $list_screen ) {
|
218 |
-
return sprintf( __( 'Please visit the %s screen once to load all available columns', 'codepress-admin-columns' ), ac_helper()->html->link( $list_screen->get_screen_link(), $list_screen->get_label() ) );
|
219 |
}
|
220 |
|
221 |
/**
|
222 |
-
*
|
223 |
-
* @since 3.0
|
224 |
*/
|
225 |
-
|
226 |
-
$
|
|
|
|
|
|
|
227 |
|
228 |
-
|
|
|
229 |
|
230 |
-
|
231 |
-
|
232 |
-
'type' => 'message',
|
233 |
-
'error' => $this->get_error_message_visit_list_screen( $list_screen ),
|
234 |
-
) );
|
235 |
-
}
|
236 |
|
237 |
-
$
|
238 |
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
__( '%s column is already present and can not be duplicated.', 'codepress-admin-columns' ),
|
245 |
-
'<strong>' . $column->get_label() . '</strong>' ),
|
246 |
-
) );
|
247 |
-
}
|
248 |
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
'error' => $column->get_message(),
|
254 |
-
) );
|
255 |
}
|
256 |
-
|
257 |
-
wp_send_json_success( $this->get_column_display( $column ) );
|
258 |
}
|
259 |
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
public function ajax_column_refresh() {
|
264 |
-
$list_screen = $this->ajax_validate_request();
|
265 |
|
266 |
-
|
267 |
-
$
|
268 |
|
269 |
-
if (
|
270 |
-
|
271 |
}
|
272 |
|
273 |
-
|
274 |
-
|
275 |
-
|
|
|
276 |
|
277 |
-
|
|
|
|
|
|
|
278 |
|
279 |
-
if (
|
280 |
-
|
281 |
}
|
282 |
|
283 |
-
|
|
|
|
|
284 |
}
|
285 |
|
286 |
/**
|
287 |
-
* @
|
|
|
|
|
288 |
*/
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
parse_str( $_POST['data'], $formdata );
|
293 |
-
|
294 |
-
if ( ! isset( $formdata['columns'] ) ) {
|
295 |
-
wp_send_json_error( array(
|
296 |
-
'type' => 'error',
|
297 |
-
'message' => __( 'You need at least one column', 'codepress-admin-columns' ),
|
298 |
-
)
|
299 |
-
);
|
300 |
-
}
|
301 |
-
|
302 |
-
$result = $list_screen->store( $formdata['columns'] );
|
303 |
-
|
304 |
-
$view_link = ac_helper()->html->link( $list_screen->get_screen_link(), sprintf( __( 'View %s screen', 'codepress-admin-columns' ), $list_screen->get_label() ) );
|
305 |
-
|
306 |
-
if ( is_wp_error( $result ) ) {
|
307 |
-
|
308 |
-
if ( 'same-settings' === $result->get_error_code() ) {
|
309 |
-
wp_send_json_error( array(
|
310 |
-
'type' => 'notice notice-warning',
|
311 |
-
'message' => sprintf( __( 'You are trying to store the same settings for %s.', 'codepress-admin-columns' ), "<strong>" . $this->get_list_screen_message_label( $list_screen ) . "</strong>" ) . ' ' . $view_link,
|
312 |
-
)
|
313 |
-
);
|
314 |
-
}
|
315 |
-
|
316 |
-
wp_send_json_error( array(
|
317 |
-
'type' => 'error',
|
318 |
-
'message' => $result->get_error_message(),
|
319 |
-
)
|
320 |
-
);
|
321 |
-
}
|
322 |
-
|
323 |
-
wp_send_json_success(
|
324 |
-
sprintf( __( 'Settings for %s updated successfully.', 'codepress-admin-columns' ), "<strong>" . esc_html( $this->get_list_screen_message_label( $list_screen ) ) . "</strong>" ) . ' ' . $view_link
|
325 |
-
);
|
326 |
}
|
327 |
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
|
|
|
|
332 |
}
|
333 |
|
334 |
public function sort_by_label( $a, $b ) {
|
@@ -368,10 +244,6 @@ class Columns extends Page {
|
|
368 |
return $grouped;
|
369 |
}
|
370 |
|
371 |
-
private function preferences() {
|
372 |
-
return new Preferences\Site( 'settings' );
|
373 |
-
}
|
374 |
-
|
375 |
/**
|
376 |
* @param $label
|
377 |
* @param string $mainlabel
|
@@ -386,39 +258,6 @@ class Columns extends Page {
|
|
386 |
return $label;
|
387 |
}
|
388 |
|
389 |
-
/**
|
390 |
-
* @return Promo|false
|
391 |
-
*/
|
392 |
-
public function get_active_promotion() {
|
393 |
-
$classes = Autoloader::instance()->get_class_names_from_dir( 'AC\Admin\Promo' );
|
394 |
-
|
395 |
-
foreach ( $classes as $class ) {
|
396 |
-
|
397 |
-
/* @var Promo $promo */
|
398 |
-
$promo = new $class;
|
399 |
-
|
400 |
-
if ( $promo->is_active() ) {
|
401 |
-
return $promo;
|
402 |
-
}
|
403 |
-
}
|
404 |
-
|
405 |
-
return false;
|
406 |
-
}
|
407 |
-
|
408 |
-
/**
|
409 |
-
* @return int
|
410 |
-
*/
|
411 |
-
private function get_discount_percentage() {
|
412 |
-
return 10;
|
413 |
-
}
|
414 |
-
|
415 |
-
/**
|
416 |
-
* @return int
|
417 |
-
*/
|
418 |
-
private function get_lowest_pro_price() {
|
419 |
-
return 49;
|
420 |
-
}
|
421 |
-
|
422 |
/**
|
423 |
* @param ListScreen $list_screen
|
424 |
*
|
@@ -430,54 +269,27 @@ class Columns extends Page {
|
|
430 |
return apply_filters( 'ac/read_only_message', $message, $list_screen );
|
431 |
}
|
432 |
|
433 |
-
/**
|
434 |
-
* @return \AC\Integration[]
|
435 |
-
*/
|
436 |
-
private function get_missing_integrations() {
|
437 |
-
$missing = array();
|
438 |
-
|
439 |
-
foreach ( new Integrations() as $integration ) {
|
440 |
-
$integration_plugin = new PluginInformation( $integration->get_basename() );
|
441 |
-
|
442 |
-
if ( $integration->is_plugin_active() && ! $integration_plugin->is_active() ) {
|
443 |
-
$missing[] = $integration;
|
444 |
-
}
|
445 |
-
}
|
446 |
-
|
447 |
-
return $missing;
|
448 |
-
}
|
449 |
-
|
450 |
/**
|
451 |
* Display
|
452 |
*/
|
453 |
-
public function
|
454 |
-
$list_screen = $this->get_current_list_screen();
|
455 |
|
|
|
456 |
?>
|
457 |
|
458 |
<div class="ac-admin<?php echo $list_screen->get_settings() ? ' stored' : ''; ?>" data-type="<?php echo esc_attr( $list_screen->get_key() ); ?>">
|
459 |
<div class="main">
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
</optgroup>
|
472 |
-
<?php endforeach; ?>
|
473 |
-
</select>
|
474 |
-
<span class="spinner"></span>
|
475 |
-
|
476 |
-
<?php if ( $link = $list_screen->get_screen_link() ) : ?>
|
477 |
-
<a href="<?php echo esc_url( $link ); ?>" class="page-title-action view-link"><?php esc_html_e( 'View', 'codepress-admin-columns' ); ?></a>
|
478 |
-
<?php endif; ?>
|
479 |
-
</form>
|
480 |
-
</div>
|
481 |
|
482 |
<?php do_action( 'ac/settings/after_title', $list_screen ); ?>
|
483 |
|
@@ -487,286 +299,75 @@ class Columns extends Page {
|
|
487 |
<div class="ac-right-inner">
|
488 |
|
489 |
<?php if ( ! $list_screen->is_read_only() ) : ?>
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
</form>
|
517 |
-
|
518 |
-
<?php do_action( 'ac/settings/form_actions', $this ); ?>
|
519 |
-
|
520 |
-
</div><!--form-actions-->
|
521 |
-
<?php endif; ?>
|
522 |
|
523 |
<?php do_action( 'ac/settings/sidebox', $list_screen ); ?>
|
524 |
|
525 |
<?php if ( apply_filters( 'ac/show_banner', true ) ) : ?>
|
526 |
|
527 |
-
<?php
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
'filtering' => __( 'Add filterable columns', 'codepress-admin-columns' ),
|
545 |
-
'editing' => __( 'Edit your column content directly', 'codepress-admin-columns' ),
|
546 |
-
'column-sets' => __( 'Create multiple columns sets', 'codepress-admin-columns' ),
|
547 |
-
'import-export' => __( 'Import & Export settings', 'codepress-admin-columns' ),
|
548 |
-
);
|
549 |
-
|
550 |
-
foreach ( $items as $utm_content => $label ) : ?>
|
551 |
-
<li>
|
552 |
-
<a href="<?php echo esc_url( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'banner', 'usp-' . $utm_content ) ); ?>"><?php echo esc_html( $label ); ?></a>
|
553 |
-
</li>
|
554 |
-
<?php endforeach; ?>
|
555 |
-
|
556 |
-
</ul>
|
557 |
-
|
558 |
-
<?php
|
559 |
-
$integrations = $this->get_missing_integrations();
|
560 |
-
|
561 |
-
if ( $integrations ) : ?>
|
562 |
-
<strong><?php _e( 'Extra Columns for:', 'codepress-admin-columns' ); ?></strong>
|
563 |
-
<ul>
|
564 |
-
<?php foreach ( $integrations as $integration ) : ?>
|
565 |
-
<li class="acp-integration">
|
566 |
-
<a href="<?php echo esc_url( $integration->get_link() ); ?>" target="_blank">
|
567 |
-
<strong><?php echo $integration->get_title(); ?></strong>
|
568 |
-
</a>
|
569 |
-
</li>
|
570 |
-
<?php endforeach; ?>
|
571 |
-
</ul>
|
572 |
-
<?php endif; ?>
|
573 |
-
|
574 |
-
<p class="center">
|
575 |
-
<?php echo ac_helper()->html->link( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'banner' ), sprintf( __( 'Prices starting from %s', 'codepress-admin-columns' ), '$' . $this->get_lowest_pro_price() ), array( 'class' => 'ac-pro-prices' ) ); ?>
|
576 |
-
</p>
|
577 |
-
<p class="center nopadding">
|
578 |
-
<?php if ( ! $active_promotion ) : ?>
|
579 |
-
<a target="_blank" href="<?php echo esc_url( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'banner' ) ); ?>" class="more">
|
580 |
-
<?php _e( 'Learn more about Pro', 'codepress-admin-columns' ); ?>
|
581 |
-
</a>
|
582 |
-
<?php endif; ?>
|
583 |
-
</p>
|
584 |
-
</div>
|
585 |
-
</div>
|
586 |
-
|
587 |
-
<?php if ( $active_promotion ) : ?>
|
588 |
-
|
589 |
-
<div class="padding-box ac-pro-deal">
|
590 |
-
<?php $active_promotion->display(); ?>
|
591 |
-
</div>
|
592 |
-
|
593 |
-
<?php else : ?>
|
594 |
-
|
595 |
-
<div class="padding-box ac-pro-newsletter">
|
596 |
-
<h3>
|
597 |
-
<?php echo esc_html( sprintf( __( 'Get %s Off!', 'codepress-admin-columns' ), $this->get_discount_percentage() . '%' ) ); ?>
|
598 |
-
</h3>
|
599 |
-
<div class="inside">
|
600 |
-
<p>
|
601 |
-
<?php echo esc_html( sprintf( __( "Submit your email and we'll send you a discount for %s off.", 'codepress-admin-columns' ), $this->get_discount_percentage() . '%' ) ); ?>
|
602 |
-
</p>
|
603 |
-
<?php
|
604 |
-
$user_data = get_userdata( get_current_user_id() );
|
605 |
-
?>
|
606 |
-
<form method="post" action="<?php echo esc_url( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'send-coupon' ) ); ?>" target="_blank">
|
607 |
-
<input name="action" type="hidden" value="mc_upgrade_pro">
|
608 |
-
<input name="EMAIL" placeholder="<?php esc_attr_e( "Your Email", 'codepress-admin-columns' ); ?>" value="<?php echo esc_attr( $user_data->user_email ); ?>" required>
|
609 |
-
<input name="FNAME" placeholder="<?php esc_attr_e( "Your First Name", 'codepress-admin-columns' ); ?>" required>
|
610 |
-
<input type="submit" value="<?php esc_attr_e( "Send me the discount", 'codepress-admin-columns' ); ?>" class="acp-button">
|
611 |
-
</form>
|
612 |
-
</div>
|
613 |
-
</div>
|
614 |
-
|
615 |
-
<?php endif; ?>
|
616 |
-
|
617 |
-
</div>
|
618 |
-
|
619 |
-
<div class="sidebox" id="direct-feedback">
|
620 |
-
<div id="feedback-choice">
|
621 |
-
<h3><?php _e( 'Are you happy with Admin Columns?', 'codepress-admin-columns' ); ?></h3>
|
622 |
-
|
623 |
-
<div class="inside">
|
624 |
-
<a href="#" class="yes"><?php _e( 'Yes' ); ?></a>
|
625 |
-
<a href="#" class="no"><?php _e( 'No' ); ?></a>
|
626 |
-
</div>
|
627 |
-
</div>
|
628 |
-
<div id="feedback-support">
|
629 |
-
<div class="inside">
|
630 |
-
<p>
|
631 |
-
<?php _e( "What's wrong? Need help? Let us know!", 'codepress-admin-columns' ); ?>
|
632 |
-
</p>
|
633 |
-
<p>
|
634 |
-
<?php _e( 'Check out our extensive documentation, or you can open a support topic on WordPress.org!', 'codepress-admin-columns' ); ?>
|
635 |
-
</p>
|
636 |
-
<ul class="share">
|
637 |
-
<li>
|
638 |
-
<a href="<?php echo esc_url( ac_get_site_utm_url( 'documentation', 'feedback-docs-button' ) ); ?>" target="_blank">
|
639 |
-
<div class="dashicons dashicons-editor-help"></div> <?php _e( 'Docs', 'codepress-admin-columns' ); ?>
|
640 |
-
</a>
|
641 |
-
</li>
|
642 |
-
<li>
|
643 |
-
<a href="https://wordpress.org/support/plugin/codepress-admin-columns" target="_blank">
|
644 |
-
<div class="dashicons dashicons-wordpress"></div> <?php _e( 'Forums', 'codepress-admin-columns' ); ?>
|
645 |
-
</a>
|
646 |
-
</li>
|
647 |
-
</ul>
|
648 |
-
<div class="clear"></div>
|
649 |
-
</div>
|
650 |
-
</div>
|
651 |
-
<div id="feedback-rate">
|
652 |
-
<div class="inside">
|
653 |
-
<p>
|
654 |
-
<?php _e( "Woohoo! We're glad to hear that!", 'codepress-admin-columns' ); ?>
|
655 |
-
</p>
|
656 |
-
<p>
|
657 |
-
<?php _e( 'We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!', 'codepress-admin-columns' ); ?>
|
658 |
-
</p>
|
659 |
-
<ul class="share">
|
660 |
-
<li>
|
661 |
-
<a href="http://wordpress.org/support/view/plugin-reviews/codepress-admin-columns#postform" target="_blank">
|
662 |
-
<div class="dashicons dashicons-star-empty"></div> <?php _e( 'Rate', 'codepress-admin-columns' ); ?>
|
663 |
-
</a>
|
664 |
-
</li>
|
665 |
-
|
666 |
-
<li>
|
667 |
-
<a href="<?php echo esc_url( add_query_arg( array( 'hashtags' => 'admincolumns', 'text' => urlencode( __( "I'm using Admin Columns for WordPress!", 'codepress-admin-columns' ) ), 'url' => urlencode( 'http://wordpress.org/plugins/codepress-admin-columns/' ), 'via' => ac_get_twitter_handle() ), 'https://twitter.com/intent/tweet' ) ); ?>" target="_blank">
|
668 |
-
<div class="dashicons dashicons-twitter"></div> <?php _e( 'Tweet', 'codepress-admin-columns' ); ?>
|
669 |
-
</a>
|
670 |
-
</li>
|
671 |
-
|
672 |
-
<li>
|
673 |
-
<a href="<?php echo esc_url( ac_get_site_utm_url( 'upgrade-to-admin-columns-pro', 'feedback-purchase-button' ) ); ?>" target="_blank">
|
674 |
-
<div class="dashicons dashicons-cart"></div> <?php _e( 'Buy Pro', 'codepress-admin-columns' ); ?>
|
675 |
-
</a>
|
676 |
-
</li>
|
677 |
-
</ul>
|
678 |
-
<div class="clear"></div>
|
679 |
-
</div>
|
680 |
-
</div>
|
681 |
-
</div>
|
682 |
-
|
683 |
-
<?php endif; ?>
|
684 |
-
|
685 |
-
<div class="sidebox" id="plugin-support">
|
686 |
-
<h3><?php _e( 'Support', 'codepress-admin-columns' ); ?></h3>
|
687 |
-
|
688 |
-
<div class="inside">
|
689 |
-
<?php if ( version_compare( get_bloginfo( 'version' ), '3.2', '>' ) ) : ?>
|
690 |
-
<p>
|
691 |
-
<?php _e( "Check the <strong>Help</strong> section in the top-right screen.", 'codepress-admin-columns' ); ?>
|
692 |
-
</p>
|
693 |
-
<?php endif; ?>
|
694 |
-
<p>
|
695 |
-
<?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' ) ); ?>
|
696 |
-
</p>
|
697 |
-
</div>
|
698 |
-
</div><!--plugin-support-->
|
699 |
|
700 |
</div><!--.ac-right-inner-->
|
701 |
</div><!--.ac-right-->
|
702 |
|
703 |
<div class="ac-left">
|
704 |
-
<?php
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
<div class="ac-boxes<?php echo esc_attr( $list_screen->is_read_only() ? ' disabled' : '' ); ?>">
|
721 |
-
|
722 |
-
<div class="ac-columns">
|
723 |
-
<form method="post" action="<?php echo esc_attr( $this->get_link() ); ?>">
|
724 |
-
|
725 |
-
<input type="hidden" name="list_screen" value="<?php echo esc_attr( $list_screen->get_key() ); ?>"/>
|
726 |
-
<input type="hidden" name="cpac_action" value="update_by_type"/>
|
727 |
-
|
728 |
-
<?php $this->nonce_field( 'update-type' ); ?>
|
729 |
-
|
730 |
-
<?php
|
731 |
-
|
732 |
-
/**
|
733 |
-
* Columns
|
734 |
-
*/
|
735 |
-
foreach ( $list_screen->get_columns() as $column ) {
|
736 |
-
$this->display_column( $column );
|
737 |
-
}
|
738 |
-
?>
|
739 |
-
</form>
|
740 |
-
|
741 |
-
</div>
|
742 |
-
|
743 |
-
<div class="column-footer">
|
744 |
-
<?php if ( ! $list_screen->is_read_only() ) : ?>
|
745 |
-
<div class="button-container">
|
746 |
-
<?php
|
747 |
-
|
748 |
-
/**
|
749 |
-
* Display a clear button below the column settings. The clear button removes all column settings from the current page.
|
750 |
-
* @since 3.0
|
751 |
-
*
|
752 |
-
* @param bool
|
753 |
-
*/
|
754 |
-
if ( apply_filters( 'ac/enable_clear_columns_button', false ) ) :
|
755 |
-
?>
|
756 |
-
<a class="clear-columns" data-clear-columns><?php _e( 'Clear all columns ', 'codepress-admin-columns' ) ?></a>
|
757 |
-
<?php endif; ?>
|
758 |
-
|
759 |
-
<span class="spinner"></span>
|
760 |
-
<a class="button-primary submit update"><?php _e( 'Update' ); ?></a>
|
761 |
-
<a class="button-primary submit save"><?php _e( 'Save' ); ?></a>
|
762 |
-
<a class="add_column button">+ <?php _e( 'Add Column', 'codepress-admin-columns' ); ?></a>
|
763 |
-
</div>
|
764 |
-
<?php endif; ?>
|
765 |
-
</div>
|
766 |
-
|
767 |
-
</div><!--.ac-boxes-->
|
768 |
-
|
769 |
-
<?php do_action( 'ac/settings/after_columns', $list_screen ); ?>
|
770 |
|
771 |
</div><!--.ac-left-->
|
772 |
<div class="clear"></div>
|
@@ -781,24 +382,28 @@ class Columns extends Page {
|
|
781 |
<div class="clear"></div>
|
782 |
|
783 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
}
|
785 |
|
786 |
/**
|
787 |
-
* @param
|
788 |
-
* @param bool
|
789 |
*
|
790 |
* @return Column|false
|
791 |
*/
|
792 |
-
private function get_column_template_by_group(
|
793 |
-
$types = $list_screen->get_column_types();
|
794 |
-
|
795 |
if ( ! $group ) {
|
796 |
-
return array_shift( $
|
797 |
}
|
798 |
|
799 |
$columns = array();
|
800 |
|
801 |
-
foreach ( $
|
802 |
if ( $group === $column_type->get_group() ) {
|
803 |
$columns[ $column_type->get_label() ] = $column_type;
|
804 |
}
|
@@ -816,151 +421,31 @@ class Columns extends Page {
|
|
816 |
}
|
817 |
|
818 |
/**
|
819 |
-
* Get first custom group column
|
820 |
-
*
|
821 |
* @param ListScreen $list_screen
|
822 |
*/
|
823 |
private function display_column_template( ListScreen $list_screen ) {
|
824 |
-
$column = $this->get_column_template_by_group( $list_screen, 'custom' );
|
825 |
|
826 |
if ( ! $column ) {
|
827 |
-
$column = $this->get_column_template_by_group( $list_screen );
|
828 |
}
|
829 |
|
830 |
-
$
|
|
|
|
|
|
|
|
|
831 |
}
|
832 |
|
833 |
/**
|
834 |
-
* @
|
835 |
-
*
|
836 |
-
* @param Column $column
|
837 |
*/
|
838 |
-
public function
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
<div class="ac-column-header">
|
846 |
-
<table class="widefat">
|
847 |
-
<tbody>
|
848 |
-
<tr>
|
849 |
-
<td class="column_sort">
|
850 |
-
<span class="cpacicon-move"></span>
|
851 |
-
</td>
|
852 |
-
<td class="column_label">
|
853 |
-
<div class="inner">
|
854 |
-
<div class="meta">
|
855 |
-
<?php
|
856 |
-
|
857 |
-
foreach ( $column->get_settings() as $setting ) {
|
858 |
-
if ( $setting instanceof Settings\Header ) {
|
859 |
-
echo $setting->render_header();
|
860 |
-
}
|
861 |
-
}
|
862 |
-
|
863 |
-
/**
|
864 |
-
* Fires in the meta-element for column options, which is displayed right after the column label
|
865 |
-
* @since 2.0
|
866 |
-
*
|
867 |
-
* @param Column $column_instance Column class instance
|
868 |
-
*/
|
869 |
-
do_action( 'ac/column/header', $column );
|
870 |
-
|
871 |
-
?>
|
872 |
-
</div>
|
873 |
-
<a class="toggle" data-toggle="column">
|
874 |
-
<?php echo $column->get_setting( 'label' )->get_value(); // do not escape ?>
|
875 |
-
</a>
|
876 |
-
<a class="edit-button" data-toggle="column"><?php _e( 'Edit', 'codepress-admin-columns' ); ?></a>
|
877 |
-
<a class="close-button" data-toggle="column"><?php _e( 'Close', 'codepress-admin-columns' ); ?></a>
|
878 |
-
<?php if ( ! $column->is_original() ) : ?>
|
879 |
-
<a class="clone-button" href="#"><?php _e( 'Clone', 'codepress-admin-columns' ); ?></a>
|
880 |
-
<?php endif; ?>
|
881 |
-
<a class="remove-button"><?php _e( 'Remove', 'codepress-admin-columns' ); ?></a>
|
882 |
-
</div>
|
883 |
-
</td>
|
884 |
-
<td class="column_type">
|
885 |
-
<div class="inner" data-toggle="column">
|
886 |
-
<?php echo ac_helper()->html->strip_attributes( $column->get_label(), array( 'style', 'class' ) ); ?>
|
887 |
-
</div>
|
888 |
-
</td>
|
889 |
-
<td class="column_edit" data-toggle="column">
|
890 |
-
</td>
|
891 |
-
</tr>
|
892 |
-
</tbody>
|
893 |
-
</table>
|
894 |
-
</div>
|
895 |
-
|
896 |
-
<div class="ac-column-body">
|
897 |
-
<div class="ac-column-settings">
|
898 |
-
|
899 |
-
<?php
|
900 |
-
|
901 |
-
foreach ( $column->get_settings() as $setting ) {
|
902 |
-
echo $setting->render() . "\n";
|
903 |
-
}
|
904 |
-
|
905 |
-
?>
|
906 |
-
|
907 |
-
<table class="ac-column-setting ac-column-setting-actions">
|
908 |
-
<tr>
|
909 |
-
<td class="col-label"></td>
|
910 |
-
<td class="col-settings">
|
911 |
-
<p>
|
912 |
-
<a href="#" class="close-button" data-toggle="column"><?php _e( 'Close', 'codepress-admin-columns' ); ?></a>
|
913 |
-
<?php if ( ! $column->is_original() ) : ?>
|
914 |
-
<a class="clone-button" href="#"><?php _e( 'Clone', 'codepress-admin-columns' ); ?></a>
|
915 |
-
<?php endif; ?>
|
916 |
-
<a href="#" class="remove-button"><?php _e( 'Remove' ); ?></a>
|
917 |
-
</p>
|
918 |
-
</td>
|
919 |
-
</tr>
|
920 |
-
|
921 |
-
</table>
|
922 |
-
</div>
|
923 |
-
</div>
|
924 |
-
</div>
|
925 |
-
<?php
|
926 |
}
|
927 |
|
928 |
-
public function display_modal() {
|
929 |
-
if ( ! $this->is_current_screen() ) {
|
930 |
-
return;
|
931 |
-
}
|
932 |
-
|
933 |
-
?>
|
934 |
-
<div class="ac-modal -pro" id="ac-modal-pro">
|
935 |
-
<div class="ac-modal__dialog -mascot">
|
936 |
-
<div class="ac-modal__dialog__header">
|
937 |
-
<?php _e( 'Do you like Admin Columns?', 'codepress-admin-columns' ); ?>
|
938 |
-
<button class="ac-modal__dialog__close" data-dismiss="modal">
|
939 |
-
<span class="dashicons dashicons-no"></span>
|
940 |
-
</button>
|
941 |
-
</div>
|
942 |
-
<div class="ac-modal__dialog__content">
|
943 |
-
<p class="ac-modal__dialog__content__lead">
|
944 |
-
<?php _e( 'Upgrade to PRO, and take Admin Columns to the next level:', 'codepress-admin-columns' ); ?>
|
945 |
-
</p>
|
946 |
-
<ul class="ac-modal__dialog__list">
|
947 |
-
<li><?php _e( 'Sort & Filter on all your content', 'codepress-admin-columns' ); ?></li>
|
948 |
-
<li><?php _e( 'Directly edit your content from the overview', 'codepress-admin-columns' ); ?></li>
|
949 |
-
<li><?php _e( 'Export all column data to CSV', 'codepress-admin-columns' ); ?></li>
|
950 |
-
<li><?php _e( 'Create multiple column groups per overview', 'codepress-admin-columns' ); ?></li>
|
951 |
-
<li><?php _e( 'Get add-ons for ACF, WooCommerce and many more', 'codepress-admin-columns' ); ?></li>
|
952 |
-
</ul>
|
953 |
-
</div>
|
954 |
-
<div class="ac-modal__dialog__footer">
|
955 |
-
<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>
|
956 |
-
<span class="ac-modal__dialog__footer__content"><?php echo sprintf( __( 'Only %s for 1 site', 'codepress-admin-columns' ), '$' . $this->get_lowest_pro_price() ); ?></span>
|
957 |
-
<svg class="ac-modal__dialog__mascot">
|
958 |
-
<use xlink:href="<?php echo esc_url( AC()->get_url() ); ?>/assets/images/symbols.svg#zebra-thumbs-up"/>
|
959 |
-
</svg>
|
960 |
-
</div>
|
961 |
-
</div>
|
962 |
-
</div>
|
963 |
-
|
964 |
-
<?php
|
965 |
-
}
|
966 |
}
|
3 |
namespace AC\Admin\Page;
|
4 |
|
5 |
use AC\Admin;
|
6 |
+
use AC\Ajax;
|
|
|
|
|
7 |
use AC\Capabilities;
|
8 |
use AC\Column;
|
|
|
9 |
use AC\ListScreen;
|
10 |
use AC\ListScreenFactory;
|
11 |
use AC\ListScreenGroups;
|
12 |
+
use AC\Message\Notice;
|
13 |
use AC\Preferences;
|
14 |
+
use AC\Registrable;
|
15 |
+
use AC\Request;
|
16 |
+
use AC\View;
|
17 |
|
18 |
+
class Columns extends Admin\Page
|
19 |
+
implements Admin\Helpable, Registrable {
|
20 |
|
21 |
+
const NAME = 'columns';
|
|
|
|
|
|
|
22 |
|
23 |
/**
|
24 |
+
* @var array
|
25 |
*/
|
26 |
+
private $notices = array();
|
27 |
|
28 |
public function __construct() {
|
29 |
+
parent::__construct( self::NAME, __( 'Admin Columns', 'codepress-admin-columns' ) );
|
|
|
|
|
30 |
}
|
31 |
|
32 |
+
public function register_ajax() {
|
33 |
+
$this->get_ajax_handler()->register();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
|
36 |
+
public function register() {
|
37 |
+
$this->maybe_show_notice();
|
38 |
+
$this->handle_request();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
41 |
}
|
42 |
|
43 |
+
private function maybe_show_notice() {
|
44 |
+
$list_screen = $this->get_list_screen();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
+
if ( ! $list_screen->get_stored_default_headings() && ! $list_screen->is_read_only() ) {
|
47 |
+
$notice = new Notice( sprintf( __( 'Please visit the %s screen once to load all available columns', 'codepress-admin-columns' ), ac_helper()->html->link( $list_screen->get_screen_link(), $list_screen->get_label() ) ) );
|
48 |
+
$notice
|
49 |
+
->set_type( Notice::WARNING )
|
50 |
+
->register();
|
51 |
}
|
52 |
|
53 |
+
if ( $list_screen->is_read_only() ) {
|
54 |
+
$notice = new Notice( $this->get_read_only_message( $list_screen ) );
|
55 |
+
$notice
|
56 |
+
->set_type( Notice::INFO )
|
57 |
+
->register();
|
58 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
}
|
60 |
|
61 |
/**
|
62 |
+
* @param string $action
|
63 |
+
*
|
64 |
+
* @return bool
|
65 |
*/
|
66 |
+
private function verify_nonce( $action ) {
|
67 |
+
return wp_verify_nonce( filter_input( INPUT_POST, '_ac_nonce' ), $action );
|
68 |
}
|
69 |
|
70 |
+
private function handle_request() {
|
71 |
+
if ( ! current_user_can( Capabilities::MANAGE ) ) {
|
|
|
|
|
|
|
72 |
return;
|
73 |
}
|
74 |
|
75 |
+
switch ( filter_input( INPUT_POST, 'action' ) ) {
|
|
|
76 |
|
77 |
case 'restore_by_type' :
|
78 |
if ( $this->verify_nonce( 'restore-type' ) ) {
|
80 |
$list_screen = ListScreenFactory::create( filter_input( INPUT_POST, 'list_screen' ), filter_input( INPUT_POST, 'layout' ) );
|
81 |
$list_screen->delete();
|
82 |
|
83 |
+
$notice = new Notice( sprintf( __( 'Settings for %s restored successfully.', 'codepress-admin-columns' ), "<strong>" . esc_html( $this->get_list_screen_message_label( $list_screen ) ) . "</strong>" ) );
|
84 |
+
$notice->register();
|
85 |
}
|
86 |
break;
|
87 |
}
|
89 |
do_action( 'ac/settings/handle_request', $this );
|
90 |
}
|
91 |
|
92 |
+
private function preferences() {
|
93 |
+
return new Preferences\Site( 'settings' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
|
96 |
/**
|
97 |
+
* Admin scripts
|
|
|
|
|
98 |
*/
|
99 |
+
public function admin_scripts() {
|
100 |
+
$list_screen = $this->get_list_screen();
|
101 |
|
102 |
+
wp_enqueue_style( 'jquery-ui-lightness', AC()->get_url() . 'assets/ui-theme/jquery-ui-1.8.18.custom.css', array(), AC()->get_version() );
|
103 |
+
wp_enqueue_script( 'jquery-ui-slider' );
|
104 |
|
105 |
+
wp_enqueue_script( 'ac-admin-page-columns', AC()->get_url() . "assets/js/admin-page-columns.js", array(
|
106 |
+
'jquery',
|
107 |
+
'dashboard',
|
108 |
+
'jquery-ui-slider',
|
109 |
+
'jquery-ui-sortable',
|
110 |
+
'wp-pointer',
|
111 |
+
), AC()->get_version() );
|
112 |
|
113 |
+
wp_enqueue_style( 'ac-admin-page-columns-css', AC()->get_url() . 'assets/css/admin-page-columns.css', array(), AC()->get_version() );
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
+
$ajax_handler = $this->get_ajax_handler();
|
|
|
|
|
116 |
|
117 |
+
$ajax_handler->set_param( 'list_screen', $list_screen->get_key() )
|
118 |
+
->set_param( 'layout', $list_screen->get_layout_id() )
|
119 |
+
->set_param( 'original_columns', $list_screen->get_original_columns() );
|
120 |
|
121 |
+
$params = $ajax_handler->get_params();
|
|
|
|
|
122 |
|
123 |
+
$params['i18n'] = array(
|
124 |
+
'clone' => __( '%s column is already present and can not be duplicated.', 'codepress-admin-columns' ),
|
125 |
+
'error' => __( 'Invalid response.', 'codepress-admin-columns' ),
|
126 |
+
);
|
127 |
|
128 |
+
wp_localize_script( 'ac-admin-page-columns', 'AC', $params );
|
|
|
129 |
|
130 |
+
do_action( 'ac/settings/scripts' );
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
}
|
132 |
|
133 |
/**
|
134 |
+
* @return Ajax\Handler
|
|
|
135 |
*/
|
136 |
+
private function get_ajax_handler() {
|
137 |
+
$handler = new Ajax\Handler();
|
138 |
+
$handler
|
139 |
+
->set_action( 'ac-columns' )
|
140 |
+
->set_callback( array( $this, 'handle_ajax_request' ) );
|
141 |
|
142 |
+
return $handler;
|
143 |
+
}
|
144 |
|
145 |
+
public function handle_ajax_request() {
|
146 |
+
$this->get_ajax_handler()->verify_request();
|
|
|
|
|
|
|
|
|
147 |
|
148 |
+
$request = new Request();
|
149 |
|
150 |
+
$requests = array(
|
151 |
+
new Admin\Request\Column\Save(),
|
152 |
+
new Admin\Request\Column\Refresh(),
|
153 |
+
new Admin\Request\Column\Select(),
|
154 |
+
);
|
|
|
|
|
|
|
|
|
155 |
|
156 |
+
foreach ( $requests as $handler ) {
|
157 |
+
if ( $handler->get_id() === $request->get( 'id' ) ) {
|
158 |
+
$handler->request( $request );
|
159 |
+
}
|
|
|
|
|
160 |
}
|
|
|
|
|
161 |
}
|
162 |
|
163 |
+
public function get_list_screen() {
|
164 |
+
// User selected
|
165 |
+
$list_screen = ListScreenFactory::create( filter_input( INPUT_GET, 'list_screen' ) );
|
|
|
|
|
166 |
|
167 |
+
// Preference
|
168 |
+
$preference = ListScreenFactory::create( $this->preferences()->get( 'list_screen' ) );
|
169 |
|
170 |
+
if ( ! $list_screen ) {
|
171 |
+
$list_screen = $preference;
|
172 |
}
|
173 |
|
174 |
+
// First one
|
175 |
+
if ( ! $list_screen ) {
|
176 |
+
$list_screen = ListScreenFactory::create( key( AC()->get_list_screens() ) );
|
177 |
+
}
|
178 |
|
179 |
+
// Load table headers
|
180 |
+
if ( ! $list_screen->get_original_columns() ) {
|
181 |
+
$list_screen->set_original_columns( $list_screen->get_default_column_headers() );
|
182 |
+
}
|
183 |
|
184 |
+
if ( $preference !== $list_screen->get_key() ) {
|
185 |
+
$this->preferences()->set( 'list_screen', $list_screen->get_key() );
|
186 |
}
|
187 |
|
188 |
+
do_action( 'ac/settings/list_screen', $list_screen );
|
189 |
+
|
190 |
+
return $list_screen;
|
191 |
}
|
192 |
|
193 |
/**
|
194 |
+
* @param ListScreen $list_screen
|
195 |
+
*
|
196 |
+
* @return string $label
|
197 |
*/
|
198 |
+
private function get_list_screen_message_label( ListScreen $list_screen ) {
|
199 |
+
return apply_filters( 'ac/settings/list_screen_message_label', $list_screen->get_label(), $list_screen );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
}
|
201 |
|
202 |
+
/**
|
203 |
+
* @param string $message Message body
|
204 |
+
* @param string $type Updated or error
|
205 |
+
*/
|
206 |
+
public function notice( $message, $type = 'updated' ) {
|
207 |
+
$this->notices[] = '<div class="ac-message inline ' . esc_attr( $type ) . '"><p>' . $message . '</p></div>';
|
208 |
}
|
209 |
|
210 |
public function sort_by_label( $a, $b ) {
|
244 |
return $grouped;
|
245 |
}
|
246 |
|
|
|
|
|
|
|
|
|
247 |
/**
|
248 |
* @param $label
|
249 |
* @param string $mainlabel
|
258 |
return $label;
|
259 |
}
|
260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
/**
|
262 |
* @param ListScreen $list_screen
|
263 |
*
|
269 |
return apply_filters( 'ac/read_only_message', $message, $list_screen );
|
270 |
}
|
271 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
/**
|
273 |
* Display
|
274 |
*/
|
275 |
+
public function render() {
|
|
|
276 |
|
277 |
+
$list_screen = $this->get_list_screen();
|
278 |
?>
|
279 |
|
280 |
<div class="ac-admin<?php echo $list_screen->get_settings() ? ' stored' : ''; ?>" data-type="<?php echo esc_attr( $list_screen->get_key() ); ?>">
|
281 |
<div class="main">
|
282 |
+
|
283 |
+
<?php
|
284 |
+
$menu = new View( array(
|
285 |
+
'items' => $this->get_grouped_list_screens(),
|
286 |
+
'current' => $list_screen->get_key(),
|
287 |
+
'screen_link' => $list_screen->get_screen_link(),
|
288 |
+
) );
|
289 |
+
|
290 |
+
echo $menu->set_template( 'admin/edit-menu' );
|
291 |
+
|
292 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
|
294 |
<?php do_action( 'ac/settings/after_title', $list_screen ); ?>
|
295 |
|
299 |
<div class="ac-right-inner">
|
300 |
|
301 |
<?php if ( ! $list_screen->is_read_only() ) : ?>
|
302 |
+
|
303 |
+
<?php
|
304 |
+
|
305 |
+
$label_main = __( 'Store settings', 'codepress-admin-columns' );
|
306 |
+
$label_second = sprintf( '<span class="clear contenttype">%s</span>', esc_html( $list_screen->get_label() ) );
|
307 |
+
if ( 18 > strlen( $label_main ) && ( $truncated_label = $this->get_truncated_side_label( $list_screen->get_label(), $label_main ) ) ) {
|
308 |
+
$label_second = sprintf( '<span class="right contenttype">%s</span>', esc_html( $truncated_label ) );
|
309 |
+
}
|
310 |
+
|
311 |
+
$delete_confirmation_message = false;
|
312 |
+
|
313 |
+
if ( AC()->use_delete_confirmation() ) {
|
314 |
+
$delete_confirmation_message = sprintf( __( "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop", 'codepress-admin-columns' ), "'" . $this->get_list_screen_message_label( $list_screen ) . "'" );
|
315 |
+
}
|
316 |
+
|
317 |
+
$actions = new View( array(
|
318 |
+
'label_main' => $label_main,
|
319 |
+
'label_second' => $label_second,
|
320 |
+
'list_screen_key' => $list_screen->get_key(),
|
321 |
+
'list_screen_id' => $list_screen->get_layout_id(),
|
322 |
+
'delete_confirmation_message' => $delete_confirmation_message,
|
323 |
+
) );
|
324 |
+
|
325 |
+
echo $actions->set_template( 'admin/edit-actions' );
|
326 |
+
|
327 |
+
endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
<?php do_action( 'ac/settings/sidebox', $list_screen ); ?>
|
330 |
|
331 |
<?php if ( apply_filters( 'ac/show_banner', true ) ) : ?>
|
332 |
|
333 |
+
<?php
|
334 |
+
|
335 |
+
echo new Admin\Parts\Banner();
|
336 |
+
|
337 |
+
$feedback = new View();
|
338 |
+
|
339 |
+
echo $feedback->set_template( 'admin/side-feedback' );
|
340 |
+
|
341 |
+
endif; ?>
|
342 |
+
|
343 |
+
<?php
|
344 |
+
|
345 |
+
$support = new View();
|
346 |
+
|
347 |
+
echo $support->set_template( 'admin/side-support' );
|
348 |
+
|
349 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
|
351 |
</div><!--.ac-right-inner-->
|
352 |
</div><!--.ac-right-->
|
353 |
|
354 |
<div class="ac-left">
|
355 |
+
<?php
|
356 |
+
|
357 |
+
$columns = new View( array(
|
358 |
+
'notices' => $this->notices,
|
359 |
+
'class' => $list_screen->is_read_only() ? ' disabled' : '',
|
360 |
+
'list_screen' => $list_screen->get_key(),
|
361 |
+
'columns' => $list_screen->get_columns(),
|
362 |
+
'show_actions' => ! $list_screen->is_read_only(),
|
363 |
+
'show_clear_all' => apply_filters( 'ac/enable_clear_columns_button', false ),
|
364 |
+
) );
|
365 |
+
|
366 |
+
echo $columns->set_template( 'admin/edit-columns' );
|
367 |
+
|
368 |
+
do_action( 'ac/settings/after_columns', $list_screen );
|
369 |
+
|
370 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
|
372 |
</div><!--.ac-left-->
|
373 |
<div class="clear"></div>
|
382 |
<div class="clear"></div>
|
383 |
|
384 |
<?php
|
385 |
+
|
386 |
+
$modal = new View( array(
|
387 |
+
'price' => ac_get_lowest_price(),
|
388 |
+
) );
|
389 |
+
|
390 |
+
echo $modal->set_template( 'admin/modal-pro' );
|
391 |
}
|
392 |
|
393 |
/**
|
394 |
+
* @param array $column_types
|
395 |
+
* @param bool $group
|
396 |
*
|
397 |
* @return Column|false
|
398 |
*/
|
399 |
+
private function get_column_template_by_group( $column_types, $group = false ) {
|
|
|
|
|
400 |
if ( ! $group ) {
|
401 |
+
return array_shift( $column_types );
|
402 |
}
|
403 |
|
404 |
$columns = array();
|
405 |
|
406 |
+
foreach ( $column_types as $column_type ) {
|
407 |
if ( $group === $column_type->get_group() ) {
|
408 |
$columns[ $column_type->get_label() ] = $column_type;
|
409 |
}
|
421 |
}
|
422 |
|
423 |
/**
|
|
|
|
|
424 |
* @param ListScreen $list_screen
|
425 |
*/
|
426 |
private function display_column_template( ListScreen $list_screen ) {
|
427 |
+
$column = $this->get_column_template_by_group( $list_screen->get_column_types(), 'custom' );
|
428 |
|
429 |
if ( ! $column ) {
|
430 |
+
$column = $this->get_column_template_by_group( $list_screen->get_column_types() );
|
431 |
}
|
432 |
|
433 |
+
$view = new View( array(
|
434 |
+
'column' => $column,
|
435 |
+
) );
|
436 |
+
|
437 |
+
echo $view->set_template( 'admin/edit-column' );
|
438 |
}
|
439 |
|
440 |
/**
|
441 |
+
* @return Admin\HelpTab[]
|
|
|
|
|
442 |
*/
|
443 |
+
public function get_help_tabs() {
|
444 |
+
return array(
|
445 |
+
new Admin\HelpTab\Introduction(),
|
446 |
+
new Admin\HelpTab\Basics(),
|
447 |
+
new Admin\HelpTab\CustomField(),
|
448 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
}
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
}
|
classes/Admin/Page/Help.php
CHANGED
@@ -4,325 +4,149 @@ namespace AC\Admin\Page;
|
|
4 |
|
5 |
use AC;
|
6 |
use AC\Admin\Page;
|
|
|
|
|
7 |
|
8 |
-
class Help extends Page
|
|
|
9 |
|
10 |
-
const
|
11 |
|
12 |
-
|
|
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
->set_slug( 'help' )
|
17 |
-
->set_label_with_count();
|
18 |
-
}
|
19 |
-
|
20 |
-
/**
|
21 |
-
* Register Hooks
|
22 |
-
*/
|
23 |
-
public function register() {
|
24 |
-
add_action( 'admin_init', array( $this, 'init' ), 9 );
|
25 |
-
add_action( 'admin_init', array( $this, 'run_hooks_on_help_tab' ) );
|
26 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
27 |
-
}
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
public function show_in_menu() {
|
33 |
-
return $this->get_message_count() > 0;
|
34 |
-
}
|
35 |
|
36 |
-
/**
|
37 |
-
* @return $this
|
38 |
-
*/
|
39 |
-
private function set_label_with_count() {
|
40 |
$label = __( 'Help', 'codepress-admin-columns' );
|
41 |
|
42 |
-
if ( $
|
43 |
-
$label .= '<span class="ac-badge">' . $
|
44 |
}
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
return $this;
|
49 |
}
|
50 |
|
51 |
/**
|
52 |
-
*
|
53 |
*/
|
54 |
-
public function
|
55 |
-
|
56 |
-
return;
|
57 |
-
}
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
63 |
}
|
64 |
|
65 |
/**
|
66 |
-
*
|
67 |
*/
|
68 |
-
public function
|
69 |
-
|
70 |
-
return;
|
71 |
-
}
|
72 |
-
|
73 |
-
$this->run_hooks();
|
74 |
}
|
75 |
|
76 |
/**
|
77 |
* Admin scripts
|
78 |
*/
|
79 |
public function admin_scripts() {
|
80 |
-
|
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 |
-
|
85 |
-
private function update_message_count() {
|
86 |
-
$count = count( $this->get_messages( 'filter' ) ) + count( $this->get_messages( 'action' ) );
|
87 |
-
|
88 |
-
set_transient( self::TRANSIENT_COUNT_KEY, $count, WEEK_IN_SECONDS );
|
89 |
-
}
|
90 |
-
|
91 |
-
private function get_message_count() {
|
92 |
-
return get_transient( self::TRANSIENT_COUNT_KEY );
|
93 |
-
}
|
94 |
-
|
95 |
-
public function delete_message_count() {
|
96 |
-
delete_transient( self::TRANSIENT_COUNT_KEY );
|
97 |
}
|
98 |
|
99 |
/**
|
100 |
-
*
|
|
|
|
|
101 |
*/
|
102 |
-
|
103 |
-
|
104 |
-
$types = array( 'post', 'user', 'comment', 'link', 'media' );
|
105 |
-
$post_types = get_post_types();
|
106 |
-
|
107 |
-
$columns = array();
|
108 |
-
foreach ( AC()->get_list_screens() as $list_screen ) {
|
109 |
-
foreach ( $list_screen->get_column_types() as $column ) {
|
110 |
-
$columns[ $column->get_type() ] = $column->get_type();
|
111 |
-
}
|
112 |
-
}
|
113 |
-
|
114 |
-
// Filters
|
115 |
-
|
116 |
-
$this->deprecated_filter( 'cac/headings/label', '3.0', 'cac-columns-custom' );
|
117 |
-
$this->deprecated_filter( 'cac/column/meta/value', '3.0', 'cac-column-meta-value' );
|
118 |
-
$this->deprecated_filter( 'cac/column/meta/types', '3.0', 'cac-column-meta-types' );
|
119 |
-
$this->deprecated_filter( 'cac/settings/tabs', '3.0', 'cac-settings-tabs' );
|
120 |
-
$this->deprecated_filter( 'cac/editable/is_column_editable', '3.0', 'cac-editable-is_column_editable' );
|
121 |
-
$this->deprecated_filter( 'cac/editable/editables_data', '3.0', 'cac-editable-editables_data' );
|
122 |
-
$this->deprecated_filter( 'cac/editable/options', '3.0', 'cac-editable-editables_data' );
|
123 |
-
$this->deprecated_filter( 'cac/inline-edit/ajax-column-save/value', '3.0', 'cac-inline-edit-ajax-column-save-value' );
|
124 |
-
$this->deprecated_filter( 'cac/addon/filtering/options', '3.0', 'cac-addon-filtering-options' );
|
125 |
-
$this->deprecated_filter( 'cac/addon/filtering/dropdown_top_label', '3.0', 'cac-addon-filtering-dropdown_top_label' );
|
126 |
-
$this->deprecated_filter( 'cac/addon/filtering/taxonomy/terms_args', '3.0', 'cac-addon-filtering-taxonomy-terms_args' );
|
127 |
-
$this->deprecated_filter( 'cac/addon/filtering/dropdown_empty_option', '3.0', 'cac-addon-filtering-taxonomy-terms_args' );
|
128 |
-
$this->deprecated_filter( 'cac/column/actions/action_links', '3.0', 'cac-column_actions-action_links' );
|
129 |
-
$this->deprecated_filter( 'cac/acf/format_acf_value', '3.0', 'cac-acf-format_acf_value' );
|
130 |
-
$this->deprecated_filter( 'cac/addon/filtering/taxonomy/terms_args', '3.0' );
|
131 |
-
$this->deprecated_filter( 'cac/column/meta/use_text_input', '3.0' );
|
132 |
-
$this->deprecated_filter( 'cac/hide_renewal_notice', '3.0' );
|
133 |
-
|
134 |
-
$this->deprecated_filter( 'cac/columns/custom', '3.0', 'cac-columns-custom' );
|
135 |
-
foreach ( $types as $type ) {
|
136 |
-
$this->deprecated_filter( 'cac/columns/custom/type=' . $type, '3.0', 'cac-columns-custom' );
|
137 |
-
}
|
138 |
-
|
139 |
-
foreach ( $post_types as $post_type ) {
|
140 |
-
$this->deprecated_filter( 'cac/columns/custom/post_type=' . $post_type, '3.0', 'cac-columns-custom' );
|
141 |
-
}
|
142 |
-
|
143 |
-
$this->deprecated_filter( 'cac/column/value', '3.0', 'cac-column-value' );
|
144 |
-
foreach ( $types as $type ) {
|
145 |
-
$this->deprecated_filter( 'cac/column/value/' . $type, '3.0', 'cac-column-value' );
|
146 |
-
}
|
147 |
-
|
148 |
-
$this->deprecated_filter( 'cac/editable/column_value', '3.0', 'cac-editable-column_value' );
|
149 |
-
foreach ( $columns as $column_type ) {
|
150 |
-
$this->deprecated_filter( 'cac/editable/column_value/column=' . $column_type, '3.0', 'cac-editable-column_value' );
|
151 |
-
}
|
152 |
-
|
153 |
-
$this->deprecated_filter( 'cac/editable/column_save', '3.0', 'cac-editable-column_save' );
|
154 |
-
foreach ( $columns as $column_type ) {
|
155 |
-
$this->deprecated_filter( 'cac/editable/column_save/column=' . $column_type, '3.0', 'cac-editable-column_save' );
|
156 |
-
}
|
157 |
-
|
158 |
-
// Actions
|
159 |
-
$this->deprecated_action( 'cac/admin_head', '3.0', 'cac-admin_head' );
|
160 |
-
$this->deprecated_action( 'cac/loaded', '3.0', 'cac-loaded' );
|
161 |
-
$this->deprecated_action( 'cac/inline-edit/after_ajax_column_save', '3.0', 'cacinline-editafter_ajax_column_save' );
|
162 |
-
$this->deprecated_action( 'cac/settings/after_title', '3.0' );
|
163 |
-
$this->deprecated_action( 'cac/settings/form_actions', '3.0' );
|
164 |
-
$this->deprecated_action( 'cac/settings/sidebox', '3.0' );
|
165 |
-
$this->deprecated_action( 'cac/settings/form_columns', '3.0' );
|
166 |
-
$this->deprecated_action( 'cac/settings/after_columns', '3.0' );
|
167 |
-
$this->deprecated_action( 'cac/column/settings_meta', '3.0' );
|
168 |
-
$this->deprecated_action( 'cac/settings/general', '3.0' );
|
169 |
-
$this->deprecated_action( 'cpac_messages', '3.0' );
|
170 |
-
$this->deprecated_action( 'cac/settings/after_menu', '3.0' );
|
171 |
-
|
172 |
-
$this->update_message_count();
|
173 |
-
}
|
174 |
-
|
175 |
-
private function get_groups() {
|
176 |
-
$groups = array(
|
177 |
-
'filter' => __( 'Deprecated Filters', 'codepress-admin-columns' ),
|
178 |
-
'action' => __( 'Deprecated Actions', 'codepress-admin-columns' ),
|
179 |
-
);
|
180 |
-
|
181 |
-
return $groups;
|
182 |
}
|
183 |
|
184 |
/**
|
185 |
-
* @param
|
186 |
-
*
|
187 |
-
* @
|
188 |
*/
|
189 |
-
private function
|
190 |
-
if (
|
191 |
-
|
192 |
-
|
193 |
-
$page = '#filter-reference';
|
194 |
-
if ( $page_slug ) {
|
195 |
-
$page = 'filter-reference/' . $page_slug;
|
196 |
-
}
|
197 |
-
|
198 |
-
$this->add_deprecated_message( 'filter', $message, $hook, $page );
|
199 |
}
|
|
|
|
|
200 |
}
|
201 |
|
202 |
/**
|
203 |
-
* @
|
204 |
-
* @param string $version
|
205 |
-
* @param string|null $page_slug
|
206 |
*/
|
207 |
-
private function
|
208 |
-
|
209 |
-
$message = sprintf( __( 'The action %s used on this website is deprecated since %s.', 'codepress-admin-columns' ), '<code>' . $hook . '</code>', '<strong>' . $version . '</strong>' );
|
210 |
-
|
211 |
-
$page = '#action-reference';
|
212 |
-
if ( $page_slug ) {
|
213 |
-
$page = 'action-reference/' . $page_slug;
|
214 |
-
}
|
215 |
|
216 |
-
|
|
|
217 |
}
|
218 |
-
}
|
219 |
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
* @param string $hook
|
224 |
-
* @param null $page
|
225 |
-
*/
|
226 |
-
private function add_deprecated_message( $type, $message, $hook, $page = null ) {
|
227 |
-
if ( $callback_message = $this->get_callback_message( $hook ) ) {
|
228 |
-
$message .= ' ' . $callback_message;
|
229 |
-
}
|
230 |
-
if ( $page ) {
|
231 |
-
$message .= ' ' . $this->get_documention_link( $page );
|
232 |
-
}
|
233 |
|
234 |
-
|
235 |
-
|
236 |
|
237 |
-
|
238 |
-
* @param string $message
|
239 |
-
* @param string $type
|
240 |
-
*/
|
241 |
-
private function add_message( $message, $type = 'filter' ) {
|
242 |
-
$this->messages[ $type ][] = $message;
|
243 |
-
}
|
244 |
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
* @return array|false
|
249 |
-
*/
|
250 |
-
private function get_messages( $type = 'filter' ) {
|
251 |
-
if ( ! isset( $this->messages[ $type ] ) ) {
|
252 |
-
return array();
|
253 |
-
}
|
254 |
|
255 |
-
|
256 |
-
}
|
257 |
|
258 |
-
|
259 |
-
|
260 |
-
*
|
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' ) . ' »', array( 'target' => '_blank' ) );
|
265 |
}
|
266 |
|
267 |
/**
|
268 |
-
* @
|
269 |
-
*
|
270 |
-
* @return array|false
|
271 |
*/
|
272 |
-
private function
|
273 |
-
|
274 |
-
|
275 |
-
if ( ! isset( $wp_filter[ $hook ] ) ) {
|
276 |
-
return false;
|
277 |
-
}
|
278 |
|
279 |
-
if (
|
280 |
-
return
|
281 |
}
|
282 |
|
283 |
-
|
|
|
|
|
284 |
|
285 |
-
foreach ( $
|
286 |
-
|
287 |
|
288 |
-
|
289 |
-
if ( is_scalar( $cb['function'] ) ) {
|
290 |
-
$callbacks[] = $cb['function'];
|
291 |
-
}
|
292 |
|
293 |
-
|
294 |
-
|
295 |
-
$callbacks[] = get_class( $cb['function'][0] ) . '::' . $cb['function'][1];
|
296 |
-
}
|
297 |
}
|
298 |
-
}
|
299 |
|
300 |
-
|
301 |
-
return false;
|
302 |
-
}
|
303 |
|
304 |
-
|
305 |
-
}
|
306 |
-
|
307 |
-
/**
|
308 |
-
* @param string $hook Action or Filter
|
309 |
-
*
|
310 |
-
* @return string|false
|
311 |
-
*/
|
312 |
-
private function get_callback_message( $hook ) {
|
313 |
-
$callbacks = $this->get_callbacks( $hook );
|
314 |
-
|
315 |
-
if ( ! $callbacks ) {
|
316 |
-
return false;
|
317 |
}
|
|
|
318 |
|
319 |
-
|
|
|
|
|
|
|
|
|
|
|
320 |
}
|
321 |
|
322 |
-
|
323 |
-
* Render help page
|
324 |
-
*/
|
325 |
-
public function display() {
|
326 |
?>
|
327 |
<h2><?php _e( 'Help', 'codepress-admin-columns' ); ?></h2>
|
328 |
<p>
|
@@ -331,16 +155,10 @@ class Help extends Page {
|
|
331 |
<?php printf( __( 'This site is using some actions or filters that have changed. Please read %s to resolve them.', 'codepress-admin-columns' ), ac_helper()->html->link( ac_get_site_utm_url( 'documentation/faq/upgrading-from-v3-to-v4', 'help' ), __( 'our documentation', 'codepress-admin-columns' ) ) ); ?>
|
332 |
</p>
|
333 |
|
334 |
-
<?php
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
<div class="ac-deprecated-message">
|
339 |
-
<p><?php echo $message; ?></p>
|
340 |
-
</div>
|
341 |
-
<?php endforeach; ?>
|
342 |
-
<?php endif;
|
343 |
-
}
|
344 |
}
|
345 |
|
346 |
}
|
4 |
|
5 |
use AC;
|
6 |
use AC\Admin\Page;
|
7 |
+
use AC\Deprecated\Counter;
|
8 |
+
use AC\Deprecated\Hooks;
|
9 |
|
10 |
+
class Help extends Page
|
11 |
+
implements AC\Registrable {
|
12 |
|
13 |
+
const NAME = 'help';
|
14 |
|
15 |
+
/** @var Counter */
|
16 |
+
private $counter;
|
17 |
|
18 |
+
/** @var Hooks */
|
19 |
+
private $hooks;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
public function __construct() {
|
22 |
+
$this->counter = new Counter();
|
23 |
+
$this->hooks = new Hooks();
|
|
|
|
|
|
|
24 |
|
|
|
|
|
|
|
|
|
25 |
$label = __( 'Help', 'codepress-admin-columns' );
|
26 |
|
27 |
+
if ( $this->show_in_menu() ) {
|
28 |
+
$label .= '<span class="ac-badge">' . $this->counter->get() . '</span>';
|
29 |
}
|
30 |
|
31 |
+
parent::__construct( self::NAME, $label );
|
|
|
|
|
32 |
}
|
33 |
|
34 |
/**
|
35 |
+
* Register Hooks
|
36 |
*/
|
37 |
+
public function register() {
|
38 |
+
$this->update_count();
|
|
|
|
|
39 |
|
40 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
41 |
+
}
|
42 |
+
|
43 |
+
public function update_count() {
|
44 |
+
$this->counter->update( $this->hooks->get_deprecated_count() );
|
45 |
}
|
46 |
|
47 |
/**
|
48 |
+
* @return bool
|
49 |
*/
|
50 |
+
public function show_in_menu() {
|
51 |
+
return absint( $this->counter->get() ) > 0;
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
/**
|
55 |
* Admin scripts
|
56 |
*/
|
57 |
public function admin_scripts() {
|
58 |
+
wp_enqueue_style( 'ac-admin-page-help-css', AC()->get_url() . 'assets/css/admin-page-help.css', array(), AC()->get_version() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
}
|
60 |
|
61 |
/**
|
62 |
+
* @param string $page Website page slug
|
63 |
+
*
|
64 |
+
* @return false|string
|
65 |
*/
|
66 |
+
private function get_documention_link( $page ) {
|
67 |
+
return ac_helper()->html->link( ac_get_site_utm_url( 'documentation/' . $page, 'documentation' ), __( 'View documentation', 'codepress-admin-columns' ) . ' »', array( 'target' => '_blank' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
}
|
69 |
|
70 |
/**
|
71 |
+
* @param array $callbacks
|
72 |
+
*
|
73 |
+
* @return false|string
|
74 |
*/
|
75 |
+
private function get_callback_message( $callbacks ) {
|
76 |
+
if ( ! $callbacks ) {
|
77 |
+
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
+
|
80 |
+
return sprintf( _n( 'The callback used is %s.', 'The callbacks used are %s.', count( $callbacks ), 'codepress-admin-columns' ), '<code>' . implode( '</code>, <code>', $callbacks ) . '</code>' );
|
81 |
}
|
82 |
|
83 |
/**
|
84 |
+
* @return void
|
|
|
|
|
85 |
*/
|
86 |
+
private function render_actions() {
|
87 |
+
$hooks = $this->hooks->get_deprecated_actions();
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
+
if ( ! $hooks ) {
|
90 |
+
return;
|
91 |
}
|
|
|
92 |
|
93 |
+
?>
|
94 |
+
<h3><?php __( 'Deprecated Actions', 'codepress-admin-columns' ); ?></h3>
|
95 |
+
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
foreach ( $hooks as $hook ) {
|
98 |
+
$message = sprintf( __( 'The action %s used on this website is deprecated since %s.', 'codepress-admin-columns' ), '<code>' . $hook->get_name() . '</code>', '<strong>' . $hook->get_version() . '</strong>' );
|
99 |
|
100 |
+
$callbacks = $hook->get_callbacks();
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
+
if ( $callbacks ) {
|
103 |
+
$message .= ' ' . $this->get_callback_message( $callbacks );
|
104 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
+
$message .= ' ' . $this->get_documention_link( $hook->get_slug() ? 'action-reference/' . $hook->get_slug() : '#action-reference' );
|
|
|
107 |
|
108 |
+
$this->render_message( $message );
|
109 |
+
}
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
/**
|
113 |
+
* @return void
|
|
|
|
|
114 |
*/
|
115 |
+
private function render_filters() {
|
116 |
+
$hooks = $this->hooks->get_deprecated_filters();
|
|
|
|
|
|
|
|
|
117 |
|
118 |
+
if ( ! $hooks ) {
|
119 |
+
return;
|
120 |
}
|
121 |
|
122 |
+
?>
|
123 |
+
<h3><?php __( 'Deprecated Filters', 'codepress-admin-columns' ); ?></h3>
|
124 |
+
<?php
|
125 |
|
126 |
+
foreach ( $hooks as $hook ) {
|
127 |
+
$message = sprintf( __( 'The filter %s used on this website is deprecated since %s.', 'codepress-admin-columns' ), '<code>' . $hook->get_name() . '</code>', '<strong>' . $hook->get_version() . '</strong>' );
|
128 |
|
129 |
+
$callbacks = $hook->get_callbacks();
|
|
|
|
|
|
|
130 |
|
131 |
+
if ( $callbacks ) {
|
132 |
+
$message .= ' ' . $this->get_callback_message( $callbacks );
|
|
|
|
|
133 |
}
|
|
|
134 |
|
135 |
+
$message .= ' ' . $this->get_documention_link( $hook->get_slug() ? 'filter-reference/' . $hook->get_slug() : '#filter-reference' );
|
|
|
|
|
136 |
|
137 |
+
$this->render_message( $message );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
}
|
139 |
+
}
|
140 |
|
141 |
+
private function render_message( $message ) {
|
142 |
+
?>
|
143 |
+
<div class="ac-deprecated-message">
|
144 |
+
<p><?php echo $message; ?></p>
|
145 |
+
</div>
|
146 |
+
<?php
|
147 |
}
|
148 |
|
149 |
+
public function render() {
|
|
|
|
|
|
|
150 |
?>
|
151 |
<h2><?php _e( 'Help', 'codepress-admin-columns' ); ?></h2>
|
152 |
<p>
|
155 |
<?php printf( __( 'This site is using some actions or filters that have changed. Please read %s to resolve them.', 'codepress-admin-columns' ), ac_helper()->html->link( ac_get_site_utm_url( 'documentation/faq/upgrading-from-v3-to-v4', 'help' ), __( 'our documentation', 'codepress-admin-columns' ) ) ); ?>
|
156 |
</p>
|
157 |
|
158 |
+
<?php
|
159 |
+
|
160 |
+
$this->render_actions();
|
161 |
+
$this->render_filters();
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
}
|
163 |
|
164 |
}
|
classes/Admin/Page/Settings.php
CHANGED
@@ -2,247 +2,68 @@
|
|
2 |
|
3 |
namespace AC\Admin\Page;
|
4 |
|
|
|
5 |
use AC\Admin\Page;
|
6 |
-
use AC\
|
7 |
-
use AC\ListScreen;
|
8 |
-
use AC\Message;
|
9 |
|
10 |
-
class Settings extends Page
|
|
|
11 |
|
12 |
-
const
|
13 |
-
const SETTINGS_GROUP = 'cpac-general-settings';
|
14 |
-
|
15 |
-
public function __construct() {
|
16 |
-
$this
|
17 |
-
->set_slug( 'settings' )
|
18 |
-
->set_label( __( 'Settings', 'codepress-admin-columns' ) );
|
19 |
-
}
|
20 |
|
21 |
/**
|
22 |
-
*
|
23 |
*/
|
24 |
-
|
25 |
-
add_filter( 'option_page_capability_' . self::SETTINGS_GROUP, array( $this, 'set_capability' ) );
|
26 |
-
add_action( 'admin_init', array( $this, 'register_setting' ) );
|
27 |
-
add_action( 'admin_init', array( $this, 'handle_column_request' ) );
|
28 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
29 |
-
}
|
30 |
-
|
31 |
-
public function register_setting() {
|
32 |
-
register_setting( self::SETTINGS_GROUP, self::SETTINGS_NAME );
|
33 |
-
}
|
34 |
-
|
35 |
-
public function admin_scripts() {
|
36 |
-
if ( $this->is_current_screen() ) {
|
37 |
-
wp_enqueue_style( 'ac-admin-page-settings', AC()->get_url() . 'assets/css/admin-page-settings.css', array(), AC()->get_version() );
|
38 |
-
}
|
39 |
-
}
|
40 |
|
41 |
-
public function
|
42 |
-
|
43 |
-
}
|
44 |
-
|
45 |
-
/**
|
46 |
-
* @param string $key
|
47 |
-
*/
|
48 |
-
public function attr_name( $key ) {
|
49 |
-
echo esc_attr( self::SETTINGS_NAME . '[' . sanitize_key( $key ) . ']' );
|
50 |
-
}
|
51 |
-
|
52 |
-
private function get_options() {
|
53 |
-
return get_option( self::SETTINGS_NAME );
|
54 |
}
|
55 |
|
56 |
/**
|
57 |
-
* @param $
|
58 |
*
|
59 |
-
* @return
|
60 |
*/
|
61 |
-
public function
|
62 |
-
$
|
63 |
-
|
64 |
-
return isset( $options[ $key ] ) ? $options[ $key ] : false;
|
65 |
-
}
|
66 |
-
|
67 |
-
private function is_empty_options() {
|
68 |
-
return false === $this->get_options();
|
69 |
-
}
|
70 |
-
|
71 |
-
public function delete_options() {
|
72 |
-
delete_option( self::SETTINGS_NAME );
|
73 |
-
}
|
74 |
|
75 |
-
|
76 |
-
* @return bool
|
77 |
-
*/
|
78 |
-
public function show_edit_button() {
|
79 |
-
return $this->is_empty_options() || $this->get_option( 'show_edit_button' );
|
80 |
}
|
81 |
|
82 |
/**
|
83 |
-
*
|
84 |
*/
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
$sql = "
|
89 |
-
DELETE
|
90 |
-
FROM $wpdb->options
|
91 |
-
WHERE option_name LIKE %s";
|
92 |
-
|
93 |
-
$wpdb->query( $wpdb->prepare( $sql, ListScreen::OPTIONS_KEY . '%' ) );
|
94 |
-
|
95 |
-
// @since 3.0
|
96 |
-
do_action( 'ac/restore_all_columns' );
|
97 |
}
|
98 |
|
99 |
/**
|
100 |
-
*
|
101 |
*/
|
102 |
-
public function
|
103 |
-
|
104 |
-
return;
|
105 |
-
}
|
106 |
-
|
107 |
-
switch ( filter_input( INPUT_POST, 'ac_action' ) ) {
|
108 |
-
case 'restore_all' :
|
109 |
-
if ( $this->verify_nonce( 'restore-all' ) ) {
|
110 |
-
$this->delete_all_column_settings();
|
111 |
-
|
112 |
-
$notice = new Message\Notice( __( 'Default settings successfully restored.', 'codepress-admin-columns' ) );
|
113 |
-
$notice->register();
|
114 |
-
}
|
115 |
|
116 |
-
|
|
|
|
|
|
|
117 |
}
|
118 |
}
|
119 |
|
120 |
-
public function
|
121 |
-
|
122 |
-
'name' => '',
|
123 |
-
'label' => '',
|
124 |
-
'instructions' => '',
|
125 |
-
'default_value' => false,
|
126 |
-
);
|
127 |
-
|
128 |
-
$args = (object) wp_parse_args( $args, $defaults );
|
129 |
-
|
130 |
-
$current_value = $this->is_empty_options() ? $args->default_value : $this->get_option( $args->name );
|
131 |
-
?>
|
132 |
-
<p>
|
133 |
-
<label for="<?php echo $args->name; ?>">
|
134 |
-
<input name="<?php $this->attr_name( $args->name ); ?>" id="<?php echo $args->name; ?>" type="checkbox" value="1" <?php checked( $current_value, '1' ); ?>>
|
135 |
-
<?php echo $args->label; ?>
|
136 |
-
</label>
|
137 |
-
<?php if ( $args->instructions ) : ?>
|
138 |
-
<a class="ac-pointer instructions" rel="pointer-<?php echo $args->name; ?>" data-pos="right">
|
139 |
-
<?php _e( 'Instructions', 'codepress-admin-columns' ); ?>
|
140 |
-
</a>
|
141 |
-
<?php endif; ?>
|
142 |
-
</p>
|
143 |
-
<?php if ( $args->instructions ) : ?>
|
144 |
-
<div id="pointer-<?php echo $args->name; ?>" style="display:none;">
|
145 |
-
<h3><?php _e( 'Notice', 'codepress-admin-columns' ); ?></h3>
|
146 |
-
<?php echo $args->instructions; ?>
|
147 |
-
</div>
|
148 |
-
<?php
|
149 |
-
endif;
|
150 |
-
}
|
151 |
-
|
152 |
-
/**
|
153 |
-
* @param string $type
|
154 |
-
*
|
155 |
-
* @return string
|
156 |
-
*/
|
157 |
-
public function get_default_text( $type = 'on' ) {
|
158 |
-
$string = __( 'off', 'codepress-admin-columns' );
|
159 |
-
|
160 |
-
if ( 'on' === $type ) {
|
161 |
-
$string = __( 'on', 'codepress-admin-columns' );
|
162 |
-
}
|
163 |
-
|
164 |
-
return sprintf( __( "Default is %s.", 'codepress-admin-columns' ), '<code>' . $string . '</code>' );
|
165 |
}
|
166 |
|
167 |
-
public function
|
168 |
<table class="form-table ac-form-table settings">
|
169 |
<tbody>
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
<p><?php _e( 'Customize your Admin Columns settings.', 'codepress-admin-columns' ); ?></p>
|
174 |
-
</th>
|
175 |
-
<td>
|
176 |
-
<form method="post" action="options.php">
|
177 |
-
|
178 |
-
<?php settings_fields( self::SETTINGS_GROUP ); ?>
|
179 |
-
|
180 |
-
<?php
|
181 |
-
$this->single_checkbox( array(
|
182 |
-
'name' => 'show_edit_button',
|
183 |
-
'label' => sprintf( __( "Show %s button on table screen.", 'codepress-admin-columns' ), '"' . __( 'Edit columns', 'codepress-admin-columns' ) . '"' ) . ' ' . $this->get_default_text( 'on' ),
|
184 |
-
'default_value' => '1',
|
185 |
-
) );
|
186 |
-
?>
|
187 |
-
|
188 |
-
<?php do_action( 'ac/settings/general', $this ); ?>
|
189 |
-
|
190 |
-
<p>
|
191 |
-
<input type="submit" class="button" value="<?php _e( 'Save' ); ?>"/>
|
192 |
-
</p>
|
193 |
-
</form>
|
194 |
-
</td>
|
195 |
-
</tr>
|
196 |
-
|
197 |
-
<?php
|
198 |
-
|
199 |
-
/** Allow plugins to add their own custom settings to the settings page. */
|
200 |
-
if ( $groups = apply_filters( 'ac/settings/groups', array() ) ) {
|
201 |
-
|
202 |
-
foreach ( $groups as $id => $group ) {
|
203 |
-
|
204 |
-
$title = isset( $group['title'] ) ? $group['title'] : '';
|
205 |
-
$description = isset( $group['description'] ) ? $group['description'] : '';
|
206 |
-
$attr_id = isset( $group['id'] ) ? $group['id'] : '';
|
207 |
-
|
208 |
-
?>
|
209 |
-
|
210 |
-
<tr id="<?php echo esc_attr( $attr_id ); ?>">
|
211 |
-
<th scope="row">
|
212 |
-
<h2><?php echo esc_html( $title ); ?></h2>
|
213 |
-
<p><?php echo $description; ?></p>
|
214 |
-
</th>
|
215 |
-
<td>
|
216 |
-
<?php
|
217 |
-
|
218 |
-
/** Use this Hook to add additional fields to the group */
|
219 |
-
do_action( "ac/settings/group/" . $id );
|
220 |
-
|
221 |
-
?>
|
222 |
-
</td>
|
223 |
-
</tr>
|
224 |
-
|
225 |
-
<?php
|
226 |
-
}
|
227 |
}
|
228 |
?>
|
229 |
|
230 |
-
<tr class="restore">
|
231 |
-
<th scope="row">
|
232 |
-
<h2><?php _e( 'Restore Settings', 'codepress-admin-columns' ); ?></h2>
|
233 |
-
<p><?php _e( 'This will delete all column settings and restore the default settings.', 'codepress-admin-columns' ); ?></p>
|
234 |
-
</th>
|
235 |
-
<td>
|
236 |
-
<form method="post">
|
237 |
-
|
238 |
-
<?php $this->nonce_field( 'restore-all' ); ?>
|
239 |
-
|
240 |
-
<input type="hidden" name="ac_action" value="restore_all">
|
241 |
-
<input type="submit" class="button" name="ac-restore-defaults" value="<?php echo esc_attr( __( 'Restore default settings', 'codepress-admin-columns' ) ); ?>" onclick="return confirm('<?php echo esc_js( __( "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop", 'codepress-admin-columns' ) ); ?>');">
|
242 |
-
</form>
|
243 |
-
</td>
|
244 |
-
</tr>
|
245 |
-
|
246 |
</tbody>
|
247 |
</table>
|
248 |
|
2 |
|
3 |
namespace AC\Admin\Page;
|
4 |
|
5 |
+
use AC;
|
6 |
use AC\Admin\Page;
|
7 |
+
use AC\Admin\Section;
|
|
|
|
|
8 |
|
9 |
+
class Settings extends Page
|
10 |
+
implements AC\Registrable {
|
11 |
|
12 |
+
const NAME = 'settings';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
/**
|
15 |
+
* @var Section[]
|
16 |
*/
|
17 |
+
private $sections = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
+
public function __construct() {
|
20 |
+
parent::__construct( self::NAME, __( 'Settings', 'codepress-admin-columns' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
}
|
22 |
|
23 |
/**
|
24 |
+
* @param Section $section
|
25 |
*
|
26 |
+
* @return $this
|
27 |
*/
|
28 |
+
public function register_section( Section $section ) {
|
29 |
+
$this->sections[] = $section;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
+
return $this;
|
|
|
|
|
|
|
|
|
32 |
}
|
33 |
|
34 |
/**
|
35 |
+
* @return Section[]
|
36 |
*/
|
37 |
+
public function get_sections() {
|
38 |
+
return $this->sections;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
40 |
|
41 |
/**
|
42 |
+
* Register Hooks
|
43 |
*/
|
44 |
+
public function register() {
|
45 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
foreach ( $this->sections as $section ) {
|
48 |
+
if ( $section instanceof AC\Registrable ) {
|
49 |
+
$section->register();
|
50 |
+
}
|
51 |
}
|
52 |
}
|
53 |
|
54 |
+
public function admin_scripts() {
|
55 |
+
wp_enqueue_style( 'ac-admin-page-settings', AC()->get_url() . 'assets/css/admin-page-settings.css', array(), AC()->get_version() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
57 |
|
58 |
+
public function render() { ?>
|
59 |
<table class="form-table ac-form-table settings">
|
60 |
<tbody>
|
61 |
+
|
62 |
+
<?php foreach ( $this->sections as $section ) {
|
63 |
+
$section->render();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
}
|
65 |
?>
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
</tbody>
|
68 |
</table>
|
69 |
|
classes/Admin/Pages.php
DELETED
@@ -1,104 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace AC\Admin;
|
4 |
-
|
5 |
-
final class Pages {
|
6 |
-
|
7 |
-
/**
|
8 |
-
* @var Page[]
|
9 |
-
*/
|
10 |
-
private $pages;
|
11 |
-
|
12 |
-
/**
|
13 |
-
* Reference that points to default tab
|
14 |
-
* @var string
|
15 |
-
*/
|
16 |
-
private $default_slug;
|
17 |
-
|
18 |
-
public function __construct() {
|
19 |
-
$this->pages = array();
|
20 |
-
}
|
21 |
-
|
22 |
-
/**
|
23 |
-
* @param Page $page
|
24 |
-
*
|
25 |
-
* @return Pages
|
26 |
-
*/
|
27 |
-
public function register_page( Page $page ) {
|
28 |
-
$this->pages[ $page->get_slug() ] = $page;
|
29 |
-
|
30 |
-
if ( $page->is_default() ) {
|
31 |
-
$this->default_slug = $page->get_slug();
|
32 |
-
}
|
33 |
-
|
34 |
-
return $this;
|
35 |
-
}
|
36 |
-
|
37 |
-
/**
|
38 |
-
* @param $slug
|
39 |
-
*
|
40 |
-
* @return Page|false
|
41 |
-
*/
|
42 |
-
public function get_page( $slug ) {
|
43 |
-
$page = false;
|
44 |
-
|
45 |
-
if ( isset( $this->pages[ $slug ] ) ) {
|
46 |
-
$page = $this->pages[ $slug ];
|
47 |
-
}
|
48 |
-
|
49 |
-
return $page;
|
50 |
-
}
|
51 |
-
|
52 |
-
/**
|
53 |
-
* @return Page|false
|
54 |
-
*/
|
55 |
-
public function get_current_page() {
|
56 |
-
$page = $this->get_page( filter_input( INPUT_GET, 'tab' ) );
|
57 |
-
|
58 |
-
if ( ! $page ) {
|
59 |
-
$page = $this->get_page( $this->default_slug );
|
60 |
-
}
|
61 |
-
|
62 |
-
return $page;
|
63 |
-
}
|
64 |
-
|
65 |
-
/**
|
66 |
-
* Register page hooks
|
67 |
-
*/
|
68 |
-
public function register() {
|
69 |
-
foreach ( $this->pages as $page ) {
|
70 |
-
$page->register();
|
71 |
-
}
|
72 |
-
}
|
73 |
-
|
74 |
-
public function display() { ?>
|
75 |
-
<div id="cpac" class="wrap">
|
76 |
-
<h1 class="nav-tab-wrapper cpac-nav-tab-wrapper">
|
77 |
-
<?php
|
78 |
-
|
79 |
-
$active_page = $this->get_current_page();
|
80 |
-
|
81 |
-
foreach ( $this->pages as $slug => $page ) {
|
82 |
-
if ( $page->show_in_menu() ) {
|
83 |
-
$active = $slug === $active_page->get_slug() ? ' nav-tab-active' : '';
|
84 |
-
|
85 |
-
echo ac_helper()->html->link( AC()->admin()->get_link( $slug ), $page->get_label(), array( 'class' => 'nav-tab ' . $active ) );
|
86 |
-
}
|
87 |
-
}
|
88 |
-
|
89 |
-
?>
|
90 |
-
</h1>
|
91 |
-
|
92 |
-
<?php
|
93 |
-
|
94 |
-
do_action( 'ac/settings/after_menu' );
|
95 |
-
|
96 |
-
$active_page->display();
|
97 |
-
|
98 |
-
?>
|
99 |
-
</div>
|
100 |
-
|
101 |
-
<?php
|
102 |
-
}
|
103 |
-
|
104 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/Admin/Parts/Banner.php
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Admin\Parts;
|
4 |
+
|
5 |
+
use AC\Admin;
|
6 |
+
use AC\Autoloader;
|
7 |
+
use AC\Integrations;
|
8 |
+
use AC\PluginInformation;
|
9 |
+
use AC\View;
|
10 |
+
|
11 |
+
class Banner {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* @return Admin\Promo|false
|
15 |
+
*/
|
16 |
+
private function get_active_promotion() {
|
17 |
+
$classes = Autoloader::instance()->get_class_names_from_dir( 'AC\Admin\Promo' );
|
18 |
+
|
19 |
+
foreach ( $classes as $class ) {
|
20 |
+
|
21 |
+
/* @var Admin\Promo $promo */
|
22 |
+
$promo = new $class;
|
23 |
+
|
24 |
+
if ( $promo->is_active() ) {
|
25 |
+
return $promo;
|
26 |
+
}
|
27 |
+
}
|
28 |
+
|
29 |
+
return false;
|
30 |
+
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* @return int
|
34 |
+
*/
|
35 |
+
private function get_discount_percentage() {
|
36 |
+
return 10;
|
37 |
+
}
|
38 |
+
|
39 |
+
/**
|
40 |
+
* @return \AC\Integration[]
|
41 |
+
*/
|
42 |
+
private function get_missing_integrations() {
|
43 |
+
$missing = array();
|
44 |
+
|
45 |
+
foreach ( new Integrations() as $integration ) {
|
46 |
+
$integration_plugin = new PluginInformation( $integration->get_basename() );
|
47 |
+
|
48 |
+
if ( $integration->is_plugin_active() && ! $integration_plugin->is_active() ) {
|
49 |
+
$missing[] = $integration;
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
return $missing;
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* @return string
|
58 |
+
*/
|
59 |
+
public function render() {
|
60 |
+
$banner = new View( array(
|
61 |
+
'promo' => $this->get_active_promotion(),
|
62 |
+
'integrations' => $this->get_missing_integrations(),
|
63 |
+
'discount' => $this->get_discount_percentage(),
|
64 |
+
'price' => ac_get_lowest_price(),
|
65 |
+
) );
|
66 |
+
|
67 |
+
$banner->set_template( 'admin/side-banner' );
|
68 |
+
|
69 |
+
return $banner->render();
|
70 |
+
}
|
71 |
+
|
72 |
+
public function __toString() {
|
73 |
+
return $this->render();
|
74 |
+
}
|
75 |
+
|
76 |
+
}
|
classes/Admin/Request/Column.php
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Admin\Request;
|
4 |
+
|
5 |
+
use AC;
|
6 |
+
use AC\Column\Placeholder;
|
7 |
+
use AC\ListScreenFactory;
|
8 |
+
use AC\View;
|
9 |
+
|
10 |
+
abstract class Column extends AC\Admin\Request\Handler {
|
11 |
+
|
12 |
+
/** @var AC\ListScreen */
|
13 |
+
protected $list_screen;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* @return AC\Column
|
17 |
+
*/
|
18 |
+
abstract public function get_column();
|
19 |
+
|
20 |
+
public function request( AC\Request $request ) {
|
21 |
+
$this->list_screen = ListScreenFactory::create( $request->get( 'list_screen' ), $request->get( 'layout' ) );
|
22 |
+
|
23 |
+
if ( ! $this->list_screen ) {
|
24 |
+
wp_die();
|
25 |
+
}
|
26 |
+
|
27 |
+
$column = $this->get_column();
|
28 |
+
|
29 |
+
if ( ! $column ) {
|
30 |
+
wp_send_json_error( array(
|
31 |
+
'type' => 'message',
|
32 |
+
'error' => sprintf( __( 'Please visit the %s screen once to load all available columns', 'codepress-admin-columns' ), ac_helper()->html->link( $this->list_screen->get_screen_link(), $this->list_screen->get_label() ) ),
|
33 |
+
) );
|
34 |
+
}
|
35 |
+
|
36 |
+
$current_original_columns = (array) $request->get( 'current_original_columns', array() );
|
37 |
+
|
38 |
+
// Not cloneable message
|
39 |
+
if ( in_array( $column->get_type(), $current_original_columns ) ) {
|
40 |
+
wp_send_json_error( array(
|
41 |
+
'type' => 'message',
|
42 |
+
'error' => sprintf(
|
43 |
+
__( '%s column is already present and can not be duplicated.', 'codepress-admin-columns' ),
|
44 |
+
'<strong>' . $column->get_label() . '</strong>' ),
|
45 |
+
) );
|
46 |
+
}
|
47 |
+
|
48 |
+
// Placeholder message
|
49 |
+
if ( $column instanceof Placeholder ) {
|
50 |
+
wp_send_json_error( array(
|
51 |
+
'type' => 'message',
|
52 |
+
'error' => $column->get_message(),
|
53 |
+
) );
|
54 |
+
}
|
55 |
+
|
56 |
+
wp_send_json_success( $this->render_column( $column ) );
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* @param AC\Column $column
|
61 |
+
*
|
62 |
+
* @return string
|
63 |
+
*/
|
64 |
+
private function render_column( AC\Column $column ) {
|
65 |
+
$view = new View( array(
|
66 |
+
'column' => $column,
|
67 |
+
) );
|
68 |
+
|
69 |
+
$view->set_template( 'admin/edit-column' );
|
70 |
+
|
71 |
+
return $view->render();
|
72 |
+
}
|
73 |
+
|
74 |
+
}
|
classes/Admin/Request/Column/Refresh.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Admin\Request\Column;
|
4 |
+
|
5 |
+
use AC\Admin\Request\Column;
|
6 |
+
|
7 |
+
class Refresh extends Column {
|
8 |
+
|
9 |
+
public function __construct() {
|
10 |
+
parent::__construct( 'refresh' );
|
11 |
+
}
|
12 |
+
|
13 |
+
public function get_column() {
|
14 |
+
$options = filter_input( INPUT_POST, 'columns', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY );
|
15 |
+
$name = filter_input( INPUT_POST, 'column_name' );
|
16 |
+
|
17 |
+
if ( empty( $options[ $name ] ) ) {
|
18 |
+
wp_die();
|
19 |
+
}
|
20 |
+
|
21 |
+
$settings = $options[ $name ];
|
22 |
+
|
23 |
+
$settings['name'] = $name;
|
24 |
+
|
25 |
+
return $this->list_screen->create_column( $settings );
|
26 |
+
}
|
27 |
+
|
28 |
+
}
|
classes/Admin/Request/Column/Save.php
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin\Request\Column;
|
3 |
+
|
4 |
+
use AC\Admin\Request\Handler;
|
5 |
+
use AC\ListScreen;
|
6 |
+
use AC\ListScreenFactory;
|
7 |
+
use AC\Request;
|
8 |
+
|
9 |
+
class Save extends Handler {
|
10 |
+
|
11 |
+
public function __construct() {
|
12 |
+
parent::__construct( 'save' );
|
13 |
+
}
|
14 |
+
|
15 |
+
public function request( Request $request ) {
|
16 |
+
$list_screen = ListScreenFactory::create( $request->get( 'list_screen' ), $request->get( 'layout' ) );
|
17 |
+
|
18 |
+
if ( ! $list_screen ) {
|
19 |
+
wp_die();
|
20 |
+
}
|
21 |
+
|
22 |
+
parse_str( $request->get( 'data' ), $formdata );
|
23 |
+
|
24 |
+
if ( ! isset( $formdata['columns'] ) ) {
|
25 |
+
wp_send_json_error( array(
|
26 |
+
'type' => 'error',
|
27 |
+
'message' => __( 'You need at least one column', 'codepress-admin-columns' ),
|
28 |
+
)
|
29 |
+
);
|
30 |
+
}
|
31 |
+
|
32 |
+
$result = $list_screen->store( $formdata['columns'] );
|
33 |
+
|
34 |
+
$view_link = ac_helper()->html->link( $list_screen->get_screen_link(), sprintf( __( 'View %s screen', 'codepress-admin-columns' ), $list_screen->get_label() ) );
|
35 |
+
|
36 |
+
if ( is_wp_error( $result ) ) {
|
37 |
+
|
38 |
+
if ( 'same-settings' === $result->get_error_code() ) {
|
39 |
+
wp_send_json_error( array(
|
40 |
+
'type' => 'notice notice-warning',
|
41 |
+
'message' => sprintf( __( 'You are trying to store the same settings for %s.', 'codepress-admin-columns' ), "<strong>" . $this->get_list_screen_message_label( $list_screen ) . "</strong>" ) . ' ' . $view_link,
|
42 |
+
)
|
43 |
+
);
|
44 |
+
}
|
45 |
+
|
46 |
+
wp_send_json_error( array(
|
47 |
+
'type' => 'error',
|
48 |
+
'message' => $result->get_error_message(),
|
49 |
+
)
|
50 |
+
);
|
51 |
+
}
|
52 |
+
|
53 |
+
wp_send_json_success(
|
54 |
+
sprintf( __( 'Settings for %s updated successfully.', 'codepress-admin-columns' ), "<strong>" . esc_html( $this->get_list_screen_message_label( $list_screen ) ) . "</strong>" ) . ' ' . $view_link
|
55 |
+
);
|
56 |
+
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* @param ListScreen $list_screen
|
60 |
+
*
|
61 |
+
* @return string $label
|
62 |
+
*/
|
63 |
+
private function get_list_screen_message_label( ListScreen $list_screen ) {
|
64 |
+
return apply_filters( 'ac/settings/list_screen_message_label', $list_screen->get_label(), $list_screen );
|
65 |
+
}
|
66 |
+
|
67 |
+
}
|
classes/Admin/Request/Column/Select.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Admin\Request\Column;
|
4 |
+
|
5 |
+
use AC\Admin\Request\Column;
|
6 |
+
|
7 |
+
class Select extends Column {
|
8 |
+
|
9 |
+
public function __construct() {
|
10 |
+
parent::__construct( 'select' );
|
11 |
+
}
|
12 |
+
|
13 |
+
public function get_column() {
|
14 |
+
return $this->list_screen->get_column_by_type( filter_input( INPUT_POST, 'type' ) );
|
15 |
+
}
|
16 |
+
|
17 |
+
}
|
classes/Admin/Request/Handler.php
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Admin\Request;
|
4 |
+
|
5 |
+
use AC;
|
6 |
+
|
7 |
+
abstract class Handler {
|
8 |
+
|
9 |
+
/** @var string */
|
10 |
+
private $id;
|
11 |
+
|
12 |
+
public function __construct( $id ) {
|
13 |
+
$this->id = $id;
|
14 |
+
}
|
15 |
+
|
16 |
+
abstract public function request( AC\Request $request );
|
17 |
+
|
18 |
+
public function get_id() {
|
19 |
+
return $this->id;
|
20 |
+
}
|
21 |
+
|
22 |
+
}
|
classes/Admin/Section.php
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
abstract class Section {
|
5 |
+
|
6 |
+
/** @var string */
|
7 |
+
protected $id;
|
8 |
+
|
9 |
+
/** @var string */
|
10 |
+
private $title;
|
11 |
+
|
12 |
+
/** @var string */
|
13 |
+
private $description;
|
14 |
+
|
15 |
+
public function __construct( $id, $title, $description ) {
|
16 |
+
$this->id = $id;
|
17 |
+
$this->title = $title;
|
18 |
+
$this->description = $description;
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @return string
|
23 |
+
*/
|
24 |
+
public function get_title() {
|
25 |
+
return $this->title;
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @return string
|
30 |
+
*/
|
31 |
+
public function get_description() {
|
32 |
+
return $this->description;
|
33 |
+
}
|
34 |
+
|
35 |
+
/**
|
36 |
+
* @return string
|
37 |
+
*/
|
38 |
+
public function get_id() {
|
39 |
+
return $this->id;
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* @return void
|
44 |
+
*/
|
45 |
+
abstract protected function display_fields();
|
46 |
+
|
47 |
+
public function render() {
|
48 |
+
?>
|
49 |
+
<tr class="<?php echo esc_attr( $this->get_id() ); ?>">
|
50 |
+
<th scope="row">
|
51 |
+
<h2><?php echo $this->get_title(); ?></h2>
|
52 |
+
<p><?php echo $this->get_description(); ?></p>
|
53 |
+
</th>
|
54 |
+
<td>
|
55 |
+
<?php $this->display_fields(); ?>
|
56 |
+
</td>
|
57 |
+
</tr>
|
58 |
+
<?php
|
59 |
+
}
|
60 |
+
|
61 |
+
}
|
classes/Admin/Section/Custom.php
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin\Section;
|
3 |
+
|
4 |
+
use AC\Admin\Section;
|
5 |
+
use AC\Capabilities;
|
6 |
+
use AC\Registrable;
|
7 |
+
|
8 |
+
abstract class Custom extends Section
|
9 |
+
implements Registrable {
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Validate request
|
13 |
+
* @return bool
|
14 |
+
*/
|
15 |
+
protected function validate_request() {
|
16 |
+
return $this->verify_nonce() && $this->verify_action() && current_user_can( Capabilities::MANAGE );
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Verify nonce field based on the id
|
21 |
+
* @return bool
|
22 |
+
*/
|
23 |
+
protected function verify_nonce() {
|
24 |
+
return wp_verify_nonce( filter_input( INPUT_POST, '_ac_nonce' ), $this->id );
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Display nonce field based on the id
|
29 |
+
*/
|
30 |
+
protected function nonce_field() {
|
31 |
+
wp_nonce_field( $this->id, '_ac_nonce', false );
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Verify action field based on the id
|
36 |
+
* @return bool
|
37 |
+
*/
|
38 |
+
protected function verify_action() {
|
39 |
+
return $this->id === filter_input( INPUT_POST, 'ac_action' );
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Set an action field based on the id
|
44 |
+
* Nonce Field
|
45 |
+
*/
|
46 |
+
protected function action_field() {
|
47 |
+
?>
|
48 |
+
|
49 |
+
<input type="hidden" name="ac_action" value="<?php echo $this->id; ?>">
|
50 |
+
|
51 |
+
<?php
|
52 |
+
}
|
53 |
+
|
54 |
+
}
|
classes/Admin/Section/General.php
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Admin\Section;
|
4 |
+
|
5 |
+
use AC\Admin\Section;
|
6 |
+
use AC\Settings;
|
7 |
+
|
8 |
+
class General extends Section {
|
9 |
+
|
10 |
+
/** @var Settings\Admin\General[] */
|
11 |
+
private $settings;
|
12 |
+
|
13 |
+
public function __construct() {
|
14 |
+
parent::__construct( 'general', __( 'General Settings', 'codepress-admin-columns' ), __( 'Customize your Admin Columns settings.', 'codepress-admin-columns' ) );
|
15 |
+
}
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @param Settings\Admin\General $setting
|
19 |
+
*
|
20 |
+
* @return $this
|
21 |
+
*/
|
22 |
+
public function register_setting( Settings\Admin\General $setting ) {
|
23 |
+
$this->settings[] = $setting;
|
24 |
+
|
25 |
+
return $this;
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @return void
|
30 |
+
*/
|
31 |
+
protected function display_fields() {
|
32 |
+
?>
|
33 |
+
<form method="post" action="options.php">
|
34 |
+
|
35 |
+
<?php settings_fields( Settings\General::SETTINGS_GROUP ); ?>
|
36 |
+
|
37 |
+
<?php
|
38 |
+
foreach ( $this->settings as $setting ) {
|
39 |
+
echo sprintf( '<p>%s</p>', $setting->render() );
|
40 |
+
}
|
41 |
+
?>
|
42 |
+
|
43 |
+
<p>
|
44 |
+
<input type="submit" class="button" value="<?php echo esc_attr( __( 'Save' ) ); ?>"/>
|
45 |
+
</p>
|
46 |
+
</form>
|
47 |
+
<?php
|
48 |
+
}
|
49 |
+
|
50 |
+
}
|
classes/Admin/Section/Restore.php
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin\Section;
|
3 |
+
|
4 |
+
use AC\ListScreen;
|
5 |
+
use AC\Message;
|
6 |
+
|
7 |
+
class Restore extends Custom {
|
8 |
+
|
9 |
+
public function __construct() {
|
10 |
+
parent::__construct(
|
11 |
+
'restore',
|
12 |
+
__( 'Restore Settings', 'codepress-admin-columns' ),
|
13 |
+
__( 'This will delete all column settings and restore the default settings.', 'codepress-admin-columns' )
|
14 |
+
);
|
15 |
+
}
|
16 |
+
|
17 |
+
public function register() {
|
18 |
+
add_action( 'admin_init', array( $this, 'request' ) );
|
19 |
+
}
|
20 |
+
|
21 |
+
public function request() {
|
22 |
+
global $wpdb;
|
23 |
+
|
24 |
+
if ( ! $this->validate_request() ) {
|
25 |
+
return;
|
26 |
+
}
|
27 |
+
|
28 |
+
$sql = "
|
29 |
+
DELETE
|
30 |
+
FROM $wpdb->options
|
31 |
+
WHERE option_name LIKE %s";
|
32 |
+
|
33 |
+
$wpdb->query( $wpdb->prepare( $sql, ListScreen::OPTIONS_KEY . '%' ) );
|
34 |
+
|
35 |
+
do_action( 'ac/restore_all_columns' );
|
36 |
+
|
37 |
+
$notice = new Message\Notice( __( 'Default settings successfully restored.', 'codepress-admin-columns' ) );
|
38 |
+
$notice->register();
|
39 |
+
}
|
40 |
+
|
41 |
+
protected function display_fields() {
|
42 |
+
?>
|
43 |
+
<form method="post">
|
44 |
+
|
45 |
+
<?php
|
46 |
+
$this->nonce_field();
|
47 |
+
$this->action_field();
|
48 |
+
?>
|
49 |
+
|
50 |
+
<input type="submit" class="button" name="ac-restore-defaults" value="<?php echo esc_attr( __( 'Restore default settings', 'codepress-admin-columns' ) ); ?>" onclick="return confirm('<?php echo esc_js( __( "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop", 'codepress-admin-columns' ) ); ?>');">
|
51 |
+
</form>
|
52 |
+
<?php
|
53 |
+
}
|
54 |
+
|
55 |
+
}
|
classes/Admin/Tooltip.php
ADDED
@@ -0,0 +1,133 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Admin;
|
3 |
+
|
4 |
+
use AC\View;
|
5 |
+
|
6 |
+
class Tooltip {
|
7 |
+
|
8 |
+
/** @var string */
|
9 |
+
private $id;
|
10 |
+
|
11 |
+
/** @var string */
|
12 |
+
private $content;
|
13 |
+
|
14 |
+
/** @var string */
|
15 |
+
private $link_label;
|
16 |
+
|
17 |
+
/** @var string */
|
18 |
+
private $title;
|
19 |
+
|
20 |
+
/** @var string */
|
21 |
+
private $position = 'right';
|
22 |
+
|
23 |
+
public function __construct( $id, array $args ) {
|
24 |
+
$this->id = $id;
|
25 |
+
$this->title = __( 'Notice', 'codepress-admin-columns' );
|
26 |
+
$this->link_label = __( 'Instructions', 'codepress-admin-columns' );
|
27 |
+
|
28 |
+
$this->populate( $args );
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* @param array $args
|
33 |
+
*
|
34 |
+
* @return $this
|
35 |
+
*/
|
36 |
+
private function populate( $args ) {
|
37 |
+
foreach ( $args as $key => $value ) {
|
38 |
+
$method = 'set_' . $key;
|
39 |
+
|
40 |
+
if ( method_exists( $this, $method ) ) {
|
41 |
+
call_user_func( array( $this, $method ), $value );
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
return $this;
|
46 |
+
}
|
47 |
+
|
48 |
+
/**
|
49 |
+
* @param string $id
|
50 |
+
*
|
51 |
+
* @return Tooltip
|
52 |
+
*/
|
53 |
+
public function set_id( $id ) {
|
54 |
+
$this->id = $id;
|
55 |
+
|
56 |
+
return $this;
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* @param string $content
|
61 |
+
*
|
62 |
+
* @return Tooltip
|
63 |
+
*/
|
64 |
+
public function set_content( $content ) {
|
65 |
+
$this->content = $content;
|
66 |
+
|
67 |
+
return $this;
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* @param string $title
|
72 |
+
*
|
73 |
+
* @return Tooltip
|
74 |
+
*/
|
75 |
+
public function set_title( $title ) {
|
76 |
+
$this->title = $title;
|
77 |
+
|
78 |
+
return $this;
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* @param string $label
|
83 |
+
*
|
84 |
+
* @return $this
|
85 |
+
*/
|
86 |
+
public function set_link_label( $label ) {
|
87 |
+
$this->link_label = $label;
|
88 |
+
|
89 |
+
return $this;
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* @param string $position
|
94 |
+
*
|
95 |
+
* @return Tooltip
|
96 |
+
*/
|
97 |
+
public function set_position( $position ) {
|
98 |
+
$this->position = $position;
|
99 |
+
|
100 |
+
return $this;
|
101 |
+
}
|
102 |
+
|
103 |
+
/**
|
104 |
+
* @return string
|
105 |
+
*/
|
106 |
+
public function get_label() {
|
107 |
+
$view = new View( array(
|
108 |
+
'id' => $this->id,
|
109 |
+
'position' => $this->position,
|
110 |
+
'label' => $this->link_label,
|
111 |
+
) );
|
112 |
+
|
113 |
+
$view->set_template( 'admin/tooltip-label' );
|
114 |
+
|
115 |
+
return $view->render();
|
116 |
+
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* @return string
|
120 |
+
*/
|
121 |
+
public function get_instructions() {
|
122 |
+
$view = new View( array(
|
123 |
+
'id' => $this->id,
|
124 |
+
'title' => $this->title,
|
125 |
+
'content' => $this->content,
|
126 |
+
) );
|
127 |
+
|
128 |
+
$view->set_template( 'admin/tooltip-body' );
|
129 |
+
|
130 |
+
return $view->render();
|
131 |
+
}
|
132 |
+
|
133 |
+
}
|
classes/AdminColumns.php
CHANGED
@@ -2,16 +2,18 @@
|
|
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 |
-
* @since 2.2
|
14 |
-
* @access private
|
15 |
* @var Admin
|
16 |
*/
|
17 |
private $admin;
|
@@ -51,25 +53,31 @@ class AdminColumns extends Plugin {
|
|
51 |
* @since 1.0
|
52 |
*/
|
53 |
private function __construct() {
|
54 |
-
new ThirdParty\ACF();
|
55 |
-
new ThirdParty\NinjaForms();
|
56 |
-
new ThirdParty\WooCommerce();
|
57 |
-
new ThirdParty\WPML();
|
58 |
-
|
59 |
$this->api = new API();
|
60 |
|
61 |
-
$
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
-
$
|
65 |
-
|
|
|
|
|
|
|
66 |
|
67 |
-
$
|
68 |
-
$screen->register();
|
69 |
|
70 |
add_action( 'init', array( $this, 'init_capabilities' ) );
|
71 |
add_action( 'init', array( $this, 'install' ) );
|
72 |
add_action( 'init', array( $this, 'notice_checks' ) );
|
|
|
73 |
add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 1, 2 );
|
74 |
add_action( 'plugins_loaded', array( $this, 'localize' ) );
|
75 |
|
@@ -78,20 +86,37 @@ class AdminColumns extends Plugin {
|
|
78 |
add_action( 'wp_ajax_ac_get_column_value', array( $this, 'table_ajax_value' ) );
|
79 |
|
80 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_global_javascript_var' ), 1 );
|
|
|
|
|
81 |
}
|
82 |
|
83 |
/**
|
84 |
* @param Screen $screen
|
85 |
*/
|
86 |
public function init_table_on_screen( Screen $screen ) {
|
87 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
/**
|
91 |
* @param Screen\QuickEdit $screen
|
92 |
*/
|
93 |
public function init_table_on_quick_edit( Screen\QuickEdit $screen ) {
|
94 |
-
$
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
|
97 |
/**
|
@@ -128,18 +153,6 @@ class AdminColumns extends Plugin {
|
|
128 |
exit;
|
129 |
}
|
130 |
|
131 |
-
/**
|
132 |
-
* @param ListScreen $list_screen
|
133 |
-
*/
|
134 |
-
private function load_table( $list_screen ) {
|
135 |
-
if ( ! $list_screen instanceof ListScreen ) {
|
136 |
-
return;
|
137 |
-
}
|
138 |
-
|
139 |
-
$this->table_screen = new Table\Screen( $list_screen );
|
140 |
-
$this->table_screen->register();
|
141 |
-
}
|
142 |
-
|
143 |
/**
|
144 |
* Init checks
|
145 |
*/
|
@@ -204,7 +217,7 @@ class AdminColumns extends Plugin {
|
|
204 |
*/
|
205 |
public function add_settings_link( $links, $file ) {
|
206 |
if ( $file === $this->get_basename() ) {
|
207 |
-
array_unshift( $links,
|
208 |
}
|
209 |
|
210 |
return $links;
|
@@ -233,20 +246,6 @@ class AdminColumns extends Plugin {
|
|
233 |
return $this->admin;
|
234 |
}
|
235 |
|
236 |
-
/**
|
237 |
-
* @return Table\Screen Returns the screen manager for the list table
|
238 |
-
*/
|
239 |
-
public function table_screen() {
|
240 |
-
return $this->table_screen;
|
241 |
-
}
|
242 |
-
|
243 |
-
/**
|
244 |
-
* @return Admin\Page\Columns
|
245 |
-
*/
|
246 |
-
public function admin_columns_screen() {
|
247 |
-
return $this->admin()->get_page( 'columns' );
|
248 |
-
}
|
249 |
-
|
250 |
/**
|
251 |
* @return bool True when doing ajax
|
252 |
*/
|
@@ -335,6 +334,80 @@ class AdminColumns extends Plugin {
|
|
335 |
load_plugin_textdomain( 'codepress-admin-columns', false, $this->get_dir() . '/languages/' );
|
336 |
}
|
337 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
/**
|
339 |
* @deprecated 3.1.5
|
340 |
* @since 3.0
|
@@ -421,14 +494,23 @@ class AdminColumns extends Plugin {
|
|
421 |
}
|
422 |
|
423 |
/**
|
424 |
-
*
|
|
|
425 |
*/
|
426 |
-
public function
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
}
|
433 |
|
434 |
}
|
2 |
|
3 |
namespace AC;
|
4 |
|
5 |
+
use AC\Admin\GeneralSectionFactory;
|
6 |
+
use AC\Admin\Page;
|
7 |
+
use AC\Admin\Section\Restore;
|
8 |
use AC\Check;
|
9 |
+
use AC\Deprecated;
|
10 |
+
use AC\Screen\QuickEdit;
|
11 |
use AC\Table;
|
12 |
use AC\ThirdParty;
|
13 |
|
14 |
class AdminColumns extends Plugin {
|
15 |
|
16 |
/**
|
|
|
|
|
|
|
17 |
* @var Admin
|
18 |
*/
|
19 |
private $admin;
|
53 |
* @since 1.0
|
54 |
*/
|
55 |
private function __construct() {
|
|
|
|
|
|
|
|
|
|
|
56 |
$this->api = new API();
|
57 |
|
58 |
+
$modules = array(
|
59 |
+
new Deprecated\Hooks,
|
60 |
+
new QuickEdit(),
|
61 |
+
new Screen,
|
62 |
+
new Settings\General,
|
63 |
+
new ThirdParty\ACF,
|
64 |
+
new ThirdParty\NinjaForms,
|
65 |
+
new ThirdParty\WooCommerce,
|
66 |
+
new ThirdParty\WPML,
|
67 |
+
);
|
68 |
|
69 |
+
foreach ( $modules as $module ) {
|
70 |
+
if ( $module instanceof Registrable ) {
|
71 |
+
$module->register();
|
72 |
+
}
|
73 |
+
}
|
74 |
|
75 |
+
$this->register_admin();
|
|
|
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 |
+
|
81 |
add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 1, 2 );
|
82 |
add_action( 'plugins_loaded', array( $this, 'localize' ) );
|
83 |
|
86 |
add_action( 'wp_ajax_ac_get_column_value', array( $this, 'table_ajax_value' ) );
|
87 |
|
88 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_global_javascript_var' ), 1 );
|
89 |
+
|
90 |
+
add_filter( 'wp_redirect', array( $this, 'redirect_after_status_change' ) );
|
91 |
}
|
92 |
|
93 |
/**
|
94 |
* @param Screen $screen
|
95 |
*/
|
96 |
public function init_table_on_screen( Screen $screen ) {
|
97 |
+
$list_screen = $screen->get_list_screen();
|
98 |
+
|
99 |
+
if ( ! $list_screen instanceof ListScreen ) {
|
100 |
+
return;
|
101 |
+
}
|
102 |
+
|
103 |
+
$table_screen = new Table\Screen( $list_screen );
|
104 |
+
$table_screen->register();
|
105 |
+
|
106 |
+
do_action( 'ac/table', $table_screen );
|
107 |
+
|
108 |
+
$this->table_screen = $table_screen;
|
109 |
}
|
110 |
|
111 |
/**
|
112 |
* @param Screen\QuickEdit $screen
|
113 |
*/
|
114 |
public function init_table_on_quick_edit( Screen\QuickEdit $screen ) {
|
115 |
+
$list_screen = $screen->get_list_screen();
|
116 |
+
|
117 |
+
if ( $list_screen instanceof ListScreen ) {
|
118 |
+
new ScreenController( $list_screen );
|
119 |
+
}
|
120 |
}
|
121 |
|
122 |
/**
|
153 |
exit;
|
154 |
}
|
155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
/**
|
157 |
* Init checks
|
158 |
*/
|
217 |
*/
|
218 |
public function add_settings_link( $links, $file ) {
|
219 |
if ( $file === $this->get_basename() ) {
|
220 |
+
array_unshift( $links, sprintf( '<a href="%s">%s</a>', $this->admin->get_url( 'columns' ), __( 'Settings', 'codepress-admin-columns' ) ) );
|
221 |
}
|
222 |
|
223 |
return $links;
|
246 |
return $this->admin;
|
247 |
}
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
/**
|
250 |
* @return bool True when doing ajax
|
251 |
*/
|
334 |
load_plugin_textdomain( 'codepress-admin-columns', false, $this->get_dir() . '/languages/' );
|
335 |
}
|
336 |
|
337 |
+
/**
|
338 |
+
* Add a global JS var that ideally contains all AC and ACP API methods
|
339 |
+
*/
|
340 |
+
public function add_global_javascript_var() {
|
341 |
+
?>
|
342 |
+
<script>
|
343 |
+
var AdminColumns = {};
|
344 |
+
</script>
|
345 |
+
<?php
|
346 |
+
}
|
347 |
+
|
348 |
+
/**
|
349 |
+
* @return void
|
350 |
+
*/
|
351 |
+
private function register_admin() {
|
352 |
+
$is_network = is_network_admin();
|
353 |
+
|
354 |
+
$site_factory = new Admin\AdminFactory();
|
355 |
+
$this->admin = $site_factory->create( $is_network );
|
356 |
+
|
357 |
+
if ( ! $is_network ) {
|
358 |
+
|
359 |
+
$page_settings = new Page\Settings();
|
360 |
+
$page_settings
|
361 |
+
->register_section( GeneralSectionFactory::create() )
|
362 |
+
->register_section( new Restore() );
|
363 |
+
|
364 |
+
$page_columns = new Page\Columns();
|
365 |
+
$page_columns->register_ajax();
|
366 |
+
|
367 |
+
$this->admin->register_page( $page_columns )
|
368 |
+
->register_page( $page_settings )
|
369 |
+
->register_page( new Page\Addons() )
|
370 |
+
->register_page( new Page\Help() )
|
371 |
+
->register();
|
372 |
+
}
|
373 |
+
}
|
374 |
+
|
375 |
+
/**
|
376 |
+
* Redirect the user to the Admin Columns add-ons page after activation/deactivation of an add-on from the add-ons page
|
377 |
+
* @since 2.2
|
378 |
+
*
|
379 |
+
* @param $location
|
380 |
+
*
|
381 |
+
* @return string
|
382 |
+
*/
|
383 |
+
public function redirect_after_status_change( $location ) {
|
384 |
+
global $pagenow;
|
385 |
+
|
386 |
+
if ( 'plugins.php' !== $pagenow || ! filter_input( INPUT_GET, 'ac-redirect' ) || filter_input( INPUT_GET, 'error' ) ) {
|
387 |
+
return $location;
|
388 |
+
}
|
389 |
+
|
390 |
+
$status = filter_input( INPUT_GET, 'action' );
|
391 |
+
|
392 |
+
if ( ! $status ) {
|
393 |
+
return $location;
|
394 |
+
}
|
395 |
+
|
396 |
+
$integration = IntegrationFactory::create( filter_input( INPUT_GET, 'plugin' ) );
|
397 |
+
|
398 |
+
if ( ! $integration ) {
|
399 |
+
return $location;
|
400 |
+
}
|
401 |
+
|
402 |
+
$location = add_query_arg( array(
|
403 |
+
'status' => $status,
|
404 |
+
'plugin' => $integration->get_slug(),
|
405 |
+
'_ac_nonce' => wp_create_nonce( 'ac-plugin-status-change' ),
|
406 |
+
), $this->admin()->get_url( 'addons' ) );
|
407 |
+
|
408 |
+
return $location;
|
409 |
+
}
|
410 |
+
|
411 |
/**
|
412 |
* @deprecated 3.1.5
|
413 |
* @since 3.0
|
494 |
}
|
495 |
|
496 |
/**
|
497 |
+
* @return Table\Screen Returns the screen manager for the list table
|
498 |
+
* @deprecated 3.4
|
499 |
*/
|
500 |
+
public function table_screen() {
|
501 |
+
_deprecated_function( __METHOD__, '3.4' );
|
502 |
+
|
503 |
+
return $this->table_screen;
|
504 |
+
}
|
505 |
+
|
506 |
+
/**
|
507 |
+
* @deprecated 3.4
|
508 |
+
* @return Admin\Page\Columns
|
509 |
+
*/
|
510 |
+
public function admin_columns_screen() {
|
511 |
+
_deprecated_function( __METHOD__, '3.4' );
|
512 |
+
|
513 |
+
return new Admin\Page\Columns();
|
514 |
}
|
515 |
|
516 |
}
|
classes/Ajax/Handler.php
CHANGED
@@ -2,9 +2,10 @@
|
|
2 |
|
3 |
namespace AC\Ajax;
|
4 |
|
|
|
5 |
use LogicException;
|
6 |
|
7 |
-
class Handler {
|
8 |
|
9 |
const NONCE_ACTION = 'ac-ajax';
|
10 |
|
@@ -18,7 +19,22 @@ class Handler {
|
|
18 |
*/
|
19 |
protected $callback;
|
20 |
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
$this->set_nonce();
|
23 |
}
|
24 |
|
@@ -34,14 +50,24 @@ class Handler {
|
|
34 |
throw new LogicException( 'Callback is missing.' );
|
35 |
}
|
36 |
|
37 |
-
add_action(
|
|
|
|
|
|
|
|
|
38 |
}
|
39 |
|
40 |
/**
|
41 |
* @return string|null
|
42 |
*/
|
43 |
public function get_action() {
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
|
47 |
/**
|
@@ -55,6 +81,28 @@ class Handler {
|
|
55 |
return $this;
|
56 |
}
|
57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
/**
|
59 |
* @param string|array $callback
|
60 |
*
|
2 |
|
3 |
namespace AC\Ajax;
|
4 |
|
5 |
+
use AC\Registrable;
|
6 |
use LogicException;
|
7 |
|
8 |
+
class Handler implements Registrable {
|
9 |
|
10 |
const NONCE_ACTION = 'ac-ajax';
|
11 |
|
19 |
*/
|
20 |
protected $callback;
|
21 |
|
22 |
+
/**
|
23 |
+
* @var bool
|
24 |
+
*/
|
25 |
+
protected $wp_ajax;
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @var int
|
29 |
+
*/
|
30 |
+
protected $priority = 10;
|
31 |
+
|
32 |
+
/**
|
33 |
+
* @param bool|null $wp_ajax Using the WP Ajax endpoint or custom
|
34 |
+
*/
|
35 |
+
public function __construct( $wp_ajax = null ) {
|
36 |
+
$this->wp_ajax = $wp_ajax === null;
|
37 |
+
|
38 |
$this->set_nonce();
|
39 |
}
|
40 |
|
50 |
throw new LogicException( 'Callback is missing.' );
|
51 |
}
|
52 |
|
53 |
+
add_action( $this->get_action(), $this->get_callback(), $this->priority );
|
54 |
+
}
|
55 |
+
|
56 |
+
public function deregister() {
|
57 |
+
remove_action( $this->get_action(), $this->get_callback(), $this->priority );
|
58 |
}
|
59 |
|
60 |
/**
|
61 |
* @return string|null
|
62 |
*/
|
63 |
public function get_action() {
|
64 |
+
$action = $this->get_param( 'action' );
|
65 |
+
|
66 |
+
if ( $this->wp_ajax ) {
|
67 |
+
$action = 'wp_ajax_' . $action;
|
68 |
+
}
|
69 |
+
|
70 |
+
return $action;
|
71 |
}
|
72 |
|
73 |
/**
|
81 |
return $this;
|
82 |
}
|
83 |
|
84 |
+
/**
|
85 |
+
* @param int $priority
|
86 |
+
*
|
87 |
+
* @return Handler
|
88 |
+
*/
|
89 |
+
public function set_priority( $priority ) {
|
90 |
+
if ( ! is_int( $priority ) ) {
|
91 |
+
throw new LogicException( 'Priority can only be of type integer.' );
|
92 |
+
}
|
93 |
+
|
94 |
+
$this->priority = $priority;
|
95 |
+
|
96 |
+
return $this;
|
97 |
+
}
|
98 |
+
|
99 |
+
/**
|
100 |
+
* @return int
|
101 |
+
*/
|
102 |
+
public function get_priority() {
|
103 |
+
return $this->priority;
|
104 |
+
}
|
105 |
+
|
106 |
/**
|
107 |
* @param string|array $callback
|
108 |
*
|
classes/Check/AddonAvailable.php
CHANGED
@@ -82,7 +82,7 @@ final class AddonAvailable
|
|
82 |
__( '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' ),
|
83 |
sprintf( '<strong>%s</strong>', $this->integration->get_title() ),
|
84 |
ac_helper()->html->link(
|
85 |
-
|
86 |
__( 'the addons page', 'codepress-admin-columns' )
|
87 |
)
|
88 |
);
|
82 |
__( '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' ),
|
83 |
sprintf( '<strong>%s</strong>', $this->integration->get_title() ),
|
84 |
ac_helper()->html->link(
|
85 |
+
ac_get_admin_url( 'addons' ),
|
86 |
__( 'the addons page', 'codepress-admin-columns' )
|
87 |
)
|
88 |
);
|
classes/Column.php
CHANGED
@@ -2,8 +2,6 @@
|
|
2 |
|
3 |
namespace AC;
|
4 |
|
5 |
-
use AC\Settings;
|
6 |
-
|
7 |
/**
|
8 |
* @since 3.0
|
9 |
*/
|
2 |
|
3 |
namespace AC;
|
4 |
|
|
|
|
|
5 |
/**
|
6 |
* @since 3.0
|
7 |
*/
|
classes/Column/Comment/ReplyTo.php
CHANGED
@@ -10,26 +10,23 @@ use AC\Column;
|
|
10 |
class ReplyTo extends Column {
|
11 |
|
12 |
public function __construct() {
|
13 |
-
$this->set_type( 'column-reply_to' )
|
14 |
-
|
15 |
}
|
16 |
|
17 |
public function get_value( $id ) {
|
18 |
-
$
|
19 |
-
$parent =
|
20 |
-
if ( $parent ) {
|
21 |
-
$parent = get_comment( $parent );
|
22 |
|
23 |
-
|
|
|
24 |
}
|
25 |
|
26 |
-
return $
|
27 |
}
|
28 |
|
29 |
public function get_raw_value( $id ) {
|
30 |
-
|
31 |
-
|
32 |
-
return $comment->comment_parent;
|
33 |
}
|
34 |
|
35 |
}
|
10 |
class ReplyTo extends Column {
|
11 |
|
12 |
public function __construct() {
|
13 |
+
$this->set_type( 'column-reply_to' )
|
14 |
+
->set_label( __( 'In Reply To', 'codepress-admin-columns' ) );
|
15 |
}
|
16 |
|
17 |
public function get_value( $id ) {
|
18 |
+
$parent_id = $this->get_raw_value( $id );
|
19 |
+
$parent = get_comment( $parent_id );
|
|
|
|
|
20 |
|
21 |
+
if ( ! $parent ) {
|
22 |
+
return $this->get_empty_char();
|
23 |
}
|
24 |
|
25 |
+
return ac_helper()->html->link( esc_url( get_comment_link( $parent ) ), get_comment_author( $parent->comment_ID ) );
|
26 |
}
|
27 |
|
28 |
public function get_raw_value( $id ) {
|
29 |
+
return get_comment( $id )->comment_parent;
|
|
|
|
|
30 |
}
|
31 |
|
32 |
}
|
classes/Column/Comment/Status.php
CHANGED
@@ -15,7 +15,15 @@ class Status extends Column {
|
|
15 |
}
|
16 |
|
17 |
public function get_value( $id ) {
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
}
|
20 |
|
21 |
public function get_statuses() {
|
@@ -30,9 +38,8 @@ class Status extends Column {
|
|
30 |
|
31 |
public function get_raw_value( $id ) {
|
32 |
$comment = get_comment( $id );
|
33 |
-
$statuses = $this->get_statuses();
|
34 |
|
35 |
-
return
|
36 |
}
|
37 |
|
38 |
}
|
15 |
}
|
16 |
|
17 |
public function get_value( $id ) {
|
18 |
+
$status = $this->get_raw_value( $id );
|
19 |
+
|
20 |
+
$statuses = $this->get_statuses();
|
21 |
+
|
22 |
+
if ( ! isset( $statuses[ $status ] ) ) {
|
23 |
+
return $this->get_empty_char();
|
24 |
+
}
|
25 |
+
|
26 |
+
return $statuses[ $status ];
|
27 |
}
|
28 |
|
29 |
public function get_statuses() {
|
38 |
|
39 |
public function get_raw_value( $id ) {
|
40 |
$comment = get_comment( $id );
|
|
|
41 |
|
42 |
+
return $comment->comment_approved;
|
43 |
}
|
44 |
|
45 |
}
|
classes/Column/Comment/Type.php
CHANGED
@@ -10,18 +10,22 @@ use AC\Column;
|
|
10 |
class Type extends Column {
|
11 |
|
12 |
public function __construct() {
|
13 |
-
$this->set_type( 'column-type' )
|
14 |
-
|
15 |
}
|
16 |
|
17 |
public function get_value( $id ) {
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
}
|
20 |
|
21 |
public function get_raw_value( $id ) {
|
22 |
-
|
23 |
-
|
24 |
-
return $comment->comment_type;
|
25 |
}
|
26 |
|
27 |
}
|
10 |
class Type extends Column {
|
11 |
|
12 |
public function __construct() {
|
13 |
+
$this->set_type( 'column-type' )
|
14 |
+
->set_label( __( 'Type', 'codepress-admin-columns' ) );
|
15 |
}
|
16 |
|
17 |
public function get_value( $id ) {
|
18 |
+
$type = $this->get_raw_value( $id );
|
19 |
+
|
20 |
+
if ( ! $type ) {
|
21 |
+
return $this->get_empty_char();
|
22 |
+
}
|
23 |
+
|
24 |
+
return $type;
|
25 |
}
|
26 |
|
27 |
public function get_raw_value( $id ) {
|
28 |
+
return get_comment( $id )->comment_type;
|
|
|
|
|
29 |
}
|
30 |
|
31 |
}
|
classes/Column/Placeholder.php
CHANGED
@@ -40,7 +40,7 @@ class Placeholder extends Column {
|
|
40 |
</p>
|
41 |
|
42 |
<p>
|
43 |
-
<?php printf( __( "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>.", 'codepress-admin-columns' ), $this->get_label(),
|
44 |
</p>
|
45 |
|
46 |
<p>
|
40 |
</p>
|
41 |
|
42 |
<p>
|
43 |
+
<?php printf( __( "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>.", 'codepress-admin-columns' ), $this->get_label(), ac_get_admin_url( 'addons' ) ); ?>
|
44 |
</p>
|
45 |
|
46 |
<p>
|
classes/Deprecated/Counter.php
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Deprecated;
|
4 |
+
|
5 |
+
class Counter {
|
6 |
+
|
7 |
+
const KEY = 'ac-deprecated-message-count';
|
8 |
+
|
9 |
+
public function get() {
|
10 |
+
return get_transient( self::KEY );
|
11 |
+
}
|
12 |
+
|
13 |
+
public function delete() {
|
14 |
+
delete_transient( self::KEY );
|
15 |
+
}
|
16 |
+
|
17 |
+
public function update( $count ) {
|
18 |
+
set_transient( self::KEY, $count, WEEK_IN_SECONDS );
|
19 |
+
}
|
20 |
+
|
21 |
+
}
|
classes/Deprecated/Hook.php
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Deprecated;
|
3 |
+
|
4 |
+
abstract class Hook {
|
5 |
+
|
6 |
+
/** @var string */
|
7 |
+
private $name;
|
8 |
+
|
9 |
+
/** @var string */
|
10 |
+
private $version;
|
11 |
+
|
12 |
+
/** @var string */
|
13 |
+
private $slug;
|
14 |
+
|
15 |
+
public function __construct( $name, $version, $slug = null ) {
|
16 |
+
$this->name = $name;
|
17 |
+
$this->version = $version;
|
18 |
+
$this->slug = $slug;
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @return string
|
23 |
+
*/
|
24 |
+
public function get_name() {
|
25 |
+
return $this->name;
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @return string
|
30 |
+
*/
|
31 |
+
public function get_version() {
|
32 |
+
return $this->version;
|
33 |
+
}
|
34 |
+
|
35 |
+
/**
|
36 |
+
* @return string
|
37 |
+
*/
|
38 |
+
public function get_slug() {
|
39 |
+
return $this->slug;
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* @return bool
|
44 |
+
*/
|
45 |
+
abstract public function has_hook();
|
46 |
+
|
47 |
+
/**
|
48 |
+
* @return array|false
|
49 |
+
*/
|
50 |
+
public function get_callbacks() {
|
51 |
+
global $wp_filter;
|
52 |
+
|
53 |
+
if ( ! isset( $wp_filter[ $this->name ] ) ) {
|
54 |
+
return false;
|
55 |
+
}
|
56 |
+
|
57 |
+
if ( empty( $wp_filter[ $this->name ]->callbacks ) ) {
|
58 |
+
return false;
|
59 |
+
}
|
60 |
+
|
61 |
+
$callbacks = array();
|
62 |
+
|
63 |
+
foreach ( $wp_filter[ $this->name ]->callbacks as $callback ) {
|
64 |
+
foreach ( $callback as $cb ) {
|
65 |
+
|
66 |
+
// Function
|
67 |
+
if ( is_scalar( $cb['function'] ) ) {
|
68 |
+
$callbacks[] = $cb['function'];
|
69 |
+
}
|
70 |
+
|
71 |
+
// Method
|
72 |
+
if ( is_array( $cb['function'] ) ) {
|
73 |
+
$callbacks[] = get_class( $cb['function'][0] ) . '::' . $cb['function'][1];
|
74 |
+
}
|
75 |
+
}
|
76 |
+
}
|
77 |
+
|
78 |
+
if ( ! $callbacks ) {
|
79 |
+
return false;
|
80 |
+
}
|
81 |
+
|
82 |
+
return $callbacks;
|
83 |
+
}
|
84 |
+
|
85 |
+
}
|
classes/Deprecated/Hook/Action.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Deprecated\Hook;
|
4 |
+
|
5 |
+
use AC\Deprecated\Hook;
|
6 |
+
|
7 |
+
class Action extends Hook {
|
8 |
+
|
9 |
+
public function has_hook() {
|
10 |
+
return has_action( $this->get_name() );
|
11 |
+
}
|
12 |
+
|
13 |
+
}
|
classes/Deprecated/Hook/Filter.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Deprecated\Hook;
|
4 |
+
|
5 |
+
use AC\Deprecated\Hook;
|
6 |
+
|
7 |
+
class Filter extends Hook {
|
8 |
+
|
9 |
+
public function has_hook() {
|
10 |
+
return has_filter( $this->get_name() );
|
11 |
+
}
|
12 |
+
|
13 |
+
}
|
classes/Deprecated/Hooks.php
ADDED
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Deprecated;
|
3 |
+
|
4 |
+
use AC\Deprecated\Hook\Action;
|
5 |
+
use AC\Deprecated\Hook\Filter;
|
6 |
+
use AC\Registrable;
|
7 |
+
|
8 |
+
class Hooks implements Registrable {
|
9 |
+
|
10 |
+
public function register() {
|
11 |
+
add_action( 'admin_init', array( $this, 'update_count' ) );
|
12 |
+
}
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @return Filter[]
|
16 |
+
*/
|
17 |
+
private function get_filters() {
|
18 |
+
$hooks = array(
|
19 |
+
new Filter( 'cac/headings/label', '3.0', 'cac-columns-custom' ),
|
20 |
+
new Filter( 'cac/column/meta/value', '3.0', 'cac-column-meta-value' ),
|
21 |
+
new Filter( 'cac/column/meta/types', '3.0', 'cac-column-meta-types' ),
|
22 |
+
new Filter( 'cac/settings/tabs', '3.0', 'cac-settings-tabs' ),
|
23 |
+
new Filter( 'cac/editable/is_column_editable', '3.0', 'cac-editable-is_column_editable' ),
|
24 |
+
new Filter( 'cac/editable/editables_data', '3.0', 'cac-editable-editables_data' ),
|
25 |
+
new Filter( 'cac/editable/options', '3.0', 'cac-editable-editables_data' ),
|
26 |
+
new Filter( 'cac/inline-edit/ajax-column-save/value', '3.0', 'cac-inline-edit-ajax-column-save-value' ),
|
27 |
+
new Filter( 'cac/addon/filtering/options', '3.0', 'cac-addon-filtering-options' ),
|
28 |
+
new Filter( 'cac/addon/filtering/dropdown_top_label', '3.0', 'cac-addon-filtering-dropdown_top_label' ),
|
29 |
+
new Filter( 'cac/addon/filtering/taxonomy/terms_args', '3.0', 'cac-addon-filtering-taxonomy-terms_args' ),
|
30 |
+
new Filter( 'cac/addon/filtering/dropdown_empty_option', '3.0', 'cac-addon-filtering-taxonomy-terms_args' ),
|
31 |
+
new Filter( 'cac/column/actions/action_links', '3.0', 'cac-column_actions-action_links' ),
|
32 |
+
new Filter( 'cac/acf/format_acf_value', '3.0', 'cac-acf-format_acf_value' ),
|
33 |
+
new Filter( 'cac/addon/filtering/taxonomy/terms_args', '3.0' ),
|
34 |
+
new Filter( 'cac/column/meta/use_text_input', '3.0' ),
|
35 |
+
new Filter( 'cac/hide_renewal_notice', '3.0' ),
|
36 |
+
new Filter( 'acp/network_settings/groups', '3.4' ),
|
37 |
+
new Filter( 'acp/settings/groups', '3.4' ),
|
38 |
+
);
|
39 |
+
|
40 |
+
$hooks[] = new Filter( 'cac/columns/custom', '3.0', 'cac-columns-custom' );
|
41 |
+
|
42 |
+
foreach ( $this->get_types() as $type ) {
|
43 |
+
$hooks[] = new Filter( 'cac/columns/custom/type=' . $type, '3.0', 'cac-columns-custom' );
|
44 |
+
}
|
45 |
+
|
46 |
+
foreach ( get_post_types() as $post_type ) {
|
47 |
+
$hooks[] = new Filter( 'cac/columns/custom/post_type=' . $post_type, '3.0', 'cac-columns-custom' );
|
48 |
+
}
|
49 |
+
|
50 |
+
$hooks[] = new Filter( 'cac/column/value', '3.0', 'cac-column-value' );
|
51 |
+
|
52 |
+
foreach ( $this->get_types() as $type ) {
|
53 |
+
$hooks[] = new Filter( 'cac/column/value/' . $type, '3.0', 'cac-column-value' );
|
54 |
+
}
|
55 |
+
|
56 |
+
$hooks[] = new Filter( 'cac/editable/column_value', '3.0', 'cac-editable-column_value' );
|
57 |
+
|
58 |
+
foreach ( $this->get_columns() as $column_type ) {
|
59 |
+
$hooks[] = new Filter( 'cac/editable/column_value/column=' . $column_type, '3.0', 'cac-editable-column_value' );
|
60 |
+
}
|
61 |
+
|
62 |
+
$hooks[] = new Filter( 'cac/editable/column_save', '3.0', 'cac-editable-column_save' );
|
63 |
+
|
64 |
+
foreach ( $this->get_columns() as $column_type ) {
|
65 |
+
$hooks[] = new Filter( 'cac/editable/column_save/column=' . $column_type, '3.0', 'cac-editable-column_save' );
|
66 |
+
}
|
67 |
+
|
68 |
+
return $hooks;
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* @return array
|
73 |
+
*/
|
74 |
+
private function get_types() {
|
75 |
+
return array( 'post', 'user', 'comment', 'link', 'media' );
|
76 |
+
}
|
77 |
+
|
78 |
+
/**
|
79 |
+
* @return array
|
80 |
+
*/
|
81 |
+
private function get_columns() {
|
82 |
+
$columns = array();
|
83 |
+
foreach ( AC()->get_list_screens() as $list_screen ) {
|
84 |
+
foreach ( $list_screen->get_column_types() as $column ) {
|
85 |
+
$columns[ $column->get_type() ] = $column->get_type();
|
86 |
+
}
|
87 |
+
}
|
88 |
+
|
89 |
+
return $columns;
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* @return Action[]
|
94 |
+
*/
|
95 |
+
private function get_actions() {
|
96 |
+
$hooks = array(
|
97 |
+
new Action( 'cac/admin_head', '3.0', 'cac-admin_head' ),
|
98 |
+
new Action( 'cac/loaded', '3.0', 'cac-loaded' ),
|
99 |
+
new Action( 'cac/inline-edit/after_ajax_column_save', '3.0', 'cacinline-editafter_ajax_column_save' ),
|
100 |
+
new Action( 'cac/settings/after_title', '3.0' ),
|
101 |
+
new Action( 'cac/settings/form_actions', '3.0' ),
|
102 |
+
new Action( 'cac/settings/sidebox', '3.0' ),
|
103 |
+
new Action( 'cac/settings/form_columns', '3.0' ),
|
104 |
+
new Action( 'cac/settings/after_columns', '3.0' ),
|
105 |
+
new Action( 'cac/column/settings_meta', '3.0' ),
|
106 |
+
new Action( 'cac/settings/general', '3.0' ),
|
107 |
+
new Action( 'cpac_messages', '3.0' ),
|
108 |
+
new Action( 'cac/settings/after_menu', '3.0' ),
|
109 |
+
new Action( 'ac/settings/general', '3.4' ),
|
110 |
+
);
|
111 |
+
|
112 |
+
return $hooks;
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* @return Filter[]
|
117 |
+
*/
|
118 |
+
public function get_deprecated_filters() {
|
119 |
+
return $this->check_deprecated_hooks( $this->get_filters() );
|
120 |
+
}
|
121 |
+
|
122 |
+
/**
|
123 |
+
* @return Action[]
|
124 |
+
*/
|
125 |
+
public function get_deprecated_actions() {
|
126 |
+
return $this->check_deprecated_hooks( $this->get_actions() );
|
127 |
+
}
|
128 |
+
|
129 |
+
/**
|
130 |
+
* @param array $hooks
|
131 |
+
*
|
132 |
+
* @return array
|
133 |
+
*/
|
134 |
+
private function check_deprecated_hooks( $hooks ) {
|
135 |
+
$deprecated = array();
|
136 |
+
|
137 |
+
foreach ( $hooks as $hook ) {
|
138 |
+
if ( $hook->has_hook() ) {
|
139 |
+
$deprecated[] = $hook;
|
140 |
+
}
|
141 |
+
}
|
142 |
+
|
143 |
+
return $deprecated;
|
144 |
+
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* Update total deprecated hooks count
|
148 |
+
*/
|
149 |
+
public function update_count() {
|
150 |
+
$counter = new Counter();
|
151 |
+
|
152 |
+
if ( false !== $counter->get() ) {
|
153 |
+
return;
|
154 |
+
}
|
155 |
+
|
156 |
+
$counter->update( $this->get_deprecated_count() );
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* @return int
|
161 |
+
*/
|
162 |
+
public function get_deprecated_count() {
|
163 |
+
return count( $this->get_deprecated_actions() ) + count( $this->get_deprecated_filters() );
|
164 |
+
}
|
165 |
+
|
166 |
+
}
|
classes/Exception/Request.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Exception;
|
4 |
+
|
5 |
+
use LogicException;
|
6 |
+
|
7 |
+
class Request extends LogicException {
|
8 |
+
|
9 |
+
public static function from_invalid_parameters() {
|
10 |
+
return new self( 'Invalid request parameters.' );
|
11 |
+
}
|
12 |
+
|
13 |
+
}
|
classes/Form/Element/MultiSelect.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Form\Element;
|
4 |
+
|
5 |
+
class MultiSelect extends Select {
|
6 |
+
|
7 |
+
public function __construct( $name, array $options = array() ) {
|
8 |
+
parent::__construct( $name, $options );
|
9 |
+
|
10 |
+
$this->set_attribute( 'multiple', 'multiple' );
|
11 |
+
}
|
12 |
+
|
13 |
+
protected function selected( $value ) {
|
14 |
+
return in_array( $value, (array) $this->get_value(), true );
|
15 |
+
}
|
16 |
+
|
17 |
+
}
|
classes/Form/Element/Select.php
CHANGED
@@ -27,6 +27,12 @@ class Select extends Element {
|
|
27 |
return implode( "\n", $output );
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
protected function render_option( $key, $label ) {
|
31 |
$template = '<option %s>%s</option>';
|
32 |
$attributes = $this->get_option_attributes( $key );
|
@@ -34,17 +40,31 @@ class Select extends Element {
|
|
34 |
return sprintf( $template, $this->get_attributes_as_string( $attributes ), esc_html( $label ) );
|
35 |
}
|
36 |
|
|
|
|
|
|
|
|
|
|
|
37 |
protected function get_option_attributes( $key ) {
|
38 |
$attributes = array();
|
39 |
$attributes['value'] = $key;
|
40 |
|
41 |
-
if (
|
42 |
$attributes['selected'] = 'selected';
|
43 |
}
|
44 |
|
45 |
return $attributes;
|
46 |
}
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
/**
|
49 |
* @param array $group
|
50 |
*
|
@@ -61,8 +81,11 @@ class Select extends Element {
|
|
61 |
return sprintf( $template, $this->get_attributes_as_string( $attributes ), $this->render_options( $group['options'] ) );
|
62 |
}
|
63 |
|
|
|
|
|
|
|
64 |
public function render() {
|
65 |
-
if ( ! $this->get_options() ) {
|
66 |
return $this->get_no_result();
|
67 |
}
|
68 |
|
27 |
return implode( "\n", $output );
|
28 |
}
|
29 |
|
30 |
+
/**
|
31 |
+
* @param string $key
|
32 |
+
* @param string $label
|
33 |
+
*
|
34 |
+
* @return string
|
35 |
+
*/
|
36 |
protected function render_option( $key, $label ) {
|
37 |
$template = '<option %s>%s</option>';
|
38 |
$attributes = $this->get_option_attributes( $key );
|
40 |
return sprintf( $template, $this->get_attributes_as_string( $attributes ), esc_html( $label ) );
|
41 |
}
|
42 |
|
43 |
+
/**
|
44 |
+
* @param string $key
|
45 |
+
*
|
46 |
+
* @return array
|
47 |
+
*/
|
48 |
protected function get_option_attributes( $key ) {
|
49 |
$attributes = array();
|
50 |
$attributes['value'] = $key;
|
51 |
|
52 |
+
if ( $this->selected( $key ) ) {
|
53 |
$attributes['selected'] = 'selected';
|
54 |
}
|
55 |
|
56 |
return $attributes;
|
57 |
}
|
58 |
|
59 |
+
/**
|
60 |
+
* @param string $value
|
61 |
+
*
|
62 |
+
* @return string
|
63 |
+
*/
|
64 |
+
protected function selected( $value ) {
|
65 |
+
return selected( $this->get_value(), $value, false );
|
66 |
+
}
|
67 |
+
|
68 |
/**
|
69 |
* @param array $group
|
70 |
*
|
81 |
return sprintf( $template, $this->get_attributes_as_string( $attributes ), $this->render_options( $group['options'] ) );
|
82 |
}
|
83 |
|
84 |
+
/**
|
85 |
+
* @return string
|
86 |
+
*/
|
87 |
public function render() {
|
88 |
+
if ( ! $this->get_options() && $this->get_no_result() ) {
|
89 |
return $this->get_no_result();
|
90 |
}
|
91 |
|
classes/Helper/Image.php
CHANGED
@@ -233,7 +233,7 @@ class Image {
|
|
233 |
|
234 |
ob_start(); ?>
|
235 |
<span class="ac-image<?php echo $class; ?>" data-media-id="<?php echo esc_attr( $media_id ); ?>"<?php echo $this->get_file_tooltip_attr( $media_id ); ?>>
|
236 |
-
<img style="max-width:<?php echo esc_attr( $width ); ?>px;max-height:<?php echo esc_attr( $height ); ?>px;" src="<?php echo esc_attr( $src ); ?>">
|
237 |
|
238 |
<?php if ( $add_extension ) : ?>
|
239 |
<span class="ac-extension"><?php echo esc_attr( $this->get_file_extension( $media_id ) ); ?></span>
|
233 |
|
234 |
ob_start(); ?>
|
235 |
<span class="ac-image<?php echo $class; ?>" data-media-id="<?php echo esc_attr( $media_id ); ?>"<?php echo $this->get_file_tooltip_attr( $media_id ); ?>>
|
236 |
+
<img style="max-width:<?php echo esc_attr( $width ); ?>px;max-height:<?php echo esc_attr( $height ); ?>px;" src="<?php echo esc_attr( $src ); ?>" alt="">
|
237 |
|
238 |
<?php if ( $add_extension ) : ?>
|
239 |
<span class="ac-extension"><?php echo esc_attr( $this->get_file_extension( $media_id ) ); ?></span>
|
classes/Helper/Strings.php
CHANGED
@@ -182,7 +182,7 @@ class Strings {
|
|
182 |
return false;
|
183 |
}
|
184 |
|
185 |
-
$ext = pathinfo( strtok( $url, '?' ), PATHINFO_EXTENSION );
|
186 |
|
187 |
return in_array( $ext, array( 'jpg', 'jpeg', 'gif', 'png', 'bmp' ) );
|
188 |
}
|
182 |
return false;
|
183 |
}
|
184 |
|
185 |
+
$ext = strtolower( pathinfo( strtok( $url, '?' ), PATHINFO_EXTENSION ) );
|
186 |
|
187 |
return in_array( $ext, array( 'jpg', 'jpeg', 'gif', 'png', 'bmp' ) );
|
188 |
}
|
classes/Integration.php
CHANGED
@@ -116,7 +116,7 @@ abstract class Integration {
|
|
116 |
* @return string
|
117 |
*/
|
118 |
public function get_link() {
|
119 |
-
return ac_get_site_utm_url( $this->page, 'addon', $this->
|
120 |
}
|
121 |
|
122 |
/**
|
116 |
* @return string
|
117 |
*/
|
118 |
public function get_link() {
|
119 |
+
return ac_get_site_utm_url( $this->page, 'addon', $this->get_slug() );
|
120 |
}
|
121 |
|
122 |
/**
|
classes/Integration/ACF.php
CHANGED
@@ -13,7 +13,8 @@ final class ACF extends Integration {
|
|
13 |
__( 'Advanced Custom Fields', 'codepress-admin-columns' ),
|
14 |
'assets/images/addons/acf.png',
|
15 |
__( 'Display and edit ACF fields in the posts overview in seconds!', 'codepress-admin-columns' ),
|
16 |
-
'https://www.advancedcustomfields.com
|
|
|
17 |
);
|
18 |
}
|
19 |
|
13 |
__( 'Advanced Custom Fields', 'codepress-admin-columns' ),
|
14 |
'assets/images/addons/acf.png',
|
15 |
__( 'Display and edit ACF fields in the posts overview in seconds!', 'codepress-admin-columns' ),
|
16 |
+
'https://www.advancedcustomfields.com',
|
17 |
+
'advanced-custom-fields'
|
18 |
);
|
19 |
}
|
20 |
|
classes/Integration/WooCommerce.php
CHANGED
@@ -16,7 +16,7 @@ final class WooCommerce extends Integration {
|
|
16 |
'assets/images/addons/woocommerce.png',
|
17 |
__( 'Enhance the products, orders and coupons overviews with new columns and inline editing.', 'codepress-admin-columns' ),
|
18 |
null,
|
19 |
-
'woocommerce'
|
20 |
);
|
21 |
}
|
22 |
|
16 |
'assets/images/addons/woocommerce.png',
|
17 |
__( 'Enhance the products, orders and coupons overviews with new columns and inline editing.', 'codepress-admin-columns' ),
|
18 |
null,
|
19 |
+
'woocommerce-columns'
|
20 |
);
|
21 |
}
|
22 |
|
classes/ListScreen.php
CHANGED
@@ -123,6 +123,13 @@ abstract class ListScreen {
|
|
123 |
*/
|
124 |
abstract protected function register_column_types();
|
125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
/**
|
127 |
* @return string
|
128 |
*/
|
@@ -371,14 +378,20 @@ abstract class ListScreen {
|
|
371 |
* @return string Link
|
372 |
*/
|
373 |
public function get_screen_link() {
|
374 |
-
return add_query_arg( array(
|
|
|
|
|
|
|
375 |
}
|
376 |
|
377 |
/**
|
378 |
* @since 2.0
|
379 |
*/
|
380 |
public function get_edit_link() {
|
381 |
-
return add_query_arg( array(
|
|
|
|
|
|
|
382 |
}
|
383 |
|
384 |
/**
|
123 |
*/
|
124 |
abstract protected function register_column_types();
|
125 |
|
126 |
+
/**
|
127 |
+
* @return string
|
128 |
+
*/
|
129 |
+
public function get_heading_hookname() {
|
130 |
+
return 'manage_' . $this->get_screen_id() . '_columns';
|
131 |
+
}
|
132 |
+
|
133 |
/**
|
134 |
* @return string
|
135 |
*/
|
378 |
* @return string Link
|
379 |
*/
|
380 |
public function get_screen_link() {
|
381 |
+
return add_query_arg( array(
|
382 |
+
'page' => $this->get_page(),
|
383 |
+
'layout' => $this->get_layout_id(),
|
384 |
+
), $this->get_admin_url() );
|
385 |
}
|
386 |
|
387 |
/**
|
388 |
* @since 2.0
|
389 |
*/
|
390 |
public function get_edit_link() {
|
391 |
+
return add_query_arg( array(
|
392 |
+
'list_screen' => $this->key,
|
393 |
+
'layout_id' => $this->get_layout_id(),
|
394 |
+
), ac_get_admin_url() );
|
395 |
}
|
396 |
|
397 |
/**
|
classes/ListScreenFactory.php
CHANGED
@@ -18,10 +18,21 @@ class ListScreenFactory {
|
|
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 |
}
|
18 |
}
|
19 |
|
20 |
$list_screen = clone $list_screens[ $type ];
|
|
|
21 |
$list_screen->set_layout_id( $id );
|
22 |
|
23 |
return $list_screen;
|
24 |
}
|
25 |
|
26 |
+
/**
|
27 |
+
* @param Request $request
|
28 |
+
*
|
29 |
+
* @return ListScreen|false
|
30 |
+
*/
|
31 |
+
public static function create_from_request( Request $request ) {
|
32 |
+
$type = $request->filter( 'list_screen', '', FILTER_SANITIZE_STRING );
|
33 |
+
$id = $request->filter( 'layout', null, FILTER_SANITIZE_STRING );
|
34 |
+
|
35 |
+
return self::create( $type, $id );
|
36 |
+
}
|
37 |
+
|
38 |
}
|
classes/Plugin/Updater.php
CHANGED
@@ -111,7 +111,8 @@ class Updater {
|
|
111 |
}
|
112 |
|
113 |
protected function show_update_notice() {
|
114 |
-
$url = add_query_arg( array( 'ac_do_update' => 'true' ),
|
|
|
115 |
$message = sprintf( '<strong>%s</strong> – %s <a href="%s" class="button ac-update-now">%s</a>',
|
116 |
esc_html__( 'Admin Columns', 'codepress-admin-columns' ),
|
117 |
esc_html__( 'We need to update your database to the latest version.', 'codepress-admin-columns' ),
|
111 |
}
|
112 |
|
113 |
protected function show_update_notice() {
|
114 |
+
$url = add_query_arg( array( 'ac_do_update' => 'true' ), ac_get_admin_url( 'settings' ) );
|
115 |
+
|
116 |
$message = sprintf( '<strong>%s</strong> – %s <a href="%s" class="button ac-update-now">%s</a>',
|
117 |
esc_html__( 'Admin Columns', 'codepress-admin-columns' ),
|
118 |
esc_html__( 'We need to update your database to the latest version.', 'codepress-admin-columns' ),
|
classes/Request.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
|
3 |
namespace AC;
|
4 |
|
|
|
|
|
5 |
class Request {
|
6 |
|
7 |
const METHOD_POST = 'POST';
|
@@ -13,12 +15,12 @@ class Request {
|
|
13 |
protected $method;
|
14 |
|
15 |
/**
|
16 |
-
* @var
|
17 |
*/
|
18 |
protected $query;
|
19 |
|
20 |
/**
|
21 |
-
* @var
|
22 |
*/
|
23 |
protected $request;
|
24 |
|
@@ -29,8 +31,8 @@ class Request {
|
|
29 |
|
30 |
public function __construct() {
|
31 |
$this->method = $_SERVER['REQUEST_METHOD'];
|
32 |
-
$this->query = filter_input_array( INPUT_GET );
|
33 |
-
$this->request = filter_input_array( INPUT_POST );
|
34 |
}
|
35 |
|
36 |
/**
|
@@ -46,95 +48,68 @@ class Request {
|
|
46 |
* @return bool
|
47 |
*/
|
48 |
public function is_request() {
|
49 |
-
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
}
|
51 |
|
52 |
/**
|
53 |
* @return bool
|
54 |
*/
|
55 |
public function is_query() {
|
56 |
-
return
|
57 |
}
|
58 |
|
59 |
/**
|
60 |
-
* @return
|
61 |
*/
|
62 |
-
public function
|
63 |
-
return $this->
|
64 |
}
|
65 |
|
66 |
/**
|
67 |
-
*
|
68 |
-
*
|
69 |
-
* @param string|null $key
|
70 |
-
* @param int $filter
|
71 |
-
* @param array|null $options
|
72 |
-
*
|
73 |
-
* @return mixed
|
74 |
*/
|
75 |
-
public function
|
76 |
-
|
77 |
-
return $this->get_request( $key, $filter, $options );
|
78 |
-
}
|
79 |
-
|
80 |
-
return $this->get_query( $key, $filter, $options );
|
81 |
}
|
82 |
|
83 |
/**
|
84 |
-
*
|
85 |
*
|
86 |
-
* @
|
87 |
*/
|
88 |
-
public function
|
89 |
-
$
|
90 |
-
|
91 |
-
|
92 |
-
$target = 'request';
|
93 |
-
}
|
94 |
-
|
95 |
-
$this->$target = array_merge( $this->$target, $input );
|
96 |
}
|
97 |
|
98 |
/**
|
99 |
-
*
|
100 |
-
*
|
101 |
-
* @param string|null $key
|
102 |
-
* @param int $filter
|
103 |
-
* @param array|null $options
|
104 |
*
|
105 |
* @return mixed
|
106 |
*/
|
107 |
-
public function
|
108 |
-
|
109 |
-
return $this->request;
|
110 |
-
}
|
111 |
-
|
112 |
-
if ( ! isset( $this->request[ $key ] ) ) {
|
113 |
-
return false;
|
114 |
-
}
|
115 |
-
|
116 |
-
return filter_var( $this->request[ $key ], $filter, $options );
|
117 |
}
|
118 |
|
119 |
/**
|
120 |
-
*
|
121 |
-
*
|
122 |
-
* @param
|
123 |
-
* @param
|
124 |
-
* @param array|null $options
|
125 |
*
|
126 |
* @return mixed
|
127 |
*/
|
128 |
-
public function
|
129 |
-
|
130 |
-
return $this->query;
|
131 |
-
}
|
132 |
-
|
133 |
-
if ( ! isset( $this->query[ $key ] ) ) {
|
134 |
-
return false;
|
135 |
-
}
|
136 |
-
|
137 |
-
return filter_var( $this->query[ $key ], $filter, $options );
|
138 |
}
|
139 |
|
140 |
}
|
2 |
|
3 |
namespace AC;
|
4 |
|
5 |
+
use AC\Request\Parameters;
|
6 |
+
|
7 |
class Request {
|
8 |
|
9 |
const METHOD_POST = 'POST';
|
15 |
protected $method;
|
16 |
|
17 |
/**
|
18 |
+
* @var Parameters
|
19 |
*/
|
20 |
protected $query;
|
21 |
|
22 |
/**
|
23 |
+
* @var Parameters
|
24 |
*/
|
25 |
protected $request;
|
26 |
|
31 |
|
32 |
public function __construct() {
|
33 |
$this->method = $_SERVER['REQUEST_METHOD'];
|
34 |
+
$this->query = new Parameters( (array) filter_input_array( INPUT_GET ) );
|
35 |
+
$this->request = new Parameters( (array) filter_input_array( INPUT_POST ) );
|
36 |
}
|
37 |
|
38 |
/**
|
48 |
* @return bool
|
49 |
*/
|
50 |
public function is_request() {
|
51 |
+
return $this->request->count() > 0;
|
52 |
+
}
|
53 |
+
|
54 |
+
/**
|
55 |
+
* @return Parameters
|
56 |
+
*/
|
57 |
+
public function get_query() {
|
58 |
+
return $this->query;
|
59 |
}
|
60 |
|
61 |
/**
|
62 |
* @return bool
|
63 |
*/
|
64 |
public function is_query() {
|
65 |
+
return $this->request->count() > 0;
|
66 |
}
|
67 |
|
68 |
/**
|
69 |
+
* @return Parameters
|
70 |
*/
|
71 |
+
public function get_request() {
|
72 |
+
return $this->request;
|
73 |
}
|
74 |
|
75 |
/**
|
76 |
+
* @return string
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
*/
|
78 |
+
public function get_method() {
|
79 |
+
return $this->method;
|
|
|
|
|
|
|
|
|
80 |
}
|
81 |
|
82 |
/**
|
83 |
+
* Return the parameters based on the current method
|
84 |
*
|
85 |
+
* @return Parameters
|
86 |
*/
|
87 |
+
public function get_parameters() {
|
88 |
+
return $this->get_method() === self::METHOD_POST
|
89 |
+
? $this->get_request()
|
90 |
+
: $this->get_query();
|
|
|
|
|
|
|
|
|
91 |
}
|
92 |
|
93 |
/**
|
94 |
+
* @param string $key
|
95 |
+
* @param null $default
|
|
|
|
|
|
|
96 |
*
|
97 |
* @return mixed
|
98 |
*/
|
99 |
+
public function get( $key, $default = null ) {
|
100 |
+
return $this->get_parameters()->get( $key, $default );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
}
|
102 |
|
103 |
/**
|
104 |
+
* @param string $key
|
105 |
+
* @param null $default
|
106 |
+
* @param int $filter
|
107 |
+
* @param null $options
|
|
|
108 |
*
|
109 |
* @return mixed
|
110 |
*/
|
111 |
+
public function filter( $key, $default = null, $filter = FILTER_DEFAULT, $options = null ) {
|
112 |
+
return $this->get_parameters()->filter( $key, $default, $filter, $options );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
}
|
114 |
|
115 |
}
|
classes/Request/Parameters.php
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Request;
|
4 |
+
|
5 |
+
final class Parameters {
|
6 |
+
|
7 |
+
/**
|
8 |
+
* @var array
|
9 |
+
*/
|
10 |
+
private $parameters;
|
11 |
+
|
12 |
+
/**
|
13 |
+
* @param array $parameters
|
14 |
+
*/
|
15 |
+
public function __construct( array $parameters ) {
|
16 |
+
$this->parameters = $parameters;
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* @return array
|
21 |
+
*/
|
22 |
+
public function all() {
|
23 |
+
return $this->parameters;
|
24 |
+
}
|
25 |
+
|
26 |
+
/**
|
27 |
+
* @param string $key
|
28 |
+
* @param null $default
|
29 |
+
*
|
30 |
+
* @return mixed
|
31 |
+
*/
|
32 |
+
public function get( $key, $default = null ) {
|
33 |
+
return array_key_exists( $key, $this->parameters )
|
34 |
+
? $this->parameters[ $key ]
|
35 |
+
: $default;
|
36 |
+
}
|
37 |
+
|
38 |
+
/**
|
39 |
+
* @param string $key
|
40 |
+
* @param mixed $value
|
41 |
+
*/
|
42 |
+
public function set( $key, $value ) {
|
43 |
+
$this->parameters[ $key ] = $value;
|
44 |
+
}
|
45 |
+
|
46 |
+
/**
|
47 |
+
* @param string $key
|
48 |
+
*
|
49 |
+
* @return bool
|
50 |
+
*/
|
51 |
+
public function has( $key ) {
|
52 |
+
return array_key_exists( $key, $this->parameters );
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* @param string $key
|
57 |
+
*/
|
58 |
+
public function remove( $key ) {
|
59 |
+
unset( $this->parameters[ $key ] );
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* @param array $input
|
64 |
+
*/
|
65 |
+
public function merge( array $input ) {
|
66 |
+
$this->parameters = array_merge( $this->parameters, $input );
|
67 |
+
}
|
68 |
+
|
69 |
+
/**
|
70 |
+
* Wrapper account filter_var
|
71 |
+
*
|
72 |
+
* @param string $key
|
73 |
+
* @param null $default
|
74 |
+
* @param int $filter
|
75 |
+
* @param null $options
|
76 |
+
*
|
77 |
+
* @return mixed
|
78 |
+
*/
|
79 |
+
public function filter( $key, $default = null, $filter = FILTER_DEFAULT, $options = null ) {
|
80 |
+
$value = $this->get( $key, $default );
|
81 |
+
|
82 |
+
return filter_var( $value, $filter, $options );
|
83 |
+
}
|
84 |
+
|
85 |
+
/**
|
86 |
+
* @return int
|
87 |
+
*/
|
88 |
+
public function count() {
|
89 |
+
return count( $this->parameters );
|
90 |
+
}
|
91 |
+
|
92 |
+
}
|
classes/Response/Json.php
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Response;
|
4 |
+
|
5 |
+
use LogicException;
|
6 |
+
|
7 |
+
class Json {
|
8 |
+
|
9 |
+
const MESSAGE = 'message';
|
10 |
+
|
11 |
+
/**
|
12 |
+
* @var array
|
13 |
+
*/
|
14 |
+
protected $parameters = array();
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @var int
|
18 |
+
*/
|
19 |
+
protected $status_code;
|
20 |
+
|
21 |
+
public function send() {
|
22 |
+
if ( empty( $this->parameters ) ) {
|
23 |
+
throw new LogicException( 'Missing response body.' );
|
24 |
+
}
|
25 |
+
|
26 |
+
wp_send_json( $this->parameters, $this->status_code );
|
27 |
+
}
|
28 |
+
|
29 |
+
public function error() {
|
30 |
+
wp_send_json_error( $this->parameters, $this->status_code );
|
31 |
+
}
|
32 |
+
|
33 |
+
public function success() {
|
34 |
+
wp_send_json_success( $this->parameters, $this->status_code );
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* @param string $key
|
39 |
+
* @param mixed $value
|
40 |
+
*
|
41 |
+
* @return $this
|
42 |
+
*/
|
43 |
+
public function set_parameter( $key, $value ) {
|
44 |
+
$this->parameters[ $key ] = $value;
|
45 |
+
|
46 |
+
return $this;
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* @param array $values
|
51 |
+
*
|
52 |
+
* @return $this
|
53 |
+
*/
|
54 |
+
public function set_parameters( array $values ) {
|
55 |
+
foreach ( $values as $key => $value ) {
|
56 |
+
$this->set_parameter( $key, $value );
|
57 |
+
}
|
58 |
+
|
59 |
+
return $this;
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* @param string $message
|
64 |
+
*
|
65 |
+
* @return $this
|
66 |
+
*/
|
67 |
+
public function set_message( $message ) {
|
68 |
+
$this->set_parameter( self::MESSAGE, $message );
|
69 |
+
|
70 |
+
return $this;
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* @param int $code
|
75 |
+
*
|
76 |
+
* @return $this
|
77 |
+
*/
|
78 |
+
public function set_status_code( $code ) {
|
79 |
+
$this->status_code = $code;
|
80 |
+
|
81 |
+
return $this;
|
82 |
+
}
|
83 |
+
|
84 |
+
}
|
classes/Screen.php
CHANGED
@@ -4,7 +4,7 @@ namespace AC;
|
|
4 |
|
5 |
use WP_Screen;
|
6 |
|
7 |
-
class Screen {
|
8 |
|
9 |
/**
|
10 |
* @var WP_Screen
|
@@ -114,10 +114,17 @@ class Screen {
|
|
114 |
*/
|
115 |
public function is_admin_screen( $slug = null ) {
|
116 |
if ( null !== $slug ) {
|
117 |
-
return
|
118 |
}
|
119 |
|
120 |
-
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
}
|
122 |
|
123 |
}
|
4 |
|
5 |
use WP_Screen;
|
6 |
|
7 |
+
class Screen implements Registrable {
|
8 |
|
9 |
/**
|
10 |
* @var WP_Screen
|
114 |
*/
|
115 |
public function is_admin_screen( $slug = null ) {
|
116 |
if ( null !== $slug ) {
|
117 |
+
return $this->is_main_admin_screen() && $slug === filter_input( INPUT_GET, 'tab' );
|
118 |
}
|
119 |
|
120 |
+
return $this->is_main_admin_screen();
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* @return bool
|
125 |
+
*/
|
126 |
+
private function is_main_admin_screen() {
|
127 |
+
return $this->get_id() === 'settings_page_' . Admin::PLUGIN_PAGE;
|
128 |
}
|
129 |
|
130 |
}
|
classes/Screen/QuickEdit.php
CHANGED
@@ -4,8 +4,9 @@ namespace AC\Screen;
|
|
4 |
|
5 |
use AC\ListScreen;
|
6 |
use AC\ListScreenFactory;
|
|
|
7 |
|
8 |
-
class QuickEdit {
|
9 |
|
10 |
/**
|
11 |
* @var ListScreen
|
4 |
|
5 |
use AC\ListScreen;
|
6 |
use AC\ListScreenFactory;
|
7 |
+
use AC\Registrable;
|
8 |
|
9 |
+
class QuickEdit implements Registrable {
|
10 |
|
11 |
/**
|
12 |
* @var ListScreen
|
classes/ScreenController.php
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC;
|
4 |
+
|
5 |
+
class ScreenController {
|
6 |
+
|
7 |
+
/** @var ListScreen */
|
8 |
+
private $list_screen;
|
9 |
+
|
10 |
+
/** @var array */
|
11 |
+
private $headings = array();
|
12 |
+
|
13 |
+
/**
|
14 |
+
* @param ListScreen $list_screen
|
15 |
+
*/
|
16 |
+
public function __construct( ListScreen $list_screen ) {
|
17 |
+
$this->list_screen = $list_screen;
|
18 |
+
|
19 |
+
// Headings
|
20 |
+
add_filter( $this->list_screen->get_heading_hookname(), array( $this, 'add_headings' ), 200 );
|
21 |
+
|
22 |
+
// Values
|
23 |
+
$this->list_screen->set_manage_value_callback();
|
24 |
+
|
25 |
+
do_action( 'ac/table/list_screen', $this->list_screen );
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @since 2.0
|
30 |
+
*
|
31 |
+
* @param $columns
|
32 |
+
*
|
33 |
+
* @return array
|
34 |
+
*/
|
35 |
+
public function add_headings( $columns ) {
|
36 |
+
if ( empty( $columns ) ) {
|
37 |
+
return $columns;
|
38 |
+
}
|
39 |
+
|
40 |
+
// Store default headings
|
41 |
+
if ( ! AC()->is_doing_ajax() ) {
|
42 |
+
$this->list_screen->save_default_headings( $columns );
|
43 |
+
}
|
44 |
+
|
45 |
+
// Run once
|
46 |
+
if ( $this->headings ) {
|
47 |
+
return $this->headings;
|
48 |
+
}
|
49 |
+
|
50 |
+
// Nothing stored. Show default columns on screen.
|
51 |
+
if ( ! $this->list_screen->get_settings() ) {
|
52 |
+
return $columns;
|
53 |
+
}
|
54 |
+
|
55 |
+
// Add mandatory checkbox
|
56 |
+
if ( isset( $columns['cb'] ) ) {
|
57 |
+
$this->headings['cb'] = $columns['cb'];
|
58 |
+
}
|
59 |
+
|
60 |
+
// On first visit 'columns' can be empty, because they were put in memory before 'default headings'
|
61 |
+
// were stored. We force get_columns() to be re-populated.
|
62 |
+
if ( ! $this->list_screen->get_columns() ) {
|
63 |
+
$this->list_screen->reset();
|
64 |
+
$this->list_screen->reset_original_columns();
|
65 |
+
}
|
66 |
+
|
67 |
+
foreach ( $this->list_screen->get_columns() as $column ) {
|
68 |
+
$this->headings[ $column->get_name() ] = $column->get_custom_label();
|
69 |
+
}
|
70 |
+
|
71 |
+
return apply_filters( 'ac/headings', $this->headings, $this->list_screen );
|
72 |
+
}
|
73 |
+
|
74 |
+
}
|
classes/Settings.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC;
|
3 |
+
|
4 |
+
class Settings {
|
5 |
+
|
6 |
+
/** @var Settings\Admin[] */
|
7 |
+
private static $settings;
|
8 |
+
|
9 |
+
public static function register_setting( Settings\Admin $setting ) {
|
10 |
+
self::$settings[] = $setting;
|
11 |
+
}
|
12 |
+
|
13 |
+
public static function get_settings() {
|
14 |
+
return self::$settings;
|
15 |
+
}
|
16 |
+
|
17 |
+
}
|
classes/Settings/Admin.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Settings;
|
3 |
+
|
4 |
+
abstract class Admin {
|
5 |
+
|
6 |
+
/** @var string */
|
7 |
+
protected $name;
|
8 |
+
|
9 |
+
public function __construct( $name ) {
|
10 |
+
$this->name = $name;
|
11 |
+
}
|
12 |
+
|
13 |
+
/**
|
14 |
+
* @return string HTML
|
15 |
+
*/
|
16 |
+
abstract public function render();
|
17 |
+
|
18 |
+
}
|
classes/Settings/Admin/General.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Settings\Admin;
|
4 |
+
|
5 |
+
use AC;
|
6 |
+
use AC\Settings\Admin;
|
7 |
+
|
8 |
+
abstract class General extends Admin {
|
9 |
+
|
10 |
+
/** @var AC\Settings\General */
|
11 |
+
protected $settings;
|
12 |
+
|
13 |
+
public function __construct( $name ) {
|
14 |
+
$this->settings = new AC\Settings\General();
|
15 |
+
|
16 |
+
parent::__construct( $name );
|
17 |
+
}
|
18 |
+
|
19 |
+
protected function get_value() {
|
20 |
+
return $this->settings->get_option( $this->name );
|
21 |
+
}
|
22 |
+
|
23 |
+
}
|
classes/Settings/Admin/General/ShowEditButton.php
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Settings\Admin\General;
|
4 |
+
|
5 |
+
use AC\Form\Element\Checkbox;
|
6 |
+
use AC\Settings\Admin\General;
|
7 |
+
|
8 |
+
class ShowEditButton extends General {
|
9 |
+
|
10 |
+
public function __construct() {
|
11 |
+
parent::__construct( 'show_edit_button' );
|
12 |
+
}
|
13 |
+
|
14 |
+
protected function get_value() {
|
15 |
+
return $this->settings->is_empty() ? '1' : parent::get_value();
|
16 |
+
}
|
17 |
+
|
18 |
+
private function get_label() {
|
19 |
+
return sprintf( '%s %s',
|
20 |
+
sprintf( __( "Show %s button on table screen.", 'codepress-admin-columns' ), sprintf( '"%s"', __( 'Edit columns', 'codepress-admin-columns' ) ) ),
|
21 |
+
sprintf( __( "Default is %s.", 'codepress-admin-columns' ), '<code>' . __( 'on', 'codepress-admin-columns' ) . '</code>' )
|
22 |
+
);
|
23 |
+
}
|
24 |
+
|
25 |
+
public function show_button() {
|
26 |
+
return '1' === $this->get_value();
|
27 |
+
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @return string
|
31 |
+
*/
|
32 |
+
public function render() {
|
33 |
+
$name = sprintf( '%s[%s]', $this->settings->get_name(), $this->name );
|
34 |
+
|
35 |
+
$checkbox = new Checkbox( $name );
|
36 |
+
|
37 |
+
$checkbox->set_options( array( '1' => $this->get_label() ) )
|
38 |
+
->set_value( $this->get_value() );
|
39 |
+
|
40 |
+
return $checkbox->render();
|
41 |
+
}
|
42 |
+
|
43 |
+
}
|
classes/Settings/Column/DateTimeFormat.php
CHANGED
@@ -37,7 +37,11 @@ abstract class DateTimeFormat extends Settings\Column
|
|
37 |
}
|
38 |
|
39 |
if ( ! $description && current_user_can( 'manage_options' ) ) {
|
40 |
-
$description = sprintf(
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
|
43 |
return $this->get_html_label( $label, $date_format, $description );
|
37 |
}
|
38 |
|
39 |
if ( ! $description && current_user_can( 'manage_options' ) ) {
|
40 |
+
$description = sprintf(
|
41 |
+
__( 'The %s can be changed in %s.', 'codepress-admin-columns' ),
|
42 |
+
$label,
|
43 |
+
ac_helper()->html->link( ac_get_admin_url() . '#date_format_custom_radio', strtolower( __( 'General Settings' ) ) )
|
44 |
+
);
|
45 |
}
|
46 |
|
47 |
return $this->get_html_label( $label, $date_format, $description );
|
classes/Settings/General.php
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace AC\Settings;
|
3 |
+
|
4 |
+
use AC\Capabilities;
|
5 |
+
use AC\Registrable;
|
6 |
+
|
7 |
+
class General implements Registrable {
|
8 |
+
|
9 |
+
const SETTINGS_NAME = 'cpac_general_options';
|
10 |
+
const SETTINGS_GROUP = 'admin-columns-general-settings';
|
11 |
+
|
12 |
+
public function register() {
|
13 |
+
$this->register_setting();
|
14 |
+
|
15 |
+
add_filter( 'option_page_capability_' . self::SETTINGS_GROUP, array( $this, 'set_capability' ) );
|
16 |
+
}
|
17 |
+
|
18 |
+
public function register_setting() {
|
19 |
+
register_setting( self::SETTINGS_GROUP, self::SETTINGS_NAME );
|
20 |
+
}
|
21 |
+
|
22 |
+
/**
|
23 |
+
* @return string
|
24 |
+
*/
|
25 |
+
public function set_capability() {
|
26 |
+
return Capabilities::MANAGE;
|
27 |
+
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @return mixed
|
31 |
+
*/
|
32 |
+
public function get_options() {
|
33 |
+
return get_option( self::SETTINGS_NAME );
|
34 |
+
}
|
35 |
+
|
36 |
+
public function get_name() {
|
37 |
+
return self::SETTINGS_NAME;
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* @return bool
|
42 |
+
*/
|
43 |
+
public function is_empty() {
|
44 |
+
return false === $this->get_options();
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* @param string $key
|
49 |
+
*
|
50 |
+
* @return false|mixed
|
51 |
+
*/
|
52 |
+
public function get_option( $key ) {
|
53 |
+
$options = $this->get_options();
|
54 |
+
|
55 |
+
if ( ! $options || ! array_key_exists( $key, $options ) ) {
|
56 |
+
return false;
|
57 |
+
}
|
58 |
+
|
59 |
+
return $options[ $key ];
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Delete all options
|
64 |
+
*/
|
65 |
+
public function delete_options() {
|
66 |
+
delete_option( self::SETTINGS_NAME );
|
67 |
+
}
|
68 |
+
|
69 |
+
}
|
classes/Storage/KeyValuePair.php
CHANGED
@@ -4,10 +4,23 @@ namespace AC\Storage;
|
|
4 |
|
5 |
interface KeyValuePair {
|
6 |
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
8 |
|
|
|
|
|
|
|
|
|
|
|
9 |
public function save( $value );
|
10 |
|
|
|
|
|
|
|
11 |
public function delete();
|
12 |
|
13 |
}
|
4 |
|
5 |
interface KeyValuePair {
|
6 |
|
7 |
+
/**
|
8 |
+
* @param array $args
|
9 |
+
*
|
10 |
+
* @return mixed
|
11 |
+
*/
|
12 |
+
public function get( array $args = array() );
|
13 |
|
14 |
+
/**
|
15 |
+
* @param mixed $value
|
16 |
+
*
|
17 |
+
* @return bool
|
18 |
+
*/
|
19 |
public function save( $value );
|
20 |
|
21 |
+
/**
|
22 |
+
* @return bool
|
23 |
+
*/
|
24 |
public function delete();
|
25 |
|
26 |
}
|
classes/Storage/Option.php
CHANGED
@@ -2,25 +2,35 @@
|
|
2 |
|
3 |
namespace AC\Storage;
|
4 |
|
5 |
-
class Option
|
6 |
-
|
|
|
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 |
wp_cache_delete( $this->key, 'options' );
|
22 |
|
23 |
-
return get_option( $this->key );
|
24 |
}
|
25 |
|
26 |
/**
|
2 |
|
3 |
namespace AC\Storage;
|
4 |
|
5 |
+
class Option implements KeyValuePair {
|
6 |
+
|
7 |
+
const OPTION_DEFAULT = 'default';
|
8 |
|
9 |
/**
|
10 |
* @var string
|
11 |
*/
|
12 |
protected $key;
|
13 |
|
14 |
+
/**
|
15 |
+
* @param string $key
|
16 |
+
*/
|
17 |
public function __construct( $key ) {
|
18 |
$this->key = $key;
|
19 |
}
|
20 |
|
21 |
/**
|
22 |
+
* @param array $args
|
23 |
+
*
|
24 |
* @return mixed
|
25 |
*/
|
26 |
+
public function get( array $args = array() ) {
|
27 |
+
$args = array_merge( array(
|
28 |
+
self::OPTION_DEFAULT => false,
|
29 |
+
), $args );
|
30 |
+
|
31 |
wp_cache_delete( $this->key, 'options' );
|
32 |
|
33 |
+
return get_option( $this->key, $args[ self::OPTION_DEFAULT ] );
|
34 |
}
|
35 |
|
36 |
/**
|
classes/Storage/SiteOption.php
CHANGED
@@ -4,11 +4,21 @@ namespace AC\Storage;
|
|
4 |
|
5 |
class SiteOption extends Option {
|
6 |
|
|
|
|
|
7 |
/**
|
|
|
|
|
8 |
* @return mixed
|
9 |
*/
|
10 |
-
public function get() {
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
13 |
|
14 |
/**
|
4 |
|
5 |
class SiteOption extends Option {
|
6 |
|
7 |
+
const OPTION_DEFAULT = 'default';
|
8 |
+
|
9 |
/**
|
10 |
+
* @param array $args
|
11 |
+
*
|
12 |
* @return mixed
|
13 |
*/
|
14 |
+
public function get( array $args = array() ) {
|
15 |
+
$args = array_merge( array(
|
16 |
+
self::OPTION_DEFAULT => false,
|
17 |
+
), $args );
|
18 |
+
|
19 |
+
wp_cache_delete( $this->key, 'site-options' );
|
20 |
+
|
21 |
+
return get_site_option( $this->key, $args[ self::OPTION_DEFAULT ] );
|
22 |
}
|
23 |
|
24 |
/**
|
classes/Storage/Timestamp.php
CHANGED
@@ -6,14 +6,16 @@ use AC\Expirable;
|
|
6 |
use Exception;
|
7 |
use LogicException;
|
8 |
|
9 |
-
final class Timestamp
|
10 |
-
implements KeyValuePair, Expirable {
|
11 |
|
12 |
/**
|
13 |
* @var KeyValuePair
|
14 |
*/
|
15 |
private $storage;
|
16 |
|
|
|
|
|
|
|
17 |
public function __construct( KeyValuePair $storage ) {
|
18 |
$this->storage = $storage;
|
19 |
}
|
@@ -46,8 +48,13 @@ final class Timestamp
|
|
46 |
return preg_match( '/^[1-9][0-9]*$/', $value );
|
47 |
}
|
48 |
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
public function delete() {
|
@@ -62,7 +69,7 @@ final class Timestamp
|
|
62 |
*/
|
63 |
public function save( $value ) {
|
64 |
if ( ! $this->validate( $value ) ) {
|
65 |
-
throw new LogicException( 'Value needs to be a positive integer' );
|
66 |
}
|
67 |
|
68 |
return $this->storage->save( $value );
|
6 |
use Exception;
|
7 |
use LogicException;
|
8 |
|
9 |
+
final class Timestamp implements KeyValuePair, Expirable {
|
|
|
10 |
|
11 |
/**
|
12 |
* @var KeyValuePair
|
13 |
*/
|
14 |
private $storage;
|
15 |
|
16 |
+
/**
|
17 |
+
* @param KeyValuePair $storage
|
18 |
+
*/
|
19 |
public function __construct( KeyValuePair $storage ) {
|
20 |
$this->storage = $storage;
|
21 |
}
|
48 |
return preg_match( '/^[1-9][0-9]*$/', $value );
|
49 |
}
|
50 |
|
51 |
+
/**
|
52 |
+
* @param array $args
|
53 |
+
*
|
54 |
+
* @return mixed
|
55 |
+
*/
|
56 |
+
public function get( array $args = array() ) {
|
57 |
+
return $this->storage->get( $args );
|
58 |
}
|
59 |
|
60 |
public function delete() {
|
69 |
*/
|
70 |
public function save( $value ) {
|
71 |
if ( ! $this->validate( $value ) ) {
|
72 |
+
throw new LogicException( 'Value needs to be a positive integer.' );
|
73 |
}
|
74 |
|
75 |
return $this->storage->save( $value );
|
classes/Storage/Transaction.php
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace AC\Storage;
|
4 |
+
|
5 |
+
use LogicException;
|
6 |
+
use wpdb;
|
7 |
+
|
8 |
+
final class Transaction {
|
9 |
+
|
10 |
+
const START = 1;
|
11 |
+
const COMMIT = 2;
|
12 |
+
const ROLLBACK = 3;
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @var bool
|
16 |
+
*/
|
17 |
+
private $started = false;
|
18 |
+
|
19 |
+
/**
|
20 |
+
* @param bool $start Will start a transaction on creation if true
|
21 |
+
*/
|
22 |
+
public function __construct( $start = true ) {
|
23 |
+
if ( $start === true ) {
|
24 |
+
$this->start();
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @param integer $type
|
30 |
+
*/
|
31 |
+
private function statement( $type ) {
|
32 |
+
global $wpdb;
|
33 |
+
|
34 |
+
if ( ! $wpdb instanceof wpdb ) {
|
35 |
+
throw new LogicException( 'The WordPress database is not yet initialized.' );
|
36 |
+
}
|
37 |
+
|
38 |
+
switch ( $type ) {
|
39 |
+
case self::START:
|
40 |
+
$sql = 'START TRANSACTION';
|
41 |
+
|
42 |
+
break;
|
43 |
+
case self::COMMIT:
|
44 |
+
$sql = 'COMMIT';
|
45 |
+
|
46 |
+
break;
|
47 |
+
case self::ROLLBACK:
|
48 |
+
$sql = 'ROLLBACK';
|
49 |
+
|
50 |
+
break;
|
51 |
+
default:
|
52 |
+
throw new LogicException( sprintf( 'Found invalid transaction statement: %s.', $type ) );
|
53 |
+
}
|
54 |
+
|
55 |
+
$wpdb->hide_errors();
|
56 |
+
$wpdb->query( $sql );
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Start a MySQL transaction
|
61 |
+
*/
|
62 |
+
public function start() {
|
63 |
+
if ( $this->started ) {
|
64 |
+
throw new LogicException( 'Transaction has started already.' );
|
65 |
+
}
|
66 |
+
|
67 |
+
$this->started = true;
|
68 |
+
|
69 |
+
$this->statement( self::START );
|
70 |
+
}
|
71 |
+
|
72 |
+
/**
|
73 |
+
* Commit a MySQL transaction
|
74 |
+
*/
|
75 |
+
public function commit() {
|
76 |
+
$this->statement( self::COMMIT );
|
77 |
+
}
|
78 |
+
|
79 |
+
/**
|
80 |
+
* Rollback a MySQL transaction
|
81 |
+
*/
|
82 |
+
public function rollback() {
|
83 |
+
$this->statement( self::ROLLBACK );
|
84 |
+
}
|
85 |
+
|
86 |
+
}
|
classes/Storage/UserMeta.php
CHANGED
@@ -2,10 +2,11 @@
|
|
2 |
|
3 |
namespace AC\Storage;
|
4 |
|
5 |
-
use
|
6 |
|
7 |
-
class UserMeta
|
8 |
-
|
|
|
9 |
|
10 |
/**
|
11 |
* @var int
|
@@ -21,7 +22,7 @@ class UserMeta
|
|
21 |
* @param int $user_id
|
22 |
* @param string $key
|
23 |
*
|
24 |
-
* @throws
|
25 |
*/
|
26 |
public function __construct( $key, $user_id = null ) {
|
27 |
if ( null === $user_id ) {
|
@@ -29,7 +30,7 @@ class UserMeta
|
|
29 |
}
|
30 |
|
31 |
if ( ! preg_match( '/^[1-9][0-9]*$/', $user_id ) ) {
|
32 |
-
throw new
|
33 |
}
|
34 |
|
35 |
$this->user_id = $user_id;
|
@@ -37,10 +38,16 @@ class UserMeta
|
|
37 |
}
|
38 |
|
39 |
/**
|
|
|
|
|
40 |
* @return mixed
|
41 |
*/
|
42 |
-
public function get() {
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
|
46 |
/**
|
2 |
|
3 |
namespace AC\Storage;
|
4 |
|
5 |
+
use LogicException;
|
6 |
|
7 |
+
class UserMeta implements KeyValuePair {
|
8 |
+
|
9 |
+
const OPTION_SINGLE = 'single';
|
10 |
|
11 |
/**
|
12 |
* @var int
|
22 |
* @param int $user_id
|
23 |
* @param string $key
|
24 |
*
|
25 |
+
* @throws LogicException
|
26 |
*/
|
27 |
public function __construct( $key, $user_id = null ) {
|
28 |
if ( null === $user_id ) {
|
30 |
}
|
31 |
|
32 |
if ( ! preg_match( '/^[1-9][0-9]*$/', $user_id ) ) {
|
33 |
+
throw new LogicException( 'Storage cannot be initialized without a valid user id.' );
|
34 |
}
|
35 |
|
36 |
$this->user_id = $user_id;
|
38 |
}
|
39 |
|
40 |
/**
|
41 |
+
* @param array $args
|
42 |
+
*
|
43 |
* @return mixed
|
44 |
*/
|
45 |
+
public function get( array $args = array() ) {
|
46 |
+
$args = array_merge( array(
|
47 |
+
self::OPTION_SINGLE => true,
|
48 |
+
), $args );
|
49 |
+
|
50 |
+
return get_user_meta( $this->user_id, $this->key, $args[ self::OPTION_SINGLE ] );
|
51 |
}
|
52 |
|
53 |
/**
|
classes/Table/Screen.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
namespace AC\Table;
|
4 |
|
5 |
use AC;
|
6 |
-
use AC\Admin;
|
7 |
use AC\Capabilities;
|
8 |
use AC\Form;
|
9 |
use AC\ListScreen;
|
|
|
10 |
use AC\Settings;
|
11 |
|
12 |
-
final class Screen {
|
13 |
|
14 |
/**
|
15 |
* @var ListScreen $list_screen
|
@@ -26,24 +26,19 @@ final class Screen {
|
|
26 |
*/
|
27 |
private $buttons = array();
|
28 |
|
29 |
-
/**
|
30 |
-
* @var array $column_headings
|
31 |
-
*/
|
32 |
-
private $column_headings = array();
|
33 |
-
|
34 |
/**
|
35 |
* @param ListScreen $list_screen
|
36 |
*/
|
37 |
public function __construct( ListScreen $list_screen ) {
|
38 |
$this->list_screen = $list_screen;
|
39 |
-
|
40 |
-
$this->init();
|
41 |
}
|
42 |
|
43 |
/**
|
44 |
* Register hooks
|
45 |
*/
|
46 |
public function register() {
|
|
|
|
|
47 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
48 |
add_action( 'admin_footer', array( $this, 'admin_footer_scripts' ) );
|
49 |
add_action( 'admin_head', array( $this, 'admin_head_scripts' ) );
|
@@ -54,31 +49,6 @@ final class Screen {
|
|
54 |
add_filter( 'screen_settings', array( $this, 'screen_options' ) );
|
55 |
}
|
56 |
|
57 |
-
/**
|
58 |
-
*/
|
59 |
-
public function init() {
|
60 |
-
// Init Values
|
61 |
-
$this->list_screen->set_manage_value_callback();
|
62 |
-
|
63 |
-
/**
|
64 |
-
* Init Headings
|
65 |
-
* @see get_column_headers() for filter location
|
66 |
-
*/
|
67 |
-
add_filter( "manage_" . $this->list_screen->get_screen_id() . "_columns", array( $this, 'add_headings' ), 200 );
|
68 |
-
|
69 |
-
/**
|
70 |
-
* @since 3.0
|
71 |
-
*
|
72 |
-
* @param ListScreen
|
73 |
-
*/
|
74 |
-
do_action( 'ac/table/list_screen', $this->list_screen, $this );
|
75 |
-
|
76 |
-
/**
|
77 |
-
* @since 3.2.5
|
78 |
-
*/
|
79 |
-
do_action( 'ac/table', $this );
|
80 |
-
}
|
81 |
-
|
82 |
/**
|
83 |
* @return Button[]
|
84 |
*/
|
@@ -318,7 +288,9 @@ final class Screen {
|
|
318 |
/* @var Settings\Column\Width $setting */
|
319 |
$setting = $column->get_setting( 'width' );
|
320 |
|
321 |
-
|
|
|
|
|
322 |
$css_column_width .= ".ac-" . esc_attr( $this->list_screen->get_key() ) . " .wrap table th.column-" . esc_attr( $column->get_name() ) . " { width: " . $width . " !important; }";
|
323 |
$css_column_width .= "body.acp-overflow-table.ac-" . esc_attr( $this->list_screen->get_key() ) . " .wrap th.column-" . esc_attr( $column->get_name() ) . " { min-width: " . $width . " !important; }";
|
324 |
}
|
@@ -347,10 +319,9 @@ final class Screen {
|
|
347 |
return false;
|
348 |
}
|
349 |
|
350 |
-
|
351 |
-
$settings = AC()->admin()->get_page( 'settings' );
|
352 |
|
353 |
-
if ( ! $
|
354 |
return false;
|
355 |
}
|
356 |
|
@@ -389,52 +360,6 @@ final class Screen {
|
|
389 |
do_action( 'ac/admin_footer', $this->list_screen, $this );
|
390 |
}
|
391 |
|
392 |
-
/**
|
393 |
-
* @since 2.0
|
394 |
-
*
|
395 |
-
* @param $columns
|
396 |
-
*
|
397 |
-
* @return array
|
398 |
-
*/
|
399 |
-
public function add_headings( $columns ) {
|
400 |
-
if ( empty( $columns ) ) {
|
401 |
-
return $columns;
|
402 |
-
}
|
403 |
-
|
404 |
-
// Store default headings
|
405 |
-
if ( ! AC()->is_doing_ajax() ) {
|
406 |
-
$this->list_screen->save_default_headings( $columns );
|
407 |
-
}
|
408 |
-
|
409 |
-
// Run once
|
410 |
-
if ( $this->column_headings ) {
|
411 |
-
return $this->column_headings;
|
412 |
-
}
|
413 |
-
|
414 |
-
// Nothing stored. Show default columns on screen.
|
415 |
-
if ( ! $this->list_screen->get_settings() ) {
|
416 |
-
return $columns;
|
417 |
-
}
|
418 |
-
|
419 |
-
// Add mandatory checkbox
|
420 |
-
if ( isset( $columns['cb'] ) ) {
|
421 |
-
$this->column_headings['cb'] = $columns['cb'];
|
422 |
-
}
|
423 |
-
|
424 |
-
// On first visit 'columns' can be empty, because they were put in memory before 'default headings'
|
425 |
-
// were stored. We force get_columns() to be re-populated.
|
426 |
-
if ( ! $this->list_screen->get_columns() ) {
|
427 |
-
$this->list_screen->reset();
|
428 |
-
$this->list_screen->reset_original_columns();
|
429 |
-
}
|
430 |
-
|
431 |
-
foreach ( $this->list_screen->get_columns() as $column ) {
|
432 |
-
$this->column_headings[ $column->get_name() ] = $column->get_custom_label();
|
433 |
-
}
|
434 |
-
|
435 |
-
return apply_filters( 'ac/headings', $this->column_headings, $this->list_screen );
|
436 |
-
}
|
437 |
-
|
438 |
/**
|
439 |
* @since 3.2.5
|
440 |
*/
|
3 |
namespace AC\Table;
|
4 |
|
5 |
use AC;
|
|
|
6 |
use AC\Capabilities;
|
7 |
use AC\Form;
|
8 |
use AC\ListScreen;
|
9 |
+
use AC\Registrable;
|
10 |
use AC\Settings;
|
11 |
|
12 |
+
final class Screen implements Registrable {
|
13 |
|
14 |
/**
|
15 |
* @var ListScreen $list_screen
|
26 |
*/
|
27 |
private $buttons = array();
|
28 |
|
|
|
|
|
|
|
|
|
|
|
29 |
/**
|
30 |
* @param ListScreen $list_screen
|
31 |
*/
|
32 |
public function __construct( ListScreen $list_screen ) {
|
33 |
$this->list_screen = $list_screen;
|
|
|
|
|
34 |
}
|
35 |
|
36 |
/**
|
37 |
* Register hooks
|
38 |
*/
|
39 |
public function register() {
|
40 |
+
new AC\ScreenController( $this->list_screen );
|
41 |
+
|
42 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
|
43 |
add_action( 'admin_footer', array( $this, 'admin_footer_scripts' ) );
|
44 |
add_action( 'admin_head', array( $this, 'admin_head_scripts' ) );
|
49 |
add_filter( 'screen_settings', array( $this, 'screen_options' ) );
|
50 |
}
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
/**
|
53 |
* @return Button[]
|
54 |
*/
|
288 |
/* @var Settings\Column\Width $setting */
|
289 |
$setting = $column->get_setting( 'width' );
|
290 |
|
291 |
+
$width = $setting->get_display_width();
|
292 |
+
|
293 |
+
if ( $width ) {
|
294 |
$css_column_width .= ".ac-" . esc_attr( $this->list_screen->get_key() ) . " .wrap table th.column-" . esc_attr( $column->get_name() ) . " { width: " . $width . " !important; }";
|
295 |
$css_column_width .= "body.acp-overflow-table.ac-" . esc_attr( $this->list_screen->get_key() ) . " .wrap th.column-" . esc_attr( $column->get_name() ) . " { min-width: " . $width . " !important; }";
|
296 |
}
|
319 |
return false;
|
320 |
}
|
321 |
|
322 |
+
$button = new Settings\Admin\General\ShowEditButton();
|
|
|
323 |
|
324 |
+
if ( ! $button->show_button() ) {
|
325 |
return false;
|
326 |
}
|
327 |
|
360 |
do_action( 'ac/admin_footer', $this->list_screen, $this );
|
361 |
}
|
362 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
/**
|
364 |
* @since 3.2.5
|
365 |
*/
|
classes/ThirdParty/ACF.php
CHANGED
@@ -2,9 +2,11 @@
|
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
-
|
6 |
|
7 |
-
|
|
|
|
|
8 |
add_filter( 'ac/post_types', array( $this, 'remove_acf_field_group' ) );
|
9 |
}
|
10 |
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
+
use AC\Registrable;
|
6 |
|
7 |
+
class ACF implements Registrable {
|
8 |
+
|
9 |
+
public function register() {
|
10 |
add_filter( 'ac/post_types', array( $this, 'remove_acf_field_group' ) );
|
11 |
}
|
12 |
|
classes/ThirdParty/NinjaForms.php
CHANGED
@@ -2,9 +2,11 @@
|
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
-
|
6 |
|
7 |
-
|
|
|
|
|
8 |
add_filter( 'ac/post_types', array( $this, 'remove_nf_sub' ) );
|
9 |
}
|
10 |
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
+
use AC\Registrable;
|
6 |
|
7 |
+
class NinjaForms implements Registrable {
|
8 |
+
|
9 |
+
public function register() {
|
10 |
add_filter( 'ac/post_types', array( $this, 'remove_nf_sub' ) );
|
11 |
}
|
12 |
|
classes/ThirdParty/WPML.php
CHANGED
@@ -2,12 +2,14 @@
|
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
|
|
|
|
5 |
/**
|
6 |
* WPML compatibility
|
7 |
*/
|
8 |
-
class WPML {
|
9 |
|
10 |
-
function
|
11 |
|
12 |
// display correct flags on the overview screens
|
13 |
add_action( 'ac/table/list_screen', array( $this, 'replace_flags' ) );
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
+
use AC\Registrable;
|
6 |
+
|
7 |
/**
|
8 |
* WPML compatibility
|
9 |
*/
|
10 |
+
class WPML implements Registrable {
|
11 |
|
12 |
+
function register() {
|
13 |
|
14 |
// display correct flags on the overview screens
|
15 |
add_action( 'ac/table/list_screen', array( $this, 'replace_flags' ) );
|
classes/ThirdParty/WooCommerce.php
CHANGED
@@ -2,9 +2,11 @@
|
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
-
|
6 |
|
7 |
-
|
|
|
|
|
8 |
add_filter( 'ac/post_types', array( $this, 'remove_webhook' ) );
|
9 |
}
|
10 |
|
2 |
|
3 |
namespace AC\ThirdParty;
|
4 |
|
5 |
+
use AC\Registrable;
|
6 |
|
7 |
+
class WooCommerce implements Registrable {
|
8 |
+
|
9 |
+
public function register() {
|
10 |
add_filter( 'ac/post_types', array( $this, 'remove_webhook' ) );
|
11 |
}
|
12 |
|
classes/View.php
CHANGED
@@ -62,7 +62,7 @@ class View {
|
|
62 |
* Will try to resolve the current template to a file
|
63 |
* @return false|string
|
64 |
*/
|
65 |
-
|
66 |
|
67 |
/**
|
68 |
* Returns the available template paths for column settings
|
62 |
* Will try to resolve the current template to a file
|
63 |
* @return false|string
|
64 |
*/
|
65 |
+
public function resolve_template() {
|
66 |
|
67 |
/**
|
68 |
* Returns the available template paths for column settings
|
codepress-admin-columns.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Admin Columns
|
4 |
-
Version: 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
|
@@ -12,7 +12,7 @@ Domain Path: /languages
|
|
12 |
License: GPL v3
|
13 |
|
14 |
Admin Columns Plugin
|
15 |
-
Copyright (C) 2011-
|
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
|
@@ -36,7 +36,7 @@ if ( ! is_admin() ) {
|
|
36 |
}
|
37 |
|
38 |
define( 'AC_FILE', __FILE__ );
|
39 |
-
define( 'AC_VERSION', '3.
|
40 |
|
41 |
require_once __DIR__ . '/classes/Dependencies.php';
|
42 |
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Admin Columns
|
4 |
+
Version: 3.4.1
|
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
|
12 |
License: GPL v3
|
13 |
|
14 |
Admin Columns Plugin
|
15 |
+
Copyright (C) 2011-2019, 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
|
36 |
}
|
37 |
|
38 |
define( 'AC_FILE', __FILE__ );
|
39 |
+
define( 'AC_VERSION', '3.4.1' );
|
40 |
|
41 |
require_once __DIR__ . '/classes/Dependencies.php';
|
42 |
|
languages/codepress-admin-columns-ar_AR.mo
CHANGED
Binary file
|
languages/codepress-admin-columns-ar_AR.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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
msgstr ""
|
17 |
|
18 |
-
#:
|
19 |
-
msgid "
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: classes/
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s needs to be installed and
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: classes/Admin/Page/Addons.php:132
|
47 |
-
msgid "Activate %s here."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -721,93 +713,75 @@ msgstr ""
|
|
721 |
msgid "Help"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Close"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "Clear all columns "
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "I'm using Admin Columns for WordPress!"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your First Name"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Your Email"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Submit your email and we'll send you a discount for %s off."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Get %s Off!"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Extra Columns for:"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Edit your column content directly"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "Pro"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Columns.php:
|
765 |
msgid "You need at least one column"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Available"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "Recommended"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s could not be activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/Admin/Page/Addons.php:
|
781 |
msgid "%s successfully activated."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: classes/
|
785 |
-
msgid "
|
786 |
-
msgid_plural "%s add-ons requires %s."
|
787 |
-
msgstr[0] ""
|
788 |
-
msgstr[1] ""
|
789 |
-
msgstr[2] ""
|
790 |
-
msgstr[3] ""
|
791 |
-
msgstr[4] ""
|
792 |
-
msgstr[5] ""
|
793 |
-
|
794 |
-
#: classes/Admin/Page/Addons.php:129
|
795 |
-
msgid "%s is installed, but not active."
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: classes/Admin/Page/Addons.php:123
|
799 |
-
msgid "%s needs to be installed for the add-on to work."
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
#: classes/Admin/Addon.php:279
|
803 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: classes/
|
807 |
msgid "Toolset Types"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/
|
811 |
msgid "Pods"
|
812 |
msgstr ""
|
813 |
|
@@ -815,55 +789,55 @@ msgstr ""
|
|
815 |
msgid "Imported"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Learn more about Pro"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Import & Export settings"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Create multiple columns sets"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Add filterable columns"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Add sortable columns"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "Take Admin Columns to the next level:"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Upgrade to"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Please visit the %s screen once to load all available columns"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "Restore columns"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Settings for %s restored successfully."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: classes/Admin/Page/Columns.php:
|
863 |
msgid "View %s screen"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: classes/Admin/Page/Columns.php:
|
867 |
msgid "Invalid response."
|
868 |
msgstr "خطاء في الاستجابة."
|
869 |
|
@@ -875,23 +849,23 @@ msgstr ""
|
|
875 |
msgid "Link Label"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Admin/Page/Addons.php:
|
879 |
msgid "You need Admin Columns Pro."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Admin/Page/Addons.php:
|
883 |
msgid "Addon does not exist."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Check/AddonAvailable.php:
|
887 |
msgid "the addons page"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: classes/Check/AddonAvailable.php:
|
891 |
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!"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
895 |
msgid "Custom Fields"
|
896 |
msgstr "حقول مخصصة"
|
897 |
|
@@ -903,30 +877,30 @@ msgstr ""
|
|
903 |
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."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
907 |
#. Plugin URI of the plugin/theme
|
908 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
909 |
#. Author URI of the plugin/theme
|
910 |
msgid "https://www.admincolumns.com"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: classes/Admin/Page/Settings.php:
|
914 |
msgid "Edit columns"
|
915 |
msgstr "تحرير الأعمدة"
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "Upgrade"
|
919 |
msgstr "تحديث"
|
920 |
|
921 |
-
#: classes/Admin/Page/Columns.php:
|
922 |
msgid "Settings for %s updated successfully."
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: classes/Admin/Page/Columns.php:
|
926 |
msgid "You are trying to store the same settings for %s."
|
927 |
msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
|
928 |
|
929 |
-
#: classes/ListScreen.php:
|
930 |
msgid "No columns settings available."
|
931 |
msgstr "لا توجد إعدادات أعمدة متوفرة."
|
932 |
|
@@ -952,103 +926,103 @@ msgstr ""
|
|
952 |
msgid "Comments"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Get this add-on"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Download & Install"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Activate"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Installed"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: classes/Admin/Page/Addons.php:
|
972 |
msgid "Deactivate"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: classes/Admin/Page/Addons.php:
|
976 |
msgid "Active"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Add Column"
|
981 |
msgstr "أضف عمود"
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
989 |
msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Support"
|
993 |
msgstr "دعم"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Buy Pro"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
msgid "Tweet"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Rate"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
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!"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Woohoo! We're glad to hear that!"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Forums"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "Docs"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "What's wrong? Need help? Let us know!"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Are you happy with Admin Columns?"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Columns.php:
|
1040 |
msgid "Update"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Columns.php:
|
1044 |
msgid "Store settings"
|
1045 |
msgstr "حفظ الإعدادات"
|
1046 |
|
1047 |
-
#: classes/Admin/Page/Addons.php:
|
1048 |
msgid "Add-ons"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Settings"
|
1053 |
msgstr "الإعدادات"
|
1054 |
|
@@ -1056,32 +1030,32 @@ msgstr "الإعدادات"
|
|
1056 |
msgid "Others"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore default settings"
|
1065 |
msgstr "استرجاع الإعدادات الإفتراضية"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Settings.php:
|
1068 |
msgid "This will delete all column settings and restore the default settings."
|
1069 |
msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
|
1070 |
|
1071 |
-
#: classes/Admin/Page/Settings.php:
|
1072 |
msgid "Restore Settings"
|
1073 |
msgstr "استرجاع الإعدادات"
|
1074 |
|
1075 |
-
#: classes/Admin/Page/Columns.php:
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
msgid "Save"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: classes/Admin/Page/Settings.php:
|
1081 |
msgid "Customize your Admin Columns settings."
|
1082 |
msgstr "قم بتخصيص إعدادات Admin Columns."
|
1083 |
|
1084 |
-
#: classes/Admin/Page/Settings.php:
|
1085 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1086 |
msgid "General Settings"
|
1087 |
msgstr "إعدادات عامة"
|
@@ -1158,11 +1132,11 @@ msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضا
|
|
1158 |
msgid "Overview"
|
1159 |
msgstr "نظرة عامة"
|
1160 |
|
1161 |
-
#: classes/Admin/Page/Settings.php:
|
1162 |
msgid "Default settings successfully restored."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Columns.php:
|
1166 |
msgid "%s column is already present and can not be duplicated."
|
1167 |
msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
|
1168 |
|
@@ -1170,75 +1144,75 @@ msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
|
|
1170 |
msgid "Admin Columns Settings"
|
1171 |
msgstr "إعدادات Admin Columns"
|
1172 |
|
1173 |
-
#: classes/Admin/Page/Addons.php:
|
1174 |
msgid "%s successfully deactivated."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "find answers to frequently asked questions"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "Admin Columns forum on WordPress.org"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "You can also find help on the %s, and %s."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
msgid "our forum"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "documentation page"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
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."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "Permanently hide notice"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
msgid "Leave a review!"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Check/Review.php:
|
1210 |
msgid "click here"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: classes/Check/Review.php:
|
1214 |
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."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: classes/Admin/Page/Addons.php:
|
1218 |
msgid "Admin Columns Pro"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1222 |
#. Plugin Name of the plugin/theme
|
1223 |
-
#: classes/Admin/Page/Columns.php:
|
1224 |
-
#: classes/Check/Review.php:
|
1225 |
-
#: classes/Plugin/Updater.php:
|
1226 |
msgid "Admin Columns"
|
1227 |
msgstr "Admin Columns"
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
msgid "Find out more"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: classes/Column/Placeholder.php:
|
1238 |
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>."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: classes/Column/Placeholder.php:
|
1242 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1243 |
msgstr ""
|
1244 |
|
@@ -1258,11 +1232,11 @@ msgstr ""
|
|
1258 |
msgid "Edit Post"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: classes/Settings/Column/Label.php:
|
1262 |
msgid "This is the name which will appear as the column header."
|
1263 |
msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
|
1264 |
|
1265 |
-
#: classes/Settings/Column/Label.php:
|
1266 |
msgid "Label"
|
1267 |
msgstr "العنوان"
|
1268 |
|
@@ -1274,7 +1248,7 @@ msgstr ""
|
|
1274 |
msgid "Choose a column type."
|
1275 |
msgstr "اختر نوع عمود"
|
1276 |
|
1277 |
-
#: classes/Admin/Page/Columns.php:
|
1278 |
msgid "Clone"
|
1279 |
msgstr ""
|
1280 |
|
@@ -1323,7 +1297,7 @@ msgid "width"
|
|
1323 |
msgstr "عرض"
|
1324 |
|
1325 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1326 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1327 |
msgid "Custom"
|
1328 |
msgstr "مخصوص"
|
1329 |
|
@@ -1374,7 +1348,7 @@ msgstr "الاسم المستعار"
|
|
1374 |
msgid "Comment Count"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: classes/Admin/Page/Columns.php:
|
1378 |
msgid "Remove"
|
1379 |
msgstr "إزالة"
|
1380 |
|
@@ -1404,7 +1378,7 @@ msgstr "الحالة"
|
|
1404 |
|
1405 |
#: classes/Column/Post/Slug.php:14 classes/Settings/Column/Term.php:29
|
1406 |
msgid "Slug"
|
1407 |
-
msgstr "الاسم اللطيف"
|
1408 |
|
1409 |
#: classes/Column/Post/Shortcodes.php:15
|
1410 |
msgid "Shortcodes"
|
@@ -1564,11 +1538,11 @@ msgstr ""
|
|
1564 |
msgid "Relative to domain"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: classes/Settings/Column/PathScope.php:
|
1568 |
msgid "Part of the file path to display"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: classes/Settings/Column/PathScope.php:
|
1572 |
msgid "Path scope"
|
1573 |
msgstr ""
|
1574 |
|
@@ -1629,7 +1603,7 @@ msgstr "شرح"
|
|
1629 |
msgid "Available Sizes"
|
1630 |
msgstr "الأحجام المتوفرة"
|
1631 |
|
1632 |
-
#: classes/Admin/Page/Columns.php:
|
1633 |
msgid "View"
|
1634 |
msgstr "عرض"
|
1635 |
|
@@ -1686,7 +1660,7 @@ msgstr "لون"
|
|
1686 |
#: classes/Admin/Help/CustomField.php:22
|
1687 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1688 |
#: classes/Settings/Column/Image.php:72
|
1689 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1690 |
msgid "Default"
|
1691 |
msgstr "إفتراضي"
|
1692 |
|
@@ -1773,7 +1747,7 @@ msgstr "موافق عليه"
|
|
1773 |
msgid "Agent"
|
1774 |
msgstr "عميل"
|
1775 |
|
1776 |
-
#: classes/Admin/Page/Columns.php:
|
1777 |
msgid "Edit"
|
1778 |
msgstr "تحرير"
|
1779 |
|
@@ -1783,7 +1757,7 @@ msgstr "تحرير"
|
|
1783 |
msgid "ID"
|
1784 |
msgstr "رقم"
|
1785 |
|
1786 |
-
#: classes/Admin/Page/Columns.php:
|
1787 |
#: classes/Settings/Column/ActionIcons.php:23
|
1788 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1789 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1792,7 +1766,7 @@ msgstr "رقم"
|
|
1792 |
msgid "No"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: classes/Admin/Page/Columns.php:
|
1796 |
#: classes/Settings/Column/ActionIcons.php:22
|
1797 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1798 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1813,18 +1787,18 @@ msgstr ""
|
|
1813 |
msgid "Actions"
|
1814 |
msgstr "تطبيقات"
|
1815 |
|
1816 |
-
#: classes/
|
1817 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: classes/
|
1821 |
msgid "WooCommerce"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: classes/
|
1825 |
msgid "Advanced Custom Fields"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: classes/Admin/Page/Addons.php:
|
1829 |
msgid "Plugins"
|
1830 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2019-02-15 13:59:17+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: ar\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
|
|
|
|
|
|
|
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
713 |
msgid "Help"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
717 |
msgid "Close"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:756
|
721 |
msgid "Clear all columns "
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:667
|
725 |
msgid "I'm using Admin Columns for WordPress!"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:609
|
729 |
msgid "Your First Name"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:608
|
733 |
msgid "Your Email"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:601
|
737 |
msgid "Submit your email and we'll send you a discount for %s off."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
741 |
msgid "Get %s Off!"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:562
|
745 |
msgid "Extra Columns for:"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:545
|
749 |
msgid "Edit your column content directly"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:533
|
753 |
msgid "Pro"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Columns.php:297
|
757 |
msgid "You need at least one column"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:256
|
761 |
msgid "Available"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:255
|
765 |
msgid "Recommended"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:114
|
769 |
msgid "%s could not be activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Admin/Page/Addons.php:106
|
773 |
msgid "%s successfully activated."
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:15
|
777 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Types.php:13
|
781 |
msgid "Toolset Types"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: classes/Integration/Pods.php:13
|
785 |
msgid "Pods"
|
786 |
msgstr ""
|
787 |
|
789 |
msgid "Imported"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:580
|
793 |
msgid "Learn more about Pro"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:547
|
797 |
msgid "Import & Export settings"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:546
|
801 |
msgid "Create multiple columns sets"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:544
|
805 |
msgid "Add filterable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:543
|
809 |
msgid "Add sortable columns"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:538
|
813 |
msgid "Take Admin Columns to the next level:"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:533
|
817 |
msgid "Upgrade to"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:428
|
821 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:218
|
825 |
msgid "Please visit the %s screen once to load all available columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:514
|
829 |
msgid "Restore columns"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:145
|
833 |
msgid "Settings for %s restored successfully."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:304
|
837 |
msgid "View %s screen"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: classes/Admin/Page/Columns.php:84
|
841 |
msgid "Invalid response."
|
842 |
msgstr "خطاء في الاستجابة."
|
843 |
|
849 |
msgid "Link Label"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:180
|
853 |
msgid "You need Admin Columns Pro."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Admin/Page/Addons.php:188
|
857 |
msgid "Addon does not exist."
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:86
|
861 |
msgid "the addons page"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Check/AddonAvailable.php:82
|
865 |
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!"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
869 |
msgid "Custom Fields"
|
870 |
msgstr "حقول مخصصة"
|
871 |
|
877 |
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."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
881 |
#. Plugin URI of the plugin/theme
|
882 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
883 |
#. Author URI of the plugin/theme
|
884 |
msgid "https://www.admincolumns.com"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
888 |
msgid "Edit columns"
|
889 |
msgstr "تحرير الأعمدة"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:955
|
892 |
msgid "Upgrade"
|
893 |
msgstr "تحديث"
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:324
|
896 |
msgid "Settings for %s updated successfully."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: classes/Admin/Page/Columns.php:311
|
900 |
msgid "You are trying to store the same settings for %s."
|
901 |
msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
|
902 |
|
903 |
+
#: classes/ListScreen.php:719
|
904 |
msgid "No columns settings available."
|
905 |
msgstr "لا توجد إعدادات أعمدة متوفرة."
|
906 |
|
926 |
msgid "Comments"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:441
|
930 |
msgid "Get this add-on"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:438
|
934 |
msgid "Download & Install"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:432
|
938 |
msgid "Activate"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:254
|
942 |
msgid "Installed"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:428
|
946 |
msgid "Deactivate"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: classes/Admin/Page/Addons.php:425
|
950 |
msgid "Active"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:762
|
954 |
msgid "Add Column"
|
955 |
msgstr "أضف عمود"
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:695
|
958 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:691
|
962 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
963 |
msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:686
|
966 |
msgid "Support"
|
967 |
msgstr "دعم"
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:674
|
970 |
msgid "Buy Pro"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:668
|
974 |
msgid "Tweet"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:662
|
978 |
msgid "Rate"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:657
|
982 |
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!"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:654
|
986 |
msgid "Woohoo! We're glad to hear that!"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:644
|
990 |
msgid "Forums"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:639
|
994 |
msgid "Docs"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:634
|
998 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:631
|
1002 |
msgid "What's wrong? Need help? Let us know!"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:621
|
1006 |
msgid "Are you happy with Admin Columns?"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:513
|
1010 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1014 |
msgid "Update"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Columns.php:491
|
1018 |
msgid "Store settings"
|
1019 |
msgstr "حفظ الإعدادات"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Addons.php:15
|
1022 |
msgid "Add-ons"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1026 |
msgid "Settings"
|
1027 |
msgstr "الإعدادات"
|
1028 |
|
1030 |
msgid "Others"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:241
|
1038 |
msgid "Restore default settings"
|
1039 |
msgstr "استرجاع الإعدادات الإفتراضية"
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:233
|
1042 |
msgid "This will delete all column settings and restore the default settings."
|
1043 |
msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Settings.php:232
|
1046 |
msgid "Restore Settings"
|
1047 |
msgstr "استرجاع الإعدادات"
|
1048 |
|
1049 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1050 |
+
#: classes/Admin/Page/Settings.php:191
|
1051 |
msgid "Save"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:173
|
1055 |
msgid "Customize your Admin Columns settings."
|
1056 |
msgstr "قم بتخصيص إعدادات Admin Columns."
|
1057 |
|
1058 |
+
#: classes/Admin/Page/Settings.php:172
|
1059 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1060 |
msgid "General Settings"
|
1061 |
msgstr "إعدادات عامة"
|
1132 |
msgid "Overview"
|
1133 |
msgstr "نظرة عامة"
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Settings.php:112
|
1136 |
msgid "Default settings successfully restored."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1140 |
msgid "%s column is already present and can not be duplicated."
|
1141 |
msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
|
1142 |
|
1144 |
msgid "Admin Columns Settings"
|
1145 |
msgstr "إعدادات Admin Columns"
|
1146 |
|
1147 |
+
#: classes/Admin/Page/Addons.php:137
|
1148 |
msgid "%s successfully deactivated."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:166
|
1152 |
msgid "find answers to frequently asked questions"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:165
|
1156 |
msgid "Admin Columns forum on WordPress.org"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:164
|
1160 |
msgid "You can also find help on the %s, and %s."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:160
|
1164 |
msgid "our forum"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:154
|
1168 |
msgid "documentation page"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:152
|
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."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:143
|
1176 |
msgid "Permanently hide notice"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:142
|
1180 |
msgid "Leave a review!"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:138
|
1184 |
msgid "click here"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Check/Review.php:134
|
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:35 classes/Check/Review.php:125
|
1192 |
msgid "Admin Columns Pro"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1196 |
#. Plugin Name of the plugin/theme
|
1197 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1198 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1199 |
+
#: classes/Plugin/Updater.php:116
|
1200 |
msgid "Admin Columns"
|
1201 |
msgstr "Admin Columns"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:50
|
1204 |
msgid "Find out more"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:47
|
1208 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:43
|
1212 |
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>."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: classes/Column/Placeholder.php:39
|
1216 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1217 |
msgstr ""
|
1218 |
|
1232 |
msgid "Edit Post"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:30
|
1236 |
msgid "This is the name which will appear as the column header."
|
1237 |
msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
|
1238 |
|
1239 |
+
#: classes/Settings/Column/Label.php:29
|
1240 |
msgid "Label"
|
1241 |
msgstr "العنوان"
|
1242 |
|
1248 |
msgid "Choose a column type."
|
1249 |
msgstr "اختر نوع عمود"
|
1250 |
|
1251 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1252 |
msgid "Clone"
|
1253 |
msgstr ""
|
1254 |
|
1297 |
msgstr "عرض"
|
1298 |
|
1299 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1300 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1301 |
msgid "Custom"
|
1302 |
msgstr "مخصوص"
|
1303 |
|
1348 |
msgid "Comment Count"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1352 |
msgid "Remove"
|
1353 |
msgstr "إزالة"
|
1354 |
|
1378 |
|
1379 |
#: classes/Column/Post/Slug.php:14 classes/Settings/Column/Term.php:29
|
1380 |
msgid "Slug"
|
1381 |
+
msgstr "الاسم اللطيف (Slug)"
|
1382 |
|
1383 |
#: classes/Column/Post/Shortcodes.php:15
|
1384 |
msgid "Shortcodes"
|
1538 |
msgid "Relative to domain"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: classes/Settings/Column/PathScope.php:33
|
1542 |
msgid "Part of the file path to display"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: classes/Settings/Column/PathScope.php:32
|
1546 |
msgid "Path scope"
|
1547 |
msgstr ""
|
1548 |
|
1603 |
msgid "Available Sizes"
|
1604 |
msgstr "الأحجام المتوفرة"
|
1605 |
|
1606 |
+
#: classes/Admin/Page/Columns.php:477
|
1607 |
msgid "View"
|
1608 |
msgstr "عرض"
|
1609 |
|
1660 |
#: classes/Admin/Help/CustomField.php:22
|
1661 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1662 |
#: classes/Settings/Column/Image.php:72
|
1663 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1664 |
msgid "Default"
|
1665 |
msgstr "إفتراضي"
|
1666 |
|
1747 |
msgid "Agent"
|
1748 |
msgstr "عميل"
|
1749 |
|
1750 |
+
#: classes/Admin/Page/Columns.php:876
|
1751 |
msgid "Edit"
|
1752 |
msgstr "تحرير"
|
1753 |
|
1757 |
msgid "ID"
|
1758 |
msgstr "رقم"
|
1759 |
|
1760 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1761 |
#: classes/Settings/Column/ActionIcons.php:23
|
1762 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1763 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1766 |
msgid "No"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1770 |
#: classes/Settings/Column/ActionIcons.php:22
|
1771 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1772 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1787 |
msgid "Actions"
|
1788 |
msgstr "تطبيقات"
|
1789 |
|
1790 |
+
#: classes/Integration/WooCommerce.php:17
|
1791 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: classes/Integration/WooCommerce.php:15
|
1795 |
msgid "WooCommerce"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: classes/Integration/ACF.php:13
|
1799 |
msgid "Advanced Custom Fields"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1803 |
msgid "Plugins"
|
1804 |
msgstr ""
|
languages/codepress-admin-columns-bt_BR.mo
CHANGED
Binary file
|
languages/codepress-admin-columns-bt_BR.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: pt_BR\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr "Incluir os tamanhos que estão faltando um arquivo de imagem."
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr "Incluir os tamanhos ausentes?"
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr "Opções do site"
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr "atual"
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr "Site da rede:"
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr "Oculto"
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr "Público"
|
255 |
|
@@ -277,11 +273,11 @@ msgstr "Contagem"
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr "Miniaturas"
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr "Fazer a atualização"
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr "Precisamos atualizar seu banco de dados para a versão mais recente."
|
287 |
|
@@ -329,18 +325,14 @@ msgstr "original"
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr "Texto alternativo"
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr "Visite a página %s."
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr "Ninja Forms"
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr "The Events Calendar"
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr "Protegido por senha"
|
@@ -386,19 +378,19 @@ msgstr "O resumo está vazio."
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr "Apelido do usuário"
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr "Me mande o desconto"
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr "Preços a partir de %s"
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr "Exibir qualquer um dos seus campos de perfil do BuddyPress na visão geral dos usuários."
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr "BuddyPress"
|
404 |
|
@@ -406,19 +398,19 @@ msgstr "BuddyPress"
|
|
406 |
msgid "View more"
|
407 |
msgstr "Ver mais"
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr "Método inválido."
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr "Coluna inválida."
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr "Tela de listagem inválida."
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr "ID do item inválido."
|
424 |
|
@@ -477,7 +469,7 @@ msgstr "Texto simples"
|
|
477 |
msgid "Password"
|
478 |
msgstr "Senha"
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr "Não há campos disponíveis."
|
483 |
|
@@ -584,7 +576,7 @@ msgstr "Número"
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr "Campo"
|
590 |
|
@@ -611,7 +603,7 @@ msgstr "Opções de exibição"
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr "Esse texto será exibido após o valor da coluna."
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr " ou "
|
617 |
|
@@ -635,7 +627,7 @@ msgstr "Exibir ferramentas"
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr "Link curto"
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ", "
|
641 |
|
@@ -651,27 +643,27 @@ msgstr "Caminho completo"
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr "Desconto válido até %s"
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr "Mostrar o botão de %s na tela da tabela."
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr "Padrão é %s."
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr "ligado"
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr "desligado"
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr "Aviso"
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr "Instruções"
|
677 |
|
@@ -717,89 +709,75 @@ msgstr "Filtros obsoletos"
|
|
717 |
msgid "Help"
|
718 |
msgstr "Ajuda"
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr "Fechar"
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr "Limpar todas as colunas "
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr "Estou usando o Admin Columns para WordPress!"
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr "Seu nome"
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr "Seu Email"
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr "Mande seu e-mail e nós te enviaremos um desconto de %s."
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr "Ganhe %s de desconto!"
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr "Colunas extras para:"
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr "Edite o conteúdo da coluna diretamente"
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr "Pro"
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr "Você precisa de pelo menos uma coluna"
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr "Disponível"
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr "Recomendado"
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr "%s não pôde ser ativado."
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr "%s ativado com sucesso."
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] "%s complemento requer o %s."
|
784 |
-
msgstr[1] "%s complementos requerem o %s."
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: classes/
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
-
msgstr "Exibir e editar campos do %s na tela de posts em segundos!"
|
797 |
-
|
798 |
-
#: classes/Admin/Addon/Types.php:13
|
799 |
msgid "Toolset Types"
|
800 |
msgstr "Toolset Types"
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr "Pods"
|
805 |
|
@@ -807,55 +785,55 @@ msgstr "Pods"
|
|
807 |
msgid "Imported"
|
808 |
msgstr "Importado"
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr "Saiba mais sobre a versão Pro"
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr "Configurações de importação & exportação"
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr "Criar vários conjuntos de colunas"
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr "Adicionar colunas filtráveis"
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr "Adicionar colunas ordenáveis"
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr "Leve o Admin Columns para o próximo nível:"
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr "Atualize para"
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr "As colunas para %s são configuradas via PHP e, portanto, não podem ser editadas."
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr "Por favor visite a tela de %s para carregar todas as colunas disponíveis"
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr "Restaurar colunas"
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr "Configurações para %s restauradas com sucesso."
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr "Ver tela de %s"
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr "Resposta inválida."
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr "Rótulo do link"
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr "Você precisa do Admin Columns Pro."
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr "O complemento não existe."
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr "a página de complementos"
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
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!"
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Campos personalizados"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr "AdminColumns.com"
|
|
895 |
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."
|
896 |
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."
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr "https://www.admincolumns.com"
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Editar colunas"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Atualizar"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr "Configurações para %s atualizado."
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "Você está tentando armazenar as mesmas configurações para %s."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "Nenhuma configuração de colunas disponível."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "Comentário"
|
|
944 |
msgid "Comments"
|
945 |
msgstr "Comentários"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr "Obter este complemento"
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr "Baixar e instalar"
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Ativado"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr "Instalado"
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Desativar"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Ativar"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Adicionar coluna"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Suporte"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr "Comprar a versão Pro"
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr "Twittar"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr "Avaliar"
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr "Nós realmente adoraríamos se você pudesse mostrar seu apreço nos avaliando no WordPress.org ou twittando sobre o Admin Columns!"
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr "Uhuu! Estamos felizes em saber disto!"
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr "Forums"
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr "Docs"
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr "Algum problema? Precisa de ajuda? Fale conosco!"
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr "Você está feliz com o Admin Columns?"
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
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"
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Atualizar"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Armazenar configurações"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr "Complementos"
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Configurações"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Configurações"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr "Outros"
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
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"
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Restaurar configuração padrão"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr "Isto irá apagar todas as configurações de coluna e restaurar as configurações padrão."
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Restaurar Configurações"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Salvar"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Personalize as configurações do Admin Columns."
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Configurações gerais"
|
@@ -1150,11 +1128,11 @@ msgstr "Esse plugin serve para adicionar e remover colunas adicionais nas telas
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Visão geral"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "A coluna %s já está inclusa e não pode ser duplicada."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "A coluna %s já está inclusa e não pode ser duplicada."
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Configurações do Admin Columns"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr "%s desativado com sucesso."
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr "Você também pode encontrar ajuda no %s e %s."
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr "página de documentação"
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr "Lamentamos saber disso; mas talvez nós possamos te ajudar! Se você estiver com problemas para configurar o %s ou se estiver precisando de ajuda com recursos mais avançados, visite nosso %s."
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr "Esconder permanentemente o aviso"
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr "Deixe uma avaliação!"
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr "clique aqui"
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
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."
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr "Admin Columns Pro"
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr "Saiba mais"
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr "Admin Columns Pro oferece integração completa com o %s, permitindo a você facilmente exibir e editar campos do %s direto da sua tela principal."
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr "Se você tem uma licença de desenvolvedor, faça o download e instale o complemento do %s a partir da <a href='%s'>aba de complementos</a>."
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr "%s só está disponível no Admin Columns Pro - Business ou Developer."
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr "Ver post"
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "Editar post"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "Este é o nome que aparecerá como o cabeçalho de coluna."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Rótulo"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Nome"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Escolha um tipo de coluna."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr "Clonar"
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "largura"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Personalizado"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Apelido"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr "Nº de comentários"
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Remover"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr "Relativo ao domínio"
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr "Parte do caminho do arquivo a exibir"
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr "Escopo do caminho"
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Legenda"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Tamanhos disponíveis"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Ver"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Cor"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Padrão"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Aprovado"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Agente"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Editar"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Editar"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "Não"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr "Usar ícones?"
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Ações"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr "Melhore a visualização dos produtos, pedidos e cupons com novas colunas e edição imediata."
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "WooCommerce"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr "Advanced Custom Fields"
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr "Plugins"
|
11 |
"Language: pt_BR\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr "Incluir os tamanhos ausentes?"
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr "Opções do site"
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr "atual"
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr "Site da rede:"
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr "Oculto"
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr "Público"
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr "Miniaturas"
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr "Fazer a atualização"
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr "Precisamos atualizar seu banco de dados para a versão mais recente."
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr "Texto alternativo"
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr "Visite a página %s."
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr "Ninja Forms"
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr "Protegido por senha"
|
378 |
msgid "User Nicename"
|
379 |
msgstr "Apelido do usuário"
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr "Me mande o desconto"
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr "Preços a partir de %s"
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr "Exibir qualquer um dos seus campos de perfil do BuddyPress na visão geral dos usuários."
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr "BuddyPress"
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr "Ver mais"
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr "Método inválido."
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr "Coluna inválida."
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr "Tela de listagem inválida."
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr "ID do item inválido."
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr "Senha"
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr "Não há campos disponíveis."
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr "Campo"
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr "Esse texto será exibido após o valor da coluna."
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr " ou "
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr "Link curto"
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ", "
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr "Desconto válido até %s"
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr "Mostrar o botão de %s na tela da tabela."
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr "Padrão é %s."
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr "ligado"
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr "desligado"
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr "Aviso"
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr "Instruções"
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr "Ajuda"
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr "Fechar"
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr "Limpar todas as colunas "
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr "Estou usando o Admin Columns para WordPress!"
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr "Seu nome"
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr "Seu Email"
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr "Mande seu e-mail e nós te enviaremos um desconto de %s."
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr "Ganhe %s de desconto!"
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr "Colunas extras para:"
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr "Edite o conteúdo da coluna diretamente"
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr "Pro"
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr "Você precisa de pelo menos uma coluna"
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr "Disponível"
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr "Recomendado"
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr "%s não pôde ser ativado."
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr "%s ativado com sucesso."
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
|
|
|
|
|
|
|
|
777 |
msgid "Toolset Types"
|
778 |
msgstr "Toolset Types"
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr "Pods"
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr "Importado"
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr "Saiba mais sobre a versão Pro"
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr "Configurações de importação & exportação"
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr "Criar vários conjuntos de colunas"
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr "Adicionar colunas filtráveis"
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr "Adicionar colunas ordenáveis"
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr "Leve o Admin Columns para o próximo nível:"
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr "Atualize para"
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr "As colunas para %s são configuradas via PHP e, portanto, não podem ser editadas."
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr "Por favor visite a tela de %s para carregar todas as colunas disponíveis"
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr "Restaurar colunas"
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr "Configurações para %s restauradas com sucesso."
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr "Ver tela de %s"
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr "Resposta inválida."
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr "Rótulo do link"
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr "Você precisa do Admin Columns Pro."
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr "O complemento não existe."
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr "a página de complementos"
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
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!"
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Campos personalizados"
|
867 |
|
873 |
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."
|
874 |
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."
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr "https://www.admincolumns.com"
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Editar colunas"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Atualizar"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr "Configurações para %s atualizado."
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "Você está tentando armazenar as mesmas configurações para %s."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "Nenhuma configuração de colunas disponível."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "Comentários"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr "Obter este complemento"
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr "Baixar e instalar"
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Ativado"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr "Instalado"
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Desativar"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Ativar"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Adicionar coluna"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Suporte"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr "Comprar a versão Pro"
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr "Twittar"
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr "Avaliar"
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr "Nós realmente adoraríamos se você pudesse mostrar seu apreço nos avaliando no WordPress.org ou twittando sobre o Admin Columns!"
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr "Uhuu! Estamos felizes em saber disto!"
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr "Forums"
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr "Docs"
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr "Confira a nossa extensa documentação, ou você pode abrir um tópico de suporte no WordPress.org!"
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr "Algum problema? Precisa de ajuda? Fale conosco!"
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr "Você está feliz com o Admin Columns?"
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
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"
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Atualizar"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Armazenar configurações"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr "Complementos"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Configurações"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr "Outros"
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
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"
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Restaurar configuração padrão"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr "Isto irá apagar todas as configurações de coluna e restaurar as configurações padrão."
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Restaurar Configurações"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Salvar"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Personalize as configurações do Admin Columns."
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Configurações gerais"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Visão geral"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
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 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Configurações do Admin Columns"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr "%s desativado com sucesso."
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr "Você também pode encontrar ajuda no %s e %s."
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr "página de documentação"
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr "Lamentamos saber disso; mas talvez nós possamos te ajudar! Se você estiver com problemas para configurar o %s ou se estiver precisando de ajuda com recursos mais avançados, visite nosso %s."
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr "Esconder permanentemente o aviso"
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr "Deixe uma avaliação!"
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr "clique aqui"
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
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."
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr "Admin Columns Pro"
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr "Saiba mais"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr "Admin Columns Pro oferece integração completa com o %s, permitindo a você facilmente exibir e editar campos do %s direto da sua tela principal."
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr "Se você tem uma licença de desenvolvedor, faça o download e instale o complemento do %s a partir da <a href='%s'>aba de complementos</a>."
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr "%s só está disponível no Admin Columns Pro - Business ou Developer."
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "Editar post"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "Este é o nome que aparecerá como o cabeçalho de coluna."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Rótulo"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Escolha um tipo de coluna."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr "Clonar"
|
1250 |
|
1293 |
msgstr "largura"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Personalizado"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr "Nº de comentários"
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Remover"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr "Relativo ao domínio"
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr "Parte do caminho do arquivo a exibir"
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr "Escopo do caminho"
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Tamanhos disponíveis"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Ver"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Padrão"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Agente"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Editar"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "Não"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Ações"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr "Melhore a visualização dos produtos, pedidos e cupons com novas colunas e edição imediata."
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "WooCommerce"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr "Advanced Custom Fields"
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr "Plugins"
|
languages/codepress-admin-columns-da_DK.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: da_DK\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: classes/Admin/Addon.php:279
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: classes/
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr ""
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Brugerdefineret felter"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr ""
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Rediger kolonner"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Opgrader"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "Du forsøger at gemme samme indstillinger for %s."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "Ingen kolonneindstillinger tilgængelige."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "Kommentar"
|
|
944 |
msgid "Comments"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Aktivér"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Tilføj kolonne"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Hjælp"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Opdatér"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Gem indstillinger"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Indstillinger"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Indstillinger"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Gendan standard indstillinger"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Gendan indstillinger"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Tilpas din Admin Columns indstillinger."
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Generelle indstillinger"
|
@@ -1150,11 +1128,11 @@ msgstr "Dette plugin er til at tilføje og fjerne tillægskolonner på administr
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Overblik"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Admin Kolonne Indstillinger"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr ""
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Etikette"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Navn"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Vælg en kolonne type."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr ""
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "bredde"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Brugerdefineret"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Kaldenavn"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Fjern"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Titeltekst"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Tilgængelige størrelser"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Vis"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Farve"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Standard"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Godkendt"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Agent"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Rediger"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Rediger"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "Nej"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr ""
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Handlinger"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr ""
|
11 |
"Language: da_DK\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr ""
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Brugerdefineret felter"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Rediger kolonner"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Opgrader"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "Du forsøger at gemme samme indstillinger for %s."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "Ingen kolonneindstillinger tilgængelige."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Aktivér"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Tilføj kolonne"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Hjælp"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Opdatér"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Gem indstillinger"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Indstillinger"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Gendan standard indstillinger"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Gendan indstillinger"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Tilpas din Admin Columns indstillinger."
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Generelle indstillinger"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Overblik"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
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 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Admin Kolonne Indstillinger"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Etikette"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Vælg en kolonne type."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr ""
|
1250 |
|
1293 |
msgstr "bredde"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Brugerdefineret"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Fjern"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr ""
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Tilgængelige størrelser"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Vis"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Standard"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Agent"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Rediger"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "Nej"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Handlinger"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr ""
|
languages/codepress-admin-columns-de_DE.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: de\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr "Ausgeschriebener Name"
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr "Sende mir einen Rabatt"
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr "Preise starten bei %s"
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr "BuddyPress"
|
404 |
|
@@ -406,19 +398,19 @@ msgstr "BuddyPress"
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr "Ungültige Methode."
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr "Ungültige Spalte."
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr "Ungültige Eintrags-ID."
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr "Passwort"
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr "Keine Felder verfügbar."
|
483 |
|
@@ -584,7 +576,7 @@ msgstr "Zahl"
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr "Feld"
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr "Dieser Text wird hinter dem Spaltenwert angezeigt."
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr "oder"
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr "Kurzlink"
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr "Gesamter Pfad"
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr "an"
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr "aus"
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr "Notiz"
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr "Anweisungen"
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: classes/Admin/Addon.php:279
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: classes/
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr ""
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Benutzerdefinierte Felder"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr ""
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Bearbeite Spalten"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Aktualisierung"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr ""
|
924 |
|
@@ -944,103 +922,103 @@ msgstr ""
|
|
944 |
msgid "Comments"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Aktivieren"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Deaktivieren"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Aktiv"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Support"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Aktualisieren"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Einstellungen"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Einstellungen"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr "Andere"
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Standardeinstellungen wiederherstellen"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Speichern"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Haupteinstellungen"
|
@@ -1150,11 +1128,11 @@ msgstr ""
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Überblick"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr ""
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr ""
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr ""
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "Beitrag bearbeiten"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr ""
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Name"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr "Duplizieren"
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Benutzerdefiniert"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Spitzname"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Entfernen"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Bildunterschrift"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Ansehen"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr ""
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Standard"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr ""
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "makler"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Bearbeiten"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Bearbeiten"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr ""
|
|
1776 |
msgid "No"
|
1777 |
msgstr "Nein"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr ""
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Aktionen"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr "Plugins"
|
11 |
"Language: de\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr "Ausgeschriebener Name"
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr "Sende mir einen Rabatt"
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr "Preise starten bei %s"
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr "BuddyPress"
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr "Ungültige Methode."
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr "Ungültige Spalte."
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr "Ungültige Eintrags-ID."
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr "Passwort"
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr "Keine Felder verfügbar."
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr "Feld"
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr "Dieser Text wird hinter dem Spaltenwert angezeigt."
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr "oder"
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr "Kurzlink"
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr "an"
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr "aus"
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr "Notiz"
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr "Anweisungen"
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr ""
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Benutzerdefinierte Felder"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Bearbeite Spalten"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Aktualisierung"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr ""
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Aktivieren"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Deaktivieren"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Aktiv"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Support"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Aktualisieren"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Einstellungen"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr "Andere"
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Standardeinstellungen wiederherstellen"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Speichern"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Haupteinstellungen"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Überblick"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1136 |
msgid "%s column is already present and can not be duplicated."
|
1137 |
msgstr ""
|
1138 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "Beitrag bearbeiten"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr ""
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr "Duplizieren"
|
1250 |
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Benutzerdefiniert"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Entfernen"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr ""
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Ansehen"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Standard"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "makler"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Bearbeiten"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "Nein"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Aktionen"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr "Plugins"
|
languages/codepress-admin-columns-en_NZ.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: en_NZ\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: classes/Admin/Addon.php:279
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: classes/
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr ""
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Custom Fields"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr ""
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr ""
|
924 |
|
@@ -944,103 +922,103 @@ msgstr ""
|
|
944 |
msgid "Comments"
|
945 |
msgstr "Comments"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Activate"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Deactivate"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Active"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Support"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr "Rate"
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr "Docs"
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Update"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr "Add-ons"
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Settings"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Settings"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Save"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "General Settings"
|
@@ -1150,11 +1128,11 @@ msgstr ""
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr ""
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr ""
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr ""
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Label"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Name"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr ""
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Custom"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Nickname"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Remove"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr ""
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "View"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr ""
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Standard"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr ""
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Edit"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Edit"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "No"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr ""
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Actions"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "WooCommerce"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr ""
|
11 |
"Language: en_NZ\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr ""
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Custom Fields"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr ""
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "Comments"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Activate"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Deactivate"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Active"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Support"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr "Rate"
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr "Docs"
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Update"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr "Add-ons"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Settings"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Save"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "General Settings"
|
1128 |
msgid "Overview"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1136 |
msgid "%s column is already present and can not be duplicated."
|
1137 |
msgstr ""
|
1138 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Label"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr ""
|
1250 |
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Custom"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Remove"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr ""
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "View"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Standard"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Edit"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "No"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Actions"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "WooCommerce"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr ""
|
languages/codepress-admin-columns-es_ES.mo
CHANGED
Binary file
|
languages/codepress-admin-columns-es_ES.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-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: es\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
msgstr ""
|
17 |
|
18 |
-
#:
|
19 |
-
msgid "
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: classes/
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s needs to be installed and
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: classes/Admin/Page/Addons.php:132
|
47 |
-
msgid "Activate %s here."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -62,7 +58,7 @@ msgstr ""
|
|
62 |
#: classes/Admin/Help/CustomField.php:70
|
63 |
#: classes/Settings/Column/CustomFieldType.php:106
|
64 |
msgid "URL"
|
65 |
-
msgstr ""
|
66 |
|
67 |
#: classes/Admin/Help/CustomField.php:63
|
68 |
msgid "Value: Should contain one or more Post IDs, separated by commas."
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -186,7 +182,7 @@ msgstr ""
|
|
186 |
|
187 |
#: classes/Table/Screen.php:163 classes/Table/Screen.php:165
|
188 |
msgid "Download"
|
189 |
-
msgstr ""
|
190 |
|
191 |
#: classes/Settings/Column/PostLink.php:80
|
192 |
msgctxt "post"
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
-
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr "Tu correo electrónico"
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr "Necesitás por lo menos una columna"
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: classes/
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: classes/Admin/Addon/Types.php:13
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr ""
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr "Necesitás Admin Columns Pro."
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Campo Personalizado"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr ""
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Editar columnas"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Actualizar"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "Estás tratando de almacenar los mismos ajustes para %s."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "No hay ajustes de columnas disponibles."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "Comentar"
|
|
944 |
msgid "Comments"
|
945 |
msgstr "Comentarios"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr "Obtener este add-on"
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr "Descargar e Instalar"
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Activar"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr "Instalado"
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Inactivo"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Activar"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Adicionar Columna"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Soporte"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr "Tweet"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr "Cambio"
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr "¡Bien! ¡Nos encanta oir eso!"
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Almacenar ajustes"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr "Extensiones"
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Configurar"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Configurar"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr "Otros"
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Restaurar ajustes por defecto"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Restaurar Ajustes"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Guardar"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Personalice sus ajustes de Admin Columns."
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Ajustes generales"
|
@@ -1150,11 +1128,11 @@ msgstr "Este plugin es para adicionar y borrar columnas adicionales a las pantal
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Vista previa"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr "Ajustes por defecto restaurados satisfactoriamente."
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "%s columna está ya presente y no puede ser duplicada."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "%s columna está ya presente y no puede ser duplicada."
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Ajustes de Admin Columns"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr "Más información"
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr "Ver Entrada"
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "Editar entrada"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "Este es el nombre que aparecerá como el encabezado de la columna."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Etiqueta"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Nom"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Escoger un tipo de columna."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr ""
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "ancho"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Personalizado"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Apodo"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Eliminar"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Caption"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Tamaños Disponibles"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Ver"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Color"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Por defecto"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Aprobado"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Agente"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Editar"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Editar"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "No"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr ""
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Acciones"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "WooCommerce"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr "Campos Personalizados Avanzados"
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Plugins - Admin Columns - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-12-29 16:33:40+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"Language: es\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
|
|
|
|
|
|
|
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
58 |
#: classes/Admin/Help/CustomField.php:70
|
59 |
#: classes/Settings/Column/CustomFieldType.php:106
|
60 |
msgid "URL"
|
61 |
+
msgstr "URL"
|
62 |
|
63 |
#: classes/Admin/Help/CustomField.php:63
|
64 |
msgid "Value: Should contain one or more Post IDs, separated by commas."
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
182 |
|
183 |
#: classes/Table/Screen.php:163 classes/Table/Screen.php:165
|
184 |
msgid "Download"
|
185 |
+
msgstr "Descarga"
|
186 |
|
187 |
#: classes/Settings/Column/PostLink.php:80
|
188 |
msgctxt "post"
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
+
msgstr "Oculto"
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr "Tu correo electrónico"
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr "Necesitás por lo menos una columna"
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
|
|
|
|
|
|
|
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr ""
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr "Necesitás Admin Columns Pro."
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Campo Personalizado"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Editar columnas"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Actualizar"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "Estás tratando de almacenar los mismos ajustes para %s."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "No hay ajustes de columnas disponibles."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "Comentarios"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr "Obtener este add-on"
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr "Descargar e Instalar"
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Activar"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr "Instalado"
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Inactivo"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Activar"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Adicionar Columna"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Soporte"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr "Tweet"
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr "Cambio"
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr "¡Bien! ¡Nos encanta oir eso!"
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Almacenar ajustes"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr "Extensiones"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Configurar"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr "Otros"
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Restaurar ajustes por defecto"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Restaurar Ajustes"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Guardar"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Personalice sus ajustes de Admin Columns."
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Ajustes generales"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Vista previa"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr "Ajustes por defecto restaurados satisfactoriamente."
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
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 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Ajustes de Admin Columns"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr "Más información"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "Editar entrada"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "Este es el nombre que aparecerá como el encabezado de la columna."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Etiqueta"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Escoger un tipo de columna."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr ""
|
1250 |
|
1293 |
msgstr "ancho"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Personalizado"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Eliminar"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr ""
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Tamaños Disponibles"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Ver"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Por defecto"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Agente"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Editar"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "No"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Acciones"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "WooCommerce"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr "Campos Personalizados Avanzados"
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr ""
|
languages/codepress-admin-columns-fa_IR.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: fa\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -716,88 +708,75 @@ msgstr ""
|
|
716 |
msgid "Help"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: classes/Admin/Page/Columns.php:
|
720 |
msgid "Close"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: classes/Admin/Page/Columns.php:
|
724 |
msgid "Clear all columns "
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: classes/Admin/Page/Columns.php:
|
728 |
msgid "I'm using Admin Columns for WordPress!"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: classes/Admin/Page/Columns.php:
|
732 |
msgid "Your First Name"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: classes/Admin/Page/Columns.php:
|
736 |
msgid "Your Email"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: classes/Admin/Page/Columns.php:
|
740 |
msgid "Submit your email and we'll send you a discount for %s off."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: classes/Admin/Page/Columns.php:
|
744 |
msgid "Get %s Off!"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: classes/Admin/Page/Columns.php:
|
748 |
msgid "Extra Columns for:"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: classes/Admin/Page/Columns.php:
|
752 |
msgid "Edit your column content directly"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: classes/Admin/Page/Columns.php:
|
756 |
msgid "Pro"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: classes/Admin/Page/Columns.php:
|
760 |
msgid "You need at least one column"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: classes/Admin/Page/Addons.php:
|
764 |
msgid "Available"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: classes/Admin/Page/Addons.php:
|
768 |
msgid "Recommended"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: classes/Admin/Page/Addons.php:
|
772 |
msgid "%s could not be activated."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: classes/Admin/Page/Addons.php:
|
776 |
msgid "%s successfully activated."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: classes/
|
780 |
-
msgid "
|
781 |
-
msgid_plural "%s add-ons requires %s."
|
782 |
-
msgstr[0] ""
|
783 |
-
|
784 |
-
#: classes/Admin/Page/Addons.php:129
|
785 |
-
msgid "%s is installed, but not active."
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: classes/Admin/Page/Addons.php:123
|
789 |
-
msgid "%s needs to be installed for the add-on to work."
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: classes/Admin/Addon.php:279
|
793 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: classes/
|
797 |
msgid "Toolset Types"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: classes/
|
801 |
msgid "Pods"
|
802 |
msgstr ""
|
803 |
|
@@ -805,55 +784,55 @@ msgstr ""
|
|
805 |
msgid "Imported"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: classes/Admin/Page/Columns.php:
|
809 |
msgid "Learn more about Pro"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: classes/Admin/Page/Columns.php:
|
813 |
msgid "Import & Export settings"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: classes/Admin/Page/Columns.php:
|
817 |
msgid "Create multiple columns sets"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: classes/Admin/Page/Columns.php:
|
821 |
msgid "Add filterable columns"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: classes/Admin/Page/Columns.php:
|
825 |
msgid "Add sortable columns"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: classes/Admin/Page/Columns.php:
|
829 |
msgid "Take Admin Columns to the next level:"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: classes/Admin/Page/Columns.php:
|
833 |
msgid "Upgrade to"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: classes/Admin/Page/Columns.php:
|
837 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: classes/Admin/Page/Columns.php:
|
841 |
msgid "Please visit the %s screen once to load all available columns"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: classes/Admin/Page/Columns.php:
|
845 |
msgid "Restore columns"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: classes/Admin/Page/Columns.php:
|
849 |
msgid "Settings for %s restored successfully."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: classes/Admin/Page/Columns.php:
|
853 |
msgid "View %s screen"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: classes/Admin/Page/Columns.php:
|
857 |
msgid "Invalid response."
|
858 |
msgstr ""
|
859 |
|
@@ -865,23 +844,23 @@ msgstr ""
|
|
865 |
msgid "Link Label"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: classes/Admin/Page/Addons.php:
|
869 |
msgid "You need Admin Columns Pro."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: classes/Admin/Page/Addons.php:
|
873 |
msgid "Addon does not exist."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: classes/Check/AddonAvailable.php:
|
877 |
msgid "the addons page"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: classes/Check/AddonAvailable.php:
|
881 |
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!"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
885 |
msgid "Custom Fields"
|
886 |
msgstr "فیلدهای اضافی"
|
887 |
|
@@ -893,30 +872,30 @@ msgstr ""
|
|
893 |
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."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
897 |
#. Plugin URI of the plugin/theme
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Author URI of the plugin/theme
|
900 |
msgid "https://www.admincolumns.com"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: classes/Admin/Page/Settings.php:
|
904 |
msgid "Edit columns"
|
905 |
msgstr "ویرایش ستون ها"
|
906 |
|
907 |
-
#: classes/Admin/Page/Columns.php:
|
908 |
msgid "Upgrade"
|
909 |
msgstr "به روزرسانی"
|
910 |
|
911 |
-
#: classes/Admin/Page/Columns.php:
|
912 |
msgid "Settings for %s updated successfully."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: classes/Admin/Page/Columns.php:
|
916 |
msgid "You are trying to store the same settings for %s."
|
917 |
msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
|
918 |
|
919 |
-
#: classes/ListScreen.php:
|
920 |
msgid "No columns settings available."
|
921 |
msgstr "هیچ تنظیمی برای ستونها موجود نیست."
|
922 |
|
@@ -942,103 +921,103 @@ msgstr ""
|
|
942 |
msgid "Comments"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: classes/Admin/Page/Addons.php:
|
946 |
msgid "Get this add-on"
|
947 |
msgstr "دریافت این افزودنی"
|
948 |
|
949 |
-
#: classes/Admin/Page/Addons.php:
|
950 |
msgid "Download & Install"
|
951 |
msgstr "دانلود و نصب"
|
952 |
|
953 |
-
#: classes/Admin/Page/Addons.php:
|
954 |
msgid "Activate"
|
955 |
msgstr "فعال"
|
956 |
|
957 |
-
#: classes/Admin/Page/Addons.php:
|
958 |
msgid "Installed"
|
959 |
msgstr "نصب شده"
|
960 |
|
961 |
-
#: classes/Admin/Page/Addons.php:
|
962 |
msgid "Deactivate"
|
963 |
msgstr "غیرفعال"
|
964 |
|
965 |
-
#: classes/Admin/Page/Addons.php:
|
966 |
msgid "Active"
|
967 |
msgstr "فعال"
|
968 |
|
969 |
-
#: classes/Admin/Page/Columns.php:
|
970 |
msgid "Add Column"
|
971 |
msgstr "ستون جدید"
|
972 |
|
973 |
-
#: classes/Admin/Page/Columns.php:
|
974 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: classes/Admin/Page/Columns.php:
|
978 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
979 |
msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
|
980 |
|
981 |
-
#: classes/Admin/Page/Columns.php:
|
982 |
msgid "Support"
|
983 |
msgstr "پشتیبانی"
|
984 |
|
985 |
-
#: classes/Admin/Page/Columns.php:
|
986 |
msgid "Buy Pro"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: classes/Admin/Page/Columns.php:
|
990 |
msgid "Tweet"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: classes/Admin/Page/Columns.php:
|
994 |
msgid "Rate"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: classes/Admin/Page/Columns.php:
|
998 |
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!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: classes/Admin/Page/Columns.php:
|
1002 |
msgid "Woohoo! We're glad to hear that!"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: classes/Admin/Page/Columns.php:
|
1006 |
msgid "Forums"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: classes/Admin/Page/Columns.php:
|
1010 |
msgid "Docs"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: classes/Admin/Page/Columns.php:
|
1014 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: classes/Admin/Page/Columns.php:
|
1018 |
msgid "What's wrong? Need help? Let us know!"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: classes/Admin/Page/Columns.php:
|
1022 |
msgid "Are you happy with Admin Columns?"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: classes/Admin/Page/Columns.php:
|
1026 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: classes/Admin/Page/Columns.php:
|
1030 |
msgid "Update"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: classes/Admin/Page/Columns.php:
|
1034 |
msgid "Store settings"
|
1035 |
msgstr "ذخیره تنظیمات"
|
1036 |
|
1037 |
-
#: classes/Admin/Page/Addons.php:
|
1038 |
msgid "Add-ons"
|
1039 |
msgstr "افزودنی ها"
|
1040 |
|
1041 |
-
#: classes/Admin/Page/Settings.php:
|
1042 |
msgid "Settings"
|
1043 |
msgstr "تنظیمات"
|
1044 |
|
@@ -1046,32 +1025,32 @@ msgstr "تنظیمات"
|
|
1046 |
msgid "Others"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: classes/Admin/Page/Settings.php:
|
1050 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: classes/Admin/Page/Settings.php:
|
1054 |
msgid "Restore default settings"
|
1055 |
msgstr "بازسازی تنظیمات پیش فرض"
|
1056 |
|
1057 |
-
#: classes/Admin/Page/Settings.php:
|
1058 |
msgid "This will delete all column settings and restore the default settings."
|
1059 |
msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
|
1060 |
|
1061 |
-
#: classes/Admin/Page/Settings.php:
|
1062 |
msgid "Restore Settings"
|
1063 |
msgstr "بازنشانی تنظیمات"
|
1064 |
|
1065 |
-
#: classes/Admin/Page/Columns.php:
|
1066 |
-
#: classes/Admin/Page/Settings.php:
|
1067 |
msgid "Save"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: classes/Admin/Page/Settings.php:
|
1071 |
msgid "Customize your Admin Columns settings."
|
1072 |
msgstr "دلخواه سازی تنظیمات افزونه"
|
1073 |
|
1074 |
-
#: classes/Admin/Page/Settings.php:
|
1075 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1076 |
msgid "General Settings"
|
1077 |
msgstr "تنظیمات عمومی"
|
@@ -1148,11 +1127,11 @@ msgstr "این افزونه برای ایجاد ستون های دلخواه و
|
|
1148 |
msgid "Overview"
|
1149 |
msgstr "مرورکلی"
|
1150 |
|
1151 |
-
#: classes/Admin/Page/Settings.php:
|
1152 |
msgid "Default settings successfully restored."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: classes/Admin/Page/Columns.php:
|
1156 |
msgid "%s column is already present and can not be duplicated."
|
1157 |
msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
|
1158 |
|
@@ -1160,75 +1139,75 @@ msgstr "%s ستون موجود است و نمی توان آنها را تکثی
|
|
1160 |
msgid "Admin Columns Settings"
|
1161 |
msgstr "تنظیمات ستون ها"
|
1162 |
|
1163 |
-
#: classes/Admin/Page/Addons.php:
|
1164 |
msgid "%s successfully deactivated."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: classes/Check/Review.php:
|
1168 |
msgid "find answers to frequently asked questions"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: classes/Check/Review.php:
|
1172 |
msgid "Admin Columns forum on WordPress.org"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: classes/Check/Review.php:
|
1176 |
msgid "You can also find help on the %s, and %s."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: classes/Check/Review.php:
|
1180 |
msgid "our forum"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: classes/Check/Review.php:
|
1184 |
msgid "documentation page"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: classes/Check/Review.php:
|
1188 |
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."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: classes/Check/Review.php:
|
1192 |
msgid "Permanently hide notice"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: classes/Check/Review.php:
|
1196 |
msgid "Leave a review!"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: classes/Check/Review.php:
|
1200 |
msgid "click here"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: classes/Check/Review.php:
|
1204 |
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."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: classes/Admin/Page/Addons.php:
|
1208 |
msgid "Admin Columns Pro"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1212 |
#. Plugin Name of the plugin/theme
|
1213 |
-
#: classes/Admin/Page/Columns.php:
|
1214 |
-
#: classes/Check/Review.php:
|
1215 |
-
#: classes/Plugin/Updater.php:
|
1216 |
msgid "Admin Columns"
|
1217 |
msgstr "تنظیمات ستون ها"
|
1218 |
|
1219 |
-
#: classes/Column/Placeholder.php:
|
1220 |
msgid "Find out more"
|
1221 |
msgstr "اطلاعات بیشتر"
|
1222 |
|
1223 |
-
#: classes/Column/Placeholder.php:
|
1224 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: classes/Column/Placeholder.php:
|
1228 |
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>."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: classes/Column/Placeholder.php:
|
1232 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1233 |
msgstr ""
|
1234 |
|
@@ -1248,11 +1227,11 @@ msgstr ""
|
|
1248 |
msgid "Edit Post"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: classes/Settings/Column/Label.php:
|
1252 |
msgid "This is the name which will appear as the column header."
|
1253 |
msgstr "این نامی است که در تیتر ستون دیده می شود."
|
1254 |
|
1255 |
-
#: classes/Settings/Column/Label.php:
|
1256 |
msgid "Label"
|
1257 |
msgstr "برچسب"
|
1258 |
|
@@ -1264,7 +1243,7 @@ msgstr ""
|
|
1264 |
msgid "Choose a column type."
|
1265 |
msgstr "انتخاب نوع ستون"
|
1266 |
|
1267 |
-
#: classes/Admin/Page/Columns.php:
|
1268 |
msgid "Clone"
|
1269 |
msgstr ""
|
1270 |
|
@@ -1313,7 +1292,7 @@ msgid "width"
|
|
1313 |
msgstr "عرض"
|
1314 |
|
1315 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1316 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1317 |
msgid "Custom"
|
1318 |
msgstr "دلخواه"
|
1319 |
|
@@ -1364,7 +1343,7 @@ msgstr "لغب"
|
|
1364 |
msgid "Comment Count"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: classes/Admin/Page/Columns.php:
|
1368 |
msgid "Remove"
|
1369 |
msgstr "حذف"
|
1370 |
|
@@ -1544,11 +1523,11 @@ msgstr ""
|
|
1544 |
msgid "Relative to domain"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: classes/Settings/Column/PathScope.php:
|
1548 |
msgid "Part of the file path to display"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Path scope"
|
1553 |
msgstr ""
|
1554 |
|
@@ -1609,7 +1588,7 @@ msgstr "عنوان"
|
|
1609 |
msgid "Available Sizes"
|
1610 |
msgstr "اندازه های موجود"
|
1611 |
|
1612 |
-
#: classes/Admin/Page/Columns.php:
|
1613 |
msgid "View"
|
1614 |
msgstr "نمایش"
|
1615 |
|
@@ -1666,7 +1645,7 @@ msgstr "رنگ"
|
|
1666 |
#: classes/Admin/Help/CustomField.php:22
|
1667 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1668 |
#: classes/Settings/Column/Image.php:72
|
1669 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1670 |
msgid "Default"
|
1671 |
msgstr "پیش فرض"
|
1672 |
|
@@ -1753,7 +1732,7 @@ msgstr "تایید شده"
|
|
1753 |
msgid "Agent"
|
1754 |
msgstr "مرورگر"
|
1755 |
|
1756 |
-
#: classes/Admin/Page/Columns.php:
|
1757 |
msgid "Edit"
|
1758 |
msgstr "ویرایش"
|
1759 |
|
@@ -1763,7 +1742,7 @@ msgstr "ویرایش"
|
|
1763 |
msgid "ID"
|
1764 |
msgstr "شناسه"
|
1765 |
|
1766 |
-
#: classes/Admin/Page/Columns.php:
|
1767 |
#: classes/Settings/Column/ActionIcons.php:23
|
1768 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1769 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1772,7 +1751,7 @@ msgstr "شناسه"
|
|
1772 |
msgid "No"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: classes/Admin/Page/Columns.php:
|
1776 |
#: classes/Settings/Column/ActionIcons.php:22
|
1777 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1778 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1793,18 +1772,18 @@ msgstr ""
|
|
1793 |
msgid "Actions"
|
1794 |
msgstr "عملیات ها"
|
1795 |
|
1796 |
-
#: classes/
|
1797 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "WooCommerce"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "Advanced Custom Fields"
|
1806 |
msgstr "زمینه های دلخواه پیشرفته"
|
1807 |
|
1808 |
-
#: classes/Admin/Page/Addons.php:
|
1809 |
msgid "Plugins"
|
1810 |
msgstr ""
|
11 |
"Language: fa\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
708 |
msgid "Help"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
712 |
msgid "Close"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: classes/Admin/Page/Columns.php:756
|
716 |
msgid "Clear all columns "
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: classes/Admin/Page/Columns.php:667
|
720 |
msgid "I'm using Admin Columns for WordPress!"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: classes/Admin/Page/Columns.php:609
|
724 |
msgid "Your First Name"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: classes/Admin/Page/Columns.php:608
|
728 |
msgid "Your Email"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: classes/Admin/Page/Columns.php:601
|
732 |
msgid "Submit your email and we'll send you a discount for %s off."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
736 |
msgid "Get %s Off!"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: classes/Admin/Page/Columns.php:562
|
740 |
msgid "Extra Columns for:"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: classes/Admin/Page/Columns.php:545
|
744 |
msgid "Edit your column content directly"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: classes/Admin/Page/Columns.php:533
|
748 |
msgid "Pro"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: classes/Admin/Page/Columns.php:297
|
752 |
msgid "You need at least one column"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: classes/Admin/Page/Addons.php:256
|
756 |
msgid "Available"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: classes/Admin/Page/Addons.php:255
|
760 |
msgid "Recommended"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: classes/Admin/Page/Addons.php:114
|
764 |
msgid "%s could not be activated."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: classes/Admin/Page/Addons.php:106
|
768 |
msgid "%s successfully activated."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: classes/Integration/Types.php:15
|
772 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: classes/Integration/Types.php:13
|
776 |
msgid "Toolset Types"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: classes/Integration/Pods.php:13
|
780 |
msgid "Pods"
|
781 |
msgstr ""
|
782 |
|
784 |
msgid "Imported"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: classes/Admin/Page/Columns.php:580
|
788 |
msgid "Learn more about Pro"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: classes/Admin/Page/Columns.php:547
|
792 |
msgid "Import & Export settings"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: classes/Admin/Page/Columns.php:546
|
796 |
msgid "Create multiple columns sets"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: classes/Admin/Page/Columns.php:544
|
800 |
msgid "Add filterable columns"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: classes/Admin/Page/Columns.php:543
|
804 |
msgid "Add sortable columns"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: classes/Admin/Page/Columns.php:538
|
808 |
msgid "Take Admin Columns to the next level:"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: classes/Admin/Page/Columns.php:533
|
812 |
msgid "Upgrade to"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: classes/Admin/Page/Columns.php:428
|
816 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: classes/Admin/Page/Columns.php:218
|
820 |
msgid "Please visit the %s screen once to load all available columns"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: classes/Admin/Page/Columns.php:514
|
824 |
msgid "Restore columns"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: classes/Admin/Page/Columns.php:145
|
828 |
msgid "Settings for %s restored successfully."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: classes/Admin/Page/Columns.php:304
|
832 |
msgid "View %s screen"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: classes/Admin/Page/Columns.php:84
|
836 |
msgid "Invalid response."
|
837 |
msgstr ""
|
838 |
|
844 |
msgid "Link Label"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: classes/Admin/Page/Addons.php:180
|
848 |
msgid "You need Admin Columns Pro."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: classes/Admin/Page/Addons.php:188
|
852 |
msgid "Addon does not exist."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: classes/Check/AddonAvailable.php:86
|
856 |
msgid "the addons page"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: classes/Check/AddonAvailable.php:82
|
860 |
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!"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
864 |
msgid "Custom Fields"
|
865 |
msgstr "فیلدهای اضافی"
|
866 |
|
872 |
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."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
876 |
#. Plugin URI of the plugin/theme
|
877 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
878 |
#. Author URI of the plugin/theme
|
879 |
msgid "https://www.admincolumns.com"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
883 |
msgid "Edit columns"
|
884 |
msgstr "ویرایش ستون ها"
|
885 |
|
886 |
+
#: classes/Admin/Page/Columns.php:955
|
887 |
msgid "Upgrade"
|
888 |
msgstr "به روزرسانی"
|
889 |
|
890 |
+
#: classes/Admin/Page/Columns.php:324
|
891 |
msgid "Settings for %s updated successfully."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: classes/Admin/Page/Columns.php:311
|
895 |
msgid "You are trying to store the same settings for %s."
|
896 |
msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
|
897 |
|
898 |
+
#: classes/ListScreen.php:719
|
899 |
msgid "No columns settings available."
|
900 |
msgstr "هیچ تنظیمی برای ستونها موجود نیست."
|
901 |
|
921 |
msgid "Comments"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: classes/Admin/Page/Addons.php:441
|
925 |
msgid "Get this add-on"
|
926 |
msgstr "دریافت این افزودنی"
|
927 |
|
928 |
+
#: classes/Admin/Page/Addons.php:438
|
929 |
msgid "Download & Install"
|
930 |
msgstr "دانلود و نصب"
|
931 |
|
932 |
+
#: classes/Admin/Page/Addons.php:432
|
933 |
msgid "Activate"
|
934 |
msgstr "فعال"
|
935 |
|
936 |
+
#: classes/Admin/Page/Addons.php:254
|
937 |
msgid "Installed"
|
938 |
msgstr "نصب شده"
|
939 |
|
940 |
+
#: classes/Admin/Page/Addons.php:428
|
941 |
msgid "Deactivate"
|
942 |
msgstr "غیرفعال"
|
943 |
|
944 |
+
#: classes/Admin/Page/Addons.php:425
|
945 |
msgid "Active"
|
946 |
msgstr "فعال"
|
947 |
|
948 |
+
#: classes/Admin/Page/Columns.php:762
|
949 |
msgid "Add Column"
|
950 |
msgstr "ستون جدید"
|
951 |
|
952 |
+
#: classes/Admin/Page/Columns.php:695
|
953 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: classes/Admin/Page/Columns.php:691
|
957 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
958 |
msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
|
959 |
|
960 |
+
#: classes/Admin/Page/Columns.php:686
|
961 |
msgid "Support"
|
962 |
msgstr "پشتیبانی"
|
963 |
|
964 |
+
#: classes/Admin/Page/Columns.php:674
|
965 |
msgid "Buy Pro"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: classes/Admin/Page/Columns.php:668
|
969 |
msgid "Tweet"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: classes/Admin/Page/Columns.php:662
|
973 |
msgid "Rate"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: classes/Admin/Page/Columns.php:657
|
977 |
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!"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: classes/Admin/Page/Columns.php:654
|
981 |
msgid "Woohoo! We're glad to hear that!"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: classes/Admin/Page/Columns.php:644
|
985 |
msgid "Forums"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: classes/Admin/Page/Columns.php:639
|
989 |
msgid "Docs"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: classes/Admin/Page/Columns.php:634
|
993 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: classes/Admin/Page/Columns.php:631
|
997 |
msgid "What's wrong? Need help? Let us know!"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: classes/Admin/Page/Columns.php:621
|
1001 |
msgid "Are you happy with Admin Columns?"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: classes/Admin/Page/Columns.php:513
|
1005 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1009 |
msgid "Update"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: classes/Admin/Page/Columns.php:491
|
1013 |
msgid "Store settings"
|
1014 |
msgstr "ذخیره تنظیمات"
|
1015 |
|
1016 |
+
#: classes/Admin/Page/Addons.php:15
|
1017 |
msgid "Add-ons"
|
1018 |
msgstr "افزودنی ها"
|
1019 |
|
1020 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1021 |
msgid "Settings"
|
1022 |
msgstr "تنظیمات"
|
1023 |
|
1025 |
msgid "Others"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: classes/Admin/Page/Settings.php:241
|
1029 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: classes/Admin/Page/Settings.php:241
|
1033 |
msgid "Restore default settings"
|
1034 |
msgstr "بازسازی تنظیمات پیش فرض"
|
1035 |
|
1036 |
+
#: classes/Admin/Page/Settings.php:233
|
1037 |
msgid "This will delete all column settings and restore the default settings."
|
1038 |
msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
|
1039 |
|
1040 |
+
#: classes/Admin/Page/Settings.php:232
|
1041 |
msgid "Restore Settings"
|
1042 |
msgstr "بازنشانی تنظیمات"
|
1043 |
|
1044 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1045 |
+
#: classes/Admin/Page/Settings.php:191
|
1046 |
msgid "Save"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: classes/Admin/Page/Settings.php:173
|
1050 |
msgid "Customize your Admin Columns settings."
|
1051 |
msgstr "دلخواه سازی تنظیمات افزونه"
|
1052 |
|
1053 |
+
#: classes/Admin/Page/Settings.php:172
|
1054 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1055 |
msgid "General Settings"
|
1056 |
msgstr "تنظیمات عمومی"
|
1127 |
msgid "Overview"
|
1128 |
msgstr "مرورکلی"
|
1129 |
|
1130 |
+
#: classes/Admin/Page/Settings.php:112
|
1131 |
msgid "Default settings successfully restored."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1135 |
msgid "%s column is already present and can not be duplicated."
|
1136 |
msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
|
1137 |
|
1139 |
msgid "Admin Columns Settings"
|
1140 |
msgstr "تنظیمات ستون ها"
|
1141 |
|
1142 |
+
#: classes/Admin/Page/Addons.php:137
|
1143 |
msgid "%s successfully deactivated."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: classes/Check/Review.php:166
|
1147 |
msgid "find answers to frequently asked questions"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: classes/Check/Review.php:165
|
1151 |
msgid "Admin Columns forum on WordPress.org"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: classes/Check/Review.php:164
|
1155 |
msgid "You can also find help on the %s, and %s."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: classes/Check/Review.php:160
|
1159 |
msgid "our forum"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: classes/Check/Review.php:154
|
1163 |
msgid "documentation page"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: classes/Check/Review.php:152
|
1167 |
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."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: classes/Check/Review.php:143
|
1171 |
msgid "Permanently hide notice"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: classes/Check/Review.php:142
|
1175 |
msgid "Leave a review!"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: classes/Check/Review.php:138
|
1179 |
msgid "click here"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: classes/Check/Review.php:134
|
1183 |
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."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1187 |
msgid "Admin Columns Pro"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1191 |
#. Plugin Name of the plugin/theme
|
1192 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1193 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1194 |
+
#: classes/Plugin/Updater.php:116
|
1195 |
msgid "Admin Columns"
|
1196 |
msgstr "تنظیمات ستون ها"
|
1197 |
|
1198 |
+
#: classes/Column/Placeholder.php:50
|
1199 |
msgid "Find out more"
|
1200 |
msgstr "اطلاعات بیشتر"
|
1201 |
|
1202 |
+
#: classes/Column/Placeholder.php:47
|
1203 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: classes/Column/Placeholder.php:43
|
1207 |
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>."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: classes/Column/Placeholder.php:39
|
1211 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1212 |
msgstr ""
|
1213 |
|
1227 |
msgid "Edit Post"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: classes/Settings/Column/Label.php:30
|
1231 |
msgid "This is the name which will appear as the column header."
|
1232 |
msgstr "این نامی است که در تیتر ستون دیده می شود."
|
1233 |
|
1234 |
+
#: classes/Settings/Column/Label.php:29
|
1235 |
msgid "Label"
|
1236 |
msgstr "برچسب"
|
1237 |
|
1243 |
msgid "Choose a column type."
|
1244 |
msgstr "انتخاب نوع ستون"
|
1245 |
|
1246 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1247 |
msgid "Clone"
|
1248 |
msgstr ""
|
1249 |
|
1292 |
msgstr "عرض"
|
1293 |
|
1294 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1295 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1296 |
msgid "Custom"
|
1297 |
msgstr "دلخواه"
|
1298 |
|
1343 |
msgid "Comment Count"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1347 |
msgid "Remove"
|
1348 |
msgstr "حذف"
|
1349 |
|
1523 |
msgid "Relative to domain"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: classes/Settings/Column/PathScope.php:33
|
1527 |
msgid "Part of the file path to display"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: classes/Settings/Column/PathScope.php:32
|
1531 |
msgid "Path scope"
|
1532 |
msgstr ""
|
1533 |
|
1588 |
msgid "Available Sizes"
|
1589 |
msgstr "اندازه های موجود"
|
1590 |
|
1591 |
+
#: classes/Admin/Page/Columns.php:477
|
1592 |
msgid "View"
|
1593 |
msgstr "نمایش"
|
1594 |
|
1645 |
#: classes/Admin/Help/CustomField.php:22
|
1646 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1647 |
#: classes/Settings/Column/Image.php:72
|
1648 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1649 |
msgid "Default"
|
1650 |
msgstr "پیش فرض"
|
1651 |
|
1732 |
msgid "Agent"
|
1733 |
msgstr "مرورگر"
|
1734 |
|
1735 |
+
#: classes/Admin/Page/Columns.php:876
|
1736 |
msgid "Edit"
|
1737 |
msgstr "ویرایش"
|
1738 |
|
1742 |
msgid "ID"
|
1743 |
msgstr "شناسه"
|
1744 |
|
1745 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1746 |
#: classes/Settings/Column/ActionIcons.php:23
|
1747 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1748 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1751 |
msgid "No"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1755 |
#: classes/Settings/Column/ActionIcons.php:22
|
1756 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1757 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1772 |
msgid "Actions"
|
1773 |
msgstr "عملیات ها"
|
1774 |
|
1775 |
+
#: classes/Integration/WooCommerce.php:17
|
1776 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: classes/Integration/WooCommerce.php:15
|
1780 |
msgid "WooCommerce"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: classes/Integration/ACF.php:13
|
1784 |
msgid "Advanced Custom Fields"
|
1785 |
msgstr "زمینه های دلخواه پیشرفته"
|
1786 |
|
1787 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1788 |
msgid "Plugins"
|
1789 |
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-08
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,46 +11,42 @@ msgstr ""
|
|
11 |
"Language: fr\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
17 |
|
18 |
-
#:
|
19 |
-
msgid "
|
20 |
-
msgstr "
|
21 |
|
22 |
-
#: classes/
|
23 |
-
msgid "
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s needs to be installed and
|
36 |
-
msgstr "%s doit être
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#: classes/
|
|
|
|
|
|
|
|
|
43 |
msgid "You can also use your admincolumns.com account to access support through %s!"
|
44 |
msgstr "Vous pouvez aussi utiliser votre compte admincolumns.com pour accéder au support via %s !"
|
45 |
|
46 |
-
#: classes/Admin/Page/Addons.php:132
|
47 |
-
msgid "Activate %s here."
|
48 |
-
msgstr "Activez %s ici."
|
49 |
-
|
50 |
-
#: classes/Admin/Page/Addons.php:126
|
51 |
-
msgid "Install %s here."
|
52 |
-
msgstr "Installez %s ici."
|
53 |
-
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
55 |
msgid "Value: Should contain one or more User IDs, separated by commas."
|
56 |
msgstr "Valeur : doit contenir un ou plusieurs ID d’utilisateurs, séparés par des virgules."
|
@@ -80,11 +76,11 @@ msgstr "Valeur : doit contenir un·e ou plusieurs URL d’images ou ID de fichi
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr "Valeur : cela affichera si le champ a un contenu ou pas."
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr "Ajout de colonnes Ninja Forms qui peuvent être triées, filtrées et directement éditées !"
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr "Gérer les colonnes pour vos vues d’ensemble d’évènements, organisateurs ou lieux."
|
90 |
|
@@ -120,39 +116,39 @@ msgstr "Modifiez votre contenu directement depuis la vue d’ensemble."
|
|
120 |
msgid "Editing"
|
121 |
msgstr "Édition"
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr "Uniquement %s pour 1 site"
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr "Obtenez des modules pour ACF, WooCommerce et beaucoup d‘autres"
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr "Créez plusieurs groupes de colonnes par vue d’ensemble"
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr "Exportez toutes les données de colonnes au format CSV"
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr "Modifiez directement votre contenu depuis la vue d’ensemble"
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr "Triez et filtrez sur tout votre contenu"
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr "Passez à la version PRO et amenez Admin Columns au niveau supérieur :"
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr "Aimez-vous Admin Columns ?"
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr "Sélectionner le type"
|
158 |
|
@@ -233,23 +229,23 @@ msgstr "Inclure les tailles dont le fichier d’image est manquant."
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr "Inclure les tailles manquantes ?"
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr "Options du site"
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr "courant"
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr "Site du réseau :"
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr "Caché"
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr "Public"
|
255 |
|
@@ -277,11 +273,11 @@ msgstr "Total"
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr "Miniatures"
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr "Lancer la mise à jour"
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr "Nous avons besoin de mettre à jour votre base de données vers la dernière version."
|
287 |
|
@@ -329,18 +325,14 @@ msgstr "original"
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr "Texte alternatif"
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr "Veuillez visiter la page %s."
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr "Ninja Forms"
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr "The Events Calendar"
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr "Protégé par mot de passe"
|
@@ -386,19 +378,19 @@ msgstr "L’extrait est manquant."
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr "Nom utilisateur normalisé"
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr "Envoyez-moi la promotion"
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr "Les prix commencent à partir de %s"
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr "Affichez l’un de vos champs de profil BuddyPress sur la vue d’ensemble de vos utilisateurs."
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr "BuddyPress"
|
404 |
|
@@ -406,19 +398,19 @@ msgstr "BuddyPress"
|
|
406 |
msgid "View more"
|
407 |
msgstr "En savoir plus"
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr "Méthode non valide."
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr "Colonne non valide."
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr "Écran de liste non valide."
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr "ID de l’élément non valide."
|
424 |
|
@@ -477,7 +469,7 @@ msgstr "Texte brut"
|
|
477 |
msgid "Password"
|
478 |
msgstr "Mot de passe"
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr "Aucun champ disponible."
|
483 |
|
@@ -584,7 +576,7 @@ msgstr "Nombre"
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr "Vous pouvez entrer plusieurs ID en les séparant par une virgule."
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr "Champ"
|
590 |
|
@@ -611,7 +603,7 @@ msgstr "Options d’affichage"
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr "Ce texte apparaîtra après la valeur de la colonne."
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr "ou"
|
617 |
|
@@ -635,7 +627,7 @@ msgstr "Montrer la barre d’outils"
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr "Lien court"
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ", "
|
641 |
|
@@ -651,27 +643,27 @@ msgstr "Chemin complet"
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr "La remise est valide jusqu’à %s"
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr "Afficher le bouton %s sur l’écran liste."
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr "La valeur par défaut est %s."
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr "oui"
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr "non"
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr "Notification"
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr "Instructions"
|
677 |
|
@@ -717,89 +709,75 @@ msgstr "Filtres dépréciés"
|
|
717 |
msgid "Help"
|
718 |
msgstr "Aide"
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr "Fermer"
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr "Effacer toutes les colonnes"
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr "J’utilise Admin Columns pour WordPress !"
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr "Votre prénom"
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr "Votre e-mail"
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr "Envoyez nous votre e-mail et nous vous enverrons une remise de %s."
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr "Obtenez %s de réduction !"
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr "Colonnes supplémentaires :"
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr "Modifiez directement le contenu de votre colonne"
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr "version Pro"
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr "Vous avez besoin d’au moins une colonne"
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr "Disponible"
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr "Recommandé"
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr "%s ne peut pas être activé."
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr "%s bien activé."
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
|
783 |
-
msgstr[0] "Le module %s nécessite %s."
|
784 |
-
msgstr[1] "Les modules %s nécessitent %s."
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr "L’extension %s est installée mais pas active."
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr "L’extension %s doit être installée pour que le module fonctionne."
|
793 |
|
794 |
-
#: classes/
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
-
msgstr "Affichez et éditez les champs %s sur la vue d’ensemble des publications en quelques secondes."
|
797 |
-
|
798 |
-
#: classes/Admin/Addon/Types.php:13
|
799 |
msgid "Toolset Types"
|
800 |
msgstr "Toolset Types"
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr "Pods"
|
805 |
|
@@ -807,55 +785,55 @@ msgstr "Pods"
|
|
807 |
msgid "Imported"
|
808 |
msgstr "Importé"
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr "En savoir plus sur la version Pro"
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr "Réglages d’import & d’export"
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr "Créez plusieurs ensembles de colonnes"
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr "Ajouter des colonnes filtrables"
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr "Ajouter des colonnes triables"
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr "Passez Admin Columns au niveau supérieur :"
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr "Passez en"
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr "Les colonnes pour %s sont configurées via PHP et ne peuvent donc pas être modifiées."
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr "Veuillez visiter l’écran %s une première fois afin de charger toutes colonnes disponibles."
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr "Restaurer les colonnes"
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr "Les réglages pour %s ont bien été restaurés."
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr "Voir l’écran %s"
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr "Réponse non valide"
|
861 |
|
@@ -867,23 +845,23 @@ msgstr "Laissez vide pour afficher l’URL"
|
|
867 |
msgid "Link Label"
|
868 |
msgstr "Libellé du lien"
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr "Vous avez besoin d’Admin Columns Pro."
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr "Le module n’existe pas."
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr "la page des modules"
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
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 !"
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Champs personnalisés"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr "AdminColumns.com"
|
|
895 |
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."
|
896 |
msgstr "Personnalisez les colonnes sur les écrans d’administration des articles, types de publications, pages, médias, commentaires, liens et utilisateurs grâce à une interface glisser-déposer facile à utiliser."
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr "https://www.admincolumns.com"
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Modifier les colonnes"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Mettre à niveau"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr "Les réglages pour les %s ont bien été mis à jour."
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "Vous essayez de conserver les mêmes réglages pour %s."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "Aucun réglage de colonne disponible."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "Commentaire"
|
|
944 |
msgid "Comments"
|
945 |
msgstr "Commentaires"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr "Obtenir ce module"
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr "Télécharger & Installer"
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Activer"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr "Installé"
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Désactiver"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Activé"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Ajouter une colonne"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
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>."
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Consultez la section <strong>Aide</strong> en haut à droite de l’écran."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Support"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr "Acheter la version Pro"
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr "Tweet"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr "Taux"
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
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 !"
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr "Ouah ! Nous sommes heureux d’entendre ça !"
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr "Forums"
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr "Docs"
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr "Consultez notre documentation complète ou vous pouvez ouvrir un sujet de support sur WordPress.org !"
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr "Qu’est-ce qui ne va pas ? Besoin d’aide ? Faites le nous savoir !"
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr "Êtes-vous satisfait d’Admin Columns ?"
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr "Attention ! Les données des colonnes %s vont être supprimées. Cela ne peut pas être annulé. « OK » pour supprimer, « Annuler » pour interrompre"
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Mettre à jour"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Enregistrer les réglages"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr "Modules"
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Réglages"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Réglages"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr "Autres"
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
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"
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Restaurer les réglages par défaut"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr "Cela supprimera tous les réglages de colonnes et restaurera tous les réglages par défaut."
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Restaurer les réglages"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Enregistrer"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Personnalisez vos réglages Admin Columns."
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Réglages généraux"
|
@@ -1150,11 +1128,11 @@ msgstr "Cette extension permet d’ajouter ou supprimer des colonnes dans les é
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Vue d’ensemble"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr "Les réglages par défaut ont bien été restaurés."
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "La colonne %s est déjà présente et ne peut pas être dupliquée."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "La colonne %s est déjà présente et ne peut pas être dupliquée."
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Réglages Admin Columns"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr "%s bien désactivé."
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr "trouver des réponses dans la foire aux questions"
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr "forums d’Admin Columns sur WordPress.org"
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr "Vous pouvez également trouver de l’aide dans les %s, et %s."
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr "notre forum"
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr "page de documentation"
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr "Nous sommes désolés de l’apprendre. Peut être que nous pouvons vous aider ! Si vous avez des problèmes pour configurer %s ou si vous souhaitez obtenir de l’aide pour les fonctionnalités les plus avancées, veuillez visitez notre %s."
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr "Masquer définitivement la notification"
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr "Laisser un avis !"
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr "cliquez ici"
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
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."
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr "Admin Columns Pro"
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr "En savoir plus"
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr "Admin Columns Pro propose une intégration complète de %s vous permettant de facilement afficher et modifier les champs de %s à partir de votre vue d’ensemble."
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
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>."
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr "La colonne %s est uniquement disponible avec Admin Columns Pro - Business ou Developer."
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr "Voir l’article"
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "Modifier le contenu"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "C’est le nom qui apparaitra comme en-tête de colonne."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Libellé"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Nom"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Choisissez le type de colonne."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr "Cloner"
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "largeur"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Personnalisé"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Pseudonyme"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr "Nombre de commentaires"
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Supprimer"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr "Relatif au dossier de téléversement principal (uploads) "
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr "Relatif au domaine"
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr "Partie du fichier à afficher"
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr "Portée du chemin"
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Légende"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Tailles disponibles"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Afficher"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Couleur"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Par défaut"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Approuvé"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Agent"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Modifier"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Modifier"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "Non"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr "Utiliser des icônes ?"
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Actions"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr "Améliorez les vues d’ensemble des produits, commandes et promos avec de nouvelles colonnes et la modification en ligne."
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "WooCommerce"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr "Advanced Custom Fields"
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
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-11-08 07:45:24+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 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
16 |
+
msgstr "Sélectionner"
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
+
msgstr "Sélectionner une icône"
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
+
msgstr "Chemin local"
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
+
msgstr "Events Calendar"
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
+
msgstr "Module %s"
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
+
msgstr "%s doit être installé et activé pour que le module puisse fonctionner."
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
+
msgstr "Tous les modules nécessitent %s."
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
+
msgstr "Utilise un ou plusieurs ID d’/de %s pour afficher des informations à propos de celui-ci."
|
45 |
+
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr "Vous pouvez aussi utiliser votre compte admincolumns.com pour accéder au support via %s !"
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
51 |
msgid "Value: Should contain one or more User IDs, separated by commas."
|
52 |
msgstr "Valeur : doit contenir un ou plusieurs ID d’utilisateurs, séparés par des virgules."
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr "Valeur : cela affichera si le champ a un contenu ou pas."
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr "Ajout de colonnes Ninja Forms qui peuvent être triées, filtrées et directement éditées !"
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr "Gérer les colonnes pour vos vues d’ensemble d’évènements, organisateurs ou lieux."
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr "Édition"
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr "Uniquement %s pour 1 site"
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr "Obtenez des modules pour ACF, WooCommerce et beaucoup d‘autres"
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr "Créez plusieurs groupes de colonnes par vue d’ensemble"
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr "Exportez toutes les données de colonnes au format CSV"
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr "Modifiez directement votre contenu depuis la vue d’ensemble"
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr "Triez et filtrez sur tout votre contenu"
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr "Passez à la version PRO et amenez Admin Columns au niveau supérieur :"
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr "Aimez-vous Admin Columns ?"
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr "Sélectionner le type"
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr "Inclure les tailles manquantes ?"
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr "Options du site"
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr "courant"
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr "Site du réseau :"
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr "Caché"
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr "Public"
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr "Miniatures"
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr "Lancer la mise à jour"
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr "Nous avons besoin de mettre à jour votre base de données vers la dernière version."
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr "Texte alternatif"
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr "Veuillez visiter la page %s."
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr "Ninja Forms"
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr "Protégé par mot de passe"
|
378 |
msgid "User Nicename"
|
379 |
msgstr "Nom utilisateur normalisé"
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr "Envoyez-moi la promotion"
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr "Les prix commencent à partir de %s"
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr "Affichez l’un de vos champs de profil BuddyPress sur la vue d’ensemble de vos utilisateurs."
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr "BuddyPress"
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr "En savoir plus"
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr "Méthode non valide."
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr "Colonne non valide."
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr "Écran de liste non valide."
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr "ID de l’élément non valide."
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr "Mot de passe"
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr "Aucun champ disponible."
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr "Vous pouvez entrer plusieurs ID en les séparant par une virgule."
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr "Champ"
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr "Ce texte apparaîtra après la valeur de la colonne."
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr "ou"
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr "Lien court"
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ", "
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr "La remise est valide jusqu’à %s"
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr "Afficher le bouton %s sur l’écran liste."
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr "La valeur par défaut est %s."
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr "oui"
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr "non"
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr "Notification"
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr "Instructions"
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr "Aide"
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr "Fermer"
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr "Effacer toutes les colonnes"
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr "J’utilise Admin Columns pour WordPress !"
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr "Votre prénom"
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr "Votre e-mail"
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr "Envoyez nous votre e-mail et nous vous enverrons une remise de %s."
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr "Obtenez %s de réduction !"
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr "Colonnes supplémentaires :"
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr "Modifiez directement le contenu de votre colonne"
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr "version Pro"
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr "Vous avez besoin d’au moins une colonne"
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr "Disponible"
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr "Recommandé"
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr "%s ne peut pas être activé."
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr "%s bien activé."
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
774 |
+
msgstr "Affichez et modifiez les champs Toolset Type sur la vue d’ensemble des publications en quelques secondes."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
|
|
|
|
|
|
|
|
777 |
msgid "Toolset Types"
|
778 |
msgstr "Toolset Types"
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr "Pods"
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr "Importé"
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr "En savoir plus sur la version Pro"
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr "Réglages d’import & d’export"
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr "Créez plusieurs ensembles de colonnes"
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr "Ajouter des colonnes filtrables"
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr "Ajouter des colonnes triables"
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr "Passez Admin Columns au niveau supérieur :"
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr "Passez en"
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr "Les colonnes pour %s sont configurées via PHP et ne peuvent donc pas être modifiées."
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr "Veuillez visiter l’écran %s une première fois afin de charger toutes colonnes disponibles."
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr "Restaurer les colonnes"
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr "Les réglages pour %s ont bien été restaurés."
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr "Voir l’écran %s"
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr "Réponse non valide"
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr "Libellé du lien"
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr "Vous avez besoin d’Admin Columns Pro."
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr "Le module n’existe pas."
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr "la page des modules"
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
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 !"
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Champs personnalisés"
|
867 |
|
873 |
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."
|
874 |
msgstr "Personnalisez les colonnes sur les écrans d’administration des articles, types de publications, pages, médias, commentaires, liens et utilisateurs grâce à une interface glisser-déposer facile à utiliser."
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr "https://www.admincolumns.com"
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Modifier les colonnes"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Mettre à niveau"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr "Les réglages pour les %s ont bien été mis à jour."
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "Vous essayez de conserver les mêmes réglages pour %s."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "Aucun réglage de colonne disponible."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "Commentaires"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr "Obtenir ce module"
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr "Télécharger & Installer"
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Activer"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr "Installé"
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Désactiver"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Activé"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Ajouter une colonne"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
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>."
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Consultez la section <strong>Aide</strong> en haut à droite de l’écran."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Support"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr "Acheter la version Pro"
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr "Tweet"
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr "Taux"
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
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 !"
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr "Ouah ! Nous sommes heureux d’entendre ça !"
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr "Forums"
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr "Docs"
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr "Consultez notre documentation complète ou vous pouvez ouvrir un sujet de support sur WordPress.org !"
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr "Qu’est-ce qui ne va pas ? Besoin d’aide ? Faites le nous savoir !"
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr "Êtes-vous satisfait d’Admin Columns ?"
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr "Attention ! Les données des colonnes %s vont être supprimées. Cela ne peut pas être annulé. « OK » pour supprimer, « Annuler » pour interrompre"
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Mettre à jour"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Enregistrer les réglages"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr "Modules"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Réglages"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr "Autres"
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
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"
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Restaurer les réglages par défaut"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr "Cela supprimera tous les réglages de colonnes et restaurera tous les réglages par défaut."
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Restaurer les réglages"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Enregistrer"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Personnalisez vos réglages Admin Columns."
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Réglages généraux"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Vue d’ensemble"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr "Les réglages par défaut ont bien été restaurés."
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
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 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Réglages Admin Columns"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr "%s bien désactivé."
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr "trouver des réponses dans la foire aux questions"
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr "forums d’Admin Columns sur WordPress.org"
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr "Vous pouvez également trouver de l’aide dans les %s, et %s."
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr "notre forum"
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr "page de documentation"
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr "Nous sommes désolés de l’apprendre. Peut être que nous pouvons vous aider ! Si vous avez des problèmes pour configurer %s ou si vous souhaitez obtenir de l’aide pour les fonctionnalités les plus avancées, veuillez visitez notre %s."
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr "Masquer définitivement la notification"
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr "Laisser un avis !"
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr "cliquez ici"
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
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."
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr "Admin Columns Pro"
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr "En savoir plus"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr "Admin Columns Pro propose une intégration complète de %s vous permettant de facilement afficher et modifier les champs de %s à partir de votre vue d’ensemble."
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
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>."
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr "La colonne %s est uniquement disponible avec Admin Columns Pro - Business ou Developer."
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "Modifier le contenu"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "C’est le nom qui apparaitra comme en-tête de colonne."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Libellé"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Choisissez le type de colonne."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr "Cloner"
|
1250 |
|
1293 |
msgstr "largeur"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Personnalisé"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr "Nombre de commentaires"
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Supprimer"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr "Relatif au domaine"
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr "Partie du fichier à afficher"
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr "Portée du chemin"
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Tailles disponibles"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Afficher"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Par défaut"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Agent"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Modifier"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "Non"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Actions"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr "Améliorez les vues d’ensemble des produits, commandes et promos avec de nouvelles colonnes et la modification en ligne."
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "WooCommerce"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr "Advanced Custom Fields"
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr "Extensions"
|
languages/codepress-admin-columns-he_IL.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: he_IL\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: classes/Admin/Addon.php:279
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: classes/
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr "שדרג אל"
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr "הגדרות עבור %s שוחזרו בהצלחה."
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr "הצג מסך %s"
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr "תגיבה לא תקינה."
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr "עמוד ההרחבות"
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "שדות מיוחדים"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr "AdminColumns.com"
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr "https://www.admincolumns.com"
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "שדרוג"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr "הגדרות עבור %s עודכנו בהצלחה."
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr ""
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "תגובות"
|
|
944 |
msgid "Comments"
|
945 |
msgstr "תגובות"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "הפעלה"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr "מותקן"
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "כיבוי"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "פעיל"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "הוספת עמודה"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "תמיכה"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr "צייץ"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr "דרג"
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr "וואוו! אנחנו שמחים לשמוע את זה."
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr "פורומים"
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr "תיעוד"
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "עדכון"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "הגדרות חנות"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "הגדרות"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "הגדרות"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "שיחזור הגדרות ברירת מחדל"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "שיחזור הגדרות"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "שמירה"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "הגדות כלליות"
|
@@ -1150,11 +1128,11 @@ msgstr ""
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "סקירה"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr ""
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr ""
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr "עמוד תיעוד"
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr "הסתר התראה לתמיד"
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr "השאר סקירה!"
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr "לחץ כאן"
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr "לפרטים נוספים"
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr "הצג פוסט"
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "עריכת פוסט"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "תווית"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "שם"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr "שכפל"
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "רוחב"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "מותאם"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "כינוי"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "הסר"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr "יחסי לדומיין"
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr ""
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "גדלים אפשריים"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "הצג"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "צבע"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "ברירת מחדל"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "אושר"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "עריכה"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "עריכה"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "לא"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr "השתמש באייקון?"
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "פעולות"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "ווקומרס"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr "תוספים"
|
11 |
"Language: he_IL\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr "שדרג אל"
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr "הגדרות עבור %s שוחזרו בהצלחה."
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr "הצג מסך %s"
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr "תגיבה לא תקינה."
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr "עמוד ההרחבות"
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "שדות מיוחדים"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr "https://www.admincolumns.com"
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "שדרוג"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr "הגדרות עבור %s עודכנו בהצלחה."
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr ""
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "תגובות"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "הפעלה"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr "מותקן"
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "כיבוי"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "פעיל"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "הוספת עמודה"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "תמיכה"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr "צייץ"
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr "דרג"
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr "וואוו! אנחנו שמחים לשמוע את זה."
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr "פורומים"
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr "תיעוד"
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "עדכון"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "הגדרות חנות"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "הגדרות"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "שיחזור הגדרות ברירת מחדל"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "שיחזור הגדרות"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "שמירה"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "הגדות כלליות"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "סקירה"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1136 |
msgid "%s column is already present and can not be duplicated."
|
1137 |
msgstr ""
|
1138 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr "עמוד תיעוד"
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr "הסתר התראה לתמיד"
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr "השאר סקירה!"
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr "לחץ כאן"
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr "לפרטים נוספים"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "עריכת פוסט"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "תווית"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr "שכפל"
|
1250 |
|
1293 |
msgstr "רוחב"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "מותאם"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "הסר"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr "יחסי לדומיין"
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr ""
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "גדלים אפשריים"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "הצג"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "ברירת מחדל"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "עריכה"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "לא"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "פעולות"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "ווקומרס"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr "תוספים"
|
languages/codepress-admin-columns-hu_HU.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: hu\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: classes/Admin/Addon.php:279
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: classes/
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr ""
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr " Egyedi mezők"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr ""
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Oszlopok szerkesztése"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Frissítés"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "Nincs elérhető oszlopbeállítás."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr ""
|
|
944 |
msgid "Comments"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Sikeresen regisztrált oldalunkra!"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Bekapcsolva"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Oszlop hozzáadása"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Segítség"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Frisítés"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Beállítások tárolása"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Beállítások"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Beállítások"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Alapértelmezett beállítások visszaállítása"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Beállítások visszaállítása"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Az Admin Columns beállítások módosítása"
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Általános beállítások"
|
@@ -1150,11 +1128,11 @@ msgstr "A plugin segítségével további oszlopokat lehet hozzáadni bejegyzés
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Áttekintés"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Admin Columns beállítások"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr ""
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "Ez a név fog megjelenni az oszlop fejlécében."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Címke"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Név"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Válassz egy oszloptípust."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr ""
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "szélesség"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Egyedi"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Becenév"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Eltávolítás"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Kép felirata"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Elérhető méretek"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Megtekintés"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Szín"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Alapérték"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Jóváhagyva"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Ügynök"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Szerkesztés"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Szerkesztés"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "Nem"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr ""
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Műveletek"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr ""
|
11 |
"Language: hu\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr ""
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr " Egyedi mezők"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Oszlopok szerkesztése"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Frissítés"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "Nincs elérhető oszlopbeállítás."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Sikeresen regisztrált oldalunkra!"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Bekapcsolva"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Oszlop hozzáadása"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Segítség"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Frisítés"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Beállítások tárolása"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Beállítások"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Alapértelmezett beállítások visszaállítása"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Beállítások visszaállítása"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Az Admin Columns beállítások módosítása"
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Általános beállítások"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Áttekintés"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
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 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Admin Columns beállítások"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "Ez a név fog megjelenni az oszlop fejlécében."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Címke"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Válassz egy oszloptípust."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr ""
|
1250 |
|
1293 |
msgstr "szélesség"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Egyedi"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Eltávolítás"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr ""
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Elérhető méretek"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Megtekintés"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Alapérték"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Ügynök"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Szerkesztés"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "Nem"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Műveletek"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr ""
|
languages/codepress-admin-columns-it_IT.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: it\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr "Protetto da password"
|
@@ -386,19 +378,19 @@ msgstr "Riassunto mancante."
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr "Inviami lo sconto"
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr "Prezzi a partire da %s"
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr "BuddyPress"
|
404 |
|
@@ -406,19 +398,19 @@ msgstr "BuddyPress"
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr "Elemento ID non valido"
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr "Password"
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr "Nessun campo disponibile"
|
483 |
|
@@ -584,7 +576,7 @@ msgstr "Numero"
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr "Campo"
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr "o"
|
617 |
|
@@ -635,7 +627,7 @@ msgstr "Mostra la barra degli strumenti"
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr "Shortlink"
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ", "
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr "Lo sconto é valido fino al %s"
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr "Avviso"
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr "Istruzioni"
|
677 |
|
@@ -717,89 +709,75 @@ msgstr ""
|
|
717 |
msgid "Help"
|
718 |
msgstr "Aiuto"
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr "Cancellare tutte le colonne "
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr "Sto usando Admin Columns per WordPress!"
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr "Il tuo nome"
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr "La tua email"
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr "Pro"
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] ""
|
784 |
-
msgstr[1] ""
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: classes/Admin/Addon.php:279
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: classes/
|
799 |
msgid "Toolset Types"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr ""
|
805 |
|
@@ -807,55 +785,55 @@ msgstr ""
|
|
807 |
msgid "Imported"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr "Ulteriori informazioni su Pro"
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr "Ripristina colonne"
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr "Risposta non valida."
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Campi personalizzati"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr "AdminColumns.com"
|
|
895 |
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."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr "https://www.admincolumns.com"
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Modifica colonne"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Aggiornamento"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr "Impostazioni per %s aggiornato con successo."
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "Nessuna impostazione colonne disponibile."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "Commento"
|
|
944 |
msgid "Comments"
|
945 |
msgstr "Commenti"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr "Ottieni questo componente aggiuntivo"
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr "Scarica & Installa"
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Attiva"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr "Installato"
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Disattiva"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Attivo"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Aggiungi colonna"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Supporto"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr "Acquista Pro"
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr "Tweet"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr "Woohoo! Siamo lieti di sentire questo!"
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr "Forum"
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr "Documenti"
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr "Sei felice con Admin Columns?"
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Aggiorna"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Memorizza le impostazioni"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr "Componenti aggiuntivi"
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Impostazioni"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Impostazioni"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr "Altri"
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Ripristina le impostazioni predefinite"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Ripristina Impostazioni"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Salva"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Personalizza le impostazioni del tuo Admin Columns"
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Impostazioni generali"
|
@@ -1150,11 +1128,11 @@ msgstr ""
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Panoramica"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "Colonna %s è già presente e non può essere duplicata."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "Colonna %s è già presente e non può essere duplicata."
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Impostazioni Admin Columns"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr "Tu puoi anche trovare aiuto su %s, e %s."
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr "pagina di documentazione"
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr "Siamo spiacenti di sentire questo; forse possiamo aiutare! Se stai avendo problemi di impostare correttamente %s o se vuoi aiuto con alcune caratteristiche più avanzate, si prega di visitare il nostro %s."
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr "Avvisi permanentemente nascosti"
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr "Lascia un commento!"
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr "fai clic qui"
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr "Admin Columns Pro"
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr "Per saperne di più"
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr ""
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr ""
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "Modifica Post"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "Questo è il nome che apparirà come intestazione della colonna."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Etichetta"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Nome"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Scegli un tipo di colonna."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr "Clona"
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "larghezza"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Personalizzato"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Nickname"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Elimina"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr "Relativo al dominio"
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr "Parte del percorso del file da visualizzare"
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr "Percorso del campo"
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Didascalia"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Dimensioni Disponibili"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr ""
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Colore"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Predefinito"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Approvato"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Agente"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Modifica"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Modifica"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "No"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr "Utilizzare le icone?"
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Azioni"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr "Valorizzare i prodotti, ordini e panoramiche coupons con nuove colonne e modifica in linea."
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "WooCommerce"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr "Campi personalizzati avanzati"
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr "Plugin"
|
11 |
"Language: it\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr "Protetto da password"
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr "Inviami lo sconto"
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr "Prezzi a partire da %s"
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr "BuddyPress"
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr "Elemento ID non valido"
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr "Password"
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr "Nessun campo disponibile"
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr "Campo"
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr "o"
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr "Shortlink"
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ", "
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr "Lo sconto é valido fino al %s"
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr "Avviso"
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr "Istruzioni"
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr "Aiuto"
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr "Cancellare tutte le colonne "
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr "Sto usando Admin Columns per WordPress!"
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr "Il tuo nome"
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr "La tua email"
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr "Pro"
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
777 |
msgid "Toolset Types"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr ""
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr "Ulteriori informazioni su Pro"
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr "Ripristina colonne"
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr "Risposta non valida."
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Campi personalizzati"
|
867 |
|
873 |
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."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr "https://www.admincolumns.com"
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Modifica colonne"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Aggiornamento"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr "Impostazioni per %s aggiornato con successo."
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "Stai tentando di memorizzare le stesse impostazioni per %s."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "Nessuna impostazione colonne disponibile."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "Commenti"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr "Ottieni questo componente aggiuntivo"
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr "Scarica & Installa"
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Attiva"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr "Installato"
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Disattiva"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Attivo"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Aggiungi colonna"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Controlla la sezione <strong>Aiuto</strong> nella schermata in alto a destra."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Supporto"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr "Acquista Pro"
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr "Tweet"
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr "Woohoo! Siamo lieti di sentire questo!"
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr "Forum"
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr "Documenti"
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr "Scopri la nostra vasta documentazione, oppure aprire un topic di supporto su WordPress.org!"
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr "Cosa c'è che non va? Bisogno di aiuto? Facci sapere!"
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr "Sei felice con Admin Columns?"
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Aggiorna"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Memorizza le impostazioni"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr "Componenti aggiuntivi"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Impostazioni"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr "Altri"
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Ripristina le impostazioni predefinite"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Ripristina Impostazioni"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Salva"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Personalizza le impostazioni del tuo Admin Columns"
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Impostazioni generali"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Panoramica"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1136 |
msgid "%s column is already present and can not be duplicated."
|
1137 |
msgstr "Colonna %s è già presente e non può essere duplicata."
|
1138 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Impostazioni Admin Columns"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr "Tu puoi anche trovare aiuto su %s, e %s."
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr "pagina di documentazione"
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr "Siamo spiacenti di sentire questo; forse possiamo aiutare! Se stai avendo problemi di impostare correttamente %s o se vuoi aiuto con alcune caratteristiche più avanzate, si prega di visitare il nostro %s."
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr "Avvisi permanentemente nascosti"
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr "Lascia un commento!"
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr "fai clic qui"
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr "Admin Columns Pro"
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr "Per saperne di più"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr ""
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "Modifica Post"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "Questo è il nome che apparirà come intestazione della colonna."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Etichetta"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Scegli un tipo di colonna."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr "Clona"
|
1250 |
|
1293 |
msgstr "larghezza"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Personalizzato"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Elimina"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr "Relativo al dominio"
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr "Parte del percorso del file da visualizzare"
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr "Percorso del campo"
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Dimensioni Disponibili"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr ""
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Predefinito"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Agente"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Modifica"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "No"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Azioni"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr "Valorizzare i prodotti, ordini e panoramiche coupons con nuove colonne e modifica in linea."
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "WooCommerce"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr "Campi personalizzati avanzati"
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr "Plugin"
|
languages/codepress-admin-columns-ja_JA.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: ja_JP\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr "さらに表示"
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr "無効なメソッド。"
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr "無効な列。"
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr "無効なリスト画面。"
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr "無効な項目 ID。"
|
424 |
|
@@ -477,7 +469,7 @@ msgstr "プレーンテキスト"
|
|
477 |
msgid "Password"
|
478 |
msgstr "パスワード"
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr "利用可能なフィールドはありません。"
|
483 |
|
@@ -584,7 +576,7 @@ msgstr "番号"
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr "フィールド"
|
590 |
|
@@ -611,7 +603,7 @@ msgstr "表示設定"
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr "または"
|
617 |
|
@@ -635,7 +627,7 @@ msgstr "ツールバーを表示"
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr "短縮リンク"
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr "、"
|
641 |
|
@@ -651,27 +643,27 @@ msgstr "完全なパス"
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr "割引は%sまで有効です"
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr "%s ボタンをテーブル画面に表示"
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr "デフォルトは %s です。"
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr "オン"
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr "オフ"
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr "注意"
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr "手順"
|
677 |
|
@@ -716,88 +708,75 @@ msgstr "被推奨フィルター"
|
|
716 |
msgid "Help"
|
717 |
msgstr "ヘルプ"
|
718 |
|
719 |
-
#: classes/Admin/Page/Columns.php:
|
720 |
msgid "Close"
|
721 |
msgstr "閉じる"
|
722 |
|
723 |
-
#: classes/Admin/Page/Columns.php:
|
724 |
msgid "Clear all columns "
|
725 |
msgstr "すべての列をクリア"
|
726 |
|
727 |
-
#: classes/Admin/Page/Columns.php:
|
728 |
msgid "I'm using Admin Columns for WordPress!"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: classes/Admin/Page/Columns.php:
|
732 |
msgid "Your First Name"
|
733 |
msgstr "名"
|
734 |
|
735 |
-
#: classes/Admin/Page/Columns.php:
|
736 |
msgid "Your Email"
|
737 |
msgstr "メールアドレス"
|
738 |
|
739 |
-
#: classes/Admin/Page/Columns.php:
|
740 |
msgid "Submit your email and we'll send you a discount for %s off."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: classes/Admin/Page/Columns.php:
|
744 |
msgid "Get %s Off!"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: classes/Admin/Page/Columns.php:
|
748 |
msgid "Extra Columns for:"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: classes/Admin/Page/Columns.php:
|
752 |
msgid "Edit your column content directly"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: classes/Admin/Page/Columns.php:
|
756 |
msgid "Pro"
|
757 |
msgstr "プロ版"
|
758 |
|
759 |
-
#: classes/Admin/Page/Columns.php:
|
760 |
msgid "You need at least one column"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: classes/Admin/Page/Addons.php:
|
764 |
msgid "Available"
|
765 |
msgstr "利用可能"
|
766 |
|
767 |
-
#: classes/Admin/Page/Addons.php:
|
768 |
msgid "Recommended"
|
769 |
msgstr "おすすめ"
|
770 |
|
771 |
-
#: classes/Admin/Page/Addons.php:
|
772 |
msgid "%s could not be activated."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: classes/Admin/Page/Addons.php:
|
776 |
msgid "%s successfully activated."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: classes/
|
780 |
-
msgid "
|
781 |
-
msgid_plural "%s add-ons requires %s."
|
782 |
-
msgstr[0] ""
|
783 |
-
|
784 |
-
#: classes/Admin/Page/Addons.php:129
|
785 |
-
msgid "%s is installed, but not active."
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: classes/Admin/Page/Addons.php:123
|
789 |
-
msgid "%s needs to be installed for the add-on to work."
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: classes/Admin/Addon.php:279
|
793 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: classes/
|
797 |
msgid "Toolset Types"
|
798 |
msgstr "ツールセットの種類"
|
799 |
|
800 |
-
#: classes/
|
801 |
msgid "Pods"
|
802 |
msgstr ""
|
803 |
|
@@ -805,55 +784,55 @@ msgstr ""
|
|
805 |
msgid "Imported"
|
806 |
msgstr "インポート済み"
|
807 |
|
808 |
-
#: classes/Admin/Page/Columns.php:
|
809 |
msgid "Learn more about Pro"
|
810 |
msgstr "プロ版についてさらに詳しく読む"
|
811 |
|
812 |
-
#: classes/Admin/Page/Columns.php:
|
813 |
msgid "Import & Export settings"
|
814 |
msgstr "インポート & エクスポート設定"
|
815 |
|
816 |
-
#: classes/Admin/Page/Columns.php:
|
817 |
msgid "Create multiple columns sets"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: classes/Admin/Page/Columns.php:
|
821 |
msgid "Add filterable columns"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: classes/Admin/Page/Columns.php:
|
825 |
msgid "Add sortable columns"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: classes/Admin/Page/Columns.php:
|
829 |
msgid "Take Admin Columns to the next level:"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: classes/Admin/Page/Columns.php:
|
833 |
msgid "Upgrade to"
|
834 |
msgstr "アップグレード:"
|
835 |
|
836 |
-
#: classes/Admin/Page/Columns.php:
|
837 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: classes/Admin/Page/Columns.php:
|
841 |
msgid "Please visit the %s screen once to load all available columns"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: classes/Admin/Page/Columns.php:
|
845 |
msgid "Restore columns"
|
846 |
msgstr "列を復元"
|
847 |
|
848 |
-
#: classes/Admin/Page/Columns.php:
|
849 |
msgid "Settings for %s restored successfully."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: classes/Admin/Page/Columns.php:
|
853 |
msgid "View %s screen"
|
854 |
msgstr "%s 画面を表示"
|
855 |
|
856 |
-
#: classes/Admin/Page/Columns.php:
|
857 |
msgid "Invalid response."
|
858 |
msgstr "無効なレスポンス。"
|
859 |
|
@@ -865,23 +844,23 @@ msgstr ""
|
|
865 |
msgid "Link Label"
|
866 |
msgstr "リンクのラベル"
|
867 |
|
868 |
-
#: classes/Admin/Page/Addons.php:
|
869 |
msgid "You need Admin Columns Pro."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: classes/Admin/Page/Addons.php:
|
873 |
msgid "Addon does not exist."
|
874 |
msgstr "アドオンが存在しません。"
|
875 |
|
876 |
-
#: classes/Check/AddonAvailable.php:
|
877 |
msgid "the addons page"
|
878 |
msgstr "アドオンのページ"
|
879 |
|
880 |
-
#: classes/Check/AddonAvailable.php:
|
881 |
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!"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
885 |
msgid "Custom Fields"
|
886 |
msgstr "カスタムフィールド"
|
887 |
|
@@ -893,30 +872,30 @@ msgstr "AdminColumns.com"
|
|
893 |
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."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
897 |
#. Plugin URI of the plugin/theme
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Author URI of the plugin/theme
|
900 |
msgid "https://www.admincolumns.com"
|
901 |
msgstr "https://www.admincolumns.com"
|
902 |
|
903 |
-
#: classes/Admin/Page/Settings.php:
|
904 |
msgid "Edit columns"
|
905 |
msgstr "列の編集"
|
906 |
|
907 |
-
#: classes/Admin/Page/Columns.php:
|
908 |
msgid "Upgrade"
|
909 |
msgstr "アップグレード"
|
910 |
|
911 |
-
#: classes/Admin/Page/Columns.php:
|
912 |
msgid "Settings for %s updated successfully."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: classes/Admin/Page/Columns.php:
|
916 |
msgid "You are trying to store the same settings for %s."
|
917 |
msgstr "%sはすでに設定済みです "
|
918 |
|
919 |
-
#: classes/ListScreen.php:
|
920 |
msgid "No columns settings available."
|
921 |
msgstr "設定された列はありません"
|
922 |
|
@@ -942,103 +921,103 @@ msgstr "コメント"
|
|
942 |
msgid "Comments"
|
943 |
msgstr "コメント"
|
944 |
|
945 |
-
#: classes/Admin/Page/Addons.php:
|
946 |
msgid "Get this add-on"
|
947 |
msgstr "このアドオンを入手"
|
948 |
|
949 |
-
#: classes/Admin/Page/Addons.php:
|
950 |
msgid "Download & Install"
|
951 |
msgstr "ダウンロード & インストール"
|
952 |
|
953 |
-
#: classes/Admin/Page/Addons.php:
|
954 |
msgid "Activate"
|
955 |
msgstr "有効化"
|
956 |
|
957 |
-
#: classes/Admin/Page/Addons.php:
|
958 |
msgid "Installed"
|
959 |
msgstr "インストール済み"
|
960 |
|
961 |
-
#: classes/Admin/Page/Addons.php:
|
962 |
msgid "Deactivate"
|
963 |
msgstr "停止"
|
964 |
|
965 |
-
#: classes/Admin/Page/Addons.php:
|
966 |
msgid "Active"
|
967 |
msgstr "有効"
|
968 |
|
969 |
-
#: classes/Admin/Page/Columns.php:
|
970 |
msgid "Add Column"
|
971 |
msgstr "列を追加"
|
972 |
|
973 |
-
#: classes/Admin/Page/Columns.php:
|
974 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: classes/Admin/Page/Columns.php:
|
978 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
979 |
msgstr "画面右上の<strong>Help</strong>を確認してください。"
|
980 |
|
981 |
-
#: classes/Admin/Page/Columns.php:
|
982 |
msgid "Support"
|
983 |
msgstr "サポート"
|
984 |
|
985 |
-
#: classes/Admin/Page/Columns.php:
|
986 |
msgid "Buy Pro"
|
987 |
msgstr "Pro 版を購入"
|
988 |
|
989 |
-
#: classes/Admin/Page/Columns.php:
|
990 |
msgid "Tweet"
|
991 |
msgstr "ツイートする"
|
992 |
|
993 |
-
#: classes/Admin/Page/Columns.php:
|
994 |
msgid "Rate"
|
995 |
msgstr "評価"
|
996 |
|
997 |
-
#: classes/Admin/Page/Columns.php:
|
998 |
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!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: classes/Admin/Page/Columns.php:
|
1002 |
msgid "Woohoo! We're glad to hear that!"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: classes/Admin/Page/Columns.php:
|
1006 |
msgid "Forums"
|
1007 |
msgstr "フォーラム"
|
1008 |
|
1009 |
-
#: classes/Admin/Page/Columns.php:
|
1010 |
msgid "Docs"
|
1011 |
msgstr "ドキュメント"
|
1012 |
|
1013 |
-
#: classes/Admin/Page/Columns.php:
|
1014 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: classes/Admin/Page/Columns.php:
|
1018 |
msgid "What's wrong? Need help? Let us know!"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: classes/Admin/Page/Columns.php:
|
1022 |
msgid "Are you happy with Admin Columns?"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: classes/Admin/Page/Columns.php:
|
1026 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: classes/Admin/Page/Columns.php:
|
1030 |
msgid "Update"
|
1031 |
msgstr "更新"
|
1032 |
|
1033 |
-
#: classes/Admin/Page/Columns.php:
|
1034 |
msgid "Store settings"
|
1035 |
msgstr "ストアー設定"
|
1036 |
|
1037 |
-
#: classes/Admin/Page/Addons.php:
|
1038 |
msgid "Add-ons"
|
1039 |
msgstr "アドオン"
|
1040 |
|
1041 |
-
#: classes/Admin/Page/Settings.php:
|
1042 |
msgid "Settings"
|
1043 |
msgstr "設定"
|
1044 |
|
@@ -1046,32 +1025,32 @@ msgstr "設定"
|
|
1046 |
msgid "Others"
|
1047 |
msgstr "その他"
|
1048 |
|
1049 |
-
#: classes/Admin/Page/Settings.php:
|
1050 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: classes/Admin/Page/Settings.php:
|
1054 |
msgid "Restore default settings"
|
1055 |
msgstr "デフォルト設定に復元する"
|
1056 |
|
1057 |
-
#: classes/Admin/Page/Settings.php:
|
1058 |
msgid "This will delete all column settings and restore the default settings."
|
1059 |
msgstr "追加された全ての列を削除し、デフォルト設定に戻します。"
|
1060 |
|
1061 |
-
#: classes/Admin/Page/Settings.php:
|
1062 |
msgid "Restore Settings"
|
1063 |
msgstr "設定を修復"
|
1064 |
|
1065 |
-
#: classes/Admin/Page/Columns.php:
|
1066 |
-
#: classes/Admin/Page/Settings.php:
|
1067 |
msgid "Save"
|
1068 |
msgstr "保存"
|
1069 |
|
1070 |
-
#: classes/Admin/Page/Settings.php:
|
1071 |
msgid "Customize your Admin Columns settings."
|
1072 |
msgstr "管理画面の列表示をカスタマイズします。"
|
1073 |
|
1074 |
-
#: classes/Admin/Page/Settings.php:
|
1075 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1076 |
msgid "General Settings"
|
1077 |
msgstr "一般設定"
|
@@ -1153,11 +1132,11 @@ msgstr ""
|
|
1153 |
msgid "Overview"
|
1154 |
msgstr "概要"
|
1155 |
|
1156 |
-
#: classes/Admin/Page/Settings.php:
|
1157 |
msgid "Default settings successfully restored."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: classes/Admin/Page/Columns.php:
|
1161 |
msgid "%s column is already present and can not be duplicated."
|
1162 |
msgstr "%s 列はすでに存在します。複製することができません "
|
1163 |
|
@@ -1165,75 +1144,75 @@ msgstr "%s 列はすでに存在します。複製することができません
|
|
1165 |
msgid "Admin Columns Settings"
|
1166 |
msgstr "Admin Columns 設定"
|
1167 |
|
1168 |
-
#: classes/Admin/Page/Addons.php:
|
1169 |
msgid "%s successfully deactivated."
|
1170 |
msgstr "%s を無効化しました。"
|
1171 |
|
1172 |
-
#: classes/Check/Review.php:
|
1173 |
msgid "find answers to frequently asked questions"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: classes/Check/Review.php:
|
1177 |
msgid "Admin Columns forum on WordPress.org"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: classes/Check/Review.php:
|
1181 |
msgid "You can also find help on the %s, and %s."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: classes/Check/Review.php:
|
1185 |
msgid "our forum"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: classes/Check/Review.php:
|
1189 |
msgid "documentation page"
|
1190 |
msgstr "ドキュメントページ"
|
1191 |
|
1192 |
-
#: classes/Check/Review.php:
|
1193 |
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."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: classes/Check/Review.php:
|
1197 |
msgid "Permanently hide notice"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: classes/Check/Review.php:
|
1201 |
msgid "Leave a review!"
|
1202 |
msgstr "レビューを残す"
|
1203 |
|
1204 |
-
#: classes/Check/Review.php:
|
1205 |
msgid "click here"
|
1206 |
msgstr "ここをクリック"
|
1207 |
|
1208 |
-
#: classes/Check/Review.php:
|
1209 |
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."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: classes/Admin/Page/Addons.php:
|
1213 |
msgid "Admin Columns Pro"
|
1214 |
msgstr "Admin Columns Pro"
|
1215 |
|
1216 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1217 |
#. Plugin Name of the plugin/theme
|
1218 |
-
#: classes/Admin/Page/Columns.php:
|
1219 |
-
#: classes/Check/Review.php:
|
1220 |
-
#: classes/Plugin/Updater.php:
|
1221 |
msgid "Admin Columns"
|
1222 |
msgstr "Admin Columns"
|
1223 |
|
1224 |
-
#: classes/Column/Placeholder.php:
|
1225 |
msgid "Find out more"
|
1226 |
msgstr "もっと見る"
|
1227 |
|
1228 |
-
#: classes/Column/Placeholder.php:
|
1229 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: classes/Column/Placeholder.php:
|
1233 |
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>."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: classes/Column/Placeholder.php:
|
1237 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1238 |
msgstr ""
|
1239 |
|
@@ -1253,11 +1232,11 @@ msgstr "投稿を表示"
|
|
1253 |
msgid "Edit Post"
|
1254 |
msgstr "投稿を編集"
|
1255 |
|
1256 |
-
#: classes/Settings/Column/Label.php:
|
1257 |
msgid "This is the name which will appear as the column header."
|
1258 |
msgstr "列に表示される名前"
|
1259 |
|
1260 |
-
#: classes/Settings/Column/Label.php:
|
1261 |
msgid "Label"
|
1262 |
msgstr "ラベル"
|
1263 |
|
@@ -1269,7 +1248,7 @@ msgstr "名称"
|
|
1269 |
msgid "Choose a column type."
|
1270 |
msgstr "カラム形式を選択。"
|
1271 |
|
1272 |
-
#: classes/Admin/Page/Columns.php:
|
1273 |
msgid "Clone"
|
1274 |
msgstr "複製"
|
1275 |
|
@@ -1318,7 +1297,7 @@ msgid "width"
|
|
1318 |
msgstr "幅"
|
1319 |
|
1320 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1321 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1322 |
msgid "Custom"
|
1323 |
msgstr "カスタム"
|
1324 |
|
@@ -1369,7 +1348,7 @@ msgstr "ニックネーム"
|
|
1369 |
msgid "Comment Count"
|
1370 |
msgstr "コメント数"
|
1371 |
|
1372 |
-
#: classes/Admin/Page/Columns.php:
|
1373 |
msgid "Remove"
|
1374 |
msgstr "削除"
|
1375 |
|
@@ -1549,11 +1528,11 @@ msgstr ""
|
|
1549 |
msgid "Relative to domain"
|
1550 |
msgstr "ドメインに対して相対"
|
1551 |
|
1552 |
-
#: classes/Settings/Column/PathScope.php:
|
1553 |
msgid "Part of the file path to display"
|
1554 |
msgstr "表示するファイルパスの部分"
|
1555 |
|
1556 |
-
#: classes/Settings/Column/PathScope.php:
|
1557 |
msgid "Path scope"
|
1558 |
msgstr "パススコープ"
|
1559 |
|
@@ -1614,7 +1593,7 @@ msgstr "キャプション"
|
|
1614 |
msgid "Available Sizes"
|
1615 |
msgstr "利用可能なサイズ"
|
1616 |
|
1617 |
-
#: classes/Admin/Page/Columns.php:
|
1618 |
msgid "View"
|
1619 |
msgstr "表示"
|
1620 |
|
@@ -1671,7 +1650,7 @@ msgstr "色"
|
|
1671 |
#: classes/Admin/Help/CustomField.php:22
|
1672 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1673 |
#: classes/Settings/Column/Image.php:72
|
1674 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1675 |
msgid "Default"
|
1676 |
msgstr "デフォルト"
|
1677 |
|
@@ -1758,7 +1737,7 @@ msgstr "承認済み"
|
|
1758 |
msgid "Agent"
|
1759 |
msgstr "エージェント"
|
1760 |
|
1761 |
-
#: classes/Admin/Page/Columns.php:
|
1762 |
msgid "Edit"
|
1763 |
msgstr "編集"
|
1764 |
|
@@ -1768,7 +1747,7 @@ msgstr "編集"
|
|
1768 |
msgid "ID"
|
1769 |
msgstr "ID"
|
1770 |
|
1771 |
-
#: classes/Admin/Page/Columns.php:
|
1772 |
#: classes/Settings/Column/ActionIcons.php:23
|
1773 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1774 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1777,7 +1756,7 @@ msgstr "ID"
|
|
1777 |
msgid "No"
|
1778 |
msgstr "いいえ"
|
1779 |
|
1780 |
-
#: classes/Admin/Page/Columns.php:
|
1781 |
#: classes/Settings/Column/ActionIcons.php:22
|
1782 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1783 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1798,18 +1777,18 @@ msgstr "アイコンを使いますか ?"
|
|
1798 |
msgid "Actions"
|
1799 |
msgstr "アクション"
|
1800 |
|
1801 |
-
#: classes/
|
1802 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: classes/
|
1806 |
msgid "WooCommerce"
|
1807 |
msgstr "WooCommerce"
|
1808 |
|
1809 |
-
#: classes/
|
1810 |
msgid "Advanced Custom Fields"
|
1811 |
msgstr "Advanced Custom Fields"
|
1812 |
|
1813 |
-
#: classes/Admin/Page/Addons.php:
|
1814 |
msgid "Plugins"
|
1815 |
msgstr "プラグイン"
|
11 |
"Language: ja_JP\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr "さらに表示"
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr "無効なメソッド。"
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr "無効な列。"
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr "無効なリスト画面。"
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr "無効な項目 ID。"
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr "パスワード"
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr "利用可能なフィールドはありません。"
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr "フィールド"
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr "または"
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr "短縮リンク"
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr "、"
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr "割引は%sまで有効です"
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr "%s ボタンをテーブル画面に表示"
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr "デフォルトは %s です。"
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr "オン"
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr "オフ"
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr "注意"
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr "手順"
|
669 |
|
708 |
msgid "Help"
|
709 |
msgstr "ヘルプ"
|
710 |
|
711 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
712 |
msgid "Close"
|
713 |
msgstr "閉じる"
|
714 |
|
715 |
+
#: classes/Admin/Page/Columns.php:756
|
716 |
msgid "Clear all columns "
|
717 |
msgstr "すべての列をクリア"
|
718 |
|
719 |
+
#: classes/Admin/Page/Columns.php:667
|
720 |
msgid "I'm using Admin Columns for WordPress!"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: classes/Admin/Page/Columns.php:609
|
724 |
msgid "Your First Name"
|
725 |
msgstr "名"
|
726 |
|
727 |
+
#: classes/Admin/Page/Columns.php:608
|
728 |
msgid "Your Email"
|
729 |
msgstr "メールアドレス"
|
730 |
|
731 |
+
#: classes/Admin/Page/Columns.php:601
|
732 |
msgid "Submit your email and we'll send you a discount for %s off."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
736 |
msgid "Get %s Off!"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: classes/Admin/Page/Columns.php:562
|
740 |
msgid "Extra Columns for:"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: classes/Admin/Page/Columns.php:545
|
744 |
msgid "Edit your column content directly"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: classes/Admin/Page/Columns.php:533
|
748 |
msgid "Pro"
|
749 |
msgstr "プロ版"
|
750 |
|
751 |
+
#: classes/Admin/Page/Columns.php:297
|
752 |
msgid "You need at least one column"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: classes/Admin/Page/Addons.php:256
|
756 |
msgid "Available"
|
757 |
msgstr "利用可能"
|
758 |
|
759 |
+
#: classes/Admin/Page/Addons.php:255
|
760 |
msgid "Recommended"
|
761 |
msgstr "おすすめ"
|
762 |
|
763 |
+
#: classes/Admin/Page/Addons.php:114
|
764 |
msgid "%s could not be activated."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: classes/Admin/Page/Addons.php:106
|
768 |
msgid "%s successfully activated."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: classes/Integration/Types.php:15
|
772 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: classes/Integration/Types.php:13
|
776 |
msgid "Toolset Types"
|
777 |
msgstr "ツールセットの種類"
|
778 |
|
779 |
+
#: classes/Integration/Pods.php:13
|
780 |
msgid "Pods"
|
781 |
msgstr ""
|
782 |
|
784 |
msgid "Imported"
|
785 |
msgstr "インポート済み"
|
786 |
|
787 |
+
#: classes/Admin/Page/Columns.php:580
|
788 |
msgid "Learn more about Pro"
|
789 |
msgstr "プロ版についてさらに詳しく読む"
|
790 |
|
791 |
+
#: classes/Admin/Page/Columns.php:547
|
792 |
msgid "Import & Export settings"
|
793 |
msgstr "インポート & エクスポート設定"
|
794 |
|
795 |
+
#: classes/Admin/Page/Columns.php:546
|
796 |
msgid "Create multiple columns sets"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: classes/Admin/Page/Columns.php:544
|
800 |
msgid "Add filterable columns"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: classes/Admin/Page/Columns.php:543
|
804 |
msgid "Add sortable columns"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: classes/Admin/Page/Columns.php:538
|
808 |
msgid "Take Admin Columns to the next level:"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: classes/Admin/Page/Columns.php:533
|
812 |
msgid "Upgrade to"
|
813 |
msgstr "アップグレード:"
|
814 |
|
815 |
+
#: classes/Admin/Page/Columns.php:428
|
816 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: classes/Admin/Page/Columns.php:218
|
820 |
msgid "Please visit the %s screen once to load all available columns"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: classes/Admin/Page/Columns.php:514
|
824 |
msgid "Restore columns"
|
825 |
msgstr "列を復元"
|
826 |
|
827 |
+
#: classes/Admin/Page/Columns.php:145
|
828 |
msgid "Settings for %s restored successfully."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: classes/Admin/Page/Columns.php:304
|
832 |
msgid "View %s screen"
|
833 |
msgstr "%s 画面を表示"
|
834 |
|
835 |
+
#: classes/Admin/Page/Columns.php:84
|
836 |
msgid "Invalid response."
|
837 |
msgstr "無効なレスポンス。"
|
838 |
|
844 |
msgid "Link Label"
|
845 |
msgstr "リンクのラベル"
|
846 |
|
847 |
+
#: classes/Admin/Page/Addons.php:180
|
848 |
msgid "You need Admin Columns Pro."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: classes/Admin/Page/Addons.php:188
|
852 |
msgid "Addon does not exist."
|
853 |
msgstr "アドオンが存在しません。"
|
854 |
|
855 |
+
#: classes/Check/AddonAvailable.php:86
|
856 |
msgid "the addons page"
|
857 |
msgstr "アドオンのページ"
|
858 |
|
859 |
+
#: classes/Check/AddonAvailable.php:82
|
860 |
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!"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
864 |
msgid "Custom Fields"
|
865 |
msgstr "カスタムフィールド"
|
866 |
|
872 |
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."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
876 |
#. Plugin URI of the plugin/theme
|
877 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
878 |
#. Author URI of the plugin/theme
|
879 |
msgid "https://www.admincolumns.com"
|
880 |
msgstr "https://www.admincolumns.com"
|
881 |
|
882 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
883 |
msgid "Edit columns"
|
884 |
msgstr "列の編集"
|
885 |
|
886 |
+
#: classes/Admin/Page/Columns.php:955
|
887 |
msgid "Upgrade"
|
888 |
msgstr "アップグレード"
|
889 |
|
890 |
+
#: classes/Admin/Page/Columns.php:324
|
891 |
msgid "Settings for %s updated successfully."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: classes/Admin/Page/Columns.php:311
|
895 |
msgid "You are trying to store the same settings for %s."
|
896 |
msgstr "%sはすでに設定済みです "
|
897 |
|
898 |
+
#: classes/ListScreen.php:719
|
899 |
msgid "No columns settings available."
|
900 |
msgstr "設定された列はありません"
|
901 |
|
921 |
msgid "Comments"
|
922 |
msgstr "コメント"
|
923 |
|
924 |
+
#: classes/Admin/Page/Addons.php:441
|
925 |
msgid "Get this add-on"
|
926 |
msgstr "このアドオンを入手"
|
927 |
|
928 |
+
#: classes/Admin/Page/Addons.php:438
|
929 |
msgid "Download & Install"
|
930 |
msgstr "ダウンロード & インストール"
|
931 |
|
932 |
+
#: classes/Admin/Page/Addons.php:432
|
933 |
msgid "Activate"
|
934 |
msgstr "有効化"
|
935 |
|
936 |
+
#: classes/Admin/Page/Addons.php:254
|
937 |
msgid "Installed"
|
938 |
msgstr "インストール済み"
|
939 |
|
940 |
+
#: classes/Admin/Page/Addons.php:428
|
941 |
msgid "Deactivate"
|
942 |
msgstr "停止"
|
943 |
|
944 |
+
#: classes/Admin/Page/Addons.php:425
|
945 |
msgid "Active"
|
946 |
msgstr "有効"
|
947 |
|
948 |
+
#: classes/Admin/Page/Columns.php:762
|
949 |
msgid "Add Column"
|
950 |
msgstr "列を追加"
|
951 |
|
952 |
+
#: classes/Admin/Page/Columns.php:695
|
953 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: classes/Admin/Page/Columns.php:691
|
957 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
958 |
msgstr "画面右上の<strong>Help</strong>を確認してください。"
|
959 |
|
960 |
+
#: classes/Admin/Page/Columns.php:686
|
961 |
msgid "Support"
|
962 |
msgstr "サポート"
|
963 |
|
964 |
+
#: classes/Admin/Page/Columns.php:674
|
965 |
msgid "Buy Pro"
|
966 |
msgstr "Pro 版を購入"
|
967 |
|
968 |
+
#: classes/Admin/Page/Columns.php:668
|
969 |
msgid "Tweet"
|
970 |
msgstr "ツイートする"
|
971 |
|
972 |
+
#: classes/Admin/Page/Columns.php:662
|
973 |
msgid "Rate"
|
974 |
msgstr "評価"
|
975 |
|
976 |
+
#: classes/Admin/Page/Columns.php:657
|
977 |
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!"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: classes/Admin/Page/Columns.php:654
|
981 |
msgid "Woohoo! We're glad to hear that!"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: classes/Admin/Page/Columns.php:644
|
985 |
msgid "Forums"
|
986 |
msgstr "フォーラム"
|
987 |
|
988 |
+
#: classes/Admin/Page/Columns.php:639
|
989 |
msgid "Docs"
|
990 |
msgstr "ドキュメント"
|
991 |
|
992 |
+
#: classes/Admin/Page/Columns.php:634
|
993 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: classes/Admin/Page/Columns.php:631
|
997 |
msgid "What's wrong? Need help? Let us know!"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: classes/Admin/Page/Columns.php:621
|
1001 |
msgid "Are you happy with Admin Columns?"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: classes/Admin/Page/Columns.php:513
|
1005 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1009 |
msgid "Update"
|
1010 |
msgstr "更新"
|
1011 |
|
1012 |
+
#: classes/Admin/Page/Columns.php:491
|
1013 |
msgid "Store settings"
|
1014 |
msgstr "ストアー設定"
|
1015 |
|
1016 |
+
#: classes/Admin/Page/Addons.php:15
|
1017 |
msgid "Add-ons"
|
1018 |
msgstr "アドオン"
|
1019 |
|
1020 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1021 |
msgid "Settings"
|
1022 |
msgstr "設定"
|
1023 |
|
1025 |
msgid "Others"
|
1026 |
msgstr "その他"
|
1027 |
|
1028 |
+
#: classes/Admin/Page/Settings.php:241
|
1029 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: classes/Admin/Page/Settings.php:241
|
1033 |
msgid "Restore default settings"
|
1034 |
msgstr "デフォルト設定に復元する"
|
1035 |
|
1036 |
+
#: classes/Admin/Page/Settings.php:233
|
1037 |
msgid "This will delete all column settings and restore the default settings."
|
1038 |
msgstr "追加された全ての列を削除し、デフォルト設定に戻します。"
|
1039 |
|
1040 |
+
#: classes/Admin/Page/Settings.php:232
|
1041 |
msgid "Restore Settings"
|
1042 |
msgstr "設定を修復"
|
1043 |
|
1044 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1045 |
+
#: classes/Admin/Page/Settings.php:191
|
1046 |
msgid "Save"
|
1047 |
msgstr "保存"
|
1048 |
|
1049 |
+
#: classes/Admin/Page/Settings.php:173
|
1050 |
msgid "Customize your Admin Columns settings."
|
1051 |
msgstr "管理画面の列表示をカスタマイズします。"
|
1052 |
|
1053 |
+
#: classes/Admin/Page/Settings.php:172
|
1054 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1055 |
msgid "General Settings"
|
1056 |
msgstr "一般設定"
|
1132 |
msgid "Overview"
|
1133 |
msgstr "概要"
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Settings.php:112
|
1136 |
msgid "Default settings successfully restored."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
1140 |
msgid "%s column is already present and can not be duplicated."
|
1141 |
msgstr "%s 列はすでに存在します。複製することができません "
|
1142 |
|
1144 |
msgid "Admin Columns Settings"
|
1145 |
msgstr "Admin Columns 設定"
|
1146 |
|
1147 |
+
#: classes/Admin/Page/Addons.php:137
|
1148 |
msgid "%s successfully deactivated."
|
1149 |
msgstr "%s を無効化しました。"
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:166
|
1152 |
msgid "find answers to frequently asked questions"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:165
|
1156 |
msgid "Admin Columns forum on WordPress.org"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:164
|
1160 |
msgid "You can also find help on the %s, and %s."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:160
|
1164 |
msgid "our forum"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:154
|
1168 |
msgid "documentation page"
|
1169 |
msgstr "ドキュメントページ"
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:152
|
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."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:143
|
1176 |
msgid "Permanently hide notice"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:142
|
1180 |
msgid "Leave a review!"
|
1181 |
msgstr "レビューを残す"
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:138
|
1184 |
msgid "click here"
|
1185 |
msgstr "ここをクリック"
|
1186 |
|
1187 |
+
#: classes/Check/Review.php:134
|
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:35 classes/Check/Review.php:125
|
1192 |
msgid "Admin Columns Pro"
|
1193 |
msgstr "Admin Columns Pro"
|
1194 |
|
1195 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1196 |
#. Plugin Name of the plugin/theme
|
1197 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1198 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1199 |
+
#: classes/Plugin/Updater.php:116
|
1200 |
msgid "Admin Columns"
|
1201 |
msgstr "Admin Columns"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:50
|
1204 |
msgid "Find out more"
|
1205 |
msgstr "もっと見る"
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:47
|
1208 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:43
|
1212 |
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>."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: classes/Column/Placeholder.php:39
|
1216 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1217 |
msgstr ""
|
1218 |
|
1232 |
msgid "Edit Post"
|
1233 |
msgstr "投稿を編集"
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:30
|
1236 |
msgid "This is the name which will appear as the column header."
|
1237 |
msgstr "列に表示される名前"
|
1238 |
|
1239 |
+
#: classes/Settings/Column/Label.php:29
|
1240 |
msgid "Label"
|
1241 |
msgstr "ラベル"
|
1242 |
|
1248 |
msgid "Choose a column type."
|
1249 |
msgstr "カラム形式を選択。"
|
1250 |
|
1251 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1252 |
msgid "Clone"
|
1253 |
msgstr "複製"
|
1254 |
|
1297 |
msgstr "幅"
|
1298 |
|
1299 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1300 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1301 |
msgid "Custom"
|
1302 |
msgstr "カスタム"
|
1303 |
|
1348 |
msgid "Comment Count"
|
1349 |
msgstr "コメント数"
|
1350 |
|
1351 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1352 |
msgid "Remove"
|
1353 |
msgstr "削除"
|
1354 |
|
1528 |
msgid "Relative to domain"
|
1529 |
msgstr "ドメインに対して相対"
|
1530 |
|
1531 |
+
#: classes/Settings/Column/PathScope.php:33
|
1532 |
msgid "Part of the file path to display"
|
1533 |
msgstr "表示するファイルパスの部分"
|
1534 |
|
1535 |
+
#: classes/Settings/Column/PathScope.php:32
|
1536 |
msgid "Path scope"
|
1537 |
msgstr "パススコープ"
|
1538 |
|
1593 |
msgid "Available Sizes"
|
1594 |
msgstr "利用可能なサイズ"
|
1595 |
|
1596 |
+
#: classes/Admin/Page/Columns.php:477
|
1597 |
msgid "View"
|
1598 |
msgstr "表示"
|
1599 |
|
1650 |
#: classes/Admin/Help/CustomField.php:22
|
1651 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1652 |
#: classes/Settings/Column/Image.php:72
|
1653 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1654 |
msgid "Default"
|
1655 |
msgstr "デフォルト"
|
1656 |
|
1737 |
msgid "Agent"
|
1738 |
msgstr "エージェント"
|
1739 |
|
1740 |
+
#: classes/Admin/Page/Columns.php:876
|
1741 |
msgid "Edit"
|
1742 |
msgstr "編集"
|
1743 |
|
1747 |
msgid "ID"
|
1748 |
msgstr "ID"
|
1749 |
|
1750 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1751 |
#: classes/Settings/Column/ActionIcons.php:23
|
1752 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1753 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1756 |
msgid "No"
|
1757 |
msgstr "いいえ"
|
1758 |
|
1759 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1760 |
#: classes/Settings/Column/ActionIcons.php:22
|
1761 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1762 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1777 |
msgid "Actions"
|
1778 |
msgstr "アクション"
|
1779 |
|
1780 |
+
#: classes/Integration/WooCommerce.php:17
|
1781 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: classes/Integration/WooCommerce.php:15
|
1785 |
msgid "WooCommerce"
|
1786 |
msgstr "WooCommerce"
|
1787 |
|
1788 |
+
#: classes/Integration/ACF.php:13
|
1789 |
msgid "Advanced Custom Fields"
|
1790 |
msgstr "Advanced Custom Fields"
|
1791 |
|
1792 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1793 |
msgid "Plugins"
|
1794 |
msgstr "プラグイン"
|
languages/codepress-admin-columns-nl_NL.mo
CHANGED
Binary file
|
languages/codepress-admin-columns-nl_NL.po
CHANGED
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: classes/Dependencies.php:190
|
19 |
-
msgid "This plugin failed to load:"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr "Wijzig je content direct vanaf het overzicht."
|
|
120 |
msgid "Editing"
|
121 |
msgstr "Wijzigen"
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr "Vanaf %s for 1 site"
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr "Verkrijg add-ons voor ACF, WooCommerce en meer"
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr "Maak meerdere kolomgroepen aan per overzicht"
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr "Exporteer alle kolomdata naar CSV"
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr "Wijzig direct je data vanaf het overzicht"
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr "Sorteer en filter op al je data"
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr "Upgrade naar PRO en breng Admin Columns naar het volgende niveau"
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr "Tevreden met Admin Columns?"
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr "Selecteer een type"
|
158 |
|
@@ -233,23 +229,23 @@ msgstr "Gebruik ook groottes zonder afbeeldingsbestand."
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr "Gebruik ook ontbrekende groottes?"
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr "Site opties"
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr "huidig"
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr "Netwerk site"
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr "Verborgen"
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr "Publiek"
|
255 |
|
@@ -277,11 +273,11 @@ msgstr "Aantal"
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr "Thumbnails"
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr "Voer de updater uit"
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr "We moeten de database updaten naar de laatste versie."
|
287 |
|
@@ -329,18 +325,14 @@ msgstr "Origineel"
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr "Alternatieve tekst"
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr "Bezoek alsjeblieft de %s pagina."
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr "Ninja Forms"
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr "The Events Calendar"
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr "Wachtwoord beschermd"
|
@@ -386,19 +378,19 @@ msgstr "Samenvatting niet aanwezig."
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr "Gebruiker schermnaam"
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr "Stuur mij de korting"
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr "Prijzen vanaf %s"
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr "Toon een veld van je BuddyPress-profiel in je gebruikersoverzicht."
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr "BuddyPress"
|
404 |
|
@@ -406,19 +398,19 @@ msgstr "BuddyPress"
|
|
406 |
msgid "View more"
|
407 |
msgstr "Meer tonen"
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr "Ongeldige methode."
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr "Ongeldige kolom."
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr "Ongeldige lijst-weergave."
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr "Ongeldig item-ID."
|
424 |
|
@@ -477,7 +469,7 @@ msgstr "Platte tekst"
|
|
477 |
msgid "Password"
|
478 |
msgstr "Wachtwoord"
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr "Geen velden beschikbaar."
|
483 |
|
@@ -584,7 +576,7 @@ msgstr "Nummer"
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr "Veld"
|
590 |
|
@@ -611,7 +603,7 @@ msgstr "Weergaveopties"
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr "Deze tekst zal na de kolomwaarde verschijnen."
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr " of "
|
617 |
|
@@ -635,7 +627,7 @@ msgstr "Toolbar tonen"
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr "Shortlink"
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ", "
|
641 |
|
@@ -651,27 +643,27 @@ msgstr "Volledig pad"
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr "Korting is geldig tot %s"
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr "Toon %s-knop bij tabel-weergave."
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr "Standaard is %s."
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr "aan"
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr "uit"
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr "Opmerking"
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr "Instructies"
|
677 |
|
@@ -717,89 +709,75 @@ msgstr "Verouderde filters"
|
|
717 |
msgid "Help"
|
718 |
msgstr "Hulp"
|
719 |
|
720 |
-
#: classes/Admin/Page/Columns.php:
|
721 |
msgid "Close"
|
722 |
msgstr "Sluiten"
|
723 |
|
724 |
-
#: classes/Admin/Page/Columns.php:
|
725 |
msgid "Clear all columns "
|
726 |
msgstr "Alle kolommen legen "
|
727 |
|
728 |
-
#: classes/Admin/Page/Columns.php:
|
729 |
msgid "I'm using Admin Columns for WordPress!"
|
730 |
msgstr "Ik gebruik Admin Columns voor WordPress."
|
731 |
|
732 |
-
#: classes/Admin/Page/Columns.php:
|
733 |
msgid "Your First Name"
|
734 |
msgstr "Je voornaam"
|
735 |
|
736 |
-
#: classes/Admin/Page/Columns.php:
|
737 |
msgid "Your Email"
|
738 |
msgstr "Je e-mailadres"
|
739 |
|
740 |
-
#: classes/Admin/Page/Columns.php:
|
741 |
msgid "Submit your email and we'll send you a discount for %s off."
|
742 |
msgstr "Stuur je e-mail en wij sturen je een code voor %s korting."
|
743 |
|
744 |
-
#: classes/Admin/Page/Columns.php:
|
745 |
msgid "Get %s Off!"
|
746 |
msgstr "Krijg %s korting."
|
747 |
|
748 |
-
#: classes/Admin/Page/Columns.php:
|
749 |
msgid "Extra Columns for:"
|
750 |
msgstr "Extra kolommen voor:"
|
751 |
|
752 |
-
#: classes/Admin/Page/Columns.php:
|
753 |
msgid "Edit your column content directly"
|
754 |
msgstr "Bewerk je kolom-inhoud rechtstreeks."
|
755 |
|
756 |
-
#: classes/Admin/Page/Columns.php:
|
757 |
msgid "Pro"
|
758 |
msgstr "Pro"
|
759 |
|
760 |
-
#: classes/Admin/Page/Columns.php:
|
761 |
msgid "You need at least one column"
|
762 |
msgstr "Je hebt minstens één kolom nodig"
|
763 |
|
764 |
-
#: classes/Admin/Page/Addons.php:
|
765 |
msgid "Available"
|
766 |
msgstr "Beschikbaar"
|
767 |
|
768 |
-
#: classes/Admin/Page/Addons.php:
|
769 |
msgid "Recommended"
|
770 |
msgstr "Aangeraden"
|
771 |
|
772 |
-
#: classes/Admin/Page/Addons.php:
|
773 |
msgid "%s could not be activated."
|
774 |
msgstr "%s kan niet worden geactiveerd."
|
775 |
|
776 |
-
#: classes/Admin/Page/Addons.php:
|
777 |
msgid "%s successfully activated."
|
778 |
msgstr "%s succesvol geactiveerd."
|
779 |
|
780 |
-
#: classes/
|
781 |
-
msgid "
|
782 |
-
msgid_plural "%s add-ons requires %s."
|
783 |
-
msgstr[0] "%s add-on vereist %s."
|
784 |
-
msgstr[1] "%s add-ons vereisen %s."
|
785 |
-
|
786 |
-
#: classes/Admin/Page/Addons.php:129
|
787 |
-
msgid "%s is installed, but not active."
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: classes/Admin/Page/Addons.php:123
|
791 |
-
msgid "%s needs to be installed for the add-on to work."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: classes/
|
795 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
796 |
-
msgstr "Toon en bewerk %s-velden in het berichtenoverzicht in enkele seconden."
|
797 |
-
|
798 |
-
#: classes/Admin/Addon/Types.php:13
|
799 |
msgid "Toolset Types"
|
800 |
msgstr "Toolset-types"
|
801 |
|
802 |
-
#: classes/
|
803 |
msgid "Pods"
|
804 |
msgstr "Pods"
|
805 |
|
@@ -807,55 +785,55 @@ msgstr "Pods"
|
|
807 |
msgid "Imported"
|
808 |
msgstr "Geïmporteerd"
|
809 |
|
810 |
-
#: classes/Admin/Page/Columns.php:
|
811 |
msgid "Learn more about Pro"
|
812 |
msgstr "Meer weten over Pro"
|
813 |
|
814 |
-
#: classes/Admin/Page/Columns.php:
|
815 |
msgid "Import & Export settings"
|
816 |
msgstr "Import & Expor-instellingen"
|
817 |
|
818 |
-
#: classes/Admin/Page/Columns.php:
|
819 |
msgid "Create multiple columns sets"
|
820 |
msgstr "Maak meerdere kolommenverzamelingen."
|
821 |
|
822 |
-
#: classes/Admin/Page/Columns.php:
|
823 |
msgid "Add filterable columns"
|
824 |
msgstr "Voeg filterbare kolom toe"
|
825 |
|
826 |
-
#: classes/Admin/Page/Columns.php:
|
827 |
msgid "Add sortable columns"
|
828 |
msgstr "Voeg sorteerbare kolom toe"
|
829 |
|
830 |
-
#: classes/Admin/Page/Columns.php:
|
831 |
msgid "Take Admin Columns to the next level:"
|
832 |
msgstr "Breng Admin Columns naar een hoger niveau:"
|
833 |
|
834 |
-
#: classes/Admin/Page/Columns.php:
|
835 |
msgid "Upgrade to"
|
836 |
msgstr "Upgraden naar"
|
837 |
|
838 |
-
#: classes/Admin/Page/Columns.php:
|
839 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
840 |
msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangepast worden."
|
841 |
|
842 |
-
#: classes/Admin/Page/Columns.php:
|
843 |
msgid "Please visit the %s screen once to load all available columns"
|
844 |
msgstr "Bezoek eenmalig het %s-scherm om alle beschikbare kolommen te laden"
|
845 |
|
846 |
-
#: classes/Admin/Page/Columns.php:
|
847 |
msgid "Restore columns"
|
848 |
msgstr "Herstel originele kolommen"
|
849 |
|
850 |
-
#: classes/Admin/Page/Columns.php:
|
851 |
msgid "Settings for %s restored successfully."
|
852 |
msgstr "Kolom-instellingen voor %s succesvol hersteld in originele staat."
|
853 |
|
854 |
-
#: classes/Admin/Page/Columns.php:
|
855 |
msgid "View %s screen"
|
856 |
msgstr "Bekijk %s-scherm"
|
857 |
|
858 |
-
#: classes/Admin/Page/Columns.php:
|
859 |
msgid "Invalid response."
|
860 |
msgstr "Ongeldige respons."
|
861 |
|
@@ -867,23 +845,23 @@ msgstr ""
|
|
867 |
msgid "Link Label"
|
868 |
msgstr "Link label"
|
869 |
|
870 |
-
#: classes/Admin/Page/Addons.php:
|
871 |
msgid "You need Admin Columns Pro."
|
872 |
msgstr "Hiervoor heeft u Admin Columns Pro nodig."
|
873 |
|
874 |
-
#: classes/Admin/Page/Addons.php:
|
875 |
msgid "Addon does not exist."
|
876 |
msgstr "Add-on bestaat niet."
|
877 |
|
878 |
-
#: classes/Check/AddonAvailable.php:
|
879 |
msgid "the addons page"
|
880 |
msgstr "de add-ons-pagina"
|
881 |
|
882 |
-
#: classes/Check/AddonAvailable.php:
|
883 |
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!"
|
884 |
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."
|
885 |
|
886 |
-
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:
|
887 |
msgid "Custom Fields"
|
888 |
msgstr "Extra velden"
|
889 |
|
@@ -895,30 +873,30 @@ msgstr "AdminColumns.com"
|
|
895 |
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."
|
896 |
msgstr "Pas de kolommen aan op de beheerschermen van post(types), pagina's, media, reacties en gebruikers met een eenvoudige drag-and-drop-interface."
|
897 |
|
898 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
899 |
#. Plugin URI of the plugin/theme
|
900 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
901 |
#. Author URI of the plugin/theme
|
902 |
msgid "https://www.admincolumns.com"
|
903 |
msgstr "https://www.admincolumns.com"
|
904 |
|
905 |
-
#: classes/Admin/Page/Settings.php:
|
906 |
msgid "Edit columns"
|
907 |
msgstr "Kolommen bewerken"
|
908 |
|
909 |
-
#: classes/Admin/Page/Columns.php:
|
910 |
msgid "Upgrade"
|
911 |
msgstr "Upgraden"
|
912 |
|
913 |
-
#: classes/Admin/Page/Columns.php:
|
914 |
msgid "Settings for %s updated successfully."
|
915 |
msgstr "Instellingen voor %s succesvol bijgewerkt."
|
916 |
|
917 |
-
#: classes/Admin/Page/Columns.php:
|
918 |
msgid "You are trying to store the same settings for %s."
|
919 |
msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
|
920 |
|
921 |
-
#: classes/ListScreen.php:
|
922 |
msgid "No columns settings available."
|
923 |
msgstr "Geen kolom instellingen beschikbaar."
|
924 |
|
@@ -944,103 +922,103 @@ msgstr "Reactie"
|
|
944 |
msgid "Comments"
|
945 |
msgstr "Reacties"
|
946 |
|
947 |
-
#: classes/Admin/Page/Addons.php:
|
948 |
msgid "Get this add-on"
|
949 |
msgstr "Ga naar deze add-on"
|
950 |
|
951 |
-
#: classes/Admin/Page/Addons.php:
|
952 |
msgid "Download & Install"
|
953 |
msgstr "Downloaden & installeren"
|
954 |
|
955 |
-
#: classes/Admin/Page/Addons.php:
|
956 |
msgid "Activate"
|
957 |
msgstr "Activeren"
|
958 |
|
959 |
-
#: classes/Admin/Page/Addons.php:
|
960 |
msgid "Installed"
|
961 |
msgstr "Geïnstalleerd"
|
962 |
|
963 |
-
#: classes/Admin/Page/Addons.php:
|
964 |
msgid "Deactivate"
|
965 |
msgstr "Deactiveren"
|
966 |
|
967 |
-
#: classes/Admin/Page/Addons.php:
|
968 |
msgid "Active"
|
969 |
msgstr "Actief"
|
970 |
|
971 |
-
#: classes/Admin/Page/Columns.php:
|
972 |
msgid "Add Column"
|
973 |
msgstr "Kolom toevoegen"
|
974 |
|
975 |
-
#: classes/Admin/Page/Columns.php:
|
976 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: classes/Admin/Page/Columns.php:
|
980 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
981 |
msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
|
982 |
|
983 |
-
#: classes/Admin/Page/Columns.php:
|
984 |
msgid "Support"
|
985 |
msgstr "Ondersteuning"
|
986 |
|
987 |
-
#: classes/Admin/Page/Columns.php:
|
988 |
msgid "Buy Pro"
|
989 |
msgstr "Pro kopen"
|
990 |
|
991 |
-
#: classes/Admin/Page/Columns.php:
|
992 |
msgid "Tweet"
|
993 |
msgstr "Tweeten"
|
994 |
|
995 |
-
#: classes/Admin/Page/Columns.php:
|
996 |
msgid "Rate"
|
997 |
msgstr "Beoordelen"
|
998 |
|
999 |
-
#: classes/Admin/Page/Columns.php:
|
1000 |
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!"
|
1001 |
msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
|
1002 |
|
1003 |
-
#: classes/Admin/Page/Columns.php:
|
1004 |
msgid "Woohoo! We're glad to hear that!"
|
1005 |
msgstr "Woohoo! We zijn blij dat te horen!"
|
1006 |
|
1007 |
-
#: classes/Admin/Page/Columns.php:
|
1008 |
msgid "Forums"
|
1009 |
msgstr "Forums"
|
1010 |
|
1011 |
-
#: classes/Admin/Page/Columns.php:
|
1012 |
msgid "Docs"
|
1013 |
msgstr "Documenten"
|
1014 |
|
1015 |
-
#: classes/Admin/Page/Columns.php:
|
1016 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
1017 |
msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
|
1018 |
|
1019 |
-
#: classes/Admin/Page/Columns.php:
|
1020 |
msgid "What's wrong? Need help? Let us know!"
|
1021 |
msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
|
1022 |
|
1023 |
-
#: classes/Admin/Page/Columns.php:
|
1024 |
msgid "Are you happy with Admin Columns?"
|
1025 |
msgstr "Ben je blij met Admin Columns?"
|
1026 |
|
1027 |
-
#: classes/Admin/Page/Columns.php:
|
1028 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1029 |
msgstr "Waarschuwing. De kolomdata van %s wordt verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen met verwijderen."
|
1030 |
|
1031 |
-
#: classes/Admin/Page/Columns.php:
|
1032 |
msgid "Update"
|
1033 |
msgstr "Bijwerken"
|
1034 |
|
1035 |
-
#: classes/Admin/Page/Columns.php:
|
1036 |
msgid "Store settings"
|
1037 |
msgstr "Instellingen opslaan"
|
1038 |
|
1039 |
-
#: classes/Admin/Page/Addons.php:
|
1040 |
msgid "Add-ons"
|
1041 |
msgstr "Add-ons"
|
1042 |
|
1043 |
-
#: classes/Admin/Page/Settings.php:
|
1044 |
msgid "Settings"
|
1045 |
msgstr "Instellingen"
|
1046 |
|
@@ -1048,32 +1026,32 @@ msgstr "Instellingen"
|
|
1048 |
msgid "Others"
|
1049 |
msgstr "Overige"
|
1050 |
|
1051 |
-
#: classes/Admin/Page/Settings.php:
|
1052 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1053 |
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"
|
1054 |
|
1055 |
-
#: classes/Admin/Page/Settings.php:
|
1056 |
msgid "Restore default settings"
|
1057 |
msgstr "Herstel standaard instellingen"
|
1058 |
|
1059 |
-
#: classes/Admin/Page/Settings.php:
|
1060 |
msgid "This will delete all column settings and restore the default settings."
|
1061 |
msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
|
1062 |
|
1063 |
-
#: classes/Admin/Page/Settings.php:
|
1064 |
msgid "Restore Settings"
|
1065 |
msgstr "Herstel Instellingen"
|
1066 |
|
1067 |
-
#: classes/Admin/Page/Columns.php:
|
1068 |
-
#: classes/Admin/Page/Settings.php:
|
1069 |
msgid "Save"
|
1070 |
msgstr "Bewaar"
|
1071 |
|
1072 |
-
#: classes/Admin/Page/Settings.php:
|
1073 |
msgid "Customize your Admin Columns settings."
|
1074 |
msgstr "Pas je Admin Column instellingen aan."
|
1075 |
|
1076 |
-
#: classes/Admin/Page/Settings.php:
|
1077 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1078 |
msgid "General Settings"
|
1079 |
msgstr "Algemene Instellingen"
|
@@ -1150,11 +1128,11 @@ msgstr "Met deze plugin kun je bijkomende kolommen toevoegen en verwijderen van
|
|
1150 |
msgid "Overview"
|
1151 |
msgstr "Overzicht"
|
1152 |
|
1153 |
-
#: classes/Admin/Page/Settings.php:
|
1154 |
msgid "Default settings successfully restored."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: classes/Admin/Page/Columns.php:
|
1158 |
msgid "%s column is already present and can not be duplicated."
|
1159 |
msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
|
1160 |
|
@@ -1162,75 +1140,75 @@ msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
|
|
1162 |
msgid "Admin Columns Settings"
|
1163 |
msgstr "Admin Columns Instellingen"
|
1164 |
|
1165 |
-
#: classes/Admin/Page/Addons.php:
|
1166 |
msgid "%s successfully deactivated."
|
1167 |
msgstr "%s werd gedeactiveerd."
|
1168 |
|
1169 |
-
#: classes/Check/Review.php:
|
1170 |
msgid "find answers to frequently asked questions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: classes/Check/Review.php:
|
1174 |
msgid "Admin Columns forum on WordPress.org"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: classes/Check/Review.php:
|
1178 |
msgid "You can also find help on the %s, and %s."
|
1179 |
msgstr "Je kunt ook hulp vinden op de %, en %s."
|
1180 |
|
1181 |
-
#: classes/Check/Review.php:
|
1182 |
msgid "our forum"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: classes/Check/Review.php:
|
1186 |
msgid "documentation page"
|
1187 |
msgstr "documentatie pagina"
|
1188 |
|
1189 |
-
#: classes/Check/Review.php:
|
1190 |
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."
|
1191 |
msgstr "Dat is vervelend om te horen; misschien kunnen we helpen! Als je problemen hebt met de basis instellingen %s of als je hulp wilt met geavanceerdere features, bezoek dan onze %s."
|
1192 |
|
1193 |
-
#: classes/Check/Review.php:
|
1194 |
msgid "Permanently hide notice"
|
1195 |
msgstr "Verberg deze notice permanent"
|
1196 |
|
1197 |
-
#: classes/Check/Review.php:
|
1198 |
msgid "Leave a review!"
|
1199 |
msgstr "Laat een review achter!"
|
1200 |
|
1201 |
-
#: classes/Check/Review.php:
|
1202 |
msgid "click here"
|
1203 |
msgstr "klik hier"
|
1204 |
|
1205 |
-
#: classes/Check/Review.php:
|
1206 |
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."
|
1207 |
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."
|
1208 |
|
1209 |
-
#: classes/Admin/Page/Addons.php:
|
1210 |
msgid "Admin Columns Pro"
|
1211 |
msgstr "Admin Columns Pro"
|
1212 |
|
1213 |
-
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.
|
1214 |
#. Plugin Name of the plugin/theme
|
1215 |
-
#: classes/Admin/Page/Columns.php:
|
1216 |
-
#: classes/Check/Review.php:
|
1217 |
-
#: classes/Plugin/Updater.php:
|
1218 |
msgid "Admin Columns"
|
1219 |
msgstr "Admin Columns"
|
1220 |
|
1221 |
-
#: classes/Column/Placeholder.php:
|
1222 |
msgid "Find out more"
|
1223 |
msgstr "Meer weten"
|
1224 |
|
1225 |
-
#: classes/Column/Placeholder.php:
|
1226 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1227 |
msgstr "Admin Columns Pro biedt volledige integratie met %s, waardoor je eenvoudig specifieke %s-velden kunt weergeven, sorteren en aanpassen."
|
1228 |
|
1229 |
-
#: classes/Column/Placeholder.php:
|
1230 |
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>."
|
1231 |
msgstr "Als je een Business of Developer-licentie hebt, download en installeer de %s-add-on dan via het <a href='%s'>add-ons-scherm</a>."
|
1232 |
|
1233 |
-
#: classes/Column/Placeholder.php:
|
1234 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1235 |
msgstr "De %s-kolom is alleen beschikbaar in Admin Columns Pro - Business of Developer."
|
1236 |
|
@@ -1250,11 +1228,11 @@ msgstr "Bericht bekijken"
|
|
1250 |
msgid "Edit Post"
|
1251 |
msgstr "Bericht bewerken"
|
1252 |
|
1253 |
-
#: classes/Settings/Column/Label.php:
|
1254 |
msgid "This is the name which will appear as the column header."
|
1255 |
msgstr "Deze naam zal verschijnen als kolom kop."
|
1256 |
|
1257 |
-
#: classes/Settings/Column/Label.php:
|
1258 |
msgid "Label"
|
1259 |
msgstr "Label"
|
1260 |
|
@@ -1266,7 +1244,7 @@ msgstr "Naam"
|
|
1266 |
msgid "Choose a column type."
|
1267 |
msgstr "Kies een kolom type."
|
1268 |
|
1269 |
-
#: classes/Admin/Page/Columns.php:
|
1270 |
msgid "Clone"
|
1271 |
msgstr "Kloon"
|
1272 |
|
@@ -1315,7 +1293,7 @@ msgid "width"
|
|
1315 |
msgstr "breedte"
|
1316 |
|
1317 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1318 |
-
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:
|
1319 |
msgid "Custom"
|
1320 |
msgstr "Aangepast"
|
1321 |
|
@@ -1366,7 +1344,7 @@ msgstr "Nickname"
|
|
1366 |
msgid "Comment Count"
|
1367 |
msgstr "Reacties-telling"
|
1368 |
|
1369 |
-
#: classes/Admin/Page/Columns.php:
|
1370 |
msgid "Remove"
|
1371 |
msgstr "Verwijderen"
|
1372 |
|
@@ -1548,11 +1526,11 @@ msgstr ""
|
|
1548 |
msgid "Relative to domain"
|
1549 |
msgstr "Relatief aan het domein"
|
1550 |
|
1551 |
-
#: classes/Settings/Column/PathScope.php:
|
1552 |
msgid "Part of the file path to display"
|
1553 |
msgstr "Deel van bestands locatie voor weergave"
|
1554 |
|
1555 |
-
#: classes/Settings/Column/PathScope.php:
|
1556 |
msgid "Path scope"
|
1557 |
msgstr "Path scope"
|
1558 |
|
@@ -1613,7 +1591,7 @@ msgstr "Onderschrift"
|
|
1613 |
msgid "Available Sizes"
|
1614 |
msgstr "Beschikbare Afmetingen"
|
1615 |
|
1616 |
-
#: classes/Admin/Page/Columns.php:
|
1617 |
msgid "View"
|
1618 |
msgstr "Bekijk"
|
1619 |
|
@@ -1670,7 +1648,7 @@ msgstr "Kleur"
|
|
1670 |
#: classes/Admin/Help/CustomField.php:22
|
1671 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1672 |
#: classes/Settings/Column/Image.php:72
|
1673 |
-
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:
|
1674 |
msgid "Default"
|
1675 |
msgstr "Standaard"
|
1676 |
|
@@ -1757,7 +1735,7 @@ msgstr "Goedgekeurd"
|
|
1757 |
msgid "Agent"
|
1758 |
msgstr "Agent"
|
1759 |
|
1760 |
-
#: classes/Admin/Page/Columns.php:
|
1761 |
msgid "Edit"
|
1762 |
msgstr "Bewerken"
|
1763 |
|
@@ -1767,7 +1745,7 @@ msgstr "Bewerken"
|
|
1767 |
msgid "ID"
|
1768 |
msgstr "ID"
|
1769 |
|
1770 |
-
#: classes/Admin/Page/Columns.php:
|
1771 |
#: classes/Settings/Column/ActionIcons.php:23
|
1772 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1773 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
@@ -1776,7 +1754,7 @@ msgstr "ID"
|
|
1776 |
msgid "No"
|
1777 |
msgstr "Nee"
|
1778 |
|
1779 |
-
#: classes/Admin/Page/Columns.php:
|
1780 |
#: classes/Settings/Column/ActionIcons.php:22
|
1781 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1782 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
@@ -1797,18 +1775,18 @@ msgstr "Gebruik iconen?"
|
|
1797 |
msgid "Actions"
|
1798 |
msgstr "Acties"
|
1799 |
|
1800 |
-
#: classes/
|
1801 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1802 |
msgstr "Verbeter de producten, orders en coupons overzichten met de nieuwe kolommen en inline editing."
|
1803 |
|
1804 |
-
#: classes/
|
1805 |
msgid "WooCommerce"
|
1806 |
msgstr "WooCommerce"
|
1807 |
|
1808 |
-
#: classes/
|
1809 |
msgid "Advanced Custom Fields"
|
1810 |
msgstr "Advanced Custom Fields"
|
1811 |
|
1812 |
-
#: classes/Admin/Page/Addons.php:
|
1813 |
msgid "Plugins"
|
1814 |
msgstr "Plugins"
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
|
|
|
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr "Wijzigen"
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr "Vanaf %s for 1 site"
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr "Verkrijg add-ons voor ACF, WooCommerce en meer"
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr "Maak meerdere kolomgroepen aan per overzicht"
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr "Exporteer alle kolomdata naar CSV"
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr "Wijzig direct je data vanaf het overzicht"
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr "Sorteer en filter op al je data"
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr "Upgrade naar PRO en breng Admin Columns naar het volgende niveau"
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr "Tevreden met Admin Columns?"
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr "Selecteer een type"
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr "Gebruik ook ontbrekende groottes?"
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr "Site opties"
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr "huidig"
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr "Netwerk site"
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr "Verborgen"
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr "Publiek"
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr "Thumbnails"
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr "Voer de updater uit"
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr "We moeten de database updaten naar de laatste versie."
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr "Alternatieve tekst"
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr "Bezoek alsjeblieft de %s pagina."
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr "Ninja Forms"
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr "Wachtwoord beschermd"
|
378 |
msgid "User Nicename"
|
379 |
msgstr "Gebruiker schermnaam"
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr "Stuur mij de korting"
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr "Prijzen vanaf %s"
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr "Toon een veld van je BuddyPress-profiel in je gebruikersoverzicht."
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr "BuddyPress"
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr "Meer tonen"
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr "Ongeldige methode."
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr "Ongeldige kolom."
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr "Ongeldige lijst-weergave."
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr "Ongeldig item-ID."
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr "Wachtwoord"
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr "Geen velden beschikbaar."
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr "Veld"
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr "Deze tekst zal na de kolomwaarde verschijnen."
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr " of "
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr "Shortlink"
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ", "
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr "Korting is geldig tot %s"
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr "Toon %s-knop bij tabel-weergave."
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr "Standaard is %s."
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr "aan"
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr "uit"
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr "Opmerking"
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr "Instructies"
|
669 |
|
709 |
msgid "Help"
|
710 |
msgstr "Hulp"
|
711 |
|
712 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
713 |
msgid "Close"
|
714 |
msgstr "Sluiten"
|
715 |
|
716 |
+
#: classes/Admin/Page/Columns.php:756
|
717 |
msgid "Clear all columns "
|
718 |
msgstr "Alle kolommen legen "
|
719 |
|
720 |
+
#: classes/Admin/Page/Columns.php:667
|
721 |
msgid "I'm using Admin Columns for WordPress!"
|
722 |
msgstr "Ik gebruik Admin Columns voor WordPress."
|
723 |
|
724 |
+
#: classes/Admin/Page/Columns.php:609
|
725 |
msgid "Your First Name"
|
726 |
msgstr "Je voornaam"
|
727 |
|
728 |
+
#: classes/Admin/Page/Columns.php:608
|
729 |
msgid "Your Email"
|
730 |
msgstr "Je e-mailadres"
|
731 |
|
732 |
+
#: classes/Admin/Page/Columns.php:601
|
733 |
msgid "Submit your email and we'll send you a discount for %s off."
|
734 |
msgstr "Stuur je e-mail en wij sturen je een code voor %s korting."
|
735 |
|
736 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
737 |
msgid "Get %s Off!"
|
738 |
msgstr "Krijg %s korting."
|
739 |
|
740 |
+
#: classes/Admin/Page/Columns.php:562
|
741 |
msgid "Extra Columns for:"
|
742 |
msgstr "Extra kolommen voor:"
|
743 |
|
744 |
+
#: classes/Admin/Page/Columns.php:545
|
745 |
msgid "Edit your column content directly"
|
746 |
msgstr "Bewerk je kolom-inhoud rechtstreeks."
|
747 |
|
748 |
+
#: classes/Admin/Page/Columns.php:533
|
749 |
msgid "Pro"
|
750 |
msgstr "Pro"
|
751 |
|
752 |
+
#: classes/Admin/Page/Columns.php:297
|
753 |
msgid "You need at least one column"
|
754 |
msgstr "Je hebt minstens één kolom nodig"
|
755 |
|
756 |
+
#: classes/Admin/Page/Addons.php:256
|
757 |
msgid "Available"
|
758 |
msgstr "Beschikbaar"
|
759 |
|
760 |
+
#: classes/Admin/Page/Addons.php:255
|
761 |
msgid "Recommended"
|
762 |
msgstr "Aangeraden"
|
763 |
|
764 |
+
#: classes/Admin/Page/Addons.php:114
|
765 |
msgid "%s could not be activated."
|
766 |
msgstr "%s kan niet worden geactiveerd."
|
767 |
|
768 |
+
#: classes/Admin/Page/Addons.php:106
|
769 |
msgid "%s successfully activated."
|
770 |
msgstr "%s succesvol geactiveerd."
|
771 |
|
772 |
+
#: classes/Integration/Types.php:15
|
773 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Integration/Types.php:13
|
|
|
|
|
|
|
|
|
777 |
msgid "Toolset Types"
|
778 |
msgstr "Toolset-types"
|
779 |
|
780 |
+
#: classes/Integration/Pods.php:13
|
781 |
msgid "Pods"
|
782 |
msgstr "Pods"
|
783 |
|
785 |
msgid "Imported"
|
786 |
msgstr "Geïmporteerd"
|
787 |
|
788 |
+
#: classes/Admin/Page/Columns.php:580
|
789 |
msgid "Learn more about Pro"
|
790 |
msgstr "Meer weten over Pro"
|
791 |
|
792 |
+
#: classes/Admin/Page/Columns.php:547
|
793 |
msgid "Import & Export settings"
|
794 |
msgstr "Import & Expor-instellingen"
|
795 |
|
796 |
+
#: classes/Admin/Page/Columns.php:546
|
797 |
msgid "Create multiple columns sets"
|
798 |
msgstr "Maak meerdere kolommenverzamelingen."
|
799 |
|
800 |
+
#: classes/Admin/Page/Columns.php:544
|
801 |
msgid "Add filterable columns"
|
802 |
msgstr "Voeg filterbare kolom toe"
|
803 |
|
804 |
+
#: classes/Admin/Page/Columns.php:543
|
805 |
msgid "Add sortable columns"
|
806 |
msgstr "Voeg sorteerbare kolom toe"
|
807 |
|
808 |
+
#: classes/Admin/Page/Columns.php:538
|
809 |
msgid "Take Admin Columns to the next level:"
|
810 |
msgstr "Breng Admin Columns naar een hoger niveau:"
|
811 |
|
812 |
+
#: classes/Admin/Page/Columns.php:533
|
813 |
msgid "Upgrade to"
|
814 |
msgstr "Upgraden naar"
|
815 |
|
816 |
+
#: classes/Admin/Page/Columns.php:428
|
817 |
msgid "The columns for %s are set up via PHP and can therefore not be edited."
|
818 |
msgstr "De kolommen voor %s zijn via PHP ingesteld, en kunnen daarom niet aangepast worden."
|
819 |
|
820 |
+
#: classes/Admin/Page/Columns.php:218
|
821 |
msgid "Please visit the %s screen once to load all available columns"
|
822 |
msgstr "Bezoek eenmalig het %s-scherm om alle beschikbare kolommen te laden"
|
823 |
|
824 |
+
#: classes/Admin/Page/Columns.php:514
|
825 |
msgid "Restore columns"
|
826 |
msgstr "Herstel originele kolommen"
|
827 |
|
828 |
+
#: classes/Admin/Page/Columns.php:145
|
829 |
msgid "Settings for %s restored successfully."
|
830 |
msgstr "Kolom-instellingen voor %s succesvol hersteld in originele staat."
|
831 |
|
832 |
+
#: classes/Admin/Page/Columns.php:304
|
833 |
msgid "View %s screen"
|
834 |
msgstr "Bekijk %s-scherm"
|
835 |
|
836 |
+
#: classes/Admin/Page/Columns.php:84
|
837 |
msgid "Invalid response."
|
838 |
msgstr "Ongeldige respons."
|
839 |
|
845 |
msgid "Link Label"
|
846 |
msgstr "Link label"
|
847 |
|
848 |
+
#: classes/Admin/Page/Addons.php:180
|
849 |
msgid "You need Admin Columns Pro."
|
850 |
msgstr "Hiervoor heeft u Admin Columns Pro nodig."
|
851 |
|
852 |
+
#: classes/Admin/Page/Addons.php:188
|
853 |
msgid "Addon does not exist."
|
854 |
msgstr "Add-on bestaat niet."
|
855 |
|
856 |
+
#: classes/Check/AddonAvailable.php:86
|
857 |
msgid "the addons page"
|
858 |
msgstr "de add-ons-pagina"
|
859 |
|
860 |
+
#: classes/Check/AddonAvailable.php:82
|
861 |
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!"
|
862 |
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."
|
863 |
|
864 |
+
#: classes/Admin/Help/CustomField.php:10 classes/Settings/Column/Type.php:90
|
865 |
msgid "Custom Fields"
|
866 |
msgstr "Extra velden"
|
867 |
|
873 |
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."
|
874 |
msgstr "Pas de kolommen aan op de beheerschermen van post(types), pagina's, media, reacties en gebruikers met een eenvoudige drag-and-drop-interface."
|
875 |
|
876 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
877 |
#. Plugin URI of the plugin/theme
|
878 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
879 |
#. Author URI of the plugin/theme
|
880 |
msgid "https://www.admincolumns.com"
|
881 |
msgstr "https://www.admincolumns.com"
|
882 |
|
883 |
+
#: classes/Admin/Page/Settings.php:183 classes/Table/Screen.php:222
|
884 |
msgid "Edit columns"
|
885 |
msgstr "Kolommen bewerken"
|
886 |
|
887 |
+
#: classes/Admin/Page/Columns.php:955
|
888 |
msgid "Upgrade"
|
889 |
msgstr "Upgraden"
|
890 |
|
891 |
+
#: classes/Admin/Page/Columns.php:324
|
892 |
msgid "Settings for %s updated successfully."
|
893 |
msgstr "Instellingen voor %s succesvol bijgewerkt."
|
894 |
|
895 |
+
#: classes/Admin/Page/Columns.php:311
|
896 |
msgid "You are trying to store the same settings for %s."
|
897 |
msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
|
898 |
|
899 |
+
#: classes/ListScreen.php:719
|
900 |
msgid "No columns settings available."
|
901 |
msgstr "Geen kolom instellingen beschikbaar."
|
902 |
|
922 |
msgid "Comments"
|
923 |
msgstr "Reacties"
|
924 |
|
925 |
+
#: classes/Admin/Page/Addons.php:441
|
926 |
msgid "Get this add-on"
|
927 |
msgstr "Ga naar deze add-on"
|
928 |
|
929 |
+
#: classes/Admin/Page/Addons.php:438
|
930 |
msgid "Download & Install"
|
931 |
msgstr "Downloaden & installeren"
|
932 |
|
933 |
+
#: classes/Admin/Page/Addons.php:432
|
934 |
msgid "Activate"
|
935 |
msgstr "Activeren"
|
936 |
|
937 |
+
#: classes/Admin/Page/Addons.php:254
|
938 |
msgid "Installed"
|
939 |
msgstr "Geïnstalleerd"
|
940 |
|
941 |
+
#: classes/Admin/Page/Addons.php:428
|
942 |
msgid "Deactivate"
|
943 |
msgstr "Deactiveren"
|
944 |
|
945 |
+
#: classes/Admin/Page/Addons.php:425
|
946 |
msgid "Active"
|
947 |
msgstr "Actief"
|
948 |
|
949 |
+
#: classes/Admin/Page/Columns.php:762
|
950 |
msgid "Add Column"
|
951 |
msgstr "Kolom toevoegen"
|
952 |
|
953 |
+
#: classes/Admin/Page/Columns.php:695
|
954 |
msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: classes/Admin/Page/Columns.php:691
|
958 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
959 |
msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
|
960 |
|
961 |
+
#: classes/Admin/Page/Columns.php:686
|
962 |
msgid "Support"
|
963 |
msgstr "Ondersteuning"
|
964 |
|
965 |
+
#: classes/Admin/Page/Columns.php:674
|
966 |
msgid "Buy Pro"
|
967 |
msgstr "Pro kopen"
|
968 |
|
969 |
+
#: classes/Admin/Page/Columns.php:668
|
970 |
msgid "Tweet"
|
971 |
msgstr "Tweeten"
|
972 |
|
973 |
+
#: classes/Admin/Page/Columns.php:662
|
974 |
msgid "Rate"
|
975 |
msgstr "Beoordelen"
|
976 |
|
977 |
+
#: classes/Admin/Page/Columns.php:657
|
978 |
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!"
|
979 |
msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
|
980 |
|
981 |
+
#: classes/Admin/Page/Columns.php:654
|
982 |
msgid "Woohoo! We're glad to hear that!"
|
983 |
msgstr "Woohoo! We zijn blij dat te horen!"
|
984 |
|
985 |
+
#: classes/Admin/Page/Columns.php:644
|
986 |
msgid "Forums"
|
987 |
msgstr "Forums"
|
988 |
|
989 |
+
#: classes/Admin/Page/Columns.php:639
|
990 |
msgid "Docs"
|
991 |
msgstr "Documenten"
|
992 |
|
993 |
+
#: classes/Admin/Page/Columns.php:634
|
994 |
msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
|
995 |
msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
|
996 |
|
997 |
+
#: classes/Admin/Page/Columns.php:631
|
998 |
msgid "What's wrong? Need help? Let us know!"
|
999 |
msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
|
1000 |
|
1001 |
+
#: classes/Admin/Page/Columns.php:621
|
1002 |
msgid "Are you happy with Admin Columns?"
|
1003 |
msgstr "Ben je blij met Admin Columns?"
|
1004 |
|
1005 |
+
#: classes/Admin/Page/Columns.php:513
|
1006 |
msgid "Warning! The %s columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1007 |
msgstr "Waarschuwing. De kolomdata van %s wordt verwijderd. Dit kan niet ongedaan gemaakt worden. 'OK' om te verwijderen, 'Annuleren' om te stoppen met verwijderen."
|
1008 |
|
1009 |
+
#: classes/Admin/Page/Columns.php:502 classes/Admin/Page/Columns.php:760
|
1010 |
msgid "Update"
|
1011 |
msgstr "Bijwerken"
|
1012 |
|
1013 |
+
#: classes/Admin/Page/Columns.php:491
|
1014 |
msgid "Store settings"
|
1015 |
msgstr "Instellingen opslaan"
|
1016 |
|
1017 |
+
#: classes/Admin/Page/Addons.php:15
|
1018 |
msgid "Add-ons"
|
1019 |
msgstr "Add-ons"
|
1020 |
|
1021 |
+
#: classes/Admin/Page/Settings.php:18 classes/AdminColumns.php:207
|
1022 |
msgid "Settings"
|
1023 |
msgstr "Instellingen"
|
1024 |
|
1026 |
msgid "Others"
|
1027 |
msgstr "Overige"
|
1028 |
|
1029 |
+
#: classes/Admin/Page/Settings.php:241
|
1030 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
1031 |
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"
|
1032 |
|
1033 |
+
#: classes/Admin/Page/Settings.php:241
|
1034 |
msgid "Restore default settings"
|
1035 |
msgstr "Herstel standaard instellingen"
|
1036 |
|
1037 |
+
#: classes/Admin/Page/Settings.php:233
|
1038 |
msgid "This will delete all column settings and restore the default settings."
|
1039 |
msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
|
1040 |
|
1041 |
+
#: classes/Admin/Page/Settings.php:232
|
1042 |
msgid "Restore Settings"
|
1043 |
msgstr "Herstel Instellingen"
|
1044 |
|
1045 |
+
#: classes/Admin/Page/Columns.php:503 classes/Admin/Page/Columns.php:761
|
1046 |
+
#: classes/Admin/Page/Settings.php:191
|
1047 |
msgid "Save"
|
1048 |
msgstr "Bewaar"
|
1049 |
|
1050 |
+
#: classes/Admin/Page/Settings.php:173
|
1051 |
msgid "Customize your Admin Columns settings."
|
1052 |
msgstr "Pas je Admin Column instellingen aan."
|
1053 |
|
1054 |
+
#: classes/Admin/Page/Settings.php:172
|
1055 |
#: classes/Settings/Column/DateTimeFormat.php:40
|
1056 |
msgid "General Settings"
|
1057 |
msgstr "Algemene Instellingen"
|
1128 |
msgid "Overview"
|
1129 |
msgstr "Overzicht"
|
1130 |
|
1131 |
+
#: classes/Admin/Page/Settings.php:112
|
1132 |
msgid "Default settings successfully restored."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Admin/Page/Columns.php:83 classes/Admin/Page/Columns.php:244
|
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 |
|
1140 |
msgid "Admin Columns Settings"
|
1141 |
msgstr "Admin Columns Instellingen"
|
1142 |
|
1143 |
+
#: classes/Admin/Page/Addons.php:137
|
1144 |
msgid "%s successfully deactivated."
|
1145 |
msgstr "%s werd gedeactiveerd."
|
1146 |
|
1147 |
+
#: classes/Check/Review.php:166
|
1148 |
msgid "find answers to frequently asked questions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Check/Review.php:165
|
1152 |
msgid "Admin Columns forum on WordPress.org"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Check/Review.php:164
|
1156 |
msgid "You can also find help on the %s, and %s."
|
1157 |
msgstr "Je kunt ook hulp vinden op de %, en %s."
|
1158 |
|
1159 |
+
#: classes/Check/Review.php:160
|
1160 |
msgid "our forum"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Check/Review.php:154
|
1164 |
msgid "documentation page"
|
1165 |
msgstr "documentatie pagina"
|
1166 |
|
1167 |
+
#: classes/Check/Review.php:152
|
1168 |
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."
|
1169 |
msgstr "Dat is vervelend om te horen; misschien kunnen we helpen! Als je problemen hebt met de basis instellingen %s of als je hulp wilt met geavanceerdere features, bezoek dan onze %s."
|
1170 |
|
1171 |
+
#: classes/Check/Review.php:143
|
1172 |
msgid "Permanently hide notice"
|
1173 |
msgstr "Verberg deze notice permanent"
|
1174 |
|
1175 |
+
#: classes/Check/Review.php:142
|
1176 |
msgid "Leave a review!"
|
1177 |
msgstr "Laat een review achter!"
|
1178 |
|
1179 |
+
#: classes/Check/Review.php:138
|
1180 |
msgid "click here"
|
1181 |
msgstr "klik hier"
|
1182 |
|
1183 |
+
#: classes/Check/Review.php:134
|
1184 |
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."
|
1185 |
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."
|
1186 |
|
1187 |
+
#: classes/Admin/Page/Addons.php:35 classes/Check/Review.php:125
|
1188 |
msgid "Admin Columns Pro"
|
1189 |
msgstr "Admin Columns Pro"
|
1190 |
|
1191 |
+
#. #-#-#-#-# codepress-admin-columns-code.pot (Admin Columns 3.3.1) #-#-#-#-#
|
1192 |
#. Plugin Name of the plugin/theme
|
1193 |
+
#: classes/Admin/Page/Columns.php:33 classes/Admin.php:125
|
1194 |
+
#: classes/Check/Review.php:126 classes/Plugin/Updater.php:105
|
1195 |
+
#: classes/Plugin/Updater.php:116
|
1196 |
msgid "Admin Columns"
|
1197 |
msgstr "Admin Columns"
|
1198 |
|
1199 |
+
#: classes/Column/Placeholder.php:50
|
1200 |
msgid "Find out more"
|
1201 |
msgstr "Meer weten"
|
1202 |
|
1203 |
+
#: classes/Column/Placeholder.php:47
|
1204 |
msgid "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview."
|
1205 |
msgstr "Admin Columns Pro biedt volledige integratie met %s, waardoor je eenvoudig specifieke %s-velden kunt weergeven, sorteren en aanpassen."
|
1206 |
|
1207 |
+
#: classes/Column/Placeholder.php:43
|
1208 |
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>."
|
1209 |
msgstr "Als je een Business of Developer-licentie hebt, download en installeer de %s-add-on dan via het <a href='%s'>add-ons-scherm</a>."
|
1210 |
|
1211 |
+
#: classes/Column/Placeholder.php:39
|
1212 |
msgid "The %s column is only available in Admin Columns Pro - Business or Developer."
|
1213 |
msgstr "De %s-kolom is alleen beschikbaar in Admin Columns Pro - Business of Developer."
|
1214 |
|
1228 |
msgid "Edit Post"
|
1229 |
msgstr "Bericht bewerken"
|
1230 |
|
1231 |
+
#: classes/Settings/Column/Label.php:30
|
1232 |
msgid "This is the name which will appear as the column header."
|
1233 |
msgstr "Deze naam zal verschijnen als kolom kop."
|
1234 |
|
1235 |
+
#: classes/Settings/Column/Label.php:29
|
1236 |
msgid "Label"
|
1237 |
msgstr "Label"
|
1238 |
|
1244 |
msgid "Choose a column type."
|
1245 |
msgstr "Kies een kolom type."
|
1246 |
|
1247 |
+
#: classes/Admin/Page/Columns.php:879 classes/Admin/Page/Columns.php:914
|
1248 |
msgid "Clone"
|
1249 |
msgstr "Kloon"
|
1250 |
|
1293 |
msgstr "breedte"
|
1294 |
|
1295 |
#: classes/Settings/Column/CustomFieldType.php:154
|
1296 |
+
#: classes/Settings/Column/Image.php:112 classes/Settings/Column/Type.php:91
|
1297 |
msgid "Custom"
|
1298 |
msgstr "Aangepast"
|
1299 |
|
1344 |
msgid "Comment Count"
|
1345 |
msgstr "Reacties-telling"
|
1346 |
|
1347 |
+
#: classes/Admin/Page/Columns.php:881 classes/Admin/Page/Columns.php:916
|
1348 |
msgid "Remove"
|
1349 |
msgstr "Verwijderen"
|
1350 |
|
1526 |
msgid "Relative to domain"
|
1527 |
msgstr "Relatief aan het domein"
|
1528 |
|
1529 |
+
#: classes/Settings/Column/PathScope.php:33
|
1530 |
msgid "Part of the file path to display"
|
1531 |
msgstr "Deel van bestands locatie voor weergave"
|
1532 |
|
1533 |
+
#: classes/Settings/Column/PathScope.php:32
|
1534 |
msgid "Path scope"
|
1535 |
msgstr "Path scope"
|
1536 |
|
1591 |
msgid "Available Sizes"
|
1592 |
msgstr "Beschikbare Afmetingen"
|
1593 |
|
1594 |
+
#: classes/Admin/Page/Columns.php:477
|
1595 |
msgid "View"
|
1596 |
msgstr "Bekijk"
|
1597 |
|
1648 |
#: classes/Admin/Help/CustomField.php:22
|
1649 |
#: classes/Settings/Column/CustomFieldType.php:169
|
1650 |
#: classes/Settings/Column/Image.php:72
|
1651 |
+
#: classes/Settings/Column/Separator.php:25 classes/Settings/Column/Type.php:88
|
1652 |
msgid "Default"
|
1653 |
msgstr "Standaard"
|
1654 |
|
1735 |
msgid "Agent"
|
1736 |
msgstr "Agent"
|
1737 |
|
1738 |
+
#: classes/Admin/Page/Columns.php:876
|
1739 |
msgid "Edit"
|
1740 |
msgstr "Bewerken"
|
1741 |
|
1745 |
msgid "ID"
|
1746 |
msgstr "ID"
|
1747 |
|
1748 |
+
#: classes/Admin/Page/Columns.php:625 classes/Helper/Icon.php:64
|
1749 |
#: classes/Settings/Column/ActionIcons.php:23
|
1750 |
#: classes/Settings/Column/MissingImageSize.php:23
|
1751 |
#: classes/Settings/Column/PostFormatIcon.php:25
|
1754 |
msgid "No"
|
1755 |
msgstr "Nee"
|
1756 |
|
1757 |
+
#: classes/Admin/Page/Columns.php:624 classes/Helper/Icon.php:47
|
1758 |
#: classes/Settings/Column/ActionIcons.php:22
|
1759 |
#: classes/Settings/Column/MissingImageSize.php:22
|
1760 |
#: classes/Settings/Column/PostFormatIcon.php:24
|
1775 |
msgid "Actions"
|
1776 |
msgstr "Acties"
|
1777 |
|
1778 |
+
#: classes/Integration/WooCommerce.php:17
|
1779 |
msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
|
1780 |
msgstr "Verbeter de producten, orders en coupons overzichten met de nieuwe kolommen en inline editing."
|
1781 |
|
1782 |
+
#: classes/Integration/WooCommerce.php:15
|
1783 |
msgid "WooCommerce"
|
1784 |
msgstr "WooCommerce"
|
1785 |
|
1786 |
+
#: classes/Integration/ACF.php:13
|
1787 |
msgid "Advanced Custom Fields"
|
1788 |
msgstr "Advanced Custom Fields"
|
1789 |
|
1790 |
+
#: classes/Admin/Page/Addons.php:123 classes/Settings/Column/Type.php:89
|
1791 |
msgid "Plugins"
|
1792 |
msgstr "Plugins"
|
languages/codepress-admin-columns-pl_PL.mo
CHANGED
Binary file
|
languages/codepress-admin-columns-pl_PL.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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,44 +11,40 @@ msgstr ""
|
|
11 |
"Language: pl\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid "
|
16 |
msgstr ""
|
17 |
|
18 |
-
#:
|
19 |
-
msgid "
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: classes/
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/
|
35 |
-
msgid "%s needs to be installed and
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/
|
39 |
-
msgid "
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: classes/Check/Review.php:158
|
43 |
-
msgid "You can also use your admincolumns.com account to access support through %s!"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/Admin/Help/CustomField.php:75
|
@@ -80,11 +76,11 @@ msgstr ""
|
|
80 |
msgid "Value: This will show if the field has content or not."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/
|
84 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/
|
88 |
msgid "Manage columns for your event, organizer or venue overviews."
|
89 |
msgstr ""
|
90 |
|
@@ -120,39 +116,39 @@ msgstr ""
|
|
120 |
msgid "Editing"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: classes/Admin/Page/Columns.php:
|
124 |
msgid "Only %s for 1 site"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: classes/Admin/Page/Columns.php:
|
128 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/Admin/Page/Columns.php:
|
132 |
msgid "Create multiple column groups per overview"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: classes/Admin/Page/Columns.php:
|
136 |
msgid "Export all column data to CSV"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Admin/Page/Columns.php:
|
140 |
msgid "Directly edit your content from the overview"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Admin/Page/Columns.php:
|
144 |
msgid "Sort & Filter on all your content"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Admin/Page/Columns.php:
|
148 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/Admin/Page/Columns.php:
|
152 |
msgid "Do you like Admin Columns?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/Admin/Page/Columns.php:
|
156 |
msgid "Select type"
|
157 |
msgstr ""
|
158 |
|
@@ -233,23 +229,23 @@ msgstr ""
|
|
233 |
msgid "Include missing sizes?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: classes/Settings/Column/Meta.php:
|
237 |
msgid "Site Options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: classes/Settings/Column/Meta.php:
|
241 |
msgid "current"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: classes/Settings/Column/Meta.php:
|
245 |
msgid "Network Site:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: classes/Settings/Column/Meta.php:
|
249 |
msgid "Hidden"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: classes/Settings/Column/Meta.php:
|
253 |
msgid "Public"
|
254 |
msgstr ""
|
255 |
|
@@ -277,11 +273,11 @@ msgstr ""
|
|
277 |
msgid "Thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: classes/Plugin/Updater.php:
|
281 |
msgid "Run the updater"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/Plugin/Updater.php:
|
285 |
msgid "We need to update your database to the latest version."
|
286 |
msgstr ""
|
287 |
|
@@ -329,18 +325,14 @@ msgstr ""
|
|
329 |
msgid "Alternative Text"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/Admin/Page/Addons.php:
|
333 |
msgid "Please visit the %s page."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: classes/
|
337 |
msgid "Ninja Forms"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: classes/Admin/Addon/EventsCalendar.php:13
|
341 |
-
msgid "The Events Calendar"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
#: classes/Settings/Column/StatusIcon.php:72
|
345 |
msgid "Password protected"
|
346 |
msgstr ""
|
@@ -386,19 +378,19 @@ msgstr ""
|
|
386 |
msgid "User Nicename"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/Admin/Page/Columns.php:
|
390 |
msgid "Send me the discount"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/Admin/Page/Columns.php:
|
394 |
msgid "Prices starting from %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/
|
398 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/
|
402 |
msgid "BuddyPress"
|
403 |
msgstr ""
|
404 |
|
@@ -406,19 +398,19 @@ msgstr ""
|
|
406 |
msgid "View more"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/AdminColumns.php:
|
410 |
msgid "Invalid method."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/AdminColumns.php:
|
414 |
msgid "Invalid column."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/AdminColumns.php:
|
418 |
msgid "Invalid list screen."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/AdminColumns.php:
|
422 |
msgid "Invalid item ID."
|
423 |
msgstr ""
|
424 |
|
@@ -477,7 +469,7 @@ msgstr ""
|
|
477 |
msgid "Password"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: classes/Settings/Column/Meta.php:
|
481 |
msgid "No fields available."
|
482 |
msgstr ""
|
483 |
|
@@ -584,7 +576,7 @@ msgstr ""
|
|
584 |
msgid "Multiple IDs should be separated by commas."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/Settings/Column/Meta.php:
|
588 |
msgid "Field"
|
589 |
msgstr ""
|
590 |
|
@@ -611,7 +603,7 @@ msgstr ""
|
|
611 |
msgid "This text will appear after the column value."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: classes/Helper/Strings.php:
|
615 |
msgid " or "
|
616 |
msgstr ""
|
617 |
|
@@ -635,7 +627,7 @@ msgstr ""
|
|
635 |
msgid "Shortlink"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: classes/Settings/Column/CustomFieldType.php:
|
639 |
msgid ", "
|
640 |
msgstr ""
|
641 |
|
@@ -651,27 +643,27 @@ msgstr ""
|
|
651 |
msgid "Discount is valid until %s"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/Admin/Page/Settings.php:
|
655 |
msgid "Show %s button on table screen."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: classes/Admin/Page/Settings.php:
|
659 |
msgid "Default is %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: classes/Admin/Page/Settings.php:
|
663 |
msgid "on"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: classes/Admin/Page/Settings.php:
|
667 |
msgid "off"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/Admin/Page/Settings.php:
|
671 |
msgid "Notice"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/Admin/Page/Settings.php:
|
675 |
msgid "Instructions"
|
676 |
msgstr ""
|
677 |
|
@@ -718,90 +710,75 @@ msgstr ""
|
|
718 |
msgid "Help"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: classes/Admin/Page/Columns.php:
|
722 |
msgid "Close"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: classes/Admin/Page/Columns.php:
|
726 |
msgid "Clear all columns "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: classes/Admin/Page/Columns.php:
|
730 |
msgid "I'm using Admin Columns for WordPress!"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: classes/Admin/Page/Columns.php:
|
734 |
msgid "Your First Name"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: classes/Admin/Page/Columns.php:
|
738 |
msgid "Your Email"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: classes/Admin/Page/Columns.php:
|
742 |
msgid "Submit your email and we'll send you a discount for %s off."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: classes/Admin/Page/Columns.php:
|
746 |
msgid "Get %s Off!"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: classes/Admin/Page/Columns.php:
|
750 |
msgid "Extra Columns for:"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: classes/Admin/Page/Columns.php:
|
754 |
msgid "Edit your column content directly"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: classes/Admin/Page/Columns.php:
|
758 |
msgid "Pro"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: classes/Admin/Page/Columns.php:
|
762 |
msgid "You need at least one column"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: classes/Admin/Page/Addons.php:
|
766 |
msgid "Available"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: classes/Admin/Page/Addons.php:
|
770 |
msgid "Recommended"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: classes/Admin/Page/Addons.php:
|
774 |
msgid "%s could not be activated."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: classes/Admin/Page/Addons.php:
|
778 |
msgid "%s successfully activated."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: classes/
|
782 |
-
msgid "
|
783 |
-
msgid_plural "%s add-ons requires %s."
|
784 |
-
msgstr[0] ""
|
785 |
-
msgstr[1] ""
|
786 |
-
msgstr[2] ""
|
787 |
-
|
788 |
-
#: classes/Admin/Page/Addons.php:129
|
789 |
-
msgid "%s is installed, but not active."
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: classes/Admin/Page/Addons.php:123
|
793 |
-
msgid "%s needs to be installed for the add-on to work."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: classes/
|
797 |
-
msgid "Display and edit %s fields in the posts overview in seconds!"
|
798 |
-
msgstr ""
|
799 |
-
|
800 |
-
#: classes/Admin/Addon/Types.php:13
|
801 |
msgid "Toolset Types"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: classes/
|
805 |
msgid "Pods"
|
806 |
msgstr ""
|
807 |
|
@@ -809,55 +786,55 @@ msgstr ""
|
|
809 |
msgid "Imported"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: classes/Admin/Page/Columns.php:
|
813 |
msgid "Learn more about Pro"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: classes/Admin/Page/Columns.php:
|
817 |
msgid "Import & Export settings"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: classes/Admin/Page/Columns.php:
|
821 |
msgid "Create multiple columns sets"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: classes/Admin/Page/Columns.php:
|
825 |
msgid "Add filterable columns"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: classes/Admin/Page/Columns.php:
|
829 |
msgid "Add sortable columns"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: classes/Admin/Page/Columns.php:
|
833 |
msgid "Take Admin Columns to the next level:"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: classes/Admin/Page/Columns.php:
|
837 |
msgid "Upgrade to"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: classes/Admin/Page/Columns.php:
|
841 |
msgid "The columns for %s are set up via PHP and can therefore not be edite
|
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-11-13 17:50:42+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: pl\n"
|
12 |
"Project-Id-Version: Plugins - Admin Columns - Stable (latest release)\n"
|
13 |
|
14 |
+
#: templates/settings/setting-label-icons.php:69
|
15 |
+
msgid "Select"
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: templates/settings/setting-label-icons.php:24
|
19 |
+
msgid "Select Icon"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: classes/Settings/Column/PathScope.php:28
|
23 |
+
msgid "Local Path"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/Integration/EventsCalendar.php:15
|
27 |
+
msgid "Events Calendar"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/Admin/Page/Addons.php:102
|
31 |
+
msgid "%s add-on"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/Admin/Page/Addons.php:55
|
35 |
+
msgid "%s needs to be installed and active for the add-on to work."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/Admin/Page/Addons.php:38
|
39 |
+
msgid "All add-ons require %s."
|
|
|
|
|
|
|
|
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/Settings/Column/CustomFieldType.php:72
|
43 |
+
msgid "Uses one or more %s IDs to display information about it."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/Check/Review.php:159
|
47 |
+
msgid "You can also use your admincolumns.com account to access support through %s!"
|
48 |
msgstr ""
|
49 |
|
50 |
#: classes/Admin/Help/CustomField.php:75
|
76 |
msgid "Value: This will show if the field has content or not."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Integration/NinjaForms.php:17
|
80 |
msgid "Add Ninja Forms columns that can be sorted, filtered and directly edited!"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Integration/EventsCalendar.php:17
|
84 |
msgid "Manage columns for your event, organizer or venue overviews."
|
85 |
msgstr ""
|
86 |
|
116 |
msgid "Editing"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: classes/Admin/Page/Columns.php:956
|
120 |
msgid "Only %s for 1 site"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/Admin/Page/Columns.php:951
|
124 |
msgid "Get add-ons for ACF, WooCommerce and many more"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/Admin/Page/Columns.php:950
|
128 |
msgid "Create multiple column groups per overview"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: classes/Admin/Page/Columns.php:949
|
132 |
msgid "Export all column data to CSV"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Admin/Page/Columns.php:948
|
136 |
msgid "Directly edit your content from the overview"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Admin/Page/Columns.php:947
|
140 |
msgid "Sort & Filter on all your content"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Admin/Page/Columns.php:944
|
144 |
msgid "Upgrade to PRO, and take Admin Columns to the next level:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: classes/Admin/Page/Columns.php:937
|
148 |
msgid "Do you like Admin Columns?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: classes/Admin/Page/Columns.php:465
|
152 |
msgid "Select type"
|
153 |
msgstr ""
|
154 |
|
229 |
msgid "Include missing sizes?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: classes/Settings/Column/Meta.php:138
|
233 |
msgid "Site Options"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: classes/Settings/Column/Meta.php:132
|
237 |
msgid "current"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: classes/Settings/Column/Meta.php:129
|
241 |
msgid "Network Site:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: classes/Settings/Column/Meta.php:121
|
245 |
msgid "Hidden"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: classes/Settings/Column/Meta.php:120
|
249 |
msgid "Public"
|
250 |
msgstr ""
|
251 |
|
273 |
msgid "Thumbnails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: classes/Plugin/Updater.php:119
|
277 |
msgid "Run the updater"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/Plugin/Updater.php:117
|
281 |
msgid "We need to update your database to the latest version."
|
282 |
msgstr ""
|
283 |
|
325 |
msgid "Alternative Text"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/Admin/Page/Addons.php:114
|
329 |
msgid "Please visit the %s page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/Integration/NinjaForms.php:15
|
333 |
msgid "Ninja Forms"
|
334 |
msgstr ""
|
335 |
|
|
|
|
|
|
|
|
|
336 |
#: classes/Settings/Column/StatusIcon.php:72
|
337 |
msgid "Password protected"
|
338 |
msgstr ""
|
378 |
msgid "User Nicename"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Admin/Page/Columns.php:610
|
382 |
msgid "Send me the discount"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/Admin/Page/Columns.php:575
|
386 |
msgid "Prices starting from %s"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/Integration/BuddyPress.php:16
|
390 |
msgid "Display any of your Profile Fields for BuddyPress on your users overview."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: classes/Integration/BuddyPress.php:14
|
394 |
msgid "BuddyPress"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "View more"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: classes/AdminColumns.php:123
|
402 |
msgid "Invalid method."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/AdminColumns.php:119
|
406 |
msgid "Invalid column."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/AdminColumns.php:113
|
410 |
msgid "Invalid list screen."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/AdminColumns.php:107
|
414 |
msgid "Invalid item ID."
|
415 |
msgstr ""
|
416 |
|
469 |
msgid "Password"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: classes/Settings/Column/Meta.php:30
|
473 |
msgid "No fields available."
|
474 |
msgstr ""
|
475 |
|
576 |
msgid "Multiple IDs should be separated by commas."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/Settings/Column/Meta.php:73
|
580 |
msgid "Field"
|
581 |
msgstr ""
|
582 |
|
603 |
msgid "This text will appear after the column value."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: classes/Helper/Strings.php:309
|
607 |
msgid " or "
|
608 |
msgstr ""
|
609 |
|
627 |
msgid "Shortlink"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Settings/Column/CustomFieldType.php:281
|
631 |
msgid ", "
|
632 |
msgstr ""
|
633 |
|
643 |
msgid "Discount is valid until %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Admin/Page/Settings.php:183
|
647 |
msgid "Show %s button on table screen."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: classes/Admin/Page/Settings.php:164
|
651 |
msgid "Default is %s."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: classes/Admin/Page/Settings.php:161
|
655 |
msgid "on"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: classes/Admin/Page/Settings.php:158
|
659 |
msgid "off"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: classes/Admin/Page/Settings.php:145
|
663 |
msgid "Notice"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: classes/Admin/Page/Settings.php:139
|
667 |
msgid "Instructions"
|
668 |
msgstr ""
|
669 |
|
710 |
msgid "Help"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: classes/Admin/Page/Columns.php:877 classes/Admin/Page/Columns.php:912
|
714 |
msgid "Close"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: classes/Admin/Page/Columns.php:756
|
718 |
msgid "Clear all columns "
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: classes/Admin/Page/Columns.php:667
|
722 |
msgid "I'm using Admin Columns for WordPress!"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: classes/Admin/Page/Columns.php:609
|
726 |
msgid "Your First Name"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: classes/Admin/Page/Columns.php:608
|
730 |
msgid "Your Email"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: classes/Admin/Page/Columns.php:601
|
734 |
msgid "Submit your email and we'll send you a discount for %s off."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: classes/Admin/Page/Columns.php:597 classes/Admin/Promo.php:131
|
738 |
msgid "Get %s Off!"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: classes/Admin/Page/Columns.php:562
|
742 |
msgid "Extra Columns for:"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: classes/Admin/Page/Columns.php:545
|
746 |
msgid "Edit your column content directly"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: classes/Admin/Page/Columns.php:533
|
750 |
msgid "Pro"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: classes/Admin/Page/Columns.php:297
|
754 |
msgid "You need at least one column"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: classes/Admin/Page/Addons.php:256
|
758 |
msgid "Available"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: classes/Admin/Page/Addons.php:255
|
762 |
msgid "Recommended"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: classes/Admin/Page/Addons.php:114
|
766 |
msgid "%s could not be activated."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: classes/Admin/Page/Addons.php:106
|
770 |
msgid "%s successfully activated."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: classes/Integration/Types.php:15
|
774 |
+
msgid "Display and edit Toolset Types fields in the posts overview in seconds!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: classes/Integration/Types.php:13
|
|
|
|
|
|
|
|
|
778 |
msgid "Toolset Types"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: classes/Integration/Pods.php:13
|
782 |
msgid "Pods"
|
783 |
msgstr ""
|
784 |
|
786 |
msgid "Imported"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: classes/Admin/Page/Columns.php:580
|
790 |
msgid "Learn more about Pro"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: classes/Admin/Page/Columns.php:547
|
794 |
msgid "Import & Export settings"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: classes/Admin/Page/Columns.php:546
|
798 |
msgid "Create multiple columns sets"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: classes/Admin/Page/Columns.php:544
|
802 |
msgid "Add filterable columns"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: classes/Admin/Page/Columns.php:543
|
806 |
msgid "Add sortable columns"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: classes/Admin/Page/Columns.php:538
|
810 |
msgid "Take Admin Columns to the next level:"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: classes/Admin/Page/Columns.php:533
|
814 |
msgid "Upgrade to"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: classes/Admin/Page/Columns.php:428
|
818 |
msgid "The columns for %s are set up via PHP and can therefore not be edite
|