Version Description
- [Added] Added filter "cac/column/actions/action_links" for modifying the action column links
- [Fixed] WordPress SEO by Yoast columns were not added to the dropdown menu when using the 'add column' button.
- [Fixed] Fix "restore" action link in post actions column
Download this release
Release Info
Developer | engelen |
Plugin | Admin Columns |
Version | 2.2.9 |
Comparing to | |
See all releases |
Code changes from version 2.2.8.1 to 2.2.9
- README.md +0 -0
- assets/images/addon_sortable_1.png +0 -0
- assets/images/arrows.png +0 -0
- assets/images/checkbox.png +0 -0
- assets/images/checkmark.png +0 -0
- assets/images/checkmark_single.png +0 -0
- assets/images/comment_edit.png +0 -0
- assets/images/cross.png +0 -0
- assets/images/facebook.png +0 -0
- assets/images/icon.png +0 -0
- assets/images/import_export.png +0 -0
- assets/images/information.png +0 -0
- assets/images/loading.gif +0 -0
- assets/images/no.png +0 -0
- assets/images/settings.png +0 -0
- assets/images/sort.png +0 -0
- assets/images/square.png +0 -0
- assets/images/trash.png +0 -0
- assets/images/twitter.png +0 -0
- assets/js/upgrade.js +0 -0
- assets/ui-theme/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- assets/ui-theme/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- assets/ui-theme/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- assets/ui-theme/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- assets/ui-theme/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- assets/ui-theme/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- assets/ui-theme/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- assets/ui-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- assets/ui-theme/images/ui-icons_222222_256x240.png +0 -0
- assets/ui-theme/images/ui-icons_2e83ff_256x240.png +0 -0
- assets/ui-theme/images/ui-icons_454545_256x240.png +0 -0
- assets/ui-theme/images/ui-icons_888888_256x240.png +0 -0
- assets/ui-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
- assets/ui-theme/jquery-ui-1.8.18.custom.css +0 -0
- classes/column/actions.php +9 -1
- classes/column/post/actions.php +1 -1
- classes/storage_model.php +11 -0
- classes/storage_model/post.php +1 -1
- classes/third_party.php +18 -8
- codepress-admin-columns.php +2 -2
- languages/cpac-fa_IR.mo +0 -0
- languages/cpac-fa_IR.po +1259 -0
- languages/cpac.po +159 -190
- readme.txt +6 -3
README.md
DELETED
File without changes
|
assets/images/addon_sortable_1.png
CHANGED
File without changes
|
assets/images/arrows.png
CHANGED
File without changes
|
assets/images/checkbox.png
CHANGED
File without changes
|
assets/images/checkmark.png
CHANGED
File without changes
|
assets/images/checkmark_single.png
CHANGED
File without changes
|
assets/images/comment_edit.png
CHANGED
File without changes
|
assets/images/cross.png
CHANGED
File without changes
|
assets/images/facebook.png
CHANGED
File without changes
|
assets/images/icon.png
CHANGED
File without changes
|
assets/images/import_export.png
CHANGED
File without changes
|
assets/images/information.png
CHANGED
File without changes
|
assets/images/loading.gif
CHANGED
File without changes
|
assets/images/no.png
CHANGED
File without changes
|
assets/images/settings.png
CHANGED
File without changes
|
assets/images/sort.png
CHANGED
File without changes
|
assets/images/square.png
CHANGED
File without changes
|
assets/images/trash.png
CHANGED
File without changes
|
assets/images/twitter.png
CHANGED
File without changes
|
assets/js/upgrade.js
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_flat_0_aaaaaa_40x100.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_flat_75_ffffff_40x100.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_glass_55_fbf9ee_1x400.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_glass_65_ffffff_1x400.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_glass_75_dadada_1x400.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_glass_75_e6e6e6_1x400.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_glass_95_fef1ec_1x400.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-icons_222222_256x240.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-icons_2e83ff_256x240.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-icons_454545_256x240.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-icons_888888_256x240.png
CHANGED
File without changes
|
assets/ui-theme/images/ui-icons_cd0a0a_256x240.png
CHANGED
File without changes
|
assets/ui-theme/jquery-ui-1.8.18.custom.css
CHANGED
File without changes
|
classes/column/actions.php
CHANGED
@@ -53,7 +53,15 @@ abstract class CPAC_Column_Actions extends CPAC_Column {
|
|
53 |
*/
|
54 |
public function get_raw_value( $post_id ) {
|
55 |
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
|
59 |
/**
|
53 |
*/
|
54 |
public function get_raw_value( $post_id ) {
|
55 |
|
56 |
+
/**
|
57 |
+
* Filter the action links for the actions column
|
58 |
+
*
|
59 |
+
* @since 2.2.9
|
60 |
+
*
|
61 |
+
* @param array List of actions ([action name] => [action link]).
|
62 |
+
* @param CPAC_Column_Actions $column_instance Column object.
|
63 |
+
*/
|
64 |
+
return apply_filters( 'cac/column/actions/action_links', $this->get_actions( $post_id ), $this );
|
65 |
}
|
66 |
|
67 |
/**
|
classes/column/post/actions.php
CHANGED
@@ -36,7 +36,7 @@ class CPAC_Column_Post_Actions extends CPAC_Column_Actions {
|
|
36 |
}
|
37 |
if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) {
|
38 |
if ( 'trash' == $post->post_status )
|
39 |
-
$actions['untrash'] = "<a title='" . esc_attr( __( 'Restore this item from the Trash' ) ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&action=untrash', $post->ID ) ), 'untrash-' . $post->
|
40 |
elseif ( EMPTY_TRASH_DAYS )
|
41 |
$actions['trash'] = "<a class='submitdelete' title='" . esc_attr( __( 'Move this item to the Trash' ) ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
|
42 |
if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS )
|
36 |
}
|
37 |
if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) {
|
38 |
if ( 'trash' == $post->post_status )
|
39 |
+
$actions['untrash'] = "<a title='" . esc_attr( __( 'Restore this item from the Trash' ) ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
|
40 |
elseif ( EMPTY_TRASH_DAYS )
|
41 |
$actions['trash'] = "<a class='submitdelete' title='" . esc_attr( __( 'Move this item to the Trash' ) ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
|
42 |
if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS )
|
classes/storage_model.php
CHANGED
@@ -256,6 +256,17 @@ abstract class CPAC_Storage_Model {
|
|
256 |
// refresh columns otherwise the newly added columns will not be displayed
|
257 |
$this->set_columns_on_current_screen();
|
258 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
return true;
|
260 |
}
|
261 |
|
256 |
// refresh columns otherwise the newly added columns will not be displayed
|
257 |
$this->set_columns_on_current_screen();
|
258 |
|
259 |
+
/**
|
260 |
+
* Fires after a new column setup is stored in the database
|
261 |
+
* Primarily used when columns are saved through the Admin Columns settings screen
|
262 |
+
*
|
263 |
+
* @since 2.2.9
|
264 |
+
*
|
265 |
+
* @param array $columns List of columns ([columnid] => (array) [column properties])
|
266 |
+
* @param CPAC_Storage_Model $storage_model_instance Storage model instance
|
267 |
+
*/
|
268 |
+
do_action( 'cac/storage_model/columns_stored', $columns, $this );
|
269 |
+
|
270 |
return true;
|
271 |
}
|
272 |
|
classes/storage_model/post.php
CHANGED
@@ -145,7 +145,7 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
|
|
145 |
|
146 |
// get_column_headers() runs through both the manage_{screenid}_columns
|
147 |
// and manage_{$post_type}_posts_columns filters
|
148 |
-
$columns = apply_filters( 'manage_edit-' . $this->key . '_columns', array() );
|
149 |
$columns = array_filter( $columns );
|
150 |
|
151 |
return $columns;
|
145 |
|
146 |
// get_column_headers() runs through both the manage_{screenid}_columns
|
147 |
// and manage_{$post_type}_posts_columns filters
|
148 |
+
$columns = (array) apply_filters( 'manage_edit-' . $this->key . '_columns', array() );
|
149 |
$columns = array_filter( $columns );
|
150 |
|
151 |
return $columns;
|
classes/third_party.php
CHANGED
@@ -10,21 +10,31 @@
|
|
10 |
* @since 1.4.6
|
11 |
*/
|
12 |
function cpac_pre_load_wordpress_seo_class_metabox() {
|
|
|
|
|
|
|
|
|
|
|
13 |
global $pagenow;
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
( isset($_GET['page']) && 'codepress-admin-columns' == $_GET['page'] && 'options-general.php' == $pagenow )
|
18 |
||
|
19 |
// for when column list is populated through ajax
|
20 |
-
( defined('DOING_AJAX') && DOING_AJAX &&
|
|
|
|
|
|
|
|
|
21 |
) {
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
}
|
27 |
}
|
|
|
28 |
}
|
29 |
add_action( 'plugins_loaded', 'cpac_pre_load_wordpress_seo_class_metabox', 0 );
|
30 |
|
10 |
* @since 1.4.6
|
11 |
*/
|
12 |
function cpac_pre_load_wordpress_seo_class_metabox() {
|
13 |
+
|
14 |
+
if ( ! defined('WPSEO_PATH') || ! file_exists( WPSEO_PATH . 'admin/class-metabox.php' ) ) {
|
15 |
+
return;
|
16 |
+
}
|
17 |
+
|
18 |
global $pagenow;
|
19 |
|
20 |
+
// page is a CPAC page or CPAC ajax event
|
21 |
+
if (
|
22 |
+
( isset( $_GET['page'] ) && 'codepress-admin-columns' == $_GET['page'] && 'options-general.php' == $pagenow )
|
23 |
||
|
24 |
// for when column list is populated through ajax
|
25 |
+
( defined('DOING_AJAX') && DOING_AJAX &&
|
26 |
+
( ! empty( $_POST['type'] )
|
27 |
+
||
|
28 |
+
( ! empty( $_POST['plugin_id'] ) && 'cpac' === $_POST['plugin_id'] ) )
|
29 |
+
)
|
30 |
) {
|
31 |
+
|
32 |
+
require_once WPSEO_PATH . 'admin/class-metabox.php';
|
33 |
+
if ( class_exists( 'WPSEO_Metabox' ) ) {
|
34 |
+
new WPSEO_Metabox;
|
35 |
}
|
36 |
}
|
37 |
+
|
38 |
}
|
39 |
add_action( 'plugins_loaded', 'cpac_pre_load_wordpress_seo_class_metabox', 0 );
|
40 |
|
codepress-admin-columns.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Admin Columns
|
4 |
-
Version: 2.2.
|
5 |
Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
6 |
Author: AdminColumns.com
|
7 |
Author URI: http://www.admincolumns.com
|
@@ -29,7 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
29 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
30 |
|
31 |
// Plugin information
|
32 |
-
define( 'CPAC_VERSION', '2.2.
|
33 |
define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // Latest version which requires an upgrade
|
34 |
define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
|
35 |
define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Admin Columns
|
4 |
+
Version: 2.2.9
|
5 |
Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
6 |
Author: AdminColumns.com
|
7 |
Author URI: http://www.admincolumns.com
|
29 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
30 |
|
31 |
// Plugin information
|
32 |
+
define( 'CPAC_VERSION', '2.2.9' ); // Current plugin version
|
33 |
define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // Latest version which requires an upgrade
|
34 |
define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
|
35 |
define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
|
languages/cpac-fa_IR.mo
ADDED
Binary file
|
languages/cpac-fa_IR.po
ADDED
@@ -0,0 +1,1259 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#
|
2 |
+
# Translators:
|
3 |
+
# kamel kimiaei <kamel.kimiaei.fard@gmail.com>, 2014
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Project-Id-Version: Admin Columns\n"
|
7 |
+
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2014-05-22 17:03+0100\n"
|
9 |
+
"PO-Revision-Date: 2014-10-20 13:37+0100\n"
|
10 |
+
"Last-Translator: Codepress <info@codepress.nl>\n"
|
11 |
+
"Language-Team: Persian (http://www.transifex.com/projects/p/admin-columns/"
|
12 |
+
"language/fa/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: fa\n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"X-Generator: Poedit 1.6.10\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
21 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
"X-Poedit-SearchPath-1: ..\n"
|
24 |
+
|
25 |
+
#: ../classes/addons.php:117
|
26 |
+
msgid "Third party plugin integration"
|
27 |
+
msgstr "سازگاری با افزونه های دیگر"
|
28 |
+
|
29 |
+
#: ../classes/addons.php:142
|
30 |
+
msgid "Advanced Custom Fields"
|
31 |
+
msgstr "زمینه های دلخواه پیشرفته"
|
32 |
+
|
33 |
+
#: ../classes/addons.php:143
|
34 |
+
msgid ""
|
35 |
+
"Display and edit Advanced Custom Fields fields in the posts overview in "
|
36 |
+
"seconds!"
|
37 |
+
msgstr ""
|
38 |
+
"نمایش و ویرایش زمنیه های دلخواه پیشرفته در صفحه همه نوشته ها در چند ثانیه!"
|
39 |
+
|
40 |
+
#: ../classes/column.php:481
|
41 |
+
msgid "Thumbnail"
|
42 |
+
msgstr "بندانگشتی"
|
43 |
+
|
44 |
+
#: ../classes/column.php:482
|
45 |
+
msgid "Medium"
|
46 |
+
msgstr "متوسط"
|
47 |
+
|
48 |
+
#: ../classes/column.php:483
|
49 |
+
msgid "Large"
|
50 |
+
msgstr "بزرگ"
|
51 |
+
|
52 |
+
#: ../classes/column.php:484
|
53 |
+
msgid "Full"
|
54 |
+
msgstr "کامل"
|
55 |
+
|
56 |
+
#: ../classes/column.php:751
|
57 |
+
msgid "Date Format"
|
58 |
+
msgstr "قابل تاریخ"
|
59 |
+
|
60 |
+
#: ../classes/column.php:752
|
61 |
+
msgid "This will determine how the date will be displayed."
|
62 |
+
msgstr "چگونگی نمایش تاریخ را مشخص می کند."
|
63 |
+
|
64 |
+
#: ../classes/column.php:758
|
65 |
+
msgid "Example:"
|
66 |
+
msgstr "مثال:"
|
67 |
+
|
68 |
+
#: ../classes/column.php:760
|
69 |
+
#, php-format
|
70 |
+
msgid ""
|
71 |
+
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
72 |
+
"date format here</a>."
|
73 |
+
msgstr ""
|
74 |
+
"برای استفاده از قالب تاریخ وردپرس خالی بگذارید، یا به <a href=\"%s\">قالب "
|
75 |
+
"دلخواهی از اینجا</a> تغییر دهید."
|
76 |
+
|
77 |
+
#: ../classes/column.php:761
|
78 |
+
msgid "Documentation on date and time formatting."
|
79 |
+
msgstr "مستندات در باره قالب بندی تاریخ و زمان."
|
80 |
+
|
81 |
+
#: ../classes/column.php:775
|
82 |
+
msgid "Excerpt length"
|
83 |
+
msgstr "طول چکیده"
|
84 |
+
|
85 |
+
#: ../classes/column.php:776
|
86 |
+
msgid "Number of words"
|
87 |
+
msgstr "تعداد کلمات"
|
88 |
+
|
89 |
+
#: ../classes/column.php:794
|
90 |
+
msgid "Preview size"
|
91 |
+
msgstr "اندازه پیش نمایش"
|
92 |
+
|
93 |
+
#: ../classes/column.php:811 ../classes/storage_model.php:505
|
94 |
+
msgid "Custom"
|
95 |
+
msgstr "دلخواه"
|
96 |
+
|
97 |
+
#: ../classes/column.php:814
|
98 |
+
msgid "width"
|
99 |
+
msgstr "عرض"
|
100 |
+
|
101 |
+
#: ../classes/column.php:817
|
102 |
+
msgid "height"
|
103 |
+
msgstr "ارتفاع"
|
104 |
+
|
105 |
+
#: ../classes/column.php:831
|
106 |
+
msgid "Before"
|
107 |
+
msgstr "قبل"
|
108 |
+
|
109 |
+
#: ../classes/column.php:831
|
110 |
+
msgid "This text will appear before the custom field value."
|
111 |
+
msgstr "این متن قبل از مقدار زمینه دلخواه نمایش داده خواهد شد."
|
112 |
+
|
113 |
+
#: ../classes/column.php:837
|
114 |
+
msgid "After"
|
115 |
+
msgstr "بعد"
|
116 |
+
|
117 |
+
#: ../classes/column.php:837
|
118 |
+
msgid "This text will appear after the custom field value."
|
119 |
+
msgstr "این متن بعد از مقدار زمینه دلخواه نمایش داده خواهد شد."
|
120 |
+
|
121 |
+
#: ../classes/column.php:926 ../classes/column/comment/actions.php:96
|
122 |
+
#: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
|
123 |
+
#: ../classes/column/user/actions.php:66
|
124 |
+
msgid "Edit"
|
125 |
+
msgstr "ویرایش"
|
126 |
+
|
127 |
+
#: ../classes/column.php:927 ../classes/column.php:1005
|
128 |
+
#: ../classes/column/user/actions.php:74
|
129 |
+
msgid "Remove"
|
130 |
+
msgstr "حذف"
|
131 |
+
|
132 |
+
#: ../classes/column.php:945
|
133 |
+
msgid "Type"
|
134 |
+
msgstr "نوع"
|
135 |
+
|
136 |
+
#: ../classes/column.php:945
|
137 |
+
msgid "Choose a column type."
|
138 |
+
msgstr "انتخاب نوع ستون"
|
139 |
+
|
140 |
+
#: ../classes/column.php:945 ../classes/column/comment/ID.php:12
|
141 |
+
#: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
|
142 |
+
#: ../classes/column/post/ID.php:12
|
143 |
+
msgid "ID"
|
144 |
+
msgstr "شناسه"
|
145 |
+
|
146 |
+
#: ../classes/column.php:955
|
147 |
+
msgid "Label"
|
148 |
+
msgstr "برچسب"
|
149 |
+
|
150 |
+
#: ../classes/column.php:955
|
151 |
+
msgid "This is the name which will appear as the column header."
|
152 |
+
msgstr "این نامی است که در تیتر ستون دیده می شود."
|
153 |
+
|
154 |
+
#: ../classes/column.php:962 ../classes/column/media/width.php:12
|
155 |
+
msgid "Width"
|
156 |
+
msgstr "عرض"
|
157 |
+
|
158 |
+
#: ../classes/column.php:964 ../classes/column.php:965
|
159 |
+
msgid "default"
|
160 |
+
msgstr "پیش فرض"
|
161 |
+
|
162 |
+
#: ../classes/column/acf-placeholder.php:16
|
163 |
+
msgid "ACF Field"
|
164 |
+
msgstr "زمینه ACF"
|
165 |
+
|
166 |
+
#: ../classes/column/acf-placeholder.php:32
|
167 |
+
msgid "This feature is only available in Admin Columns Pro - Developer."
|
168 |
+
msgstr "این قابلیت فقط در نسخه حرفه توسعه دهندگان فعال می باشد"
|
169 |
+
|
170 |
+
#: ../classes/column/acf-placeholder.php:35
|
171 |
+
#, php-format
|
172 |
+
msgid ""
|
173 |
+
"If you have a developer licence please download & install your ACF add-on "
|
174 |
+
"from the <a href='%s'>add-ons tab</a>."
|
175 |
+
msgstr ""
|
176 |
+
"اگر شما مجوز نسخه توسعه دهنده دارید می توانید افزونه ی ACF را از <a "
|
177 |
+
"href='%s'>تب افزونه ها</a> دانلود و نصب نمایید."
|
178 |
+
|
179 |
+
#: ../classes/column/acf-placeholder.php:38
|
180 |
+
msgid ""
|
181 |
+
"Admin Columns Pro - Developer offers full Advanced Custom Fields "
|
182 |
+
"integeration, allowing you to easily display and edit ACF fields from within "
|
183 |
+
"your posts overview."
|
184 |
+
msgstr ""
|
185 |
+
"این افزونه در نسخه توسعه دهندگان به صورت کامل افزونه زمینه دلخواه پیشرفته را "
|
186 |
+
"در بر خواهد گرفتو به شما اجازه می دهد به آسانی زمینه های ACF را از قسمت همه "
|
187 |
+
"نوشته ها مشاهده و ویرایش کنید."
|
188 |
+
|
189 |
+
#: ../classes/column/acf-placeholder.php:40
|
190 |
+
msgid "Find out more"
|
191 |
+
msgstr "اطلاعات بیشتر"
|
192 |
+
|
193 |
+
#: ../classes/column/comment/actions.php:14
|
194 |
+
#: ../classes/column/link/actions.php:14
|
195 |
+
#: ../classes/column/media/actions.php:14
|
196 |
+
#: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
|
197 |
+
msgid "Actions"
|
198 |
+
msgstr "عملیات ها"
|
199 |
+
|
200 |
+
#: ../classes/column/comment/actions.php:73
|
201 |
+
#: ../classes/column/comment/actions.php:78
|
202 |
+
msgid "Unapprove"
|
203 |
+
msgstr "عدم تایید"
|
204 |
+
|
205 |
+
#: ../classes/column/comment/actions.php:75
|
206 |
+
#: ../classes/column/comment/actions.php:77
|
207 |
+
msgid "Approve"
|
208 |
+
msgstr "تایید"
|
209 |
+
|
210 |
+
#: ../classes/column/comment/actions.php:86
|
211 |
+
#: ../classes/column/post/actions.php:62 ../classes/settings.php:687
|
212 |
+
msgid "Restore"
|
213 |
+
msgstr "بازسازی"
|
214 |
+
|
215 |
+
#: ../classes/column/comment/actions.php:90
|
216 |
+
#: ../classes/column/post/actions.php:66
|
217 |
+
msgid "Delete Permanently"
|
218 |
+
msgstr "حذف برای همیشه"
|
219 |
+
|
220 |
+
#: ../classes/column/comment/actions.php:97
|
221 |
+
#: ../classes/column/post/actions.php:58
|
222 |
+
msgid "Quick Edit"
|
223 |
+
msgstr "ویرایش سریع"
|
224 |
+
|
225 |
+
#: ../classes/column/comment/actions.php:98
|
226 |
+
msgid "Reply"
|
227 |
+
msgstr "پاسخ"
|
228 |
+
|
229 |
+
#: ../classes/column/comment/agent.php:12
|
230 |
+
msgid "Agent"
|
231 |
+
msgstr "مرورگر"
|
232 |
+
|
233 |
+
#: ../classes/column/comment/approved.php:12
|
234 |
+
#: ../classes/column/post/comment-count.php:31
|
235 |
+
msgid "Approved"
|
236 |
+
msgstr "تایید شده"
|
237 |
+
|
238 |
+
#: ../classes/column/comment/author-avatar.php:12
|
239 |
+
msgid "Avatar"
|
240 |
+
msgstr "آواتار"
|
241 |
+
|
242 |
+
#: ../classes/column/comment/author-email.php:12
|
243 |
+
msgid "Author email"
|
244 |
+
msgstr "ایمیل نویسنده"
|
245 |
+
|
246 |
+
#: ../classes/column/comment/author-ip.php:12
|
247 |
+
msgid "Author IP"
|
248 |
+
msgstr "آی پی نویسنده"
|
249 |
+
|
250 |
+
#: ../classes/column/comment/author-url.php:12
|
251 |
+
msgid "Author url"
|
252 |
+
msgstr "آدرس نویسنده"
|
253 |
+
|
254 |
+
#: ../classes/column/comment/author.php:12
|
255 |
+
msgid "Author"
|
256 |
+
msgstr "نویسنده"
|
257 |
+
|
258 |
+
#: ../classes/column/comment/date-gmt.php:12
|
259 |
+
msgid "Date GMT"
|
260 |
+
msgstr "تاریخ مرجع"
|
261 |
+
|
262 |
+
#: ../classes/column/comment/date-gmt.php:25
|
263 |
+
#: ../classes/column/comment/date.php:25
|
264 |
+
#, php-format
|
265 |
+
msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
|
266 |
+
msgstr "ارسالی در <a href=\"%1$s\">%2$s در %3$s</a>"
|
267 |
+
|
268 |
+
#: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
|
269 |
+
#: ../classes/settings.php:300
|
270 |
+
msgid "Date"
|
271 |
+
msgstr "تاریخ"
|
272 |
+
|
273 |
+
#: ../classes/column/comment/excerpt.php:13
|
274 |
+
#: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
|
275 |
+
#: ../classes/settings.php:297
|
276 |
+
msgid "Excerpt"
|
277 |
+
msgstr "چکیده"
|
278 |
+
|
279 |
+
#: ../classes/column/comment/reply-to.php:12
|
280 |
+
msgid "In Reply To"
|
281 |
+
msgstr "در پاسخ به"
|
282 |
+
|
283 |
+
#: ../classes/column/comment/word-count.php:12
|
284 |
+
#: ../classes/column/post/word-count.php:12
|
285 |
+
msgid "Word count"
|
286 |
+
msgstr "تعداد کلمات"
|
287 |
+
|
288 |
+
#: ../classes/column/custom-field.php:16
|
289 |
+
#: ../classes/column/custom-field.php:384 ../classes/settings.php:290
|
290 |
+
msgid "Custom Field"
|
291 |
+
msgstr "زمینه دلخواه"
|
292 |
+
|
293 |
+
#: ../classes/column/custom-field.php:65 ../classes/settings.php:295
|
294 |
+
#: ../classes/storage_model.php:504
|
295 |
+
msgid "Default"
|
296 |
+
msgstr "پیش فرض"
|
297 |
+
|
298 |
+
#: ../classes/column/custom-field.php:66
|
299 |
+
msgid "Checkmark (true/false)"
|
300 |
+
msgstr "تیک(صحیح غلط)"
|
301 |
+
|
302 |
+
#: ../classes/column/custom-field.php:67 ../classes/settings.php:304
|
303 |
+
msgid "Color"
|
304 |
+
msgstr "رنگ"
|
305 |
+
|
306 |
+
#: ../classes/column/custom-field.php:68 ../classes/settings.php:305
|
307 |
+
msgid "Counter"
|
308 |
+
msgstr "شمارنده"
|
309 |
+
|
310 |
+
#: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
|
311 |
+
#: ../classes/settings.php:296
|
312 |
+
msgid "Image"
|
313 |
+
msgstr "تصویر"
|
314 |
+
|
315 |
+
#: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
|
316 |
+
msgid "Media Library"
|
317 |
+
msgstr "کتابخانه رسانه"
|
318 |
+
|
319 |
+
#: ../classes/column/custom-field.php:73 ../classes/settings.php:298
|
320 |
+
msgid "Multiple Values"
|
321 |
+
msgstr "چندین مقدار"
|
322 |
+
|
323 |
+
#: ../classes/column/custom-field.php:74 ../classes/settings.php:299
|
324 |
+
msgid "Numeric"
|
325 |
+
msgstr "عددی"
|
326 |
+
|
327 |
+
#: ../classes/column/custom-field.php:75
|
328 |
+
msgid "Post Title (Post ID's)"
|
329 |
+
msgstr "تیتر نوشته (شناسه نوشته)"
|
330 |
+
|
331 |
+
#: ../classes/column/custom-field.php:76
|
332 |
+
msgid "Username (User ID's)"
|
333 |
+
msgstr "نام کاربری(شناسه کاربری)"
|
334 |
+
|
335 |
+
#: ../classes/column/custom-field.php:384
|
336 |
+
msgid "Select your custom field."
|
337 |
+
msgstr "زمینه دلخواه خود را انتخاب کنید."
|
338 |
+
|
339 |
+
#: ../classes/column/custom-field.php:394
|
340 |
+
msgid "No custom fields available."
|
341 |
+
msgstr "زمینه دلخواهی موجود نیست."
|
342 |
+
|
343 |
+
#: ../classes/column/custom-field.php:401
|
344 |
+
msgid "Field Type"
|
345 |
+
msgstr "نوع فیلد"
|
346 |
+
|
347 |
+
#: ../classes/column/custom-field.php:401
|
348 |
+
msgid "This will determine how the value will be displayed."
|
349 |
+
msgstr "نمایانگر این موضوع که مقادیر چگونه نمایش داده خواهند شد."
|
350 |
+
|
351 |
+
#: ../classes/column/link/actions.php:46
|
352 |
+
#, php-format
|
353 |
+
msgid ""
|
354 |
+
"You are about to delete this link '%s'\n"
|
355 |
+
" 'Cancel' to stop, 'OK' to delete."
|
356 |
+
msgstr ""
|
357 |
+
"در حال حذف این لینک '%s'\n"
|
358 |
+
"می باشید."
|
359 |
+
|
360 |
+
#: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
|
361 |
+
msgid "Delete"
|
362 |
+
msgstr "حذف"
|
363 |
+
|
364 |
+
#: ../classes/column/link/description.php:12
|
365 |
+
#: ../classes/column/media/description.php:12
|
366 |
+
#: ../classes/column/user/description.php:14
|
367 |
+
msgid "Description"
|
368 |
+
msgstr "توضیحات"
|
369 |
+
|
370 |
+
#: ../classes/column/link/length.php:12
|
371 |
+
msgid "Length"
|
372 |
+
msgstr "طول"
|
373 |
+
|
374 |
+
#: ../classes/column/link/notes.php:13
|
375 |
+
msgid "Notes"
|
376 |
+
msgstr "نکته ها"
|
377 |
+
|
378 |
+
#: ../classes/column/link/owner.php:12
|
379 |
+
msgid "Owner"
|
380 |
+
msgstr "مالک"
|
381 |
+
|
382 |
+
#: ../classes/column/link/rss.php:12
|
383 |
+
msgid "Rss"
|
384 |
+
msgstr "Rss"
|
385 |
+
|
386 |
+
#: ../classes/column/link/target.php:12
|
387 |
+
msgid "Target"
|
388 |
+
msgstr "هدف"
|
389 |
+
|
390 |
+
#: ../classes/column/media/alternate-text.php:12
|
391 |
+
msgid "Alt"
|
392 |
+
msgstr "متن جایگزین"
|
393 |
+
|
394 |
+
#: ../classes/column/media/available-sizes.php:14
|
395 |
+
msgid "Available Sizes"
|
396 |
+
msgstr "اندازه های موجود"
|
397 |
+
|
398 |
+
#: ../classes/column/media/available-sizes.php:37
|
399 |
+
msgid "full size"
|
400 |
+
msgstr "اندازه کامل"
|
401 |
+
|
402 |
+
#: ../classes/column/media/caption.php:12
|
403 |
+
#: ../classes/column/media/exif-data.php:36
|
404 |
+
msgid "Caption"
|
405 |
+
msgstr "عنوان"
|
406 |
+
|
407 |
+
#: ../classes/column/media/dimensions.php:12
|
408 |
+
msgid "Dimensions"
|
409 |
+
msgstr "ابعاد"
|
410 |
+
|
411 |
+
#: ../classes/column/media/exif-data.php:12
|
412 |
+
msgid "EXIF data"
|
413 |
+
msgstr "داده های EXIF"
|
414 |
+
|
415 |
+
#: ../classes/column/media/exif-data.php:33
|
416 |
+
msgid "Aperture"
|
417 |
+
msgstr "دیافراگم"
|
418 |
+
|
419 |
+
#: ../classes/column/media/exif-data.php:34
|
420 |
+
msgid "Credit"
|
421 |
+
msgstr "اعتبار"
|
422 |
+
|
423 |
+
#: ../classes/column/media/exif-data.php:35
|
424 |
+
msgid "Camera"
|
425 |
+
msgstr "دوربین"
|
426 |
+
|
427 |
+
#: ../classes/column/media/exif-data.php:37
|
428 |
+
msgid "Timestamp"
|
429 |
+
msgstr "زمان"
|
430 |
+
|
431 |
+
#: ../classes/column/media/exif-data.php:38
|
432 |
+
msgid "Copyright EXIF"
|
433 |
+
msgstr "کپی رایت EXIF"
|
434 |
+
|
435 |
+
#: ../classes/column/media/exif-data.php:39
|
436 |
+
msgid "Focal Length"
|
437 |
+
msgstr "فاصله کانونی"
|
438 |
+
|
439 |
+
#: ../classes/column/media/exif-data.php:40
|
440 |
+
msgid "ISO"
|
441 |
+
msgstr "ISO"
|
442 |
+
|
443 |
+
#: ../classes/column/media/exif-data.php:41
|
444 |
+
msgid "Shutter Speed"
|
445 |
+
msgstr "سرعت شاتر"
|
446 |
+
|
447 |
+
#: ../classes/column/media/exif-data.php:42
|
448 |
+
msgid "Title"
|
449 |
+
msgstr "تیتر"
|
450 |
+
|
451 |
+
#: ../classes/column/media/file-name.php:12
|
452 |
+
msgid "File name"
|
453 |
+
msgstr "نام فایل"
|
454 |
+
|
455 |
+
#: ../classes/column/media/file-size.php:12
|
456 |
+
msgid "File size"
|
457 |
+
msgstr "حجم فایل"
|
458 |
+
|
459 |
+
#: ../classes/column/media/full-path.php:12
|
460 |
+
msgid "Full path"
|
461 |
+
msgstr "مسیر کامل"
|
462 |
+
|
463 |
+
#: ../classes/column/media/height.php:12
|
464 |
+
msgid "Height"
|
465 |
+
msgstr "ارتفاع"
|
466 |
+
|
467 |
+
#: ../classes/column/media/mime-type.php:12
|
468 |
+
msgid "Mime type"
|
469 |
+
msgstr "نوع فایل"
|
470 |
+
|
471 |
+
#: ../classes/column/post/actions.php:57
|
472 |
+
msgid "Edit this item"
|
473 |
+
msgstr "ویرایش این آیتم"
|
474 |
+
|
475 |
+
#: ../classes/column/post/actions.php:58
|
476 |
+
msgid "Edit this item inline"
|
477 |
+
msgstr "ویرایش درجای آیتم"
|
478 |
+
|
479 |
+
#: ../classes/column/post/actions.php:62
|
480 |
+
msgid "Restore this item from the Trash"
|
481 |
+
msgstr "بازسازی این آیتم از زباله دان"
|
482 |
+
|
483 |
+
#: ../classes/column/post/actions.php:64
|
484 |
+
msgid "Move this item to the Trash"
|
485 |
+
msgstr "انتقال این آیتم به زباله دان"
|
486 |
+
|
487 |
+
#: ../classes/column/post/actions.php:64
|
488 |
+
#: ../classes/column/post/comment-count.php:34
|
489 |
+
#: ../classes/column/post/status.php:38
|
490 |
+
msgid "Trash"
|
491 |
+
msgstr "زباله دان"
|
492 |
+
|
493 |
+
#: ../classes/column/post/actions.php:66
|
494 |
+
msgid "Delete this item permanently"
|
495 |
+
msgstr "حذف کلی این آیتم"
|
496 |
+
|
497 |
+
#: ../classes/column/post/actions.php:71
|
498 |
+
#, php-format
|
499 |
+
msgid "Preview “%s”"
|
500 |
+
msgstr "پیش نمایش “%s”"
|
501 |
+
|
502 |
+
#: ../classes/column/post/actions.php:71
|
503 |
+
msgid "Preview"
|
504 |
+
msgstr "پیش نمایش"
|
505 |
+
|
506 |
+
#: ../classes/column/post/actions.php:73
|
507 |
+
#, php-format
|
508 |
+
msgid "View “%s”"
|
509 |
+
msgstr "نمایش “%s”"
|
510 |
+
|
511 |
+
#: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
|
512 |
+
msgid "View"
|
513 |
+
msgstr "نمایش"
|
514 |
+
|
515 |
+
#: ../classes/column/post/attachment-count.php:12
|
516 |
+
msgid "No. of Attachments"
|
517 |
+
msgstr "تعداد پیوست ها"
|
518 |
+
|
519 |
+
#: ../classes/column/post/attachment.php:12
|
520 |
+
msgid "Attachment"
|
521 |
+
msgstr "پیوست ها"
|
522 |
+
|
523 |
+
#: ../classes/column/post/author-name.php:12
|
524 |
+
msgid "Display Author As"
|
525 |
+
msgstr "نمایش نویسنده با"
|
526 |
+
|
527 |
+
#: ../classes/column/post/author-name.php:34
|
528 |
+
msgid "Display Name"
|
529 |
+
msgstr "نام عمومی"
|
530 |
+
|
531 |
+
#: ../classes/column/post/author-name.php:35
|
532 |
+
msgid "First Name"
|
533 |
+
msgstr "نام"
|
534 |
+
|
535 |
+
#: ../classes/column/post/author-name.php:36
|
536 |
+
msgid "Last Name"
|
537 |
+
msgstr "نام خانوادگی"
|
538 |
+
|
539 |
+
#: ../classes/column/post/author-name.php:37
|
540 |
+
#: ../classes/column/user/nickname.php:14
|
541 |
+
msgid "Nickname"
|
542 |
+
msgstr "لغب"
|
543 |
+
|
544 |
+
#: ../classes/column/post/author-name.php:38
|
545 |
+
msgid "User Login"
|
546 |
+
msgstr "نام کاربری"
|
547 |
+
|
548 |
+
#: ../classes/column/post/author-name.php:39
|
549 |
+
msgid "User Email"
|
550 |
+
msgstr "ایمیل کاربر"
|
551 |
+
|
552 |
+
#: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
|
553 |
+
msgid "User ID"
|
554 |
+
msgstr "شناسه کاربر"
|
555 |
+
|
556 |
+
#: ../classes/column/post/author-name.php:41
|
557 |
+
msgid "First and Last Name"
|
558 |
+
msgstr "نام و نام خانوادگی"
|
559 |
+
|
560 |
+
#: ../classes/column/post/author-name.php:118
|
561 |
+
msgid "This is the format of the author name."
|
562 |
+
msgstr "فرمت نمایش نام نویسنده"
|
563 |
+
|
564 |
+
#: ../classes/column/post/before-moretag.php:14
|
565 |
+
msgid "Before More Tag"
|
566 |
+
msgstr "قبل از تگ بیشتر"
|
567 |
+
|
568 |
+
#: ../classes/column/post/comment-count.php:14
|
569 |
+
msgid "Comment count"
|
570 |
+
msgstr "تعداد نظرات"
|
571 |
+
|
572 |
+
#: ../classes/column/post/comment-count.php:30
|
573 |
+
msgid "Total"
|
574 |
+
msgstr "مجموع"
|
575 |
+
|
576 |
+
#: ../classes/column/post/comment-count.php:32
|
577 |
+
msgid "Pending"
|
578 |
+
msgstr "منتظر"
|
579 |
+
|
580 |
+
#: ../classes/column/post/comment-count.php:33
|
581 |
+
msgid "Spam"
|
582 |
+
msgstr "جفنگ"
|
583 |
+
|
584 |
+
#: ../classes/column/post/comment-count.php:95
|
585 |
+
#: ../classes/column/post/comment-status.php:14
|
586 |
+
msgid "Comment status"
|
587 |
+
msgstr "وضعیت نظر"
|
588 |
+
|
589 |
+
#: ../classes/column/post/comment-count.php:95
|
590 |
+
msgid "Select which comment status you like to display."
|
591 |
+
msgstr "مشخص کنید چه نوع نظراتی مایلید نمایش داده شود."
|
592 |
+
|
593 |
+
#: ../classes/column/post/featured-image.php:14
|
594 |
+
msgid "Featured Image"
|
595 |
+
msgstr "تصویر شاخص"
|
596 |
+
|
597 |
+
#: ../classes/column/post/formats.php:14
|
598 |
+
msgid "Post Format"
|
599 |
+
msgstr "قالب نوشته"
|
600 |
+
|
601 |
+
#: ../classes/column/post/modified.php:14
|
602 |
+
msgid "Last modified"
|
603 |
+
msgstr "آخرین ویرایش"
|
604 |
+
|
605 |
+
#: ../classes/column/post/order.php:14
|
606 |
+
msgid "Page Order"
|
607 |
+
msgstr "ترتیب صفحه"
|
608 |
+
|
609 |
+
#: ../classes/column/post/page-template.php:12
|
610 |
+
msgid "Page Template"
|
611 |
+
msgstr "قالب صفحه"
|
612 |
+
|
613 |
+
#: ../classes/column/post/parent.php:12
|
614 |
+
msgid "Parent"
|
615 |
+
msgstr "مادر"
|
616 |
+
|
617 |
+
#: ../classes/column/post/permalink.php:12
|
618 |
+
msgid "Permalink"
|
619 |
+
msgstr "پیوندیکتا"
|
620 |
+
|
621 |
+
#: ../classes/column/post/ping-status.php:14
|
622 |
+
msgid "Ping status"
|
623 |
+
msgstr "وضعیت پینگ"
|
624 |
+
|
625 |
+
#: ../classes/column/post/roles.php:14
|
626 |
+
msgid "Roles"
|
627 |
+
msgstr "نقش ها"
|
628 |
+
|
629 |
+
#: ../classes/column/post/slug.php:12
|
630 |
+
msgid "Slug"
|
631 |
+
msgstr "نامک"
|
632 |
+
|
633 |
+
#: ../classes/column/post/status.php:14
|
634 |
+
msgid "Status"
|
635 |
+
msgstr "وضعیت"
|
636 |
+
|
637 |
+
#: ../classes/column/post/status.php:32
|
638 |
+
msgid "Published"
|
639 |
+
msgstr "منتشرشده"
|
640 |
+
|
641 |
+
#: ../classes/column/post/status.php:33
|
642 |
+
msgid "Draft"
|
643 |
+
msgstr "پیش نویس"
|
644 |
+
|
645 |
+
#: ../classes/column/post/status.php:34
|
646 |
+
msgid "Scheduled"
|
647 |
+
msgstr "زمانبندی شده"
|
648 |
+
|
649 |
+
#: ../classes/column/post/status.php:35
|
650 |
+
msgid "Private"
|
651 |
+
msgstr "خصوصی"
|
652 |
+
|
653 |
+
#: ../classes/column/post/status.php:36
|
654 |
+
msgid "Pending Review"
|
655 |
+
msgstr "منتظر بازبینی"
|
656 |
+
|
657 |
+
#: ../classes/column/post/status.php:37
|
658 |
+
msgid "Auto Draft"
|
659 |
+
msgstr "پیش نویس خودکار"
|
660 |
+
|
661 |
+
#: ../classes/column/post/sticky.php:14
|
662 |
+
msgid "Sticky"
|
663 |
+
msgstr "سنجاق شده"
|
664 |
+
|
665 |
+
#: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
|
666 |
+
msgid "Taxonomy"
|
667 |
+
msgstr "طبقه بندی"
|
668 |
+
|
669 |
+
#: ../classes/column/user/comment-count.php:14
|
670 |
+
msgid "Comment Count"
|
671 |
+
msgstr "تعداد کامنت"
|
672 |
+
|
673 |
+
#: ../classes/column/user/first-name.php:14
|
674 |
+
msgid "First name"
|
675 |
+
msgstr "نام"
|
676 |
+
|
677 |
+
#: ../classes/column/user/last-name.php:14
|
678 |
+
msgid "Last name"
|
679 |
+
msgstr "نام خانوادگی"
|
680 |
+
|
681 |
+
#: ../classes/column/user/post-count.php:14
|
682 |
+
msgid "Post Count"
|
683 |
+
msgstr "تعداد نوشته"
|
684 |
+
|
685 |
+
#: ../classes/column/user/post-count.php:99
|
686 |
+
msgid "Post Type"
|
687 |
+
msgstr "نوع نوشته"
|
688 |
+
|
689 |
+
#: ../classes/column/user/registered.php:14
|
690 |
+
msgid "Registered"
|
691 |
+
msgstr "ثبت نام شده"
|
692 |
+
|
693 |
+
#: ../classes/column/user/url.php:14
|
694 |
+
msgid "Url"
|
695 |
+
msgstr "آدرس"
|
696 |
+
|
697 |
+
#: ../classes/settings.php:97
|
698 |
+
msgid "Add-on successfully activated."
|
699 |
+
msgstr "افزونه با موفقیت فعال شد"
|
700 |
+
|
701 |
+
#: ../classes/settings.php:100
|
702 |
+
msgid "Add-on successfully deactivated."
|
703 |
+
msgstr "افزونه با موفقیت غیرفعال شد"
|
704 |
+
|
705 |
+
#: ../classes/settings.php:155
|
706 |
+
msgid "Admin Columns Settings"
|
707 |
+
msgstr "تنظیمات ستون ها"
|
708 |
+
|
709 |
+
#: ../classes/settings.php:155 ../classes/settings.php:619
|
710 |
+
#: ../classes/upgrade.php:83
|
711 |
+
msgid "Admin Columns"
|
712 |
+
msgstr "تنظیمات ستون ها"
|
713 |
+
|
714 |
+
#: ../classes/settings.php:203
|
715 |
+
#, php-format
|
716 |
+
msgid "%s column is already present and can not be duplicated."
|
717 |
+
msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
|
718 |
+
|
719 |
+
#: ../classes/settings.php:256
|
720 |
+
msgid "Default settings succesfully restored."
|
721 |
+
msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
|
722 |
+
|
723 |
+
#: ../classes/settings.php:273
|
724 |
+
msgid "Overview"
|
725 |
+
msgstr "مرورکلی"
|
726 |
+
|
727 |
+
#: ../classes/settings.php:276
|
728 |
+
msgid ""
|
729 |
+
"This plugin is for adding and removing additional columns to the "
|
730 |
+
"administration screens for post(types), pages, media library, comments, "
|
731 |
+
"links and users. Change the column's label and reorder them."
|
732 |
+
msgstr ""
|
733 |
+
"این افزونه برای ایجاد ستون های دلخواه و یا حذف آنها و مرتب سازی و همچنین "
|
734 |
+
"تغییر نام آنها در نوشته ها و برگه ها ، رسانه ها ، نظرات، لینک ها و کاربران "
|
735 |
+
"طراحی شده است."
|
736 |
+
|
737 |
+
#: ../classes/settings.php:279
|
738 |
+
msgid "Basics"
|
739 |
+
msgstr "مقدمات"
|
740 |
+
|
741 |
+
#: ../classes/settings.php:281
|
742 |
+
msgid "Change order"
|
743 |
+
msgstr "تغییر ترتیب"
|
744 |
+
|
745 |
+
#: ../classes/settings.php:282
|
746 |
+
msgid ""
|
747 |
+
"By dragging the columns you can change the order which they will appear in."
|
748 |
+
msgstr "با گرفتن و کشیدن ستون ها می توانید ترتیب نمایش آنها را تغییر دهید."
|
749 |
+
|
750 |
+
#: ../classes/settings.php:283
|
751 |
+
msgid "Change label"
|
752 |
+
msgstr "تغییر برچسب"
|
753 |
+
|
754 |
+
#: ../classes/settings.php:284
|
755 |
+
msgid ""
|
756 |
+
"By clicking on the triangle you will see the column options. Here you can "
|
757 |
+
"change each label of the columns heading."
|
758 |
+
msgstr ""
|
759 |
+
"با کلیک روی مثلث می توانید تنظیمات ستون را مشاهده فرمایید. در اینجا می "
|
760 |
+
"توانید برچسب هر ستون را تغییر دهید."
|
761 |
+
|
762 |
+
#: ../classes/settings.php:285
|
763 |
+
msgid "Change column width"
|
764 |
+
msgstr "تغییر عرض ستون"
|
765 |
+
|
766 |
+
#: ../classes/settings.php:286
|
767 |
+
msgid ""
|
768 |
+
"By clicking on the triangle you will see the column options. By using the "
|
769 |
+
"draggable slider you can set the width of the columns in percentages."
|
770 |
+
msgstr ""
|
771 |
+
"با کلیک روی مثلث تنظیمات ستون را مشاهده خواهید کرد. به کمک جابجایی اسلایدر "
|
772 |
+
"می توانید عرض هر ستون را به صورت درصد مشخص کنید."
|
773 |
+
|
774 |
+
#: ../classes/settings.php:292
|
775 |
+
msgid "'Custom Field' column"
|
776 |
+
msgstr "ستون 'زمینه دلخواه'"
|
777 |
+
|
778 |
+
#: ../classes/settings.php:293
|
779 |
+
msgid ""
|
780 |
+
"The custom field colum uses the custom fields from posts and users. There "
|
781 |
+
"are 10 types which you can set."
|
782 |
+
msgstr ""
|
783 |
+
"ستون زمینه دلخواه از زمینه های دلخواه نوشته ها و کاربران استفاده می کند. ده "
|
784 |
+
"نوع مختلف برای تنظیم وجود دارد."
|
785 |
+
|
786 |
+
#: ../classes/settings.php:295
|
787 |
+
msgid ""
|
788 |
+
"Value: Can be either a string or array. Arrays will be flattened and values "
|
789 |
+
"are seperated by a ',' comma."
|
790 |
+
msgstr ""
|
791 |
+
"مقدار:می تواند متن یا آرایه باشد. آرایه ها به متن تبدیل خواهند شد و با ',' "
|
792 |
+
"جدا خواهند شد."
|
793 |
+
|
794 |
+
#: ../classes/settings.php:296
|
795 |
+
msgid ""
|
796 |
+
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
797 |
+
"comma )."
|
798 |
+
msgstr ""
|
799 |
+
"مثدار: باید شامل یک آدرس (url) تصویر باشد یا شناسه هایی (ID) از پیوست ها که "
|
800 |
+
"با ',' جدا شده اند."
|
801 |
+
|
802 |
+
#: ../classes/settings.php:297
|
803 |
+
msgid "Value: This will show the first 20 words of the Post content."
|
804 |
+
msgstr "مقدار: بیست کلمه ابتدای متن را نشان خواهد داد."
|
805 |
+
|
806 |
+
#: ../classes/settings.php:298
|
807 |
+
msgid ""
|
808 |
+
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
809 |
+
msgstr "مثدار: باید آرایه باشد. هر آرایه ای (چند بعدی) متنی خواهد شد."
|
810 |
+
|
811 |
+
#: ../classes/settings.php:299
|
812 |
+
msgid ""
|
813 |
+
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
814 |
+
"for sorting, so you can sort your posts on numeric (custom field) values."
|
815 |
+
msgstr ""
|
816 |
+
"مقدار: فقط عددی. <br/> اگر از افزونه 'مرتب سازی' استفاده کنید، از این مقدار "
|
817 |
+
"برای مرتب سازی استفاده خواهد شد. می توانید نوشته هایتان را یک مقدار عددی "
|
818 |
+
"(زمینه دلخواه) مرتب سازی کنید."
|
819 |
+
|
820 |
+
#: ../classes/settings.php:300
|
821 |
+
#, php-format
|
822 |
+
msgid ""
|
823 |
+
"Value: Can be unix time stamp or a date format as described in the <a "
|
824 |
+
"href='%s'>Codex</a>. You can change the outputted date format at the <a "
|
825 |
+
"href='%s'>general settings</a> page."
|
826 |
+
msgstr ""
|
827 |
+
"مقدار: باید زمان تاریخ سیستم یونیکس یا تاریخ قالب بندی شده باشد که در <a "
|
828 |
+
"href='%s'>راهنما</a> شرح داده شده. می توانید خروجی تاریخ را از <a "
|
829 |
+
"href='%s'>تنظیمات همگانی</a> تغییر دهید."
|
830 |
+
|
831 |
+
#: ../classes/settings.php:301
|
832 |
+
msgid "Post Titles"
|
833 |
+
msgstr "تیترهای نوشته"
|
834 |
+
|
835 |
+
#: ../classes/settings.php:301
|
836 |
+
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
837 |
+
msgstr ""
|
838 |
+
"مقدار: می تواند شامل یک یا چند شناسه (ID) نوشته ها (جدا شده با ',') باشد."
|
839 |
+
|
840 |
+
#: ../classes/settings.php:302
|
841 |
+
msgid "Usernames"
|
842 |
+
msgstr "نام های کاربری"
|
843 |
+
|
844 |
+
#: ../classes/settings.php:302
|
845 |
+
msgid "Value: can be one or more User ID's (seperated by ',')."
|
846 |
+
msgstr "می تواند شامل یک یا چند شناسه (ID) کاربری (جداشده با ',') باشد."
|
847 |
+
|
848 |
+
#: ../classes/settings.php:303
|
849 |
+
msgid "Checkmark"
|
850 |
+
msgstr "تیک"
|
851 |
+
|
852 |
+
#: ../classes/settings.php:303
|
853 |
+
msgid "Value: should be a 1 (one) or 0 (zero)."
|
854 |
+
msgstr "مقدار: می تواند یک یا صفر باشد"
|
855 |
+
|
856 |
+
#: ../classes/settings.php:304
|
857 |
+
msgid "Value: hex value color, such as #808080."
|
858 |
+
msgstr "مقدار: می تواند کد هکس رنگ مانند #808080 باشد"
|
859 |
+
|
860 |
+
#: ../classes/settings.php:305
|
861 |
+
msgid ""
|
862 |
+
"Value: Can be either a string or array. This will display a count of the "
|
863 |
+
"number of times the meta key is used by the item."
|
864 |
+
msgstr ""
|
865 |
+
"مقدار: می تواند متن یا آرایه باشد. تعداد دفعات استفاده از meta key های آیتم "
|
866 |
+
"را نمایش می دهد."
|
867 |
+
|
868 |
+
#: ../classes/settings.php:399
|
869 |
+
msgid "Welcome to Admin Columns"
|
870 |
+
msgstr "به مدیریت ستون ها خوش آمدید"
|
871 |
+
|
872 |
+
#: ../classes/settings.php:402
|
873 |
+
msgid "Thank you for updating to the latest version!"
|
874 |
+
msgstr "از اینکه به نسخه نهایی به روزرسانی کردید متشکریم!"
|
875 |
+
|
876 |
+
#: ../classes/settings.php:403
|
877 |
+
msgid ""
|
878 |
+
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
879 |
+
"like it."
|
880 |
+
msgstr ""
|
881 |
+
"مدیریت ستون ها بهینه تر و لذت بخش تر از قبل شده است. امیدواریم شما بپسندید."
|
882 |
+
|
883 |
+
#: ../classes/settings.php:408
|
884 |
+
msgid "What’s New"
|
885 |
+
msgstr "چه چیز جدید است"
|
886 |
+
|
887 |
+
#: ../classes/settings.php:409
|
888 |
+
msgid "Changelog"
|
889 |
+
msgstr "تغییرات"
|
890 |
+
|
891 |
+
#: ../classes/settings.php:414
|
892 |
+
msgid "Addons"
|
893 |
+
msgstr "افزونه ها"
|
894 |
+
|
895 |
+
#: ../classes/settings.php:416
|
896 |
+
msgid ""
|
897 |
+
"Addons are now activated by downloading and installing individual plugins. "
|
898 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
899 |
+
"each Add-on will continue to receive updates in the usual way."
|
900 |
+
msgstr ""
|
901 |
+
"افزودنی ها اکنون با دانلود و نصب افزونه هایی جداگانه فعال می شوند. اگرچه این "
|
902 |
+
"افزدونه ها در سایت wordpress.org قرارنگرفته اند ولی هر افزونه به روزرسانی ها "
|
903 |
+
"را به صورت معمول دریافت خواهد نمود."
|
904 |
+
|
905 |
+
#: ../classes/settings.php:419
|
906 |
+
msgid ""
|
907 |
+
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
908 |
+
msgstr "این سایت از افزودنی مرتب سازی استفاده می کند که لازم است دانلود شود."
|
909 |
+
|
910 |
+
#: ../classes/settings.php:422
|
911 |
+
msgid "Addons are seperate plugins which need to be downloaded."
|
912 |
+
msgstr "افزونه ها درواقع پلاگین های جداگانه می باشند که لازم است دانلود شوند."
|
913 |
+
|
914 |
+
#: ../classes/settings.php:422
|
915 |
+
msgid "Download your Addons"
|
916 |
+
msgstr "دانلود افزودنی ها"
|
917 |
+
|
918 |
+
#: ../classes/settings.php:428
|
919 |
+
msgid "This website does not use add-ons"
|
920 |
+
msgstr "این سایت از افزودنی ها استفاده نمی کند"
|
921 |
+
|
922 |
+
#: ../classes/settings.php:428
|
923 |
+
msgid "See our website for Admin Columns Pro."
|
924 |
+
msgstr "برای دیدن نسخه حرفه ای ستون های مدیریت به سایت ما مراجعه کنید."
|
925 |
+
|
926 |
+
#: ../classes/settings.php:435
|
927 |
+
msgid "Important"
|
928 |
+
msgstr "مهم"
|
929 |
+
|
930 |
+
#: ../classes/settings.php:437
|
931 |
+
msgid "Database Changes"
|
932 |
+
msgstr "تغییرات بانک اطلاعاتی"
|
933 |
+
|
934 |
+
#: ../classes/settings.php:438
|
935 |
+
msgid ""
|
936 |
+
"The database has been changed between versions 1 and 2. But we made sure you "
|
937 |
+
"can still roll back to version 1x without any issues."
|
938 |
+
msgstr ""
|
939 |
+
"بانک اطلاعاتی بین نسخه های 1 و 2 تغییراتی داشته است ولی اطمینان داشته باشید "
|
940 |
+
"هر زمان می توانید به نسخه 1 برگردید."
|
941 |
+
|
942 |
+
#: ../classes/settings.php:441
|
943 |
+
msgid "Make sure you backup your database and then click"
|
944 |
+
msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید و روی "
|
945 |
+
|
946 |
+
#: ../classes/settings.php:441 ../classes/upgrade.php:91
|
947 |
+
msgid "Upgrade Database"
|
948 |
+
msgstr "به روز رسانی بانک اطلاعاتی کلیک کنید"
|
949 |
+
|
950 |
+
#: ../classes/settings.php:444
|
951 |
+
msgid "Potential Issues"
|
952 |
+
msgstr "مشکلات بالقوه"
|
953 |
+
|
954 |
+
#: ../classes/settings.php:445
|
955 |
+
msgid ""
|
956 |
+
"Do to the sizable refactoring the code, surounding Addons and action/"
|
957 |
+
"filters, your website may not operate correctly. It is important that you "
|
958 |
+
"read the full"
|
959 |
+
msgstr ""
|
960 |
+
"به دلیل تغییرات در کدهای برنامه نویسی این امکان وجود دارد که بعضی افزونه های "
|
961 |
+
"شما به خوبی کار نکند. توصیه می شود راهنما انتقال از "
|
962 |
+
|
963 |
+
#: ../classes/settings.php:445
|
964 |
+
msgid "Migrating from v1 to v2"
|
965 |
+
msgstr "نسخه 1 به 2 را به صورت کامل مطالعه فرمایید"
|
966 |
+
|
967 |
+
#: ../classes/settings.php:445
|
968 |
+
msgid "guide to view the full list of changes."
|
969 |
+
msgstr "راهنما برای دیدن لیست تمام تغییرات."
|
970 |
+
|
971 |
+
#: ../classes/settings.php:445
|
972 |
+
#, php-format
|
973 |
+
msgid ""
|
974 |
+
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
975 |
+
"can fix it in the next release."
|
976 |
+
msgstr ""
|
977 |
+
"زمانی که مشکلی مشاهده کردید لطفا آنرا به ما <a href=\"%s\">گزارش کنید</a>تا "
|
978 |
+
"در نسخه بعدی تصحیح کنیم."
|
979 |
+
|
980 |
+
#: ../classes/settings.php:448
|
981 |
+
msgid "Important!"
|
982 |
+
msgstr "مهم !"
|
983 |
+
|
984 |
+
#: ../classes/settings.php:448
|
985 |
+
msgid ""
|
986 |
+
"If you updated the Admin Columns plugin without prior knowledge of such "
|
987 |
+
"changes, Please roll back to the latest"
|
988 |
+
msgstr ""
|
989 |
+
"اگر بدون آگاهی از تغییرات رخ داده افزونه را به روز رسانی کرده اید به آخرین "
|
990 |
+
|
991 |
+
#: ../classes/settings.php:448
|
992 |
+
msgid "version 1"
|
993 |
+
msgstr "نسخه 1"
|
994 |
+
|
995 |
+
#: ../classes/settings.php:448
|
996 |
+
msgid "of this plugin."
|
997 |
+
msgstr "از افزونه برگردید."
|
998 |
+
|
999 |
+
#: ../classes/settings.php:454
|
1000 |
+
msgid "Changelog for"
|
1001 |
+
msgstr "تغییرات برای"
|
1002 |
+
|
1003 |
+
#: ../classes/settings.php:469
|
1004 |
+
msgid "Learn more"
|
1005 |
+
msgstr "آموزش بیشتر"
|
1006 |
+
|
1007 |
+
#: ../classes/settings.php:479
|
1008 |
+
msgid "Start using Admin Columns"
|
1009 |
+
msgstr "شروع استفاده از ستون های مدیریت"
|
1010 |
+
|
1011 |
+
#: ../classes/settings.php:522
|
1012 |
+
msgid "General Settings"
|
1013 |
+
msgstr "تنظیمات عمومی"
|
1014 |
+
|
1015 |
+
#: ../classes/settings.php:523
|
1016 |
+
msgid "Customize your Admin Columns settings."
|
1017 |
+
msgstr "دلخواه سازی تنظیمات افزونه"
|
1018 |
+
|
1019 |
+
#: ../classes/settings.php:546
|
1020 |
+
msgid ""
|
1021 |
+
"Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
|
1022 |
+
msgstr ""
|
1023 |
+
"نمایش دکمه \"ویرایش ستون ها\" در محیط مدیریت. پیش فرض <code>خاموش</code است."
|
1024 |
+
|
1025 |
+
#: ../classes/settings.php:553 ../classes/settings.php:682
|
1026 |
+
msgid "Save"
|
1027 |
+
msgstr "ذخیره"
|
1028 |
+
|
1029 |
+
#: ../classes/settings.php:593
|
1030 |
+
msgid "Restore Settings"
|
1031 |
+
msgstr "بازنشانی تنظیمات"
|
1032 |
+
|
1033 |
+
#: ../classes/settings.php:594
|
1034 |
+
msgid "This will delete all column settings and restore the default settings."
|
1035 |
+
msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
|
1036 |
+
|
1037 |
+
#: ../classes/settings.php:600
|
1038 |
+
msgid "Restore default settings"
|
1039 |
+
msgstr "بازسازی تنظیمات پیش فرض"
|
1040 |
+
|
1041 |
+
#: ../classes/settings.php:600
|
1042 |
+
msgid ""
|
1043 |
+
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
1044 |
+
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
1045 |
+
msgstr ""
|
1046 |
+
"اخطار! تمام ستون های مدیریت ذخیره شده حذف خواهند شد. این کار بازگشت پذیر "
|
1047 |
+
"نیست!"
|
1048 |
+
|
1049 |
+
#: ../classes/settings.php:620 ../codepress-admin-columns.php:354
|
1050 |
+
msgid "Settings"
|
1051 |
+
msgstr "تنظیمات"
|
1052 |
+
|
1053 |
+
#: ../classes/settings.php:621
|
1054 |
+
msgid "Add-ons"
|
1055 |
+
msgstr "افزودنی ها"
|
1056 |
+
|
1057 |
+
#: ../classes/settings.php:647
|
1058 |
+
msgid "Posttypes"
|
1059 |
+
msgstr "نوع نوشته ها"
|
1060 |
+
|
1061 |
+
#: ../classes/settings.php:648
|
1062 |
+
msgid "Others"
|
1063 |
+
msgstr "دیگر"
|
1064 |
+
|
1065 |
+
#: ../classes/settings.php:649
|
1066 |
+
msgid "Taxonomies"
|
1067 |
+
msgstr "طبقه بندی ها"
|
1068 |
+
|
1069 |
+
#: ../classes/settings.php:668
|
1070 |
+
#, php-format
|
1071 |
+
msgid ""
|
1072 |
+
"The columns for <strong>%s</strong> are set up via PHP and can therefore not "
|
1073 |
+
"be edited in the admin panel."
|
1074 |
+
msgstr ""
|
1075 |
+
"ستون های برای <strong>%s</strong> به کمک PHP تنظیم شده اند و به همین دلیل از "
|
1076 |
+
"طریق بخش مدیریت قابل ویرایش نیستند."
|
1077 |
+
|
1078 |
+
#: ../classes/settings.php:678
|
1079 |
+
msgid "Store settings"
|
1080 |
+
msgstr "ذخیره تنظیمات"
|
1081 |
+
|
1082 |
+
#: ../classes/settings.php:682
|
1083 |
+
msgid "Update"
|
1084 |
+
msgstr "به روز رسانی"
|
1085 |
+
|
1086 |
+
#: ../classes/settings.php:686
|
1087 |
+
#, php-format
|
1088 |
+
msgid ""
|
1089 |
+
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
1090 |
+
"\\' to delete, \\'Cancel\\' to stop"
|
1091 |
+
msgstr "اخطار! داده های %s ستون حذف خواهد شد. این کار بازگشت ناپذیر است."
|
1092 |
+
|
1093 |
+
#: ../classes/settings.php:687
|
1094 |
+
msgid "columns"
|
1095 |
+
msgstr "ستون ها"
|
1096 |
+
|
1097 |
+
#: ../classes/settings.php:701
|
1098 |
+
msgid "Get Admin Columns Pro"
|
1099 |
+
msgstr "خرید نسخه حرفه ای"
|
1100 |
+
|
1101 |
+
#: ../classes/settings.php:705
|
1102 |
+
msgid "Add Sorting"
|
1103 |
+
msgstr "اضافه کردن مرتب سازی"
|
1104 |
+
|
1105 |
+
#: ../classes/settings.php:706
|
1106 |
+
msgid "Add Filtering"
|
1107 |
+
msgstr "اضافه کردن فیلترسازی"
|
1108 |
+
|
1109 |
+
#: ../classes/settings.php:707
|
1110 |
+
msgid "Add Import/Export"
|
1111 |
+
msgstr "اضافه کردن وارد/ خارج کردن"
|
1112 |
+
|
1113 |
+
#: ../classes/settings.php:708
|
1114 |
+
msgid "Add Direct Editing"
|
1115 |
+
msgstr "اضافه کردن ویرایش مستقیم"
|
1116 |
+
|
1117 |
+
#: ../classes/settings.php:711
|
1118 |
+
#, php-format
|
1119 |
+
msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
|
1120 |
+
msgstr "برای اطلاعات بیشتر <a href=\"%s\">نسخه حرفه ای</a> را بررسی کنید."
|
1121 |
+
|
1122 |
+
#: ../classes/settings.php:742
|
1123 |
+
msgid "Support"
|
1124 |
+
msgstr "پشتیبانی"
|
1125 |
+
|
1126 |
+
#: ../classes/settings.php:745
|
1127 |
+
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
1128 |
+
msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
|
1129 |
+
|
1130 |
+
#: ../classes/settings.php:748
|
1131 |
+
#, php-format
|
1132 |
+
msgid ""
|
1133 |
+
"For full documentation, bug reports, feature suggestions and other tips <a "
|
1134 |
+
"href='%s'>visit the Admin Columns website</a>"
|
1135 |
+
msgstr ""
|
1136 |
+
"برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</"
|
1137 |
+
"a> مراجعه فرمایید."
|
1138 |
+
|
1139 |
+
#: ../classes/settings.php:777
|
1140 |
+
msgid "Drag and drop to reorder"
|
1141 |
+
msgstr "برای مرتب سازی بگیرید و بکشید"
|
1142 |
+
|
1143 |
+
#: ../classes/settings.php:780
|
1144 |
+
msgid "Add Column"
|
1145 |
+
msgstr "ستون جدید"
|
1146 |
+
|
1147 |
+
#: ../classes/settings.php:853
|
1148 |
+
msgid "Active"
|
1149 |
+
msgstr "فعال"
|
1150 |
+
|
1151 |
+
#: ../classes/settings.php:854
|
1152 |
+
msgid "Deactivate"
|
1153 |
+
msgstr "غیرفعال"
|
1154 |
+
|
1155 |
+
#: ../classes/settings.php:861
|
1156 |
+
msgid "Installed"
|
1157 |
+
msgstr "نصب شده"
|
1158 |
+
|
1159 |
+
#: ../classes/settings.php:862
|
1160 |
+
msgid "Activate"
|
1161 |
+
msgstr "فعال"
|
1162 |
+
|
1163 |
+
#: ../classes/settings.php:876
|
1164 |
+
msgid "Download & Install"
|
1165 |
+
msgstr "دانلود و نصب"
|
1166 |
+
|
1167 |
+
#: ../classes/settings.php:881
|
1168 |
+
msgid "Get this add-on"
|
1169 |
+
msgstr "دریافت این افزودنی"
|
1170 |
+
|
1171 |
+
#: ../classes/storage_model.php:207
|
1172 |
+
msgid "settings succesfully restored."
|
1173 |
+
msgstr "تنظیمات با موفقیت بازنشانی شدند."
|
1174 |
+
|
1175 |
+
#: ../classes/storage_model.php:222
|
1176 |
+
msgid "No columns settings available."
|
1177 |
+
msgstr "هیچ تنظیمی برای ستونها موجود نیست."
|
1178 |
+
|
1179 |
+
#: ../classes/storage_model.php:243
|
1180 |
+
#, php-format
|
1181 |
+
msgid "You are trying to store the same settings for %s."
|
1182 |
+
msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
|
1183 |
+
|
1184 |
+
#: ../classes/storage_model.php:247
|
1185 |
+
#, php-format
|
1186 |
+
msgid "Settings for %s updated succesfully."
|
1187 |
+
msgstr "تنظیمات برای %s با موفقیت به روز شد."
|
1188 |
+
|
1189 |
+
#: ../classes/storage_model/comment.php:13
|
1190 |
+
msgid "Comments"
|
1191 |
+
msgstr "نظرات"
|
1192 |
+
|
1193 |
+
#: ../classes/storage_model/link.php:13
|
1194 |
+
msgid "Links"
|
1195 |
+
msgstr "لینک ها"
|
1196 |
+
|
1197 |
+
#: ../classes/storage_model/user.php:13
|
1198 |
+
msgid "Users"
|
1199 |
+
msgstr "کاربران"
|
1200 |
+
|
1201 |
+
#: ../classes/upgrade.php:43
|
1202 |
+
msgid "Upgrade"
|
1203 |
+
msgstr "به روزرسانی"
|
1204 |
+
|
1205 |
+
#: ../classes/upgrade.php:84
|
1206 |
+
msgid "requires a database upgrade"
|
1207 |
+
msgstr "نیاز به به روزرسانی بانک اطلاعاتی دارد"
|
1208 |
+
|
1209 |
+
#: ../classes/upgrade.php:87
|
1210 |
+
msgid "why?"
|
1211 |
+
msgstr "چرا؟"
|
1212 |
+
|
1213 |
+
#: ../classes/upgrade.php:88
|
1214 |
+
msgid "Please"
|
1215 |
+
msgstr "لطفا"
|
1216 |
+
|
1217 |
+
#: ../classes/upgrade.php:89
|
1218 |
+
msgid "backup your database"
|
1219 |
+
msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید"
|
1220 |
+
|
1221 |
+
#: ../classes/upgrade.php:90
|
1222 |
+
msgid "then click"
|
1223 |
+
msgstr "سپس روی "
|
1224 |
+
|
1225 |
+
#: ../classes/upgrade.php:298
|
1226 |
+
msgid "Migrating Column Settings"
|
1227 |
+
msgstr "همگام سازی تنظیمات ستون ها کلیک کنید"
|
1228 |
+
|
1229 |
+
#: ../classes/upgrade.php:334
|
1230 |
+
msgid "No Upgrade Required"
|
1231 |
+
msgstr "به روزرسانی لازم نیست"
|
1232 |
+
|
1233 |
+
#: ../classes/upgrade.php:335
|
1234 |
+
msgid "Return to welcome screen."
|
1235 |
+
msgstr "بازگشت به صفحه خوش آمد گویی."
|
1236 |
+
|
1237 |
+
#: ../classes/upgrade.php:353
|
1238 |
+
msgid "Upgrade Complete!"
|
1239 |
+
msgstr "به روز رسانی تکمیل شد!"
|
1240 |
+
|
1241 |
+
#: ../classes/upgrade.php:353
|
1242 |
+
msgid "Return to settings."
|
1243 |
+
msgstr "بازگشت به تنظیمات."
|
1244 |
+
|
1245 |
+
#: ../classes/upgrade.php:354
|
1246 |
+
msgid "Error"
|
1247 |
+
msgstr "خطا"
|
1248 |
+
|
1249 |
+
#: ../classes/upgrade.php:355
|
1250 |
+
msgid ""
|
1251 |
+
"Sorry. Something went wrong during the upgrade process. Please report this "
|
1252 |
+
"on the support forum."
|
1253 |
+
msgstr ""
|
1254 |
+
"متاسفبم. به نظر می آید خطایی در فرایند به روز رسانی رخ داده است. لطفا این "
|
1255 |
+
"مشکل را فروم پشتیبانی ما مطرح کنید."
|
1256 |
+
|
1257 |
+
#: ../codepress-admin-columns.php:439
|
1258 |
+
msgid "Edit columns"
|
1259 |
+
msgstr "ویرایش ستون ها"
|
languages/cpac.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Codepress Admin Columns\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"Language: en_GB\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.6.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
@@ -42,123 +42,123 @@ msgid ""
|
|
42 |
"inline editing."
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../classes/column.php:
|
46 |
msgid "Thumbnail"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../classes/column.php:
|
50 |
msgid "Medium"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../classes/column.php:
|
54 |
msgid "Large"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../classes/column.php:
|
58 |
msgid "Full"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../classes/column.php:
|
62 |
msgid "Date Format"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../classes/column.php:
|
66 |
msgid "This will determine how the date will be displayed."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../classes/column.php:
|
70 |
msgid "Example:"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../classes/column.php:
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
77 |
"date format here</a>."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../classes/column.php:
|
81 |
msgid "Documentation on date and time formatting."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../classes/column.php:
|
85 |
msgid "Excerpt length"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../classes/column.php:
|
89 |
msgid "Number of words"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../classes/column.php:
|
93 |
msgid "Preview size"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../classes/column.php:
|
97 |
msgid "Custom"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../classes/column.php:
|
101 |
msgid "width"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../classes/column.php:
|
105 |
msgid "height"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../classes/column.php:
|
109 |
msgid "Before"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ../classes/column.php:
|
113 |
msgid "This text will appear before the custom field value."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../classes/column.php:
|
117 |
msgid "After"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../classes/column.php:
|
121 |
msgid "This text will appear after the custom field value."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../classes/column.php:
|
125 |
#: ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
|
126 |
#: ../classes/column/user/actions.php:69
|
127 |
msgid "Edit"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../classes/column.php:
|
131 |
#: ../classes/column/user/actions.php:77
|
132 |
msgid "Remove"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../classes/column.php:
|
136 |
msgid "Type"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../classes/column.php:
|
140 |
msgid "Choose a column type."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../classes/column.php:
|
144 |
#: ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19
|
145 |
#: ../classes/column/post/ID.php:19
|
146 |
msgid "ID"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../classes/column.php:
|
150 |
msgid "Label"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../classes/column.php:
|
154 |
msgid "This is the name which will appear as the column header."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../classes/column.php:
|
158 |
msgid "Width"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../classes/column.php:
|
162 |
msgid "default"
|
163 |
msgstr ""
|
164 |
|
@@ -167,7 +167,8 @@ msgid "ACF Field"
|
|
167 |
msgstr ""
|
168 |
|
169 |
#: ../classes/column/acf-placeholder.php:32
|
170 |
-
msgid "
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
#: ../classes/column/acf-placeholder.php:35
|
@@ -224,7 +225,7 @@ msgid "Approve"
|
|
224 |
msgstr ""
|
225 |
|
226 |
#: ../classes/column/comment/actions.php:89
|
227 |
-
#: ../classes/column/post/actions.php:39 ../classes/settings.php:
|
228 |
msgid "Restore"
|
229 |
msgstr ""
|
230 |
|
@@ -282,13 +283,13 @@ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
|
|
282 |
msgstr ""
|
283 |
|
284 |
#: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:70
|
285 |
-
#: ../classes/settings.php:
|
286 |
msgid "Date"
|
287 |
msgstr ""
|
288 |
|
289 |
#: ../classes/column/comment/excerpt.php:19
|
290 |
#: ../classes/column/custom-field.php:71 ../classes/column/post/excerpt.php:19
|
291 |
-
#: ../classes/settings.php:
|
292 |
msgid "Excerpt"
|
293 |
msgstr ""
|
294 |
|
@@ -302,12 +303,12 @@ msgid "Word count"
|
|
302 |
msgstr ""
|
303 |
|
304 |
#: ../classes/column/custom-field.php:23
|
305 |
-
#: ../classes/column/custom-field.php:
|
306 |
msgid "Custom Field"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../classes/column/custom-field.php:66 ../classes/settings.php:
|
310 |
-
#: ../classes/storage_model.php:
|
311 |
msgid "Default"
|
312 |
msgstr ""
|
313 |
|
@@ -315,16 +316,16 @@ msgstr ""
|
|
315 |
msgid "Checkmark (true/false)"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../classes/column/custom-field.php:68 ../classes/settings.php:
|
319 |
msgid "Color"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../classes/column/custom-field.php:69 ../classes/settings.php:
|
323 |
msgid "Counter"
|
324 |
msgstr ""
|
325 |
|
326 |
#: ../classes/column/custom-field.php:72 ../classes/column/link/image.php:19
|
327 |
-
#: ../classes/settings.php:
|
328 |
msgid "Image"
|
329 |
msgstr ""
|
330 |
|
@@ -332,11 +333,11 @@ msgstr ""
|
|
332 |
msgid "Media Library"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../classes/column/custom-field.php:74 ../classes/settings.php:
|
336 |
msgid "Multiple Values"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../classes/column/custom-field.php:75 ../classes/settings.php:
|
340 |
msgid "Numeric"
|
341 |
msgstr ""
|
342 |
|
@@ -348,19 +349,19 @@ msgstr ""
|
|
348 |
msgid "Username (User ID's)"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../classes/column/custom-field.php:
|
352 |
msgid "Select your custom field."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../classes/column/custom-field.php:
|
356 |
msgid "No custom fields available."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../classes/column/custom-field.php:
|
360 |
msgid "Field Type"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../classes/column/custom-field.php:
|
364 |
msgid "This will determine how the value will be displayed."
|
365 |
msgstr ""
|
366 |
|
@@ -522,7 +523,7 @@ msgstr ""
|
|
522 |
msgid "View “%s”"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../classes/column/post/actions.php:50 ../classes/storage_model.php:
|
526 |
msgid "View"
|
527 |
msgstr ""
|
528 |
|
@@ -748,8 +749,8 @@ msgstr ""
|
|
748 |
msgid "Admin Columns Settings"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../classes/settings.php:155 ../classes/settings.php:
|
752 |
-
#: ../classes/upgrade.php:
|
753 |
msgid "Admin Columns"
|
754 |
msgstr ""
|
755 |
|
@@ -758,92 +759,92 @@ msgstr ""
|
|
758 |
msgid "%s column is already present and can not be duplicated."
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../classes/settings.php:
|
762 |
msgid "Default settings succesfully restored."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../classes/settings.php:
|
766 |
msgid "Overview"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../classes/settings.php:
|
770 |
msgid ""
|
771 |
"This plugin is for adding and removing additional columns to the "
|
772 |
"administration screens for post(types), pages, media library, comments, "
|
773 |
"links and users. Change the column's label and reorder them."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: ../classes/settings.php:
|
777 |
msgid "Basics"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../classes/settings.php:
|
781 |
msgid "Change order"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: ../classes/settings.php:
|
785 |
msgid ""
|
786 |
"By dragging the columns you can change the order which they will appear in."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: ../classes/settings.php:
|
790 |
msgid "Change label"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: ../classes/settings.php:
|
794 |
msgid ""
|
795 |
"By clicking on the triangle you will see the column options. Here you can "
|
796 |
"change each label of the columns heading."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../classes/settings.php:
|
800 |
msgid "Change column width"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../classes/settings.php:
|
804 |
msgid ""
|
805 |
"By clicking on the triangle you will see the column options. By using the "
|
806 |
"draggable slider you can set the width of the columns in percentages."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../classes/settings.php:
|
810 |
msgid "'Custom Field' column"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: ../classes/settings.php:
|
814 |
msgid ""
|
815 |
"The custom field colum uses the custom fields from posts and users. There "
|
816 |
"are 10 types which you can set."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../classes/settings.php:
|
820 |
msgid ""
|
821 |
"Value: Can be either a string or array. Arrays will be flattened and values "
|
822 |
"are seperated by a ',' comma."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: ../classes/settings.php:
|
826 |
msgid ""
|
827 |
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
828 |
"comma )."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../classes/settings.php:
|
832 |
msgid "Value: This will show the first 20 words of the Post content."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../classes/settings.php:
|
836 |
msgid ""
|
837 |
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../classes/settings.php:
|
841 |
msgid ""
|
842 |
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
843 |
"for sorting, so you can sort your posts on numeric (custom field) values."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../classes/settings.php:
|
847 |
#, php-format
|
848 |
msgid ""
|
849 |
"Value: Can be unix time stamp or a date format as described in the <a "
|
@@ -851,366 +852,334 @@ msgid ""
|
|
851 |
"href='%s'>general settings</a> page."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../classes/settings.php:
|
855 |
msgid "Post Titles"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../classes/settings.php:
|
859 |
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../classes/settings.php:
|
863 |
msgid "Usernames"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../classes/settings.php:
|
867 |
msgid "Value: can be one or more User ID's (seperated by ',')."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../classes/settings.php:
|
871 |
msgid "Checkmark"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../classes/settings.php:
|
875 |
msgid "Value: should be a 1 (one) or 0 (zero)."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../classes/settings.php:
|
879 |
msgid "Value: hex value color, such as #808080."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../classes/settings.php:
|
883 |
msgid ""
|
884 |
"Value: Can be either a string or array. This will display a count of the "
|
885 |
"number of times the meta key is used by the item."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../classes/settings.php:
|
889 |
msgid "Welcome to Admin Columns"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: ../classes/settings.php:
|
893 |
msgid "Thank you for updating to the latest version!"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: ../classes/settings.php:
|
897 |
msgid ""
|
898 |
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
899 |
"like it."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../classes/settings.php:
|
903 |
msgid "What’s New"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../classes/settings.php:
|
907 |
msgid "Changelog"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../classes/settings.php:
|
911 |
-
msgid "Addons"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: ../classes/settings.php:416
|
915 |
-
msgid ""
|
916 |
-
"Addons are now activated by downloading and installing individual plugins. "
|
917 |
-
"Although these plugins will not be hosted on the wordpress.org repository, "
|
918 |
-
"each Add-on will continue to receive updates in the usual way."
|
919 |
-
msgstr ""
|
920 |
-
|
921 |
-
#: ../classes/settings.php:419
|
922 |
-
msgid ""
|
923 |
-
"This website uses the Sortorder Addon. This addon needs to be downloaded."
|
924 |
-
msgstr ""
|
925 |
-
|
926 |
-
#: ../classes/settings.php:422
|
927 |
-
msgid "Addons are seperate plugins which need to be downloaded."
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
#: ../classes/settings.php:422
|
931 |
-
msgid "Download your Addons"
|
932 |
-
msgstr ""
|
933 |
-
|
934 |
-
#: ../classes/settings.php:428
|
935 |
-
msgid "This website does not use add-ons"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: ../classes/settings.php:428
|
939 |
-
msgid "See our website for Admin Columns Pro."
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: ../classes/settings.php:435
|
943 |
msgid "Important"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../classes/settings.php:
|
947 |
msgid "Database Changes"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../classes/settings.php:
|
951 |
msgid ""
|
952 |
"The database has been changed between versions 1 and 2. But we made sure you "
|
953 |
"can still roll back to version 1x without any issues."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: ../classes/settings.php:
|
957 |
msgid "Make sure you backup your database and then click"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../classes/settings.php:
|
961 |
msgid "Upgrade Database"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../classes/settings.php:
|
965 |
msgid "Potential Issues"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../classes/settings.php:
|
969 |
msgid ""
|
970 |
"Do to the sizable refactoring the code, surounding Addons and action/"
|
971 |
"filters, your website may not operate correctly. It is important that you "
|
972 |
"read the full"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../classes/settings.php:
|
976 |
msgid "Migrating from v1 to v2"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../classes/settings.php:
|
980 |
msgid "guide to view the full list of changes."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../classes/settings.php:
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
987 |
"can fix it in the next release."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: ../classes/settings.php:
|
991 |
msgid "Important!"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: ../classes/settings.php:
|
995 |
msgid ""
|
996 |
"If you updated the Admin Columns plugin without prior knowledge of such "
|
997 |
"changes, Please roll back to the latest"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../classes/settings.php:
|
1001 |
msgid "version 1"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../classes/settings.php:
|
1005 |
msgid "of this plugin."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../classes/settings.php:
|
1009 |
msgid "Changelog for"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: ../classes/settings.php:
|
1013 |
msgid "Learn more"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: ../classes/settings.php:
|
1017 |
msgid "Start using Admin Columns"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: ../classes/settings.php:
|
1021 |
msgid "General Settings"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../classes/settings.php:
|
1025 |
msgid "Customize your Admin Columns settings."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../classes/settings.php:
|
1029 |
msgid ""
|
1030 |
"Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: ../classes/settings.php:
|
1034 |
msgid "Save"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../classes/settings.php:
|
1038 |
msgid "Restore Settings"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../classes/settings.php:
|
1042 |
msgid "This will delete all column settings and restore the default settings."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: ../classes/settings.php:
|
1046 |
msgid "Restore default settings"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: ../classes/settings.php:
|
1050 |
msgid ""
|
1051 |
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
1052 |
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../classes/settings.php:
|
1056 |
msgid "Settings"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../classes/settings.php:
|
1060 |
msgid "Add-ons"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../classes/settings.php:
|
1064 |
msgid "Posttypes"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../classes/settings.php:
|
1068 |
msgid "Others"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../classes/settings.php:
|
1072 |
msgid "Taxonomies"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../classes/settings.php:
|
1076 |
#, php-format
|
1077 |
msgid ""
|
1078 |
"The columns for <strong>%s</strong> are set up via PHP and can therefore not "
|
1079 |
"be edited in the admin panel."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../classes/settings.php:
|
1083 |
msgid "Store settings"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: ../classes/settings.php:
|
1087 |
msgid "Update"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: ../classes/settings.php:
|
1091 |
#, php-format
|
1092 |
msgid ""
|
1093 |
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
1094 |
"\\' to delete, \\'Cancel\\' to stop"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../classes/settings.php:
|
1098 |
msgid "columns"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: ../classes/settings.php:
|
1102 |
msgid "Get Admin Columns Pro"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: ../classes/settings.php:
|
1106 |
msgid "Add Sorting"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: ../classes/settings.php:
|
1110 |
msgid "Add Filtering"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: ../classes/settings.php:
|
1114 |
msgid "Add Import/Export"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: ../classes/settings.php:
|
1118 |
msgid "Add Direct Editing"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: ../classes/settings.php:
|
1122 |
#, php-format
|
1123 |
msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: ../classes/settings.php:
|
1127 |
msgid "Are you happy with Admin Columns?"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: ../classes/settings.php:
|
1131 |
msgid "What's wrong? Need help? Let us know!"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: ../classes/settings.php:
|
1135 |
msgid ""
|
1136 |
"Check out our extensive documentation, or you can open a support topic on "
|
1137 |
"WordPress.org!"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: ../classes/settings.php:
|
1141 |
msgid "Docs"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../classes/settings.php:
|
1145 |
msgid "Forums"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../classes/settings.php:
|
1149 |
msgid "Woohoo! We're glad to hear that!"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../classes/settings.php:
|
1153 |
msgid ""
|
1154 |
"We would really love it if you could show your appreciation by giving us a "
|
1155 |
"rating on WordPress.org or tweet about Admin Columns!"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: ../classes/settings.php:
|
1159 |
msgid "Rate"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: ../classes/settings.php:
|
1163 |
msgid "Tweet"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../classes/settings.php:
|
1167 |
msgid "Buy Pro"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../classes/settings.php:
|
1171 |
msgid "Support"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../classes/settings.php:
|
1175 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../classes/settings.php:
|
1179 |
#, php-format
|
1180 |
msgid ""
|
1181 |
"For full documentation, bug reports, feature suggestions and other tips <a "
|
1182 |
"href='%s'>visit the Admin Columns website</a>"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../classes/settings.php:
|
1186 |
msgid "Drag and drop to reorder"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../classes/settings.php:
|
1190 |
msgid "Add Column"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../classes/settings.php:
|
1194 |
msgid "Active"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../classes/settings.php:
|
1198 |
msgid "Deactivate"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../classes/settings.php:
|
1202 |
msgid "Installed"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../classes/settings.php:
|
1206 |
msgid "Activate"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: ../classes/settings.php:
|
1210 |
msgid "Download & Install"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: ../classes/settings.php:
|
1214 |
msgid "Get this add-on"
|
1215 |
msgstr ""
|
1216 |
|
@@ -1244,7 +1213,7 @@ msgstr ""
|
|
1244 |
msgid "Users"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: ../classes/upgrade.php:
|
1248 |
msgid ""
|
1249 |
"<strong>Important:</strong> We've noticed that you're using the "
|
1250 |
"<em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. "
|
@@ -1254,60 +1223,60 @@ msgid ""
|
|
1254 |
"Inline Editing!"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: ../classes/upgrade.php:
|
1258 |
msgid "Upgrade"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: ../classes/upgrade.php:
|
1262 |
msgid "requires a database upgrade"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: ../classes/upgrade.php:
|
1266 |
msgid "why?"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: ../classes/upgrade.php:
|
1270 |
msgid "Please"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: ../classes/upgrade.php:
|
1274 |
msgid "backup your database"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: ../classes/upgrade.php:
|
1278 |
msgid "then click"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: ../classes/upgrade.php:
|
1282 |
msgid "Migrating Column Settings"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../classes/upgrade.php:
|
1286 |
msgid "No Upgrade Required"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: ../classes/upgrade.php:
|
1290 |
msgid "Return to welcome screen."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: ../classes/upgrade.php:
|
1294 |
msgid "Upgrade Complete!"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: ../classes/upgrade.php:
|
1298 |
msgid "Return to settings."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: ../classes/upgrade.php:
|
1302 |
msgid "Error"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: ../classes/upgrade.php:
|
1306 |
msgid ""
|
1307 |
"Sorry. Something went wrong during the upgrade process. Please report this "
|
1308 |
"on the support forum."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: ../codepress-admin-columns.php:
|
1312 |
msgid "Edit columns"
|
1313 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Codepress Admin Columns\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-20 13:33+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-10-20 13:33+0100\n"
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"Language: en_GB\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.6.10\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
42 |
"inline editing."
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../classes/column.php:507
|
46 |
msgid "Thumbnail"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../classes/column.php:508
|
50 |
msgid "Medium"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../classes/column.php:509
|
54 |
msgid "Large"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../classes/column.php:510
|
58 |
msgid "Full"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../classes/column.php:883
|
62 |
msgid "Date Format"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../classes/column.php:884
|
66 |
msgid "This will determine how the date will be displayed."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../classes/column.php:890
|
70 |
msgid "Example:"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../classes/column.php:892
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"Leave empty for WordPress date format, change your <a href=\"%s\">default "
|
77 |
"date format here</a>."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../classes/column.php:893
|
81 |
msgid "Documentation on date and time formatting."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../classes/column.php:907
|
85 |
msgid "Excerpt length"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../classes/column.php:908
|
89 |
msgid "Number of words"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: ../classes/column.php:926
|
93 |
msgid "Preview size"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../classes/column.php:943 ../classes/storage_model.php:526
|
97 |
msgid "Custom"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../classes/column.php:946
|
101 |
msgid "width"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../classes/column.php:949
|
105 |
msgid "height"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../classes/column.php:963
|
109 |
msgid "Before"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../classes/column.php:963
|
113 |
msgid "This text will appear before the custom field value."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../classes/column.php:969
|
117 |
msgid "After"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ../classes/column.php:969
|
121 |
msgid "This text will appear after the custom field value."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ../classes/column.php:1063 ../classes/column/comment/actions.php:99
|
125 |
#: ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
|
126 |
#: ../classes/column/user/actions.php:69
|
127 |
msgid "Edit"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: ../classes/column.php:1064 ../classes/column.php:1142
|
131 |
#: ../classes/column/user/actions.php:77
|
132 |
msgid "Remove"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../classes/column.php:1082
|
136 |
msgid "Type"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../classes/column.php:1082
|
140 |
msgid "Choose a column type."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../classes/column.php:1082 ../classes/column/comment/ID.php:19
|
144 |
#: ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19
|
145 |
#: ../classes/column/post/ID.php:19
|
146 |
msgid "ID"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../classes/column.php:1092
|
150 |
msgid "Label"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../classes/column.php:1092
|
154 |
msgid "This is the name which will appear as the column header."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../classes/column.php:1099 ../classes/column/media/width.php:19
|
158 |
msgid "Width"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../classes/column.php:1101 ../classes/column.php:1102
|
162 |
msgid "default"
|
163 |
msgstr ""
|
164 |
|
167 |
msgstr ""
|
168 |
|
169 |
#: ../classes/column/acf-placeholder.php:32
|
170 |
+
msgid ""
|
171 |
+
"This feature is only available in Admin Columns Pro - Business or Developer."
|
172 |
msgstr ""
|
173 |
|
174 |
#: ../classes/column/acf-placeholder.php:35
|
225 |
msgstr ""
|
226 |
|
227 |
#: ../classes/column/comment/actions.php:89
|
228 |
+
#: ../classes/column/post/actions.php:39 ../classes/settings.php:652
|
229 |
msgid "Restore"
|
230 |
msgstr ""
|
231 |
|
283 |
msgstr ""
|
284 |
|
285 |
#: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:70
|
286 |
+
#: ../classes/settings.php:301
|
287 |
msgid "Date"
|
288 |
msgstr ""
|
289 |
|
290 |
#: ../classes/column/comment/excerpt.php:19
|
291 |
#: ../classes/column/custom-field.php:71 ../classes/column/post/excerpt.php:19
|
292 |
+
#: ../classes/settings.php:298
|
293 |
msgid "Excerpt"
|
294 |
msgstr ""
|
295 |
|
303 |
msgstr ""
|
304 |
|
305 |
#: ../classes/column/custom-field.php:23
|
306 |
+
#: ../classes/column/custom-field.php:328 ../classes/settings.php:291
|
307 |
msgid "Custom Field"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../classes/column/custom-field.php:66 ../classes/settings.php:296
|
311 |
+
#: ../classes/storage_model.php:527
|
312 |
msgid "Default"
|
313 |
msgstr ""
|
314 |
|
316 |
msgid "Checkmark (true/false)"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../classes/column/custom-field.php:68 ../classes/settings.php:305
|
320 |
msgid "Color"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../classes/column/custom-field.php:69 ../classes/settings.php:306
|
324 |
msgid "Counter"
|
325 |
msgstr ""
|
326 |
|
327 |
#: ../classes/column/custom-field.php:72 ../classes/column/link/image.php:19
|
328 |
+
#: ../classes/settings.php:297
|
329 |
msgid "Image"
|
330 |
msgstr ""
|
331 |
|
333 |
msgid "Media Library"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../classes/column/custom-field.php:74 ../classes/settings.php:299
|
337 |
msgid "Multiple Values"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../classes/column/custom-field.php:75 ../classes/settings.php:300
|
341 |
msgid "Numeric"
|
342 |
msgstr ""
|
343 |
|
349 |
msgid "Username (User ID's)"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../classes/column/custom-field.php:328
|
353 |
msgid "Select your custom field."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../classes/column/custom-field.php:338
|
357 |
msgid "No custom fields available."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../classes/column/custom-field.php:345
|
361 |
msgid "Field Type"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../classes/column/custom-field.php:345
|
365 |
msgid "This will determine how the value will be displayed."
|
366 |
msgstr ""
|
367 |
|
523 |
msgid "View “%s”"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: ../classes/column/post/actions.php:50 ../classes/storage_model.php:735
|
527 |
msgid "View"
|
528 |
msgstr ""
|
529 |
|
749 |
msgid "Admin Columns Settings"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../classes/settings.php:155 ../classes/settings.php:584
|
753 |
+
#: ../classes/upgrade.php:135
|
754 |
msgid "Admin Columns"
|
755 |
msgstr ""
|
756 |
|
759 |
msgid "%s column is already present and can not be duplicated."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../classes/settings.php:257
|
763 |
msgid "Default settings succesfully restored."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../classes/settings.php:274
|
767 |
msgid "Overview"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../classes/settings.php:277
|
771 |
msgid ""
|
772 |
"This plugin is for adding and removing additional columns to the "
|
773 |
"administration screens for post(types), pages, media library, comments, "
|
774 |
"links and users. Change the column's label and reorder them."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../classes/settings.php:280
|
778 |
msgid "Basics"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../classes/settings.php:282
|
782 |
msgid "Change order"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../classes/settings.php:283
|
786 |
msgid ""
|
787 |
"By dragging the columns you can change the order which they will appear in."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../classes/settings.php:284
|
791 |
msgid "Change label"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: ../classes/settings.php:285
|
795 |
msgid ""
|
796 |
"By clicking on the triangle you will see the column options. Here you can "
|
797 |
"change each label of the columns heading."
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../classes/settings.php:286
|
801 |
msgid "Change column width"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../classes/settings.php:287
|
805 |
msgid ""
|
806 |
"By clicking on the triangle you will see the column options. By using the "
|
807 |
"draggable slider you can set the width of the columns in percentages."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: ../classes/settings.php:293
|
811 |
msgid "'Custom Field' column"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../classes/settings.php:294
|
815 |
msgid ""
|
816 |
"The custom field colum uses the custom fields from posts and users. There "
|
817 |
"are 10 types which you can set."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: ../classes/settings.php:296
|
821 |
msgid ""
|
822 |
"Value: Can be either a string or array. Arrays will be flattened and values "
|
823 |
"are seperated by a ',' comma."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: ../classes/settings.php:297
|
827 |
msgid ""
|
828 |
"Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
|
829 |
"comma )."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../classes/settings.php:298
|
833 |
msgid "Value: This will show the first 20 words of the Post content."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../classes/settings.php:299
|
837 |
msgid ""
|
838 |
"Value: should be an array. This will flatten any ( multi dimensional ) array."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../classes/settings.php:300
|
842 |
msgid ""
|
843 |
"Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
|
844 |
"for sorting, so you can sort your posts on numeric (custom field) values."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: ../classes/settings.php:301
|
848 |
#, php-format
|
849 |
msgid ""
|
850 |
"Value: Can be unix time stamp or a date format as described in the <a "
|
852 |
"href='%s'>general settings</a> page."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../classes/settings.php:302
|
856 |
msgid "Post Titles"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../classes/settings.php:302
|
860 |
msgid "Value: can be one or more Post ID's (seperated by ',')."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../classes/settings.php:303
|
864 |
msgid "Usernames"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../classes/settings.php:303
|
868 |
msgid "Value: can be one or more User ID's (seperated by ',')."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../classes/settings.php:304
|
872 |
msgid "Checkmark"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../classes/settings.php:304
|
876 |
msgid "Value: should be a 1 (one) or 0 (zero)."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../classes/settings.php:305
|
880 |
msgid "Value: hex value color, such as #808080."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../classes/settings.php:306
|
884 |
msgid ""
|
885 |
"Value: Can be either a string or array. This will display a count of the "
|
886 |
"number of times the meta key is used by the item."
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../classes/settings.php:395
|
890 |
msgid "Welcome to Admin Columns"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../classes/settings.php:398
|
894 |
msgid "Thank you for updating to the latest version!"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../classes/settings.php:399
|
898 |
msgid ""
|
899 |
"Admin Columns is more polished and enjoyable than ever before. We hope you "
|
900 |
"like it."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: ../classes/settings.php:404
|
904 |
msgid "What’s New"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: ../classes/settings.php:405
|
908 |
msgid "Changelog"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../classes/settings.php:410
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
912 |
msgid "Important"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../classes/settings.php:412
|
916 |
msgid "Database Changes"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: ../classes/settings.php:413
|
920 |
msgid ""
|
921 |
"The database has been changed between versions 1 and 2. But we made sure you "
|
922 |
"can still roll back to version 1x without any issues."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: ../classes/settings.php:416
|
926 |
msgid "Make sure you backup your database and then click"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: ../classes/settings.php:416 ../classes/upgrade.php:143
|
930 |
msgid "Upgrade Database"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../classes/settings.php:419
|
934 |
msgid "Potential Issues"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../classes/settings.php:420
|
938 |
msgid ""
|
939 |
"Do to the sizable refactoring the code, surounding Addons and action/"
|
940 |
"filters, your website may not operate correctly. It is important that you "
|
941 |
"read the full"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: ../classes/settings.php:420
|
945 |
msgid "Migrating from v1 to v2"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../classes/settings.php:420
|
949 |
msgid "guide to view the full list of changes."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: ../classes/settings.php:420
|
953 |
#, php-format
|
954 |
msgid ""
|
955 |
"When you have found a bug please <a href=\"%s\">report them to us</a> so we "
|
956 |
"can fix it in the next release."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: ../classes/settings.php:423
|
960 |
msgid "Important!"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: ../classes/settings.php:423
|
964 |
msgid ""
|
965 |
"If you updated the Admin Columns plugin without prior knowledge of such "
|
966 |
"changes, Please roll back to the latest"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: ../classes/settings.php:423
|
970 |
msgid "version 1"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../classes/settings.php:423
|
974 |
msgid "of this plugin."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../classes/settings.php:429
|
978 |
msgid "Changelog for"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: ../classes/settings.php:444 ../classes/upgrade.php:63
|
982 |
msgid "Learn more"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: ../classes/settings.php:454
|
986 |
msgid "Start using Admin Columns"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../classes/settings.php:497
|
990 |
msgid "General Settings"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../classes/settings.php:498
|
994 |
msgid "Customize your Admin Columns settings."
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../classes/settings.php:509
|
998 |
msgid ""
|
999 |
"Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: ../classes/settings.php:516 ../classes/settings.php:647
|
1003 |
msgid "Save"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: ../classes/settings.php:556
|
1007 |
msgid "Restore Settings"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: ../classes/settings.php:557
|
1011 |
msgid "This will delete all column settings and restore the default settings."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: ../classes/settings.php:563
|
1015 |
msgid "Restore default settings"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: ../classes/settings.php:563
|
1019 |
msgid ""
|
1020 |
"Warning! ALL saved admin columns data will be deleted. This cannot be "
|
1021 |
"undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../classes/settings.php:585 ../codepress-admin-columns.php:337
|
1025 |
msgid "Settings"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../classes/settings.php:586
|
1029 |
msgid "Add-ons"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../classes/settings.php:612
|
1033 |
msgid "Posttypes"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: ../classes/settings.php:613
|
1037 |
msgid "Others"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../classes/settings.php:614
|
1041 |
msgid "Taxonomies"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: ../classes/settings.php:633
|
1045 |
#, php-format
|
1046 |
msgid ""
|
1047 |
"The columns for <strong>%s</strong> are set up via PHP and can therefore not "
|
1048 |
"be edited in the admin panel."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: ../classes/settings.php:643
|
1052 |
msgid "Store settings"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../classes/settings.php:647
|
1056 |
msgid "Update"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../classes/settings.php:651
|
1060 |
#, php-format
|
1061 |
msgid ""
|
1062 |
"Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
|
1063 |
"\\' to delete, \\'Cancel\\' to stop"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: ../classes/settings.php:652
|
1067 |
msgid "columns"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: ../classes/settings.php:671
|
1071 |
msgid "Get Admin Columns Pro"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: ../classes/settings.php:675
|
1075 |
msgid "Add Sorting"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: ../classes/settings.php:676
|
1079 |
msgid "Add Filtering"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../classes/settings.php:677
|
1083 |
msgid "Add Import/Export"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../classes/settings.php:678
|
1087 |
msgid "Add Direct Editing"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../classes/settings.php:681
|
1091 |
#, php-format
|
1092 |
msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: ../classes/settings.php:712
|
1096 |
msgid "Are you happy with Admin Columns?"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: ../classes/settings.php:720
|
1100 |
msgid "What's wrong? Need help? Let us know!"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: ../classes/settings.php:721
|
1104 |
msgid ""
|
1105 |
"Check out our extensive documentation, or you can open a support topic on "
|
1106 |
"WordPress.org!"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../classes/settings.php:729
|
1110 |
msgid "Docs"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../classes/settings.php:734
|
1114 |
msgid "Forums"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: ../classes/settings.php:743
|
1118 |
msgid "Woohoo! We're glad to hear that!"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: ../classes/settings.php:744
|
1122 |
msgid ""
|
1123 |
"We would really love it if you could show your appreciation by giving us a "
|
1124 |
"rating on WordPress.org or tweet about Admin Columns!"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../classes/settings.php:748
|
1128 |
msgid "Rate"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: ../classes/settings.php:759
|
1132 |
msgid "Tweet"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: ../classes/settings.php:769
|
1136 |
msgid "Buy Pro"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: ../classes/settings.php:781
|
1140 |
msgid "Support"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: ../classes/settings.php:784
|
1144 |
msgid "Check the <strong>Help</strong> section in the top-right screen."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: ../classes/settings.php:787
|
1148 |
#, php-format
|
1149 |
msgid ""
|
1150 |
"For full documentation, bug reports, feature suggestions and other tips <a "
|
1151 |
"href='%s'>visit the Admin Columns website</a>"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../classes/settings.php:816
|
1155 |
msgid "Drag and drop to reorder"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../classes/settings.php:819
|
1159 |
msgid "Add Column"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../classes/settings.php:895
|
1163 |
msgid "Active"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../classes/settings.php:896
|
1167 |
msgid "Deactivate"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../classes/settings.php:903
|
1171 |
msgid "Installed"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../classes/settings.php:904
|
1175 |
msgid "Activate"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../classes/settings.php:918
|
1179 |
msgid "Download & Install"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../classes/settings.php:923
|
1183 |
msgid "Get this add-on"
|
1184 |
msgstr ""
|
1185 |
|
1213 |
msgid "Users"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../classes/upgrade.php:62
|
1217 |
msgid ""
|
1218 |
"<strong>Important:</strong> We've noticed that you're using the "
|
1219 |
"<em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. "
|
1223 |
"Inline Editing!"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../classes/upgrade.php:95
|
1227 |
msgid "Upgrade"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../classes/upgrade.php:136
|
1231 |
msgid "requires a database upgrade"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../classes/upgrade.php:139
|
1235 |
msgid "why?"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../classes/upgrade.php:140
|
1239 |
msgid "Please"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../classes/upgrade.php:141
|
1243 |
msgid "backup your database"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../classes/upgrade.php:142
|
1247 |
msgid "then click"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../classes/upgrade.php:350
|
1251 |
msgid "Migrating Column Settings"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../classes/upgrade.php:386
|
1255 |
msgid "No Upgrade Required"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../classes/upgrade.php:387
|
1259 |
msgid "Return to welcome screen."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../classes/upgrade.php:405
|
1263 |
msgid "Upgrade Complete!"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../classes/upgrade.php:405
|
1267 |
msgid "Return to settings."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../classes/upgrade.php:406
|
1271 |
msgid "Error"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../classes/upgrade.php:407
|
1275 |
msgid ""
|
1276 |
"Sorry. Something went wrong during the upgrade process. Please report this "
|
1277 |
"on the support forum."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../codepress-admin-columns.php:401
|
1281 |
msgid "Edit columns"
|
1282 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 2.2.
|
8 |
|
9 |
Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
10 |
|
@@ -15,10 +15,8 @@ Manage and organize columns in the posts, users, comments and media lists in the
|
|
15 |
> #### Admin Columns Pro
|
16 |
> The free version of Admin Columns does not support sorting, filtering and inline editing and has no priority support. [Admin Columns Pro](http://admincolumns.com/?utm_source=wordpressorg&utm_medium=readme&utm_content=blockquote&utm_campaign=cpac-pluginpage) offers these features, direct e-mail support and several add-ons.
|
17 |
|
18 |
-
|
19 |
[vimeo http://vimeo.com/96885841]
|
20 |
|
21 |
-
|
22 |
= Enhanced list tables =
|
23 |
By default, WordPress provides list tables, giving you an overview of your content in the admin panel. These list tables are quite limited, however. For posts and custom post types, for example, not much more than the date and title of the post is displayed. Admin Columns allows you to take control over these list tables, managing the columns dislpayed in these overviews. Supporting custom fields, featured images, custom taxonomies, EXIF data for media and much, much more (Admin Columns features over 90 columns), you can create overviews that are perfectly suited for your content.
|
24 |
|
@@ -251,6 +249,11 @@ You can find a list of the available actions and filters (and examples on how to
|
|
251 |
|
252 |
== Changelog ==
|
253 |
|
|
|
|
|
|
|
|
|
|
|
254 |
= 2.2.8.1 =
|
255 |
* [Fixed] Quick Edit will display columns correctly after saving
|
256 |
|
4 |
Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 2.2.9
|
8 |
|
9 |
Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
|
10 |
|
15 |
> #### Admin Columns Pro
|
16 |
> The free version of Admin Columns does not support sorting, filtering and inline editing and has no priority support. [Admin Columns Pro](http://admincolumns.com/?utm_source=wordpressorg&utm_medium=readme&utm_content=blockquote&utm_campaign=cpac-pluginpage) offers these features, direct e-mail support and several add-ons.
|
17 |
|
|
|
18 |
[vimeo http://vimeo.com/96885841]
|
19 |
|
|
|
20 |
= Enhanced list tables =
|
21 |
By default, WordPress provides list tables, giving you an overview of your content in the admin panel. These list tables are quite limited, however. For posts and custom post types, for example, not much more than the date and title of the post is displayed. Admin Columns allows you to take control over these list tables, managing the columns dislpayed in these overviews. Supporting custom fields, featured images, custom taxonomies, EXIF data for media and much, much more (Admin Columns features over 90 columns), you can create overviews that are perfectly suited for your content.
|
22 |
|
249 |
|
250 |
== Changelog ==
|
251 |
|
252 |
+
= 2.2.9 =
|
253 |
+
* [Added] Added filter "cac/column/actions/action_links" for modifying the action column links
|
254 |
+
* [Fixed] WordPress SEO by Yoast columns were not added to the dropdown menu when using the 'add column' button.
|
255 |
+
* [Fixed] Fix "restore" action link in post actions column
|
256 |
+
|
257 |
= 2.2.8.1 =
|
258 |
* [Fixed] Quick Edit will display columns correctly after saving
|
259 |
|